My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

language_da.h 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. /**
  24. * Danish
  25. *
  26. * LCD Menu Messages
  27. * See also https://marlinfw.org/docs/development/lcd_language.html
  28. */
  29. #define DISPLAY_CHARSET_ISO10646_1
  30. namespace Language_da {
  31. using namespace Language_en; // Inherit undefined strings from English
  32. constexpr uint8_t CHARSIZE = 2;
  33. LSTR LANGUAGE = _UxGT("Danish");
  34. LSTR WELCOME_MSG = MACHINE_NAME _UxGT(" er klar");
  35. LSTR MSG_MEDIA_INSERTED = _UxGT("Kort isat");
  36. LSTR MSG_MEDIA_REMOVED = _UxGT("Kort fjernet");
  37. LSTR MSG_MAIN = _UxGT("Menu");
  38. LSTR MSG_DISABLE_STEPPERS = _UxGT("Slå alle steppere fra");
  39. LSTR MSG_AUTO_HOME = _UxGT("Auto Home"); // G28
  40. LSTR MSG_LEVEL_BED_WAITING = _UxGT("Klik når du er klar");
  41. LSTR MSG_LEVEL_BED_NEXT_POINT = _UxGT("Næste punkt");
  42. LSTR MSG_LEVEL_BED_DONE = _UxGT("Bed level er færdig!");
  43. LSTR MSG_SET_HOME_OFFSETS = _UxGT("Sæt forsk. af home");
  44. LSTR MSG_HOME_OFFSETS_APPLIED = _UxGT("Forsk. er nu aktiv");
  45. #if HAS_PREHEAT
  46. LSTR MSG_PREHEAT_1 = _UxGT("Forvarm ") PREHEAT_1_LABEL;
  47. LSTR MSG_PREHEAT_1_H = _UxGT("Forvarm ") PREHEAT_1_LABEL " ~";
  48. LSTR MSG_PREHEAT_1_END = _UxGT("Forvarm ") PREHEAT_1_LABEL _UxGT(" end");
  49. LSTR MSG_PREHEAT_1_END_E = _UxGT("Forvarm ") PREHEAT_1_LABEL _UxGT(" end ~");
  50. LSTR MSG_PREHEAT_1_ALL = _UxGT("Forvarm ") PREHEAT_1_LABEL _UxGT(" Alle");
  51. LSTR MSG_PREHEAT_1_BEDONLY = _UxGT("Forvarm ") PREHEAT_1_LABEL _UxGT(" Bed");
  52. LSTR MSG_PREHEAT_1_SETTINGS = _UxGT("Forvarm ") PREHEAT_1_LABEL _UxGT(" conf");
  53. LSTR MSG_PREHEAT_M = _UxGT("Forvarm $");
  54. LSTR MSG_PREHEAT_M_H = _UxGT("Forvarm $ ~");
  55. LSTR MSG_PREHEAT_M_END = _UxGT("Forvarm $ end");
  56. LSTR MSG_PREHEAT_M_END_E = _UxGT("Forvarm $ end ~");
  57. LSTR MSG_PREHEAT_M_ALL = _UxGT("Forvarm $ Alle");
  58. LSTR MSG_PREHEAT_M_BEDONLY = _UxGT("Forvarm $ Bed");
  59. LSTR MSG_PREHEAT_M_SETTINGS = _UxGT("Forvarm $ conf");
  60. #endif
  61. LSTR MSG_COOLDOWN = _UxGT("Afkøl");
  62. LSTR MSG_SWITCH_PS_ON = _UxGT("Slå strøm til");
  63. LSTR MSG_SWITCH_PS_OFF = _UxGT("Slå strøm fra");
  64. LSTR MSG_EXTRUDE = _UxGT("Extruder");
  65. LSTR MSG_MOVE_AXIS = _UxGT("Flyt akser");
  66. LSTR MSG_BED_LEVELING = _UxGT("Juster bed");
  67. LSTR MSG_LEVEL_BED = _UxGT("Juster bed");
  68. LSTR MSG_MOVE_X = _UxGT("Flyt X");
  69. LSTR MSG_MOVE_Y = _UxGT("Flyt Y");
  70. LSTR MSG_MOVE_Z = _UxGT("Flyt Z");
  71. LSTR MSG_MOVE_N_MM = _UxGT("Flyt $mm");
  72. LSTR MSG_MOVE_01MM = _UxGT("Flyt 0.1mm");
  73. LSTR MSG_MOVE_1MM = _UxGT("Flyt 1mm");
  74. LSTR MSG_MOVE_10MM = _UxGT("Flyt 10mm");
  75. LSTR MSG_MOVE_100MM = _UxGT("Flyt 100mm");
  76. LSTR MSG_SPEED = _UxGT("Hastighed");
  77. LSTR MSG_BED_Z = _UxGT("Plade Z");
  78. LSTR MSG_NOZZLE = _UxGT("Dyse");
  79. LSTR MSG_NOZZLE_N = _UxGT("Dyse ~");
  80. LSTR MSG_BED = _UxGT("Plade");
  81. LSTR MSG_FAN_SPEED = _UxGT("Blæser hastighed");
  82. LSTR MSG_FAN_SPEED_N = _UxGT("Blæser hastighed ~");
  83. LSTR MSG_CONTROL = _UxGT("Kontrol");
  84. LSTR MSG_MIN = _UxGT(" \002 Min");
  85. LSTR MSG_MAX = _UxGT(" \002 Max");
  86. LSTR MSG_FACTOR = _UxGT(" \002 Fact");
  87. LSTR MSG_AUTOTEMP = _UxGT("Autotemp");
  88. LSTR MSG_LCD_ON = _UxGT("Til");
  89. LSTR MSG_LCD_OFF = _UxGT("Fra");
  90. LSTR MSG_SELECT = _UxGT("Vælg");
  91. LSTR MSG_SELECT_E = _UxGT("Vælg *");
  92. LSTR MSG_A_RETRACT = _UxGT("A-retract");
  93. LSTR MSG_A_TRAVEL = _UxGT("A-rejse");
  94. LSTR MSG_TEMPERATURE = _UxGT("Temperatur");
  95. LSTR MSG_MOTION = _UxGT("Bevægelse");
  96. LSTR MSG_FILAMENT = _UxGT("Filament");
  97. LSTR MSG_VOLUMETRIC_ENABLED = _UxGT("E i mm") SUPERSCRIPT_THREE;
  98. LSTR MSG_FILAMENT_DIAM = _UxGT("Fil. Dia.");
  99. LSTR MSG_FILAMENT_DIAM_E = _UxGT("Fil. Dia. *");
  100. LSTR MSG_CONTRAST = _UxGT("LCD kontrast");
  101. LSTR MSG_STORE_EEPROM = _UxGT("Gem i EEPROM");
  102. LSTR MSG_LOAD_EEPROM = _UxGT("Hent fra EEPROM");
  103. LSTR MSG_RESTORE_DEFAULTS = _UxGT("Gendan Defaults");
  104. LSTR MSG_REFRESH = LCD_STR_REFRESH _UxGT("Genopfrisk");
  105. LSTR MSG_INFO_SCREEN = _UxGT("Info skærm");
  106. LSTR MSG_PREPARE = _UxGT("Forbered");
  107. LSTR MSG_PAUSE_PRINT = _UxGT("Pause printet");
  108. LSTR MSG_RESUME_PRINT = _UxGT("Forsæt printet");
  109. LSTR MSG_STOP_PRINT = _UxGT("Stop printet");
  110. LSTR MSG_MEDIA_MENU = _UxGT("Print fra SD");
  111. LSTR MSG_NO_MEDIA = _UxGT("Intet SD kort");
  112. LSTR MSG_DWELL = _UxGT("Dvale...");
  113. LSTR MSG_USERWAIT = _UxGT("Venter på bruger...");
  114. LSTR MSG_PRINT_ABORTED = _UxGT("Print annulleret");
  115. LSTR MSG_NO_MOVE = _UxGT("Ingen bevægelse.");
  116. LSTR MSG_KILLED = _UxGT("DRÆBT. ");
  117. LSTR MSG_STOPPED = _UxGT("STOPPET. ");
  118. LSTR MSG_CONTROL_RETRACT = _UxGT("Tilbagetræk mm");
  119. LSTR MSG_CONTROL_RETRACT_SWAP = _UxGT("Skift Re.mm");
  120. LSTR MSG_CONTROL_RETRACTF = _UxGT("Tilbagetræk V");
  121. LSTR MSG_CONTROL_RETRACT_ZHOP = _UxGT("Hop mm");
  122. LSTR MSG_CONTROL_RETRACT_RECOVER = _UxGT("Unretr. mm");
  123. LSTR MSG_CONTROL_RETRACT_RECOVER_SWAP = _UxGT("Skift Unretr. mm");
  124. LSTR MSG_CONTROL_RETRACT_RECOVERF = _UxGT("Unretract V");
  125. LSTR MSG_AUTORETRACT = _UxGT("Auto-Retract");
  126. LSTR MSG_FILAMENTCHANGE = _UxGT("Skift filament");
  127. LSTR MSG_FILAMENTCHANGE_E = _UxGT("Skift filament *");
  128. LSTR MSG_CHANGE_MEDIA = _UxGT("Skift SD kort");
  129. LSTR MSG_ZPROBE_OUT = _UxGT("Probe udenfor plade");
  130. LSTR MSG_BLTOUCH_SELFTEST = _UxGT("BLTouch Selv-Test");
  131. LSTR MSG_HOME_FIRST = _UxGT("Home %s%s%s først");
  132. LSTR MSG_HEATING_FAILED_LCD = _UxGT("Opvarmning fejlet");
  133. LSTR MSG_ERR_REDUNDANT_TEMP = _UxGT("Fejl: reserve temp");
  134. LSTR MSG_THERMAL_RUNAWAY = _UxGT("Temp løber løbsk");
  135. LSTR MSG_ERR_MAXTEMP = _UxGT("Fejl: Maks temp");
  136. LSTR MSG_ERR_MINTEMP = _UxGT("Fejl: Min temp");
  137. LSTR MSG_HALTED = _UxGT("PRINTER STOPPET");
  138. LSTR MSG_PLEASE_RESET = _UxGT("Reset Venligst");
  139. LSTR MSG_HEATING = _UxGT("Opvarmer...");
  140. LSTR MSG_BED_HEATING = _UxGT("Opvarmer plade...");
  141. LSTR MSG_DELTA_CALIBRATE = _UxGT("Delta Kalibrering");
  142. LSTR MSG_DELTA_CALIBRATE_X = _UxGT("Kalibrer X");
  143. LSTR MSG_DELTA_CALIBRATE_Y = _UxGT("Kalibrer Y");
  144. LSTR MSG_DELTA_CALIBRATE_Z = _UxGT("Kalibrer Z");
  145. LSTR MSG_DELTA_CALIBRATE_CENTER = _UxGT("Kalibrerings Center");
  146. LSTR MSG_INFO_MENU = _UxGT("Om Printer");
  147. LSTR MSG_INFO_BOARD_MENU = _UxGT("Kort Info");
  148. LSTR MSG_INFO_THERMISTOR_MENU = _UxGT("Thermistors");
  149. #if LCD_WIDTH >= 20 || HAS_DWIN_E3V2
  150. LSTR MSG_INFO_PRINT_COUNT = _UxGT("Ant. Prints");
  151. LSTR MSG_INFO_COMPLETED_PRINTS = _UxGT("Færdige");
  152. LSTR MSG_INFO_PRINT_TIME = _UxGT("Total print tid");
  153. LSTR MSG_INFO_PRINT_LONGEST = _UxGT("Længste print");
  154. LSTR MSG_INFO_PRINT_FILAMENT = _UxGT("Total Extruderet");
  155. #else
  156. LSTR MSG_INFO_PRINT_COUNT = _UxGT("Prints");
  157. LSTR MSG_INFO_COMPLETED_PRINTS = _UxGT("Færdige");
  158. LSTR MSG_INFO_PRINT_TIME = _UxGT("Total");
  159. LSTR MSG_INFO_PRINT_LONGEST = _UxGT("Længste");
  160. LSTR MSG_INFO_PRINT_FILAMENT = _UxGT("Extruderet");
  161. #endif
  162. LSTR MSG_INFO_PSU = _UxGT("Strømfors.");
  163. LSTR MSG_DRIVE_STRENGTH = _UxGT("Driv Styrke");
  164. LSTR MSG_DAC_PERCENT_N = _UxGT("@ Driv %");
  165. LSTR MSG_DAC_EEPROM_WRITE = _UxGT("DAC EEPROM Skriv");
  166. LSTR MSG_FILAMENT_CHANGE_OPTION_RESUME = _UxGT("Forsæt print");
  167. LSTR MSG_KILL_EXPECTED_PRINTER = _UxGT("Forkert printer");
  168. #if LCD_HEIGHT >= 4
  169. LSTR MSG_FILAMENT_CHANGE_INIT = _UxGT(MSG_3_LINE("Vent på start", "af filament", "skift"));
  170. LSTR MSG_FILAMENT_CHANGE_UNLOAD = _UxGT(MSG_2_LINE("Vent på", "filament udskyd."));
  171. LSTR MSG_FILAMENT_CHANGE_INSERT = _UxGT(MSG_3_LINE("Indsæt filament", "og tryk på knap", "for at fortsætte..."));
  172. LSTR MSG_FILAMENT_CHANGE_LOAD = _UxGT(MSG_2_LINE("Vent på", "filament indtag"));
  173. LSTR MSG_FILAMENT_CHANGE_RESUME = _UxGT(MSG_2_LINE("Vent på at print", "fortsætter"));
  174. #else // LCD_HEIGHT < 4
  175. LSTR MSG_FILAMENT_CHANGE_INIT = _UxGT(MSG_1_LINE("Vent venligst..."));
  176. LSTR MSG_FILAMENT_CHANGE_UNLOAD = _UxGT(MSG_1_LINE("Udskyder..."));
  177. LSTR MSG_FILAMENT_CHANGE_INSERT = _UxGT(MSG_1_LINE("Indsæt og klik"));
  178. LSTR MSG_FILAMENT_CHANGE_LOAD = _UxGT(MSG_1_LINE("Indtager..."));
  179. LSTR MSG_FILAMENT_CHANGE_RESUME = _UxGT(MSG_1_LINE("Fortsætter..."));
  180. #endif // LCD_HEIGHT < 4
  181. }