mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
separate push and pull locale
This commit is contained in:
parent
aa00fa2a5c
commit
5db21134aa
4 changed files with 62 additions and 28 deletions
|
@ -23,7 +23,7 @@ cache:
|
||||||
script:
|
script:
|
||||||
- tox
|
- tox
|
||||||
after_success:
|
after_success:
|
||||||
- if [ "$TRAVIS_BRANCH" = "master" ]; then pip install requests && contrib/make_locale; fi
|
- if [ "$TRAVIS_BRANCH" = "master" ]; then pip install requests && contrib/push_locale; fi
|
||||||
- coveralls
|
- coveralls
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
|
@ -44,13 +44,10 @@ jobs:
|
||||||
- name: "Android build"
|
- name: "Android build"
|
||||||
language: python
|
language: python
|
||||||
python: 3.7
|
python: 3.7
|
||||||
env:
|
|
||||||
# reset API key to not have make_locale upload stuff here
|
|
||||||
- crowdin_api_key=
|
|
||||||
services:
|
services:
|
||||||
- docker
|
- docker
|
||||||
install:
|
install:
|
||||||
- pip install requests && ./contrib/make_locale
|
- pip install requests && ./contrib/pull_locale
|
||||||
- ./contrib/make_packages
|
- ./contrib/make_packages
|
||||||
- sudo docker build --no-cache -t electrum-android-builder-img electrum/gui/kivy/tools
|
- sudo docker build --no-cache -t electrum-android-builder-img electrum/gui/kivy/tools
|
||||||
script:
|
script:
|
||||||
|
|
|
@ -8,7 +8,7 @@ PACKAGES="$ROOT_FOLDER"/packages/
|
||||||
LOCALE="$ROOT_FOLDER"/electrum/locale/
|
LOCALE="$ROOT_FOLDER"/electrum/locale/
|
||||||
|
|
||||||
if [ ! -d "$LOCALE" ]; then
|
if [ ! -d "$LOCALE" ]; then
|
||||||
echo "Run make_locale first!"
|
echo "Run pull_locale first!"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -34,28 +34,6 @@ os.chdir('electrum')
|
||||||
crowdin_identifier = 'electrum'
|
crowdin_identifier = 'electrum'
|
||||||
crowdin_file_name = 'files[electrum-client/messages.pot]'
|
crowdin_file_name = 'files[electrum-client/messages.pot]'
|
||||||
locale_file_name = 'locale/messages.pot'
|
locale_file_name = 'locale/messages.pot'
|
||||||
crowdin_api_key = None
|
|
||||||
|
|
||||||
filename = os.path.expanduser('~/.crowdin_api_key')
|
|
||||||
if os.path.exists(filename):
|
|
||||||
with open(filename) as f:
|
|
||||||
crowdin_api_key = f.read().strip()
|
|
||||||
|
|
||||||
if "crowdin_api_key" in os.environ:
|
|
||||||
crowdin_api_key = os.environ["crowdin_api_key"]
|
|
||||||
|
|
||||||
if crowdin_api_key:
|
|
||||||
# Push to Crowdin
|
|
||||||
print('Push to Crowdin')
|
|
||||||
url = ('https://api.crowdin.com/api/project/' + crowdin_identifier + '/update-file?key=' + crowdin_api_key)
|
|
||||||
with open(locale_file_name, 'rb') as f:
|
|
||||||
files = {crowdin_file_name: f}
|
|
||||||
response = requests.request('POST', url, files=files)
|
|
||||||
print("", "update-file:", "-"*20, response.text, "-"*20, sep="\n")
|
|
||||||
# Build translations
|
|
||||||
print('Build translations')
|
|
||||||
response = requests.request('GET', 'https://api.crowdin.com/api/project/' + crowdin_identifier + '/export?key=' + crowdin_api_key)
|
|
||||||
print("", "export:", "-" * 20, response.text, "-" * 20, sep="\n")
|
|
||||||
|
|
||||||
# Download & unzip
|
# Download & unzip
|
||||||
print('Download translations')
|
print('Download translations')
|
59
contrib/push_locale
Normal file
59
contrib/push_locale
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
import os
|
||||||
|
import subprocess
|
||||||
|
import io
|
||||||
|
import zipfile
|
||||||
|
import sys
|
||||||
|
|
||||||
|
try:
|
||||||
|
import requests
|
||||||
|
except ImportError as e:
|
||||||
|
sys.exit(f"Error: {str(e)}. Try 'sudo python3 -m pip install <module-name>'")
|
||||||
|
|
||||||
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
||||||
|
os.chdir('..')
|
||||||
|
|
||||||
|
cmd = "find electrum -type f -name '*.py' -o -name '*.kv'"
|
||||||
|
|
||||||
|
files = subprocess.check_output(cmd, shell=True)
|
||||||
|
|
||||||
|
with open("app.fil", "wb") as f:
|
||||||
|
f.write(files)
|
||||||
|
|
||||||
|
print("Found {} files to translate".format(len(files.splitlines())))
|
||||||
|
|
||||||
|
# Generate fresh translation template
|
||||||
|
if not os.path.exists('electrum/locale'):
|
||||||
|
os.mkdir('electrum/locale')
|
||||||
|
cmd = 'xgettext -s --from-code UTF-8 --language Python --no-wrap -f app.fil --output=electrum/locale/messages.pot'
|
||||||
|
print('Generate template')
|
||||||
|
os.system(cmd)
|
||||||
|
|
||||||
|
os.chdir('electrum')
|
||||||
|
|
||||||
|
crowdin_identifier = 'electrum'
|
||||||
|
crowdin_file_name = 'files[electrum-client/messages.pot]'
|
||||||
|
locale_file_name = 'locale/messages.pot'
|
||||||
|
crowdin_api_key = None
|
||||||
|
|
||||||
|
filename = os.path.expanduser('~/.crowdin_api_key')
|
||||||
|
if os.path.exists(filename):
|
||||||
|
with open(filename) as f:
|
||||||
|
crowdin_api_key = f.read().strip()
|
||||||
|
|
||||||
|
if "crowdin_api_key" in os.environ:
|
||||||
|
crowdin_api_key = os.environ["crowdin_api_key"]
|
||||||
|
|
||||||
|
if crowdin_api_key:
|
||||||
|
# Push to Crowdin
|
||||||
|
print('Push to Crowdin')
|
||||||
|
url = ('https://api.crowdin.com/api/project/' + crowdin_identifier + '/update-file?key=' + crowdin_api_key)
|
||||||
|
with open(locale_file_name, 'rb') as f:
|
||||||
|
files = {crowdin_file_name: f}
|
||||||
|
response = requests.request('POST', url, files=files)
|
||||||
|
print("", "update-file:", "-"*20, response.text, "-"*20, sep="\n")
|
||||||
|
# Build translations
|
||||||
|
print('Build translations')
|
||||||
|
response = requests.request('GET', 'https://api.crowdin.com/api/project/' + crowdin_identifier + '/export?key=' + crowdin_api_key)
|
||||||
|
print("", "export:", "-" * 20, response.text, "-" * 20, sep="\n")
|
||||||
|
|
Loading…
Add table
Reference in a new issue