1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#! /usr/bin/env python2.7
# -*- coding: utf8 -*-
#
# Copyright (C) 2018 TMW-2
# Author: Jesusalva
from transifex.api import TransifexAPI
#import sys
#if len(sys.argv) == 2:
# if sys.argv[1] == "AllFilesVerified":
# pass
# else:
# print("Rejected: Incorrect magic word.")
# exit(1)
#else:
# print("Rejected: As this script is VULNERABLE TO CODE INJECTION, you cannot run this command without verifying all files at Transifex first.")
# exit(1)
print("\033[1mThis script is VULNERABLE TO CODE INJECTION. Git diff before deploying!\033[0m")
project='moubootaur-legends'
print("Loading user credentials (login.txt/password.txt) from lang/ folder...")
# Load credentials from login.txt and password.txt
login=open('../lang/login.txt', 'r')
for i in login:
username=i.replace('\n', '').replace('\r', '')
login.close()
passw=open('../lang/password.txt', 'r')
for i in passw:
password=i.replace('\n', '').replace('\r', '')
passw.close()
t=TransifexAPI(username, password, 'https://www.transifex.com')
if (not t.ping):
print("ERROR: Ping failed, this may be due incorrect username/password in login.txt and password.txt. Ensure there is NO newline at the end of file.")
exit(1)
if (not t.project_exists(project)):
print("ERROR: Invalid project name")
exit(1)
# Load languages
langs=[]
vcx=open("langs.txt", "r")
for i in vcx:
if i != "en":
langs.append(i.replace('\n', ''))
vcx.close()
# Fetch all translations and record them at in/
for i in langs:
print("Fetching %s..." %(i))
t.get_translation(project, 'website', i, 'po/'+str(i)+'.po')
print("All translations were retrieved.")
print("Please sanitize files removing \"\\n\", or updatelang.py won't parse properly.")
|