Localization: Updated PrusaSlicer.pot and CZ dictionary

+ Fixed some phrases.
This commit is contained in:
YuSanka 2020-12-16 17:28:42 +01:00
parent 3f11877c8f
commit 8b980d4b77
6 changed files with 2691 additions and 2302 deletions

View file

@ -267,7 +267,7 @@ void Field::get_value_by_opt_type(wxString& str, const bool check_value/* = true
if (m_opt_id == "extrusion_multiplier") {
if (m_value.empty() || boost::any_cast<double>(m_value) != val) {
wxString msg_text = format_wxstr(_L("Input value is out of range\n"
"Are you sure that %s is a correct value and you want to continue?"), str);
"Are you sure that %s is a correct value and that you want to continue?"), str);
wxMessageDialog dialog(m_parent, msg_text, _L("Parameter validation") + ": " + m_opt_id, wxICON_WARNING | wxYES | wxNO);
if (dialog.ShowModal() == wxID_NO)
set_val(val);

View file

@ -4027,7 +4027,7 @@ bool GLCanvas3D::_render_arrange_menu(float pos_x)
dist_key += postfix;
rot_key += postfix;
imgui->text(GUI::format_wxstr(_L("Use %1%left mouse key to enter text edit mode:"), shortkey_ctrl_prefix()));
imgui->text(GUI::format_wxstr(_L("Press %1%left mouse button to enter the exact value"), shortkey_ctrl_prefix()));
if (imgui->slider_float(_L("Spacing"), &settings.distance, dist_min, 100.0f, "%5.2f") || dist_min > settings.distance) {
settings.distance = std::max(dist_min, settings.distance);

View file

@ -68,7 +68,8 @@ void copy_file_fix(const fs::path& source, const fs::path& target,const std::str
if (ec) {
std::string msg = GUI::format(
_L("Copying of file %1% to %2% failed. Permissions fail at target file before copying.\n"
"Error message : %3%\n This error happend during %4% phase."),
"Error message : %3%\n"
"This error happend during %4% phase."),
source, target, ec.message(), caller_function_name);
#if defined(__APPLE__) || defined(_WIN32)
throw Slic3r::CriticalException(msg);