mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 06:15:38 +00:00
Merge pull request #1768 from CookiePLMonster/update-pl-loc
Update PL localization + fixes
This commit is contained in:
commit
f8f7c63b55
|
@ -20,7 +20,7 @@ The following people have contributed to the project in some way, and are credit
|
||||||
- @DenSinH - Dutch
|
- @DenSinH - Dutch
|
||||||
- @BenjaminSiskoo - French
|
- @BenjaminSiskoo - French
|
||||||
- mikakunin - Japanese
|
- mikakunin - Japanese
|
||||||
- Zuzia, Seba - Polish
|
- Zuzia, Seba, @CookiePLMonster - Polish
|
||||||
|
|
||||||
## Cheat Database
|
## Cheat Database
|
||||||
- Pugsy
|
- Pugsy
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
<string>RetroAchievements Login</string>
|
<string comment="Window title">RetroAchievements Login</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="modal">
|
<property name="modal">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
</font>
|
</font>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>RetroAchievements Login</string>
|
<string comment="Header text">RetroAchievements Login</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="alignment">
|
<property name="alignment">
|
||||||
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
||||||
|
|
|
@ -1375,13 +1375,13 @@ void QtHostInterface::OnAchievementsRefreshed()
|
||||||
"Game Title: %2\n"
|
"Game Title: %2\n"
|
||||||
"Game Developer: %3\n"
|
"Game Developer: %3\n"
|
||||||
"Game Publisher: %4\n"
|
"Game Publisher: %4\n"
|
||||||
"Achievements: %5 (%6 points)\n\n")
|
"Achievements: %5 (%6)\n\n")
|
||||||
.arg(Cheevos::GetGameID())
|
.arg(Cheevos::GetGameID())
|
||||||
.arg(QString::fromStdString(Cheevos::GetGameTitle()))
|
.arg(QString::fromStdString(Cheevos::GetGameTitle()))
|
||||||
.arg(QString::fromStdString(Cheevos::GetGameDeveloper()))
|
.arg(QString::fromStdString(Cheevos::GetGameDeveloper()))
|
||||||
.arg(QString::fromStdString(Cheevos::GetGamePublisher()))
|
.arg(QString::fromStdString(Cheevos::GetGamePublisher()))
|
||||||
.arg(Cheevos::GetAchievementCount())
|
.arg(Cheevos::GetAchievementCount())
|
||||||
.arg(Cheevos::GetMaximumPointsForGame());
|
.arg(tr("%n points", "", Cheevos::GetMaximumPointsForGame()));
|
||||||
|
|
||||||
const std::string& rich_presence_string = Cheevos::GetRichPresenceString();
|
const std::string& rich_presence_string = Cheevos::GetRichPresenceString();
|
||||||
if (!rich_presence_string.empty())
|
if (!rich_presence_string.empty())
|
||||||
|
|
|
@ -41,4 +41,14 @@
|
||||||
</translation>
|
</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>QtHostInterface</name>
|
||||||
|
<message numerus="yes">
|
||||||
|
<source>%n points</source>
|
||||||
|
<translation>
|
||||||
|
<numerusform>%n point</numerusform>
|
||||||
|
<numerusform>%n points</numerusform>
|
||||||
|
</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue