Qt: Add German/Deutsch translation
This commit is contained in:
parent
8b4624a98e
commit
e198e31598
|
@ -8,6 +8,7 @@ The following people have contributed to the project in some way, and are credit
|
|||
## Translators
|
||||
- Anderson Cardoso - Portuguese (Br)
|
||||
- @bajolzas - Portuguese (Pt)
|
||||
- posix - @Richard-L - German
|
||||
|
||||
## Game Compatibility Database
|
||||
- @Zet-sensei
|
||||
|
|
|
@ -62,6 +62,7 @@ set(SRCS
|
|||
)
|
||||
|
||||
set(TS_FILES
|
||||
translations/duckstation-qt_de.ts
|
||||
translations/duckstation-qt_pt-br.ts
|
||||
translations/duckstation-qt_pt-pt.ts
|
||||
)
|
||||
|
|
|
@ -191,6 +191,7 @@
|
|||
</QtTs>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="translations\duckstation-qt_de.ts" />
|
||||
<None Include="translations\duckstation-qt_pt-br.ts" />
|
||||
<None Include="translations\duckstation-qt_pt-pt.ts" />
|
||||
</ItemGroup>
|
||||
|
|
|
@ -118,5 +118,8 @@
|
|||
<None Include="translations\duckstation-qt_pt-pt.ts">
|
||||
<Filter>translations</Filter>
|
||||
</None>
|
||||
<None Include="translations\duckstation-qt_de.ts">
|
||||
<Filter>translations</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -54,6 +54,7 @@ const char* QtHostInterface::GetFrontendName() const
|
|||
std::vector<std::pair<QString, QString>> QtHostInterface::getAvailableLanguageList()
|
||||
{
|
||||
return {{QStringLiteral("English"), QStringLiteral("")},
|
||||
{QStringLiteral("Deutsch"), QStringLiteral("de")},
|
||||
{QStringLiteral("Portuguese (Pt)"), QStringLiteral("pt-pt")},
|
||||
{QStringLiteral("Portuguese (Br)"), QStringLiteral("pt-br")}};
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue