Files
ArchiSteamFarm/tools/crowdin-cli/archi_sync.bat

10 lines
380 B
Batchfile
Raw Normal View History

2017-07-05 07:57:40 +02:00
@echo off
2017-08-18 22:56:01 +02:00
pushd %~dp0
2017-07-05 07:57:40 +02:00
cd ..\\..
2018-05-08 09:19:56 +02:00
call crowdin -b master --identity tools\\crowdin-cli\\crowdin_identity.yml upload sources
call crowdin -b master --identity tools\\crowdin-cli\\crowdin_identity.yml download
2017-09-23 05:51:10 +02:00
git reset
2018-04-27 05:36:52 +02:00
git add -A "ArchiSteamFarm\Localization\*.resx" "ArchiSteamFarm\www\locale\*.json" "WebConfigGenerator\src\locale\*.json"
2017-09-23 05:51:10 +02:00
git commit -m "Translations update"
2017-07-05 07:57:40 +02:00
pause