From 3d1de7f380c18f9b748e227c4b5681ba4de9e7bf Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Tue, 24 Aug 2021 02:43:20 +0200 Subject: [PATCH] early-access version 2009 --- README.md | 2 +- src/yuzu/CMakeLists.txt | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 85ceba084..a405ba571 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 2008. +This is the source code for early-access 2009. ## Legal Notice diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index e01e17289..b6dda283d 100755 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt @@ -185,7 +185,14 @@ if (ENABLE_QT_TRANSLATION) # Update source TS file if enabled if (GENERATE_QT_TRANSLATION) 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) endif()