mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-11 14:33:04 +00:00
Localization update (#12572)
* Update OrcaSlicer_es.po * ? added in code * Spanish Update * save your filament profile. * Downward machines settings * type and color. * Update OrcaSlicer_es.po * illegal characters * which layer being ironed. * Update OrcaSlicer_es.po * by chosen filament count." * unnecessary bridges." * Update OrcaSlicer_es.po * Spanish Pressure advance restore * bandeja -> cama * RU: Restore Pressure Advance * Calibration text Co-Authored-By: Felix14_v2 <75726196+Felix14-v2@users.noreply.github.com> * Updated Localization * Input Shaping test * Suggestion wrapper * Added embossJob * Updated all * Emboss missing marks * Missing preset values * Action Required --------- Co-authored-by: Felix14_v2 <75726196+Felix14-v2@users.noreply.github.com> Co-authored-by: SoftFever <softfeverever@gmail.com>
This commit is contained in:
@@ -83,7 +83,7 @@ static wxString update_custom_filaments()
|
||||
if (not_need_show) continue;
|
||||
if (!filament_name.empty()) {
|
||||
if (filament_with_base_id) {
|
||||
need_sort.push_back(std::make_pair("[Action Required] " + filament_name, filament_id));
|
||||
need_sort.push_back(std::make_pair(into_u8(_L("[Action Required] ")) + filament_name, filament_id));
|
||||
} else {
|
||||
|
||||
need_sort.push_back(std::make_pair(filament_name, filament_id));
|
||||
@@ -92,7 +92,7 @@ static wxString update_custom_filaments()
|
||||
}
|
||||
std::sort(need_sort.begin(), need_sort.end(), [](const std::pair<std::string, std::string> &a, const std::pair<std::string, std::string> &b) { return a.first < b.first; });
|
||||
if (need_delete_some_filament) {
|
||||
need_sort.push_back(std::make_pair("[Action Required]", "null"));
|
||||
need_sort.push_back(std::make_pair(into_u8(_L("[Action Required]")), "null"));
|
||||
}
|
||||
json temp_j;
|
||||
for (std::pair<std::string, std::string> &filament_name_to_id : need_sort) {
|
||||
|
||||
Reference in New Issue
Block a user