* src/plugins/rel_sv.py: Obviosly, level=1 to get_parents means

parents, not level=0.
* src/po/sv.po: Updates and changes.


svn: r5278
This commit is contained in:
Stefan Bjork 2005-10-06 15:37:35 +00:00
parent cd28f97e1e
commit 8cfdeab55c
3 changed files with 1099 additions and 724 deletions

View File

@ -1,3 +1,8 @@
2005-10-06 Stefan Bjork <skalman@acc.umu.se>
* src/plugins/rel_sv.py: Obviosly, level=1 to get_parents means
parents, not level=0.
* src/po/sv.po: Updates and changes.
2005-10-05 Don Allingham <don@gramps-project.org>
* src/GrampsDisplay.py: move gnome help and url control into this
module

View File

@ -60,10 +60,10 @@ class RelationshipCalculator(Relationship.RelationshipCalculator):
Relationship.RelationshipCalculator.__init__(self,db)
def get_parents(self,level):
if level == 0:
if level == 1:
return "föräldrar"
else:
return "anor i %d-te generationen" % (level+1)
return "anor i generation %d" % (level)
def get_cousin(self,level):
if level>len(_cousin_level)-1:

File diff suppressed because it is too large Load Diff