1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-26 15:46:23 +00:00

i18n: Misc fixes translation strings

Adds some translator comments to solve some questions raised on Weblate.
This commit is contained in:
Rémi Verschelde
2022-06-08 11:42:51 +02:00
parent d51fc369b7
commit 80b82e4e66
28 changed files with 70 additions and 66 deletions

View File

@@ -280,7 +280,7 @@ void EditorPropertyArray::update_property() {
HBoxContainer *hbox = memnew(HBoxContainer);
vbox->add_child(hbox);
Label *label = memnew(Label(TTR("Size: ")));
Label *label = memnew(Label(TTR("Size:")));
label->set_h_size_flags(SIZE_EXPAND_FILL);
hbox->add_child(label);
@@ -294,7 +294,7 @@ void EditorPropertyArray::update_property() {
page_hbox = memnew(HBoxContainer);
vbox->add_child(page_hbox);
label = memnew(Label(TTR("Page: ")));
label = memnew(Label(TTR("Page:")));
label->set_h_size_flags(SIZE_EXPAND_FILL);
page_hbox->add_child(label);
@@ -850,7 +850,7 @@ void EditorPropertyDictionary::update_property() {
page_hbox = memnew(HBoxContainer);
vbox->add_child(page_hbox);
Label *label = memnew(Label(TTR("Page: ")));
Label *label = memnew(Label(TTR("Page:")));
label->set_h_size_flags(SIZE_EXPAND_FILL);
page_hbox->add_child(label);
page_slider = memnew(EditorSpinSlider);