Fix MSG_ c=

Add MSG_ to messages.c/h
This commit is contained in:
3d-gussner 2022-09-14 09:09:53 +02:00 committed by DRracer
parent ee6821eb0e
commit 129b646c58
5 changed files with 12 additions and 8 deletions

View file

@ -859,7 +859,7 @@ void CardReader::presort() {
#endif
uint16_t counter = 0;
menu_progressbar_init(fileCnt * fileCnt / 2, _i("Sorting files")); ////MSG_SORTING_FILES c=18
menu_progressbar_init(fileCnt * fileCnt / 2, _T(MSG_SORTING_FILES));
for (uint16_t i = 1; i < fileCnt; ++i){
// if (!IS_SD_INSERTED) return;
@ -926,7 +926,7 @@ void CardReader::presort() {
#endif
uint16_t counter = 0;
menu_progressbar_init(0.5*(fileCnt - 1)*(fileCnt), _i("Sorting files"));
menu_progressbar_init(0.5*(fileCnt - 1)*(fileCnt), _T(MSG_SORTING_FILES));
for (uint16_t i = fileCnt; --i;) {
if (!IS_SD_INSERTED) return;