Changeset 483:a1b49fbab4f0
- Timestamp:
- 03/30/13 13:25:49 (12 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
locale/en/mlx.po
r482 r483 90 90 msgid "button_browse" 91 91 msgstr "Browse..." 92 93 msgid "button_send" 94 msgstr "_Send..." 92 95 93 96 msgid "button_cancelFlight" … … 1807 1810 msgstr "Select a callout file" 1808 1811 1812 msgid "bugreport_title" 1813 msgstr "Bug Report" 1814 1815 msgid "bugreport_summary" 1816 msgstr "S_ummary:" 1817 1818 msgid "bugreport_summary_tooltip" 1819 msgstr "Enter a short, one-sentence description of the bug" 1820 1821 msgid "bugreport_description" 1822 msgstr "_Description:" 1823 1824 msgid "bugreport_description_tooltip" 1825 msgstr "" 1826 "Enter any further information you consider relevant. " 1827 "The log and the debug log will be automatically appended to the bug report, " 1828 "so there is no need to copy those here." 1829 1830 msgid "bugreport_email" 1831 msgstr "_E-mail (optional):" 1832 1833 msgid "bugreport_email_tooltip" 1834 msgstr "If you enter your e-mail here, you will get status updates about your bug report to this address." -
locale/hu/mlx.po
r482 r483 91 91 msgstr "Keresés..." 92 92 93 msgid "button_send" 94 msgstr "_Küldés..." 95 93 96 msgid "button_cancelFlight" 94 97 msgstr "Járat megszakítása" … … 1822 1825 msgstr "Válaszd ki a bemondás fájlt" 1823 1826 1827 msgid "bugreport_title" 1828 msgstr "Hibajelentés" 1829 1830 msgid "bugreport_summary" 1831 msgstr "_Összefoglalás:" 1832 1833 msgid "bugreport_summary_tooltip" 1834 msgstr "A hiba rövid, egymondatos leírása" 1835 1836 msgid "bugreport_description" 1837 msgstr "_Leírás:" 1838 1839 msgid "bugreport_description_tooltip" 1840 msgstr "" 1841 "Írj le minden egyéb, fontosnak ítélt információt. " 1842 "A naplót és a debug naplót a program automatikusan csatolja a " 1843 "hibajelentéshez, így azokat ide nem kell bemásolni." 1844 1845 msgid "bugreport_email" 1846 msgstr "_E-mail (nem kötelező):" 1847 1848 msgid "bugreport_email_tooltip" 1849 msgstr "Ha itt megadod az e-mail címed, a hibajelentés állapotáról értesítéseket fogsz kapni a megadott címre." -
src/mlx/gui/gui.py
r482 r483 14 14 from mlx.gui.callouts import ApproachCalloutsEditor 15 15 from mlx.gui.pirep import PIREPViewer 16 from mlx.gui.bugreport import BugReportDialog 16 17 17 18 import mlx.const as const … … 108 109 self._checklistEditor = ChecklistEditor(self) 109 110 self._approachCalloutsEditor = ApproachCalloutsEditor(self) 111 self._bugreportDialog = BugReportDialog(self) 110 112 111 113 menuBar = self._buildMenuBar(accelGroup) … … 1139 1141 def _reportBug(self, menuItem): 1140 1142 """Callback for reporting a bug.""" 1141 1143 self._bugreportDialog.run() 1142 1144 1143 1145 def _setupTimeSync(self):
Note:
See TracChangeset
for help on using the changeset viewer.