Browse Source

🌐 Some short menu strings

Scott Lahteine 1 year ago
parent
commit
45cf997341
1 changed files with 19 additions and 8 deletions
  1. 19
    8
      Marlin/src/lcd/language/language_en.h

+ 19
- 8
Marlin/src/lcd/language/language_en.h View File

@@ -471,15 +471,27 @@ namespace Language_en {
471 471
   LSTR MSG_PAUSE_PRINT                    = _UxGT("Pause Print");
472 472
   LSTR MSG_ADVANCED_PAUSE                 = _UxGT("Advanced Pause");
473 473
   LSTR MSG_RESUME_PRINT                   = _UxGT("Resume Print");
474
-  LSTR MSG_HOST_START_PRINT               = _UxGT("Start Host Print");
475 474
   LSTR MSG_STOP_PRINT                     = _UxGT("Stop Print");
476
-  LSTR MSG_END_LOOPS                      = _UxGT("End Repeat Loops");
477
-  LSTR MSG_PRINTING_OBJECT                = _UxGT("Printing Object");
478
-  LSTR MSG_CANCEL_OBJECT                  = _UxGT("Cancel Object");
479
-  LSTR MSG_CANCEL_OBJECT_N                = _UxGT("Cancel Object =");
480 475
   LSTR MSG_OUTAGE_RECOVERY                = _UxGT("Power Outage");
481
-  LSTR MSG_CONTINUE_PRINT_JOB             = _UxGT("Continue Print Job");
482
-  LSTR MSG_MEDIA_MENU                     = _UxGT("Print from ") MEDIA_TYPE_EN;
476
+  #if LCD_WIDTH >= 20 || HAS_DWIN_E3V2
477
+    LSTR MSG_HOST_START_PRINT             = _UxGT("Start Host Print");
478
+    LSTR MSG_PRINTING_OBJECT              = _UxGT("Printing Object");
479
+    LSTR MSG_CANCEL_OBJECT                = _UxGT("Cancel Object");
480
+    LSTR MSG_CANCEL_OBJECT_N              = _UxGT("Cancel Object =");
481
+    LSTR MSG_CONTINUE_PRINT_JOB           = _UxGT("Continue Print Job");
482
+    LSTR MSG_MEDIA_MENU                   = _UxGT("Print from ") MEDIA_TYPE_EN;
483
+    LSTR MSG_TURN_OFF                     = _UxGT("Turn off the printer");
484
+    LSTR MSG_END_LOOPS                    = _UxGT("End Repeat Loops");
485
+  #else
486
+    LSTR MSG_HOST_START_PRINT             = _UxGT("Host Start");
487
+    LSTR MSG_PRINTING_OBJECT              = _UxGT("Print Obj");
488
+    LSTR MSG_CANCEL_OBJECT                = _UxGT("Cancel Obj");
489
+    LSTR MSG_CANCEL_OBJECT_N              = _UxGT("Cancel Obj =");
490
+    LSTR MSG_CONTINUE_PRINT_JOB           = _UxGT("Continue Job");
491
+    LSTR MSG_MEDIA_MENU                   = MEDIA_TYPE_EN _UxGT(" Print");
492
+    LSTR MSG_TURN_OFF                     = _UxGT("Turn off now");
493
+    LSTR MSG_END_LOOPS                    = _UxGT("End Loops");
494
+  #endif
483 495
   LSTR MSG_NO_MEDIA                       = _UxGT("No ") MEDIA_TYPE_EN;
484 496
   LSTR MSG_DWELL                          = _UxGT("Sleep...");
485 497
   LSTR MSG_USERWAIT                       = _UxGT("Click to Resume...");
@@ -490,7 +502,6 @@ namespace Language_en {
490 502
   LSTR MSG_PRINT_ABORTED                  = _UxGT("Print Aborted");
491 503
   LSTR MSG_PRINT_DONE                     = _UxGT("Print Done");
492 504
   LSTR MSG_PRINTER_KILLED                 = _UxGT("Printer killed!");
493
-  LSTR MSG_TURN_OFF                       = _UxGT("Turn off the printer");
494 505
   LSTR MSG_NO_MOVE                        = _UxGT("No Move.");
495 506
   LSTR MSG_KILLED                         = _UxGT("KILLED. ");
496 507
   LSTR MSG_STOPPED                        = _UxGT("STOPPED. ");

Loading…
Cancel
Save