Merge pull request #51110 from pycbouh/editor-put-the-colon-back-in
Put multiple colons back into translated strings
This commit is contained in:
commit
20fa3ec093
4 changed files with 10 additions and 10 deletions
|
|
@ -89,7 +89,7 @@ Size2 AnimationNodeBlendTreeEditor::get_minimum_size() const {
|
|||
void AnimationNodeBlendTreeEditor::_property_changed(const StringName &p_property, const Variant &p_value, const String &p_field, bool p_changing) {
|
||||
AnimationTree *tree = AnimationTreeEditor::get_singleton()->get_tree();
|
||||
updating = true;
|
||||
undo_redo->create_action(TTR("Parameter Changed") + ": " + String(p_property), UndoRedo::MERGE_ENDS);
|
||||
undo_redo->create_action(TTR("Parameter Changed:") + " " + String(p_property), UndoRedo::MERGE_ENDS);
|
||||
undo_redo->add_do_property(tree, p_property, p_value);
|
||||
undo_redo->add_undo_property(tree, p_property, tree->get(p_property));
|
||||
undo_redo->add_do_method(this, "_update_graph");
|
||||
|
|
|
|||
|
|
@ -3112,7 +3112,7 @@ void ThemeEditor::edit(const Ref<Theme> &p_theme) {
|
|||
preview_tab->set_preview_theme(p_theme);
|
||||
}
|
||||
|
||||
theme_name->set_text(TTR("Theme") + ": " + theme->get_path().get_file());
|
||||
theme_name->set_text(TTR("Theme:") + " " + theme->get_path().get_file());
|
||||
}
|
||||
|
||||
Ref<Theme> ThemeEditor::get_edited_theme() {
|
||||
|
|
@ -3230,7 +3230,7 @@ ThemeEditor::ThemeEditor() {
|
|||
add_child(top_menu);
|
||||
|
||||
theme_name = memnew(Label);
|
||||
theme_name->set_text(TTR("Theme") + ": ");
|
||||
theme_name->set_text(TTR("Theme:"));
|
||||
theme_name->set_theme_type_variation("HeaderSmall");
|
||||
top_menu->add_child(theme_name);
|
||||
|
||||
|
|
|
|||
|
|
@ -4697,7 +4697,7 @@ public:
|
|||
UndoRedo *undo_redo = EditorNode::get_singleton()->get_undo_redo();
|
||||
|
||||
updating = true;
|
||||
undo_redo->create_action(TTR("Edit Visual Property") + ": " + p_property, UndoRedo::MERGE_ENDS);
|
||||
undo_redo->create_action(TTR("Edit Visual Property:") + " " + p_property, UndoRedo::MERGE_ENDS);
|
||||
undo_redo->add_do_property(node.ptr(), p_property, p_value);
|
||||
undo_redo->add_undo_property(node.ptr(), p_property, node->get(p_property));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue