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
|
||||
- @BenjaminSiskoo - French
|
||||
- mikakunin - Japanese
|
||||
- Zuzia, Seba - Polish
|
||||
- Zuzia, Seba, @CookiePLMonster - Polish
|
||||
|
||||
## Cheat Database
|
||||
- Pugsy
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
</size>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>RetroAchievements Login</string>
|
||||
<string comment="Window title">RetroAchievements Login</string>
|
||||
</property>
|
||||
<property name="modal">
|
||||
<bool>true</bool>
|
||||
|
@ -54,7 +54,7 @@
|
|||
</font>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>RetroAchievements Login</string>
|
||||
<string comment="Header text">RetroAchievements Login</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
||||
|
|
|
@ -1375,13 +1375,13 @@ void QtHostInterface::OnAchievementsRefreshed()
|
|||
"Game Title: %2\n"
|
||||
"Game Developer: %3\n"
|
||||
"Game Publisher: %4\n"
|
||||
"Achievements: %5 (%6 points)\n\n")
|
||||
"Achievements: %5 (%6)\n\n")
|
||||
.arg(Cheevos::GetGameID())
|
||||
.arg(QString::fromStdString(Cheevos::GetGameTitle()))
|
||||
.arg(QString::fromStdString(Cheevos::GetGameDeveloper()))
|
||||
.arg(QString::fromStdString(Cheevos::GetGamePublisher()))
|
||||
.arg(Cheevos::GetAchievementCount())
|
||||
.arg(Cheevos::GetMaximumPointsForGame());
|
||||
.arg(tr("%n points", "", Cheevos::GetMaximumPointsForGame()));
|
||||
|
||||
const std::string& rich_presence_string = Cheevos::GetRichPresenceString();
|
||||
if (!rich_presence_string.empty())
|
||||
|
|
|
@ -41,4 +41,14 @@
|
|||
</translation>
|
||||
</message>
|
||||
</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>
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue