Browse Source

Update language.h

Added catalan language
pixatintes 10 years ago
parent
commit
990e770e15
1 changed files with 192 additions and 0 deletions
  1. 192
    0
      Marlin/language.h

+ 192
- 0
Marlin/language.h View File

@@ -18,6 +18,7 @@
18 18
 // 9  Finnish
19 19
 // 10 Aragonese
20 20
 // 11 Dutch
21
+// 12 Catalan
21 22
 
22 23
 #ifndef LANGUAGE_CHOICE
23 24
 	#define LANGUAGE_CHOICE 1  // Pick your language from the list above
@@ -2252,4 +2253,195 @@
2252 2253
 
2253 2254
 #endif
2254 2255
 
2256
+
2257
+#if LANGUAGE_CHOICE == 12
2258
+
2259
+// LCD Menu Messages
2260
+
2261
+// Please note these are limited to 17 characters!
2262
+
2263
+        #define WELCOME_MSG MACHINE_NAME " a punt!"
2264
+        #define MSG_SD_INSERTED "SD detectada."
2265
+        #define MSG_SD_REMOVED "SD expulsada."
2266
+        #define MSG_MAIN "Menu principal"
2267
+        #define MSG_AUTOSTART "Inici automatic"
2268
+        #define MSG_DISABLE_STEPPERS " Apagar motors"
2269
+        #define MSG_AUTO_HOME " Home global"
2270
+        #define MSG_SET_ORIGIN "Establir origen"
2271
+        #define MSG_PREHEAT_PLA " Preescalfar PLA"
2272
+        #define MSG_PREHEAT_PLA_SETTINGS "Config. temp. PLA"
2273
+        #define MSG_PREHEAT_ABS " Preescalfar ABS"
2274
+        #define MSG_PREHEAT_ABS_SETTINGS "Config. temp. ABS"
2275
+        #define MSG_COOLDOWN " Refredar"
2276
+        #define MSG_SWITCH_PS_ON " Switch Power On"
2277
+        #define MSG_SWITCH_PS_OFF " Switch Power Off"
2278
+        #define MSG_EXTRUDE "Extruir"
2279
+        #define MSG_RETRACT "Retreure"
2280
+        #define MSG_MOVE_AXIS " Moure eixos"
2281
+        #define MSG_MOVE_X " Moure X"
2282
+        #define MSG_MOVE_Y " Moure Y"
2283
+        #define MSG_MOVE_Z " Moure Z"
2284
+        #define MSG_MOVE_E "Extrusor"
2285
+        #define MSG_MOVE_01MM " Moure 0.1mm"
2286
+        #define MSG_MOVE_1MM " Moure 1mm"
2287
+        #define MSG_MOVE_10MM " Moure 10mm"
2288
+        #define MSG_SPEED "Velocitat"
2289
+        #define MSG_NOZZLE "Nozzle"
2290
+        #define MSG_NOZZLE1 "Nozzle2"
2291
+        #define MSG_NOZZLE2 "Nozzle3"
2292
+        #define MSG_BED "Llit"
2293
+        #define MSG_FAN_SPEED "Vel. Ventilador"
2294
+        #define MSG_FLOW "Fluxe"
2295
+        #define MSG_CONTROL " Control"
2296
+        #define MSG_MIN "\002 Min"
2297
+        #define MSG_MAX "\002 Max"
2298
+        #define MSG_FACTOR "\002 Fact"
2299
+        #define MSG_AUTOTEMP "Autotemp"
2300
+        #define MSG_ON "On"
2301
+        #define MSG_OFF "Off"
2302
+        #define MSG_PID_P "PID-P"
2303
+        #define MSG_PID_I "PID-I"
2304
+        #define MSG_PID_D "PID-D"
2305
+        #define MSG_PID_C "PID-C"
2306
+        #define MSG_ACC "Acel"
2307
+        #define MSG_VXY_JERK "Vxy-jerk"
2308
+        #define MSG_VZ_JERK "Vz-jerk"
2309
+        #define MSG_VE_JERK "Ve-jerk"
2310
+        #define MSG_VMAX "Vmax"
2311
+        #define MSG_X "x"
2312
+        #define MSG_Y "y"
2313
+        #define MSG_Z "z"
2314
+        #define MSG_E "e"
2315
+        #define MSG_VMIN "Vmin"
2316
+        #define MSG_VTRAV_MIN "VTrav min"
2317
+        #define MSG_AMAX "Amax"
2318
+        #define MSG_A_RETRACT "A-retrac."
2319
+        #define MSG_XSTEPS "X passos/mm"
2320
+        #define MSG_YSTEPS "Y passos/mm"
2321
+        #define MSG_ZSTEPS "Z passos/mm"
2322
+        #define MSG_ESTEPS "E passos/mm"
2323
+        #define MSG_RECTRACT "Retreure"
2324
+        #define MSG_TEMPERATURE " Temperatura"
2325
+        #define MSG_MOTION " Moviment"
2326
+        #define MSG_STORE_EPROM "Desar memoria"
2327
+        #define MSG_LOAD_EPROM "Llegir memoria"
2328
+        #define MSG_RESTORE_FAILSAFE " Rest. emergencia"
2329
+        #define MSG_REFRESH "Tornar a carregar"
2330
+        #define MSG_WATCH "Pantalla Info."
2331
+        #define MSG_PREPARE " Preparar"
2332
+        #define MSG_TUNE " Ajustar"
2333
+        #define MSG_PAUSE_PRINT " Pausa Imp."
2334
+        #define MSG_RESUME_PRINT " Reprendre Imp."
2335
+        #define MSG_STOP_PRINT " Aturar Imp."
2336
+        #define MSG_CARD_MENU " Explorar SD"
2337
+        #define MSG_NO_CARD " -Sense SD"
2338
+        #define MSG_DWELL "Repos..."
2339
+        #define MSG_USERWAIT "Esperant ordres"
2340
+        #define MSG_RESUMING "Reprendre Imp."
2341
+        #define MSG_NO_MOVE "Sense moviment"
2342
+        #define MSG_KILLED "PARADA DE EMERG."
2343
+        #define MSG_STOPPED "PARADA"
2344
+        #define MSG_CONTROL_RETRACT "Retreure mm"
2345
+        #define MSG_CONTROL_RETRACTF "Retreure F"
2346
+        #define MSG_CONTROL_RETRACT_ZLIFT "Aixecar mm"
2347
+        #define MSG_CONTROL_RETRACT_RECOVER "DesRet +mm"
2348
+        #define MSG_CONTROL_RETRACT_RECOVERF "DesRet F"
2349
+        #define MSG_AUTORETRACT "AutoRetr."
2350
+        #define MSG_FILAMENTCHANGE "Canviar filament"
2351
+        #define MSG_INIT_SDCARD "Iniciant SD"
2352
+        #define MSG_CNG_SDCARD "Canviar SD"
2353
+        #define MSG_RECTRACT_WIDE " Retreure "
2354
+        #define MSG_TEMPERATURE_WIDE "Temperatura"
2355
+        #define MSG_TEMPERATURE_RTN "Temperatura"
2356
+        #define MSG_MAIN_WIDE "Menu principal"
2357
+        #define MSG_MOTION_WIDE "Moviment"
2358
+        #define MSG_PREPARE_ALT "Preparar"
2359
+        #define MSG_CONTROL_ARROW "Control"
2360
+        #define MSG_RETRACT_ARROW "Retreure"
2361
+        #define MSG_STEPPER_RELEASED "Desacoblada."
2362
+        #define MSG_ZPROBE_OUT "Z probe out. bed"
2363
+        #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
2364
+        #define MSG_ZPROBE_ZOFFSET "Z Offset"
2365
+        #define MSG_BABYSTEP_X "Babystep X"
2366
+        #define MSG_BABYSTEP_Y "Babystep Y"
2367
+        #define MSG_BABYSTEP_Z "Babystep Z"
2368
+        #define MSG_ENDSTOP_ABORT "Endstop abort"
2369
+        #define MSG_CONTRAST "Contrast"
2370
+        
2371
+// Serial Console Messages
2372
+        
2373
+        #define MSG_Enqueing "en cua \""
2374
+        #define MSG_POWERUP "PowerUp"
2375
+        #define MSG_EXTERNAL_RESET " Reset Extern"
2376
+        #define MSG_BROWNOUT_RESET " Reset per Voltatge Incorrecte"
2377
+        #define MSG_WATCHDOG_RESET " Reset per Bloqueig"
2378
+        #define MSG_SOFTWARE_RESET " Reset per Software"
2379
+        #define MSG_AUTHOR " | Autor: "
2380
+        #define MSG_CONFIGURATION_VER " Ultima actualitzacio: "
2381
+        #define MSG_FREE_MEMORY " Memoria lliure: "
2382
+        #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
2383
+        #define MSG_OK "Ok"
2384
+        #define MSG_FILE_SAVED "Desat."
2385
+        #define MSG_ERR_LINE_NO "El Numero de la Linia no es igual al Ultimo Numero de Linia+1, Ultima Linia:"
2386
+        #define MSG_ERR_CHECKSUM_MISMATCH "el checksum no coincideix, Ultima Linia:"
2387
+        #define MSG_ERR_NO_CHECKSUM "No s'ha trobat el Checksum amb el numero de linia, Ultima Linia:"
2388
+        #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No s'ha trobat Numero de Linia amb el Checksum, Ultima Linia:"
2389
+        #define MSG_FILE_PRINTED "Treball acabat!"
2390
+        #define MSG_BEGIN_FILE_LIST "Inici de la llista d'arxius"
2391
+        #define MSG_END_FILE_LIST "Fi de la llista d'arxius"
2392
+        #define MSG_M104_INVALID_EXTRUDER "M104 Extrusor Invalid "
2393
+        #define MSG_M105_INVALID_EXTRUDER "M105 Extrusor Invalid "
2394
+        #define MSG_M200_INVALID_EXTRUDER "M200 Extrusor Invalid "
2395
+        #define MSG_M218_INVALID_EXTRUDER "M218 Extrusor Invalid "
2396
+        #define MSG_ERR_NO_THERMISTORS "No hi ha termistors - no temp"
2397
+        #define MSG_M109_INVALID_EXTRUDER "M109 Extrusor Invalid "
2398
+        #define MSG_HEATING "Escalfant Nozzle..."
2399
+        #define MSG_HEATING_COMPLETE "Nozzle calent."
2400
+        #define MSG_BED_HEATING "Escalfant llit..."
2401
+        #define MSG_BED_DONE "Llit calent."
2402
+        #define MSG_M115_REPORT "FIRMWARE_NAME:Marlin V1; Sprinter/grbl mashup for gen6 FIRMWARE_URL:" FIRMWARE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID "\n"
2403
+        #define MSG_COUNT_X " Compta X:"
2404
+        #define MSG_ERR_KILLED "¡¡Impressora Parada per kill()!!"
2405
+        #define MSG_ERR_STOPPED "¡Impressora parada per errors. Repara l'error i utilitza M999 per reiniciar!. (Hi ha un reset de temperatura, cal ajustar-la abans de continuar)"
2406
+        #define MSG_RESEND "Reenviar:"
2407
+        #define MSG_UNKNOWN_COMMAND "Comanda Desconeguda:\""
2408
+        #define MSG_ACTIVE_EXTRUDER "Extrusor Actiu: "
2409
+        #define MSG_INVALID_EXTRUDER "Extrusor Invalid"
2410
+        #define MSG_X_MIN "x_min: "
2411
+        #define MSG_X_MAX "x_max: "
2412
+        #define MSG_Y_MIN "y_min: "
2413
+        #define MSG_Y_MAX "y_max: "
2414
+        #define MSG_Z_MIN "z_min: "
2415
+        #define MSG_Z_MAX "z_max: "
2416
+        #define MSG_M119_REPORT "Comprovant finals de carrera."
2417
+        #define MSG_ENDSTOP_HIT "Activat!"
2418
+        #define MSG_ENDSTOP_OPEN "obert"
2419
+        #define MSG_HOTEND_OFFSET "Hotend offsets:"
2420
+        #define MSG_SD_CANT_OPEN_SUBDIR "No s'ha pogut obrir la subcarpeta."
2421
+        #define MSG_SD_INIT_FAIL "Error en iniciar la SD"
2422
+        #define MSG_SD_VOL_INIT_FAIL "Error al muntar el volum"
2423
+        #define MSG_SD_OPENROOT_FAIL "Error en obrir la carpeta arrel"
2424
+        #define MSG_SD_CARD_OK "Tarjeta SD OK"
2425
+        #define MSG_SD_WORKDIR_FAIL "Error en obrir la carpeta de treball"
2426
+        #define MSG_SD_OPEN_FILE_FAIL "Error en obrir, Fitxer: "
2427
+        #define MSG_SD_FILE_OPENED "Fitxer obert:"
2428
+        #define MSG_SD_SIZE " Mida:"
2429
+        #define MSG_SD_FILE_SELECTED "Fitxer Seleccionat"
2430
+        #define MSG_SD_WRITE_TO_FILE "Desant al fitxer: "
2431
+        #define MSG_SD_PRINTING_BYTE "SD imprimint el byte "
2432
+        #define MSG_SD_NOT_PRINTING "No s'esta imprimint amb SD"
2433
+        #define MSG_SD_ERR_WRITE_TO_FILE "Error al escriure al fitxer"
2434
+        #define MSG_SD_CANT_ENTER_SUBDIR "No es pot obrir la carpeta:"
2435
+        #define MSG_STEPPER_TOO_HIGH "Steprate massa alt : "
2436
+        #define MSG_ENDSTOPS_HIT "S'ha tocat el final de carrera: "
2437
+        #define MSG_ERR_COLD_EXTRUDE_STOP " extrusio freda evitada"
2438
+        #define MSG_ERR_LONG_EXTRUDE_STOP " extrusio massa llarga evitada"
2439
+        #define MSG_BABYSTEPPING_X "Babystepping X"
2440
+        #define MSG_BABYSTEPPING_Y "Babystepping Y"
2441
+        #define MSG_BABYSTEPPING_Z "Babystepping Z"
2442
+        #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Error a l'estructura dels menus"
2443
+
2444
+#endif
2445
+
2446
+
2255 2447
 #endif // ifndef LANGUAGE_H

Loading…
Cancel
Save