Subversion Repositories MK-Marlin

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 ron 1
/**
2
 * Marlin 3D Printer Firmware
3
 * Copyright (C) 2016 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 <http://www.gnu.org/licenses/>.
20
 *
21
 */
22
 
23
/**
24
 * Finnish
25
 *
26
 * LCD Menu Messages
27
 * See also http://marlinfw.org/docs/development/lcd_language.html
28
 *
29
 */
30
#ifndef LANGUAGE_FI_H
31
#define LANGUAGE_FI_H
32
 
33
#define MAPPER_C2C3
34
#define DISPLAY_CHARSET_ISO10646_1
35
#define CHARSIZE 2
36
 
37
#define WELCOME_MSG                         MACHINE_NAME _UxGT(" valmis.")
38
#define MSG_SD_INSERTED                     _UxGT("Kortti asetettu")
39
#define MSG_SD_REMOVED                      _UxGT("Kortti poistettu")
40
#define MSG_MAIN                            _UxGT("Palaa")
41
#define MSG_AUTOSTART                       _UxGT("Automaatti")
42
#define MSG_DISABLE_STEPPERS                _UxGT("Vapauta moottorit")
43
#define MSG_AUTO_HOME                       _UxGT("Aja referenssiin")
44
#define MSG_TMC_Z_CALIBRATION               _UxGT("Kalibroi Z")
45
#define MSG_LEVEL_BED_HOMING                _UxGT("Homing XYZ")
46
#define MSG_LEVEL_BED_WAITING               _UxGT("Click to Begin")
47
#define MSG_LEVEL_BED_DONE                  _UxGT("Leveling Done!")
48
#define MSG_SET_HOME_OFFSETS                _UxGT("Set home offsets")
49
#define MSG_HOME_OFFSETS_APPLIED            _UxGT("Offsets applied")
50
#define MSG_SET_ORIGIN                      _UxGT("Aseta origo")
51
#define MSG_PREHEAT_1                       _UxGT("Esilämmitä PLA")
52
#define MSG_PREHEAT_1_N                     _UxGT("Esilämmitä PLA ")
53
#define MSG_PREHEAT_1_ALL                   _UxGT("Esilä. PLA Kaikki")
54
#define MSG_PREHEAT_1_BEDONLY               _UxGT("Esilä. PLA Alusta")
55
#define MSG_PREHEAT_1_SETTINGS              _UxGT("Esilämm. PLA konf")
56
#define MSG_PREHEAT_2                       _UxGT("Esilämmitä ABS")
57
#define MSG_PREHEAT_2_N                     _UxGT("Esilämmitä ABS ")
58
#define MSG_PREHEAT_2_ALL                   _UxGT("Esilä. ABS Kaikki")
59
#define MSG_PREHEAT_2_BEDONLY               _UxGT("Esilä. ABS Alusta")
60
#define MSG_PREHEAT_2_SETTINGS              _UxGT("Esilämm. ABS konf")
61
#define MSG_COOLDOWN                        _UxGT("Jäähdytä")
62
#define MSG_SWITCH_PS_ON                    _UxGT("Virta päälle")
63
#define MSG_SWITCH_PS_OFF                   _UxGT("Virta pois")
64
#define MSG_EXTRUDE                         _UxGT("Pursota")
65
#define MSG_RETRACT                         _UxGT("Vedä takaisin")
66
#define MSG_MOVE_AXIS                       _UxGT("Liikuta akseleita")
67
#define MSG_MOVE_X                          _UxGT("Liikuta X")
68
#define MSG_MOVE_Y                          _UxGT("Liikuta Y")
69
#define MSG_MOVE_Z                          _UxGT("Liikuta Z")
70
#define MSG_MOVE_E                          _UxGT("Extruder")
71
#define MSG_MOVE_01MM                       _UxGT("Liikuta 0.1mm")
72
#define MSG_MOVE_1MM                        _UxGT("Liikuta 1mm")
73
#define MSG_MOVE_10MM                       _UxGT("Liikuta 10mm")
74
#define MSG_SPEED                           _UxGT("Nopeus")
75
#define MSG_NOZZLE                          _UxGT("Suutin")
76
#define MSG_BED                             _UxGT("Alusta")
77
#define MSG_FAN_SPEED                       _UxGT("Tuul. nopeus")
78
#define MSG_FLOW                            _UxGT("Virtaus")
79
#define MSG_CONTROL                         _UxGT("Kontrolli")
80
#define MSG_MIN                             LCD_STR_THERMOMETER _UxGT(" Min")
81
#define MSG_MAX                             LCD_STR_THERMOMETER _UxGT(" Max")
82
#define MSG_FACTOR                          LCD_STR_THERMOMETER _UxGT(" Kerr")
83
#define MSG_AUTOTEMP                        _UxGT("Autotemp")
84
#define MSG_ON                              _UxGT("On ")
85
#define MSG_OFF                             _UxGT("Off")
86
#define MSG_PID_P                           _UxGT("PID-P")
87
#define MSG_PID_I                           _UxGT("PID-I")
88
#define MSG_PID_D                           _UxGT("PID-D")
89
#define MSG_PID_C                           _UxGT("PID-C")
90
#define MSG_ACC                             _UxGT("Kiihtyv")
91
#define MSG_JERK                            _UxGT("Jerk")
92
#if IS_KINEMATIC
93
  #define MSG_VA_JERK                       _UxGT("Va-jerk")
