Commit 5fadb694 authored by Franco Fichtner's avatar Franco Fichtner

dynamic: only need strings once

parent e00e0359
......@@ -61,6 +61,7 @@ for filename in glob.glob('%s/plugins/*.py'%'/'.join(os.path.realpath(__file__).
for RootPath in RootPaths:
for textValue in lang.getTranslations(RootPath + '/src'):
translations.append(textValue)
translations = list(set(translations))
translations.sort()
# fill with gettext tags
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment