summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-05-18 13:47:21 -0300
committerJesusaves <cpntb1@ymail.com>2021-05-18 13:47:21 -0300
commit3ea898458c175b5381d1c8910375b6dbec85e0c5 (patch)
tree38ad6f75008c8b8dcfd6508e4caa91c3300af995
parent135822f1f345d46662c31939978bae67926d9cd2 (diff)
downloadtools-3ea898458c175b5381d1c8910375b6dbec85e0c5.tar.gz
tools-3ea898458c175b5381d1c8910375b6dbec85e0c5.tar.bz2
tools-3ea898458c175b5381d1c8910375b6dbec85e0c5.tar.xz
tools-3ea898458c175b5381d1c8910375b6dbec85e0c5.zip
Ammend fetch scripts
-rwxr-xr-xlang/fetch.py2
-rwxr-xr-xlang_client/fetch.py5
2 files changed, 2 insertions, 5 deletions
diff --git a/lang/fetch.py b/lang/fetch.py
index 67c667f..a0e454a 100755
--- a/lang/fetch.py
+++ b/lang/fetch.py
@@ -43,6 +43,6 @@ vcx.close()
for i in langs:
if i not in ['en']:
print("Fetching %s..." %(i))
- t.get_translation(project, 'serverdata', i, 'in/'+str(i)+'.po')
+ t.get_translation(project, 'legacy-server', i, 'in/'+str(i)+'.po')
diff --git a/lang_client/fetch.py b/lang_client/fetch.py
index 2fb7d4f..1058e43 100755
--- a/lang_client/fetch.py
+++ b/lang_client/fetch.py
@@ -51,8 +51,5 @@ for i in langs:
# t.new_translation(project, 'clientdata', i,'../../client-data/translations/'+str(i)+'.po')
print("Fetching %s..." %(i))
- t.get_translation(project, 'clientdata', i, '../../client-data/translations/'+str(i)+'.po')
-
- print("Fetching %s dict..." %(i))
- t.get_translation(project, 'clientdata-dict', i, '../../client-data/translations/dict/'+str(i)+'.po')
+ t.get_translation(project, 'legacy-client', i, '../../client-data/translations/'+str(i)+'.po')