Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue with en_US translation getting fed back into Transifex #6322

Merged
merged 1 commit into from
Oct 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion build/travis/job_macos_lupdate/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,4 @@ rm tours.pro
# username = $TRANSIFEX_USER
# EOL

# cp share/locale/mscore_en_US.ts share/locale/mscore_en.ts
Jojo-Schmitz marked this conversation as resolved.
Show resolved Hide resolved
# tx push -s
4 changes: 3 additions & 1 deletion share/locale/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ install(DIRECTORY ./
DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}locale
FILES_MATCHING
REGEX ".*\\.qm"
REGEX ".*_en\\.qm" EXCLUDE
Jojo-Schmitz marked this conversation as resolved.
Show resolved Hide resolved
REGEX "languages\\.xml")

install(DIRECTORY ${QT_INSTALL_PREFIX}/translations/
Expand All @@ -32,4 +33,5 @@ install(DIRECTORY ${QT_INSTALL_PREFIX}/translations/
REGEX "qtmultimedia_.*\\.qm"
REGEX "qtquick1_.*\\.qm"
REGEX "qtscript_.*\\.qm"
REGEX "qtxmlpatterns_.*\\.qm")
REGEX "qtxmlpatterns_.*\\.qm"
REGEX "qt*_en\\.qm" EXCLUDE)
Jojo-Schmitz marked this conversation as resolved.
Show resolved Hide resolved
Loading