Add a setting to select the language in the options dialog

All translations have been updated, and translations of the actions in the library have been fixed.
This commit is contained in:
luisangelsm
2026-03-11 18:21:35 +01:00
parent 82ac83ee7a
commit 3fede5dabf
51 changed files with 100804 additions and 17460 deletions

View File

@ -101,7 +101,7 @@ Source: README.md; DestDir: {app}; Flags: isreadme
Source: COPYING.txt; DestDir: {app}
;Languages
Source: languages\*; DestDir: {app}\languages\; Flags: recursesubdirs
Source: languages\*; DestDir: {app}\languages\; Flags: recursesubdirs; Excludes: "*_source.qm"
;Server
Source: server\*; DestDir: {app}\server\; Flags: recursesubdirs

View File

@ -46,7 +46,8 @@ rem Collect cmake-generated .qm translation files from the build tree
rem (release\languages is not tracked in git; cmake generates .qm in build subdirs)
mkdir languages
for /r %src_path%\build %%f in (*.qm) do (
copy "%%f" .\languages\ >nul
echo %%~nf | findstr /I /R "_source$" >nul
if errorlevel 1 copy "%%f" .\languages\ >nul
)
copy %src_path%\vc_redist.%ARCH%.exe .