b4af237430
but put mscore translations into mscore_*.ts only, instruments translations into instruments_*.ts only and don't run lupdate against qt*.ts at all. The latter seems to have been done wrongly since quite a while, the former since PR #3272 ,41b7906
(master) andd1b606e
(2.2)
16 lines
228 B
Batchfile
16 lines
228 B
Batchfile
@echo off
|
|
|
|
set OLD_DIR=%CD%
|
|
|
|
echo TRANSLATIONS = \
|
|
for /r %1/../../share/locale/ %%a in (instruments_*.ts) do echo %%a \
|
|
echo.
|
|
|
|
cd /d %1
|
|
|
|
echo HEADERS= \
|
|
for /r %1 %%a in (*.h) do echo %%a \
|
|
echo.
|
|
echo.
|
|
|
|
cd /d %OLD_DIR%
|