Changeset 563:90d7776ec939
- Timestamp:
- 02/22/14 06:36:15 (11 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
locale/en/mlx.po
r558 r563 931 931 msgstr "" 932 932 "There are some statistics about your flight below.\n" 933 "\n"934 933 "Review the data, also on earlier pages, and if you are\n" 935 934 "satisfied, you can save or send your PIREP." 935 936 msgid "finish_help_wrongtime" 937 msgstr "" 938 "<span foreground=\"red\">\n\nYour departure and/or arrival time differ too much from the scheduled time(s).\n" 939 "Please, provide a comment or a delay code to proceed.</span>" 936 940 937 941 msgid "finish_rating" -
locale/hu/mlx.po
r558 r563 932 932 msgstr "" 933 933 "Lent olvasható némi statisztika a járat teljesítéséről.\n" 934 "\n"935 934 "Ellenőrízd az adatokat, az előző oldalakon is, és ha\n" 936 935 "megfelelnek, elmentheted vagy elküldheted a PIREP-et." 936 937 msgid "finish_help_wrongtime" 938 msgstr "" 939 "<span foreground=\"red\">\n\nAz érkezési és/vagy indulási idő jelentősen eltér a menetrendtől.\n" 940 "Kérlek, írj megjegyzést vagy adj meg késési kódot a PIREP elküldése előtt.</span>" 937 941 938 942 msgid "finish_rating" -
src/mlx/gui/flight.py
r558 r563 210 210 pass 211 211 212 def setHelp(self, help): 213 """Set the help string.""" 214 self._help = help 215 if not self._completed: 216 self._helpLabel.set_markup(self._help) 217 self._helpLabel.set_sensitive(True) 218 212 219 def complete(self): 213 220 """Called when the page is completed. … … 2808 2815 def __init__(self, wizard): 2809 2816 """Construct the finish page.""" 2810 super(FinishPage, self).__init__(wizard, xstr("finish_title"),2811 xstr("finish_help"))2817 help = xstr("finish_help") + xstr("finish_help_wrongtime") 2818 super(FinishPage, self).__init__(wizard, xstr("finish_title"), help) 2812 2819 2813 2820 alignment = gtk.Alignment(xalign = 0.5, yalign = 0.5, … … 3061 3068 3062 3069 self._tooBigTimeDifference = tooBigDeparture or tooBigArrival 3070 3071 if self._tooBigTimeDifference: 3072 self.setHelp(xstr("finish_help") + xstr("finish_help_wrongtime")) 3073 else: 3074 self.setHelp(xstr("finish_help")) 3063 3075 3064 3076 self._arrTime.set_markup(markup) … … 3689 3701 3690 3702 self.setCurrentPage(firstPage) 3703 #self.setCurrentPage(13) 3691 3704 3692 3705 def login(self, callback, pilotID, password, entranceExam):
Note:
See TracChangeset
for help on using the changeset viewer.