l10n: Italian translation was started.

This commit is contained in:
Maximus5 2021-01-09 22:57:44 +01:00
parent 0ed55aea68
commit ef684f3dca
2 changed files with 551 additions and 0 deletions

38
Deploy/l10n_add_lang.cmd Normal file
View File

@ -0,0 +1,38 @@
@echo off
if "%~2" == "" (
echo LanguageID and LanguageName should be specified
goto :err
)
setlocal
if exist "%~dp0user_env.cmd" (
call "%~dp0user_env.cmd"
) else (
call "%~dp0user_env.default.cmd"
)
call "%UPLOADERS%init_env.cmd"
pushd "%~dp0.."
set L10N_PATH=Release/ConEmu/ConEmu.l10n
set PSEUDO_PATH=src\l10n\ConEmu.l10n
call "%PYTHON3%" "%~dp0l10n.py" --l10n %L10N_PATH% --add-lng %1 %2 --write-l10n
if errorlevel 1 (
echo Failed to write l10n file
goto :err
)
goto fin
:err
endlocal
popd
exit /b 1
:fin
endlocal
popd

File diff suppressed because it is too large Load Diff