* src/plugins/rel_ru.py: Add more possible russian LANG values.

svn: r2781
This commit is contained in:
Alex Roitman 2004-02-06 04:58:11 +00:00
parent 7483c36286
commit 681ab62636
2 changed files with 5 additions and 2 deletions

View File

@ -2,6 +2,7 @@
* src/plugins/Merge.py (gen_key,name_compare): * src/plugins/Merge.py (gen_key,name_compare):
Fall back to not using soundex if the charset can't be latin-1 encoded. Fall back to not using soundex if the charset can't be latin-1 encoded.
* src/plugins/soundgen.py: Fall back to empty input. * src/plugins/soundgen.py: Fall back to empty input.
* src/plugins/rel_ru.py: Add more possible russian LANG values.
2004-02-05 Michel Guitel <michel.guitel@free.fr> 2004-02-05 Michel Guitel <michel.guitel@free.fr>
* doc/gramps-manual/fr/cmdline.xml: Update. * doc/gramps-manual/fr/cmdline.xml: Update.

View File

@ -2,7 +2,7 @@
# #
# Gramps - a GTK+/GNOME based genealogy program # Gramps - a GTK+/GNOME based genealogy program
# #
# Copyright (C) 2003 Donald N. Allingham # Copyright (C) 2003-2004 Donald N. Allingham
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
@ -19,6 +19,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# #
# $Id$
# #
# Written by Alex Roitman, largely based on Relationship.py by Don Allingham. # Written by Alex Roitman, largely based on Relationship.py by Don Allingham.
# #
@ -284,4 +286,4 @@ def get_relationship(orig_person,other_person):
from Plugins import register_relcalc from Plugins import register_relcalc
register_relcalc(get_relationship, register_relcalc(get_relationship,
["ru","RU","ru_RU","koi8r","ru_koi8r","russian","Russian","ru_RU.koi8r","ru_RU.KOI8-R","ru_RU.utf8"]) ["ru","RU","ru_RU","koi8r","ru_koi8r","russian","Russian","ru_RU.koi8r","ru_RU.KOI8-R","ru_RU.utf8","ru_RU.UTF8", "ru_RU.utf-8","ru_RU.UTF-8",])