GrampsLocale: Fix indentation error
svn: r22032
This commit is contained in:
parent
7a17f9b420
commit
e9770ef48f
@ -308,23 +308,23 @@ class GrampsLocale(object):
|
|||||||
else:
|
else:
|
||||||
self.calendar = self.lang
|
self.calendar = self.lang
|
||||||
|
|
||||||
loc = locale.getlocale(locale.LC_COLLATE)
|
loc = locale.getlocale(locale.LC_COLLATE)
|
||||||
if loc and loc[0]:
|
if loc and loc[0]:
|
||||||
self.collation = '.'.join(loc)
|
self.collation = '.'.join(loc)
|
||||||
else:
|
else:
|
||||||
self.collation = self.lang
|
self.collation = self.lang
|
||||||
|
|
||||||
loc = locale.getlocale(locale.LC_NUMERIC)
|
loc = locale.getlocale(locale.LC_NUMERIC)
|
||||||
if loc and loc[0]:
|
if loc and loc[0]:
|
||||||
self.numeric = '.'.join(loc)
|
self.numeric = '.'.join(loc)
|
||||||
else:
|
else:
|
||||||
self.numeric = self.lang
|
self.numeric = self.lang
|
||||||
|
|
||||||
loc = locale.getlocale(locale.LC_MONETARY)
|
loc = locale.getlocale(locale.LC_MONETARY)
|
||||||
if loc and loc[0]:
|
if loc and loc[0]:
|
||||||
self.currency = '.'.join(loc)
|
self.currency = '.'.join(loc)
|
||||||
else:
|
else:
|
||||||
self.currency = self.lang
|
self.currency = self.lang
|
||||||
|
|
||||||
def _win_bindtextdomain(self, localedomain, localedir):
|
def _win_bindtextdomain(self, localedomain, localedir):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user