Skip to content

Commit 81bbe0e

Browse files
Misc
1 parent 8bc5e9b commit 81bbe0e

File tree

17 files changed

+176
-234
lines changed

17 files changed

+176
-234
lines changed

CONTRIBUTING.md

Lines changed: 0 additions & 58 deletions
This file was deleted.

godot_only/scripts/update_translations.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ func update_translations() -> void:
113113
used_comments.append(msg.msgid)
114114
fa.store_string(msg.to_string())
115115
fa = null
116-
print("Created %s with %d strings" % [TRANSLATIONS_DIR.path_join("/GodSVG.pot"), (messages.size() + 1)])
116+
print("Created %s with %d strings" % [TRANSLATIONS_DIR.path_join("/VectorTouch.pot"), (messages.size() + 1)])
117117

118118
for file in DirAccess.get_files_at(folder_location):
119119
if not (file.get_extension() == "po" or file == "VectorTouch.pot"):

src/autoload/HandlerGUI.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func _enter_tree() -> void:
5858
shortcuts.add_shortcut("about_donate", open_donate, ShortcutsRegistration.Behavior.PASS_THROUGH_ALL)
5959
shortcuts.add_shortcut("check_updates", open_update_checker, ShortcutsRegistration.Behavior.PASS_THROUGH_ALL)
6060
shortcuts.add_shortcut("open_settings", open_settings, ShortcutsRegistration.Behavior.PASS_THROUGH_ALL)
61-
shortcuts.add_shortcut("about_repo", OS.shell_open.bind("https://github.com/MewPurPur/VectorTouch"), ShortcutsRegistration.Behavior.PASS_THROUGH_ALL)
61+
shortcuts.add_shortcut("about_repo", OS.shell_open.bind("https://github.com/syntaxerror247/VectorTouch"), ShortcutsRegistration.Behavior.PASS_THROUGH_ALL)
6262
shortcuts.add_shortcut("about_website", OS.shell_open.bind("https://godsvg.com"), ShortcutsRegistration.Behavior.PASS_THROUGH_ALL)
6363
shortcuts.add_shortcut("open_externally", func() -> void: FileUtils.open_svg(Configs.savedata.get_active_tab().svg_file_path),
6464
ShortcutsRegistration.Behavior.PASS_THROUGH_ALL)

src/config_classes/SaveData.gd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ func get_setting_default(setting: String) -> Variant:
8686
"selection_rectangle_color2": return Color("000c")
8787
"canvas_color":
8888
match theme_preset:
89-
ThemePreset.DARK: return Color("1f2233")
89+
ThemePreset.DARK: return Color("1a1a1a")
9090
ThemePreset.LIGHT: return Color("fff")
9191
ThemePreset.BLACK: return Color("000")
9292
"grid_color":
@@ -441,7 +441,7 @@ const MAX_SELECTION_RECTANGLE_DASH_LENGTH = 600.0
441441
emit_changed()
442442
Configs.selection_rectangle_visuals_changed.emit()
443443

444-
@export var canvas_color := Color("1f2233"):
444+
@export var canvas_color := Color("1a1a1a"):
445445
set(new_value):
446446
if canvas_color != new_value:
447447
canvas_color = new_value

src/ui_widgets/settings_content_generic.gd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,11 +391,11 @@ func setup_theming_content() -> void:
391391
current_setup_setting = "base_color"
392392
add_color_edit(Translator.translate("Base color"), false)
393393
add_preview(SettingTextPreview.new(Translator.translate(
394-
"Determines the base color of GodSVG's interface.")))
394+
"Determines the base color of VectorTouch's interface.")))
395395
current_setup_setting = "accent_color"
396396
add_color_edit(Translator.translate("Accent color"), false)
397397
add_preview(SettingTextPreview.new(Translator.translate(
398-
"Determines the accent color used for highlighted elements in GodSVG's interface.")))
398+
"Determines the accent color used for highlighted elements in VectorTouch's interface.")))
399399

400400
var basic_svg_text = """<circle cx="6" cy="8" r="4" fill="gold" />"""
401401
var basic_svg_text_with_syntax_error = """<circle cx="6" cy="8" ==syntax error"""

translations/GodSVG.pot renamed to translations/VectorTouch.pot

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -966,11 +966,11 @@ msgid "Determines the default values of theming-related settings, including the
966966
msgstr ""
967967

968968
#: src/ui_widgets/settings_content_generic.gd:
969-
msgid "Determines the base color of GodSVG's interface."
969+
msgid "Determines the base color of VectorTouch's interface."
970970
msgstr ""
971971

972972
#: src/ui_widgets/settings_content_generic.gd:
973-
msgid "Determines the accent color used for highlighted elements in GodSVG's interface."
973+
msgid "Determines the accent color used for highlighted elements in VectorTouch's interface."
974974
msgstr ""
975975

976976
#: src/ui_widgets/settings_content_generic.gd:
@@ -1014,7 +1014,7 @@ msgid "When enabled, uses your operating system's native file dialog instead of
10141014
msgstr ""
10151015

10161016
#: src/ui_widgets/settings_content_generic.gd:
1017-
msgid "When enabled, adds the current file name before the \"GodSVG\" window title."
1017+
msgid "When enabled, adds the current file name before the \"VectorTouch\" window title."
10181018
msgstr ""
10191019

10201020
#: src/ui_widgets/settings_content_palettes.gd:

translations/bg.po

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -967,12 +967,12 @@ msgid "Determines the default values of theming-related settings, including the
967967
msgstr "Определя стойностите по подразбиране на гамовите настройки, включително шаблона на синтаксовото маркиране."
968968

969969
#: src/ui_widgets/settings_content_generic.gd:
970-
msgid "Determines the base color of GodSVG's interface."
971-
msgstr "Определя основния цвят на интерфейса на GodSVG."
970+
msgid "Determines the base color of VectorTouch's interface."
971+
msgstr "Определя основния цвят на интерфейса на VectorTouch."
972972

973973
#: src/ui_widgets/settings_content_generic.gd:
974-
msgid "Determines the accent color used for highlighted elements in GodSVG's interface."
975-
msgstr "Определя акцентния цвят, използван за подчертаване на елементи в интерфейса на GodSVG."
974+
msgid "Determines the accent color used for highlighted elements in VectorTouch's interface."
975+
msgstr "Определя акцентния цвят, използван за подчертаване на елементи в интерфейса на VectorTouch."
976976

977977
#: src/ui_widgets/settings_content_generic.gd:
978978
msgid "When enabled, clicking on a tab with the middle mouse button closes it instead of simply focusing it."
@@ -1015,8 +1015,8 @@ msgid "When enabled, uses your operating system's native file dialog instead of
10151015
msgstr "Когато е активирано, ще бъде използван файловият мениджър на твоята операционна система вместо вградения файлов мениджър на VectorTouch."
10161016

10171017
#: src/ui_widgets/settings_content_generic.gd:
1018-
msgid "When enabled, adds the current file name before the \"GodSVG\" window title."
1019-
msgstr "Когато е включено, добавя името на настоящия файл пред заглавието на прозореца \"GodSVG\"."
1018+
msgid "When enabled, adds the current file name before the \"VectorTouch\" window title."
1019+
msgstr "Когато е включено, добавя името на настоящия файл пред заглавието на прозореца \"VectorTouch\"."
10201020

10211021
#: src/ui_widgets/settings_content_palettes.gd:
10221022
msgid "New palette"

translations/de.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -982,12 +982,12 @@ msgstr ""
982982

983983
#: src/ui_widgets/settings_content_generic.gd:
984984
#, fuzzy
985-
msgid "Determines the base color of GodSVG's interface."
985+
msgid "Determines the base color of VectorTouch's interface."
986986
msgstr "Verändert den Skalierungsfaktor der Benutzeroberfläche."
987987

988988
#: src/ui_widgets/settings_content_generic.gd:
989989
#, fuzzy
990-
msgid "Determines the accent color used for highlighted elements in GodSVG's interface."
990+
msgid "Determines the accent color used for highlighted elements in VectorTouch's interface."
991991
msgstr "Verändert den Skalierungsfaktor der Benutzeroberfläche."
992992

993993
#: src/ui_widgets/settings_content_generic.gd:
@@ -1035,7 +1035,7 @@ msgid "When enabled, uses your operating system's native file dialog instead of
10351035
msgstr "Wenn diese Option aktiviert ist, wird der Dateidialog des Betriebssystems verwendet. Wenn diese Option deaktiviert ist, wird VectorTouch's eingebauter Dateidialog verwendet."
10361036

10371037
#: src/ui_widgets/settings_content_generic.gd:
1038-
msgid "When enabled, adds the current file name before the \"GodSVG\" window title."
1038+
msgid "When enabled, adds the current file name before the \"VectorTouch\" window title."
10391039
msgstr ""
10401040

10411041
#: src/ui_widgets/settings_content_palettes.gd:

translations/en.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -967,11 +967,11 @@ msgid "Determines the default values of theming-related settings, including the
967967
msgstr ""
968968

969969
#: src/ui_widgets/settings_content_generic.gd:
970-
msgid "Determines the base color of GodSVG's interface."
970+
msgid "Determines the base color of VectorTouch's interface."
971971
msgstr ""
972972

973973
#: src/ui_widgets/settings_content_generic.gd:
974-
msgid "Determines the accent color used for highlighted elements in GodSVG's interface."
974+
msgid "Determines the accent color used for highlighted elements in VectorTouch's interface."
975975
msgstr ""
976976

977977
#: src/ui_widgets/settings_content_generic.gd:
@@ -1015,7 +1015,7 @@ msgid "When enabled, uses your operating system's native file dialog instead of
10151015
msgstr ""
10161016

10171017
#: src/ui_widgets/settings_content_generic.gd:
1018-
msgid "When enabled, adds the current file name before the \"GodSVG\" window title."
1018+
msgid "When enabled, adds the current file name before the \"VectorTouch\" window title."
10191019
msgstr ""
10201020

10211021
#: src/ui_widgets/settings_content_palettes.gd:

translations/es.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -982,12 +982,12 @@ msgstr ""
982982

983983
#: src/ui_widgets/settings_content_generic.gd:
984984
#, fuzzy
985-
msgid "Determines the base color of GodSVG's interface."
985+
msgid "Determines the base color of VectorTouch's interface."
986986
msgstr "Determina el factor de escala de la interfaz."
987987

988988
#: src/ui_widgets/settings_content_generic.gd:
989989
#, fuzzy
990-
msgid "Determines the accent color used for highlighted elements in GodSVG's interface."
990+
msgid "Determines the accent color used for highlighted elements in VectorTouch's interface."
991991
msgstr "Determina el factor de escala de la interfaz."
992992

993993
#: src/ui_widgets/settings_content_generic.gd:
@@ -1035,7 +1035,7 @@ msgid "When enabled, uses your operating system's native file dialog instead of
10351035
msgstr "Si está activado, usa el cuadro de diálogo de archivos nativo de tu sistema operativo. Si está desactivado, usa el cuadro de diálogo de archivos integrado de VectorTouch."
10361036

10371037
#: src/ui_widgets/settings_content_generic.gd:
1038-
msgid "When enabled, adds the current file name before the \"GodSVG\" window title."
1038+
msgid "When enabled, adds the current file name before the \"VectorTouch\" window title."
10391039
msgstr ""
10401040

10411041
#: src/ui_widgets/settings_content_palettes.gd:

0 commit comments

Comments
 (0)