source: src/mlx/i18n.py@ 227:50c3ae93007d

Last change on this file since 227:50c3ae93007d was 227:50c3ae93007d, checked in by István Váradi <ivaradi@…>, 12 years ago

Added a Help menu with the manual and the about dialog

File size: 91.4 KB
Line 
1# Internationalization support
2# -*- coding: utf-8 -*-
3
4#------------------------------------------------------------------------------
5
6import locale
7
8#------------------------------------------------------------------------------
9
10_strings = None
11_fallback = None
12
13#------------------------------------------------------------------------------
14
15def setLanguage(language):
16 """Setup the internationalization support for the given language."""
17 print "i18n.setLanguage", language
18 _Strings.set(language)
19
20#------------------------------------------------------------------------------
21
22def getLanguage():
23 """Get the two-letter language code."""
24 language = _Strings.current().getLanguage()
25 underscoreIndex = language.find("_")
26 return language[:underscoreIndex] if underscoreIndex>0 else language
27
28#------------------------------------------------------------------------------
29
30def xstr(key):
31 """Get the string for the given key in the current language.
32
33 If not found, the fallback language is searched. If that is not found
34 either, the key itself is returned within curly braces."""
35 s = _Strings.current()[key]
36 if s is None:
37 s = _Strings.fallback()[key]
38 return "{" + key + "}" if s is None else s
39
40#------------------------------------------------------------------------------
41
42class _Strings(object):
43 """A collection of strings belonging to a certain language."""
44 # The registry of the string collections. This is a mapping from
45 # language codes to the actual collection objects
46 _instances = {}
47
48 # The fallback instance
49 _fallback = None
50
51 # The currently used instance.
52 _current = None
53
54 @staticmethod
55 def _find(language):
56 """Find an instance for the given language.
57
58 First the language is searched for as is. If not found, it is truncated
59 from the end until the last underscore and that is searched for. And so
60 on, until no underscore remains.
61
62 If nothing is found this way, the fallback will be returned."""
63 while language:
64 if language in _Strings._instances:
65 return _Strings._instances[language]
66 underscoreIndex = language.rfind("_")
67 language = language[:underscoreIndex] if underscoreIndex>0 else ""
68 return _Strings._fallback
69
70 @staticmethod
71 def set(language):
72 """Set the string for the given language.
73
74 A String instance is searched for the given language (see
75 _Strings._find()). Otherwise the fallback language is used."""
76 strings = _Strings._find(language)
77 assert strings is not None
78 if _Strings._current is not None and \
79 _Strings._current is not _Strings._fallback:
80 _Strings._current.finalize()
81 if strings is not _Strings._fallback:
82 strings.initialize()
83 _Strings._current = strings
84
85 @staticmethod
86 def fallback():
87 """Get the fallback."""
88 return _Strings._fallback
89
90 @staticmethod
91 def current():
92 """Get the current."""
93 return _Strings._current
94
95 def __init__(self, languages, fallback = False):
96 """Construct an empty strings object."""
97 self._strings = {}
98 self._language = languages[0]
99 for language in languages:
100 _Strings._instances[language] = self
101 if fallback:
102 _Strings._fallback = self
103 self.initialize()
104
105 def initialize(self):
106 """Initialize the strings.
107
108 This should be overridden in children to setup the strings."""
109 pass
110
111 def finalize(self):
112 """Finalize the object.
113
114 This releases the string dictionary to free space."""
115 self._strings = {}
116
117 def getLanguage(self):
118 """Get the language."""
119 return self._language
120
121 def add(self, id, s):
122 """Add the given text as the string with the given ID.
123
124 If the ID is already in the object, that is an assertion failure!"""
125 assert id not in self._strings
126 self._strings[id] = s
127
128 def __iter__(self):
129 """Return an iterator over the keys in the string set."""
130 return iter(self._strings)
131
132 def __getitem__(self, key):
133 """Get the string with the given key."""
134 return self._strings[key] if key in self._strings else None
135
136#------------------------------------------------------------------------------
137
138class _English(_Strings):
139 """The strings for the English language."""
140 def __init__(self):
141 """Construct the object."""
142 super(_English, self).__init__(["en_GB", "en"], fallback = True)
143
144 def initialize(self):
145 """Initialize the strings."""
146 self.add("aircraft_b736", "Boeing 737-600")
147 self.add("aircraft_b737", "Boeing 737-700")
148 self.add("aircraft_b738", "Boeing 737-800")
149 self.add("aircraft_b738c", "Boeing 737-800 (charter)")
150 self.add("aircraft_b733", "Boeing 737-300")
151 self.add("aircraft_b734", "Boeing 737-400")
152 self.add("aircraft_b735", "Boeing 737-500")
153 self.add("aircraft_dh8d", "Bombardier Dash 8 Q400")
154 self.add("aircraft_b762", "Boeing 767-200")
155 self.add("aircraft_b763", "Boeing 767-300")
156 self.add("aircraft_crj2", "Canadair Regional Jet CRJ-200")
157 self.add("aircraft_f70", "Fokker F70")
158 self.add("aircraft_dc3", "Lisunov Li-2")
159 self.add("aircraft_t134", "Tupolev Tu-134")
160 self.add("aircraft_t154", "Tupolev Tu-154")
161 self.add("aircraft_yk40", "Yakovlev Yak-40")
162
163 self.add("file_filter_all", "All files")
164 self.add("file_filter_pireps", "PIREP files")
165
166 self.add("button_ok", "_OK")
167 self.add("button_cancel", "_Cancel")
168 self.add("button_yes", "_Yes")
169 self.add("button_no", "_No")
170 self.add("button_browse", "Browse...")
171 self.add("button_cancelFlight", "Cancel flight")
172
173 self.add("menu_file", "File")
174 self.add("menu_file_loadPIREP", "_Load PIREP...")
175 self.add("menu_file_loadPIREP_key", "l")
176 self.add("menu_file_quit", "_Quit")
177 self.add("menu_file_quit_key", "q")
178 self.add("quit_question", "Are you sure to quit the logger?")
179
180 self.add("menu_tools", "Tools")
181 self.add("menu_tools_chklst", "_Checklist Editor")
182 self.add("menu_tools_chklst_key", "c")
183 self.add("menu_tools_prefs", "_Preferences")
184 self.add("menu_tools_prefs_key", "p")
185
186 self.add("menu_view", "View")
187 self.add("menu_view_monitor", "Show _monitor window")
188 self.add("menu_view_monitor_key", "m")
189 self.add("menu_view_debug", "Show _debug log")
190 self.add("menu_view_debug_key", "d")
191
192 self.add("menu_help", "Help")
193 self.add("menu_help_manual", "_User's manual")
194 self.add("menu_help_manual_key", "u")
195 self.add("menu_help_about", "_About")
196 self.add("menu_help_about_key", "a")
197
198 self.add("tab_flight", "_Flight")
199 self.add("tab_flight_tooltip", "Flight wizard")
200 self.add("tab_flight_info", "Flight _info")
201 self.add("tab_flight_info_tooltip", "Further information regarding the flight")
202 self.add("tab_weight_help", "_Help")
203 self.add("tab_weight_help_tooltip", "Help to calculate the weights")
204 self.add("tab_log", "_Log")
205 self.add("tab_log_tooltip",
206 "The log of your flight that will be sent to the MAVA website")
207 self.add("tab_gates", "_Gates")
208 self.add("tab_gates_tooltip", "The status of the MAVA fleet and the gates at LHBP")
209 self.add("tab_debug_log", "_Debug log")
210 self.add("tab_debug_log_tooltip", "Log with debugging information.")
211
212 self.add("conn_failed", "Cannot connect to the simulator.")
213 self.add("conn_failed_sec",
214 "Rectify the situation, and press <b>Try again</b> "
215 "to try the connection again, "
216 "or <b>Cancel</b> to cancel the flight.")
217 self.add("conn_broken",
218 "The connection to the simulator failed unexpectedly.")
219 self.add("conn_broken_sec",
220 "If the simulator has crashed, restart it "
221 "and restore your flight as much as possible "
222 "to the state it was in before the crash. "
223 "Then press <b>Reconnect</b> to reconnect.\n\n"
224 "If you want to cancel the flight, press <b>Cancel</b>.")
225 self.add("button_tryagain", "_Try again")
226 self.add("button_reconnect", "_Reconnect")
227
228 self.add("login", "Login")
229 self.add("loginHelp",
230 "Enter your MAVA pilot's ID and password to\n" \
231 "log in to the MAVA website and download\n" \
232 "your booked flights.")
233 self.add("label_pilotID", "Pil_ot ID:")
234 self.add("login_pilotID_tooltip",
235 "Enter your MAVA pilot's ID. This usually starts with a "
236 "'P' followed by 3 digits.")
237 self.add("label_password", "_Password:")
238 self.add("login_password_tooltip",
239 "Enter the password for your pilot's ID")
240 self.add("remember_password", "_Remember password")
241 self.add("login_remember_tooltip",
242 "If checked, your password will be stored, so that you should "
243 "not have to enter it every time. Note, however, that the password "
244 "is stored as text, and anybody who can access your files will "
245 "be able to read it.")
246 self.add("login_entranceExam", "_Entrance exam")
247 self.add("login_entranceExam_tooltip",
248 "Check this to log in to take your entrance exam.")
249 self.add("button_offline", "Fl_y offline")
250 self.add("button_offline_tooltip",
251 "Click this button to fly offline, without logging in "
252 "to the MAVA website.")
253 self.add("button_login", "Logi_n")
254 self.add("login_button_tooltip", "Click to log in.")
255 self.add("login_busy", "Logging in...")
256 self.add("login_invalid", "Invalid pilot's ID or password.")
257 self.add("login_invalid_sec",
258 "Check the ID and try to reenter the password.")
259 self.add("login_entranceExam_invalid",
260 "Invalid pilot's ID or not registered for exam.")
261 self.add("login_entranceExam_invalid_sec",
262 "Check the ID and make sure that you are "
263 "allowed to take your entrance exam.")
264 self.add("login_failconn",
265 "Failed to communicate with the MAVA website.")
266 self.add("login_failconn_sec",
267 "Try again in a few minutes. If it does not help, "
268 "see the debug log for details.")
269
270 self.add("reload_busy", "Reloading flights...")
271 self.add("reload_failed",
272 "Your pilot ID and password failed this time.")
273 self.add("reload_failed_sec",
274 "This must be some problem with the MAVA website "
275 "(or you are fired), using your old list of flights.")
276 self.add("reload_failconn",
277 "Failed to communicate with the MAVA website.")
278 self.add("reload_failconn_sec",
279 "Your previously downloaded list of flights will be used.")
280
281 self.add("cancelFlight_question",
282 "Are you sure to cancel the flight?")
283
284 self.add("button_next", "_Next")
285 self.add("button_next_tooltip", "Click to go to the next page.")
286 self.add("button_previous", "_Previous")
287 self.add("button_previous_tooltip", "Click to go to the previous page.")
288 self.add("button_cancelFlight_tooltip",
289 "Click to cancel the current flight. If you have "
290 "logged in, you will go back to the flight selection "
291 "page, otherwise to the login page.")
292
293 self.add("flightsel_title", "Flight selection")
294 self.add("flightsel_help", "Select the flight you want to perform.")
295 self.add("flightsel_chelp", "You have selected the flight highlighted below.")
296 self.add("flightsel_no", "Flight no.")
297 self.add("flightsel_deptime", "Departure time [UTC]")
298 self.add("flightsel_from", "From")
299 self.add("flightsel_to", "To")
300 self.add("flightsel_save", "_Save flight")
301 self.add("flightsel_save_tooltip",
302 "Click here to save the currently selected flight into "
303 "a file that can be loaded later.")
304 self.add("flightsel_save_title", "Save a flight into a file")
305 self.add("flightsel_save_failed",
306 "Could not save the flight into a file.")
307 self.add("flightsel_save_failed_sec",
308 "Check the debug log for more details.")
309 self.add("flightsel_refresh", "_Refresh flights")
310 self.add("flightsel_refresh_tooltip",
311 "Click here to refresh the list of flights from the MAVA website.")
312 self.add("flightsel_load", "L_oad flight from file")
313 self.add("flightsel_load_tooltip",
314 "Click here to load a flight from a file, "
315 "and add it to the list above.")
316 self.add("flightsel_load_title", "Load flight from file")
317 self.add("flightsel_filter_flights", "Flight files")
318 self.add("flightsel_load_failed",
319 "Could not load the flight file")
320 self.add("flightsel_load_failed_sec",
321 "Check the debug log for more details.")
322
323 self.add("fleet_busy", "Retrieving fleet...")
324 self.add("fleet_failed",
325 "Failed to retrieve the information on the fleet.")
326 self.add("fleet_update_busy", "Updating plane status...")
327 self.add("fleet_update_failed",
328 "Failed to update the status of the airplane.")
329
330 self.add("gatesel_title", "LHBP gate selection")
331 self.add("gatesel_help",
332 "The airplane's gate position is invalid.\n\n" \
333 "Select the gate from which you\n" \
334 "would like to begin the flight.")
335 self.add("gatesel_conflict", "Gate conflict detected again.")
336 self.add("gatesel_conflict_sec",
337 "Try to select a different gate.")
338
339 self.add("connect_title", "Connect to the simulator")
340 self.add("connect_help",
341 "Load the aircraft below into the simulator and park it\n" \
342 "at the given airport, at the gate below, if present.\n\n" \
343 "Then press the Connect button to connect to the simulator.")
344 self.add("connect_chelp",
345 "The basic data of your flight can be read below.")
346 self.add("connect_flightno", "Flight number:")
347 self.add("connect_acft", "Aircraft:")
348 self.add("connect_tailno", "Tail number:")
349 self.add("connect_airport", "Airport:")
350 self.add("connect_gate", "Gate:")
351 self.add("button_connect", "_Connect")
352 self.add("button_connect_tooltip", "Click to connect to the simulator.")
353 self.add("connect_busy", "Connecting to the simulator...")
354
355 self.add("payload_title", "Payload")
356 self.add("payload_help",
357 "The briefing contains the weights below.\n" \
358 "Setup the cargo weight here and the payload weight "
359 "in the simulator.\n\n" \
360 "You can also check here what the simulator reports as ZFW.")
361 self.add("payload_chelp",
362 "You can see the weights in the briefing\n" \
363 "and the cargo weight you have selected below.\n\n" \
364 "You can also query the ZFW reported by the simulator.")
365 self.add("payload_crew", "Crew:")
366 self.add("payload_pax", "Passengers:")
367 self.add("payload_bag", "Baggage:")
368 self.add("payload_cargo", "_Cargo:")
369 self.add("payload_cargo_tooltip",
370 "The weight of the cargo for your flight.")
371 self.add("payload_mail", "Mail:")
372 self.add("payload_zfw", "Calculated ZFW:")
373 self.add("payload_fszfw", "_ZFW from FS:")
374 self.add("payload_fszfw_tooltip",
375 "Click here to refresh the ZFW value from the simulator.")
376 self.add("payload_zfw_busy", "Querying ZFW...")
377
378 self.add("time_title", "Time")
379 self.add("time_help",
380 "The departure and arrival times are displayed below in UTC.\n\n" \
381 "You can also query the current UTC time from the simulator.\n" \
382 "Ensure that you have enough time to properly prepare for the flight.")
383 self.add("time_chelp",
384 "The departure and arrival times are displayed below in UTC.\n\n" \
385 "You can also query the current UTC time from the simulator.\n")
386 self.add("time_departure", "Departure:")
387 self.add("time_arrival", "Arrival:")
388 self.add("time_fs", "_Time from FS:")
389 self.add("time_fs_tooltip",
390 "Click here to query the current UTC time from the simulator.")
391 self.add("time_busy", "Querying time...")
392
393 self.add("fuel_title", "Fuel")
394 self.add("fuel_help",
395 "Enter the amount of fuel in kilograms that need to be "
396 "present in each tank below.\n\n"
397 "When you press <b>Next</b>, the necessary amount of fuel\n"
398 "will be pumped into or out of the tanks.")
399 self.add("fuel_chelp",
400 "The amount of fuel tanked into your aircraft at the\n"
401 "beginning of the flight can be seen below.")
402
403 self.add("fuel_tank_centre", "_Centre\n")
404 self.add("fuel_tank_left", "L_eft\n")
405 self.add("fuel_tank_right", "_Right\n")
406 self.add("fuel_tank_left_aux", "Left\nA_ux")
407 self.add("fuel_tank_right_aux", "Right\nAu_x")
408 self.add("fuel_tank_left_tip", "Left\n_Tip")
409 self.add("fuel_tank_right_tip", "Right\nTip")
410 self.add("fuel_tank_external1", "External\n_1")
411 self.add("fuel_tank_external2", "External\n_2")
412 self.add("fuel_tank_centre2", "Ce_ntre\n2")
413 self.add("fuel_get_busy", "Querying fuel information...")
414 self.add("fuel_pump_busy", "Pumping fuel...")
415 self.add("fuel_tank_tooltip",
416 "This part displays the current level of the fuel in the "
417 "compared to its capacity. The "
418 '<span color="turquoise">turquoise</span> '
419 "slider shows the level that should be loaded into the tank "
420 "for the flight. You can click anywhere in the widget to "
421 "move the slider there. Or you can grab it by holding down "
422 "the left button of your mouse, and move the pointer up or "
423 "down. The scroll wheel on your mouse also increments or "
424 "decrements the amount of fuel by 10. If you hold down "
425 "the <b>Shift</b> key while scrolling, the steps will be "
426 "100, or with the <b>Control</b> key, 1.")
427
428 self.add("route_title", "Route")
429 self.add("route_help",
430 "Set your cruise flight level below, and\n" \
431 "if necessary, edit the flight plan.")
432 self.add("route_chelp",
433 "If necessary, you can modify the cruise level and\n" \
434 "the flight plan below during flight.\n" \
435 "If so, please, add a comment on why " \
436 "the modification became necessary.")
437 self.add("route_level", "_Cruise level:")
438 self.add("route_level_tooltip",
439 "The cruise flight level. Click on the arrows to increment "
440 "or decrement by 10, or enter the number on the keyboard.")
441 self.add("route_route", "_Route")
442 self.add("route_route_tooltip",
443 "The planned flight route in the standard format.")
444 self.add("route_down_notams", "Downloading NOTAMs...")
445 self.add("route_down_metars", "Downloading METARs...")
446
447 self.add("briefing_title", "Briefing (%d/2): %s")
448 self.add("briefing_departure", "departure")
449 self.add("briefing_arrival", "arrival")
450 self.add("briefing_help",
451 "Read carefully the NOTAMs and METAR below.\n\n" \
452 "You can edit the METAR if your simulator or network\n" \
453 "provides different weather.")
454 self.add("briefing_chelp",
455 "If your simulator or network provides a different\n" \
456 "weather, you can edit the METAR below.")
457 self.add("briefing_notams_init", "LHBP NOTAMs")
458 self.add("briefing_metar_init", "LHBP METAR")
459 self.add("briefing_button",
460 "I have read the briefing and am _ready to fly!")
461 self.add("briefing_notams_template", "%s NOTAMs")
462 self.add("briefing_metar_template", "%s _METAR")
463 self.add("briefing_notams_failed", "Could not download NOTAMs")
464 self.add("briefing_notams_missing",
465 "Could not download NOTAM for this airport")
466 self.add("briefing_metar_failed", "Could not download METAR")
467
468 self.add("takeoff_title", "Takeoff")
469 self.add("takeoff_help",
470 "Enter the runway and SID used, as well as the speeds.")
471 self.add("takeoff_chelp",
472 "The runway, SID and takeoff speeds logged can be seen below.")
473 self.add("takeoff_runway", "Run_way:")
474 self.add("takeoff_runway_tooltip",
475 "The runway the takeoff is performed from.")
476 self.add("takeoff_sid", "_SID:")
477 self.add("takeoff_sid_tooltip",
478 "The name of the Standard Instrument Deparature procedure followed.")
479 self.add("takeoff_v1", "V<sub>_1</sub>:")
480 self.add("takeoff_v1_tooltip", "The takeoff decision speed in knots.")
481 self.add("label_knots", "knots")
482 self.add("takeoff_vr", "V<sub>_R</sub>:")
483 self.add("takeoff_vr_tooltip", "The takeoff rotation speed in knots.")
484 self.add("takeoff_v2", "V<sub>_2</sub>:")
485 self.add("takeoff_v2_tooltip", "The takeoff safety speed in knots.")
486
487 self.add("landing_title", "Landing")
488 self.add("landing_help",
489 "Enter the STAR and/or transition, runway,\n" \
490 "approach type and V<sub>Ref</sub> used.")
491 self.add("landing_chelp",
492 "The STAR and/or transition, runway, approach\n" \
493 "type and V<sub>Ref</sub> logged can be seen below.")
494 self.add("landing_star", "_STAR:")
495 self.add("landing_star_tooltip",
496 "The name of Standard Terminal Arrival Route followed.")
497 self.add("landing_transition", "_Transition:")
498 self.add("landing_transition_tooltip",
499 "The name of transition executed or VECTORS if vectored by ATC.")
500 self.add("landing_runway", "Run_way:")
501 self.add("landing_runway_tooltip",
502 "The runway the landing is performed on.")
503 self.add("landing_approach", "_Approach type:")
504 self.add("landing_approach_tooltip",
505 "The type of the approach, e.g. ILS or VISUAL.")
506 self.add("landing_vref", "V<sub>_Ref</sub>:")
507 self.add("landing_vref_tooltip",
508 "The landing reference speed in knots.")
509
510 self.add("flighttype_scheduled", "scheduled")
511 self.add("flighttype_ot", "old-timer")
512 self.add("flighttype_vip", "VIP")
513 self.add("flighttype_charter", "charter")
514
515 self.add("finish_title", "Finish")
516 self.add("finish_help",
517 "There are some statistics about your flight below.\n\n" \
518 "Review the data, also on earlier pages, and if you are\n" \
519 "satisfied, you can save or send your PIREP.")
520 self.add("finish_rating", "Flight rating:")
521 self.add("finish_flight_time", "Flight time:")
522 self.add("finish_block_time", "Block time:")
523 self.add("finish_distance", "Distance flown:")
524 self.add("finish_fuel", "Fuel used:")
525 self.add("finish_type", "_Type:")
526 self.add("finish_type_tooltip", "Select the type of the flight.")
527 self.add("finish_online", "_Online flight")
528 self.add("finish_online_tooltip",
529 "Check if your flight was online, uncheck otherwise.")
530 self.add("finish_gate", "_Arrival gate:")
531 self.add("finish_gate_tooltip",
532 "Select the gate or stand at which you have arrived to LHBP.")
533 self.add("finish_newFlight", "_New flight...")
534 self.add("finish_newFlight_tooltip",
535 "Click here to start a new flight.")
536 self.add("finish_newFlight_question",
537 "You have neither saved nor sent your PIREP. "
538 "Are you sure to start a new flight?")
539 self.add("finish_save", "Sa_ve PIREP...")
540 self.add("finish_save_tooltip",
541 "Click to save the PIREP into a file on your computer. " \
542 "The PIREP can be loaded and sent later.")
543 self.add("finish_save_title", "Save PIREP into")
544 self.add("finish_save_done", "The PIREP was saved successfully")
545 self.add("finish_save_failed", "Failed to save the PIREP")
546 self.add("finish_save_failed_sec", "See the debug log for the details.")
547
548 # C D
549
550 self.add("info_comments", "_Comments")
551 self.add("info_defects", "Flight _defects")
552 self.add("info_delay", "Delay codes")
553
554 # O V N E Y T R A W P
555
556 self.add("info_delay_loading", "L_oading problems")
557 self.add("info_delay_vatsim", "_VATSIM problem")
558 self.add("info_delay_net", "_Net problems")
559 self.add("info_delay_atc", "Controll_er's fault")
560 self.add("info_delay_system", "S_ystem crash/freeze")
561 self.add("info_delay_nav", "Naviga_tion problem")
562 self.add("info_delay_traffic", "T_raffic problems")
563 self.add("info_delay_apron", "_Apron navigation problem")
564 self.add("info_delay_weather", "_Weather problems")
565 self.add("info_delay_personal", "_Personal reasons")
566
567 self.add("statusbar_conn_tooltip",
568 'The state of the connection.\n'
569 '<span foreground="grey">Grey</span> means idle.\n'
570 '<span foreground="red">Red</span> means trying to connect.\n'
571 '<span foreground="green">Green</span> means connected.')
572 self.add("statusbar_stage_tooltip", "The flight stage")
573 self.add("statusbar_time_tooltip", "The simulator time in UTC")
574 self.add("statusbar_rating_tooltip", "The flight rating")
575 self.add("statusbar_busy_tooltip", "The status of the background tasks.")
576
577 self.add("flight_stage_boarding", "boarding")
578 self.add("flight_stage_pushback and taxi", "pushback and taxi")
579 self.add("flight_stage_takeoff", "takeoff")
580 self.add("flight_stage_RTO", "RTO")
581 self.add("flight_stage_climb", "climb")
582 self.add("flight_stage_cruise", "cruise")
583 self.add("flight_stage_descent", "descent")
584 self.add("flight_stage_landing", "landing")
585 self.add("flight_stage_taxi", "taxi")
586 self.add("flight_stage_parking", "parking")
587 self.add("flight_stage_go-around", "go-around")
588 self.add("flight_stage_end", "end")
589
590 self.add("statusicon_showmain", "Show main window")
591 self.add("statusicon_showmonitor", "Show monitor window")
592 self.add("statusicon_quit", "Quit")
593 self.add("statusicon_stage", "Stage")
594 self.add("statusicon_rating", "Rating")
595
596 self.add("update_title", "Update")
597 self.add("update_needsudo",
598 "There is an update available, but the program cannot write\n"
599 "its directory due to insufficient privileges.\n\n"
600 "Click OK, if you want to run a helper program\n"
601 "with administrator privileges "
602 "to complete the update,\n"
603 "Cancel otherwise.")
604 self.add("update_manifest_progress", "Downloading manifest...")
605 self.add("update_manifest_done", "Downloaded manifest...")
606 self.add("update_files_progress", "Downloading files...")
607 self.add("update_files_bytes", "Downloaded %d of %d bytes")
608 self.add("update_renaming", "Renaming downloaded files...")
609 self.add("update_renamed", "Renamed %s")
610 self.add("update_removing", "Removing files...")
611 self.add("update_removed", "Removed %s")
612 self.add("update_writing_manifest", "Writing the new manifest")
613 self.add("update_finished",
614 "Finished updating. Press OK to restart the program.")
615 self.add("update_nothing", "There was nothing to update")
616 self.add("update_failed", "Failed, see the debug log for details.")
617
618 self.add("weighthelp_usinghelp", "_Using help")
619 self.add("weighthelp_usinghelp_tooltip",
620 "If you check this, some help will be displayed on how "
621 "to calculate the payload weight for your flight. "
622 "Note, that the usage of this facility will be logged.")
623 self.add("weighthelp_header_calculated", "Requested/\ncalculated")
624 self.add("weighthelp_header_simulator", "Simulator\ndata")
625 self.add("weighthelp_header_simulator_tooltip",
626 "Click this button to retrieve the weight values from the "
627 "simulator, which will be displayed below. If a value is "
628 "within 10% of the tolerance, it is displayed in "
629 '<b><span foreground="darkgreen">green</span></b>, '
630 "if it is out of the tolerance, it is displayed in "
631 '<b><span foreground="red">red</span></b>, '
632 "otherwise in"
633 '<b><span foreground="orange">yellow</span></b>.')
634 self.add("weighthelp_crew", "Crew (%s):")
635 self.add("weighthelp_pax", "Passengers (%s):")
636 self.add("weighthelp_baggage", "Baggage:")
637 self.add("weighthelp_cargo", "Cargo:")
638 self.add("weighthelp_mail", "Mail:")
639 self.add("weighthelp_payload", "Payload:")
640 self.add("weighthelp_dow", "DOW:")
641 self.add("weighthelp_zfw", "ZFW:")
642 self.add("weighthelp_gross", "Gross weight:")
643 self.add("weighthelp_mzfw", "MZFW:")
644 self.add("weighthelp_mtow", "MTOW:")
645 self.add("weighthelp_mlw", "MLW:")
646 self.add("weighthelp_busy", "Querying weight data...")
647
648 self.add("gates_fleet_title", "Fl_eet")
649 self.add("gates_gates_title", "LHBP gates")
650 self.add("gates_tailno", "Tail nr.")
651 self.add("gates_planestatus", "Status")
652 self.add("gates_refresh", "_Refresh data")
653 self.add("gates_refresh_tooltip",
654 "Click this button to refresh the status data above")
655 self.add("gates_planes_tooltip",
656 "This table lists all the planes in the MAVA fleet and their "
657 "last known location. If a plane is conflicting with another "
658 "because of occupying the same gate its data is displayed in "
659 "<b><span foreground=\"red\">red</span></b>.")
660 self.add("gates_gates_tooltip",
661 "The numbers of the gates occupied by MAVA planes are "
662 "displayed in "
663 '<b><span foreground="orange">yellow</span></b>, '
664 "while available gates in black.")
665 self.add("gates_plane_away", "AWAY")
666 self.add("gates_plane_parking", "PARKING")
667 self.add("gates_plane_unknown", "UNKNOWN")
668
669 self.add("prefs_title", "Preferences")
670 self.add("prefs_tab_general", "_General")
671 self.add("prefs_tab_general_tooltip", "General preferences")
672 self.add("prefs_tab_messages", "_Messages")
673 self.add("prefs_tab_message_tooltip",
674 "Enable/disable message notifications in FS and/or by sound")
675 self.add("prefs_tab_sounds", "_Sounds")
676 self.add("prefs_tab_sounds_tooltip",
677 "Preferences regarding what sounds should be played during the various flight stages")
678 self.add("prefs_tab_advanced", "_Advanced")
679 self.add("prefs_tab_advanced_tooltip",
680 "Advanced preferences, edit with care!")
681 self.add("prefs_language", "_Language:")
682 self.add("prefs_language_tooltip",
683 "The language of the program")
684 self.add("prefs_restart",
685 "Restart needed")
686 self.add("prefs_language_restart_sec",
687 "If you change the language, the program should be restarted "
688 "so that the change has an effect.")
689 self.add("prefs_lang_$system", "system default")
690 self.add("prefs_lang_en_GB", "English")
691 self.add("prefs_lang_hu_HU", "Hungarian")
692 self.add("prefs_hideMinimizedWindow",
693 "_Hide the main window when minimized")
694 self.add("prefs_hideMinimizedWindow_tooltip",
695 "If checked, the main window will be hidden completely "
696 "when minimized. You can still make it appear by "
697 "clicking on the status icon or using its popup menu.")
698 self.add("prefs_onlineGateSystem",
699 "_Use the Online Gate System")
700 self.add("prefs_onlineGateSystem_tooltip",
701 "If this is checked, the logger will query and update the "
702 "LHBP Online Gate System.")
703 self.add("prefs_onlineACARS",
704 "Use the Online ACA_RS System")
705 self.add("prefs_onlineACARS_tooltip",
706 "If this is checked, the logger will continuously update "
707 "the MAVA Online ACARS System with your flight's data.")
708 self.add("prefs_flaretimeFromFS",
709 "Take flare _time from the simulator")
710 self.add("prefs_flaretimeFromFS_tooltip",
711 "If this is checked, the time of the flare will be calculated "
712 "from timestamps returned by the simulator.")
713 self.add("prefs_syncFSTime",
714 "S_ynchronize the time in FS with the computer's clock")
715 self.add("prefs_syncFSTime_tooltip",
716 "If this is checked, the flight simulator's internal clock "
717 "will always be synchronized to the computer's clock.")
718 self.add("prefs_usingFS2Crew",
719 "Using FS_2Crew")
720 self.add("prefs_usingFS2Crew_tooltip",
721 "If this is checked, the logger will take into account, "
722 "that you are using the FS2Crew addon.")
723 self.add("prefs_iasSmoothingEnabled",
724 "Enable the smoothing of _IAS over ")
725 self.add("prefs_iasSmoothingEnabledTooltip",
726 "If enabled, the IAS value will be averaged over the "
727 "given number of seconds, and in some checks "
728 "this averaged value will be considered.")
729 self.add("prefs_vsSmoothingEnabled",
730 "Enable the smoothing of _VS over ")
731 self.add("prefs_vsSmoothingEnabledTooltip",
732 "If enabled, the VS value will be averaged over the "
733 "given number of seconds, and in some checks "
734 "this averaged value will be considered.")
735 self.add("prefs_smoothing_seconds", "sec.")
736 self.add("prefs_pirepDirectory",
737 "_PIREP directory:")
738 self.add("prefs_pirepDirectory_tooltip",
739 "The directory that will be offered by default when "
740 "saving a PIREP.")
741 self.add("prefs_pirepDirectory_browser_title",
742 "Select PIREP directory")
743 self.add("prefs_frame_gui", "GUI")
744 self.add("prefs_frame_online", "MAVA Online Systems")
745 self.add("prefs_frame_simulator", "Simulator")
746
747 self.add("chklst_title", "Checklist Editor")
748 self.add("chklst_aircraftType", "Aircraft _type:")
749 self.add("chklst_aircraftType_tooltip",
750 "The type of the aircraft for which the checklist "
751 "is being edited.")
752 self.add("chklst_add", "_Add to checklist")
753 self.add("chklst_add_tooltip",
754 "Append the files selected on the left to the "
755 "checklist on the right.")
756 self.add("chklst_remove", "_Remove")
757 self.add("chklst_remove_tooltip",
758 "Remove the selected items from the checklist.")
759 self.add("chklst_moveUp", "Move _up")
760 self.add("chklst_moveUp_tooltip",
761 "Move up the selected file(s) in the checklist.")
762 self.add("chklst_moveDown", "Move _down")
763 self.add("chklst_moveDown_tooltip",
764 "Move down the selected file(s) in the checklist.")
765 self.add("chklst_filter_audio", "Audio files")
766 self.add("chklst_header", "Checklist files")
767
768 self.add("prefs_sounds_frame_bg", "Background")
769 self.add("prefs_sounds_enable",
770 "_Enable background sounds")
771 self.add("prefs_sounds_enable_tooltip",
772 "If the background sounds are enabled, the logger "
773 "can play different pre-recorded sounds during the "
774 "various stages of the flight.")
775 self.add("prefs_sounds_pilotControls",
776 "_Pilot controls the sounds")
777 self.add("prefs_sounds_pilotControls_tooltip",
778 "If checked, the background sounds can be started by the "
779 "pilot by pressing the hotkey specified below. Otherwise "
780 "the sounds will start automatically when certain "
781 "conditions hold.")
782 self.add("prefs_sounds_pilotHotkey",
783 "_Hotkey:")
784 self.add("prefs_sounds_pilotHotkey_tooltip",
785 "The key to press possibly together with modifiers to play "
786 "the sound relevant to the current flight status.")
787 self.add("prefs_sounds_pilotHotkeyCtrl_tooltip",
788 "If checked, the Ctrl key should be pressed together with the "
789 "main key.")
790 self.add("prefs_sounds_pilotHotkeyShift_tooltip",
791 "If checked, the Shift key should be pressed together with the "
792 "main key.")
793 self.add("prefs_sounds_approachCallOuts",
794 "Enable approach callouts")
795 self.add("prefs_sounds_approachCallOuts_tooltip",
796 "If checked, the approach callouts will be played at "
797 "certain altitudes.")
798 self.add("prefs_sounds_speedbrakeAtTD",
799 "Enable speed_brake sound at touchdown")
800 self.add("prefs_sounds_speedbrakeAtTD_tooltip",
801 "If checked, a speedbrake sound will be played after "
802 "touchdown, when the speedbrakes deploy.")
803 self.add("prefs_sounds_frame_checklists", "Checklists")
804 self.add("prefs_sounds_enableChecklists",
805 "E_nable aircraft-specific checklists")
806 self.add("prefs_sounds_enableChecklists_tooltip",
807 "If checked, the program will play back pre-recorded "
808 "aircraft-specific checklists at the pilot's discretion.")
809 self.add("prefs_sounds_checklistHotkey",
810 "Checklist hot_key:")
811 self.add("prefs_sounds_checklistHotkey_tooltip",
812 "The key to press possibly together with modifiers to play the next "
813 "checklist item.")
814 self.add("prefs_sounds_checklistHotkeyCtrl_tooltip",
815 "If checked, the Ctrl key should be pressed together with the "
816 "main key.")
817 self.add("prefs_sounds_checklistHotkeyShift_tooltip",
818 "If checked, the Shift key should be pressed together with the "
819 "main key.")
820
821 self.add("prefs_update_auto", "Update the program auto_matically")
822 self.add("prefs_update_auto_tooltip",
823 "If checked the program will look for updates when "
824 "it is starting, and if new updates are found, they "
825 "will be downloaded and installed. This ensures that "
826 "the PIREP you send will always conform to the latest "
827 "expectations of the airline.")
828 self.add("prefs_update_auto_warning",
829 "Disabling automatic updates may result in "
830 "your version of the program becoming out of date "
831 "and your PIREPs not being accepted.")
832 self.add("prefs_update_url", "Update _URL:")
833 self.add("prefs_update_url_tooltip",
834 "The URL from which to download the updates. Change this "
835 "only if you know what you are doing!")
836
837 # A C G M O S
838
839 self.add("prefs_msgs_fs", "Displayed in FS")
840 self.add("prefs_msgs_sound", "Sound alert")
841 self.add("prefs_msgs_type_loggerError", "Logger _Error Messages")
842 self.add("prefs_msgs_type_information",
843 "_Information Messages\n(e.g. flight stage)")
844 self.add("prefs_msgs_type_fault",
845 "_Fault Messages\n(e.g. strobe light fault)")
846 self.add("prefs_msgs_type_nogo",
847 "_NO GO Fault messages\n(e.g. MTOW NO GO)")
848 self.add("prefs_msgs_type_gateSystem",
849 "Ga_te System Messages\n(e.g. available gates)")
850 self.add("prefs_msgs_type_environment",
851 "Envi_ronment Messages\n(e.g. \"welcome to XY aiport\")")
852 self.add("prefs_msgs_type_help",
853 "_Help Messages\n(e.g. \"don't forget to set VREF\")")
854 self.add("prefs_msgs_type_visibility",
855 "_Visibility Messages")
856
857 self.add("loadPIREP_browser_title", "Select the PIREP to load")
858 self.add("loadPIREP_failed", "Failed to load the PIREP")
859 self.add("loadPIREP_failed_sec", "See the debug log for the details.")
860 self.add("loadPIREP_send_title", "PIREP")
861 self.add("loadPIREP_send_help",
862 "The main data of the PIREP loaded:")
863 self.add("loadPIREP_send_flightno", "Flight number:")
864 self.add("loadPIREP_send_date", "Date:")
865 self.add("loadPIREP_send_from", "From:")
866 self.add("loadPIREP_send_to", "To:")
867 self.add("loadPIREP_send_rating", "Rating:")
868
869 self.add("sendPIREP", "_Send PIREP...")
870 self.add("sendPIREP_tooltip",
871 "Click to send the PIREP to the MAVA website for further review.")
872 self.add("sendPIREP_busy", "Sending PIREP...")
873 self.add("sendPIREP_success",
874 "The PIREP was sent successfully.")
875 self.add("sendPIREP_success_sec",
876 "Await the thorough scrutiny by our fearless PIREP reviewers! :)")
877 self.add("sendPIREP_already",
878 "The PIREP for this flight has already been sent!")
879 self.add("sendPIREP_already_sec",
880 "You may clear the old PIREP on the MAVA website.")
881 self.add("sendPIREP_notavail",
882 "This flight is not available anymore!")
883 self.add("sendPIREP_unknown",
884 "The MAVA website returned with an unknown error.")
885 self.add("sendPIREP_unknown_sec",
886 "See the debug log for more information.")
887 self.add("sendPIREP_failed",
888 "Could not send the PIREP to the MAVA website.")
889 self.add("sendPIREP_failed_sec",
890 "This can be a network problem, in which case\n" \
891 "you may try again later. Or it can be a bug;\n" \
892 "see the debug log for more information.")
893
894 self.add("viewPIREP", "_View PIREP...")
895
896 self.add("pirepView_title", "PIREP viewer")
897
898 self.add("pirepView_tab_data", "_Data")
899 self.add("pirepView_tab_data_tooltip",
900 "The main data of the flight.")
901
902 self.add("pirepView_frame_flight", "Flight")
903 self.add("pirepView_callsign", "Callsign:")
904 self.add("pirepView_tailNumber", "Tail no.:")
905 self.add("pirepView_aircraftType", "Aircraft:")
906 self.add("pirepView_departure", "Departure airport:")
907 self.add("pirepView_departure_time", "time:")
908 self.add("pirepView_arrival", "Arrival airport:")
909 self.add("pirepView_arrival_time", "time:")
910 self.add("pirepView_numPassengers", "PAX:")
911 self.add("pirepView_numCrew", "Crew:")
912 self.add("pirepView_bagWeight", "Baggage:")
913 self.add("pirepView_cargoWeight", "Cargo:")
914 self.add("pirepView_mailWeight", "Mail:")
915 self.add("pirepView_route", "MAVA route:")
916
917 self.add("pirepView_frame_route", "Route filed")
918 self.add("pirepView_filedCruiseLevel", "Cruise level:")
919 self.add("pirepView_modifiedCruiseLevel", "modified to:")
920
921 self.add("pirepView_frame_departure", "Departure")
922 self.add("pirepView_runway", "Runway:")
923 self.add("pirepView_sid", "SID:")
924
925 self.add("pirepView_frame_arrival", "Arrival")
926 self.add("pirepView_star", "STAR:")
927 self.add("pirepView_transition", "Transition:")
928 self.add("pirepView_approachType", "Approach:")
929
930 self.add("pirepView_frame_statistics", "Statistics")
931 self.add("pirepView_blockTimeStart", "Block time start:")
932 self.add("pirepView_blockTimeEnd", "end:")
933 self.add("pirepView_flightTimeStart", "Flight time start:")
934 self.add("pirepView_flightTimeEnd", "end:")
935 self.add("pirepView_flownDistance", "Flown distance:")
936 self.add("pirepView_fuelUsed", "Fuel used:")
937 self.add("pirepView_rating", "Rating:")
938
939 self.add("pirepView_frame_miscellaneous", "Miscellaneous")
940 self.add("pirepView_flightType", "Type:")
941 self.add("pirepView_online", "Online:")
942 self.add("pirepView_yes", "yes")
943 self.add("pirepView_no", "no")
944 self.add("pirepView_delayCodes", "Delay codes:")
945
946 self.add("pirepView_tab_comments", "_Comments & defects")
947 self.add("pirepView_tab_comments_tooltip",
948 "The comments and the flight defects.")
949
950 self.add("pirepView_comments", "Comments")
951 self.add("pirepView_flightDefects", "Flight defects")
952
953 self.add("pirepView_tab_log", "_Log")
954 self.add("pirepView_tab_log_tooltip", "The flight log.")
955
956 self.add("about_license",
957 "This program is in the public domain.")
958
959 self.add("about_role_prog_test", "programming, testing")
960 self.add("about_role_negotiation", "negotiation")
961 self.add("about_role_test", "testing")
962
963#------------------------------------------------------------------------------
964
965class _Hungarian(_Strings):
966 """The strings for the Hungarian language."""
967 def __init__(self):
968 """Construct the object."""
969 super(_Hungarian, self).__init__(["hu_HU", "hu"])
970
971 def initialize(self):
972 """Initialize the strings."""
973 self.add("aircraft_b736", "Boeing 737-600")
974 self.add("aircraft_b737", "Boeing 737-700")
975 self.add("aircraft_b738", "Boeing 737-800")
976 self.add("aircraft_b738c", "Boeing 737-800 (charter)")
977 self.add("aircraft_b733", "Boeing 737-300")
978 self.add("aircraft_b734", "Boeing 737-400")
979 self.add("aircraft_b735", "Boeing 737-500")
980 self.add("aircraft_dh8d", "Bombardier Dash 8 Q400")
981 self.add("aircraft_b762", "Boeing 767-200")
982 self.add("aircraft_b763", "Boeing 767-300")
983 self.add("aircraft_crj2", "Canadair Regional Jet CRJ-200")
984 self.add("aircraft_f70", "Fokker F70")
985 self.add("aircraft_dc3", "Liszunov Li-2")
986 self.add("aircraft_t134", "Tupoljev Tu-134")
987 self.add("aircraft_t154", "Tupoljev Tu-154")
988 self.add("aircraft_yk40", "Jakovlev Jak-40")
989
990 self.add("file_filter_all", "Összes fájl")
991 self.add("file_filter_pireps", "PIREP fájlok")
992
993 self.add("button_ok", "_OK")
994 self.add("button_cancel", "_Mégse")
995 self.add("button_yes", "_Igen")
996 self.add("button_no", "_Nem")
997 self.add("button_browse", "Keresés...")
998 self.add("button_cancelFlight", "Járat megszakítása")
999
1000 self.add("menu_file", "Fájl")
1001 self.add("menu_file_loadPIREP", "PIREP be_töltése...")
1002 self.add("menu_file_loadPIREP_key", "t")
1003 self.add("menu_file_quit", "_Kilépés")
1004 self.add("menu_file_quit_key", "k")
1005 self.add("quit_question", "Biztosan ki akarsz lépni?")
1006
1007 self.add("menu_tools", "Eszközök")
1008 self.add("menu_tools_chklst", "_Ellenőrzőlista szerkesztő")
1009 self.add("menu_tools_chklst_key", "e")
1010 self.add("menu_tools_prefs", "_Beállítások")
1011 self.add("menu_tools_prefs_key", "b")
1012
1013 self.add("menu_view", "Nézet")
1014 self.add("menu_view_monitor", "Mutasd a _monitor ablakot")
1015 self.add("menu_view_monitor_key", "m")
1016 self.add("menu_view_debug", "Mutasd a _debug naplót")
1017 self.add("menu_view_debug_key", "d")
1018
1019 self.add("menu_help", "Segítség")
1020 self.add("menu_help_manual", "_Felhasználói kézikönyv")
1021 self.add("menu_help_manual_key", "f")
1022 self.add("menu_help_about", "_Névjegy")
1023 self.add("menu_help_about_key", "n")
1024
1025 self.add("tab_flight", "_Járat")
1026 self.add("tab_flight_tooltip", "Járat varázsló")
1027 self.add("tab_flight_info", "Járat _info")
1028 self.add("tab_flight_info_tooltip", "Egyéb információk a járat teljesítésével kapcsolatban")
1029 self.add("tab_weight_help", "_Segítség")
1030 self.add("tab_weight_help_tooltip", "Segítség a súlyszámításhoz")
1031 self.add("tab_log", "_Napló")
1032 self.add("tab_log_tooltip",
1033 "A járat naplója, amit majd el lehet küldeni a MAVA szerverére")
1034 self.add("tab_gates", "_Kapuk")
1035 self.add("tab_gates_tooltip", "A MAVA flotta és LHBP kapuinak állapota")
1036 self.add("tab_debug_log", "_Debug napló")
1037 self.add("tab_debug_log_tooltip",
1038 "Hibakereséshez használható információkat tartalmazó napló.")
1039
1040 self.add("conn_failed", "Nem tudtam kapcsolódni a szimulátorhoz.")
1041 self.add("conn_failed_sec",
1042 "Korrigáld a problémát, majd nyomd meg az "
1043 "<b>Próbáld újra</b> gombot a újrakapcsolódáshoz, "
1044 "vagy a <b>Mégse</b> gombot a járat megszakításához.")
1045 self.add("conn_broken",
1046 "A szimulátorral való kapcsolat váratlanul megszakadt.")
1047 self.add("conn_broken_sec",
1048 "Ha a szimulátor elszállt, indítsd újra "
1049 "és állítsd vissza a repülésed elszállás előtti "
1050 "állapotát amennyire csak lehet. "
1051 "Ezután nyomd meg az <b>Újrakapcsolódás</b> gombot "
1052 "a kapcsolat ismételt felvételéhez.\n\n"
1053 "Ha meg akarod szakítani a repülést, nyomd meg a "
1054 "<b>Mégse</b> gombot.")
1055 self.add("button_tryagain", "_Próbáld újra")
1056 self.add("button_reconnect", "Újra_kapcsolódás")
1057
1058 self.add("login", "Bejelentkezés")
1059 self.add("loginHelp",
1060 "Írd be a MAVA pilóta azonosítódat és a\n" \
1061 "bejelentkezéshez használt jelszavadat,\n" \
1062 "hogy választhass a foglalt járataid közül.")
1063 self.add("label_pilotID", "_Azonosító:")
1064 self.add("login_pilotID_tooltip",
1065 "Írd be a MAVA pilóta azonosítódat. Ez általában egy 'P' "
1066 "betűvel kezdődik, melyet 3 számjegy követ.")
1067 self.add("label_password", "Je_lszó:")
1068 self.add("login_password_tooltip",
1069 "Írd be a pilóta azonosítódhoz tartozó jelszavadat.")
1070 self.add("remember_password", "_Emlékezz a jelszóra")
1071 self.add("login_remember_tooltip",
1072 "Ha ezt kiválasztod, a jelszavadat eltárolja a program, így "
1073 "nem kell mindig újból beírnod. Vedd azonban figyelembe, "
1074 "hogy a jelszót szövegként tároljuk, így bárki elolvashatja, "
1075 "aki hozzáfér a fájljaidhoz.")
1076 self.add("login_entranceExam", "_Ellenőrző repülés")
1077 self.add("login_entranceExam_tooltip",
1078 "Ha ezt bejelölöd, ellenörző repülésre jelentkezhetsz be.")
1079 self.add("button_offline", "_Offline repülés")
1080 self.add("button_offline_tooltip",
1081 "Kattints ide hogy offline, a MAVA szerverre való "
1082 "bejelentkezés nélkül repülhess.")
1083 self.add("button_login", "_Bejelentkezés")
1084 self.add("login_button_tooltip", "Kattints ide a bejelentkezéshez.")
1085 self.add("login_busy", "Bejelentkezés...")
1086 self.add("login_invalid", "Érvénytelen azonosító vagy jelszó.")
1087 self.add("login_invalid_sec",
1088 "Ellenőrízd az azonosítót, és próbáld meg újra beírni a jelszót.")
1089 self.add("login_entranceExam_invalid",
1090 "Érvénytelen azonosító, vagy nem regisztráltak a vizsgára.")
1091 self.add("login_entranceExam_invalid_sec",
1092 "Ellenőrízd az azonosítót, és bizonyosdj meg "
1093 "arról, hogy végrehajthatod-e az ellenőrző repülést.")
1094 self.add("login_failconn",
1095 "Nem sikerült kommunikálni a MAVA honlappal.")
1096 self.add("login_failconn_sec",
1097 "Próbáld meg pár perc múlva. Ha az nem segít, "
1098 "részletesebb információt találsz a debug naplóban.")
1099
1100 self.add("reload_busy", "Járatok újratöltése...")
1101 self.add("reload_failed",
1102 "Ezúttal nem működött az azonosítód és a jelszavad.")
1103 self.add("reload_failed_sec",
1104 "Ez minden bizonnyal a MAVA website hibája "
1105 "(hacsak nem rúgtak ki), így használom a régi járatlistát.")
1106 self.add("reload_failconn",
1107 "Nem sikerült kommunikálni a MAVA honlappal.")
1108 self.add("reload_failconn_sec",
1109 "A korábban letöltött járatlistát használom.")
1110
1111 self.add("cancelFlight_question",
1112 "Biztosan meg akarod szakítani a járatot?")
1113
1114 self.add("button_next", "_Előre")
1115 self.add("button_next_tooltip",
1116 "Kattints ide, ha a következő lapra szeretnél lépni.")
1117 self.add("button_previous", "_Vissza")
1118 self.add("button_previous_tooltip",
1119 "Kattints ide, ha az előző lapra szeretnél lépni.")
1120 self.add("button_cancelFlight_tooltip",
1121 "Kattints ide, ha meg akarod szakítani a járatot. "
1122 "Ha bejelentkeztél, visszakerülsz a járatválasztó "
1123 "lapra, egyébként a bejelentkező lapra.")
1124
1125 self.add("flightsel_title", "Járatválasztás")
1126 self.add("flightsel_help", "Válaszd ki a járatot, amelyet le szeretnél repülni.")
1127 self.add("flightsel_chelp", "A lent kiemelt járatot választottad.")
1128 self.add("flightsel_no", "Járatszám")
1129 self.add("flightsel_deptime", "Indulás ideje [UTC]")
1130 self.add("flightsel_from", "Honnan")
1131 self.add("flightsel_to", "Hová")
1132 self.add("flightsel_save", "Járat _mentése")
1133 self.add("flightsel_save_tooltip",
1134 "Kattints ide az éppen kiválasztott járatnak "
1135 "fájlba mentéséhez. A fájl később visszatölthető, "
1136 "és így a járat offline is teljesíthető lesz.")
1137 self.add("flightsel_save_title", "Járat mentése fájlba")
1138 self.add("flightsel_save_failed",
1139 "Nem tudtam elmenteni a járatot.")
1140 self.add("flightsel_save_failed_sec",
1141 "A további részleteket lásd a debug naplóban.")
1142 self.add("flightsel_refresh", "Járatlista f_rissítése")
1143 self.add("flightsel_refresh_tooltip",
1144 "Kattints ide a járatlista újbóli letöltéséhez.")
1145 self.add("flightsel_load", "Járat betöltése _fájlból")
1146 self.add("flightsel_load_tooltip",
1147 "Kattints ide, hogy fájlból betölthess egy járatot, "
1148 "ami bekerül a fenti listába.")
1149 self.add("flightsel_load_title", "Járat betöltése fájlból")
1150 self.add("flightsel_filter_flights", "Járat fájlok")
1151 self.add("flightsel_load_failed",
1152 "Nem tudtam betölteni a járatfájlt.")
1153 self.add("flightsel_load_failed_sec",
1154 "A további részleteket lásd a debug naplóban.")
1155
1156 self.add("fleet_busy", "Flottaadatok letöltése...")
1157 self.add("fleet_failed",
1158 "Nem sikerült letöltenem a flotta adatait.")
1159 self.add("fleet_update_busy", "Repülőgép pozíció frissítése...")
1160 self.add("fleet_update_failed",
1161 "Nem sikerült frissítenem a repülőgép pozícióját.")
1162
1163 self.add("gatesel_title", "LHBP kapuválasztás")
1164 self.add("gatesel_help",
1165 "A repülőgép kapu pozíciója érvénytelen.\n\n" \
1166 "Válaszd ki azt a kaput, ahonnan\n" \
1167 "el szeretnéd kezdeni a járatot.")
1168 self.add("gatesel_conflict", "Ismét kapuütközés történt.")
1169 self.add("gatesel_conflict_sec",
1170 "Próbálj egy másik kaput választani.")
1171
1172 self.add("connect_title", "Kapcsolódás a szimulátorhoz")
1173 self.add("connect_help",
1174 "Tölsd be a lent látható repülőgépet a szimulátorba\n" \
1175 "az alább megadott reptérre és kapuhoz.\n\n" \
1176 "Ezután nyomd meg a Kapcsolódás gombot a kapcsolódáshoz.")
1177 self.add("connect_chelp",
1178 "A járat alapadatai lent olvashatók.")
1179 self.add("connect_flightno", "Járatszám:")
1180 self.add("connect_acft", "Típus:")
1181 self.add("connect_tailno", "Lajstromjel:")
1182 self.add("connect_airport", "Repülőtér:")
1183 self.add("connect_gate", "Kapu:")
1184 self.add("button_connect", "K_apcsolódás")
1185 self.add("button_connect_tooltip",
1186 "Kattints ide a szimulátorhoz való kapcsolódáshoz.")
1187 self.add("connect_busy", "Kapcsolódás a szimulátorhoz...")
1188
1189 self.add("payload_title", "Terhelés")
1190 self.add("payload_help",
1191 "Az eligazítás az alábbi tömegeket tartalmazza.\n" \
1192 "Allítsd be a teherszállítmány tömegét itt, a hasznos "
1193 "terhet pedig a szimulátorban.\n\n" \
1194 "Azt is ellenőrízheted, hogy a szimulátor milyen ZFW-t jelent.")
1195 self.add("payload_chelp",
1196 "Lent láthatók az eligazításban szereplő tömegek, valamint\n" \
1197 "a teherszállítmány általad megadott tömege.\n\n" \
1198 "Azt is ellenőrízheted, hogy a szimulátor milyen ZFW-t jelent.")
1199 self.add("payload_crew", "Legénység:")
1200 self.add("payload_pax", "Utasok:")
1201 self.add("payload_bag", "Poggyász:")
1202 self.add("payload_cargo", "_Teher:")
1203 self.add("payload_cargo_tooltip",
1204 "A teherszállítmány tömege.")
1205 self.add("payload_mail", "Posta:")
1206 self.add("payload_zfw", "Kiszámolt ZFW:")
1207 self.add("payload_fszfw", "_ZFW a szimulátorból:")
1208 self.add("payload_fszfw_tooltip",
1209 "Kattints ide, hogy frissítsd a ZFW értékét a szimulátorból.")
1210 self.add("payload_zfw_busy", "ZFW lekérdezése...")
1211
1212 self.add("time_title", "Menetrend")
1213 self.add("time_help",
1214 "Az indulás és az érkezés ideje lent látható UTC szerint.\n\n" \
1215 "A szimulátor aktuális UTC szerinti idejét is lekérdezheted.\n" \
1216 "Győzödj meg arról, hogy elég időd van a repülés előkészítéséhez.")
1217 self.add("time_chelp",
1218 "Az indulás és az érkezés ideje lent látható UTC szerint.\n\n" \
1219 "A szimulátor aktuális UTC szerinti idejét is lekérdezheted.")
1220 self.add("time_departure", "Indulás:")
1221 self.add("time_arrival", "Érkezés:")
1222 self.add("time_fs", "Idő a s_zimulátorból:")
1223 self.add("time_fs_tooltip",
1224 "Kattings ide, hogy frissítsd a szimulátor aktuális UTC szerint idejét.")
1225 self.add("time_busy", "Idő lekérdezése...")
1226
1227 self.add("fuel_title", "Üzemanyag")
1228 self.add("fuel_help",
1229 "Írd be az egyes tartályokba szükséges üzemanyag "
1230 "mennyiségét kilogrammban.\n\n"
1231 "Ha megnyomod az <b>Előre</b> gombot, a megadott mennyiségű\n"
1232 "üzemanyag bekerül a tartályokba.")
1233 self.add("fuel_chelp",
1234 "A repülés elején az egyes tartályokba tankolt\n"
1235 "üzemanyag mennyisége lent látható.")
1236
1237 # A B D E I G J K N O P S T V Y Z
1238
1239 self.add("fuel_tank_centre", "Kö_zépső\n")
1240 self.add("fuel_tank_left", "_Bal\n")
1241 self.add("fuel_tank_right", "J_obb\n")
1242 self.add("fuel_tank_left_aux", "Bal\nkie_gészítő")
1243 self.add("fuel_tank_right_aux", "Jobb\nkiegészí_tő")
1244 self.add("fuel_tank_left_tip", "B_al\nszárnyvég")
1245 self.add("fuel_tank_right_tip", "Jobb\nszárn_yvég")
1246 self.add("fuel_tank_external1", "Külső\n_1")
1247 self.add("fuel_tank_external2", "Külső\n_2")
1248 self.add("fuel_tank_centre2", "Közé_pső\n2")
1249 self.add("fuel_get_busy", "Az üzemanyag lekérdezése...")
1250 self.add("fuel_pump_busy", "Az üzemanyag pumpálása...")
1251 self.add("fuel_tank_tooltip",
1252 "Ez mutatja az üzemanyag szintjét a tartályban annak "
1253 "kapacitásához mérve. A "
1254 '<span color="turquoise">türkizkék</span> '
1255 "csúszka mutatja a repüléshez kívánt szintet. "
1256 "Ha a bal gombbal bárhová kattintasz az ábrán, a csúszka "
1257 "odaugrik. Ha a gombot lenyomva tartod, és az egérmutatót "
1258 "föl-le mozgatod, a csúszka követi azt. Az egered görgőjével "
1259 "is kezelheted a csúszkát. Alaphelyzetben az üzemanyag "
1260 "mennyisége 10-zel nő, illetve csökken a görgetés irányától "
1261 "függően. Ha a <b>Shift</b> billentyűt lenyomva tartod, "
1262 "növekmény 100, a <b>Control</b> billentyűvel pedig 1 lesz.")
1263
1264 self.add("route_title", "Útvonal")
1265 self.add("route_help",
1266 "Állítsd be az utazószintet lent, és ha szükséges,\n" \
1267 "módosítsd az útvonaltervet.")
1268 self.add("route_chelp",
1269 "Ha szükséges, lent módosíthatod az utazószintet és\n" \
1270 "az útvonaltervet repülés közben is.\n" \
1271 "Ha így teszel, légy szíves a megjegyzés mezőben " \
1272 "ismertesd ennek okát.")
1273 self.add("route_level", "_Utazószint:")
1274 self.add("route_level_tooltip", "Az utazószint.")
1275 self.add("route_route", "Út_vonal")
1276 self.add("route_route_tooltip", "Az útvonal a szokásos formátumban.")
1277 self.add("route_down_notams", "NOTAM-ok letöltése...")
1278 self.add("route_down_metars", "METAR-ok letöltése...")
1279
1280 self.add("briefing_title", "Eligazítás (%d/2): %s")
1281 self.add("briefing_departure", "indulás")
1282 self.add("briefing_arrival", "érkezés")
1283 self.add("briefing_help",
1284 "Olvasd el figyelmesen a lenti NOTAM-okat és METAR-t.\n\n" \
1285 "Ha a szimulátor vagy hálózat más időjárást ad,\n" \
1286 "a METAR-t módosíthatod.")
1287 self.add("briefing_chelp",
1288 "Ha a szimulátor vagy hálózat más időjárást ad,\n" \
1289 "a METAR-t módosíthatod.")
1290 self.add("briefing_notams_init", "LHBP NOTAM-ok")
1291 self.add("briefing_metar_init", "LHBP METAR")
1292 self.add("briefing_button",
1293 "Elolvastam az eligazítást, és készen állok a _repülésre!")
1294 self.add("briefing_notams_template", "%s NOTAM-ok")
1295 self.add("briefing_metar_template", "%s _METAR")
1296 self.add("briefing_notams_failed", "Nem tudtam letölteni a NOTAM-okat.")
1297 self.add("briefing_notams_missing",
1298 "Ehhez a repülőtérhez nem találtam NOTAM-ot.")
1299 self.add("briefing_metar_failed", "Nem tudtam letölteni a METAR-t.")
1300
1301 self.add("takeoff_title", "Felszállás")
1302 self.add("takeoff_help",
1303 "Írd be a felszállásra használt futópálya és SID nevét, valamint a sebességeket.")
1304 self.add("takeoff_chelp",
1305 "A naplózott futópálya, SID és a sebességek lent olvashatók.")
1306 self.add("takeoff_runway", "_Futópálya:")
1307 self.add("takeoff_runway_tooltip",
1308 "A felszállásra használt futópálya.")
1309 self.add("takeoff_sid", "_SID:")
1310 self.add("takeoff_sid_tooltip",
1311 "Az alkalmazott szabványos műszeres indulási eljárás neve.")
1312 self.add("takeoff_v1", "V<sub>_1</sub>:")
1313 self.add("takeoff_v1_tooltip", "Az elhatározási sebesség csomóban.")
1314 self.add("label_knots", "csomó")
1315 self.add("takeoff_vr", "V<sub>_R</sub>:")
1316 self.add("takeoff_vr_tooltip", "Az elemelkedési sebesség csomóban.")
1317 self.add("takeoff_v2", "V<sub>_2</sub>:")
1318 self.add("takeoff_v2_tooltip", "A biztonságos emelkedési sebesség csomóban.")
1319
1320 self.add("landing_title", "Leszállás")
1321 self.add("landing_help",
1322 "Írd be az alkalmazott STAR és/vagy bevezetési eljárás nevét,\n"
1323 "a használt futópályát, a megközelítés módját, és a V<sub>Ref</sub>-et.")
1324 self.add("landing_chelp",
1325 "Az alkalmazott STAR és/vagy bevezetési eljárás neve, a használt\n"
1326 "futópálya, a megközelítés módja és a V<sub>Ref</sub> lent olvasható.")
1327 self.add("landing_star", "_STAR:")
1328 self.add("landing_star_tooltip",
1329 "A követett szabványos érkezési eljárás neve.")
1330 self.add("landing_transition", "_Bevezetés:")
1331 self.add("landing_transition_tooltip",
1332 "Az alkalmazott bevezetési eljárás neve, vagy VECTORS, "
1333 "ha az irányítás vezetett be.")
1334 self.add("landing_runway", "_Futópálya:")
1335 self.add("landing_runway_tooltip",
1336 "A leszállásra használt futópálya.")
1337 self.add("landing_approach", "_Megközelítés típusa:")
1338 self.add("landing_approach_tooltip",
1339 "A megközelítgés típusa, pl. ILS vagy VISUAL.")
1340 self.add("landing_vref", "V<sub>_Ref</sub>:")
1341 self.add("landing_vref_tooltip",
1342 "A leszállási sebesség csomóban.")
1343
1344 self.add("flighttype_scheduled", "menetrendszerinti")
1345 self.add("flighttype_ot", "old-timer")
1346 self.add("flighttype_vip", "VIP")
1347 self.add("flighttype_charter", "charter")
1348
1349 self.add("finish_title", "Lezárás")
1350 self.add("finish_help",
1351 "Lent olvasható némi statisztika a járat teljesítéséről.\n\n" \
1352 "Ellenőrízd az adatokat, az előző oldalakon is, és ha\n" \
1353 "megfelelnek, elmentheted vagy elküldheted a PIREP-et.")
1354 self.add("finish_rating", "Pontszám:")
1355 self.add("finish_flight_time", "Repült idő:")
1356 self.add("finish_block_time", "Blokk idő:")
1357 self.add("finish_distance", "Repült táv:")
1358 self.add("finish_fuel", "Elhasznált üzemanyag:")
1359 self.add("finish_type", "_Típus:")
1360 self.add("finish_type_tooltip", "Válaszd ki a repülés típusát.")
1361 self.add("finish_online", "_Online repülés")
1362 self.add("finish_online_tooltip",
1363 "Jelöld be, ha a repülésed a hálózaton történt, egyébként " \
1364 "szűntesd meg a kijelölést.")
1365 self.add("finish_gate", "_Érkezési kapu:")
1366 self.add("finish_gate_tooltip",
1367 "Válaszd ki azt a kaput vagy állóhelyet, ahová érkeztél LHBP-n.")
1368 self.add("finish_newFlight", "_Új járat...")
1369 self.add("finish_newFlight_tooltip",
1370 "Kattints ide egy új járat teljesítésének elkezdéséhez.")
1371 self.add("finish_newFlight_question",
1372 "A PIREP-et még nem mentetted el és nem is küldted el. "
1373 "Biztosan új járatot szeretnél kezdeni?")
1374 self.add("finish_save", "PIREP _mentése...")
1375 self.add("finish_save_tooltip",
1376 "Kattints ide, hogy elmenthesd a PIREP-et egy fájlba a számítógépeden. " \
1377 "A PIREP-et később be lehet tölteni és el lehet küldeni.")
1378 self.add("finish_save_title", "PIREP mentése")
1379 self.add("finish_save_done", "A PIREP mentése sikerült")
1380 self.add("finish_save_failed", "A PIREP mentése nem sikerült")
1381 self.add("finish_save_failed_sec", "A részleteket lásd a debug naplóban.")
1382
1383 # M A
1384
1385 self.add("info_comments", "_Megjegyzések")
1386 self.add("info_defects", "Hib_ajelenségek")
1387 self.add("info_delay", "Késés kódok")
1388
1389 # B V H Y R G F E P Z
1390
1391 self.add("info_delay_loading", "_Betöltési problémák")
1392 self.add("info_delay_vatsim", "_VATSIM probléma")
1393 self.add("info_delay_net", "_Hálózati problémák")
1394 self.add("info_delay_atc", "Irán_yító hibája")
1395 self.add("info_delay_system", "_Rendszer elszállás/fagyás")
1396 self.add("info_delay_nav", "Navi_gációs probléma")
1397 self.add("info_delay_traffic", "_Forgalmi problémák")
1398 self.add("info_delay_apron", "_Előtér navigációs probléma")
1399 self.add("info_delay_weather", "Időjárási _problémák")
1400 self.add("info_delay_personal", "S_zemélyes okok")
1401
1402 self.add("statusbar_conn_tooltip",
1403 'A kapcsolat állapota.\n'
1404 '<span foreground="grey">Szürke</span>: nincs kapcsolat.\n'
1405 '<span foreground="red">Piros</span>: kapcsolódás folyamatban.\n'
1406 '<span foreground="green">Zöld</span>: a kapcsolat él.')
1407 self.add("statusbar_stage_tooltip", "A repülés fázisa")
1408 self.add("statusbar_time_tooltip", "A szimulátor ideje UTC-ben")
1409 self.add("statusbar_rating_tooltip", "A repülés pontszáma")
1410 self.add("statusbar_busy_tooltip", "A háttérfolyamatok állapota.")
1411
1412 self.add("flight_stage_boarding", u"beszállás")
1413 self.add("flight_stage_pushback and taxi", u"hátratolás és kigurulás")
1414 self.add("flight_stage_takeoff", u"felszállás")
1415 self.add("flight_stage_RTO", u"megszakított felszállás")
1416 self.add("flight_stage_climb", u"emelkedés")
1417 self.add("flight_stage_cruise", u"utazó")
1418 self.add("flight_stage_descent", u"süllyedés")
1419 self.add("flight_stage_landing", u"leszállás")
1420 self.add("flight_stage_taxi", u"begurulás")
1421 self.add("flight_stage_parking", u"parkolás")
1422 self.add("flight_stage_go-around", u"átstartolás")
1423 self.add("flight_stage_end", u"kész")
1424
1425 self.add("statusicon_showmain", "Mutasd a főablakot")
1426 self.add("statusicon_showmonitor", "Mutasd a monitor ablakot")
1427 self.add("statusicon_quit", "Kilépés")
1428 self.add("statusicon_stage", u"Fázis")
1429 self.add("statusicon_rating", u"Pontszám")
1430
1431 self.add("update_title", "Frissítés")
1432 self.add("update_needsudo",
1433 "Lenne mit frissíteni, de a program hozzáférési jogok\n"
1434 "hiányában nem tud írni a saját könyvtárába.\n\n"
1435 "Kattints az OK gombra, ha el szeretnél indítani egy\n"
1436 "segédprogramot adminisztrátori jogokkal, amely\n"
1437 "befejezné a frissítést, egyébként a Mégse gombra.")
1438 self.add("update_manifest_progress", "A manifesztum letöltése...")
1439 self.add("update_manifest_done", "A manifesztum letöltve...")
1440 self.add("update_files_progress", "Fájlok letöltése...")
1441 self.add("update_files_bytes", "%d bájtot töltöttem le %d bájtból")
1442 self.add("update_renaming", "A letöltött fájlok átnevezése...")
1443 self.add("update_renamed", "Átneveztem a(z) %s fájlt")
1444 self.add("update_removing", "Fájlok törlése...")
1445 self.add("update_removed", "Letöröltem a(z) %s fájlt")
1446 self.add("update_writing_manifest", "Az új manifesztum írása")
1447 self.add("update_finished",
1448 "A frissítés sikerült. Kattints az OK-ra a program újraindításához.")
1449 self.add("update_nothing", "Nem volt mit frissíteni")
1450 self.add("update_failed", "Nem sikerült, a részleteket lásd a debug naplóban.")
1451
1452 self.add("weighthelp_usinghelp", "_Használom a segítséget")
1453 self.add("weighthelp_usinghelp_tooltip",
1454 "Ha bejelölöd, az alábbiakban kapsz egy kis segítséget "
1455 "a járathoz szükséges hasznos teher megállapításához. "
1456 "Ha igénybe veszed ezt a szolgáltatást, ez a tény "
1457 "a naplóba bekerül.")
1458 self.add("weighthelp_header_calculated", "Elvárt/\nszámított")
1459 self.add("weighthelp_header_simulator", "Szimulátor\nadatok")
1460 self.add("weighthelp_header_simulator_tooltip",
1461 "Kattints erre a gombra a súlyadatoknak a szimulátortól "
1462 "való lekérdezéséhez. Az értékek lent jelennek meg. Ha "
1463 "egy érték a tűrés 10%-án belül van, akkor az "
1464 '<b><span foreground="darkgreen">zöld</span></b> '
1465 "színnel jelenik meg. Ha nem fér bele a tűrésbe, akkor "
1466 '<b><span foreground="red">piros</span></b>, '
1467 "egyébként "
1468 '<b><span foreground="orange">sárga</span></b> '
1469 "színben olvasható.")
1470 self.add("weighthelp_crew", "Legénység (%s):")
1471 self.add("weighthelp_pax", "Utasok (%s):")
1472 self.add("weighthelp_baggage", "Poggyász:")
1473 self.add("weighthelp_cargo", "Teher:")
1474 self.add("weighthelp_mail", "Posta:")
1475 self.add("weighthelp_payload", "Hasznos teher:")
1476 self.add("weighthelp_dow", "DOW:")
1477 self.add("weighthelp_zfw", "ZFW:")
1478 self.add("weighthelp_gross", "Teljes tömeg:")
1479 self.add("weighthelp_mzfw", "MZFW:")
1480 self.add("weighthelp_mtow", "MTOW:")
1481 self.add("weighthelp_mlw", "MLW:")
1482 self.add("weighthelp_busy", "A tömegadatok lekérdezése...")
1483
1484 self.add("gates_fleet_title", "_Flotta")
1485 self.add("gates_gates_title", "LHBP kapuk")
1486 self.add("gates_tailno", "Lajstromjel")
1487 self.add("gates_planestatus", "Állapot")
1488 self.add("gates_refresh", "_Adatok frissítése")
1489 self.add("gates_refresh_tooltip",
1490 "Kattints erre a gombra a fenti adatok frissítéséhez")
1491 self.add("gates_planes_tooltip",
1492 "Ez a táblázat tartalmazza a MAVA flottája összes "
1493 "repülőgépének lajstromjelét és utolsó ismert helyét. "
1494 "Ha egy repülőgép olyan kapun áll, amelyet másik gép is "
1495 "elfoglal, akkor annak a repülőgépnek az adatai "
1496 "<b><span foreground=\"red\">piros</span></b> "
1497 "színnel jelennek meg.")
1498 self.add("gates_gates_tooltip",
1499 "A MAVA repülőgépei által elfoglalt kapuk száma "
1500 '<b><span foreground="orange">sárga</span></b> színnel,'
1501 "a többié feketén jelenik meg.")
1502 self.add("gates_plane_away", "TÁVOL")
1503 self.add("gates_plane_parking", "PARKOL")
1504 self.add("gates_plane_unknown", "ISMERETLEN")
1505
1506 self.add("chklst_title", "Ellenőrzőlista szerkesztő")
1507 self.add("chklst_aircraftType", "Repülőgép _típusa:")
1508 self.add("chklst_aircraftType_tooltip",
1509 "Az a típus, amelyhez tartozó ellenőrzőlista "
1510 "szerkesztése történik.")
1511 self.add("chklst_add", "Listához hozzá_adás")
1512 self.add("chklst_add_tooltip",
1513 "A bal oldalt kiválasztott fájloknak a jobb "
1514 "oldali ellenőrzőlistához fűzése.")
1515 self.add("chklst_remove", "_Törlés")
1516 self.add("chklst_remove_tooltip",
1517 "A kijelölt fájl(ok) törlése az ellenőrzőlistából.")
1518 self.add("chklst_moveUp", "Mozgatás _felfelé")
1519 self.add("chklst_moveUp_tooltip",
1520 "Az ellenőrzőlistából kijelölt fájl(ok) eggyel feljebb mozgatása.")
1521 self.add("chklst_moveDown", "Mozgatás _lefelé")
1522 self.add("chklst_moveDown_tooltip",
1523 "Az ellenőrzőlistából kijelölt fájl(ok) eggyel lejjebb mozgatása.")
1524 self.add("chklst_filter_audio", "Audio fájlok")
1525 self.add("chklst_header", "Ellenőrzőlista fájljai")
1526
1527 self.add("prefs_title", "Beállítások")
1528 self.add("prefs_tab_general", "_Általános")
1529 self.add("prefs_tab_general_tooltip", "Általános beállítások")
1530 self.add("prefs_tab_messages", "_Üzenetek")
1531 self.add("prefs_tab_message_tooltip",
1532 "A szimulátorba és/vagy hangjelzés általi üzenetküldés be- "
1533 "és kikapcsolása")
1534 self.add("prefs_tab_sounds", "_Hangok")
1535 self.add("prefs_tab_sounds_tooltip",
1536 "A repülés különféle fázisai alatt lejátszandó hangokkal "
1537 "kapcsolatos beállítások.")
1538 self.add("prefs_tab_advanced", "H_aladó")
1539 self.add("prefs_tab_advanced_tooltip",
1540 "Haladó beállítások: óvatosan módosítsd őket!")
1541 self.add("prefs_language", "_Nyelv:")
1542 self.add("prefs_language_tooltip",
1543 "A program által használt nyelv")
1544 self.add("prefs_restart",
1545 "Újraindítás szükséges")
1546 self.add("prefs_language_restart_sec",
1547 "A program nyelvének megváltoztatása csak egy újraindítást "
1548 "követően jut érvényre.")
1549 self.add("prefs_lang_$system", "alapértelmezett")
1550 self.add("prefs_lang_en_GB", "angol")
1551 self.add("prefs_lang_hu_HU", "magyar")
1552 self.add("prefs_hideMinimizedWindow",
1553 "A főablak _eltüntetése minimalizáláskor")
1554 self.add("prefs_hideMinimizedWindow_tooltip",
1555 "Ha ezt kijelölöd, a főablak teljesen eltűnik, "
1556 "ha minimalizálod. A státuszikonra kattintással vagy annak "
1557 "menüje segítségével újra meg tudod jeleníteni.")
1558 self.add("prefs_onlineGateSystem",
1559 "Az Online _Gate System használata")
1560 self.add("prefs_onlineGateSystem_tooltip",
1561 "Ha ezt bejelölöd, a logger lekérdezi és frissíti az "
1562 "LHBP Online Gate System adatait.")
1563 self.add("prefs_onlineACARS",
1564 "Az Online ACA_RS rendszer használata")
1565 self.add("prefs_onlineACARS_tooltip",
1566 "Ha ezt bejölöd, a logger folyamatosan közli a repülésed "
1567 "adatait a MAVA Online ACARS rendszerrel.")
1568 self.add("prefs_flaretimeFromFS",
1569 "A ki_lebegtetés idejét vedd a szimulátorból")
1570 self.add("prefs_flaretimeFromFS_tooltip",
1571 "Ha ezt bejelölöd, a kilebegtetés idejét a szimulátor "
1572 "által visszaadott időbélyegek alapján számolja a program.")
1573 self.add("prefs_syncFSTime",
1574 "_Szinkronizáld a szimulátor idéjét a számítógépével")
1575 self.add("prefs_syncFSTime_tooltip",
1576 "Ha ez bejelölöd, a szimulátor belső óráját a program "
1577 "szinkronban tartja a számítógép órájával.")
1578 self.add("prefs_usingFS2Crew",
1579 "Használom az FS_2Crew kiegészítőt")
1580 self.add("prefs_usingFS2Crew_tooltip",
1581 "Ha ezt bejelölöd, a program figyelembe veszi, "
1582 "hogy az FS2Crew kiegészítőt használod.")
1583 self.add("prefs_iasSmoothingEnabled",
1584 "Az _IAS átlagolása ")
1585 self.add("prefs_iasSmoothingEnabledTooltip",
1586 "Ha bekapcsolod, az IAS értékét a program a jelzett "
1587 "időtartamig átlagolja, és az egyes ellenőrzéseknél "
1588 "ezt az átlagértéket hasznája.")
1589 self.add("prefs_vsSmoothingEnabled",
1590 "A _vario átlagolása ")
1591 self.add("prefs_vsSmoothingEnabledTooltip",
1592 "Ha bekapcsolod, a vario értékét a program a jelzett "
1593 "időtartamig átlagolja, és az egyes ellenőrzéseknél "
1594 "ezt az átlagértéket hasznája.")
1595 self.add("prefs_smoothing_seconds", "másodpercig.")
1596 self.add("prefs_pirepDirectory",
1597 "_PIREP-ek könyvtára:")
1598 self.add("prefs_pirepDirectory_tooltip",
1599 "Az itt megadott könyvtárt ajánlja majd fel a program "
1600 "a PIREP-ek mentésekor.")
1601 self.add("prefs_pirepDirectory_browser_title",
1602 "Válaszd ki a PIREP-ek könyvtárát")
1603 self.add("prefs_frame_gui", "Grafikus felület")
1604 self.add("prefs_frame_online", "MAVA online rendszerek")
1605 self.add("prefs_frame_simulator", "Szimulátor")
1606
1607 self.add("prefs_sounds_frame_bg", "Háttérhangok")
1608 self.add("prefs_sounds_enable",
1609 "Háttérhangok _engedélyezése")
1610 self.add("prefs_sounds_enable_tooltip",
1611 "Ha a háttérhangokat engedélyezed, a logger a repülés "
1612 "egyes fázisai alatt különféle hangállományokat játszik le.")
1613 self.add("prefs_sounds_pilotControls",
1614 "_Pilóta vezérli a hangokat")
1615 self.add("prefs_sounds_pilotControls_tooltip",
1616 "Ha azt kijelölöd, a legtöbb háttérhang csak akkor hallható, "
1617 "ha a pilóta a lent megadott gyorsbillentyűt leüti. Egyébként "
1618 "a hangok maguktól, bizonyos feltételek teljesülése esetén "
1619 "szólalnak meg.")
1620 self.add("prefs_sounds_pilotHotkey",
1621 "_Gyorsbillentyű:")
1622 self.add("prefs_sounds_pilotHotkey_tooltip",
1623 "A billentyű, amit az esetlegesen megadott módosítókkal "
1624 "együtt le kell ütni, hogy a repülés aktuális fázisához "
1625 "tartozó hang megszólaljon.")
1626 self.add("prefs_sounds_pilotHotkeyCtrl_tooltip",
1627 "Ha kijelölöd, a Ctrl billentyűt is le kell nyomni a "
1628 "főbillentyűvel együtt.")
1629 self.add("prefs_sounds_pilotHotkeyShift_tooltip",
1630 "Ha kijelölöd, a Shift billentyűt is le kell nyomni a "
1631 "főbillentyűvel együtt.")
1632 self.add("prefs_sounds_approachCallOuts",
1633 "Megközelítési figyelmeztetések engedélyezés")
1634 self.add("prefs_sounds_approachCallOuts_tooltip",
1635 "Ha kijelölöd, megközelítés közben egyes magasságokat "
1636 "bemond a program.")
1637 self.add("prefs_sounds_speedbrakeAtTD",
1638 "_Spoiler hang bekapcsolása leszálláskor")
1639 self.add("prefs_sounds_speedbrakeAtTD_tooltip",
1640 "Ha kijelölöd, egy, a spoilerek kibocsájtását imitáló "
1641 "hang hallatszik földetérés után, ha a spoilerek "
1642 "automatikusan kinyílnak.")
1643 self.add("prefs_sounds_frame_checklists", "Ellenőrzőlisták")
1644 self.add("prefs_sounds_enableChecklists",
1645 "_Repülőgép-specifikus ellenőrzőlisták engedélyezése")
1646 self.add("prefs_sounds_enableChecklists_tooltip",
1647 "Ha kijelölöd, a program a lenti gyorsbillentyű "
1648 "megnyomásokor a használt repülőgép típushoz tartozó "
1649 "ellenőrzőlista következő elemét játssza le.")
1650 self.add("prefs_sounds_checklistHotkey",
1651 "E_llenörzőlista gyorsbillentyű:")
1652 self.add("prefs_sounds_checklistHotkey_tooltip",
1653 "A billentyű, amit az esetlegesen megadott módosítókkal "
1654 "együtt le kell ütni, hogy az ellenőrzőlista következő "
1655 "eleme elhangozzék.")
1656 self.add("prefs_sounds_checklistHotkeyCtrl_tooltip",
1657 "Ha kijelölöd, a Ctrl billentyűt is le kell nyomni a "
1658 "főbillentyűvel együtt.")
1659 self.add("prefs_sounds_checklistHotkeyShift_tooltip",
1660 "Ha kijelölöd, a Shift billentyűt is le kell nyomni a "
1661 "főbillentyűvel együtt.")
1662
1663 self.add("prefs_update_auto",
1664 "Frissítsd a programot _automatikusan")
1665 self.add("prefs_update_auto_tooltip",
1666 "Ha ez be van jelölve, a program induláskor frissítést "
1667 "keres, és ha talál, azokat letölti és telepíti. Ez "
1668 "biztosítja, hogy az elküldött PIREP minden megfelel "
1669 "a legújabb elvárásoknak.")
1670 self.add("prefs_update_auto_warning",
1671 "Az automatikus frissítés kikapcsolása azt okozhatja, "
1672 "hogy a program Nálad lévő verziója elavulttá válik, "
1673 "és a PIREP-jeidet így nem fogadják el.")
1674 self.add("prefs_update_url", "Frissítés _URL-je:")
1675 self.add("prefs_update_url_tooltip",
1676 "Az URL, ahol a frissítéseket keresi a program. Csak akkor "
1677 "változtasd meg, ha biztos vagy a dolgodban!")
1678
1679 # A Á H M O Ü
1680
1681 self.add("prefs_msgs_fs", "Szimulátorban\nmegjelenítés")
1682 self.add("prefs_msgs_sound", "Hangjelzés")
1683 self.add("prefs_msgs_type_loggerError", "_Logger hibaüzenetek")
1684 self.add("prefs_msgs_type_information",
1685 "_Információs üzenetek\n(pl. a repülés fázisa)")
1686 self.add("prefs_msgs_type_fault",
1687 "Hi_baüzenetek\n(pl. a villogó fény hiba)")
1688 self.add("prefs_msgs_type_nogo",
1689 "_NO GO hibaüzenetek\n(pl. MTOW NO GO)")
1690 self.add("prefs_msgs_type_gateSystem",
1691 "_Kapukezelő rendszer üzenetei\n(pl. a szabad kapuk listája)")
1692 self.add("prefs_msgs_type_environment",
1693 "Kö_rnyezeti üzenetek\n(pl. \"welcome to XY aiport\")")
1694 self.add("prefs_msgs_type_help",
1695 "_Segítő üzenetek\n(pl. \"don't forget to set VREF\")")
1696 self.add("prefs_msgs_type_visibility",
1697 "Lá_tótávolság üzenetek")
1698
1699 self.add("loadPIREP_browser_title", "Válaszd ki a betöltendő PIREP-et")
1700 self.add("loadPIREP_failed", "Nem tudtam betölteni a PIREP-et")
1701 self.add("loadPIREP_failed_sec",
1702 "A részleteket lásd a debug naplóban.")
1703 self.add("loadPIREP_send_title", "PIREP")
1704 self.add("loadPIREP_send_help",
1705 "A betöltött PIREP főbb adatai:")
1706 self.add("loadPIREP_send_flightno", "Járatszám:")
1707 self.add("loadPIREP_send_date", "Dátum:")
1708 self.add("loadPIREP_send_from", "Honnan:")
1709 self.add("loadPIREP_send_to", "Hová:")
1710 self.add("loadPIREP_send_rating", "Pontszám:")
1711
1712 self.add("sendPIREP", "PIREP _elküldése...")
1713 self.add("sendPIREP_tooltip",
1714 "Kattints ide, hogy elküldd a PIREP-et a MAVA szerverére javításra.")
1715 self.add("sendPIREP_busy", "PIREP küldése...")
1716 self.add("sendPIREP_success",
1717 "A PIREP elküldése sikeres volt.")
1718 self.add("sendPIREP_success_sec",
1719 "Várhatod félelmet nem ismerő PIREP javítóink alapos észrevételeit! :)")
1720 self.add("sendPIREP_already",
1721 "Ehhez a járathoz már küldtél be PIREP-et!")
1722 self.add("sendPIREP_already_sec",
1723 "A korábban beküldött PIREP-et törölheted a MAVA honlapján.")
1724 self.add("sendPIREP_notavail",
1725 "Ez a járat már nem elérhető!")
1726 self.add("sendPIREP_unknown",
1727 "A MAVA szervere ismeretlen hibaüzenettel tért vissza.")
1728 self.add("sendPIREP_unknown_sec",
1729 "A debug naplóban részletesebb információt találsz.")
1730 self.add("sendPIREP_failed",
1731 "Nem tudtam elküldeni a PIREP-et a MAVA szerverére.")
1732 self.add("sendPIREP_failed_sec",
1733 "Lehet, hogy hálózati probléma áll fenn, amely esetben később\n" \
1734 "újra próbálkozhatsz. Lehet azonban hiba is a loggerben:\n" \
1735 "részletesebb információt találhatsz a debug naplóban.")
1736
1737 self.add("viewPIREP", "PIREP meg_tekintése...")
1738
1739 self.add("pirepView_title", "PIREP megtekintése")
1740
1741 self.add("pirepView_tab_data", "_Adatok")
1742 self.add("pirepView_tab_data_tooltip",
1743 "A járat és a repülés főbb adatai.")
1744
1745 self.add("pirepView_frame_flight", "Járat")
1746 self.add("pirepView_callsign", "Hívójel:")
1747 self.add("pirepView_tailNumber", "Lajstromjel:")
1748 self.add("pirepView_aircraftType", "Repülőgép:")
1749 self.add("pirepView_departure", "Indulási repülőtér:")
1750 self.add("pirepView_departure_time", "idő:")
1751 self.add("pirepView_arrival", "Érkezési repülőtér:")
1752 self.add("pirepView_arrival_time", "idő:")
1753 self.add("pirepView_numPassengers", "Utasok:")
1754 self.add("pirepView_numCrew", "Legénység:")
1755 self.add("pirepView_bagWeight", "Poggyász:")
1756 self.add("pirepView_cargoWeight", "Teher:")
1757 self.add("pirepView_mailWeight", "Posta:")
1758 self.add("pirepView_route", "MAVA útvonal:")
1759
1760 self.add("pirepView_frame_route", "Beadott útvonal")
1761 self.add("pirepView_filedCruiseLevel", "Repülési szint:")
1762 self.add("pirepView_modifiedCruiseLevel", "módosítva:")
1763
1764 self.add("pirepView_frame_departure", "Indulás")
1765 self.add("pirepView_runway", "Futópálya:")
1766 self.add("pirepView_sid", "SID:")
1767
1768 self.add("pirepView_frame_arrival", "Érkezés")
1769 self.add("pirepView_star", "STAR:")
1770 self.add("pirepView_transition", "Bevezetés:")
1771 self.add("pirepView_approachType", "Megközelítés:")
1772
1773 self.add("pirepView_frame_statistics", "Statisztika")
1774 self.add("pirepView_blockTimeStart", "Blokk idő kezdete:")
1775 self.add("pirepView_blockTimeEnd", "vége:")
1776 self.add("pirepView_flightTimeStart", "Repült idő kezdete:")
1777 self.add("pirepView_flightTimeEnd", "vége:")
1778 self.add("pirepView_flownDistance", "Repült táv:")
1779 self.add("pirepView_fuelUsed", "Üzemanyag:")
1780 self.add("pirepView_rating", "Pontszám:")
1781
1782 self.add("pirepView_frame_miscellaneous", "Egyéb")
1783 self.add("pirepView_flightType", "Típus:")
1784 self.add("pirepView_online", "Online:")
1785 self.add("pirepView_yes", "igen")
1786 self.add("pirepView_no", "nem")
1787 self.add("pirepView_delayCodes", "Késés kódok:")
1788
1789 self.add("pirepView_tab_comments", "_Megjegyzések és hibák")
1790 self.add("pirepView_tab_comments_tooltip",
1791 "Megjegyzések, és a repülés során előfordult hibajelenségek")
1792
1793 self.add("pirepView_comments", "Megjegyzések")
1794 self.add("pirepView_flightDefects", "Hibajelenségek")
1795
1796 self.add("pirepView_tab_log", "_Napló")
1797 self.add("pirepView_tab_log_tooltip", "A repülési napló.")
1798
1799 self.add("about_license",
1800 "A program köztulajdonban van.")
1801
1802 self.add("about_role_prog_test", "programozás, tesztelés")
1803 self.add("about_role_negotiation", "tárgyalások")
1804 self.add("about_role_test", "tesztelés")
1805
1806#------------------------------------------------------------------------------
1807
1808# The fallback language is English
1809_english = _English()
1810
1811# We also support Hungarian
1812_hungarian = _Hungarian()
1813
1814#------------------------------------------------------------------------------
1815
1816if __name__ == "__main__":
1817 _hungarian.initialize()
1818 for key in _english:
1819 if _hungarian[key] is None:
1820 print key
1821
1822#------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.