94
  #define MSG_VB_JERK                       _UxGT("Vb-jerk")
95
  #define MSG_VC_JERK                       _UxGT("Vc-jerk")
96
#else
97
  #define MSG_VA_JERK                       _UxGT("Vx-jerk")
98
  #define MSG_VB_JERK                       _UxGT("Vy-jerk")
99
  #define MSG_VC_JERK                       _UxGT("Vz-jerk")
100
#endif
101
#define MSG_VE_JERK                         _UxGT("Ve-jerk")
102
#define MSG_VMAX                            _UxGT("Vmax ")
103
#define MSG_VMIN                            _UxGT("Vmin")
104
#define MSG_VTRAV_MIN                       _UxGT("VLiike min")
105
#define MSG_ACCELERATION                    MSG_ACC
106
#define MSG_AMAX                            _UxGT("Amax ")
107
#define MSG_A_RETRACT                       _UxGT("A-peruuta")
108
#define MSG_STEPS_PER_MM                    _UxGT("Steps/mm")
109
#if IS_KINEMATIC
110
  #define MSG_ASTEPS                        _UxGT("Asteps/mm")
111
  #define MSG_BSTEPS                        _UxGT("Bsteps/mm")
112
  #define MSG_CSTEPS                        _UxGT("Csteps/mm")
113
#else
114
  #define MSG_ASTEPS                        _UxGT("Xsteps/mm")
115
  #define MSG_BSTEPS                        _UxGT("Ysteps/mm")
116
  #define MSG_CSTEPS                        _UxGT("Zsteps/mm")
117
#endif
118
#define MSG_ESTEPS                          _UxGT("Esteps/mm")
119
#define MSG_E1STEPS                         _UxGT("E1steps/mm")
120
#define MSG_E2STEPS                         _UxGT("E2steps/mm")
121
#define MSG_E3STEPS                         _UxGT("E3steps/mm")
122
#define MSG_E4STEPS                         _UxGT("E4steps/mm")
123
#define MSG_E5STEPS                         _UxGT("E5steps/mm")
124
#define MSG_TEMPERATURE                     _UxGT("Lämpötila")
125
#define MSG_MOTION                          _UxGT("Liike")
126
#define MSG_FILAMENT                        _UxGT("Filament")
127
#define MSG_VOLUMETRIC_ENABLED              _UxGT("E in mm³")
128
#define MSG_FILAMENT_DIAM                   _UxGT("Fil. Dia.")
129
#define MSG_CONTRAST                        _UxGT("LCD kontrasti")
130
#define MSG_STORE_EEPROM                    _UxGT("Tallenna muistiin")
131
#define MSG_LOAD_EEPROM                     _UxGT("Lataa muistista")
132
#define MSG_RESTORE_FAILSAFE                _UxGT("Palauta oletus")
133
#define MSG_REFRESH                         _UxGT("Päivitä")
134
#define MSG_WATCH                           _UxGT("Seuraa")
135
#define MSG_PREPARE                         _UxGT("Valmistele")
136
#define MSG_TUNE                            _UxGT("Säädä")
137
#define MSG_PAUSE_PRINT                     _UxGT("Keskeytä tulostus")
138
#define MSG_RESUME_PRINT                    _UxGT("Jatka tulostusta")
139
#define MSG_STOP_PRINT                      _UxGT("Pysäytä tulostus")
140
#define MSG_CARD_MENU                       _UxGT("Korttivalikko")
141
#define MSG_NO_CARD                         _UxGT("Ei korttia")
142
#define MSG_DWELL                           _UxGT("Nukkumassa...")
143
#define MSG_USERWAIT                        _UxGT("Odotet. valintaa")
144
#define MSG_PRINT_ABORTED                   _UxGT("Print aborted")
145
#define MSG_NO_MOVE                         _UxGT("Ei liiketta.")
146
#define MSG_KILLED                          _UxGT("KILLED. ")
147
#define MSG_STOPPED                         _UxGT("STOPPED. ")
148
#define MSG_CONTROL_RETRACT                 _UxGT("Vedä mm")
149
#define MSG_CONTROL_RETRACT_SWAP            _UxGT("Va. Vedä mm")
150
#define MSG_CONTROL_RETRACTF                _UxGT("Vedä V")
151
#define MSG_CONTROL_RETRACT_ZLIFT           _UxGT("Z mm")
152
#define MSG_CONTROL_RETRACT_RECOVER         _UxGT("UnRet mm")
153
#define MSG_CONTROL_RETRACT_RECOVER_SWAP    _UxGT("Va. UnRet mm")
154
#define MSG_CONTROL_RETRACT_RECOVERF        _UxGT("UnRet  V")
155
#define MSG_AUTORETRACT                     _UxGT("AutoVeto.")
156
#define MSG_FILAMENTCHANGE                  _UxGT("Change filament")
157
#define MSG_INIT_SDCARD                     _UxGT("Init. SD-Card")
158
#define MSG_CNG_SDCARD                      _UxGT("Change SD-Card")
159
#define MSG_ZPROBE_OUT                      _UxGT("Z probe out. bed")
160
#define MSG_HOME                            _UxGT("Home")  // Used as MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
161
#define MSG_FIRST                           _UxGT("first")
162
#define MSG_ZPROBE_ZOFFSET                  _UxGT("Z Offset")
163
#define MSG_BABYSTEP_X                      _UxGT("Babystep X")
164
#define MSG_BABYSTEP_Y                      _UxGT("Babystep Y")
165
#define MSG_BABYSTEP_Z                      _UxGT("Babystep Z")
166
#define MSG_ENDSTOP_ABORT                   _UxGT("Endstop abort")
167
#define MSG_DELTA_CALIBRATE                 _UxGT("Delta Kalibrointi")
168
#define MSG_DELTA_CALIBRATE_X               _UxGT("Kalibroi X")
169
#define MSG_DELTA_CALIBRATE_Y               _UxGT("Kalibroi Y")
170
#define MSG_DELTA_CALIBRATE_Z               _UxGT("Kalibroi Z")
171
#define MSG_DELTA_CALIBRATE_CENTER          _UxGT("Kalibroi Center")
172
 
173
#endif // LANGUAGE_FI_H