Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
fd9e95aab0 | |||
b7658288b6 | |||
13a51cf2c7 |
@ -1,3 +1,14 @@
|
||||
2005-06-05 Alex Roitman <shura@gramps-project.org>
|
||||
* configure.in: Bump up the version number.
|
||||
|
||||
2005-06-05 Don Allingham <don@gramps-project.org>
|
||||
* src/DateHandler.py: fixed initialization of parser class
|
||||
* Release: Version 2.0.3 "Mynd you, møøse bites Kan be pretty
|
||||
nasti..." released.
|
||||
|
||||
2005-06-05 Alex Roitman <shura@gramps-project.org>
|
||||
* configure.in: Bump up the version number.
|
||||
|
||||
2005-06-04 Don Allingham <don@gramps-project.org>
|
||||
* src/DateHandler.py: handle generic "en", "fr" cases as a fallback
|
||||
if the unknown "yy_XX" code is passed. Try yy if yy_XX fails.
|
||||
|
@ -1,3 +1,6 @@
|
||||
Version 2.0.3 -- the "Mynd you, møøse bites Kan be pretty nasti..." release
|
||||
* Fixed Date handler bug that would not allow dates to be updated.
|
||||
|
||||
Version 2.0.2 -- the "Little fermented curd will do the trick" release
|
||||
* Updated German translation (Anton Huber).
|
||||
* Usability improvements for large databases.
|
||||
|
@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script.
|
||||
dnl May need to run automake && aclocal first
|
||||
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT(gramps, 2.0.2, gramps-bugs@lists.sourceforge.net)
|
||||
AC_INIT(gramps, 2.0.4, gramps-bugs@lists.sourceforge.net)
|
||||
AC_CONFIG_SRCDIR(src/gramps.py)
|
||||
AM_INIT_AUTOMAKE(1.6.3)
|
||||
RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-')
|
||||
|
@ -118,9 +118,9 @@ load_plugins(datesDir)
|
||||
|
||||
try:
|
||||
if _lang_to_parser.has_key(_lang):
|
||||
parser = _lang_to_parser[_lang]
|
||||
parser = _lang_to_parser[_lang]()
|
||||
else:
|
||||
parser = _lang_to_parser[_lang_short]
|
||||
parser = _lang_to_parser[_lang_short]()
|
||||
except:
|
||||
print "Date parser for",_lang,"not available, using default"
|
||||
parser = _lang_to_parser["C"]()
|
||||
|
Reference in New Issue
Block a user