Changeset 869:0797a6796f55
- Timestamp:
- 06/18/17 18:25:18 (7 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
locale/en/mlx.po
r865 r869 456 456 msgid "flightsel_to" 457 457 msgstr "To" 458 459 msgid "flightsel_book" 460 msgstr "_Book flights..." 461 462 msgid "flightsel_book_tooltip" 463 msgstr "Click here to be able to book one or more flights.""" 458 464 459 465 msgid "flightsel_pending" -
locale/hu/mlx.po
r865 r869 456 456 msgid "flightsel_to" 457 457 msgstr "Hová" 458 459 msgid "flightsel_book" 460 msgstr "_Járatfoglalás..." 461 462 msgid "flightsel_book_tooltip" 463 msgstr "Kattints ide járat(ok) foglalásához.""" 458 464 459 465 msgid "flightsel_pending" -
src/mlx/gui/flight.py
r866 r869 511 511 self.setMainWidget(mainBox) 512 512 513 self._bookButton = self.addButton(xstr("flightsel_book"), 514 sensitive = True, 515 clicked = self._bookClicked, 516 tooltip = xstr("flightsel_book_tooltip")) 517 513 518 self._pendingButton = self.addButton(xstr("flightsel_pending"), 514 519 sensitive = False, … … 606 611 self._setupHelp() 607 612 self._updatePendingButton() 613 614 def _bookClicked(self, button): 615 """Called when the Book flights button is clicked.""" 616 self._wizard.gui.showTimetable() 608 617 609 618 def _pendingClicked(self, button): -
src/mlx/gui/gui.py
r859 r869 1302 1302 return self._notebook.get_current_page()==0 1303 1303 1304 def showTimetable(self, menuItem ):1304 def showTimetable(self, menuItem = None): 1305 1305 """Callback for showing the timetable.""" 1306 1306 if self._timetableWindow.hasFlightPairs:
Note:
See TracChangeset
for help on using the changeset viewer.