Changeset 491:3109e293df85
- Timestamp:
- 04/01/13 12:00:55 (12 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
locale/en/mlx.po
r484 r491 1838 1838 1839 1839 msgid "sendBugReport_success" 1840 msgstr "Bug report sentsuccessfully."1840 msgstr "Bug report #%d created successfully." 1841 1841 1842 1842 msgid "sendBugReport_success_sec" 1843 1843 msgstr "" 1844 1844 "The report will be analysed and you will be contacted " 1845 "as soon as possible." 1845 "as soon as possible. Write down the ID above, so that " 1846 "you could refer to it later." 1846 1847 1847 1848 msgid "sendBugReport_error" -
locale/hu/mlx.po
r484 r491 1853 1853 1854 1854 msgid "sendBugReport_success" 1855 msgstr "A hibajelentést elküldtem."1855 msgstr "A %d. számú hibajelentés létrehozva." 1856 1856 1857 1857 msgid "sendBugReport_success_sec" 1858 1858 msgstr "" 1859 1859 "A jelentést elemezzük és felvesszük veled a kapcsolatot " 1860 "amilyen hamar csak lehet." 1860 "amilyen hamar csak lehet. A fenti számot jegyezd fel, " 1861 "hogy a későbbiekben hivatkozhass rá." 1861 1862 1862 1863 msgid "sendBugReport_error" -
src/mlx/gui/gui.py
r490 r491 1415 1415 if result.success: 1416 1416 type = MESSAGETYPE_INFO 1417 messageFormat = xstr("sendBugReport_success") 1417 messageFormat = xstr("sendBugReport_success") % (result.ticketID,) 1418 1418 secondaryMarkup = xstr("sendBugReport_success_sec") 1419 1419 else: -
src/mlx/web.py
r488 r491 811 811 812 812 result = Result() 813 result.success = False 813 814 814 815 attributes = {} … … 816 817 attributes["reporter"] = self._email 817 818 818 id= serverProxy.ticket.create(self._summary, self._description,819 attributes, True)820 print "Created ticket with ID:", id819 result.ticketID = serverProxy.ticket.create(self._summary, self._description, 820 attributes, True) 821 print "Created ticket with ID:", result.ticketID 821 822 result.success = True 822 823
Note:
See TracChangeset
for help on using the changeset viewer.