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:
authorremi durand <remi-j.durand@thalesgroup.com>2021-06-16 22:14:57 +0300
committerremi durand <remi-j.durand@thalesgroup.com>2021-06-18 02:22:19 +0300
commit532ecec73ae2b49ed3f4a49ad1278768e716d6e2 (patch)
treeaf228e6ab161fb876be9e7bbb28c8094f5638975 /src/slic3r/GUI/Tab.cpp
parent467b1feaa7a03434f75ce1c2ab9a58798710b576 (diff)
fix un-localizable strings (step 2)
Diffstat (limited to 'src/slic3r/GUI/Tab.cpp')
-rw-r--r--src/slic3r/GUI/Tab.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp
index 5e690e484..a8fcce485 100644
--- a/src/slic3r/GUI/Tab.cpp
+++ b/src/slic3r/GUI/Tab.cpp
@@ -1956,12 +1956,12 @@ bool Tab::create_pages(std::string setting_type_name, int idx_page)
} else if (boost::starts_with(full_line, "print_host_upload_description")) {
TabPrinter* tab = nullptr;
if ((tab = dynamic_cast<TabPrinter*>(this)) == nullptr) continue;
- wxString description_line_text = _L(""
+ wxString description_line_text = wxString::Format(_L(""
"Note: All parameters from this group are moved to the Physical Printer settings (see changelog).\n\n"
"A new Physical Printer profile is created by clicking on the \"cog\" icon right of the Printer profiles combo box, "
"by selecting the \"Add physical printer\" item in the Printer combo box. The Physical Printer profile editor opens "
"also when clicking on the \"cog\" icon in the Printer settings tab. The Physical Printer profiles are being stored "
- "into " SLIC3R_APP_NAME "/physical_printer directory.");
+ "into %s/physical_printer directory."), SLIC3R_APP_KEY);
current_line = { "", "" };
current_line.full_width = 1;