From 5012e3079fe2b75eb7454c51e1be6acd8ded791b Mon Sep 17 00:00:00 2001 From: bubnikv Date: Thu, 9 May 2019 15:39:15 +0200 Subject: [PATCH] Some textation improvements, renamed Silent mode to Stealth. --- src/libslic3r/PrintConfig.cpp | 6 +++--- src/slic3r/GUI/KBShortcutsDialog.cpp | 6 +++--- src/slic3r/GUI/Plater.cpp | 2 +- src/slic3r/GUI/Tab.cpp | 8 ++++---- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 3a9573ccf..f5190a96c 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1050,8 +1050,8 @@ void PrintConfigDef::init_fff_params() def->set_default_value(new ConfigOptionBool(false)); def = this->add("silent_mode", coBool); - def->label = L("Supports silent mode"); - def->tooltip = L("Set silent mode for the G-code flavor"); + def->label = L("Supports stealth mode"); + def->tooltip = L("The firmware supports stealth mode"); def->mode = comExpert; def->set_default_value(new ConfigOptionBool(true)); @@ -2426,7 +2426,7 @@ void PrintConfigDef::init_sla_params() def = this->add("support_pillar_connection_mode", coEnum); def->label = L("Support pillar connection mode"); - def->tooltip = L("Controls the bridge type between two neigboring pillars." + def->tooltip = L("Controls the bridge type between two neighboring pillars." " Can be zig-zag, cross (double zig-zag) or dynamic which" " will automatically switch between the first two depending" " on the distance of the two pillars."); diff --git a/src/slic3r/GUI/KBShortcutsDialog.cpp b/src/slic3r/GUI/KBShortcutsDialog.cpp index 7042c125a..a032c9761 100644 --- a/src/slic3r/GUI/KBShortcutsDialog.cpp +++ b/src/slic3r/GUI/KBShortcutsDialog.cpp @@ -120,9 +120,9 @@ void KBShortcutsDialog::fill_shortcuts() main_shortcuts.push_back(Shortcut(ctrl+"6" ,L("Switch to Preview"))); main_shortcuts.push_back(Shortcut(ctrl+"P" ,L("Preferences"))); main_shortcuts.push_back(Shortcut(ctrl+"J" ,L("Print host upload queue"))); - main_shortcuts.push_back(Shortcut("0-6" ,L("Camera view "))); - main_shortcuts.push_back(Shortcut("+" ,L("Add Instance to selected object "))); - main_shortcuts.push_back(Shortcut("-" ,L("Remove Instance from selected object"))); + main_shortcuts.push_back(Shortcut("0-6" ,L("Camera view"))); + main_shortcuts.push_back(Shortcut("+" ,L("Add Instance of the selected object"))); + main_shortcuts.push_back(Shortcut("-" ,L("Remove Instance of the selected object"))); main_shortcuts.push_back(Shortcut("?" ,L("Show keyboard shortcuts list"))); main_shortcuts.push_back(Shortcut(ctrl/*+"LeftMouse"*/,L("Press to select multiple object or move multiple object with mouse"))); diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index c5643f422..022cb2e9d 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -1081,7 +1081,7 @@ void Sidebar::show_sliced_info_sizer(const bool show) info_text += wxString::Format("\n%s", ps.estimated_normal_print_time); } if (ps.estimated_silent_print_time != "N/A") { - new_label += wxString::Format("\n - %s", _(L("silent mode"))); + new_label += wxString::Format("\n - %s", _(L("stealth mode"))); info_text += wxString::Format("\n%s", ps.estimated_silent_print_time); } p->sliced_info->SetTextAndShow(siEstimatedTime, info_text, new_label); diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 7ad4263ca..4c59eec91 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2148,14 +2148,14 @@ PageShp TabPrinter::build_kinematics_page() def.width = 15; def.gui_type = "legend"; def.mode = comAdvanced; - def.tooltip = L("Values in this column are for Full Power mode"); - def.set_default_value(new ConfigOptionString{ _(L("Full Power")).ToUTF8().data() }); + def.tooltip = L("Values in this column are for Normal mode"); + def.set_default_value(new ConfigOptionString{ _(L("Normal")).ToUTF8().data() }); auto option = Option(def, "full_power_legend"); line.append_option(option); - def.tooltip = L("Values in this column are for Silent mode"); - def.set_default_value(new ConfigOptionString{ _(L("Silent")).ToUTF8().data() }); + def.tooltip = L("Values in this column are for Stealth mode"); + def.set_default_value(new ConfigOptionString{ _(L("Stealth")).ToUTF8().data() }); option = Option(def, "silent_legend"); line.append_option(option);