summaryrefslogtreecommitdiff
path: root/editor/editor_locale_dialog.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-02-09 12:38:17 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-02-09 12:38:17 +0100
commitd02a7bc00d76d50843f1b938914340135060a119 (patch)
treee4c4d41874c7d692cd2aeca7cc03aaf3c8a5a22d /editor/editor_locale_dialog.cpp
parentebe3cfc061d84d3d1b4496165d666b2bbed093f7 (diff)
parenta40ccc2d7e48f5cf5bfe36504c2969cbdfa4aa6b (diff)
Merge pull request #72953 from timothyqiu/i18n-improvements
Improve some editor strings for localization
Diffstat (limited to 'editor/editor_locale_dialog.cpp')
-rw-r--r--editor/editor_locale_dialog.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/editor/editor_locale_dialog.cpp b/editor/editor_locale_dialog.cpp
index 5a372412fa..fbf3c99690 100644
--- a/editor/editor_locale_dialog.cpp
+++ b/editor/editor_locale_dialog.cpp
@@ -446,7 +446,8 @@ EditorLocaleDialog::EditorLocaleDialog() {
vb_script_list->set_h_size_flags(Control::SIZE_EXPAND_FILL);
{
Label *script_lbl = memnew(Label);
- script_lbl->set_text(TTR("Script:"));
+ // TRANSLATORS: This is the label for a list of writing systems.
+ script_lbl->set_text(TTR("Script:", "Locale"));
vb_script_list->add_child(script_lbl);
}
{
@@ -504,7 +505,8 @@ EditorLocaleDialog::EditorLocaleDialog() {
vb_script->set_h_size_flags(Control::SIZE_EXPAND_FILL);
{
Label *script_lbl = memnew(Label);
- script_lbl->set_text(TTR("Script"));
+ // TRANSLATORS: This refers to a writing system.
+ script_lbl->set_text(TTR("Script", "Locale"));
vb_script->add_child(script_lbl);
}
{