Skip to content

Commit 5f4e524

Browse files
committed
Renamed installer/languages to installer/i18n
1 parent 921ed8f commit 5f4e524

File tree

12 files changed

+5
-5
lines changed

12 files changed

+5
-5
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ build/
2323
coverage.xml
2424
dist/
2525
installer/picard-setup.nsi
26-
installer/languages/out/*.nsh
26+
installer/i18n/out/*.nsh
2727
locale/
2828
org.musicbrainz.Picard.appdata.xml
2929
picard.egg-info

.tx/config

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ source_lang = en
1414
type = PO
1515

1616
[musicbrainz.picard_installer]
17-
file_filter = installer/languages/sources/<lang>.json
18-
source_file = installer/languages/sources/en.json
17+
file_filter = installer/i18n/sources/<lang>.json
18+
source_file = installer/i18n/sources/en.json
1919
source_lang = en
2020
type = KEYVALUEJSON
2121

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

installer/picard-setup.nsi.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ ReserveFile "${NSISDIR}\Plugins\x86-unicode\InstallOptions.dll"
8080
; Language handling
8181
!macro LOAD_LANGUAGE LANGUAGE
8282
!insertmacro MUI_LANGUAGE "${LANGUAGE}"
83-
!include "languages\out\${LANGUAGE}.nsh"
83+
!include "i18n\out\${LANGUAGE}.nsh"
8484
!macroend
8585

8686
; Language files

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def run(self):
275275
if os.path.isfile('installer/picard-setup.nsi.in'):
276276
generate_file('installer/picard-setup.nsi.in', 'installer/picard-setup.nsi', {**args, **installer_args})
277277
log.info('generating NSIS translation files')
278-
self.spawn(['python', 'installer/languages/json2nsh.py'])
278+
self.spawn(['python', 'installer/i18n/json2nsh.py'])
279279

280280
version_args = {
281281
'filevers': str(file_version),

0 commit comments

Comments
 (0)