mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-16 13:32:44 +00:00
Update locale
This commit is contained in:
+2729
-828
File diff suppressed because it is too large
Load Diff
+3465
-1084
File diff suppressed because it is too large
Load Diff
+3211
-984
File diff suppressed because it is too large
Load Diff
+3511
-1113
File diff suppressed because it is too large
Load Diff
+2854
-868
File diff suppressed because it is too large
Load Diff
+3441
-1087
File diff suppressed because it is too large
Load Diff
+3434
-1089
File diff suppressed because it is too large
Load Diff
+3196
-988
File diff suppressed because it is too large
Load Diff
+3465
-1085
File diff suppressed because it is too large
Load Diff
+3041
-922
File diff suppressed because it is too large
Load Diff
+3412
-1035
File diff suppressed because it is too large
Load Diff
+3488
-1089
File diff suppressed because it is too large
Load Diff
+3268
-1028
File diff suppressed because it is too large
Load Diff
+3456
-1085
File diff suppressed because it is too large
Load Diff
+3488
-1089
File diff suppressed because it is too large
Load Diff
+8770
-4497
File diff suppressed because it is too large
Load Diff
+3219
-986
File diff suppressed because it is too large
Load Diff
+3487
-1082
File diff suppressed because it is too large
Load Diff
+3456
-1074
File diff suppressed because it is too large
Load Diff
+7745
-3919
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
+3401
-1017
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -264,9 +264,9 @@ wxBoxSizer* FilamentPickerDialog::CreateInfoSection()
|
|||||||
m_label_preview_color = new wxStaticText(this, wxID_ANY, _L("Custom Color"),
|
m_label_preview_color = new wxStaticText(this, wxID_ANY, _L("Custom Color"),
|
||||||
wxDefaultPosition, wxDefaultSize,
|
wxDefaultPosition, wxDefaultSize,
|
||||||
wxST_ELLIPSIZE_END);
|
wxST_ELLIPSIZE_END);
|
||||||
m_label_preview_idx = new wxStaticText(this, wxID_ANY, _L(""),
|
m_label_preview_idx = new wxStaticText(this, wxID_ANY, "",
|
||||||
wxDefaultPosition, wxDefaultSize); // No size limit, no ellipsis
|
wxDefaultPosition, wxDefaultSize); // No size limit, no ellipsis
|
||||||
m_label_preview_type = new wxStaticText(this, wxID_ANY, _L(""),
|
m_label_preview_type = new wxStaticText(this, wxID_ANY, "",
|
||||||
wxDefaultPosition, wxSize(FromDIP(220), FromDIP(16)),
|
wxDefaultPosition, wxSize(FromDIP(220), FromDIP(16)),
|
||||||
wxST_ELLIPSIZE_END);
|
wxST_ELLIPSIZE_END);
|
||||||
|
|
||||||
@@ -504,7 +504,7 @@ void FilamentPickerDialog::UpdateCustomColorPreview(const wxColour& custom_color
|
|||||||
|
|
||||||
// Update preview labels for custom color
|
// Update preview labels for custom color
|
||||||
m_label_preview_color->SetLabel(custom_color.GetAsString(wxC2S_HTML_SYNTAX));
|
m_label_preview_color->SetLabel(custom_color.GetAsString(wxC2S_HTML_SYNTAX));
|
||||||
m_label_preview_idx->SetLabel(_L(""));
|
m_label_preview_idx->SetLabel("");
|
||||||
Layout();
|
Layout();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1211,7 +1211,7 @@ bool Sidebar::priv::switch_diameter(bool single)
|
|||||||
}
|
}
|
||||||
auto preset = wxGetApp().preset_bundle->get_similar_printer_preset({}, diameter.ToStdString());
|
auto preset = wxGetApp().preset_bundle->get_similar_printer_preset({}, diameter.ToStdString());
|
||||||
if (preset == nullptr) {
|
if (preset == nullptr) {
|
||||||
MessageDialog dlg(this->plater, _L(""), _L(""));
|
MessageDialog dlg(this->plater, "", "");
|
||||||
dlg.ShowModal();
|
dlg.ShowModal();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -8537,7 +8537,7 @@ void Plater::priv::on_select_preset(wxCommandEvent &evt)
|
|||||||
if (combo->is_selected_printer_model()) {
|
if (combo->is_selected_printer_model()) {
|
||||||
auto preset = wxGetApp().preset_bundle->get_similar_printer_preset(preset_name, {});
|
auto preset = wxGetApp().preset_bundle->get_similar_printer_preset(preset_name, {});
|
||||||
if (preset == nullptr) {
|
if (preset == nullptr) {
|
||||||
MessageDialog dlg(this->sidebar, _L(""), _L(""));
|
MessageDialog dlg(this->sidebar, "", "");
|
||||||
dlg.ShowModal();
|
dlg.ShowModal();
|
||||||
}
|
}
|
||||||
preset->is_visible = true; // force visible
|
preset->is_visible = true; // force visible
|
||||||
|
|||||||
Reference in New Issue
Block a user