diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-11 10:36:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-11 10:36:57 -0300 |
commit | 75624990b3098de036387c3a90b6b287cfcc4a16 (patch) | |
tree | 3eb01685316a1875f987601f4c8a16e4ac54d24d | |
parent | 6f0ad4fa965b38d7e78e09b6a7e73af82d85f199 (diff) | |
download | tools-75624990b3098de036387c3a90b6b287cfcc4a16.tar.gz tools-75624990b3098de036387c3a90b6b287cfcc4a16.tar.bz2 tools-75624990b3098de036387c3a90b6b287cfcc4a16.tar.xz tools-75624990b3098de036387c3a90b6b287cfcc4a16.zip |
Do not fetch english
-rwxr-xr-x | lang/fetch.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lang/fetch.py b/lang/fetch.py index 04c47ae..6332202 100755 --- a/lang/fetch.py +++ b/lang/fetch.py @@ -41,6 +41,7 @@ vcx.close() # Fetch all translations and record them at in/ for i in langs: + if i not in ['en']: print("Fetching %s..." %(i)) t.get_translation(project, 'server-data', i, 'in/'+str(i)+'.po') |