3954: Language list for rel_de not complete; 5438: Relationship calculator for Catalan

svn: r18621
This commit is contained in:
Jérôme Rapinat 2011-12-18 09:14:16 +00:00
parent a94893a5ac
commit 9f44a8b898
3 changed files with 1135 additions and 3 deletions

View File

@ -6,7 +6,8 @@
pkgdatadir = $(datadir)/@PACKAGE@/plugins/rel
pkgdata_PYTHON = \
relplugins.gpr.py\
relplugins.gpr.py\
rel_ca.py\
rel_cs.py\
rel_da.py\
rel_de.py\

1117
src/plugins/rel/rel_ca.py Normal file

File diff suppressed because it is too large Load Diff

View File

@ -26,6 +26,19 @@
# Relationship calculators
#
# ca
plg = newplugin()
plg.id = 'relcalc_ca'
plg.name = _("Catalan Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '3.3'
plg.status = STABLE
plg.fname = 'rel_ca.py'
plg.ptype = RELCALC
plg.relcalcclass = 'RelationshipCalculator'
plg.lang_list = ['ca_ES', 'ca', u'català', 'Catalan', 'ca_FR', 'ca_AD', 'ca_IT']
# cs
plg = newplugin()
plg.id = 'relcalc_cs'
@ -67,8 +80,9 @@ plg.fname = 'rel_de.py'
plg.ptype = RELCALC
plg.relcalcclass = 'RelationshipCalculator'
plg.lang_list = ["de", "DE", "de_DE", "deutsch", "Deutsch", "de_DE.UTF8",
"de_DE@euro", "de_DE.UTF8@euro", "de_AT.UTF-8",
"german","German", "de_DE.UTF-8", "de_DE.utf-8", "de_DE.utf8"]
"de_DE@euro", "de_DE.UTF8@euro", "de_AT.UTF-8", "de_AT.utf-8",
"german","German", "de_DE.UTF-8", "de_DE.utf-8", "de_DE.utf8",
"de_CH.UTF-8", "de_CH.utf-8"]
# es
plg = newplugin()