mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 09:19:59 +00:00
Merge pull request #6912 from lioncash/plural
CMakeLists: Ensure proper numerusform tags are generated for pluralized translations
This commit is contained in:
commit
7eb4542c1d
1 changed files with 8 additions and 1 deletions
|
@ -182,7 +182,14 @@ if (ENABLE_QT_TRANSLATION)
|
||||||
# Update source TS file if enabled
|
# Update source TS file if enabled
|
||||||
if (GENERATE_QT_TRANSLATION)
|
if (GENERATE_QT_TRANSLATION)
|
||||||
get_target_property(SRCS yuzu SOURCES)
|
get_target_property(SRCS yuzu SOURCES)
|
||||||
qt5_create_translation(QM_FILES ${SRCS} ${UIS} ${YUZU_QT_LANGUAGES}/en.ts)
|
qt5_create_translation(QM_FILES
|
||||||
|
${SRCS}
|
||||||
|
${UIS}
|
||||||
|
${YUZU_QT_LANGUAGES}/en.ts
|
||||||
|
OPTIONS
|
||||||
|
-source-language en_US
|
||||||
|
-target-language en_US
|
||||||
|
)
|
||||||
add_custom_target(translation ALL DEPENDS ${YUZU_QT_LANGUAGES}/en.ts)
|
add_custom_target(translation ALL DEPENDS ${YUZU_QT_LANGUAGES}/en.ts)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue