source: src/mlx/i18n.py@ 144:3c7d3b02a0be

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

Further enhanced the fuel widget.

File size: 60.0 KB
Line 
1# Internationalization support
2# -*- coding: utf-8 -*-
3
4#------------------------------------------------------------------------------
5
6_strings = None
7_fallback = None
8
9#------------------------------------------------------------------------------
10
11def setLanguage(language):
12 """Setup the internationalization support for the given language."""
13 print "i18n.setLanguage", language
14 _Strings.set(language)
15
16#------------------------------------------------------------------------------
17
18def xstr(key):
19 """Get the string for the given key in the current language.
20
21 If not found, the fallback language is searched. If that is not found
22 either, the key itself is returned within curly braces."""
23 s = _Strings.current()[key]
24 if s is None:
25 s = _Strings.fallback()[key]
26 return "{" + key + "}" if s is None else s
27
28#------------------------------------------------------------------------------
29
30class _Strings(object):
31 """A collection of strings belonging to a certain language."""
32 # The registry of the string collections. This is a mapping from
33 # language codes to the actual collection objects
34 _instances = {}
35
36 # The fallback instance
37 _fallback = None
38
39 # The currently used instance.
40 _current = None
41
42 @staticmethod
43 def _find(language):
44 """Find an instance for the given language.
45
46 First the language is searched for as is. If not found, it is truncated
47 from the end until the last underscore and that is searched for. And so
48 on, until no underscore remains.
49
50 If nothing is found this way, the
51 """
52 while language:
53 if language in _Strings._instances:
54 return _Strings._instances[language]
55 underscoreIndex = language.rfind("_")
56 language = language[:underscoreIndex] if underscoreIndex>0 else ""
57 return _Strings._fallback
58
59 @staticmethod
60 def set(language):
61 """Set the string for the given language.
62
63 A String instance is searched for the given language (see
64 _Strings._find()). Otherwise the fallback language is used."""
65 strings = _Strings._find(language)
66 assert strings is not None
67 if _Strings._current is not None and \
68 _Strings._current is not _Strings._fallback:
69 _Strings._current.finalize()
70 if strings is not _Strings._fallback:
71 strings.initialize()
72 _Strings._current = strings
73
74 @staticmethod
75 def fallback():
76 """Get the fallback."""
77 return _Strings._fallback
78
79 @staticmethod
80 def current():
81 """Get the current."""
82 return _Strings._current
83
84 def __init__(self, languages, fallback = False):
85 """Construct an empty strings object."""
86 self._strings = {}
87 for language in languages:
88 _Strings._instances[language] = self
89 if fallback:
90 _Strings._fallback = self
91 self.initialize()
92
93 def initialize(self):
94 """Initialize the strings.
95
96 This should be overridden in children to setup the strings."""
97 pass
98
99 def finalize(self):
100 """Finalize the object.
101
102 This releases the string dictionary to free space."""
103 self._strings = {}
104
105 def add(self, id, s):
106 """Add the given text as the string with the given ID.
107
108 If the ID is already in the object, that is an assertion failure!"""
109 assert id not in self._strings
110 self._strings[id] = s
111
112 def __getitem__(self, key):
113 """Get the string with the given key."""
114 return self._strings[key] if key in self._strings else None
115
116#------------------------------------------------------------------------------
117
118class _English(_Strings):
119 """The strings for the English language."""
120 def __init__(self):
121 """Construct the object."""
122 super(_English, self).__init__(["en_GB", "en"], fallback = True)
123
124 def initialize(self):
125 """Initialize the strings."""
126 self.add("button_ok", "_OK")
127 self.add("button_cancel", "_Cancel")
128 self.add("button_yes", "_Yes")
129 self.add("button_no", "_No")
130
131 self.add("menu_file", "File")
132 self.add("menu_file_quit", "_Quit")
133 self.add("menu_file_quit_key", "q")
134 self.add("quit_question", "Are you sure to quit the logger?")
135
136 self.add("menu_tools", "Tools")
137 self.add("menu_tools_prefs", "_Preferences")
138 self.add("menu_tools_prefs_key", "p")
139
140 self.add("menu_view", "View")
141 self.add("menu_view_monitor", "Show _monitor window")
142 self.add("menu_view_monitor_key", "m")
143 self.add("menu_view_debug", "Show _debug log")
144 self.add("menu_view_debug_key", "d")
145
146 self.add("tab_flight", "_Flight")
147 self.add("tab_flight_tooltip", "Flight wizard")
148 self.add("tab_flight_info", "Flight _info")
149 self.add("tab_flight_info_tooltip", "Further information regarding the flight")
150 self.add("tab_weight_help", "_Help")
151 self.add("tab_weight_help_tooltip", "Help to calculate the weights")
152 self.add("tab_log", "_Log")
153 self.add("tab_log_tooltip",
154 "The log of your flight that will be sent to the MAVA website")
155 self.add("tab_gates", "_Gates")
156 self.add("tab_gates_tooltip", "The status of the MAVA fleet and the gates at LHBP")
157 self.add("tab_debug_log", "_Debug log")
158 self.add("tab_debug_log_tooltip", "Log with debugging information.")
159
160 self.add("conn_failed", "Cannot connect to the simulator.")
161 self.add("conn_failed_sec",
162 "Rectify the situation, and press <b>Try again</b> "
163 "to try the connection again, "
164 "or <b>Cancel</b> to cancel the flight.")
165 self.add("conn_broken",
166 "The connection to the simulator failed unexpectedly.")
167 self.add("conn_broken_sec",
168 "If the simulator has crashed, restart it "
169 "and restore your flight as much as possible "
170 "to the state it was in before the crash. "
171 "Then press <b>Reconnect</b> to reconnect.\n\n"
172 "If you want to cancel the flight, press <b>Cancel</b>.")
173 self.add("button_tryagain", "_Try again")
174 self.add("button_reconnect", "_Reconnect")
175
176 self.add("login", "Login")
177 self.add("loginHelp",
178 "Enter your MAVA pilot's ID and password to\n" \
179 "log in to the MAVA website and download\n" \
180 "your booked flights.")
181 self.add("label_pilotID", "Pil_ot ID:")
182 self.add("login_pilotID_tooltip",
183 "Enter your MAVA pilot's ID. This usually starts with a "
184 "'P' followed by 3 digits.")
185 self.add("label_password", "_Password:")
186 self.add("login_password_tooltip",
187 "Enter the password for your pilot's ID")
188 self.add("remember_password", "_Remember password")
189 self.add("login_remember_tooltip",
190 "If checked, your password will be stored, so that you should "
191 "not have to enter it every time. Note, however, that the password "
192 "is stored as text, and anybody who can access your files will "
193 "be able to read it.")
194 self.add("button_login", "Logi_n")
195 self.add("login_button_tooltip", "Click to log in.")
196 self.add("login_busy", "Logging in...")
197 self.add("login_invalid", "Invalid pilot's ID or password.")
198 self.add("login_invalid_sec",
199 "Check the ID and try to reenter the password.")
200 self.add("login_failconn",
201 "Failed to connect to the MAVA website.")
202 self.add("login_failconn_sec", "Try again in a few minutes.")
203
204 self.add("button_next", "_Next")
205 self.add("button_next_tooltip", "Click to go to the next page.")
206 self.add("button_previous", "_Previous")
207 self.add("button_previous_tooltip", "Click to go to the previous page.")
208
209 self.add("flightsel_title", "Flight selection")
210 self.add("flightsel_help", "Select the flight you want to perform.")
211 self.add("flightsel_chelp", "You have selected the flight highlighted below.")
212 self.add("flightsel_no", "Flight no.")
213 self.add("flightsel_deptime", "Departure time [UTC]")
214 self.add("flightsel_from", "From")
215 self.add("flightsel_to", "To")
216
217 self.add("fleet_busy", "Retrieving fleet...")
218 self.add("fleet_failed",
219 "Failed to retrieve the information on the fleet.")
220 self.add("fleet_update_busy", "Updating plane status...")
221 self.add("fleet_update_failed",
222 "Failed to update the status of the airplane.")
223
224 self.add("gatesel_title", "LHBP gate selection")
225 self.add("gatesel_help",
226 "The airplane's gate position is invalid.\n\n" \
227 "Select the gate from which you\n" \
228 "would like to begin the flight.")
229 self.add("gatesel_conflict", "Gate conflict detected again.")
230 self.add("gatesel_conflict_sec",
231 "Try to select a different gate.")
232
233 self.add("connect_title", "Connect to the simulator")
234 self.add("connect_help",
235 "Load the aircraft below into the simulator and park it\n" \
236 "at the given airport, at the gate below, if present.\n\n" \
237 "Then press the Connect button to connect to the simulator.")
238 self.add("connect_chelp",
239 "The basic data of your flight can be read below.")
240 self.add("connect_flightno", "Flight number:")
241 self.add("connect_acft", "Aircraft:")
242 self.add("connect_tailno", "Tail number:")
243 self.add("connect_airport", "Airport:")
244 self.add("connect_gate", "Gate:")
245 self.add("button_connect", "_Connect")
246 self.add("button_connect_tooltip", "Click to connect to the simulator.")
247 self.add("connect_busy", "Connecting to the simulator...")
248
249 self.add("payload_title", "Payload")
250 self.add("payload_help",
251 "The briefing contains the weights below.\n" \
252 "Setup the cargo weight here and the payload weight "
253 "in the simulator.\n\n" \
254 "You can also check here what the simulator reports as ZFW.")
255 self.add("payload_chelp",
256 "You can see the weights in the briefing\n" \
257 "and the cargo weight you have selected below.\n\n" \
258 "You can also query the ZFW reported by the simulator.")
259 self.add("payload_crew", "Crew:")
260 self.add("payload_pax", "Passengers:")
261 self.add("payload_bag", "Baggage:")
262 self.add("payload_cargo", "_Cargo:")
263 self.add("payload_cargo_tooltip",
264 "The weight of the cargo for your flight.")
265 self.add("payload_mail", "Mail:")
266 self.add("payload_zfw", "Calculated ZFW:")
267 self.add("payload_fszfw", "_ZFW from FS:")
268 self.add("payload_fszfw_tooltip",
269 "Click here to refresh the ZFW value from the simulator.")
270 self.add("payload_zfw_busy", "Querying ZFW...")
271
272 self.add("time_title", "Time")
273 self.add("time_help",
274 "The departure and arrival times are displayed below in UTC.\n\n" \
275 "You can also query the current UTC time from the simulator.\n" \
276 "Ensure that you have enough time to properly prepare for the flight.")
277 self.add("time_chelp",
278 "The departure and arrival times are displayed below in UTC.\n\n" \
279 "You can also query the current UTC time from the simulator.\n")
280 self.add("time_departure", "Departure:")
281 self.add("time_arrival", "Arrival:")
282 self.add("time_fs", "_Time from FS:")
283 self.add("time_fs_tooltip",
284 "Click here to query the current UTC time from the simulator.")
285 self.add("time_busy", "Querying time...")
286
287 self.add("fuel_title", "Fuel")
288 self.add("fuel_help",
289 "Enter the amount of fuel in kilograms that need to be "
290 "present in each tank below.\n\n"
291 "When you press <b>Next</b>, the necessary amount of fuel\n"
292 "will be pumped into or out of the tanks.")
293 self.add("fuel_chelp",
294 "The amount of fuel tanked into your aircraft at the\n"
295 "beginning of the flight can be seen below.")
296 self.add("fuel_tank_centre", "Centre\n")
297 self.add("fuel_tank_left", "Left\n")
298 self.add("fuel_tank_right", "Right\n")
299 self.add("fuel_tank_left_aux", "Left\nAux")
300 self.add("fuel_tank_right_aux", "Right\nAux")
301 self.add("fuel_tank_left_tip", "Left\nTip")
302 self.add("fuel_tank_right_tip", "Right\nTip")
303 self.add("fuel_tank_external1", "External\n1")
304 self.add("fuel_tank_external2", "External\n2")
305 self.add("fuel_tank_centre2", "Centre\n2")
306 self.add("fuel_get_busy", "Querying fuel information...")
307 self.add("fuel_pump_busy", "Pumping fuel...")
308 self.add("fuel_tank_tooltip",
309 "This part displays the current level of the fuel in the "
310 "compared to its capacity. The "
311 '<span color="turquoise">turquoise</span> '
312 "slider shows the level that should be loaded into the tank "
313 "for the flight. You can click anywhere in the widget to "
314 "move the slider there. Or you can grab it by holding down "
315 "the left button of your mouse, and move the pointer up or "
316 "down. The scroll wheel on your mouse also increments or "
317 "decrements the amount of fuel by 10. If you hold down "
318 "the <b>Shift</b> key while scrolling, the steps will be "
319 "100, or with the <b>Control</b> key, 1.")
320
321 self.add("route_title", "Route")
322 self.add("route_help",
323 "Set your cruise flight level below, and\n" \
324 "if necessary, edit the flight plan.")
325 self.add("route_chelp",
326 "If necessary, you can modify the cruise level and\n" \
327 "the flight plan below during flight.\n" \
328 "If so, please, add a comment on why " \
329 "the modification became necessary.")
330 self.add("route_level", "_Cruise level:")
331 self.add("route_level_tooltip",
332 "The cruise flight level. Click on the arrows to increment "
333 "or decrement by 10, or enter the number on the keyboard.")
334 self.add("route_route", "_Route")
335 self.add("route_route_tooltip",
336 "The planned flight route in the standard format.")
337 self.add("route_down_notams", "Downloading NOTAMs...")
338 self.add("route_down_metars", "Downloading METARs...")
339
340 self.add("briefing_title", "Briefing (%d/2): %s")
341 self.add("briefing_departure", "departure")
342 self.add("briefing_arrival", "arrival")
343 self.add("briefing_help",
344 "Read carefully the NOTAMs and METAR below.\n\n" \
345 "You can edit the METAR if your simulator or network\n" \
346 "provides different weather.")
347 self.add("briefing_chelp",
348 "If your simulator or network provides a different\n" \
349 "weather, you can edit the METAR below.")
350 self.add("briefing_notams_init", "LHBP NOTAMs")
351 self.add("briefing_metar_init", "LHBP METAR")
352 self.add("briefing_button",
353 "I have read the briefing and am _ready to fly!")
354 self.add("briefing_notams_template", "%s NOTAMs")
355 self.add("briefing_metar_template", "%s _METAR")
356 self.add("briefing_notams_failed", "Could not download NOTAMs")
357 self.add("briefing_notams_missing",
358 "Could not download NOTAM for this airport")
359 self.add("briefing_metar_failed", "Could not download METAR")
360
361 self.add("takeoff_title", "Takeoff")
362 self.add("takeoff_help",
363 "Enter the runway and SID used, as well as the speeds.")
364 self.add("takeoff_chelp",
365 "The runway, SID and takeoff speeds logged can be seen below.")
366 self.add("takeoff_runway", "Run_way:")
367 self.add("takeoff_runway_tooltip",
368 "The runway the takeoff is performed from.")
369 self.add("takeoff_sid", "_SID:")
370 self.add("takeoff_sid_tooltip",
371 "The name of the Standard Instrument Deparature procedure followed.")
372 self.add("takeoff_v1", "V<sub>_1</sub>:")
373 self.add("takeoff_v1_tooltip", "The takeoff decision speed in knots.")
374 self.add("label_knots", "knots")
375 self.add("takeoff_vr", "V<sub>_R</sub>:")
376 self.add("takeoff_vr_tooltip", "The takeoff rotation speed in knots.")
377 self.add("takeoff_v2", "V<sub>_2</sub>:")
378 self.add("takeoff_v2_tooltip", "The takeoff safety speed in knots.")
379
380 self.add("landing_title", "Landing")
381 self.add("landing_help",
382 "Enter the STAR and/or transition, runway,\n" \
383 "approach type and V<sub>Ref</sub> used.")
384 self.add("landing_chelp",
385 "The STAR and/or transition, runway, approach\n" \
386 "type and V<sub>Ref</sub> logged can be seen below.")
387 self.add("landing_star", "_STAR:")
388 self.add("landing_star_tooltip",
389 "The name of Standard Terminal Arrival Route followed.")
390 self.add("landing_transition", "_Transition:")
391 self.add("landing_transition_tooltip",
392 "The name of transition executed or VECTORS if vectored by ATC.")
393 self.add("landing_runway", "Run_way:")
394 self.add("landing_runway_tooltip",
395 "The runway the landing is performed on.")
396 self.add("landing_approach", "_Approach type:")
397 self.add("landing_approach_tooltip",
398 "The type of the approach, e.g. ILS or VISUAL.")
399 self.add("landing_vref", "V<sub>_Ref</sub>:")
400 self.add("landing_vref_tooltip",
401 "The landing reference speed in knots.")
402
403 self.add("flighttype_scheduled", "scheduled")
404 self.add("flighttype_ot", "old-timer")
405 self.add("flighttype_vip", "VIP")
406 self.add("flighttype_charter", "charter")
407
408 self.add("finish_title", "Finish")
409 self.add("finish_help",
410 "There are some statistics about your flight below.\n\n" \
411 "Review the data, also on earlier pages, and if you are\n" \
412 "satisfied, you can save or send your PIREP.")
413 self.add("finish_rating", "Flight rating:")
414 self.add("finish_flight_time", "Flight time:")
415 self.add("finish_block_time", "Block time:")
416 self.add("finish_distance", "Distance flown:")
417 self.add("finish_fuel", "Fuel used:")
418 self.add("finish_type", "_Type:")
419 self.add("finish_type_tooltip", "Select the type of the flight.")
420 self.add("finish_online", "_Online flight")
421 self.add("finish_online_tooltip",
422 "Check if your flight was online, uncheck otherwise.")
423 self.add("finish_gate", "_Arrival gate:")
424 self.add("finish_gate_tooltip",
425 "Select the gate or stand at which you have arrived to LHBP.")
426 self.add("finish_save", "S_ave PIREP...")
427 self.add("finish_save_tooltip",
428 "Click to save the PIREP into a file on your computer. " \
429 "The PIREP can be loaded and sent later.")
430 self.add("finish_send", "_Send PIREP...")
431 self.add("finish_send_tooltip",
432 "Click to send the PIREP to the MAVA website for further review.")
433 self.add("finish_send_busy", "Sending PIREP...")
434 self.add("finish_send_success",
435 "The PIREP was sent successfully.")
436 self.add("finish_send_success_sec",
437 "Await the thorough scrutiny by our fearless PIREP reviewers! :)")
438 self.add("finish_send_already",
439 "The PIREP for this flight has already been sent!")
440 self.add("finish_send_already_sec",
441 "You may clear the old PIREP on the MAVA website.")
442 self.add("finish_send_notavail",
443 "This flight is not available anymore!")
444 self.add("finish_send_unknown",
445 "The MAVA website returned with an unknown error.")
446 self.add("finish_send_unknown_sec",
447 "See the debug log for more information.")
448 self.add("finish_send_failed",
449 "Could not send the PIREP to the MAVA website.")
450 self.add("finish_send_failed_sec",
451 "This can be a network problem, in which case\n" \
452 "you may try again later. Or it can be a bug;\n" \
453 "see the debug log for more information.")
454
455 # C D
456
457 self.add("info_comments", "_Comments")
458 self.add("info_defects", "Flight _defects")
459 self.add("info_delay", "Delay codes")
460
461 # O V N E Y T R A W P
462
463 self.add("info_delay_loading", "L_oading problems")
464 self.add("info_delay_vatsim", "_VATSIM problem")
465 self.add("info_delay_net", "_Net problems")
466 self.add("info_delay_atc", "Controll_er's fault")
467 self.add("info_delay_system", "S_ystem crash/freeze")
468 self.add("info_delay_nav", "Naviga_tion problem")
469 self.add("info_delay_traffic", "T_raffic problems")
470 self.add("info_delay_apron", "_Apron navigation problem")
471 self.add("info_delay_weather", "_Weather problems")
472 self.add("info_delay_personal", "_Personal reasons")
473
474 self.add("statusbar_conn_tooltip",
475 'The state of the connection.\n'
476 '<span foreground="grey">Grey</span> means idle.\n'
477 '<span foreground="red">Red</span> means trying to connect.\n'
478 '<span foreground="green">Green</span> means connected.')
479 self.add("statusbar_stage_tooltip", "The flight stage")
480 self.add("statusbar_time_tooltip", "The simulator time in UTC")
481 self.add("statusbar_rating_tooltip", "The flight rating")
482 self.add("statusbar_busy_tooltip", "The status of the background tasks.")
483
484 self.add("flight_stage_boarding", "boarding")
485 self.add("flight_stage_pushback and taxi", "pushback and taxi")
486 self.add("flight_stage_takeoff", "takeoff")
487 self.add("flight_stage_RTO", "RTO")
488 self.add("flight_stage_climb", "climb")
489 self.add("flight_stage_cruise", "cruise")
490 self.add("flight_stage_descent", "descent")
491 self.add("flight_stage_landing", "landing")
492 self.add("flight_stage_taxi", "taxi")
493 self.add("flight_stage_parking", "parking")
494 self.add("flight_stage_go-around", "go-around")
495 self.add("flight_stage_end", "end")
496
497 self.add("statusicon_showmain", "Show main window")
498 self.add("statusicon_showmonitor", "Show monitor window")
499 self.add("statusicon_quit", "Quit")
500 self.add("statusicon_stage", "Stage")
501 self.add("statusicon_rating", "Rating")
502
503 self.add("update_title", "Update")
504 self.add("update_needsudo",
505 "There is an update available, but the program cannot write\n"
506 "its directory due to insufficient privileges.\n\n"
507 "Click OK, if you want to run a helper program\n"
508 "with administrator privileges "
509 "to complete the update,\n"
510 "Cancel otherwise.")
511 self.add("update_manifest_progress", "Downloading manifest...")
512 self.add("update_manifest_done", "Downloaded manifest...")
513 self.add("update_files_progress", "Downloading files...")
514 self.add("update_files_bytes", "Downloaded %d of %d bytes")
515 self.add("update_renaming", "Renaming downloaded files...")
516 self.add("update_renamed", "Renamed %s")
517 self.add("update_removing", "Removing files...")
518 self.add("update_removed", "Removed %s")
519 self.add("update_writing_manifest", "Writing the new manifest")
520 self.add("update_finished",
521 "Finished updating. Press OK to restart the program.")
522 self.add("update_nothing", "There was nothing to update")
523 self.add("update_failed", "Failed, see the debug log for details.")
524
525 self.add("weighthelp_usinghelp", "_Using help")
526 self.add("weighthelp_usinghelp_tooltip",
527 "If you check this, some help will be displayed on how "
528 "to calculate the payload weight for your flight. "
529 "Note, that the usage of this facility will be logged.")
530 self.add("weighthelp_header_calculated", "Requested/\ncalculated")
531 self.add("weighthelp_header_simulator", "Simulator\ndata")
532 self.add("weighthelp_header_simulator_tooltip",
533 "Click this button to retrieve the weight values from the "
534 "simulator, which will be displayed below. If a value is "
535 "within 10% of the tolerance, it is displayed in "
536 '<b><span foreground="darkgreen">green</span></b>, '
537 "if it is out of the tolerance, it is displayed in "
538 '<b><span foreground="red">red</span></b>, '
539 "otherwise in"
540 '<b><span foreground="orange">yellow</span></b>.')
541 self.add("weighthelp_crew", "Crew (%s):")
542 self.add("weighthelp_pax", "Passengers (%s):")
543 self.add("weighthelp_baggage", "Baggage:")
544 self.add("weighthelp_cargo", "Cargo:")
545 self.add("weighthelp_mail", "Mail:")
546 self.add("weighthelp_payload", "Payload:")
547 self.add("weighthelp_dow", "DOW:")
548 self.add("weighthelp_zfw", "ZFW:")
549 self.add("weighthelp_gross", "Gross weight:")
550 self.add("weighthelp_mzfw", "MZFW:")
551 self.add("weighthelp_mtow", "MTOW:")
552 self.add("weighthelp_mlw", "MLW:")
553 self.add("weighthelp_busy", "Querying weight data...")
554
555 self.add("gates_fleet_title", "Fl_eet")
556 self.add("gates_gates_title", "LHBP gates")
557 self.add("gates_tailno", "Tail nr.")
558 self.add("gates_planestatus", "Status")
559 self.add("gates_refresh", "_Refresh data")
560 self.add("gates_refresh_tooltip",
561 "Click this button to refresh the status data above")
562 self.add("gates_planes_tooltip",
563 "This table lists all the planes in the MAVA fleet and their "
564 "last known location. If a plane is conflicting with another "
565 "because of occupying the same gate its data is displayed in "
566 "<b><span foreground=\"red\">red</span></b>.")
567 self.add("gates_gates_tooltip",
568 "The numbers of the gates occupied by MAVA planes are "
569 "displayed in "
570 '<b><span foreground="orange">yellow</span></b>, '
571 "while available gates in black.")
572 self.add("gates_plane_away", "AWAY")
573 self.add("gates_plane_parking", "PARKING")
574 self.add("gates_plane_unknown", "UNKNOWN")
575
576 self.add("prefs_title", "Preferences")
577 self.add("prefs_tab_general", "_General")
578 self.add("prefs_tab_general_tooltip", "General preferences")
579 self.add("prefs_tab_messages", "_Messages")
580 self.add("prefs_tab_message_tooltip",
581 "Enable/disable message notifications in FS and/or by sound")
582 self.add("prefs_tab_advanced", "_Advanced")
583 self.add("prefs_tab_advanced_tooltip",
584 "Advanced preferences, edit with care!")
585 self.add("prefs_language", "_Language:")
586 self.add("prefs_language_tooltip",
587 "The language of the program")
588 self.add("prefs_restart",
589 "Restart needed")
590 self.add("prefs_language_restart_sec",
591 "If you change the language, the program should be restarted "
592 "so that the change has an effect.")
593 self.add("prefs_lang_$system", "system default")
594 self.add("prefs_lang_en_GB", "English")
595 self.add("prefs_lang_hu_HU", "Hungarian")
596 self.add("prefs_onlineGateSystem",
597 "_Use the Online Gate System")
598 self.add("prefs_onlineGateSystem_tooltip",
599 "If this is checked, the logger will query and update the "
600 "LHBP Online Gate System.")
601 self.add("prefs_onlineACARS",
602 "Use the Online ACA_RS System")
603 self.add("prefs_onlineACARS_tooltip",
604 "If this is checked, the logger will continuously update "
605 "the MAVA Online ACARS System with your flight's data.")
606 self.add("prefs_flaretimeFromFS",
607 "Take flare _time from the simulator")
608 self.add("prefs_flaretimeFromFS_tooltip",
609 "If this is checked, the time of the flare will be calculated "
610 "from timestamps returned by the simulator.")
611 self.add("prefs_update_auto", "Update the program auto_matically")
612 self.add("prefs_update_auto_tooltip",
613 "If checked the program will look for updates when "
614 "it is starting, and if new updates are found, they "
615 "will be downloaded and installed. This ensures that "
616 "the PIREP you send will always conform to the latest "
617 "expectations of the airline.")
618 self.add("prefs_update_auto_warning",
619 "Disabling automatic updates may result in "
620 "your version of the program becoming out of date "
621 "and your PIREPs not being accepted.")
622 self.add("prefs_update_url", "Update _URL:")
623 self.add("prefs_update_url_tooltip",
624 "The URL from which to download the updates. Change this "
625 "only if you know what you are doing!")
626
627 # A C G M O S
628
629 self.add("prefs_msgs_fs", "Displayed in FS")
630 self.add("prefs_msgs_sound", "Sound alert")
631 self.add("prefs_msgs_type_loggerError", "Logger _Error Messages")
632 self.add("prefs_msgs_type_information",
633 "_Information Messages\n(e.g. flight status)")
634 self.add("prefs_msgs_type_fault",
635 "_Fault Messages\n(e.g. strobe light fault)")
636 self.add("prefs_msgs_type_nogo",
637 "_NOGO Fault messages\n(e.g. MTOW NOGO)")
638 self.add("prefs_msgs_type_gateSystem",
639 "Ga_te System Messages\n(e.g. available gates)")
640 self.add("prefs_msgs_type_environment",
641 "Envi_ronment Messages\n(e.g. \"welcome to XY aiport\")")
642 self.add("prefs_msgs_type_help",
643 "_Help Messages\n(e.g. \"don't forget to set VREF\")")
644 self.add("prefs_msgs_type_visibility",
645 "_Visibility Messages")
646
647#------------------------------------------------------------------------------
648
649class _Hungarian(_Strings):
650 """The strings for the Hungarian language."""
651 def __init__(self):
652 """Construct the object."""
653 super(_Hungarian, self).__init__(["hu_HU", "hu"])
654
655 def initialize(self):
656 """Initialize the strings."""
657 self.add("button_ok", "_OK")
658 self.add("button_cancel", "_Mégse")
659 self.add("button_yes", "_Igen")
660 self.add("button_no", "_Nem")
661
662 self.add("menu_file", "Fájl")
663 self.add("menu_file_quit", "_Kilépés")
664 self.add("menu_file_quit_key", "k")
665 self.add("quit_question", "Biztosan ki akarsz lépni?")
666
667 self.add("menu_tools", "Eszközök")
668 self.add("menu_tools_prefs", "_Beállítások")
669 self.add("menu_tools_prefs_key", "b")
670
671 self.add("menu_view", "Nézet")
672 self.add("menu_view_monitor", "Mutasd a _monitor ablakot")
673 self.add("menu_view_monitor_key", "m")
674 self.add("menu_view_debug", "Mutasd a _debug naplót")
675 self.add("menu_view_debug_key", "d")
676
677 self.add("tab_flight", "_Járat")
678 self.add("tab_flight_tooltip", "Járat varázsló")
679 self.add("tab_flight_info", "Járat _info")
680 self.add("tab_flight_info_tooltip", "Egyéb információk a járat teljesítésével kapcsolatban")
681 self.add("tab_weight_help", "_Segítség")
682 self.add("tab_weight_help_tooltip", "Segítség a súlyszámításhoz")
683 self.add("tab_log", "_Napló")
684 self.add("tab_log_tooltip",
685 "A járat naplója, amit majd el lehet küldeni a MAVA szerverére")
686 self.add("tab_gates", "_Kapuk")
687 self.add("tab_gates_tooltip", "A MAVA flotta és LHBP kapuinak állapota")
688 self.add("tab_debug_log", "_Debug napló")
689 self.add("tab_debug_log_tooltip",
690 "Hibakereséshez használható információkat tartalmazó napló.")
691
692 self.add("conn_failed", "Nem tudtam kapcsolódni a szimulátorhoz.")
693 self.add("conn_failed_sec",
694 "Korrigáld a problémát, majd nyomd meg az "
695 "<b>Próbáld újra</b> gombot a újrakapcsolódáshoz, "
696 "vagy a <b>Mégse</b> gombot a járat megszakításához.")
697 self.add("conn_broken",
698 "A szimulátorral való kapcsolat váratlanul megszakadt.")
699 self.add("conn_broken_sec",
700 "Ha a szimulátor elszállt, indítsd újra "
701 "és állítsd vissza a repülésed elszállás előtti "
702 "állapotát amennyire csak lehet. "
703 "Ezután nyomd meg az <b>Újrakapcsolódás</b> gombot "
704 "a kapcsolat ismételt felvételéhez.\n\n"
705 "Ha meg akarod szakítani a repülést, nyomd meg a "
706 "<b>Mégse</b> gombot.")
707 self.add("button_tryagain", "_Próbáld újra")
708 self.add("button_reconnect", "Újra_kapcsolódás")
709
710 self.add("login", "Bejelentkezés")
711 self.add("loginHelp",
712 "Írd be a MAVA pilóta azonosítódat és a\n" \
713 "bejelentkezéshez használt jelszavadat,\n" \
714 "hogy választhass a foglalt járataid közül.")
715 self.add("label_pilotID", "_Azonosító:")
716 self.add("login_pilotID_tooltip",
717 "Írd be a MAVA pilóta azonosítódat. Ez általában egy 'P' "
718 "betűvel kezdődik, melyet 3 számjegy követ.")
719 self.add("label_password", "Je_lszó:")
720 self.add("login_password_tooltip",
721 "Írd be a pilóta azonosítódhoz tartozó jelszavadat.")
722 self.add("remember_password", "_Emlékezz a jelszóra")
723 self.add("login_remember_tooltip",
724 "Ha ezt kiválasztod, a jelszavadat eltárolja a program, így "
725 "nem kell mindig újból beírnod. Vedd azonban figyelembe, "
726 "hogy a jelszót szövegként tároljuk, így bárki elolvashatja, "
727 "aki hozzáfér a fájljaidhoz.")
728 self.add("button_login", "_Bejelentkezés")
729 self.add("login_button_tooltip", "Kattints ide a bejelentkezéshez.")
730 self.add("login_busy", "Bejelentkezés...")
731 self.add("login_invalid", "Érvénytelen azonosító vagy jelszó.")
732 self.add("login_invalid_sec",
733 "Ellenőrízd az azonosítót, és próbáld meg újra beírni a jelszót.")
734 self.add("login_failconn",
735 "Nem sikerült kapcsolódni a MAVA honlaphoz.")
736 self.add("login_failconn_sec", "Próbáld meg pár perc múlva.")
737
738 self.add("button_next", "_Előre")
739 self.add("button_next_tooltip",
740 "Kattints ide, hogy a következő lapra ugorj.")
741 self.add("button_previous", "_Vissza")
742 self.add("button_previous_tooltip",
743 "Kattints ide, hogy az előző lapra ugorj.")
744
745 self.add("flightsel_title", "Járatválasztás")
746 self.add("flightsel_help", "Válaszd ki a járatot, amelyet le szeretnél repülni.")
747 self.add("flightsel_chelp", "A lent kiemelt járatot választottad.")
748 self.add("flightsel_no", "Járatszám")
749 self.add("flightsel_deptime", "Indulás ideje [UTC]")
750 self.add("flightsel_from", "Honnan")
751 self.add("flightsel_to", "Hová")
752
753 self.add("fleet_busy", "Flottaadatok letöltése...")
754 self.add("fleet_failed",
755 "Nem sikerült letöltenem a flotta adatait.")
756 self.add("fleet_update_busy", "Repülőgép pozíció frissítése...")
757 self.add("fleet_update_failed",
758 "Nem sikerült frissítenem a repülőgép pozícióját.")
759
760 self.add("gatesel_title", "LHBP kapuválasztás")
761 self.add("gatesel_help",
762 "A repülőgép kapu pozíciója érvénytelen.\n\n" \
763 "Válaszd ki azt a kaput, ahonnan\n" \
764 "el szeretnéd kezdeni a járatot.")
765 self.add("gatesel_conflict", "Ismét kapuütközés történt.")
766 self.add("gatesel_conflict_sec",
767 "Próbálj egy másik kaput választani.")
768
769 self.add("connect_title", "Kapcsolódás a szimulátorhoz")
770 self.add("connect_help",
771 "Tölsd be a lent látható repülőgépet a szimulátorba\n" \
772 "az alább megadott reptérre és kapuhoz.\n\n" \
773 "Ezután nyomd meg a Kapcsolódás gombot a kapcsolódáshoz.")
774 self.add("connect_chelp",
775 "A járat alapadatai lent olvashatók.")
776 self.add("connect_flightno", "Járatszám:")
777 self.add("connect_acft", "Típus:")
778 self.add("connect_tailno", "Lajstromjel:")
779 self.add("connect_airport", "Repülőtér:")
780 self.add("connect_gate", "Kapu:")
781 self.add("button_connect", "K_apcsolódás")
782 self.add("button_connect_tooltip",
783 "Kattints ide a szimulátorhoz való kapcsolódáshoz.")
784 self.add("connect_busy", "Kapcsolódás a szimulátorhoz...")
785
786 self.add("payload_title", "Terhelés")
787 self.add("payload_help",
788 "Az eligazítás az alábbi tömegeket tartalmazza.\n" \
789 "Allítsd be a teherszállítmány tömegét itt, a hasznos "
790 "terhet pedig a szimulátorban.\n\n" \
791 "Azt is ellenőrízheted, hogy a szimulátor milyen ZFW-t jelent.")
792 self.add("payload_chelp",
793 "Lent láthatók az eligazításban szereplő tömegek, valamint\n" \
794 "a teherszállítmány általad megadott tömege.\n\n" \
795 "Azt is ellenőrízheted, hogy a szimulátor milyen ZFW-t jelent.")
796 self.add("payload_crew", "Legénység:")
797 self.add("payload_pax", "Utasok:")
798 self.add("payload_bag", "Poggyász:")
799 self.add("payload_cargo", "_Teher:")
800 self.add("payload_cargo_tooltip",
801 "A teherszállítmány tömege.")
802 self.add("payload_mail", "Posta:")
803 self.add("payload_zfw", "Kiszámolt ZFW:")
804 self.add("payload_fszfw", "_ZFW a szimulátorból:")
805 self.add("payload_fszfw_tooltip",
806 "Kattints ide, hogy frissítsd a ZFW értékét a szimulátorból.")
807 self.add("payload_zfw_busy", "ZFW lekérdezése...")
808
809 self.add("time_title", "Menetrend")
810 self.add("time_help",
811 "Az indulás és az érkezés ideje lent látható UTC szerint.\n\n" \
812 "A szimulátor aktuális UTC szerinti idejét is lekérdezheted.\n" \
813 "Győzödj meg arról, hogy elég időd van a repülés előkészítéséhez.")
814 self.add("time_chelp",
815 "Az indulás és az érkezés ideje lent látható UTC szerint.\n\n" \
816 "A szimulátor aktuális UTC szerinti idejét is lekérdezheted.")
817 self.add("time_departure", "Indulás:")
818 self.add("time_arrival", "Érkezés:")
819 self.add("time_fs", "Idő a s_zimulátorból:")
820 self.add("time_fs_tooltip",
821 "Kattings ide, hogy frissítsd a szimulátor aktuális UTC szerint idejét.")
822 self.add("time_busy", "Idő lekérdezése...")
823
824 self.add("fuel_title", "Üzemanyag")
825 self.add("fuel_help",
826 "Írd be az egyes tartályokba szükséges üzemanyag "
827 "mennyiségét kilogrammban.\n\n"
828 "Ha megnyomod az <b>Előre</b> gombot, a megadott mennyiségű\n"
829 "üzemanyag bekerül a tartályokba.")
830 self.add("fuel_chelp",
831 "A repülés elején az egyes tartályokba tankolt\n"
832 "üzemanyag mennyisége lent látható.")
833 self.add("fuel_tank_centre", "Középső\n")
834 self.add("fuel_tank_left", "Bal\n")
835 self.add("fuel_tank_right", "Jobb\n")
836 self.add("fuel_tank_left_aux", "Bal\nkiegészítő")
837 self.add("fuel_tank_right_aux", "Jobb\nkiegészítő")
838 self.add("fuel_tank_left_tip", "Bal\nszárnyvég")
839 self.add("fuel_tank_right_tip", "Jobb\nszárnyvég")
840 self.add("fuel_tank_external1", "Külső\n1")
841 self.add("fuel_tank_external2", "Külső\n2")
842 self.add("fuel_tank_centre2", "Középső\n2")
843 self.add("fuel_get_busy", "Az üzemanyag lekérdezése...")
844 self.add("fuel_pump_busy", "Az üzemanyag pumpálása...")
845 self.add("fuel_tank_tooltip",
846 "Ez mutatja az üzemanyag szintjét a tartályban annak "
847 "kapacitásához mérve. A "
848 '<span color="turquoise">türkizkék</span> '
849 "csúszka mutatja a repüléshez kívánt szintet. "
850 "Ha a bal gombbal bárhová kattintasz az ábrán, a csúszka "
851 "odaugrik. Ha a gombot lenyomva tartod, és az egérmutatót "
852 "föl-le mozgatod, a csúszka követi azt. Az egered görgőjével "
853 "is kezelheted a csúszkát. Alaphelyzetben az üzemanyag "
854 "mennyisége 10-zel nő, illetve csökken a görgetés irányától "
855 "függően. Ha a <b>Shift</b> billentyűt lenyomva tartod, "
856 "növekmény 100, a <b>Control</b> billentyűvel pedig 1 lesz.")
857
858 self.add("route_title", "Útvonal")
859 self.add("route_help",
860 "Állítsd be az utazószintet lent, és ha szükséges,\n" \
861 "módosítsd az útvonaltervet.")
862 self.add("route_chelp",
863 "Ha szükséges, lent módosíthatod az utazószintet és\n" \
864 "az útvonaltervet repülés közben is.\n" \
865 "Ha így teszel, légy szíves a megjegyzés mezőben " \
866 "ismertesd ennek okát.")
867 self.add("route_level", "_Utazószint:")
868 self.add("route_level_tooltip", "Az utazószint.")
869 self.add("route_route", "Út_vonal")
870 self.add("route_route_tooltip", "Az útvonal a szokásos formátumban.")
871 self.add("route_down_notams", "NOTAM-ok letöltése...")
872 self.add("route_down_metars", "METAR-ok letöltése...")
873
874 self.add("briefing_title", "Eligazítás (%d/2): %s")
875 self.add("briefing_departure", "indulás")
876 self.add("briefing_arrival", "érkezés")
877 self.add("briefing_help",
878 "Olvasd el figyelmesen a lenti NOTAM-okat és METAR-t.\n\n" \
879 "Ha a szimulátor vagy hálózat más időjárást ad,\n" \
880 "a METAR-t módosíthatod.")
881 self.add("briefing_chelp",
882 "Ha a szimulátor vagy hálózat más időjárást ad,\n" \
883 "a METAR-t módosíthatod.")
884 self.add("briefing_notams_init", "LHBP NOTAM-ok")
885 self.add("briefing_metar_init", "LHBP METAR")
886 self.add("briefing_button",
887 "Elolvastam az eligazítást, és készen állok a _repülésre!")
888 self.add("briefing_notams_template", "%s NOTAM-ok")
889 self.add("briefing_metar_template", "%s _METAR")
890 self.add("briefing_notams_failed", "Nem tudtam letölteni a NOTAM-okat.")
891 self.add("briefing_notams_missing",
892 "Ehhez a repülőtérhez nem találtam NOTAM-ot.")
893 self.add("briefing_metar_failed", "Nem tudtam letölteni a METAR-t.")
894
895 self.add("takeoff_title", "Felszállás")
896 self.add("takeoff_help",
897 "Írd be a felszállásra használt futópálya és SID nevét, valamint a sebességeket.")
898 self.add("takeoff_chelp",
899 "A naplózott futópálya, SID és a sebességek lent olvashatók.")
900 self.add("takeoff_runway", "_Futópálya:")
901 self.add("takeoff_runway_tooltip",
902 "A felszállásra használt futópálya.")
903 self.add("takeoff_sid", "_SID:")
904 self.add("takeoff_sid_tooltip",
905 "Az alkalmazott szabványos műszeres indulási eljárás neve.")
906 self.add("takeoff_v1", "V<sub>_1</sub>:")
907 self.add("takeoff_v1_tooltip", "Az elhatározási sebesség csomóban.")
908 self.add("label_knots", "csomó")
909 self.add("takeoff_vr", "V<sub>_R</sub>:")
910 self.add("takeoff_vr_tooltip", "Az elemelkedési sebesség csomóban.")
911 self.add("takeoff_v2", "V<sub>_2</sub>:")
912 self.add("takeoff_v2_tooltip", "A biztonságos emelkedési sebesség csomóban.")
913
914 self.add("landing_title", "Leszállás")
915 self.add("landing_help",
916 "Írd be az alkalmazott STAR és/vagy bevezetési eljárás nevét,\n"
917 "a használt futópályát, a megközelítés módját, és a V<sub>Ref</sub>-et.")
918 self.add("landing_chelp",
919 "Az alkalmazott STAR és/vagy bevezetési eljárás neve, a használt\n"
920 "futópálya, a megközelítés módja és a V<sub>Ref</sub> lent olvasható.")
921 self.add("landing_star", "_STAR:")
922 self.add("landing_star_tooltip",
923 "A követett szabványos érkezési eljárás neve.")
924 self.add("landing_transition", "_Bevezetés:")
925 self.add("landing_transition_tooltip",
926 "Az alkalmazott bevezetési eljárás neve, vagy VECTORS, "
927 "ha az irányítás vezetett be.")
928 self.add("landing_runway", "_Futópálya:")
929 self.add("landing_runway_tooltip",
930 "A leszállásra használt futópálya.")
931 self.add("landing_approach", "_Megközelítés típusa:")
932 self.add("landing_approach_tooltip",
933 "A megközelítgés típusa, pl. ILS vagy VISUAL.")
934 self.add("landing_vref", "V<sub>_Ref</sub>:")
935 self.add("landing_vref_tooltip",
936 "A leszállási sebesség csomóban.")
937
938 self.add("flighttype_scheduled", "menetrendszerinti")
939 self.add("flighttype_ot", "old-timer")
940 self.add("flighttype_vip", "VIP")
941 self.add("flighttype_charter", "charter")
942
943 self.add("finish_title", "Lezárás")
944 self.add("finish_help",
945 "Lent olvasható némi statisztika a járat teljesítéséről.\n\n" \
946 "Ellenőrízd az adatokat, az előző oldalakon is, és ha\n" \
947 "megfelelnek, elmentheted vagy elküldheted a PIREP-et.")
948 self.add("finish_rating", "Pontszám:")
949 self.add("finish_flight_time", "Repülési idő:")
950 self.add("finish_block_time", "Blokk idő:")
951 self.add("finish_distance", "Repült táv:")
952 self.add("finish_fuel", "Elhasznált üzemanyag:")
953 self.add("finish_type", "_Típus:")
954 self.add("finish_type_tooltip", "Válaszd ki a repülés típusát.")
955 self.add("finish_online", "_Online repülés")
956 self.add("finish_online_tooltip",
957 "Jelöld be, ha a repülésed a hálózaton történt, egyébként " \
958 "szűntesd meg a kijelölést.")
959 self.add("finish_gate", "_Érkezési kapu:")
960 self.add("finish_gate_tooltip",
961 "Válaszd ki azt a kaput vagy állóhelyet, ahová érkeztél LHBP-n.")
962 self.add("finish_save", "PIREP _mentése...")
963 self.add("finish_save_tooltip",
964 "Kattints ide, hogy elmenthesd a PIREP-et egy fájlba a számítógépeden. " \
965 "A PIREP-et később be lehet tölteni és el lehet küldeni.")
966 self.add("finish_send", "PIREP _elküldése...")
967 self.add("finish_send_tooltip",
968 "Kattints ide, hogy elküldd a PIREP-et a MAVA szerverére javításra.")
969 self.add("finish_send_busy", "PIREP küldése...")
970 self.add("finish_send_success",
971 "A PIREP elküldése sikeres volt.")
972 self.add("finish_send_success_sec",
973 "Várhatod félelmet nem ismerő PIREP javítóink alapos észrevételeit! :)")
974 self.add("finish_send_already",
975 "Ehhez a járathoz már küldtél be PIREP-et!")
976 self.add("finish_send_already_sec",
977 "A korábban beküldött PIREP-et törölheted a MAVA honlapján.")
978 self.add("finish_send_notavail",
979 "Ez a járat már nem elérhető!")
980 self.add("finish_send_unknown",
981 "A MAVA szervere ismeretlen hibaüzenettel tért vissza.")
982 self.add("finish_send_unknown_sec",
983 "A debug naplóban részletesebb információt találsz.")
984 self.add("finish_send_failed",
985 "Nem tudtam elküldeni a PIREP-et a MAVA szerverére.")
986 self.add("finish_send_failed_sec",
987 "Lehet, hogy hálózati probléma áll fenn, amely esetben később\n" \
988 "újra próbálkozhatsz. Lehet azonban hiba is a loggerben:\n" \
989 "részletesebb információt találhatsz a debug naplóban.")
990
991 # M A
992
993 self.add("info_comments", "_Megjegyzések")
994 self.add("info_defects", "Hib_ajelenségek")
995 self.add("info_delay", "Késés kódok")
996
997 # B V H Y R G F E P Z
998
999 self.add("info_delay_loading", "_Betöltési problémák")
1000 self.add("info_delay_vatsim", "_VATSIM probléma")
1001 self.add("info_delay_net", "_Hálózati problémák")
1002 self.add("info_delay_atc", "Irán_yító hibája")
1003 self.add("info_delay_system", "_Rendszer elszállás/fagyás")
1004 self.add("info_delay_nav", "Navi_gációs probléma")
1005 self.add("info_delay_traffic", "_Forgalmi problémák")
1006 self.add("info_delay_apron", "_Előtér navigációs probléma")
1007 self.add("info_delay_weather", "Időjárási _problémák")
1008 self.add("info_delay_personal", "S_zemélyes okok")
1009
1010 self.add("statusbar_conn_tooltip",
1011 'A kapcsolat állapota.\n'
1012 '<span foreground="grey">Szürke</span>: nincs kapcsolat.\n'
1013 '<span foreground="red">Piros</span>: kapcsolódás folyamatban.\n'
1014 '<span foreground="green">Zöld</span>: a kapcsolat él.')
1015 self.add("statusbar_stage_tooltip", "A repülés fázisa")
1016 self.add("statusbar_time_tooltip", "A szimulátor ideje UTC-ben")
1017 self.add("statusbar_rating_tooltip", "A repülés pontszáma")
1018 self.add("statusbar_busy_tooltip", "A háttérfolyamatok állapota.")
1019
1020 self.add("flight_stage_boarding", u"beszállás")
1021 self.add("flight_stage_pushback and taxi", u"hátratolás és kigurulás")
1022 self.add("flight_stage_takeoff", u"felszállás")
1023 self.add("flight_stage_RTO", u"megszakított felszállás")
1024 self.add("flight_stage_climb", u"emelkedés")
1025 self.add("flight_stage_cruise", u"utazó")
1026 self.add("flight_stage_descent", u"süllyedés")
1027 self.add("flight_stage_landing", u"leszállás")
1028 self.add("flight_stage_taxi", u"begurulás")
1029 self.add("flight_stage_parking", u"parkolás")
1030 self.add("flight_stage_go-around", u"átstartolás")
1031 self.add("flight_stage_end", u"kész")
1032
1033 self.add("statusicon_showmain", "Mutasd a főablakot")
1034 self.add("statusicon_showmonitor", "Mutasd a monitor ablakot")
1035 self.add("statusicon_quit", "Kilépés")
1036 self.add("statusicon_stage", u"Fázis")
1037 self.add("statusicon_rating", u"Pontszám")
1038
1039 self.add("update_title", "Frissítés")
1040 self.add("update_needsudo",
1041 "Lenne mit frissíteni, de a program hozzáférési jogok\n"
1042 "hiányában nem tud írni a saját könyvtárába.\n\n"
1043 "Kattints az OK gombra, ha el szeretnél indítani egy\n"
1044 "segédprogramot adminisztrátori jogokkal, amely\n"
1045 "befejezné a frissítést, egyébként a Mégse gombra.")
1046 self.add("update_manifest_progress", "A manifesztum letöltése...")
1047 self.add("update_manifest_done", "A manifesztum letöltve...")
1048 self.add("update_files_progress", "Fájlok letöltése...")
1049 self.add("update_files_bytes", "%d bájtot töltöttem le %d bájtból")
1050 self.add("update_renaming", "A letöltött fájlok átnevezése...")
1051 self.add("update_renamed", "Átneveztem a(z) %s fájlt")
1052 self.add("update_removing", "Fájlok törlése...")
1053 self.add("update_removed", "Letöröltem a(z) %s fájlt")
1054 self.add("update_writing_manifest", "Az új manifesztum írása")
1055 self.add("update_finished",
1056 "A frissítés sikerült. Kattints az OK-ra a program újraindításához.")
1057 self.add("update_nothing", "Nem volt mit frissíteni")
1058 self.add("update_failed", "Nem sikerült, a részleteket lásd a debug naplóban.")
1059
1060 self.add("weighthelp_usinghelp", "_Használom a segítséget")
1061 self.add("weighthelp_usinghelp_tooltip",
1062 "Ha bejelölöd, az alábbiakban kapsz egy kis segítséget "
1063 "a járathoz szükséges hasznos teher megállapításához. "
1064 "Ha igénybe veszed ezt a szolgáltatást, ez a tény "
1065 "a naplóba bekerül.")
1066 self.add("weighthelp_header_calculated", "Elvárt/\nszámított")
1067 self.add("weighthelp_header_simulator", "Szimulátor\nadatok")
1068 self.add("weighthelp_header_simulator_tooltip",
1069 "Kattints erre a gombra a súlyadatoknak a szimulátortól "
1070 "való lekérdezéséhez. Az értékek lent jelennek meg. Ha "
1071 "egy érték a tűrés 10%-án belül van, akkor az "
1072 '<b><span foreground="darkgreen">zöld</span></b> '
1073 "színnel jelenik meg. Ha nem fér bele a tűrésbe, akkor "
1074 '<b><span foreground="red">piros</span></b>, '
1075 "egyébként "
1076 '<b><span foreground="orange">sárga</span></b> '
1077 "színben olvasható.")
1078 self.add("weighthelp_crew", "Legénység (%s):")
1079 self.add("weighthelp_pax", "Utasok (%s):")
1080 self.add("weighthelp_baggage", "Poggyász:")
1081 self.add("weighthelp_cargo", "Teher:")
1082 self.add("weighthelp_mail", "Posta:")
1083 self.add("weighthelp_payload", "Hasznos teher:")
1084 self.add("weighthelp_dow", "DOW:")
1085 self.add("weighthelp_zfw", "ZFW:")
1086 self.add("weighthelp_gross", "Teljes tömeg:")
1087 self.add("weighthelp_mzfw", "MZFW:")
1088 self.add("weighthelp_mtow", "MTOW:")
1089 self.add("weighthelp_mlw", "MLW:")
1090 self.add("weighthelp_busy", "A tömegadatok lekérdezése...")
1091
1092 self.add("gates_fleet_title", "_Flotta")
1093 self.add("gates_gates_title", "LHBP kapuk")
1094 self.add("gates_tailno", "Lajstromjel")
1095 self.add("gates_planestatus", "Állapot")
1096 self.add("gates_refresh", "_Adatok frissítése")
1097 self.add("gates_refresh_tooltip",
1098 "Kattints erre a gombra a fenti adatok frissítéséhez")
1099 self.add("gates_planes_tooltip",
1100 "Ez a táblázat tartalmazza a MAVA flottája összes "
1101 "repülőgépének lajstromjelét és utolsó ismert helyét. "
1102 "Ha egy repülőgép olyan kapun áll, amelyet másik gép is "
1103 "elfoglal, akkor annak a repülőgépnek az adatai "
1104 "<b><span foreground=\"red\">piros</span></b> "
1105 "színnel jelennek meg.")
1106 self.add("gates_gates_tooltip",
1107 "A MAVA repülőgépei által elfoglalt kapuk száma "
1108 '<b><span foreground="orange">sárga</span></b> színnel,'
1109 "a többié feketén jelenik meg.")
1110 self.add("gates_plane_away", "TÁVOL")
1111 self.add("gates_plane_parking", "PARKOL")
1112 self.add("gates_plane_unknown", "ISMERETLEN")
1113
1114 self.add("prefs_title", "Beállítások")
1115 self.add("prefs_tab_general", "_Általános")
1116 self.add("prefs_tab_general_tooltip", "Általános beállítások")
1117 self.add("prefs_tab_messages", "_Üzenetek")
1118 self.add("prefs_tab_message_tooltip",
1119 "A szimulátorba és/vagy hangjelzés általi üzenetküldés be- "
1120 "és kikapcsolása")
1121 self.add("prefs_tab_advanced", "H_aladó")
1122 self.add("prefs_tab_advanced_tooltip",
1123 "Haladó beállítások: óvatosan módosítsd őket!")
1124 self.add("prefs_language", "_Nyelv:")
1125 self.add("prefs_language_tooltip",
1126 "A program által használt nyelv")
1127 self.add("prefs_restart",
1128 "Újraindítás szükséges")
1129 self.add("prefs_language_restart_sec",
1130 "A program nyelvének megváltoztatása csak egy újraindítást "
1131 "követően jut érvényre.")
1132 self.add("prefs_lang_$system", "alapértelmezett")
1133 self.add("prefs_lang_en_GB", "angol")
1134 self.add("prefs_lang_hu_HU", "magyar")
1135 self.add("prefs_onlineGateSystem",
1136 "Az Online _Gate System használata")
1137 self.add("prefs_onlineGateSystem_tooltip",
1138 "Ha ezt bejelölöd, a logger lekérdezi és frissíti az "
1139 "LHBP Online Gate System adatait.")
1140 self.add("prefs_onlineACARS",
1141 "Az Online ACA_RS rendszer használata")
1142 self.add("prefs_onlineACARS_tooltip",
1143 "Ha ezt bejölöd, a logger folyamatosan közli a repülésed "
1144 "adatait a MAVA Online ACARS rendszerrel.")
1145 self.add("prefs_flaretimeFromFS",
1146 "A ki_lebegtetés idejét vedd a szimulátorból")
1147 self.add("prefs_flaretimeFromFS_tooltip",
1148 "Ha ezt bejelölöd, a kilebegtetés idejét a szimulátor "
1149 "által visszaadott időbélyegek alapján számolja a program.")
1150 self.add("prefs_update_auto",
1151 "Frissítsd a programot _automatikusan")
1152 self.add("prefs_update_auto_tooltip",
1153 "Ha ez be van jelölve, a program induláskor frissítést "
1154 "keres, és ha talál, azokat letölti és telepíti. Ez "
1155 "biztosítja, hogy az elküldött PIREP minden megfelel "
1156 "a legújabb elvárásoknak.")
1157 self.add("prefs_update_auto_warning",
1158 "Az automatikus frissítés kikapcsolása azt okozhatja, "
1159 "hogy a program Nálad lévő verziója elavulttá válik, "
1160 "és a PIREP-jeidet így nem fogadják el.")
1161 self.add("prefs_update_url", "Frissítés _URL-je:")
1162 self.add("prefs_update_url_tooltip",
1163 "Az URL, ahol a frissítéseket keresi a program. Csak akkor "
1164 "változtasd meg, ha biztos vagy a dolgodban!")
1165
1166 # A Á H M O Ü
1167
1168 self.add("prefs_msgs_fs", "Szimulátorban\nmegjelenítés")
1169 self.add("prefs_msgs_sound", "Hangjelzés")
1170 self.add("prefs_msgs_type_loggerError", "_Logger hibaüzenetek")
1171 self.add("prefs_msgs_type_information",
1172 "_Információs üzenetek\n(pl. a repülés fázisa)")
1173 self.add("prefs_msgs_type_fault",
1174 "Hi_baüzenetek\n(pl. a villogó fény hiba)")
1175 self.add("prefs_msgs_type_nogo",
1176 "_NOGO hibaüzenetek\n(pl. MTOW NOGO)")
1177 self.add("prefs_msgs_type_gateSystem",
1178 "_Kapukezelő rendszer üzenetei\n(pl. a szabad kapuk listája)")
1179 self.add("prefs_msgs_type_environment",
1180 "Kö_rnyezeti üzenetek\n(pl. \"welcome to XY aiport\")")
1181 self.add("prefs_msgs_type_help",
1182 "_Segítő üzenetek\n(pl. \"don't forget to set VREF\")")
1183 self.add("prefs_msgs_type_visibility",
1184 "Lá_tótávolság üzenetek")
1185
1186#------------------------------------------------------------------------------
1187
1188# The fallback language is English
1189_English()
1190
1191# We also support Hungarian
1192_Hungarian()
1193
1194#------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.