Merge branch 'master' of git+ssh://dev.laptop.org/git/sugar
This commit is contained in:
commit
2782ce71b0
@ -232,7 +232,15 @@ def get_color():
|
|||||||
return profile.get_color()
|
return profile.get_color()
|
||||||
|
|
||||||
def print_color():
|
def print_color():
|
||||||
print get_color().to_string()
|
color = get_color().to_string()
|
||||||
|
str = color.split(',')
|
||||||
|
|
||||||
|
for color in _COLORS:
|
||||||
|
for hue in _COLORS[color]:
|
||||||
|
if _COLORS[color][hue] == str[0]:
|
||||||
|
print 'stroke: color=%s hue=%s'%(color, hue)
|
||||||
|
if _COLORS[color][hue] == str[1]:
|
||||||
|
print 'fill: color=%s hue=%s'%(color, hue)
|
||||||
|
|
||||||
def set_color(stroke, fill, modstroke='medium', modfill='medium'):
|
def set_color(stroke, fill, modstroke='medium', modfill='medium'):
|
||||||
"""Set the system color.
|
"""Set the system color.
|
||||||
@ -365,16 +373,6 @@ def _read_zonetab(fn='/usr/share/zoneinfo/zone.tab'):
|
|||||||
timezones.sort()
|
timezones.sort()
|
||||||
return timezones
|
return timezones
|
||||||
|
|
||||||
def _remove_encoding(lang):
|
|
||||||
if '.' in lang:
|
|
||||||
langBase = lang.split('.')
|
|
||||||
return langBase[0]
|
|
||||||
elif '@' in lang:
|
|
||||||
langBase = lang.split('@')
|
|
||||||
return langBase[0]
|
|
||||||
else:
|
|
||||||
return lang
|
|
||||||
|
|
||||||
def _writeI18N(lang, sysfont):
|
def _writeI18N(lang, sysfont):
|
||||||
path = '/etc/sysconfig/i18n'
|
path = '/etc/sysconfig/i18n'
|
||||||
if os.access(path, os.R_OK) == 0:
|
if os.access(path, os.R_OK) == 0:
|
||||||
@ -402,15 +400,20 @@ def get_language():
|
|||||||
lang = line[5:].replace('"', '')
|
lang = line[5:].replace('"', '')
|
||||||
lang = lang.strip()
|
lang = lang.strip()
|
||||||
|
|
||||||
if lang:
|
if not lang:
|
||||||
lang = _remove_encoding(lang)
|
|
||||||
else:
|
|
||||||
lang = "en_US"
|
lang = "en_US"
|
||||||
|
|
||||||
return lang
|
return lang
|
||||||
|
|
||||||
def print_language():
|
def print_language():
|
||||||
print get_language()
|
code = get_language()
|
||||||
|
|
||||||
|
for lang in _LANGUAGES:
|
||||||
|
if _LANGUAGES[lang][0] == code:
|
||||||
|
print lang
|
||||||
|
return
|
||||||
|
print (_("Language for code=%s could not be determined.")%code)
|
||||||
|
|
||||||
def set_language(language):
|
def set_language(language):
|
||||||
"""Set the system language.
|
"""Set the system language.
|
||||||
languages :
|
languages :
|
||||||
|
Loading…
Reference in New Issue
Block a user