mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-10 16:27:54 -06:00
Add the Polish language (#3622)
* Update localazy.json Add localization pl * Update Preferences.cpp Add polish language * OrcaSlicer_pl.po Add OrcaSlicer_pl.po * Update text.js Add pl_PL translate * Rename OrcaStudio_pl.po to OrcaSlicer_pl.po * Add files via upload * Update HMS.cpp * Add files via upload Update OrcaSlicer_pl * Update OrcaSlicer_pl.po * revert irrelevant change * fix one misspelling --------- Co-authored-by: SoftFever <softfeverever@gmail.com>
This commit is contained in:
parent
65ff80a687
commit
eaabaffa7a
5 changed files with 12965 additions and 2 deletions
|
@ -167,6 +167,9 @@ wxBoxSizer *PreferencesDialog::create_item_language_combobox(
|
|||
else if (vlist[i] == wxLocale::GetLanguageInfo(wxLANGUAGE_TURKISH)) {
|
||||
language_name = wxString::FromUTF8("Turkish");
|
||||
}
|
||||
else if (vlist[i] == wxLocale::GetLanguageInfo(wxLANGUAGE_POLISH)) {
|
||||
language_name = wxString::FromUTF8("Polski");
|
||||
}
|
||||
|
||||
if (app_config->get(param) == vlist[i]->CanonicalName) {
|
||||
m_current_language_selected = i;
|
||||
|
@ -970,7 +973,8 @@ wxWindow* PreferencesDialog::create_general_page()
|
|||
wxLANGUAGE_KOREAN,
|
||||
wxLANGUAGE_RUSSIAN,
|
||||
wxLANGUAGE_UKRAINIAN,
|
||||
wxLANGUAGE_TURKISH
|
||||
wxLANGUAGE_TURKISH,
|
||||
wxLANGUAGE_POLISH
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue