|
From: Martynas J. <mj...@us...> - 2006-02-17 13:58:54
|
Update of /cvsroot/opendict/opendict In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29772 Modified Files: ChangeLog opendict.py Log Message: 1. Several translation string bugs fixed. 2. Licence window moved to About window. Index: opendict.py =================================================================== RCS file: /cvsroot/opendict/opendict/opendict.py,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- opendict.py 28 Jan 2006 14:45:07 -0000 1.42 +++ opendict.py 17 Feb 2006 13:58:44 -0000 1.43 @@ -108,19 +108,17 @@ except: pass - if wxVersion.split('.') < ['2', '5']: + if wxVersion.split('.') < ['2', '6']: from lib.gui import errorwin # Go away, wxPython 2.4! title = _("wxPython Version Error") - msg = _("wxPython %s is installed on this system.\n\n" \ - "OpenDict %s requires wxPython 2.5 to run smoothly. " \ - "wxPython 2.4\n" \ - "is not supported anymore because of huge number of " \ - "bugs.\n\n" \ - "Please get wxPython 2.5 from " \ - "http://www.wxpython.org/download.php" \ - % (wxVersion, info.VERSION)) + msg = _("wxPython %s is installed on this system.\n\n" + "OpenDict %s requires wxPython 2.6 to run smoothly.\n\n" + "You can find wxPython 2.6 at " + "http://www.wxpython.org or you can " + "install it using your system package manager.") \ + % (wxVersion, info.VERSION) errorwin.showErrorMessage(title, msg) return False Index: ChangeLog =================================================================== RCS file: /cvsroot/opendict/opendict/ChangeLog,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- ChangeLog 12 Feb 2006 00:53:57 -0000 1.10 +++ ChangeLog 17 Feb 2006 13:58:44 -0000 1.11 @@ -1,3 +1,36 @@ +2006-02-15 18:29 mjoc + + * lib/gui/mainwin.py, po/lt.po, po/opendict.pot: Window "Edit + Dicitonaries" renamed to "Create Dictionaries". + +2006-02-14 15:17 mjoc + + * po/: lt.po, opendict.pot: Translation updated. + +2006-02-13 02:08 nerijus + + * lib/gui/mainwin.py: clear search field on ESC, implements feature + request 1351220 + +2006-02-12 22:10 nerijus + + * po/lt.po, win32/setup.manifest.py, win32/setup.py: Version + changed to 0.6.1 + +2006-02-12 20:59 mjoc + + * po/: lt.po, opendict.pot: Translation (po) file updated. + +2006-02-12 20:56 mjoc + + * lib/gui/dictconnwin.py, po/opendict.pot: Bug fix: encoding has + not been really used after chaning it in DictConnection dialog. + +2006-02-12 02:53 mjoc + + * ChangeLog, opendict.1, po/lt.po, po/opendict.pot: Manual page + added. ChangeLog updated. + 2006-01-28 16:45 mjoc * opendict.py, lib/info.py, lib/logger.py, lib/gui/dictconnwin.py, |