diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 85841e87e7..907fdfb02a 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -538,8 +538,8 @@ void PrintConfigDef::init_fff_params() def = this->add("automatic_infill_combination", coBool); def->label = L("Automatic infill combination"); def->category = L("Infill"); - def->tooltip = L("This feature automatically combine infill of several layers and speeds up your print by extruding thicker " - "infill layers while preserving thin perimeters, thus accuracy."); + def->tooltip = L("This feature automatically combines infill of several layers and speeds up your print by extruding thicker " + "infill layers while preserving thin perimeters, thus maintaining accuracy."); def->mode = comAdvanced; def->set_default_value(new ConfigOptionBool(false)); @@ -1011,6 +1011,7 @@ void PrintConfigDef::init_fff_params() "(top+bottom solid layers)."); def->set_enum({ { "disabled", L("Disabled") }, + // TRN: This is a drop-down option for 'Ensure vertical shell thickness' parameter. { "partial", L("Partial") }, { "enabled", L("Enabled") }, }); @@ -2731,7 +2732,9 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionEnum(ScarfSeamPlacement::nowhere)); def->set_enum({ + // TRN: Drop-down option for 'Scarf joint placement' parameter. { "nowhere", L("Nowhere") }, + // TRN: Drop-down option for 'Scarf joint placement' parameter. { "contours", L("Contours") }, { "everywhere", L("Everywhere") } }); @@ -2747,7 +2750,7 @@ void PrintConfigDef::init_fff_params() def->label = L("Scarf start height"); def->category = L("Layers and Perimeters"); def->tooltip = L("Start height of the scarf joint specified as fraction of the current layer height."); - def->sidetext = L(" %"); + def->sidetext = L("%"); def->min = 0; def->max = 100; def->mode = comAdvanced; @@ -2772,7 +2775,7 @@ void PrintConfigDef::init_fff_params() def = this->add("scarf_seam_max_segment_length", coFloat); def->label = L("Max scarf joint segment length"); def->category = L("Layers and Perimeters"); - def->tooltip = L("Maximal length of any scarf joint segment."); + def->tooltip = L("Maximum length of any scarf joint segment."); def->sidetext = L("mm"); def->min = 0.15f; def->mode = comAdvanced; diff --git a/src/slic3r/GUI/BulkExportDialog.cpp b/src/slic3r/GUI/BulkExportDialog.cpp index 27705e6a29..7005de7486 100644 --- a/src/slic3r/GUI/BulkExportDialog.cpp +++ b/src/slic3r/GUI/BulkExportDialog.cpp @@ -204,7 +204,7 @@ BulkExportDialog::BulkExportDialog(const std::vector& wa "is experimental, so proceed with caution."); notification_type = NotificationType::WipeTowerNozzleDiameterDiffer; } else if (text == "_SUPPORT_NOZZLE_DIAMETER_DIFFER") { + // TRN: This is a first part of the notification text: + // "Printing supports with different nozzle diameters is experimental. For best results, switch to Organic supports and assign a specific extruder for supports." text = _u8L("Printing supports with different nozzle diameters " "is experimental. For best results, switch to Organic supports and"); + // TRN: This is a second part (hyperlink) of the notification text: + // "Printing supports with different nozzle diameters is experimental. For best results, switch to Organic supports and assign a specific extruder for supports." hypertext = _u8L("assign a specific extruder for supports."); multiline = true; notification_type = NotificationType::SupportNozzleDiameterDiffer; diff --git a/src/slic3r/Utils/PresetUpdaterWrapper.cpp b/src/slic3r/Utils/PresetUpdaterWrapper.cpp index 481a81fe13..51123dd268 100644 --- a/src/slic3r/Utils/PresetUpdaterWrapper.cpp +++ b/src/slic3r/Utils/PresetUpdaterWrapper.cpp @@ -286,7 +286,7 @@ CommonUpdaterDialog::CommonUpdaterDialog(PresetUpdaterUIStatus* ui_status, wxWin , PresetUpdaterUIStatusCancel(ui_status) { auto* headline = new wxStaticText(this, wxID_ANY, first_line, wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER_HORIZONTAL); - m_status_text = new wxStaticText(this, wxID_ANY, _L("Initializing..."), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER_HORIZONTAL); + m_status_text = new wxStaticText(this, wxID_ANY, _L("Initializing") + dots, wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER_HORIZONTAL); m_cancel_button = new wxButton(this, wxID_CANCEL, "Cancel"); // Layout using sizer wxBoxSizer* hsizer = new wxBoxSizer(wxHORIZONTAL);