early-access version 2876

This commit is contained in:
pineappleEA
2022-07-30 14:50:35 +02:00
부모 b65fa338c9
커밋 8e26e63d7c
2개의 변경된 파일18개의 추가작업 그리고 4개의 파일을 삭제

파일 보기

@@ -1,7 +1,7 @@
yuzu emulator early access
=============
This is the source code for early-access 2875.
This is the source code for early-access 2876.
## Legal Notice

파일 보기

@@ -1,5 +1,19 @@
With CMake flag GENERATE_QT_TRANSLATION a build/src/yuzu/plurals/en.ts is created from the source
# English Plurals
Having the plurals look nice isn't critical, so this has been done manually.
Qt has "Translation Rules for Plurals", small example
The en.ts in this directory is taken from a build, edited in Qt Linguist and then committed.
// Take a source line like
tr("Building: %n shader(s)", "", i)
// i = 1:
Building: 1 shader
// i = 2:
Building: 2 shaders
For yuzu the source language used is English, for all other languages handling of plurals is handled by Qt and the translation collaboration site. Handling plurals in the source language (English) requires special consideration.
With CMake flag GENERATE_QT_TRANSLATION a generated_en.ts file is created from the source. It ignored by git (`.gitignore` in the project root). It is placed in this directory so that the relative refrences with the source code is correct.
Having the plurals look nice isn't critical, and automation to use translation collaboration sites may require specifing the project language as "Pirate English", so this has been done manually.
The en.ts in this directory is taken from a build, edited in Qt Linguist and then committed. As the code is in XML, using the tool is not strictly required.