💬 Add non-translated STR_DONE
This commit is contained in:
parent
4d113c2efd
commit
8b818f4ae5
|
@ -165,6 +165,7 @@
|
||||||
#define STR_SAVED_POS "Position saved"
|
#define STR_SAVED_POS "Position saved"
|
||||||
#define STR_RESTORING_POS "Restoring position"
|
#define STR_RESTORING_POS "Restoring position"
|
||||||
#define STR_INVALID_POS_SLOT "Invalid slot. Total: "
|
#define STR_INVALID_POS_SLOT "Invalid slot. Total: "
|
||||||
|
#define STR_DONE "Done."
|
||||||
|
|
||||||
#define STR_SD_CANT_OPEN_SUBDIR "Cannot open subdir "
|
#define STR_SD_CANT_OPEN_SUBDIR "Cannot open subdir "
|
||||||
#define STR_SD_INIT_FAIL "No SD card"
|
#define STR_SD_INIT_FAIL "No SD card"
|
||||||
|
|
|
@ -609,7 +609,7 @@ void unified_bed_leveling::G29() {
|
||||||
settings.load_mesh(param.KLS_storage_slot);
|
settings.load_mesh(param.KLS_storage_slot);
|
||||||
storage_slot = param.KLS_storage_slot;
|
storage_slot = param.KLS_storage_slot;
|
||||||
|
|
||||||
SERIAL_ECHOLNPGM("Done.");
|
SERIAL_ECHOLNPGM(STR_DONE);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -637,7 +637,7 @@ void unified_bed_leveling::G29() {
|
||||||
settings.store_mesh(param.KLS_storage_slot);
|
settings.store_mesh(param.KLS_storage_slot);
|
||||||
storage_slot = param.KLS_storage_slot;
|
storage_slot = param.KLS_storage_slot;
|
||||||
|
|
||||||
SERIAL_ECHOLNPGM("Done.");
|
SERIAL_ECHOLNPGM(STR_DONE);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (parser.seen_test('T'))
|
if (parser.seen_test('T'))
|
||||||
|
|
|
@ -112,7 +112,7 @@ inline void toggle_pins() {
|
||||||
}
|
}
|
||||||
SERIAL_EOL();
|
SERIAL_EOL();
|
||||||
}
|
}
|
||||||
SERIAL_ECHOLNPGM("Done.");
|
SERIAL_ECHOLNPGM(STR_DONE);
|
||||||
|
|
||||||
} // toggle_pins
|
} // toggle_pins
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue