Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Polish translation #65

Merged
merged 3 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ The Settings Bundle and the UI-components are currently localized in the followi
| German | de |
| Hindi | hi |
| Italian | it |
| Polish | pl |
| Portuguese | pt |
| Russian | ru |
| Spanish | es |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ extension SettingsBundleGenerator {
case fr
case hi
case it
case pl
case pt
case ru
case uk
Expand Down Expand Up @@ -61,6 +62,10 @@ extension SettingsBundleGenerator.Language {
return [
.acknowledgements: "Ringraziamenti",
]
case .pl:
return [
.acknowledgements: "Podziękowania",
]
case .pt:
return [
.acknowledgements: "Agradecimentos",
Expand Down Expand Up @@ -120,6 +125,10 @@ extension SettingsBundleGenerator.Language {
return [
.licenses: "Licenze",
]
case .pl:
return [
.licenses: "Licencje",
]
case .pt:
return [
.licenses: "Licenças",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

// Navigation bar title of the license list
"acknowledgments.title" = "Podziękowania";

// Section title for the license list
"acknowledgments.section-title" = "Licencje";

// Opens the repository in a browser window, only shown on iOS 12 and lower
"license-text.repository-button-text" = "Repozytorium";
Loading