Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #3721 - Typo in lang files #3722

Merged
merged 7 commits into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion localization/i18n/OrcaSlicer.pot
Original file line number Diff line number Diff line change
Expand Up @@ -12046,7 +12046,7 @@ msgstr ""
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more prinetrs, Please go to printer selection"
"To add preset for more printers, Please go to printer selection"
msgstr ""

msgid "Create Printer/Nozzle"
Expand Down
2 changes: 1 addition & 1 deletion localization/i18n/en/OrcaSlicer_en.po
Original file line number Diff line number Diff line change
Expand Up @@ -12756,7 +12756,7 @@ msgstr ""
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more prinetrs, Please go to printer selection"
"To add preset for more printers, Please go to printer selection"
msgstr ""

msgid "Create Printer/Nozzle"
Expand Down
2 changes: 1 addition & 1 deletion localization/i18n/hu/OrcaSlicer_hu.po
Original file line number Diff line number Diff line change
Expand Up @@ -12849,7 +12849,7 @@ msgstr ""
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more prinetrs, Please go to printer selection"
"To add preset for more printers, Please go to printer selection"
msgstr ""

msgid "Create Printer/Nozzle"
Expand Down
2 changes: 1 addition & 1 deletion localization/i18n/ja/OrcaSlicer_ja.po
Original file line number Diff line number Diff line change
Expand Up @@ -12473,7 +12473,7 @@ msgstr ""
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more prinetrs, Please go to printer selection"
"To add preset for more printers, Please go to printer selection"
msgstr ""

msgid "Create Printer/Nozzle"
Expand Down
2 changes: 1 addition & 1 deletion localization/i18n/nl/OrcaSlicer_nl.po
Original file line number Diff line number Diff line change
Expand Up @@ -12963,7 +12963,7 @@ msgstr ""
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more prinetrs, Please go to printer selection"
"To add preset for more printers, Please go to printer selection"
msgstr ""

msgid "Create Printer/Nozzle"
Expand Down
2 changes: 1 addition & 1 deletion localization/i18n/sv/OrcaSlicer_sv.po
Original file line number Diff line number Diff line change
Expand Up @@ -12775,7 +12775,7 @@ msgstr ""
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more prinetrs, Please go to printer selection"
"To add preset for more printers, Please go to printer selection"
msgstr ""

msgid "Create Printer/Nozzle"
Expand Down
2 changes: 1 addition & 1 deletion src/slic3r/GUI/CreatePresetsDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1181,7 +1181,7 @@ void CreateFilamentPresetDialog::select_curr_radiobox(std::vector<std::pair<Radi
m_filament_preset_combobox->SetLabelColor(DEFAULT_PROMPT_TEXT_COLOUR);
}
} else if (curr_selected_type == m_create_type.base_filament_preset) {
m_filament_preset_text->SetLabel(_L("We would rename the presets as \"Vendor Type Serial @printer you selected\". \nTo add preset for more prinetrs, Please go to printer selection"));
m_filament_preset_text->SetLabel(_L("We would rename the presets as \"Vendor Type Serial @printer you selected\". \nTo add preset for more printers, Please go to printer selection"));
m_filament_preset_combobox->Hide();
if (_L("Select Type") != m_filament_type_combobox->GetLabel()) {

Expand Down
Loading