Changeset 483:a1b49fbab4f0


Ignore:
Timestamp:
03/30/13 13:25:49 (11 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

Implemented the dialog window (re #190)

Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • locale/en/mlx.po

    r482 r483  
    9090msgid "button_browse"
    9191msgstr "Browse..."
     92
     93msgid "button_send"
     94msgstr "_Send..."
    9295
    9396msgid "button_cancelFlight"
     
    18071810msgstr "Select a callout file"
    18081811
     1812msgid "bugreport_title"
     1813msgstr "Bug Report"
     1814
     1815msgid "bugreport_summary"
     1816msgstr "S_ummary:"
     1817
     1818msgid "bugreport_summary_tooltip"
     1819msgstr "Enter a short, one-sentence description of the bug"
     1820
     1821msgid "bugreport_description"
     1822msgstr "_Description:"
     1823
     1824msgid "bugreport_description_tooltip"
     1825msgstr ""
     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
     1830msgid "bugreport_email"
     1831msgstr "_E-mail (optional):"
     1832
     1833msgid "bugreport_email_tooltip"
     1834msgstr "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  
    9191msgstr "Keresés..."
    9292
     93msgid "button_send"
     94msgstr "_Küldés..."
     95
    9396msgid "button_cancelFlight"
    9497msgstr "Járat megszakítása"
     
    18221825msgstr "Válaszd ki a bemondás fájlt"
    18231826
     1827msgid "bugreport_title"
     1828msgstr "Hibajelentés"
     1829
     1830msgid "bugreport_summary"
     1831msgstr "_Összefoglalás:"
     1832
     1833msgid "bugreport_summary_tooltip"
     1834msgstr "A hiba rövid, egymondatos leírása"
     1835
     1836msgid "bugreport_description"
     1837msgstr "_Leírás:"
     1838
     1839msgid "bugreport_description_tooltip"
     1840msgstr ""
     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
     1845msgid "bugreport_email"
     1846msgstr "_E-mail (nem kötelező):"
     1847
     1848msgid "bugreport_email_tooltip"
     1849msgstr "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  
    1414from mlx.gui.callouts import ApproachCalloutsEditor
    1515from mlx.gui.pirep import PIREPViewer
     16from mlx.gui.bugreport import BugReportDialog
    1617
    1718import mlx.const as const
     
    108109        self._checklistEditor = ChecklistEditor(self)
    109110        self._approachCalloutsEditor = ApproachCalloutsEditor(self)
     111        self._bugreportDialog = BugReportDialog(self)
    110112
    111113        menuBar = self._buildMenuBar(accelGroup)
     
    11391141    def _reportBug(self, menuItem):
    11401142        """Callback for reporting a bug."""
    1141 
     1143        self._bugreportDialog.run()
    11421144
    11431145    def _setupTimeSync(self):
Note: See TracChangeset for help on using the changeset viewer.