Localization: Fixed some phrases and updated POT

+ updated internal dictionaries
+ community dictionaries are merged with new POT
This commit is contained in:
YuSanka 2025-02-26 10:49:10 +01:00
parent 8cadd207f0
commit bb51bb3ded
48 changed files with 209247 additions and 202670 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

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

@ -1512,11 +1512,11 @@ SlaGizmoHelpDialog::SlaGizmoHelpDialog()
} }
std::vector<std::pair<std::string, wxString>> point_types; std::vector<std::pair<std::string, wxString>> point_types;
point_types.push_back(std::make_pair("sphere_lightgray",_L("Generated point"))); point_types.push_back(std::make_pair("sphere_lightgray",_L("Generated support point")));
point_types.push_back(std::make_pair("sphere_redish", _L("Selected support point"))); point_types.push_back(std::make_pair("sphere_redish", _L("Selected support point")));
point_types.push_back(std::make_pair("sphere_orange", _L("User edited point"))); point_types.push_back(std::make_pair("sphere_orange", _L("Edited support point")));
point_types.push_back(std::make_pair("sphere_blueish", _L("Island support point"))); point_types.push_back(std::make_pair("sphere_blueish", _L("Island support point")));
point_types.push_back(std::make_pair("sphere_cyan", _L("Mouse hovered point"))); point_types.push_back(std::make_pair("sphere_cyan", _L("Hovered support point")));
for (const auto &[icon_name, description] : point_types) { for (const auto &[icon_name, description] : point_types) {
auto desc = new wxStaticText(this, wxID_ANY, description); auto desc = new wxStaticText(this, wxID_ANY, description);
desc->SetFont(font); desc->SetFont(font);

View File

@ -1714,7 +1714,7 @@ void TabPrint::build()
line.widget = [this](wxWindow* parent) { line.widget = [this](wxWindow* parent) {
ogStaticText* stat_text; // Let the pointer die, we don't need it and the parent will free it. ogStaticText* stat_text; // Let the pointer die, we don't need it and the parent will free it.
wxSizer* sizer = description_line_widget(parent, &stat_text); wxSizer* sizer = description_line_widget(parent, &stat_text);
stat_text->SetText(from_u8("Note: When using this option, the Arrange function automatically " stat_text->SetText(_L("Note: When using this option, the Arrange function automatically "
"accounts for the printer geometry to prevent collisions. Extruder geometry is built-in for most " "accounts for the printer geometry to prevent collisions. Extruder geometry is built-in for most "
"Prusa printers, the others use generic model defined by values in Printer Settings.")); "Prusa printers, the others use generic model defined by values in Printer Settings."));
return sizer; return sizer;