/** * Marlin 3D Printer Firmware * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] * * Based on Sprinter and grbl. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #pragma once #include "../inc/MarlinConfig.h" #define _UxGT(a) a // Fallback if no language is set. DON'T CHANGE #ifndef LCD_LANGUAGE #define LCD_LANGUAGE en #endif // For character-based LCD controllers (DISPLAY_CHARSET_HD44780) #define JAPANESE 1 #define WESTERN 2 #define CYRILLIC 3 // NOTE: IF YOU CHANGE LANGUAGE FILES OR MERGE A FILE WITH CHANGES // // ==> ALWAYS TRY TO COMPILE MARLIN WITH/WITHOUT "ULTIPANEL" / "ULTRA_LCD" / "SDSUPPORT" #define IN "Configuration.h" // ==> ALSO TRY ALL AVAILABLE LANGUAGE OPTIONS // See also https://marlinfw.org/docs/development/lcd_language.html // Languages // an Aragonese // bg Bulgarian // ca Catalan // cz Czech // da Danish // de German // el Greek (Greece) // el_CY Greek (Cyprus) // en English // es Spanish // eu Basque-Euskera // fi Finnish // fr French // gl Galician // hr Croatian // hu Hungarian // it Italian // jp_kana Japanese // ko_KR Korean (South Korea) // nl Dutch // pl Polish // pt Portuguese // pt_br Portuguese (Brazilian) // ro Romanian // ru Russian // sk Slovak // sv Swedish // tr Turkish // uk Ukrainian // vi Vietnamese // zh_CN Chinese (Simplified) // zh_TW Chinese (Traditional) #ifdef DEFAULT_SOURCE_CODE_URL #undef SOURCE_CODE_URL #define SOURCE_CODE_URL DEFAULT_SOURCE_CODE_URL #endif #ifdef CUSTOM_MACHINE_NAME #undef MACHINE_NAME #define MACHINE_NAME CUSTOM_MACHINE_NAME #elif defined(DEFAULT_MACHINE_NAME) #undef MACHINE_NAME #define MACHINE_NAME DEFAULT_MACHINE_NAME #endif #ifndef MACHINE_UUID #define MACHINE_UUID DEFAULT_MACHINE_UUID #endif #define MARLIN_WEBSITE_URL "marlinfw.org" //#if !defined(STRING_SPLASH_LINE3) && defined(WEBSITE_URL) // #define STRING_SPLASH_LINE3 WEBSITE_URL //#endif // // Common Serial Console Messages // Don't change these strings because serial hosts look for them. // #define STR_ENQUEUEING "enqueueing \"" #define STR_POWERUP "PowerUp" #define STR_POWEROFF "PowerOff" #define STR_EXTERNAL_RESET " External Reset" #define STR_BROWNOUT_RESET " Brown out Reset" #define STR_WATCHDOG_RESET " Watchdog Reset" #define STR_SOFTWARE_RESET " Software Reset" #define STR_FREE_MEMORY " Free Memory: " #define STR_PLANNER_BUFFER_BYTES " PlannerBufferBytes: " #define STR_OK "ok" #define STR_WAIT "wait" #define STR_STATS "Stats: " #define STR_FILE_SAVED "Done saving file." #define STR_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line: " #define STR_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line: " #define STR_ERR_NO_CHECKSUM "No Checksum with line number, Last Line: " #define STR_FILE_PRINTED "Done printing file" #define STR_NO_MEDIA "No media" #define STR_BEGIN_FILE_LIST "Begin file list" #define STR_END_FILE_LIST "End file list" #define STR_INVALID_EXTRUDER "Invalid extruder" #define STR_INVALID_E_STEPPER "Invalid E stepper" #define STR_E_STEPPER_NOT_SPECIFIED "E stepper not specified" #define STR_INVALID_SOLENOID "Invalid solenoid" #define STR_COUNT_X " Count X:" #define STR_COUNT_A " Count A:" #define STR_WATCHDOG_FIRED "Watchdog timeout. Reset required." #define STR_ERR_KILLED "Printer halted. kill() called!" #define STR_FLOWMETER_FAULT "Coolant flow fault. Flowmeter safety is active. Attention required." #define STR_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart. (Temperature is reset. Set it after restarting)" #define STR_ERR_SERIAL_MISMATCH "Serial status mismatch" #define STR_BUSY_PROCESSING "busy: processing" #define STR_BUSY_PAUSED_FOR_USER "busy: paused for user" #define STR_BUSY_PAUSED_FOR_INPUT "busy: paused for input" #define STR_Z_MOVE_COMP "Z_move_comp" #define STR_RESEND "Resend: " #define STR_UNKNOWN_COMMAND "Unknown command: \"" #define STR_ACTIVE_EXTRUDER "Active Extruder: " #define STR_ERR_FANSPEED "Fan speed E" #define STR_PROBE_OFFSET "Probe Offset" #define STR_SKEW_MIN "min_skew_factor: " #define STR_SKEW_MAX "max_skew_factor: " #define STR_ERR_MATERIAL_INDEX "M145 S out of range (0-1)" #define STR_ERR_M421_PARAMETERS "M421 incorrect parameter usage" #define STR_ERR_BAD_PLANE_MODE "G5 requires XY plane mode" #define STR_ERR_MESH_XY "Mesh point out of range" #define STR_ERR_ARC_ARGS "G2/G3 bad parameters" #define STR_ERR_PROTECTED_PIN "Protected Pin" #define STR_ERR_M420_FAILED "Failed to enable Bed Leveling" #define STR_ERR_M428_TOO_FAR "Too far from reference point" #define STR_ERR_M303_DISABLED "PIDTEMP disabled" #define STR_M119_REPORT "Reporting endstop status" #define STR_ON "ON" #define STR_OFF "OFF" #define STR_ENDSTOP_HIT "TRIGGERED" #define STR_ENDSTOP_OPEN "open" #define STR_DUPLICATION_MODE "Duplication mode: " #define STR_SOFT_MIN " Min: " #define STR_SOFT_MAX " Max: " #define STR_SAVED_POS "Position saved" #define STR_RESTORING_POS "Restoring position" #define STR_INVALID_POS_SLOT "Invalid slot. Total: " #define STR_DONE "Done." #define STR_SD_CANT_OPEN_SUBDIR "Cannot open subdir " #define STR_SD_INIT_FAIL "No SD card" #define STR_SD_VOL_INIT_FAIL "volume.init failed" #define STR_SD_OPENROOT_FAIL "openRoot failed" #define STR_SD_CARD_OK "SD card ok" #define STR_SD_CARD_RELEASED "SD card released" #define STR_SD_WORKDIR_FAIL "workDir open failed" #define STR_SD_OPEN_FILE_FAIL "open failed, File: " #define STR_SD_FILE_OPENED "File opened: " #define STR_SD_SIZE " Size: " #define STR_SD_FILE_SELECTED "File selected" #define STR_SD_WRITE_TO_FILE "Writing to file: " #define STR_SD_PRINTING_BYTE "SD printing byte " #define STR_SD_NOT_PRINTING "Not SD printing" #define STR_SD_ERR_WRITE_TO_FILE "error writing to file" #define STR_SD_ERR_READ "SD read error" #define STR_SD_CANT_ENTER_SUBDIR "Cannot enter subdir: " #define STR_ENDSTOPS_HIT "endstops hit: " #define STR_ERR_COLD_EXTRUDE_STOP " cold extrusion prevented" #define STR_ERR_LONG_EXTRUDE_STOP " too long extrusion prevented" #define STR_ERR_HOTEND_TOO_COLD "Hotend too cold" #define STR_ERR_EEPROM_WRITE "Error writing to EEPROM!" #define STR_FILAMENT_CHANGE_HEAT_LCD "Press button to heat nozzle" #define STR_FILAMENT_CHANGE_INSERT_LCD "Insert filament and press button" #define STR_FILAMENT_CHANGE_WAIT_LCD "Press button to resume" #define STR_FILAMENT_CHANGE_HEAT_M108 "Send M108 to heat nozzle" #define STR_FILAMENT_CHANGE_INSERT_M108 "Insert filament and send M108" #define STR_FILAMENT_CHANGE_WAIT_M108 "Send M108 to resume" #define STR_STOP_PRE "!! STOP called because of " #define STR_STOP_POST " error - restart with M999" #define STR_STOP_BLTOUCH "BLTouch" #define STR_STOP_UNHOMED "unhomed" #define STR_KILL_PRE "!! KILL caused by " #define STR_KILL_INACTIVE_TIME "too much inactive time - current command: " #define STR_KILL_BUTTON "KILL button/pin" // temperature.cpp strings #define STR_PID_AUTOTUNE "PID Autotune" #define STR_PID_AUTOTUNE_START " start" #define STR_PID_BAD_HEATER_ID " failed! Bad heater id" #define STR_PID_TEMP_TOO_HIGH " failed! Temperature too high" #define STR_PID_TIMEOUT " failed! timeout" #define STR_BIAS " bias: " #define STR_D_COLON " d: " #define STR_T_MIN " min: " #define STR_T_MAX " max: " #define STR_KU " Ku: " #define STR_TU " Tu: " #define STR_CLASSIC_PID " Classic PID " #define STR_KP " Kp: " #define STR_KI " Ki: " #define STR_KD " Kd: " #define STR_PID_AUTOTUNE_FINISHED " finished! Put the last Kp, Ki and Kd constants from below into Configuration.h" #define STR_PID_DEBUG " PID_DEBUG " #define STR_PID_DEBUG_INPUT ": Input " #define STR_PID_DEBUG_OUTPUT " Output " #define STR_INVALID_EXTRUDER_NUM " - Invalid extruder number !" #define STR_MPC_AUTOTUNE "MPC Autotune" #define STR_MPC_AUTOTUNE_START " start for " STR_E #define STR_MPC_AUTOTUNE_INTERRUPTED " interrupted!" #define STR_MPC_AUTOTUNE_FINISHED " finished! Put the constants below into Configuration.h" #define STR_MPC_COOLING_TO_AMBIENT "Cooling to ambient" #define STR_MPC_HEATING_PAST_200 "Heating to over 200C" #define STR_MPC_MEASURING_AMBIENT "Measuring ambient heatloss at " #define STR_MPC_TEMPERATURE_ERROR "Temperature error" #define STR_HEATER_BED "bed" #define STR_HEATER_CHAMBER "chamber" #define STR_COOLER "cooler" #define STR_MOTHERBOARD "motherboard" #define STR_PROBE "probe" #define STR_REDUNDANT "redundant " #define STR_LASER_TEMP "laser temperature" #define STR_STOPPED_HEATER ", system stopped! Heater_ID: " #define STR_REDUNDANCY "Heater switched off. Temperature difference between temp sensors is too high !" #define STR_T_HEATING_FAILED "Heating failed" #define STR_T_THERMAL_RUNAWAY "Thermal Runaway" #define STR_T_MALFUNCTION "Thermal Malfunction" #define STR_T_MAXTEMP "MAXTEMP triggered" #define STR_T_MINTEMP "MINTEMP triggered" #define STR_ERR_PROBING_FAILED "Probing Failed" #define STR_ZPROBE_OUT_SER "Z Probe Past Bed" // Debug #define STR_DEBUG_PREFIX "DEBUG:" #define STR_DEBUG_OFF "off" #define STR_DEBUG_ECHO "ECHO" #define STR_DEBUG_INFO "INFO" #define STR_DEBUG_ERRORS "ERRORS" #define STR_DEBUG_DRYRUN "DRYRUN" #define STR_DEBUG_COMMUNICATION "COMMUNICATION" #define STR_DEBUG_DETAIL "DETAIL" #define STR_PRINTER_LOCKED "Printer locked! (Unlock with M511 or LCD)" #define STR_WRONG_PASSWORD "Incorrect Password" #define STR_PASSWORD_TOO_LONG "Password too long" #define STR_PASSWORD_REMOVED "Password removed" #define STR_REMINDER_SAVE_SETTINGS "Remember to save!" #define STR_PASSWORD_SET "Password is " // Settings Report Strings #define STR_Z_AUTO_ALIGN "Z Auto-Align" #define STR_BACKLASH_COMPENSATION "Backlash compensation" #define STR_S_SEG_PER_SEC "S" #define STR_DELTA_SETTINGS "Delta (L R H S XYZ ABC)" #define STR_SCARA_SETTINGS "SCARA" #define STR_POLARGRAPH_SETTINGS "Polargraph" #define STR_SCARA_P_T_Z "P T Z" #define STR_ENDSTOP_ADJUSTMENT "Endstop adjustment" #define STR_SKEW_FACTOR "Skew Factor" #define STR_FILAMENT_SETTINGS "Filament settings" #define STR_MAX_ACCELERATION "Max Acceleration (units/s2)" #define STR_MAX_FEEDRATES "Max feedrates (units/s)" #define STR_ACCELERATION_P_R_T "Acceleration (units/s2) (P R T)" #define STR_TOOL_CHANGING "Tool-changing" #define STR_HOTEND_OFFSETS "Hotend offsets" #define STR_SERVO_ANGLES "Servo Angles" #define STR_HOTEND_PID "Hotend PID" #define STR_BED_PID "Bed PID" #define STR_CHAMBER_PID "Chamber PID" #define STR_STEPS_PER_UNIT "Steps per unit" #define STR_LINEAR_ADVANCE "Linear Advance" #define STR_CONTROLLER_FAN "Controller Fan" #define STR_STEPPER_MOTOR_CURRENTS "Stepper motor currents" #define STR_RETRACT_S_F_Z "Retract (S F Z)" #define STR_RECOVER_S_F "Recover (S F)" #define STR_AUTO_RETRACT_S "Auto-Retract (S)" #define STR_FILAMENT_LOAD_UNLOAD "Filament load/unload" #define STR_POWER_LOSS_RECOVERY "Power-loss recovery" #define STR_FILAMENT_RUNOUT_SENSOR "Filament runout sensor" #define STR_DRIVER_STEPPING_MODE "Driver stepping mode" #define STR_STEPPER_DRIVER_CURRENT "Stepper driver current" #define STR_HYBRID_THRESHOLD "Hybrid Threshold" #define STR_STALLGUARD_THRESHOLD "StallGuard threshold" #define STR_HOME_OFFSET "Home offset" #define STR_SOFT_ENDSTOPS "Soft endstops" #define STR_MATERIAL_HEATUP "Material heatup parameters" #define STR_LCD_CONTRAST "LCD Contrast" #define STR_LCD_BRIGHTNESS "LCD Brightness" #define STR_DISPLAY_SLEEP "Display Sleep" #define STR_UI_LANGUAGE "UI Language" #define STR_Z_PROBE_OFFSET "Z-Probe Offset" #define STR_TEMPERATURE_UNITS "Temperature Units" #define STR_USER_THERMISTORS "User thermistors" #define STR_DELAYED_POWEROFF "Delayed poweroff" // // Endstop Names used by Endstops::report_states // #define STR_X_MIN "x_min" #define STR_X_MAX "x_max" #define STR_X2_MIN "x2_min" #define STR_X2_MAX "x2_max" #if HAS_Y_AXIS #define STR_Y_MIN "y_min" #define STR_Y_MAX "y_max" #define STR_Y2_MIN "y2_min" #define STR_Y2_MAX "y2_max" #endif #if HAS_Z_AXIS #define STR_Z_MIN "z_min" #define STR_Z_MAX "z_max" #define STR_Z2_MIN "z2_min" #define STR_Z2_MAX "z2_max" #define STR_Z3_MIN "z3_min" #define STR_Z3_MAX "z3_max" #define STR_Z4_MIN "z4_min" #define STR_Z4_MAX "z4_max" #endif #define STR_Z_PROBE "z_probe" #define STR_PROBE_EN "probe_en" #define STR_FILAMENT "filament" // General axis names #define STR_X "X" #define STR_Y "Y" #define STR_Z "Z" #define STR_E "E" #if IS_KINEMATIC #define STR_A "A" #define STR_B "B" #define STR_C "C" #else #define STR_A "X" #define STR_B "Y" #define STR_C "Z" #endif #define STR_X2 "X2" #define STR_Y2 "Y2" #define STR_Z2 "Z2" #define STR_Z3 "Z3" #define STR_Z4 "Z4" // Extra Axis and Endstop Names #if HAS_I_AXIS #if AXIS4_NAME == 'A' #define STR_I "A" #define STR_I_MIN "a_min" #define STR_I_MAX "a_max" #elif AXIS4_NAME == 'B' #define STR_I "B" #define STR_I_MIN "b_min" #define STR_I_MAX "b_max" #elif AXIS4_NAME == 'C' #define STR_I "C" #define STR_I_MIN "c_min" #define STR_I_MAX "c_max" #elif AXIS4_NAME == 'U' #define STR_I "U" #define STR_I_MIN "u_min" #define STR_I_MAX "u_max" #elif AXIS4_NAME == 'V' #define STR_I "V" #define STR_I_MIN "v_min" #define STR_I_MAX "v_max" #elif AXIS4_NAME == 'W' #define STR_I "W" #define STR_I_MIN "w_min" #define STR_I_MAX "w_max" #else #error "AXIS4_NAME can only be one of 'A', 'B', 'C', 'U', 'V', or 'W'." #endif #else #define STR_I "" #endif #if HAS_J_AXIS #if AXIS5_NAME == 'B' #define STR_J "B" #define STR_J_MIN "b_min" #define STR_J_MAX "b_max" #elif AXIS5_NAME == 'C' #define STR_J "C" #define STR_J_MIN "c_min" #define STR_J_MAX "c_max" #elif AXIS5_NAME == 'U' #define STR_J "U" #define STR_J_MIN "u_min" #define STR_J_MAX "u_max" #elif AXIS5_NAME == 'V' #define STR_J "V" #define STR_J_MIN "v_min" #define STR_J_MAX "v_max" #elif AXIS5_NAME == 'W' #define STR_J "W" #define STR_J_MIN "w_min" #define STR_J_MAX "w_max" #else #error "AXIS5_NAME can only be one of 'B', 'C', 'U', 'V', or 'W'." #endif #else #define STR_J "" #endif #if HAS_K_AXIS #if AXIS6_NAME == 'C' #define STR_K "C" #define STR_K_MIN "c_min" #define STR_K_MAX "c_max" #elif AXIS6_NAME == 'U' #define STR_K "U" #define STR_K_MIN "u_min" #define STR_K_MAX "u_max" #elif AXIS6_NAME == 'V' #define STR_K "V" #define STR_K_MIN "v_min" #define STR_K_MAX "v_max" #elif AXIS6_NAME == 'W' #define STR_K "W" #define STR_K_MIN "w_min" #define STR_K_MAX "w_max" #else #error "AXIS6_NAME can only be one of 'C', 'U', 'V', or 'W'." #endif #else #define STR_K "" #endif #if HAS_U_AXIS #if AXIS7_NAME == 'U' #define STR_U "U" #define STR_U_MIN "u_min" #define STR_U_MAX "u_max" #elif AXIS7_NAME == 'V' #define STR_U "V" #define STR_U_MIN "v_min" #define STR_U_MAX "v_max" #elif AXIS7_NAME == 'W' #define STR_U "W" #define STR_U_MIN "w_min" #define STR_U_MAX "w_max" #else #error "AXIS7_NAME can only be one of 'U', 'V', or 'W'." #endif #else #define STR_U "" #endif #if HAS_V_AXIS #if AXIS8_NAME == 'V' #define STR_V "V" #define STR_V_MIN "v_min" #define STR_V_MAX "v_max" #elif AXIS8_NAME == 'W' #define STR_V "W" #define STR_V_MIN "w_min" #define STR_V_MAX "w_max" #else #error "AXIS8_NAME can only be one of 'V', or 'W'." #endif #else #define STR_V "" #endif #if HAS_W_AXIS #if AXIS9_NAME == 'W' #define STR_W "W" #define STR_W_MIN "w_min" #define STR_W_MAX "w_max" #else #error "AXIS9_NAME can only be 'W'." #endif #else #define STR_W "" #endif #if EITHER(HAS_MARLINUI_HD44780, IS_TFTGLCD_PANEL) // Custom characters defined in the first 8 characters of the LCD #define LCD_STR_BEDTEMP "\x00" // Print only as a char. This will have 'unexpected' results when used in a string! #define LCD_STR_DEGREE "\x01" #define LCD_STR_THERMOMETER "\x02" // Still used with string concatenation #define LCD_STR_UPLEVEL "\x03" #define LCD_STR_REFRESH "\x04" #define LCD_STR_FOLDER "\x05" #define LCD_STR_FEEDRATE "\x06" #define LCD_STR_CLOCK "\x07" #define LCD_STR_ARROW_RIGHT ">" /* from the default character set */ #else // // Custom characters from Marlin_symbols.fon which was merged into ISO10646-0-3.bdf // \x00 intentionally skipped to avoid problems in strings // #define LCD_STR_REFRESH "\x01" #define LCD_STR_FOLDER "\x02" #define LCD_STR_ARROW_RIGHT "\x03" #define LCD_STR_UPLEVEL "\x04" #define LCD_STR_CLOCK "\x05" #define LCD_STR_FEEDRATE "\x06" #define LCD_STR_BEDTEMP "\x07" #define LCD_STR_THERMOMETER "\x08" #define LCD_STR_DEGREE "\x09" #define LCD_STR_SPECIAL_MAX '\x09' // Maximum here is 0x1F because 0x20 is ' ' (space) and the normal charsets begin. // Better stay below 0x10 because DISPLAY_CHARSET_HD44780_WESTERN begins here. // Symbol characters #define LCD_STR_FILAM_DIA "\xF8" #define LCD_STR_FILAM_MUL "\xA4" #endif /** * Tool indexes for LCD display only * * By convention the LCD shows "E1" for the first extruder. * However, internal to Marlin E0/T0 is the first tool, and * most board silkscreens say "E0." Zero-based labels will * make these indexes consistent but this defies expectation. */ #if ENABLED(NUMBER_TOOLS_FROM_0) #define LCD_FIRST_TOOL 0 #define STR_N0 "0" #define STR_N1 "1" #define STR_N2 "2" #define STR_N3 "3" #define STR_N4 "4" #define STR_N5 "5" #define STR_N6 "6" #define STR_N7 "7" #else #define LCD_FIRST_TOOL 1 #define STR_N0 "1" #define STR_N1 "2" #define STR_N2 "3" #define STR_N3 "4" #define STR_N4 "5" #define STR_N5 "6" #define STR_N6 "7" #define STR_N7 "8" #endif #define STR_E0 STR_E STR_N0 #define STR_E1 STR_E STR_N1 #define STR_E2 STR_E STR_N2 #define STR_E3 STR_E STR_N3 #define STR_E4 STR_E STR_N4 #define STR_E5 STR_E STR_N5 #define STR_E6 STR_E STR_N6 #define STR_E7 STR_E STR_N7 // Include localized LCD Menu Messages #define LANGUAGE_DATA_INCL_(M) STRINGIFY_(fontdata/langdata_##M.h) #define LANGUAGE_DATA_INCL(M) LANGUAGE_DATA_INCL_(M) #define LANGUAGE_INCL_(M) STRINGIFY_(../lcd/language/language_##M.h) #define LANGUAGE_INCL(M) LANGUAGE_INCL_(M) // Use superscripts, if possible. Evaluated at point of use. #define SUPERSCRIPT_TWO TERN(NOT_EXTENDED_ISO10646_1_5X7, "^2", "²") #define SUPERSCRIPT_THREE TERN(NOT_EXTENDED_ISO10646_1_5X7, "^3", "³") #include "multi_language.h" // Allow multiple languages #include "../lcd/language/language_en.h" #include LANGUAGE_INCL(LCD_LANGUAGE) #include LANGUAGE_INCL(LCD_LANGUAGE_2) #include LANGUAGE_INCL(LCD_LANGUAGE_3) #include LANGUAGE_INCL(LCD_LANGUAGE_4) #include LANGUAGE_INCL(LCD_LANGUAGE_5) #if NONE(DISPLAY_CHARSET_ISO10646_1, \ DISPLAY_CHARSET_ISO10646_5, \ DISPLAY_CHARSET_ISO10646_KANA, \ DISPLAY_CHARSET_ISO10646_GREEK, \ DISPLAY_CHARSET_ISO10646_CN, \ DISPLAY_CHARSET_ISO10646_TR, \ DISPLAY_CHARSET_ISO10646_PL, \ DISPLAY_CHARSET_ISO10646_CZ, \ DISPLAY_CHARSET_ISO10646_SK) #define DISPLAY_CHARSET_ISO10646_1 // use the better font on full graphic displays. #endif