Replace tabs with spaces
This commit is contained in:
parent
e67832d384
commit
e82148677d
@ -180,4 +180,4 @@ def odt():
|
|||||||
% {'lang': lang})
|
% {'lang': lang})
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
@ -106,4 +106,4 @@ def build():
|
|||||||
os.system('''%(program)s -b linkcheck . _build/linkcheck''' % {'program': sphinxCmd})
|
os.system('''%(program)s -b linkcheck . _build/linkcheck''' % {'program': sphinxCmd})
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
@ -56,8 +56,8 @@ class DateParserFI(DateParser):
|
|||||||
|
|
||||||
modifier_to_int = {
|
modifier_to_int = {
|
||||||
# examples:
|
# examples:
|
||||||
# - ennen 1.1.2005
|
# - ennen 1.1.2005
|
||||||
# - noin 1.1.2005
|
# - noin 1.1.2005
|
||||||
'ennen' : Date.MOD_BEFORE,
|
'ennen' : Date.MOD_BEFORE,
|
||||||
'e.' : Date.MOD_BEFORE,
|
'e.' : Date.MOD_BEFORE,
|
||||||
'noin' : Date.MOD_ABOUT,
|
'noin' : Date.MOD_ABOUT,
|
||||||
@ -65,7 +65,7 @@ class DateParserFI(DateParser):
|
|||||||
}
|
}
|
||||||
modifier_after_to_int = {
|
modifier_after_to_int = {
|
||||||
# examples:
|
# examples:
|
||||||
# - 1.1.2005 jälkeen
|
# - 1.1.2005 jälkeen
|
||||||
'jälkeen' : Date.MOD_AFTER,
|
'jälkeen' : Date.MOD_AFTER,
|
||||||
'j.' : Date.MOD_AFTER,
|
'j.' : Date.MOD_AFTER,
|
||||||
}
|
}
|
||||||
|
@ -272,9 +272,9 @@ class DateDisplayHU(DateDisplay):
|
|||||||
|
|
||||||
formats = (
|
formats = (
|
||||||
"ÉÉÉÉ-HH-NN (ISO)", # 0
|
"ÉÉÉÉ-HH-NN (ISO)", # 0
|
||||||
"Alapértelmezett éééé. hh. nn.", # 1
|
"Alapértelmezett éééé. hh. nn.", # 1
|
||||||
"Év hónap nap", # year, full month name, day # 2
|
"Év hónap nap", # year, full month name, day # 2
|
||||||
"Év hó nap", #year, short month name, day # 3
|
"Év hó nap", #year, short month name, day # 3
|
||||||
"Év római h.sz. nap" #year, Roman number, day # 4
|
"Év római h.sz. nap" #year, Roman number, day # 4
|
||||||
)
|
)
|
||||||
# this definition must agree with its "_display_calendar" method
|
# this definition must agree with its "_display_calendar" method
|
||||||
@ -299,11 +299,11 @@ class DateDisplayHU(DateDisplay):
|
|||||||
if date_val[3]:
|
if date_val[3]:
|
||||||
return self.display_iso(date_val)
|
return self.display_iso(date_val)
|
||||||
else:
|
else:
|
||||||
if date_val[0]==0: #No day
|
if date_val[0]==0: #No day
|
||||||
if date_val[1]==0: #No month -> year
|
if date_val[1]==0: #No month -> year
|
||||||
value="%s" % year
|
value="%s" % year
|
||||||
else:
|
else:
|
||||||
value="%s. %02d." % (year, date_val[1]) #If no day -> year, month
|
value="%s. %02d." % (year, date_val[1]) #If no day -> year, month
|
||||||
else:
|
else:
|
||||||
value="%s. %02d. %02d." % (year, date_val[1], date_val[0])
|
value="%s. %02d. %02d." % (year, date_val[1], date_val[0])
|
||||||
|
|
||||||
@ -323,7 +323,7 @@ class DateDisplayHU(DateDisplay):
|
|||||||
|
|
||||||
|
|
||||||
elif self.format == 3:
|
elif self.format == 3:
|
||||||
#year, short month name, day
|
#year, short month name, day
|
||||||
|
|
||||||
if date_val[0]==0:
|
if date_val[0]==0:
|
||||||
if date_val[1]==0:
|
if date_val[1]==0:
|
||||||
@ -338,7 +338,7 @@ class DateDisplayHU(DateDisplay):
|
|||||||
|
|
||||||
|
|
||||||
elif self.format == 4:
|
elif self.format == 4:
|
||||||
#year, Roman number, day
|
#year, Roman number, day
|
||||||
|
|
||||||
if date_val[0]==0:
|
if date_val[0]==0:
|
||||||
if date_val[1]==0:
|
if date_val[1]==0:
|
||||||
|
@ -118,7 +118,7 @@ class DateParserPL(DateParser):
|
|||||||
'ok.' : Date.MOD_ABOUT,
|
'ok.' : Date.MOD_ABOUT,
|
||||||
'circa' : Date.MOD_ABOUT,
|
'circa' : Date.MOD_ABOUT,
|
||||||
'ca.' : Date.MOD_ABOUT,
|
'ca.' : Date.MOD_ABOUT,
|
||||||
# Alternative forms: misspellings sometimes used in emails
|
# Alternative forms: misspellings sometimes used in emails
|
||||||
'okolo' : Date.MOD_ABOUT,
|
'okolo' : Date.MOD_ABOUT,
|
||||||
'ok' : Date.MOD_ABOUT,
|
'ok' : Date.MOD_ABOUT,
|
||||||
}
|
}
|
||||||
|
@ -116,27 +116,27 @@ class RelationshipPathBetweenBookmarks(Rule):
|
|||||||
# in the relationship path between the two.
|
# in the relationship path between the two.
|
||||||
def rel_path_for_two(self, handle1, handle2):
|
def rel_path_for_two(self, handle1, handle2):
|
||||||
#print "rel_path_for_two (", handle1, self.hnm(handle1), ",", handle2, self.hnm(handle2), ")"
|
#print "rel_path_for_two (", handle1, self.hnm(handle1), ",", handle2, self.hnm(handle2), ")"
|
||||||
rel_path = {} # Result map
|
rel_path = {} # Result map
|
||||||
gmap1 = { handle1 : [ handle1 ] } # Key is ancestor, value is the path
|
gmap1 = { handle1 : [ handle1 ] } # Key is ancestor, value is the path
|
||||||
gmap2 = { handle2 : [ handle2 ] }
|
gmap2 = { handle2 : [ handle2 ] }
|
||||||
map1 = {}
|
map1 = {}
|
||||||
map2 = {}
|
map2 = {}
|
||||||
overlap = set( {} )
|
overlap = set( {} )
|
||||||
for rank in range(1, 50): # Limit depth of search
|
for rank in range(1, 50): # Limit depth of search
|
||||||
try:
|
try:
|
||||||
gmap1 = self.parents(gmap1) # Get previous generation into map
|
gmap1 = self.parents(gmap1) # Get previous generation into map
|
||||||
gmap2 = self.parents(gmap2) # Get previous generation into map
|
gmap2 = self.parents(gmap2) # Get previous generation into map
|
||||||
map1.update(gmap1) # Merge previous generation into map
|
map1.update(gmap1) # Merge previous generation into map
|
||||||
map2.update(gmap2) # Merge previous generation into map
|
map2.update(gmap2) # Merge previous generation into map
|
||||||
overlap = set(map1).intersection(set(map2)) # Any common ancestors?
|
overlap = set(map1).intersection(set(map2)) # Any common ancestors?
|
||||||
if len(overlap) > 0: break # If so, stop walking through generations
|
if len(overlap) > 0: break # If so, stop walking through generations
|
||||||
except: pass
|
except: pass
|
||||||
if len(overlap) < 1: # No common ancestor found
|
if len(overlap) < 1: # No common ancestor found
|
||||||
rel_path[handle1] = handle1 # Results for degenerate case
|
rel_path[handle1] = handle1 # Results for degenerate case
|
||||||
rel_path[handle2] = handle2
|
rel_path[handle2] = handle2
|
||||||
#print " In rel_path_for_two, returning rel_path = ", rel_path
|
#print " In rel_path_for_two, returning rel_path = ", rel_path
|
||||||
return rel_path
|
return rel_path
|
||||||
for handle in overlap: # Handle of common ancestor(s)
|
for handle in overlap: # Handle of common ancestor(s)
|
||||||
for phandle in map1[handle] + map2[handle]:
|
for phandle in map1[handle] + map2[handle]:
|
||||||
rel_path[phandle] = phandle
|
rel_path[phandle] = phandle
|
||||||
#print " In rel_path_for_two, returning rel_path = ", rel_path
|
#print " In rel_path_for_two, returning rel_path = ", rel_path
|
||||||
|
@ -24,228 +24,228 @@ Provide a rough estimate of the width of a text string.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
SWISS = [
|
SWISS = [
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.278, 0.278, 0.355, 0.556, 0.556, 0.889, 0.667, 0.191,
|
0.000, 0.000, 0.278, 0.278, 0.355, 0.556, 0.556, 0.889, 0.667, 0.191,
|
||||||
0.333, 0.333, 0.389, 0.584, 0.278, 0.333, 0.278, 0.278, 0.556, 0.556,
|
0.333, 0.333, 0.389, 0.584, 0.278, 0.333, 0.278, 0.278, 0.556, 0.556,
|
||||||
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.278, 0.278,
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.278, 0.278,
|
||||||
0.584, 0.584, 0.584, 0.556, 1.015, 0.667, 0.667, 0.722, 0.722, 0.667,
|
0.584, 0.584, 0.584, 0.556, 1.015, 0.667, 0.667, 0.722, 0.722, 0.667,
|
||||||
0.611, 0.778, 0.722, 0.278, 0.500, 0.667, 0.556, 0.833, 0.722, 0.778,
|
0.611, 0.778, 0.722, 0.278, 0.500, 0.667, 0.556, 0.833, 0.722, 0.778,
|
||||||
0.667, 0.778, 0.722, 0.667, 0.611, 0.722, 0.667, 0.944, 0.667, 0.667,
|
0.667, 0.778, 0.722, 0.667, 0.611, 0.722, 0.667, 0.944, 0.667, 0.667,
|
||||||
0.611, 0.278, 0.278, 0.278, 0.469, 0.556, 0.333, 0.556, 0.556, 0.500,
|
0.611, 0.278, 0.278, 0.278, 0.469, 0.556, 0.333, 0.556, 0.556, 0.500,
|
||||||
0.556, 0.556, 0.278, 0.556, 0.556, 0.222, 0.222, 0.500, 0.222, 0.833,
|
0.556, 0.556, 0.278, 0.556, 0.556, 0.222, 0.222, 0.500, 0.222, 0.833,
|
||||||
0.556, 0.556, 0.556, 0.556, 0.333, 0.500, 0.278, 0.556, 0.500, 0.722,
|
0.556, 0.556, 0.556, 0.556, 0.333, 0.500, 0.278, 0.556, 0.500, 0.722,
|
||||||
0.500, 0.500, 0.500, 0.334, 0.260, 0.334, 0.584, 0.350, 0.556, 0.350,
|
0.500, 0.500, 0.500, 0.334, 0.260, 0.334, 0.584, 0.350, 0.556, 0.350,
|
||||||
0.222, 0.556, 0.333, 1.000, 0.556, 0.556, 0.333, 1.000, 0.667, 0.333,
|
0.222, 0.556, 0.333, 1.000, 0.556, 0.556, 0.333, 1.000, 0.667, 0.333,
|
||||||
1.000, 0.350, 0.611, 0.350, 0.350, 0.222, 0.222, 0.333, 0.333, 0.350,
|
1.000, 0.350, 0.611, 0.350, 0.350, 0.222, 0.222, 0.333, 0.333, 0.350,
|
||||||
0.556, 1.000, 0.333, 1.000, 0.500, 0.333, 0.944, 0.350, 0.500, 0.667,
|
0.556, 1.000, 0.333, 1.000, 0.500, 0.333, 0.944, 0.350, 0.500, 0.667,
|
||||||
0.278, 0.333, 0.556, 0.556, 0.556, 0.556, 0.260, 0.556, 0.333, 0.737,
|
0.278, 0.333, 0.556, 0.556, 0.556, 0.556, 0.260, 0.556, 0.333, 0.737,
|
||||||
0.370, 0.556, 0.584, 0.333, 0.737, 0.333, 0.400, 0.584, 0.333, 0.333,
|
0.370, 0.556, 0.584, 0.333, 0.737, 0.333, 0.400, 0.584, 0.333, 0.333,
|
||||||
0.333, 0.556, 0.537, 0.278, 0.333, 0.333, 0.365, 0.556, 0.834, 0.834,
|
0.333, 0.556, 0.537, 0.278, 0.333, 0.333, 0.365, 0.556, 0.834, 0.834,
|
||||||
0.834, 0.611, 0.667, 0.667, 0.667, 0.667, 0.667, 0.667, 1.000, 0.722,
|
0.834, 0.611, 0.667, 0.667, 0.667, 0.667, 0.667, 0.667, 1.000, 0.722,
|
||||||
0.667, 0.667, 0.667, 0.667, 0.278, 0.278, 0.278, 0.278, 0.722, 0.722,
|
0.667, 0.667, 0.667, 0.667, 0.278, 0.278, 0.278, 0.278, 0.722, 0.722,
|
||||||
0.778, 0.778, 0.778, 0.778, 0.778, 0.584, 0.778, 0.722, 0.722, 0.722,
|
0.778, 0.778, 0.778, 0.778, 0.778, 0.584, 0.778, 0.722, 0.722, 0.722,
|
||||||
0.722, 0.667, 0.667, 0.611, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556,
|
0.722, 0.667, 0.667, 0.611, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556,
|
||||||
0.889, 0.500, 0.556, 0.556, 0.556, 0.556, 0.278, 0.278, 0.278, 0.278,
|
0.889, 0.500, 0.556, 0.556, 0.556, 0.556, 0.278, 0.278, 0.278, 0.278,
|
||||||
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.584, 0.611, 0.556,
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.584, 0.611, 0.556,
|
||||||
0.556, 0.556, 0.556, 0.500, 0.556, 0.500]
|
0.556, 0.556, 0.556, 0.500, 0.556, 0.500]
|
||||||
|
|
||||||
SWISS_B = [
|
SWISS_B = [
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.278, 0.333, 0.474, 0.556, 0.556, 0.889, 0.722, 0.238,
|
0.000, 0.000, 0.278, 0.333, 0.474, 0.556, 0.556, 0.889, 0.722, 0.238,
|
||||||
0.333, 0.333, 0.389, 0.584, 0.278, 0.333, 0.278, 0.278, 0.556, 0.556,
|
0.333, 0.333, 0.389, 0.584, 0.278, 0.333, 0.278, 0.278, 0.556, 0.556,
|
||||||
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.333, 0.333,
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.333, 0.333,
|
||||||
0.584, 0.584, 0.584, 0.611, 0.975, 0.722, 0.722, 0.722, 0.722, 0.667,
|
0.584, 0.584, 0.584, 0.611, 0.975, 0.722, 0.722, 0.722, 0.722, 0.667,
|
||||||
0.611, 0.778, 0.722, 0.278, 0.556, 0.722, 0.611, 0.833, 0.722, 0.778,
|
0.611, 0.778, 0.722, 0.278, 0.556, 0.722, 0.611, 0.833, 0.722, 0.778,
|
||||||
0.667, 0.778, 0.722, 0.667, 0.611, 0.722, 0.667, 0.944, 0.667, 0.667,
|
0.667, 0.778, 0.722, 0.667, 0.611, 0.722, 0.667, 0.944, 0.667, 0.667,
|
||||||
0.611, 0.333, 0.278, 0.333, 0.584, 0.556, 0.333, 0.556, 0.611, 0.556,
|
0.611, 0.333, 0.278, 0.333, 0.584, 0.556, 0.333, 0.556, 0.611, 0.556,
|
||||||
0.611, 0.556, 0.333, 0.611, 0.611, 0.278, 0.278, 0.556, 0.278, 0.889,
|
0.611, 0.556, 0.333, 0.611, 0.611, 0.278, 0.278, 0.556, 0.278, 0.889,
|
||||||
0.611, 0.611, 0.611, 0.611, 0.389, 0.556, 0.333, 0.611, 0.556, 0.778,
|
0.611, 0.611, 0.611, 0.611, 0.389, 0.556, 0.333, 0.611, 0.556, 0.778,
|
||||||
0.556, 0.556, 0.500, 0.389, 0.280, 0.389, 0.584, 0.350, 0.556, 0.350,
|
0.556, 0.556, 0.500, 0.389, 0.280, 0.389, 0.584, 0.350, 0.556, 0.350,
|
||||||
0.278, 0.556, 0.500, 1.000, 0.556, 0.556, 0.333, 1.000, 0.667, 0.333,
|
0.278, 0.556, 0.500, 1.000, 0.556, 0.556, 0.333, 1.000, 0.667, 0.333,
|
||||||
1.000, 0.350, 0.611, 0.350, 0.350, 0.278, 0.278, 0.500, 0.500, 0.350,
|
1.000, 0.350, 0.611, 0.350, 0.350, 0.278, 0.278, 0.500, 0.500, 0.350,
|
||||||
0.556, 1.000, 0.333, 1.000, 0.556, 0.333, 0.944, 0.350, 0.500, 0.667,
|
0.556, 1.000, 0.333, 1.000, 0.556, 0.333, 0.944, 0.350, 0.500, 0.667,
|
||||||
0.278, 0.333, 0.556, 0.556, 0.556, 0.556, 0.280, 0.556, 0.333, 0.737,
|
0.278, 0.333, 0.556, 0.556, 0.556, 0.556, 0.280, 0.556, 0.333, 0.737,
|
||||||
0.370, 0.556, 0.584, 0.333, 0.737, 0.333, 0.400, 0.584, 0.333, 0.333,
|
0.370, 0.556, 0.584, 0.333, 0.737, 0.333, 0.400, 0.584, 0.333, 0.333,
|
||||||
0.333, 0.611, 0.556, 0.278, 0.333, 0.333, 0.365, 0.556, 0.834, 0.834,
|
0.333, 0.611, 0.556, 0.278, 0.333, 0.333, 0.365, 0.556, 0.834, 0.834,
|
||||||
0.834, 0.611, 0.722, 0.722, 0.722, 0.722, 0.722, 0.722, 1.000, 0.722,
|
0.834, 0.611, 0.722, 0.722, 0.722, 0.722, 0.722, 0.722, 1.000, 0.722,
|
||||||
0.667, 0.667, 0.667, 0.667, 0.278, 0.278, 0.278, 0.278, 0.722, 0.722,
|
0.667, 0.667, 0.667, 0.667, 0.278, 0.278, 0.278, 0.278, 0.722, 0.722,
|
||||||
0.778, 0.778, 0.778, 0.778, 0.778, 0.584, 0.778, 0.722, 0.722, 0.722,
|
0.778, 0.778, 0.778, 0.778, 0.778, 0.584, 0.778, 0.722, 0.722, 0.722,
|
||||||
0.722, 0.667, 0.667, 0.611, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556,
|
0.722, 0.667, 0.667, 0.611, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556,
|
||||||
0.889, 0.556, 0.556, 0.556, 0.556, 0.556, 0.278, 0.278, 0.278, 0.278,
|
0.889, 0.556, 0.556, 0.556, 0.556, 0.556, 0.278, 0.278, 0.278, 0.278,
|
||||||
0.611, 0.611, 0.611, 0.611, 0.611, 0.611, 0.611, 0.584, 0.611, 0.611,
|
0.611, 0.611, 0.611, 0.611, 0.611, 0.611, 0.611, 0.584, 0.611, 0.611,
|
||||||
0.611, 0.611, 0.611, 0.556, 0.611, 0.556]
|
0.611, 0.611, 0.611, 0.556, 0.611, 0.556]
|
||||||
|
|
||||||
SWISS_I = [
|
SWISS_I = [
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.278, 0.278, 0.355, 0.556, 0.556, 0.889, 0.667, 0.191,
|
0.000, 0.000, 0.278, 0.278, 0.355, 0.556, 0.556, 0.889, 0.667, 0.191,
|
||||||
0.333, 0.333, 0.389, 0.584, 0.278, 0.333, 0.278, 0.278, 0.556, 0.556,
|
0.333, 0.333, 0.389, 0.584, 0.278, 0.333, 0.278, 0.278, 0.556, 0.556,
|
||||||
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.278, 0.278,
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.278, 0.278,
|
||||||
0.584, 0.584, 0.584, 0.556, 1.015, 0.667, 0.667, 0.722, 0.722, 0.667,
|
0.584, 0.584, 0.584, 0.556, 1.015, 0.667, 0.667, 0.722, 0.722, 0.667,
|
||||||
0.611, 0.778, 0.722, 0.278, 0.500, 0.667, 0.556, 0.833, 0.722, 0.778,
|
0.611, 0.778, 0.722, 0.278, 0.500, 0.667, 0.556, 0.833, 0.722, 0.778,
|
||||||
0.667, 0.778, 0.722, 0.667, 0.611, 0.722, 0.667, 0.944, 0.667, 0.667,
|
0.667, 0.778, 0.722, 0.667, 0.611, 0.722, 0.667, 0.944, 0.667, 0.667,
|
||||||
0.611, 0.278, 0.278, 0.278, 0.469, 0.556, 0.333, 0.556, 0.556, 0.500,
|
0.611, 0.278, 0.278, 0.278, 0.469, 0.556, 0.333, 0.556, 0.556, 0.500,
|
||||||
0.556, 0.556, 0.278, 0.556, 0.556, 0.222, 0.222, 0.500, 0.222, 0.833,
|
0.556, 0.556, 0.278, 0.556, 0.556, 0.222, 0.222, 0.500, 0.222, 0.833,
|
||||||
0.556, 0.556, 0.556, 0.556, 0.333, 0.500, 0.278, 0.556, 0.500, 0.722,
|
0.556, 0.556, 0.556, 0.556, 0.333, 0.500, 0.278, 0.556, 0.500, 0.722,
|
||||||
0.500, 0.500, 0.500, 0.334, 0.260, 0.334, 0.584, 0.350, 0.556, 0.350,
|
0.500, 0.500, 0.500, 0.334, 0.260, 0.334, 0.584, 0.350, 0.556, 0.350,
|
||||||
0.222, 0.556, 0.333, 1.000, 0.556, 0.556, 0.333, 1.000, 0.667, 0.333,
|
0.222, 0.556, 0.333, 1.000, 0.556, 0.556, 0.333, 1.000, 0.667, 0.333,
|
||||||
1.000, 0.350, 0.611, 0.350, 0.350, 0.222, 0.222, 0.333, 0.333, 0.350,
|
1.000, 0.350, 0.611, 0.350, 0.350, 0.222, 0.222, 0.333, 0.333, 0.350,
|
||||||
0.556, 1.000, 0.333, 1.000, 0.500, 0.333, 0.944, 0.350, 0.500, 0.667,
|
0.556, 1.000, 0.333, 1.000, 0.500, 0.333, 0.944, 0.350, 0.500, 0.667,
|
||||||
0.278, 0.333, 0.556, 0.556, 0.556, 0.556, 0.260, 0.556, 0.333, 0.737,
|
0.278, 0.333, 0.556, 0.556, 0.556, 0.556, 0.260, 0.556, 0.333, 0.737,
|
||||||
0.370, 0.556, 0.584, 0.333, 0.737, 0.333, 0.400, 0.584, 0.333, 0.333,
|
0.370, 0.556, 0.584, 0.333, 0.737, 0.333, 0.400, 0.584, 0.333, 0.333,
|
||||||
0.333, 0.556, 0.537, 0.278, 0.333, 0.333, 0.365, 0.556, 0.834, 0.834,
|
0.333, 0.556, 0.537, 0.278, 0.333, 0.333, 0.365, 0.556, 0.834, 0.834,
|
||||||
0.834, 0.611, 0.667, 0.667, 0.667, 0.667, 0.667, 0.667, 1.000, 0.722,
|
0.834, 0.611, 0.667, 0.667, 0.667, 0.667, 0.667, 0.667, 1.000, 0.722,
|
||||||
0.667, 0.667, 0.667, 0.667, 0.278, 0.278, 0.278, 0.278, 0.722, 0.722,
|
0.667, 0.667, 0.667, 0.667, 0.278, 0.278, 0.278, 0.278, 0.722, 0.722,
|
||||||
0.778, 0.778, 0.778, 0.778, 0.778, 0.584, 0.778, 0.722, 0.722, 0.722,
|
0.778, 0.778, 0.778, 0.778, 0.778, 0.584, 0.778, 0.722, 0.722, 0.722,
|
||||||
0.722, 0.667, 0.667, 0.611, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556,
|
0.722, 0.667, 0.667, 0.611, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556,
|
||||||
0.889, 0.500, 0.556, 0.556, 0.556, 0.556, 0.278, 0.278, 0.278, 0.278,
|
0.889, 0.500, 0.556, 0.556, 0.556, 0.556, 0.278, 0.278, 0.278, 0.278,
|
||||||
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.584, 0.611, 0.556,
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.584, 0.611, 0.556,
|
||||||
0.556, 0.556, 0.556, 0.500, 0.556, 0.500]
|
0.556, 0.556, 0.556, 0.500, 0.556, 0.500]
|
||||||
|
|
||||||
SWISS_BI = [
|
SWISS_BI = [
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.278, 0.333, 0.474, 0.556, 0.556, 0.889, 0.722, 0.238,
|
0.000, 0.000, 0.278, 0.333, 0.474, 0.556, 0.556, 0.889, 0.722, 0.238,
|
||||||
0.333, 0.333, 0.389, 0.584, 0.278, 0.333, 0.278, 0.278, 0.556, 0.556,
|
0.333, 0.333, 0.389, 0.584, 0.278, 0.333, 0.278, 0.278, 0.556, 0.556,
|
||||||
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.333, 0.333,
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.333, 0.333,
|
||||||
0.584, 0.584, 0.584, 0.611, 0.975, 0.722, 0.722, 0.722, 0.722, 0.667,
|
0.584, 0.584, 0.584, 0.611, 0.975, 0.722, 0.722, 0.722, 0.722, 0.667,
|
||||||
0.611, 0.778, 0.722, 0.278, 0.556, 0.722, 0.611, 0.833, 0.722, 0.778,
|
0.611, 0.778, 0.722, 0.278, 0.556, 0.722, 0.611, 0.833, 0.722, 0.778,
|
||||||
0.667, 0.778, 0.722, 0.667, 0.611, 0.722, 0.667, 0.944, 0.667, 0.667,
|
0.667, 0.778, 0.722, 0.667, 0.611, 0.722, 0.667, 0.944, 0.667, 0.667,
|
||||||
0.611, 0.333, 0.278, 0.333, 0.584, 0.556, 0.333, 0.556, 0.611, 0.556,
|
0.611, 0.333, 0.278, 0.333, 0.584, 0.556, 0.333, 0.556, 0.611, 0.556,
|
||||||
0.611, 0.556, 0.333, 0.611, 0.611, 0.278, 0.278, 0.556, 0.278, 0.889,
|
0.611, 0.556, 0.333, 0.611, 0.611, 0.278, 0.278, 0.556, 0.278, 0.889,
|
||||||
0.611, 0.611, 0.611, 0.611, 0.389, 0.556, 0.333, 0.611, 0.556, 0.778,
|
0.611, 0.611, 0.611, 0.611, 0.389, 0.556, 0.333, 0.611, 0.556, 0.778,
|
||||||
0.556, 0.556, 0.500, 0.389, 0.280, 0.389, 0.584, 0.350, 0.556, 0.350,
|
0.556, 0.556, 0.500, 0.389, 0.280, 0.389, 0.584, 0.350, 0.556, 0.350,
|
||||||
0.278, 0.556, 0.500, 1.000, 0.556, 0.556, 0.333, 1.000, 0.667, 0.333,
|
0.278, 0.556, 0.500, 1.000, 0.556, 0.556, 0.333, 1.000, 0.667, 0.333,
|
||||||
1.000, 0.350, 0.611, 0.350, 0.350, 0.278, 0.278, 0.500, 0.500, 0.350,
|
1.000, 0.350, 0.611, 0.350, 0.350, 0.278, 0.278, 0.500, 0.500, 0.350,
|
||||||
0.556, 1.000, 0.333, 1.000, 0.556, 0.333, 0.944, 0.350, 0.500, 0.667,
|
0.556, 1.000, 0.333, 1.000, 0.556, 0.333, 0.944, 0.350, 0.500, 0.667,
|
||||||
0.278, 0.333, 0.556, 0.556, 0.556, 0.556, 0.280, 0.556, 0.333, 0.737,
|
0.278, 0.333, 0.556, 0.556, 0.556, 0.556, 0.280, 0.556, 0.333, 0.737,
|
||||||
0.370, 0.556, 0.584, 0.333, 0.737, 0.333, 0.400, 0.584, 0.333, 0.333,
|
0.370, 0.556, 0.584, 0.333, 0.737, 0.333, 0.400, 0.584, 0.333, 0.333,
|
||||||
0.333, 0.611, 0.556, 0.278, 0.333, 0.333, 0.365, 0.556, 0.834, 0.834,
|
0.333, 0.611, 0.556, 0.278, 0.333, 0.333, 0.365, 0.556, 0.834, 0.834,
|
||||||
0.834, 0.611, 0.722, 0.722, 0.722, 0.722, 0.722, 0.722, 1.000, 0.722,
|
0.834, 0.611, 0.722, 0.722, 0.722, 0.722, 0.722, 0.722, 1.000, 0.722,
|
||||||
0.667, 0.667, 0.667, 0.667, 0.278, 0.278, 0.278, 0.278, 0.722, 0.722,
|
0.667, 0.667, 0.667, 0.667, 0.278, 0.278, 0.278, 0.278, 0.722, 0.722,
|
||||||
0.778, 0.778, 0.778, 0.778, 0.778, 0.584, 0.778, 0.722, 0.722, 0.722,
|
0.778, 0.778, 0.778, 0.778, 0.778, 0.584, 0.778, 0.722, 0.722, 0.722,
|
||||||
0.722, 0.667, 0.667, 0.611, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556,
|
0.722, 0.667, 0.667, 0.611, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556,
|
||||||
0.889, 0.556, 0.556, 0.556, 0.556, 0.556, 0.278, 0.278, 0.278, 0.278,
|
0.889, 0.556, 0.556, 0.556, 0.556, 0.556, 0.278, 0.278, 0.278, 0.278,
|
||||||
0.611, 0.611, 0.611, 0.611, 0.611, 0.611, 0.611, 0.584, 0.611, 0.611,
|
0.611, 0.611, 0.611, 0.611, 0.611, 0.611, 0.611, 0.584, 0.611, 0.611,
|
||||||
0.611, 0.611, 0.611, 0.556, 0.611, 0.556]
|
0.611, 0.611, 0.611, 0.556, 0.611, 0.556]
|
||||||
|
|
||||||
ROMAN = [
|
ROMAN = [
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.250, 0.333, 0.408, 0.500, 0.500, 0.833, 0.778, 0.180,
|
0.000, 0.000, 0.250, 0.333, 0.408, 0.500, 0.500, 0.833, 0.778, 0.180,
|
||||||
0.333, 0.333, 0.500, 0.564, 0.250, 0.333, 0.250, 0.278, 0.500, 0.500,
|
0.333, 0.333, 0.500, 0.564, 0.250, 0.333, 0.250, 0.278, 0.500, 0.500,
|
||||||
0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.278, 0.278,
|
0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.278, 0.278,
|
||||||
0.564, 0.564, 0.564, 0.444, 0.921, 0.722, 0.667, 0.667, 0.722, 0.611,
|
0.564, 0.564, 0.564, 0.444, 0.921, 0.722, 0.667, 0.667, 0.722, 0.611,
|
||||||
0.556, 0.722, 0.722, 0.333, 0.389, 0.722, 0.611, 0.889, 0.722, 0.722,
|
0.556, 0.722, 0.722, 0.333, 0.389, 0.722, 0.611, 0.889, 0.722, 0.722,
|
||||||
0.556, 0.722, 0.667, 0.556, 0.611, 0.722, 0.722, 0.944, 0.722, 0.722,
|
0.556, 0.722, 0.667, 0.556, 0.611, 0.722, 0.722, 0.944, 0.722, 0.722,
|
||||||
0.611, 0.333, 0.278, 0.333, 0.469, 0.500, 0.333, 0.444, 0.500, 0.444,
|
0.611, 0.333, 0.278, 0.333, 0.469, 0.500, 0.333, 0.444, 0.500, 0.444,
|
||||||
0.500, 0.444, 0.333, 0.500, 0.500, 0.278, 0.278, 0.500, 0.278, 0.778,
|
0.500, 0.444, 0.333, 0.500, 0.500, 0.278, 0.278, 0.500, 0.278, 0.778,
|
||||||
0.500, 0.500, 0.500, 0.500, 0.333, 0.389, 0.278, 0.500, 0.500, 0.722,
|
0.500, 0.500, 0.500, 0.500, 0.333, 0.389, 0.278, 0.500, 0.500, 0.722,
|
||||||
0.500, 0.500, 0.444, 0.480, 0.200, 0.480, 0.541, 0.350, 0.500, 0.350,
|
0.500, 0.500, 0.444, 0.480, 0.200, 0.480, 0.541, 0.350, 0.500, 0.350,
|
||||||
0.333, 0.500, 0.444, 1.000, 0.500, 0.500, 0.333, 1.000, 0.556, 0.333,
|
0.333, 0.500, 0.444, 1.000, 0.500, 0.500, 0.333, 1.000, 0.556, 0.333,
|
||||||
0.889, 0.350, 0.611, 0.350, 0.350, 0.333, 0.333, 0.444, 0.444, 0.350,
|
0.889, 0.350, 0.611, 0.350, 0.350, 0.333, 0.333, 0.444, 0.444, 0.350,
|
||||||
0.500, 1.000, 0.333, 0.980, 0.389, 0.333, 0.722, 0.350, 0.444, 0.722,
|
0.500, 1.000, 0.333, 0.980, 0.389, 0.333, 0.722, 0.350, 0.444, 0.722,
|
||||||
0.250, 0.333, 0.500, 0.500, 0.500, 0.500, 0.200, 0.500, 0.333, 0.760,
|
0.250, 0.333, 0.500, 0.500, 0.500, 0.500, 0.200, 0.500, 0.333, 0.760,
|
||||||
0.276, 0.500, 0.564, 0.333, 0.760, 0.333, 0.400, 0.564, 0.300, 0.300,
|
0.276, 0.500, 0.564, 0.333, 0.760, 0.333, 0.400, 0.564, 0.300, 0.300,
|
||||||
0.333, 0.500, 0.453, 0.250, 0.333, 0.300, 0.310, 0.500, 0.750, 0.750,
|
0.333, 0.500, 0.453, 0.250, 0.333, 0.300, 0.310, 0.500, 0.750, 0.750,
|
||||||
0.750, 0.444, 0.722, 0.722, 0.722, 0.722, 0.722, 0.722, 0.889, 0.667,
|
0.750, 0.444, 0.722, 0.722, 0.722, 0.722, 0.722, 0.722, 0.889, 0.667,
|
||||||
0.611, 0.611, 0.611, 0.611, 0.333, 0.333, 0.333, 0.333, 0.722, 0.722,
|
0.611, 0.611, 0.611, 0.611, 0.333, 0.333, 0.333, 0.333, 0.722, 0.722,
|
||||||
0.722, 0.722, 0.722, 0.722, 0.722, 0.564, 0.722, 0.722, 0.722, 0.722,
|
0.722, 0.722, 0.722, 0.722, 0.722, 0.564, 0.722, 0.722, 0.722, 0.722,
|
||||||
0.722, 0.722, 0.556, 0.500, 0.444, 0.444, 0.444, 0.444, 0.444, 0.444,
|
0.722, 0.722, 0.556, 0.500, 0.444, 0.444, 0.444, 0.444, 0.444, 0.444,
|
||||||
0.667, 0.444, 0.444, 0.444, 0.444, 0.444, 0.278, 0.278, 0.278, 0.278,
|
0.667, 0.444, 0.444, 0.444, 0.444, 0.444, 0.278, 0.278, 0.278, 0.278,
|
||||||
0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.564, 0.500, 0.500,
|
0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.564, 0.500, 0.500,
|
||||||
0.500, 0.500, 0.500, 0.500, 0.500, 0.500]
|
0.500, 0.500, 0.500, 0.500, 0.500, 0.500]
|
||||||
|
|
||||||
ROMAN_B = [
|
ROMAN_B = [
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.250, 0.333, 0.555, 0.500, 0.500, 1.000, 0.833, 0.278,
|
0.000, 0.000, 0.250, 0.333, 0.555, 0.500, 0.500, 1.000, 0.833, 0.278,
|
||||||
0.333, 0.333, 0.500, 0.570, 0.250, 0.333, 0.250, 0.278, 0.500, 0.500,
|
0.333, 0.333, 0.500, 0.570, 0.250, 0.333, 0.250, 0.278, 0.500, 0.500,
|
||||||
0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.333, 0.333,
|
0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.333, 0.333,
|
||||||
0.570, 0.570, 0.570, 0.500, 0.930, 0.722, 0.667, 0.722, 0.722, 0.667,
|
0.570, 0.570, 0.570, 0.500, 0.930, 0.722, 0.667, 0.722, 0.722, 0.667,
|
||||||
0.611, 0.778, 0.778, 0.389, 0.500, 0.778, 0.667, 0.944, 0.722, 0.778,
|
0.611, 0.778, 0.778, 0.389, 0.500, 0.778, 0.667, 0.944, 0.722, 0.778,
|
||||||
0.611, 0.778, 0.722, 0.556, 0.667, 0.722, 0.722, 1.000, 0.722, 0.722,
|
0.611, 0.778, 0.722, 0.556, 0.667, 0.722, 0.722, 1.000, 0.722, 0.722,
|
||||||
0.667, 0.333, 0.278, 0.333, 0.581, 0.500, 0.333, 0.500, 0.556, 0.444,
|
0.667, 0.333, 0.278, 0.333, 0.581, 0.500, 0.333, 0.500, 0.556, 0.444,
|
||||||
0.556, 0.444, 0.333, 0.500, 0.556, 0.278, 0.333, 0.556, 0.278, 0.833,
|
0.556, 0.444, 0.333, 0.500, 0.556, 0.278, 0.333, 0.556, 0.278, 0.833,
|
||||||
0.556, 0.500, 0.556, 0.556, 0.444, 0.389, 0.333, 0.556, 0.500, 0.722,
|
0.556, 0.500, 0.556, 0.556, 0.444, 0.389, 0.333, 0.556, 0.500, 0.722,
|
||||||
0.500, 0.500, 0.444, 0.394, 0.220, 0.394, 0.520, 0.350, 0.500, 0.350,
|
0.500, 0.500, 0.444, 0.394, 0.220, 0.394, 0.520, 0.350, 0.500, 0.350,
|
||||||
0.333, 0.500, 0.500, 1.000, 0.500, 0.500, 0.333, 1.000, 0.556, 0.333,
|
0.333, 0.500, 0.500, 1.000, 0.500, 0.500, 0.333, 1.000, 0.556, 0.333,
|
||||||
1.000, 0.350, 0.667, 0.350, 0.350, 0.333, 0.333, 0.500, 0.500, 0.350,
|
1.000, 0.350, 0.667, 0.350, 0.350, 0.333, 0.333, 0.500, 0.500, 0.350,
|
||||||
0.500, 1.000, 0.333, 1.000, 0.389, 0.333, 0.722, 0.350, 0.444, 0.722,
|
0.500, 1.000, 0.333, 1.000, 0.389, 0.333, 0.722, 0.350, 0.444, 0.722,
|
||||||
0.250, 0.333, 0.500, 0.500, 0.500, 0.500, 0.220, 0.500, 0.333, 0.747,
|
0.250, 0.333, 0.500, 0.500, 0.500, 0.500, 0.220, 0.500, 0.333, 0.747,
|
||||||
0.300, 0.500, 0.570, 0.333, 0.747, 0.333, 0.400, 0.570, 0.300, 0.300,
|
0.300, 0.500, 0.570, 0.333, 0.747, 0.333, 0.400, 0.570, 0.300, 0.300,
|
||||||
0.333, 0.556, 0.540, 0.250, 0.333, 0.300, 0.330, 0.500, 0.750, 0.750,
|
0.333, 0.556, 0.540, 0.250, 0.333, 0.300, 0.330, 0.500, 0.750, 0.750,
|
||||||
0.750, 0.500, 0.722, 0.722, 0.722, 0.722, 0.722, 0.722, 1.000, 0.722,
|
0.750, 0.500, 0.722, 0.722, 0.722, 0.722, 0.722, 0.722, 1.000, 0.722,
|
||||||
0.667, 0.667, 0.667, 0.667, 0.389, 0.389, 0.389, 0.389, 0.722, 0.722,
|
0.667, 0.667, 0.667, 0.667, 0.389, 0.389, 0.389, 0.389, 0.722, 0.722,
|
||||||
0.778, 0.778, 0.778, 0.778, 0.778, 0.570, 0.778, 0.722, 0.722, 0.722,
|
0.778, 0.778, 0.778, 0.778, 0.778, 0.570, 0.778, 0.722, 0.722, 0.722,
|
||||||
0.722, 0.722, 0.611, 0.556, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500,
|
0.722, 0.722, 0.611, 0.556, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500,
|
||||||
0.722, 0.444, 0.444, 0.444, 0.444, 0.444, 0.278, 0.278, 0.278, 0.278,
|
0.722, 0.444, 0.444, 0.444, 0.444, 0.444, 0.278, 0.278, 0.278, 0.278,
|
||||||
0.500, 0.556, 0.500, 0.500, 0.500, 0.500, 0.500, 0.570, 0.500, 0.556,
|
0.500, 0.556, 0.500, 0.500, 0.500, 0.500, 0.500, 0.570, 0.500, 0.556,
|
||||||
0.556, 0.556, 0.556, 0.500, 0.556, 0.500]
|
0.556, 0.556, 0.556, 0.500, 0.556, 0.500]
|
||||||
|
|
||||||
ROMAN_I = [
|
ROMAN_I = [
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.250, 0.333, 0.420, 0.500, 0.500, 0.833, 0.778, 0.214,
|
0.000, 0.000, 0.250, 0.333, 0.420, 0.500, 0.500, 0.833, 0.778, 0.214,
|
||||||
0.333, 0.333, 0.500, 0.675, 0.250, 0.333, 0.250, 0.278, 0.500, 0.500,
|
0.333, 0.333, 0.500, 0.675, 0.250, 0.333, 0.250, 0.278, 0.500, 0.500,
|
||||||
0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.333, 0.333,
|
0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.333, 0.333,
|
||||||
0.675, 0.675, 0.675, 0.500, 0.920, 0.611, 0.611, 0.667, 0.722, 0.611,
|
0.675, 0.675, 0.675, 0.500, 0.920, 0.611, 0.611, 0.667, 0.722, 0.611,
|
||||||
0.611, 0.722, 0.722, 0.333, 0.444, 0.667, 0.556, 0.833, 0.667, 0.722,
|
0.611, 0.722, 0.722, 0.333, 0.444, 0.667, 0.556, 0.833, 0.667, 0.722,
|
||||||
0.611, 0.722, 0.611, 0.500, 0.556, 0.722, 0.611, 0.833, 0.611, 0.556,
|
0.611, 0.722, 0.611, 0.500, 0.556, 0.722, 0.611, 0.833, 0.611, 0.556,
|
||||||
0.556, 0.389, 0.278, 0.389, 0.422, 0.500, 0.333, 0.500, 0.500, 0.444,
|
0.556, 0.389, 0.278, 0.389, 0.422, 0.500, 0.333, 0.500, 0.500, 0.444,
|
||||||
0.500, 0.444, 0.278, 0.500, 0.500, 0.278, 0.278, 0.444, 0.278, 0.722,
|
0.500, 0.444, 0.278, 0.500, 0.500, 0.278, 0.278, 0.444, 0.278, 0.722,
|
||||||
0.500, 0.500, 0.500, 0.500, 0.389, 0.389, 0.278, 0.500, 0.444, 0.667,
|
0.500, 0.500, 0.500, 0.500, 0.389, 0.389, 0.278, 0.500, 0.444, 0.667,
|
||||||
0.444, 0.444, 0.389, 0.400, 0.275, 0.400, 0.541, 0.350, 0.500, 0.350,
|
0.444, 0.444, 0.389, 0.400, 0.275, 0.400, 0.541, 0.350, 0.500, 0.350,
|
||||||
0.333, 0.500, 0.556, 0.889, 0.500, 0.500, 0.333, 1.000, 0.500, 0.333,
|
0.333, 0.500, 0.556, 0.889, 0.500, 0.500, 0.333, 1.000, 0.500, 0.333,
|
||||||
0.944, 0.350, 0.556, 0.350, 0.350, 0.333, 0.333, 0.556, 0.556, 0.350,
|
0.944, 0.350, 0.556, 0.350, 0.350, 0.333, 0.333, 0.556, 0.556, 0.350,
|
||||||
0.500, 0.889, 0.333, 0.980, 0.389, 0.333, 0.667, 0.350, 0.389, 0.556,
|
0.500, 0.889, 0.333, 0.980, 0.389, 0.333, 0.667, 0.350, 0.389, 0.556,
|
||||||
0.250, 0.389, 0.500, 0.500, 0.500, 0.500, 0.275, 0.500, 0.333, 0.760,
|
0.250, 0.389, 0.500, 0.500, 0.500, 0.500, 0.275, 0.500, 0.333, 0.760,
|
||||||
0.276, 0.500, 0.675, 0.333, 0.760, 0.333, 0.400, 0.675, 0.300, 0.300,
|
0.276, 0.500, 0.675, 0.333, 0.760, 0.333, 0.400, 0.675, 0.300, 0.300,
|
||||||
0.333, 0.500, 0.523, 0.250, 0.333, 0.300, 0.310, 0.500, 0.750, 0.750,
|
0.333, 0.500, 0.523, 0.250, 0.333, 0.300, 0.310, 0.500, 0.750, 0.750,
|
||||||
0.750, 0.500, 0.611, 0.611, 0.611, 0.611, 0.611, 0.611, 0.889, 0.667,
|
0.750, 0.500, 0.611, 0.611, 0.611, 0.611, 0.611, 0.611, 0.889, 0.667,
|
||||||
0.611, 0.611, 0.611, 0.611, 0.333, 0.333, 0.333, 0.333, 0.722, 0.667,
|
0.611, 0.611, 0.611, 0.611, 0.333, 0.333, 0.333, 0.333, 0.722, 0.667,
|
||||||
0.722, 0.722, 0.722, 0.722, 0.722, 0.675, 0.722, 0.722, 0.722, 0.722,
|
0.722, 0.722, 0.722, 0.722, 0.722, 0.675, 0.722, 0.722, 0.722, 0.722,
|
||||||
0.722, 0.556, 0.611, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500,
|
0.722, 0.556, 0.611, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500,
|
||||||
0.667, 0.444, 0.444, 0.444, 0.444, 0.444, 0.278, 0.278, 0.278, 0.278,
|
0.667, 0.444, 0.444, 0.444, 0.444, 0.444, 0.278, 0.278, 0.278, 0.278,
|
||||||
0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.675, 0.500, 0.500,
|
0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.675, 0.500, 0.500,
|
||||||
0.500, 0.500, 0.500, 0.444, 0.500, 0.444]
|
0.500, 0.500, 0.500, 0.444, 0.500, 0.444]
|
||||||
|
|
||||||
ROMAN_BI = [
|
ROMAN_BI = [
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000,
|
||||||
0.000, 0.000, 0.250, 0.389, 0.555, 0.500, 0.500, 0.833, 0.778, 0.278,
|
0.000, 0.000, 0.250, 0.389, 0.555, 0.500, 0.500, 0.833, 0.778, 0.278,
|
||||||
0.333, 0.333, 0.500, 0.570, 0.250, 0.333, 0.250, 0.278, 0.500, 0.500,
|
0.333, 0.333, 0.500, 0.570, 0.250, 0.333, 0.250, 0.278, 0.500, 0.500,
|
||||||
0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.333, 0.333,
|
0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.333, 0.333,
|
||||||
0.570, 0.570, 0.570, 0.500, 0.832, 0.667, 0.667, 0.667, 0.722, 0.667,
|
0.570, 0.570, 0.570, 0.500, 0.832, 0.667, 0.667, 0.667, 0.722, 0.667,
|
||||||
0.667, 0.722, 0.778, 0.389, 0.500, 0.667, 0.611, 0.889, 0.722, 0.722,
|
0.667, 0.722, 0.778, 0.389, 0.500, 0.667, 0.611, 0.889, 0.722, 0.722,
|
||||||
0.611, 0.722, 0.667, 0.556, 0.611, 0.722, 0.667, 0.889, 0.667, 0.611,
|
0.611, 0.722, 0.667, 0.556, 0.611, 0.722, 0.667, 0.889, 0.667, 0.611,
|
||||||
0.611, 0.333, 0.278, 0.333, 0.570, 0.500, 0.333, 0.500, 0.500, 0.444,
|
0.611, 0.333, 0.278, 0.333, 0.570, 0.500, 0.333, 0.500, 0.500, 0.444,
|
||||||
0.500, 0.444, 0.333, 0.500, 0.556, 0.278, 0.278, 0.500, 0.278, 0.778,
|
0.500, 0.444, 0.333, 0.500, 0.556, 0.278, 0.278, 0.500, 0.278, 0.778,
|
||||||
0.556, 0.500, 0.500, 0.500, 0.389, 0.389, 0.278, 0.556, 0.444, 0.667,
|
0.556, 0.500, 0.500, 0.500, 0.389, 0.389, 0.278, 0.556, 0.444, 0.667,
|
||||||
0.500, 0.444, 0.389, 0.348, 0.220, 0.348, 0.570, 0.350, 0.500, 0.350,
|
0.500, 0.444, 0.389, 0.348, 0.220, 0.348, 0.570, 0.350, 0.500, 0.350,
|
||||||
0.333, 0.500, 0.500, 1.000, 0.500, 0.500, 0.333, 1.000, 0.556, 0.333,
|
0.333, 0.500, 0.500, 1.000, 0.500, 0.500, 0.333, 1.000, 0.556, 0.333,
|
||||||
0.944, 0.350, 0.611, 0.350, 0.350, 0.333, 0.333, 0.500, 0.500, 0.350,
|
0.944, 0.350, 0.611, 0.350, 0.350, 0.333, 0.333, 0.500, 0.500, 0.350,
|
||||||
0.500, 1.000, 0.333, 1.000, 0.389, 0.333, 0.722, 0.350, 0.389, 0.611,
|
0.500, 1.000, 0.333, 1.000, 0.389, 0.333, 0.722, 0.350, 0.389, 0.611,
|
||||||
0.250, 0.389, 0.500, 0.500, 0.500, 0.500, 0.220, 0.500, 0.333, 0.747,
|
0.250, 0.389, 0.500, 0.500, 0.500, 0.500, 0.220, 0.500, 0.333, 0.747,
|
||||||
0.266, 0.500, 0.606, 0.333, 0.747, 0.333, 0.400, 0.570, 0.300, 0.300,
|
0.266, 0.500, 0.606, 0.333, 0.747, 0.333, 0.400, 0.570, 0.300, 0.300,
|
||||||
0.333, 0.576, 0.500, 0.250, 0.333, 0.300, 0.300, 0.500, 0.750, 0.750,
|
0.333, 0.576, 0.500, 0.250, 0.333, 0.300, 0.300, 0.500, 0.750, 0.750,
|
||||||
0.750, 0.500, 0.667, 0.667, 0.667, 0.667, 0.667, 0.667, 0.944, 0.667,
|
0.750, 0.500, 0.667, 0.667, 0.667, 0.667, 0.667, 0.667, 0.944, 0.667,
|
||||||
0.667, 0.667, 0.667, 0.667, 0.389, 0.389, 0.389, 0.389, 0.722, 0.722,
|
0.667, 0.667, 0.667, 0.667, 0.389, 0.389, 0.389, 0.389, 0.722, 0.722,
|
||||||
0.722, 0.722, 0.722, 0.722, 0.722, 0.570, 0.722, 0.722, 0.722, 0.722,
|
0.722, 0.722, 0.722, 0.722, 0.722, 0.570, 0.722, 0.722, 0.722, 0.722,
|
||||||
0.722, 0.611, 0.611, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500,
|
0.722, 0.611, 0.611, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500, 0.500,
|
||||||
0.722, 0.444, 0.444, 0.444, 0.444, 0.444, 0.278, 0.278, 0.278, 0.278,
|
0.722, 0.444, 0.444, 0.444, 0.444, 0.444, 0.278, 0.278, 0.278, 0.278,
|
||||||
0.500, 0.556, 0.500, 0.500, 0.500, 0.500, 0.500, 0.570, 0.500, 0.556,
|
0.500, 0.556, 0.500, 0.500, 0.500, 0.500, 0.500, 0.570, 0.500, 0.556,
|
||||||
0.556, 0.556, 0.556, 0.444, 0.500, 0.444]
|
0.556, 0.556, 0.556, 0.444, 0.500, 0.444]
|
||||||
|
|
||||||
FONT_ARRAY = [ [SWISS, SWISS_B, SWISS_I, SWISS_BI ],
|
FONT_ARRAY = [ [SWISS, SWISS_B, SWISS_I, SWISS_BI ],
|
||||||
[ROMAN, ROMAN_B, ROMAN_I, ROMAN_BI ] ]
|
[ROMAN, ROMAN_B, ROMAN_I, ROMAN_BI ] ]
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Gramps - a GTK+/GNOME based genealogy program
|
# Gramps - a GTK+/GNOME based genealogy program
|
||||||
#
|
#
|
||||||
# Copyright (C) 2011 John Ralls, Fremont, CA
|
# Copyright (C) 2011 John Ralls, Fremont, CA
|
||||||
#
|
#
|
||||||
# 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
|
||||||
|
@ -250,7 +250,7 @@ _SIBLINGS_LEVEL = ["", "Els germans i les germanes",
|
|||||||
"Els oncles i les ties",
|
"Els oncles i les ties",
|
||||||
"Els besoncles i les besties",
|
"Els besoncles i les besties",
|
||||||
"Els rebesoncles i les rebesties",
|
"Els rebesoncles i les rebesties",
|
||||||
"Els quadrioncles i les quadrities"]
|
"Els quadrioncles i les quadrities"]
|
||||||
|
|
||||||
_NEPHEWS_NIECES_LEVEL = ["", "Els nebots i les nebodes",
|
_NEPHEWS_NIECES_LEVEL = ["", "Els nebots i les nebodes",
|
||||||
"Els besnebots i les besnebodes",
|
"Els besnebots i les besnebodes",
|
||||||
@ -285,7 +285,7 @@ def _get_cosina(level, inlaw="", step=""):
|
|||||||
"""
|
"""
|
||||||
cousins = same level, gender = female
|
cousins = same level, gender = female
|
||||||
"""
|
"""
|
||||||
if (inlaw != ""): # polític -> política
|
if (inlaw != ""): # polític -> política
|
||||||
inlaw += "a"
|
inlaw += "a"
|
||||||
if step == "":
|
if step == "":
|
||||||
nom = "cosina"
|
nom = "cosina"
|
||||||
@ -303,7 +303,7 @@ def _get_cosi_unknown(level, inlaw="", step=""):
|
|||||||
"""
|
"""
|
||||||
cousins = same level, gender = unknown
|
cousins = same level, gender = unknown
|
||||||
"""
|
"""
|
||||||
if (inlaw != ""): # polític -> polítics
|
if (inlaw != ""): # polític -> polítics
|
||||||
inlaw += "s"
|
inlaw += "s"
|
||||||
if step == "":
|
if step == "":
|
||||||
nom = "cosins"
|
nom = "cosins"
|
||||||
@ -423,7 +423,7 @@ def _get_sons(level, inlaw=""):
|
|||||||
"""
|
"""
|
||||||
descendants for kinship report
|
descendants for kinship report
|
||||||
"""
|
"""
|
||||||
if (inlaw != ""): # polític -> polítics
|
if (inlaw != ""): # polític -> polítics
|
||||||
inlaw += "s"
|
inlaw += "s"
|
||||||
|
|
||||||
if inlaw != "" and level == 1 :
|
if inlaw != "" and level == 1 :
|
||||||
@ -975,7 +975,7 @@ class RelationshipCalculator(gramps.gen.relationship.RelationshipCalculator):
|
|||||||
rel_str = "el cunyat"
|
rel_str = "el cunyat"
|
||||||
elif gender_b == Person.FEMALE:
|
elif gender_b == Person.FEMALE:
|
||||||
rel_str = "la cunyada"
|
rel_str = "la cunyada"
|
||||||
else: # gender_b == Person.UNKNOWN:
|
else: # gender_b == Person.UNKNOWN:
|
||||||
rel_str = "un cunyat"
|
rel_str = "un cunyat"
|
||||||
|
|
||||||
elif gender_b == Person.MALE :
|
elif gender_b == Person.MALE :
|
||||||
@ -996,7 +996,7 @@ class RelationshipCalculator(gramps.gen.relationship.RelationshipCalculator):
|
|||||||
elif gender_b == Person.UNKNOWN:
|
elif gender_b == Person.UNKNOWN:
|
||||||
rel_str = _get_nephew_unk(Gb - 1, inlaw, step)
|
rel_str = _get_nephew_unk(Gb - 1, inlaw, step)
|
||||||
else:
|
else:
|
||||||
# This should never get executed
|
# This should never get executed
|
||||||
rel_str = "un nebot%s llunyà (%dena generació)" % (inlaw, Gb)
|
rel_str = "un nebot%s llunyà (%dena generació)" % (inlaw, Gb)
|
||||||
elif Ga == Gb:
|
elif Ga == Gb:
|
||||||
|
|
||||||
@ -1081,7 +1081,7 @@ class RelationshipCalculator(gramps.gen.relationship.RelationshipCalculator):
|
|||||||
rel_str = "el cunyat o la cunyada"
|
rel_str = "el cunyat o la cunyada"
|
||||||
elif sib_type == self.HALF_SIB_MOTHER \
|
elif sib_type == self.HALF_SIB_MOTHER \
|
||||||
or sib_type == self.HALF_SIB_FATHER \
|
or sib_type == self.HALF_SIB_FATHER \
|
||||||
or sib_type == self.STEP_SIB:
|
or sib_type == self.STEP_SIB:
|
||||||
|
|
||||||
if not inlaw:
|
if not inlaw:
|
||||||
|
|
||||||
|
@ -274,14 +274,13 @@ class RelationshipCalculator(gramps.gen.relationship.RelationshipCalculator):
|
|||||||
if level >= 0 and level < len(_son_level):
|
if level >= 0 and level < len(_son_level):
|
||||||
return t_inlaw +_son_level[level]
|
return t_inlaw +_son_level[level]
|
||||||
|
|
||||||
elif level >= len(_son_level) \
|
elif level >= len(_son_level) and (level - 1) < len(_level_name):
|
||||||
and (level - 1) < len(_level_name):
|
|
||||||
return t_inlaw + \
|
return t_inlaw + \
|
||||||
"potomek męski %s pokolenia" % _level_name[level - 1]
|
"potomek męski %s pokolenia" % _level_name[level - 1]
|
||||||
|
|
||||||
else:
|
else:
|
||||||
return t_inlaw + \
|
return t_inlaw + \
|
||||||
"potomek męski w %d pokoleniu" % level
|
"potomek męski w %d pokoleniu" % level
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -304,13 +303,12 @@ class RelationshipCalculator(gramps.gen.relationship.RelationshipCalculator):
|
|||||||
if level >= 0 and level < len(_daughter_level):
|
if level >= 0 and level < len(_daughter_level):
|
||||||
return t_inlaw + _daughter_level[level]
|
return t_inlaw + _daughter_level[level]
|
||||||
|
|
||||||
elif level >= len(_daughter_level) \
|
elif level >= len(_daughter_level) and (level - 1) < len(_level_name):
|
||||||
and (level - 1) < len(_level_name):
|
|
||||||
return t_inlawM + \
|
return t_inlawM + \
|
||||||
"potomek żeński %s pokolenia" % _level_name[level - 1]
|
"potomek żeński %s pokolenia" % _level_name[level - 1]
|
||||||
else:
|
else:
|
||||||
return t_inlawM + \
|
return t_inlawM + \
|
||||||
"potomek żeński w %d pokoleniu" % level
|
"potomek żeński w %d pokoleniu" % level
|
||||||
|
|
||||||
|
|
||||||
def get_child_unknown(self, level, inlaw=''):
|
def get_child_unknown(self, level, inlaw=''):
|
||||||
@ -434,16 +432,15 @@ class RelationshipCalculator(gramps.gen.relationship.RelationshipCalculator):
|
|||||||
else:
|
else:
|
||||||
return t_inlaw + _father_level[level]
|
return t_inlaw + _father_level[level]
|
||||||
|
|
||||||
elif level >= len(_father_level) \
|
elif level >= len(_father_level) and (level - 1) < len(_level_name):
|
||||||
and (level - 1) < len(_level_name):
|
|
||||||
# jeśli istnieje liczebnik dla danej liczby
|
# jeśli istnieje liczebnik dla danej liczby
|
||||||
return t_inlaw + \
|
return t_inlaw + \
|
||||||
"przodek męski %s pokolenia" % (_level_name[level - 1])
|
"przodek męski %s pokolenia" % (_level_name[level - 1])
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# dla pozostałych przypadków wypisz relację liczbowo
|
# dla pozostałych przypadków wypisz relację liczbowo
|
||||||
return t_inlaw + \
|
return t_inlaw + \
|
||||||
"przodek męski w %d pokoleniu" % level
|
"przodek męski w %d pokoleniu" % level
|
||||||
|
|
||||||
|
|
||||||
def get_mother(self, level, reltocommon, inlaw=''):
|
def get_mother(self, level, reltocommon, inlaw=''):
|
||||||
@ -472,11 +469,10 @@ class RelationshipCalculator(gramps.gen.relationship.RelationshipCalculator):
|
|||||||
else:
|
else:
|
||||||
return t_inlaw + _mother_level[level]
|
return t_inlaw + _mother_level[level]
|
||||||
|
|
||||||
elif level >= len(_mother_level) \
|
elif level >= len(_mother_level) and (level - 1) < len(_level_name):
|
||||||
and (level - 1) < len(_level_name):
|
|
||||||
# jeśli istnieje liczebnik dla danej liczby
|
# jeśli istnieje liczebnik dla danej liczby
|
||||||
return t_inlaw + \
|
return t_inlaw + \
|
||||||
"przodek żeński %s pokolenia" % (_level_name[level - 1])
|
"przodek żeński %s pokolenia" % (_level_name[level - 1])
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# dla pozostałych przypadków wypisz relację liczbowo
|
# dla pozostałych przypadków wypisz relację liczbowo
|
||||||
|
@ -99,43 +99,43 @@ _daughter_level = [ "", "filha", "neta", "bisneta",
|
|||||||
"trineta", "tetraneta", "pentaneta", "hexaneta", "heptaneta", "octaneta"]
|
"trineta", "tetraneta", "pentaneta", "hexaneta", "heptaneta", "octaneta"]
|
||||||
|
|
||||||
_sister_level = [ "", "irmã", "tia", "tia avó", "tia bisavó", "tia trisavó", "tia tetravó",
|
_sister_level = [ "", "irmã", "tia", "tia avó", "tia bisavó", "tia trisavó", "tia tetravó",
|
||||||
"tia pentavó", "tia hexavó", "tia heptavó", "tia octovó"]
|
"tia pentavó", "tia hexavó", "tia heptavó", "tia octovó"]
|
||||||
|
|
||||||
_brother_level = [ "", "irmão", "tio", "tio avô", "tio bisavô", "tio trisavô",
|
_brother_level = [ "", "irmão", "tio", "tio avô", "tio bisavô", "tio trisavô",
|
||||||
"tio tetravô", "tio pentavô", "tio hexavô", "tio heptavô", "tio octavô"]
|
"tio tetravô", "tio pentavô", "tio hexavô", "tio heptavô", "tio octavô"]
|
||||||
|
|
||||||
_nephew_level = [ "", "sobrinho", "sobrinho neto", "sobrinho bisneto", "sobrinho trineto",
|
_nephew_level = [ "", "sobrinho", "sobrinho neto", "sobrinho bisneto", "sobrinho trineto",
|
||||||
"sobrinho tetraneto", "sobrinho pentaneto", "sobrinho hexaneto",
|
"sobrinho tetraneto", "sobrinho pentaneto", "sobrinho hexaneto",
|
||||||
"sobrinho heptaneto", "sobrinho octaneto"]
|
"sobrinho heptaneto", "sobrinho octaneto"]
|
||||||
|
|
||||||
_niece_level = [ "", "sobrinha", "sobrinha neta", "sobrinha bisneta", "sobrinha trineta",
|
_niece_level = [ "", "sobrinha", "sobrinha neta", "sobrinha bisneta", "sobrinha trineta",
|
||||||
"sobrinha tetraneta", "sobrinha pentaneta", "sobrinha hexaneta",
|
"sobrinha tetraneta", "sobrinha pentaneta", "sobrinha hexaneta",
|
||||||
"sobrinha heptaneta", "sobrinha octaneta"]
|
"sobrinha heptaneta", "sobrinha octaneta"]
|
||||||
|
|
||||||
# Relatório de Parentesco
|
# Relatório de Parentesco
|
||||||
|
|
||||||
_PARENTS_LEVEL = ["", "pais", "avós", "bisavós", "tetravós",
|
_PARENTS_LEVEL = ["", "pais", "avós", "bisavós", "tetravós",
|
||||||
"pentavós", "hexavós", "heptavós", "octavós"]
|
"pentavós", "hexavós", "heptavós", "octavós"]
|
||||||
|
|
||||||
_CHILDREN_LEVEL = ["", "filhos", "netos", "bisnetos", "trinetos",
|
_CHILDREN_LEVEL = ["", "filhos", "netos", "bisnetos", "trinetos",
|
||||||
"tetranetos", "pentanetos", "hexanetos", "heptanetos"
|
"tetranetos", "pentanetos", "hexanetos", "heptanetos"
|
||||||
"octanetos"]
|
"octanetos"]
|
||||||
|
|
||||||
_SIBLINGS_LEVEL = ["", "irmãos e irmãs", "tios e tias","tios avôs e tias avós",
|
_SIBLINGS_LEVEL = ["", "irmãos e irmãs", "tios e tias","tios avôs e tias avós",
|
||||||
"tios bisavôs e tias bisavós", "tios trisavôs e tias trisavós",
|
"tios bisavôs e tias bisavós", "tios trisavôs e tias trisavós",
|
||||||
"tios tetravôs e tias tetravós", "tios pentavôs e tias pentavós",
|
"tios tetravôs e tias tetravós", "tios pentavôs e tias pentavós",
|
||||||
"tios hexavôs e tias hexavós", "tios heptavôs e tias heptavós"
|
"tios hexavôs e tias hexavós", "tios heptavôs e tias heptavós"
|
||||||
"tios octavôs e tias octavós"]
|
"tios octavôs e tias octavós"]
|
||||||
|
|
||||||
_NEPHEWS_NIECES_LEVEL = ["", "sobrinhos e sobrinhas",
|
_NEPHEWS_NIECES_LEVEL = ["", "sobrinhos e sobrinhas",
|
||||||
"sobrinhos netos e sobrinhas netas",
|
"sobrinhos netos e sobrinhas netas",
|
||||||
"sobrinhos bisnetos e sobrinhas bisnetas",
|
"sobrinhos bisnetos e sobrinhas bisnetas",
|
||||||
"sobrinhos trinetos e sobrinhas trinetas"
|
"sobrinhos trinetos e sobrinhas trinetas"
|
||||||
"sobrinhos tetranetos e sobrinhas tetranetas"
|
"sobrinhos tetranetos e sobrinhas tetranetas"
|
||||||
"sobrinhos pentanetos e sobrinhas pentanetas"
|
"sobrinhos pentanetos e sobrinhas pentanetas"
|
||||||
"sobrinhos hexanetos e sobrinhas hexanetas"
|
"sobrinhos hexanetos e sobrinhas hexanetas"
|
||||||
"sobrinhos heptanetos e sobrinhas heptanetas"
|
"sobrinhos heptanetos e sobrinhas heptanetas"
|
||||||
"sobrinhos octanetos e sobrinhas octanetas"
|
"sobrinhos octanetos e sobrinhas octanetas"
|
||||||
]
|
]
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
@ -735,4 +735,4 @@ def fuzzy(arg):
|
|||||||
os.system('''%(msgattrib)s --only-fuzzy --no-obsolete %(lang.po)s''' % {'msgattrib': msgattribCmd, 'lang.po': arg[0]})
|
os.system('''%(msgattrib)s --only-fuzzy --no-obsolete %(lang.po)s''' % {'msgattrib': msgattribCmd, 'lang.po': arg[0]})
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
Loading…
Reference in New Issue
Block a user