ENH: Encoding and copywriting issues
Jira: 5964 Change-Id: I71850e00584def7f4d4ab0d236604720bb480b32
This commit is contained in:
parent
e744e433d5
commit
5ed07b0588
|
@ -69,7 +69,7 @@ void ConfigManipulation::check_nozzle_recommended_temperature_range(DynamicPrint
|
||||||
need_check = true;
|
need_check = true;
|
||||||
}
|
}
|
||||||
if (temperature_range_low > temperature_range_high) {
|
if (temperature_range_low > temperature_range_high) {
|
||||||
msg_text += _L("The recommended minimum temperature cannot be higher than the recommended minimum temperature.\n");
|
msg_text += _L("The recommended minimum temperature cannot be higher than the recommended maximum temperature.\n");
|
||||||
need_check = true;
|
need_check = true;
|
||||||
}
|
}
|
||||||
if (need_check) {
|
if (need_check) {
|
||||||
|
|
|
@ -5076,7 +5076,7 @@ void Tab::delete_preset()
|
||||||
for (auto &preset2 : *m_presets)
|
for (auto &preset2 : *m_presets)
|
||||||
if (preset2.inherits() == current_preset.name) {
|
if (preset2.inherits() == current_preset.name) {
|
||||||
++count;
|
++count;
|
||||||
presets += "\n - " + preset2.name;
|
presets += "\n - " + from_u8(preset2.name);
|
||||||
}
|
}
|
||||||
if (count > 0) {
|
if (count > 0) {
|
||||||
msg = _L("Presets inherited by other presets can not be deleted!");
|
msg = _L("Presets inherited by other presets can not be deleted!");
|
||||||
|
|
Loading…
Reference in New Issue