pep8 in scripts/*.py
This commit is contained in:
+10
-10
@@ -14,26 +14,27 @@ sys.path.insert(0, '.')
|
||||
file = sys.argv[1]
|
||||
apps = sys.argv[2:]
|
||||
|
||||
|
||||
def sync_language(d, data):
|
||||
''' this function makes sure a translated string will be prefered over an untranslated
|
||||
string when syncing languages between apps. when both are translated, it prefers the
|
||||
''' this function makes sure a translated string will be prefered over an untranslated
|
||||
string when syncing languages between apps. when both are translated, it prefers the
|
||||
latter app, as did the original script
|
||||
'''
|
||||
|
||||
|
||||
for key in data:
|
||||
# if this string is not in the allready translated data, add it
|
||||
if key not in d:
|
||||
d[key] = data[key]
|
||||
# see if there is a translated string in the original list, but not in the new list
|
||||
elif (
|
||||
((d[key] != '') or (d[key] != key)) and
|
||||
((data[key] == '') or (data[key] == key))
|
||||
):
|
||||
elif (
|
||||
((d[key] != '') or (d[key] != key)) and
|
||||
((data[key] == '') or (data[key] == key))
|
||||
):
|
||||
d[key] = d[key]
|
||||
# any other case (wether there is or there isn't a translated string)
|
||||
else:
|
||||
d[key] = data[key]
|
||||
|
||||
|
||||
return d
|
||||
|
||||
d = {}
|
||||
@@ -45,7 +46,7 @@ for app in apps:
|
||||
data = eval(langfile.read())
|
||||
finally:
|
||||
langfile.close()
|
||||
|
||||
|
||||
d = sync_language(d, data)
|
||||
|
||||
path = 'applications/%s/' % apps[-1]
|
||||
@@ -68,4 +69,3 @@ for app in oapps:
|
||||
path2 = 'applications/%s/' % app
|
||||
file2 = os.path.join(path2, 'languages', '%s.py' % file)
|
||||
shutil.copyfile(file1, file2)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user