diff --git a/ChangeLog b/ChangeLog index b3ae7facb..402294086 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2004-01-20 Don Allingham + * src/const.py.in: handle new translation table class + * src/NameEdit.py.in: handle new translation table class + * src/EditPerson.py.in: handle new translation table class + * src/TransTable.py: new Translation table class + * src/GenericFilter.py: handle translated rule names + * src/plugins/FilterEditor.py: handle translated rule names + 2004-01-20 Alex Roitman * doc/gramps.1.in, doc/gramps.1: Update. * doc/gramps-manual/C/gramps-manual.xml: Update. diff --git a/configure b/configure index 6262f3ca5..fd13b8da7 100755 --- a/configure +++ b/configure @@ -3367,7 +3367,7 @@ SCROLLKEEPER_BUILD_REQUIRED=0.3.5 - ac_config_files="$ac_config_files Makefile src/Makefile src/const.py src/docgen/Makefile src/filters/Makefile src/plugins/Makefile src/calendars/Makefile src/data/Makefile src/data/templates/Makefile src/po/Makefile doc/Makefile doc/gramps-manual/Makefile doc/gramps-manual/C/Makefile doc/gramps-manual/fr/Makefile doc/gramps-manual/de/Makefile doc/gramps-manual/ru/Makefile example/Makefile example/gramps/Makefile gramps.spec gramps.sh" + ac_config_files="$ac_config_files Makefile src/Makefile src/const.py src/docgen/Makefile src/filters/Makefile src/plugins/Makefile src/calendars/Makefile src/data/Makefile src/data/templates/Makefile src/po/Makefile doc/Makefile doc/gramps-manual/Makefile doc/gramps-manual/C/Makefile doc/gramps-manual/fr/Makefile doc/gramps-manual/de/Makefile doc/gramps-manual/ru/Makefile doc/gramps-manual/hu/Makefile example/Makefile example/gramps/Makefile gramps.spec gramps.sh" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure @@ -3959,6 +3959,7 @@ do "doc/gramps-manual/fr/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/gramps-manual/fr/Makefile" ;; "doc/gramps-manual/de/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/gramps-manual/de/Makefile" ;; "doc/gramps-manual/ru/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/gramps-manual/ru/Makefile" ;; + "doc/gramps-manual/hu/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/gramps-manual/hu/Makefile" ;; "example/Makefile" ) CONFIG_FILES="$CONFIG_FILES example/Makefile" ;; "example/gramps/Makefile" ) CONFIG_FILES="$CONFIG_FILES example/gramps/Makefile" ;; "gramps.spec" ) CONFIG_FILES="$CONFIG_FILES gramps.spec" ;; diff --git a/doc/gramps-manual/Makefile.in b/doc/gramps-manual/Makefile.in index 26f013d79..b0b16c809 100644 --- a/doc/gramps-manual/Makefile.in +++ b/doc/gramps-manual/Makefile.in @@ -131,7 +131,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -SUBDIRS = C fr de ru +SUBDIRS = C fr de ru hu subdir = doc/gramps-manual ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/gramps.spec b/gramps.spec index 97628f6f2..49cf99596 100644 --- a/gramps.spec +++ b/gramps.spec @@ -1,5 +1,5 @@ %define ver 1.0.0 -%define rel 0.CVS20040110 +%define rel 0.CVS20040120 %define prefix /usr %define localstatedir /var/lib # Ensure that internal RPM macros for configure & makeinstall diff --git a/src/Makefile.am b/src/Makefile.am index d79740862..3eed4fbfb 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -85,6 +85,7 @@ pkgpython_PYTHON = \ StyleEditor.py\ SubstKeywords.py\ TarFile.py\ + TransTable.py\ UrlEdit.py\ Utils.py\ VersionControl.py\ diff --git a/src/Makefile.in b/src/Makefile.in index b69fcc9cf..d7abca001 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -214,6 +214,7 @@ pkgpython_PYTHON = \ StyleEditor.py\ SubstKeywords.py\ TarFile.py\ + TransTable.py\ UrlEdit.py\ Utils.py\ VersionControl.py\ diff --git a/src/plugins/Makefile.in b/src/plugins/Makefile.in index 0e151da81..b08ccfec6 100644 --- a/src/plugins/Makefile.in +++ b/src/plugins/Makefile.in @@ -137,6 +137,7 @@ target_alias = @target_alias@ # If not using GNU make, then list all .py files individually pkgpython_PYTHON = \ AncestorChart.py\ + AncestorChart2.py\ AncestorReport.py\ Ancestors.py\ BookReport.py\