-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
push-transifex-translations.bat
36 lines (28 loc) · 1.15 KB
/
push-transifex-translations.bat
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
@echo off
REM ***************************************************************************
REM push-transifex-translations.bat
REM ---------------------
REM begin : June 2017
REM copyright : (C) 2017 by Fran Raga
REM email : franka1986 at gmail dot com
REM ***************************************************************************
REM * *
REM * This program is free software; you can redistribute it and/or modify *
REM * it under the terms of the GNU General Public License as published by *
REM * the Free Software Foundation; either version 2 of the License, or *
REM * (at your option) any later version. *
REM * *
REM ***************************************************************************
:: Upload file to Transifex
cd /d %~dp0
@ECHO ON
call "code/py3-env.bat"
tx push -s -t --skip
@ECHO OFF
GOTO END
:ERROR
echo "Failed!Upload file to Transifex"
set ERRORLEVEL=%ERRORLEVEL%
pause
:END
@ECHO OFF