Localization: Updated POT and internal dictionaries (CS, PL, DE, IT, ES, FR, JA)

+ community POs are merged with POT
+ Added missed phrases
This commit is contained in:
YuSanka 2024-06-25 15:15:23 +02:00 committed by Lukas Matena
parent 7debbdbb0d
commit 09a6881a6e
33 changed files with 12474 additions and 11323 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -29,6 +29,7 @@ src/slic3r/GUI/ButtonsDescription.cpp
src/slic3r/GUI/ConfigManipulation.cpp
src/slic3r/GUI/ConfigSnapshotDialog.cpp
src/slic3r/GUI/ConfigWizard.cpp
src/slic3r/GUI/ConfigWizardWebViewPage.cpp
src/slic3r/GUI/DesktopIntegrationDialog.cpp
src/slic3r/GUI/TickCodesManager.cpp
src/slic3r/GUI/DoubleSliderForLayers.cpp

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -15,7 +15,7 @@ wxDEFINE_EVENT(EVT_LOGIN_VIA_WIZARD, Event<std::string>);
ConfigWizardWebViewPage::ConfigWizardWebViewPage(ConfigWizard *parent)
// TRN Config wizard page headline.
: ConfigWizardPage(parent, _L("Log into the Prusa Account (optional)"), _L("Log in (optional)"))
: ConfigWizardPage(parent, _L("Log in with Your Prusa Account (optional)"), _L("Log in (optional)"))
{
p_user_account = wxGetApp().plater()->get_user_account();
assert(p_user_account);
@ -32,10 +32,10 @@ ConfigWizardWebViewPage::ConfigWizardWebViewPage(ConfigWizard *parent)
}
if (logged) {
// TRN Config wizard page with a log in web.
m_text = new wxStaticText(this, wxID_ANY, format_wxstr("You are logged as %1%.", p_user_account->get_username()));
m_text = new wxStaticText(this, wxID_ANY, format_wxstr(_L("You are logged as %1%."), p_user_account->get_username()));
} else {
// TRN Config wizard page with a log in web. first line of text.
m_text = new wxStaticText(this, wxID_ANY, _L("Please log into your Prusa Account."));
m_text = new wxStaticText(this, wxID_ANY, _L("Log in to control your printers remotely through the built-in Connect in PrusaSlicer."));
// TRN Config wizard page with a log in web. second line of text.
}
append(m_text);
@ -57,10 +57,10 @@ bool ConfigWizardWebViewPage::login_changed()
m_browser_sizer->Show(!logged);
if (logged) {
// TRN Config wizard page with a log in web.
m_text->SetLabel(format_wxstr("You are logged as %1%.", p_user_account->get_username()));
m_text->SetLabel(format_wxstr(_L("You are logged as %1%."), p_user_account->get_username()));
} else {
// TRN Config wizard page with a log in web. first line of text.
m_text->SetLabel(_L("Please log into your Prusa Account."));
m_text->SetLabel(_L("Log in to control your printers remotely through the built-in Connect in PrusaSlicer."));
}
return logged;
}