Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2019-05-10 12:49:47 +0300
committerYuSanka <yusanka@gmail.com>2019-05-10 12:50:11 +0300
commit580447317134f665a267f7291ef5b7378f676b11 (patch)
tree3a5c77eac5d55e22552948c1e75c0b1f5fab0fd0 /src/slic3r/GUI/Tab.hpp
parentfb6aabd785cfcef63111d977f10a2331ecc14c66 (diff)
Localization improvements
New list.txt and POT
Diffstat (limited to 'src/slic3r/GUI/Tab.hpp')
-rw-r--r--src/slic3r/GUI/Tab.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/slic3r/GUI/Tab.hpp b/src/slic3r/GUI/Tab.hpp
index 58bd3cfb5..5f01988f5 100644
--- a/src/slic3r/GUI/Tab.hpp
+++ b/src/slic3r/GUI/Tab.hpp
@@ -312,7 +312,7 @@ class TabPrint : public Tab
bool is_msg_dlg_already_exist {false};
public:
TabPrint(wxNotebook* parent) :
- Tab(parent, _(L("Print Settings")), "print") {}
+ Tab(parent, _(L("Print Settings")), L("print")) {}
~TabPrint() {}
ogStaticText* m_recommended_thin_wall_thickness_description_line;
@@ -330,7 +330,7 @@ class TabFilament : public Tab
ogStaticText* m_cooling_description_line;
public:
TabFilament(wxNotebook* parent) :
- Tab(parent, _(L("Filament Settings")), "filament") {}
+ Tab(parent, _(L("Filament Settings")), L("filament")) {}
~TabFilament() {}
void build() override;
@@ -363,7 +363,7 @@ public:
PrinterTechnology m_printer_technology = ptFFF;
- TabPrinter(wxNotebook* parent) : Tab(parent, _(L("Printer Settings")), "printer") {}
+ TabPrinter(wxNotebook* parent) : Tab(parent, _(L("Printer Settings")), L("printer")) {}
~TabPrinter() {}
void build() override;
@@ -386,7 +386,7 @@ class TabSLAMaterial : public Tab
{
public:
TabSLAMaterial(wxNotebook* parent) :
- Tab(parent, _(L("Material Settings")), "sla_material") {}
+ Tab(parent, _(L("Material Settings")), L("sla_material")) {}
~TabSLAMaterial() {}
void build() override;
@@ -400,7 +400,7 @@ class TabSLAPrint : public Tab
{
public:
TabSLAPrint(wxNotebook* parent) :
- Tab(parent, _(L("Print Settings")), "sla_print") {}
+ Tab(parent, _(L("Print Settings")), L("sla_print")) {}
~TabSLAPrint() {}
void build() override;
void reload_config() override;