Makes more strings in editor translatable
* File type names in file dialogs * Layout option names * Visual shader editor UI
This commit is contained in:
parent
d8d96c9fa7
commit
7a9c337dfe
7 changed files with 45 additions and 45 deletions
|
@ -896,7 +896,7 @@ EditorFeatureProfileManager::EditorFeatureProfileManager() {
|
||||||
import_profiles = memnew(EditorFileDialog);
|
import_profiles = memnew(EditorFileDialog);
|
||||||
add_child(import_profiles);
|
add_child(import_profiles);
|
||||||
import_profiles->set_mode(EditorFileDialog::MODE_OPEN_FILES);
|
import_profiles->set_mode(EditorFileDialog::MODE_OPEN_FILES);
|
||||||
import_profiles->add_filter("*.profile; Godot Feature Profile");
|
import_profiles->add_filter("*.profile; " + TTR("Godot Feature Profile"));
|
||||||
import_profiles->connect("files_selected", this, "_import_profiles");
|
import_profiles->connect("files_selected", this, "_import_profiles");
|
||||||
import_profiles->set_title(TTR("Import Profile(s)"));
|
import_profiles->set_title(TTR("Import Profile(s)"));
|
||||||
import_profiles->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
|
import_profiles->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
|
||||||
|
@ -904,7 +904,7 @@ EditorFeatureProfileManager::EditorFeatureProfileManager() {
|
||||||
export_profile = memnew(EditorFileDialog);
|
export_profile = memnew(EditorFileDialog);
|
||||||
add_child(export_profile);
|
add_child(export_profile);
|
||||||
export_profile->set_mode(EditorFileDialog::MODE_SAVE_FILE);
|
export_profile->set_mode(EditorFileDialog::MODE_SAVE_FILE);
|
||||||
export_profile->add_filter("*.profile; Godot Feature Profile");
|
export_profile->add_filter("*.profile; " + TTR("Godot Feature Profile"));
|
||||||
export_profile->connect("file_selected", this, "_export_profile");
|
export_profile->connect("file_selected", this, "_export_profile");
|
||||||
export_profile->set_title(TTR("Export Profile"));
|
export_profile->set_title(TTR("Export Profile"));
|
||||||
export_profile->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
|
export_profile->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
|
||||||
|
|
|
@ -6478,7 +6478,7 @@ EditorNode::EditorNode() {
|
||||||
file_templates->set_mode(EditorFileDialog::MODE_OPEN_FILE);
|
file_templates->set_mode(EditorFileDialog::MODE_OPEN_FILE);
|
||||||
file_templates->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
|
file_templates->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
|
||||||
file_templates->clear_filters();
|
file_templates->clear_filters();
|
||||||
file_templates->add_filter("*.tpz ; Template Package");
|
file_templates->add_filter("*.tpz ; " + TTR("Template Package"));
|
||||||
|
|
||||||
file = memnew(EditorFileDialog);
|
file = memnew(EditorFileDialog);
|
||||||
gui_base->add_child(file);
|
gui_base->add_child(file);
|
||||||
|
|
|
@ -3844,50 +3844,50 @@ void CanvasItemEditor::_notification(int p_what) {
|
||||||
PopupMenu *p = presets_menu->get_popup();
|
PopupMenu *p = presets_menu->get_popup();
|
||||||
|
|
||||||
p->clear();
|
p->clear();
|
||||||
p->add_icon_item(get_icon("ControlAlignTopLeft", "EditorIcons"), "Top Left", ANCHORS_AND_MARGINS_PRESET_TOP_LEFT);
|
p->add_icon_item(get_icon("ControlAlignTopLeft", "EditorIcons"), TTR("Top Left"), ANCHORS_AND_MARGINS_PRESET_TOP_LEFT);
|
||||||
p->add_icon_item(get_icon("ControlAlignTopRight", "EditorIcons"), "Top Right", ANCHORS_AND_MARGINS_PRESET_TOP_RIGHT);
|
p->add_icon_item(get_icon("ControlAlignTopRight", "EditorIcons"), TTR("Top Right"), ANCHORS_AND_MARGINS_PRESET_TOP_RIGHT);
|
||||||
p->add_icon_item(get_icon("ControlAlignBottomRight", "EditorIcons"), "Bottom Right", ANCHORS_AND_MARGINS_PRESET_BOTTOM_RIGHT);
|
p->add_icon_item(get_icon("ControlAlignBottomRight", "EditorIcons"), TTR("Bottom Right"), ANCHORS_AND_MARGINS_PRESET_BOTTOM_RIGHT);
|
||||||
p->add_icon_item(get_icon("ControlAlignBottomLeft", "EditorIcons"), "Bottom Left", ANCHORS_AND_MARGINS_PRESET_BOTTOM_LEFT);
|
p->add_icon_item(get_icon("ControlAlignBottomLeft", "EditorIcons"), TTR("Bottom Left"), ANCHORS_AND_MARGINS_PRESET_BOTTOM_LEFT);
|
||||||
p->add_separator();
|
p->add_separator();
|
||||||
p->add_icon_item(get_icon("ControlAlignLeftCenter", "EditorIcons"), "Center Left", ANCHORS_AND_MARGINS_PRESET_CENTER_LEFT);
|
p->add_icon_item(get_icon("ControlAlignLeftCenter", "EditorIcons"), TTR("Center Left"), ANCHORS_AND_MARGINS_PRESET_CENTER_LEFT);
|
||||||
p->add_icon_item(get_icon("ControlAlignTopCenter", "EditorIcons"), "Center Top", ANCHORS_AND_MARGINS_PRESET_CENTER_TOP);
|
p->add_icon_item(get_icon("ControlAlignTopCenter", "EditorIcons"), TTR("Center Top"), ANCHORS_AND_MARGINS_PRESET_CENTER_TOP);
|
||||||
p->add_icon_item(get_icon("ControlAlignRightCenter", "EditorIcons"), "Center Right", ANCHORS_AND_MARGINS_PRESET_CENTER_RIGHT);
|
p->add_icon_item(get_icon("ControlAlignRightCenter", "EditorIcons"), TTR("Center Right"), ANCHORS_AND_MARGINS_PRESET_CENTER_RIGHT);
|
||||||
p->add_icon_item(get_icon("ControlAlignBottomCenter", "EditorIcons"), "Center Bottom", ANCHORS_AND_MARGINS_PRESET_CENTER_BOTTOM);
|
p->add_icon_item(get_icon("ControlAlignBottomCenter", "EditorIcons"), TTR("Center Bottom"), ANCHORS_AND_MARGINS_PRESET_CENTER_BOTTOM);
|
||||||
p->add_icon_item(get_icon("ControlAlignCenter", "EditorIcons"), "Center", ANCHORS_AND_MARGINS_PRESET_CENTER);
|
p->add_icon_item(get_icon("ControlAlignCenter", "EditorIcons"), TTR("Center"), ANCHORS_AND_MARGINS_PRESET_CENTER);
|
||||||
p->add_separator();
|
p->add_separator();
|
||||||
p->add_icon_item(get_icon("ControlAlignLeftWide", "EditorIcons"), "Left Wide", ANCHORS_AND_MARGINS_PRESET_LEFT_WIDE);
|
p->add_icon_item(get_icon("ControlAlignLeftWide", "EditorIcons"), TTR("Left Wide"), ANCHORS_AND_MARGINS_PRESET_LEFT_WIDE);
|
||||||
p->add_icon_item(get_icon("ControlAlignTopWide", "EditorIcons"), "Top Wide", ANCHORS_AND_MARGINS_PRESET_TOP_WIDE);
|
p->add_icon_item(get_icon("ControlAlignTopWide", "EditorIcons"), TTR("Top Wide"), ANCHORS_AND_MARGINS_PRESET_TOP_WIDE);
|
||||||
p->add_icon_item(get_icon("ControlAlignRightWide", "EditorIcons"), "Right Wide", ANCHORS_AND_MARGINS_PRESET_RIGHT_WIDE);
|
p->add_icon_item(get_icon("ControlAlignRightWide", "EditorIcons"), TTR("Right Wide"), ANCHORS_AND_MARGINS_PRESET_RIGHT_WIDE);
|
||||||
p->add_icon_item(get_icon("ControlAlignBottomWide", "EditorIcons"), "Bottom Wide", ANCHORS_AND_MARGINS_PRESET_BOTTOM_WIDE);
|
p->add_icon_item(get_icon("ControlAlignBottomWide", "EditorIcons"), TTR("Bottom Wide"), ANCHORS_AND_MARGINS_PRESET_BOTTOM_WIDE);
|
||||||
p->add_icon_item(get_icon("ControlVcenterWide", "EditorIcons"), "VCenter Wide ", ANCHORS_AND_MARGINS_PRESET_VCENTER_WIDE);
|
p->add_icon_item(get_icon("ControlVcenterWide", "EditorIcons"), TTR("VCenter Wide"), ANCHORS_AND_MARGINS_PRESET_VCENTER_WIDE);
|
||||||
p->add_icon_item(get_icon("ControlHcenterWide", "EditorIcons"), "HCenter Wide ", ANCHORS_AND_MARGINS_PRESET_HCENTER_WIDE);
|
p->add_icon_item(get_icon("ControlHcenterWide", "EditorIcons"), TTR("HCenter Wide"), ANCHORS_AND_MARGINS_PRESET_HCENTER_WIDE);
|
||||||
p->add_separator();
|
p->add_separator();
|
||||||
p->add_icon_item(get_icon("ControlAlignWide", "EditorIcons"), "Full Rect", ANCHORS_AND_MARGINS_PRESET_WIDE);
|
p->add_icon_item(get_icon("ControlAlignWide", "EditorIcons"), TTR("Full Rect"), ANCHORS_AND_MARGINS_PRESET_WIDE);
|
||||||
p->add_icon_item(get_icon("Anchor", "EditorIcons"), "Keep Ratio", ANCHORS_AND_MARGINS_PRESET_KEEP_RATIO);
|
p->add_icon_item(get_icon("Anchor", "EditorIcons"), TTR("Keep Ratio"), ANCHORS_AND_MARGINS_PRESET_KEEP_RATIO);
|
||||||
p->add_separator();
|
p->add_separator();
|
||||||
p->add_submenu_item(TTR("Anchors only"), "Anchors");
|
p->add_submenu_item(TTR("Anchors only"), "Anchors");
|
||||||
p->set_item_icon(21, get_icon("Anchor", "EditorIcons"));
|
p->set_item_icon(21, get_icon("Anchor", "EditorIcons"));
|
||||||
|
|
||||||
anchors_popup->clear();
|
anchors_popup->clear();
|
||||||
anchors_popup->add_icon_item(get_icon("ControlAlignTopLeft", "EditorIcons"), "Top Left", ANCHORS_PRESET_TOP_LEFT);
|
anchors_popup->add_icon_item(get_icon("ControlAlignTopLeft", "EditorIcons"), TTR("Top Left"), ANCHORS_PRESET_TOP_LEFT);
|
||||||
anchors_popup->add_icon_item(get_icon("ControlAlignTopRight", "EditorIcons"), "Top Right", ANCHORS_PRESET_TOP_RIGHT);
|
anchors_popup->add_icon_item(get_icon("ControlAlignTopRight", "EditorIcons"), TTR("Top Right"), ANCHORS_PRESET_TOP_RIGHT);
|
||||||
anchors_popup->add_icon_item(get_icon("ControlAlignBottomRight", "EditorIcons"), "Bottom Right", ANCHORS_PRESET_BOTTOM_RIGHT);
|
anchors_popup->add_icon_item(get_icon("ControlAlignBottomRight", "EditorIcons"), TTR("Bottom Right"), ANCHORS_PRESET_BOTTOM_RIGHT);
|
||||||
anchors_popup->add_icon_item(get_icon("ControlAlignBottomLeft", "EditorIcons"), "Bottom Left", ANCHORS_PRESET_BOTTOM_LEFT);
|
anchors_popup->add_icon_item(get_icon("ControlAlignBottomLeft", "EditorIcons"), TTR("Bottom Left"), ANCHORS_PRESET_BOTTOM_LEFT);
|
||||||
anchors_popup->add_separator();
|
anchors_popup->add_separator();
|
||||||
anchors_popup->add_icon_item(get_icon("ControlAlignLeftCenter", "EditorIcons"), "Center Left", ANCHORS_PRESET_CENTER_LEFT);
|
anchors_popup->add_icon_item(get_icon("ControlAlignLeftCenter", "EditorIcons"), TTR("Center Left"), ANCHORS_PRESET_CENTER_LEFT);
|
||||||
anchors_popup->add_icon_item(get_icon("ControlAlignTopCenter", "EditorIcons"), "Center Top", ANCHORS_PRESET_CENTER_TOP);
|
anchors_popup->add_icon_item(get_icon("ControlAlignTopCenter", "EditorIcons"), TTR("Center Top"), ANCHORS_PRESET_CENTER_TOP);
|
||||||
anchors_popup->add_icon_item(get_icon("ControlAlignRightCenter", "EditorIcons"), "Center Right", ANCHORS_PRESET_CENTER_RIGHT);
|
anchors_popup->add_icon_item(get_icon("ControlAlignRightCenter", "EditorIcons"), TTR("Center Right"), ANCHORS_PRESET_CENTER_RIGHT);
|
||||||
anchors_popup->add_icon_item(get_icon("ControlAlignBottomCenter", "EditorIcons"), "Center Bottom", ANCHORS_PRESET_CENTER_BOTTOM);
|
anchors_popup->add_icon_item(get_icon("ControlAlignBottomCenter", "EditorIcons"), TTR("Center Bottom"), ANCHORS_PRESET_CENTER_BOTTOM);
|
||||||
anchors_popup->add_icon_item(get_icon("ControlAlignCenter", "EditorIcons"), "Center", ANCHORS_PRESET_CENTER);
|
anchors_popup->add_icon_item(get_icon("ControlAlignCenter", "EditorIcons"), TTR("Center"), ANCHORS_PRESET_CENTER);
|
||||||
anchors_popup->add_separator();
|
anchors_popup->add_separator();
|
||||||
anchors_popup->add_icon_item(get_icon("ControlAlignLeftWide", "EditorIcons"), "Left Wide", ANCHORS_PRESET_LEFT_WIDE);
|
anchors_popup->add_icon_item(get_icon("ControlAlignLeftWide", "EditorIcons"), TTR("Left Wide"), ANCHORS_PRESET_LEFT_WIDE);
|
||||||
anchors_popup->add_icon_item(get_icon("ControlAlignTopWide", "EditorIcons"), "Top Wide", ANCHORS_PRESET_TOP_WIDE);
|
anchors_popup->add_icon_item(get_icon("ControlAlignTopWide", "EditorIcons"), TTR("Top Wide"), ANCHORS_PRESET_TOP_WIDE);
|
||||||
anchors_popup->add_icon_item(get_icon("ControlAlignRightWide", "EditorIcons"), "Right Wide", ANCHORS_PRESET_RIGHT_WIDE);
|
anchors_popup->add_icon_item(get_icon("ControlAlignRightWide", "EditorIcons"), TTR("Right Wide"), ANCHORS_PRESET_RIGHT_WIDE);
|
||||||
anchors_popup->add_icon_item(get_icon("ControlAlignBottomWide", "EditorIcons"), "Bottom Wide", ANCHORS_PRESET_BOTTOM_WIDE);
|
anchors_popup->add_icon_item(get_icon("ControlAlignBottomWide", "EditorIcons"), TTR("Bottom Wide"), ANCHORS_PRESET_BOTTOM_WIDE);
|
||||||
anchors_popup->add_icon_item(get_icon("ControlVcenterWide", "EditorIcons"), "VCenter Wide ", ANCHORS_PRESET_VCENTER_WIDE);
|
anchors_popup->add_icon_item(get_icon("ControlVcenterWide", "EditorIcons"), TTR("VCenter Wide"), ANCHORS_PRESET_VCENTER_WIDE);
|
||||||
anchors_popup->add_icon_item(get_icon("ControlHcenterWide", "EditorIcons"), "HCenter Wide ", ANCHORS_PRESET_HCENTER_WIDE);
|
anchors_popup->add_icon_item(get_icon("ControlHcenterWide", "EditorIcons"), TTR("HCenter Wide"), ANCHORS_PRESET_HCENTER_WIDE);
|
||||||
anchors_popup->add_separator();
|
anchors_popup->add_separator();
|
||||||
anchors_popup->add_icon_item(get_icon("ControlAlignWide", "EditorIcons"), "Full Rect", ANCHORS_PRESET_WIDE);
|
anchors_popup->add_icon_item(get_icon("ControlAlignWide", "EditorIcons"), TTR("Full Rect"), ANCHORS_PRESET_WIDE);
|
||||||
|
|
||||||
anchor_mode_button->set_icon(get_icon("Anchor", "EditorIcons"));
|
anchor_mode_button->set_icon(get_icon("Anchor", "EditorIcons"));
|
||||||
}
|
}
|
||||||
|
|
|
@ -870,7 +870,7 @@ ThemeEditor::ThemeEditor() {
|
||||||
add_del_dialog->get_ok()->connect("pressed", this, "_dialog_cbk");
|
add_del_dialog->get_ok()->connect("pressed", this, "_dialog_cbk");
|
||||||
|
|
||||||
file_dialog = memnew(EditorFileDialog);
|
file_dialog = memnew(EditorFileDialog);
|
||||||
file_dialog->add_filter("*.theme ; Theme File");
|
file_dialog->add_filter("*.theme ; " + TTR("Theme File"));
|
||||||
add_child(file_dialog);
|
add_child(file_dialog);
|
||||||
file_dialog->connect("file_selected", this, "_save_template_cbk");
|
file_dialog->connect("file_selected", this, "_save_template_cbk");
|
||||||
}
|
}
|
||||||
|
|
|
@ -1186,7 +1186,7 @@ ProjectExportDialog::ProjectExportDialog() {
|
||||||
patches_hb->add_spacer();
|
patches_hb->add_spacer();
|
||||||
|
|
||||||
patch_dialog = memnew(EditorFileDialog);
|
patch_dialog = memnew(EditorFileDialog);
|
||||||
patch_dialog->add_filter("*.pck ; Pack File");
|
patch_dialog->add_filter("*.pck ; " + TTR("Pack File"));
|
||||||
patch_dialog->set_mode(EditorFileDialog::MODE_OPEN_FILE);
|
patch_dialog->set_mode(EditorFileDialog::MODE_OPEN_FILE);
|
||||||
patch_dialog->connect("file_selected", this, "_patch_selected");
|
patch_dialog->connect("file_selected", this, "_patch_selected");
|
||||||
add_child(patch_dialog);
|
add_child(patch_dialog);
|
||||||
|
@ -1269,8 +1269,8 @@ ProjectExportDialog::ProjectExportDialog() {
|
||||||
export_all_button->set_disabled(true);
|
export_all_button->set_disabled(true);
|
||||||
|
|
||||||
export_pck_zip = memnew(EditorFileDialog);
|
export_pck_zip = memnew(EditorFileDialog);
|
||||||
export_pck_zip->add_filter("*.zip ; ZIP File");
|
export_pck_zip->add_filter("*.zip ; " + TTR("ZIP File"));
|
||||||
export_pck_zip->add_filter("*.pck ; Godot Game Pack");
|
export_pck_zip->add_filter("*.pck ; " + TTR("Godot Game Pack"));
|
||||||
export_pck_zip->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
|
export_pck_zip->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
|
||||||
export_pck_zip->set_mode(EditorFileDialog::MODE_SAVE_FILE);
|
export_pck_zip->set_mode(EditorFileDialog::MODE_SAVE_FILE);
|
||||||
add_child(export_pck_zip);
|
add_child(export_pck_zip);
|
||||||
|
|
|
@ -371,8 +371,8 @@ private:
|
||||||
|
|
||||||
fdialog->set_mode(FileDialog::MODE_OPEN_FILE);
|
fdialog->set_mode(FileDialog::MODE_OPEN_FILE);
|
||||||
fdialog->clear_filters();
|
fdialog->clear_filters();
|
||||||
fdialog->add_filter("project.godot ; " VERSION_NAME " Project");
|
fdialog->add_filter(vformat("project.godot ; %s %s", VERSION_NAME, TTR("Project")));
|
||||||
fdialog->add_filter("*.zip ; Zip File");
|
fdialog->add_filter("*.zip ; " + TTR("Zip File"));
|
||||||
} else {
|
} else {
|
||||||
fdialog->set_mode(FileDialog::MODE_OPEN_DIR);
|
fdialog->set_mode(FileDialog::MODE_OPEN_DIR);
|
||||||
}
|
}
|
||||||
|
|
|
@ -4756,7 +4756,7 @@ VisualScriptEditor::VisualScriptEditor() {
|
||||||
HBoxContainer *graph_hbc = graph->get_zoom_hbox();
|
HBoxContainer *graph_hbc = graph->get_zoom_hbox();
|
||||||
|
|
||||||
Label *base_lbl = memnew(Label);
|
Label *base_lbl = memnew(Label);
|
||||||
base_lbl->set_text("Change Base Type: ");
|
base_lbl->set_text(TTR("Change Base Type:") + " ");
|
||||||
graph_hbc->add_child(base_lbl);
|
graph_hbc->add_child(base_lbl);
|
||||||
|
|
||||||
base_type_select = memnew(Button);
|
base_type_select = memnew(Button);
|
||||||
|
@ -4764,12 +4764,12 @@ VisualScriptEditor::VisualScriptEditor() {
|
||||||
graph_hbc->add_child(base_type_select);
|
graph_hbc->add_child(base_type_select);
|
||||||
|
|
||||||
Button *add_nds = memnew(Button);
|
Button *add_nds = memnew(Button);
|
||||||
add_nds->set_text("Add Nodes...");
|
add_nds->set_text(TTR("Add Nodes..."));
|
||||||
graph_hbc->add_child(add_nds);
|
graph_hbc->add_child(add_nds);
|
||||||
add_nds->connect("pressed", this, "_add_node_dialog");
|
add_nds->connect("pressed", this, "_add_node_dialog");
|
||||||
|
|
||||||
Button *fn_btn = memnew(Button);
|
Button *fn_btn = memnew(Button);
|
||||||
fn_btn->set_text("Add Function...");
|
fn_btn->set_text(TTR("Add Function..."));
|
||||||
graph_hbc->add_child(fn_btn);
|
graph_hbc->add_child(fn_btn);
|
||||||
fn_btn->connect("pressed", this, "_create_function_dialog");
|
fn_btn->connect("pressed", this, "_create_function_dialog");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue