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

[Feature] Turkish Localization #106

Merged
merged 1 commit into from Feb 28, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -257,6 +257,7 @@ The Settings Bundle and the UI-components are currently localized in the followi
| Portuguese | pt |
| Russian | ru |
| Spanish | es |
| Turkish | tr |
| Ukrainian | uk |

> If a language has mistakes or is missing, feel free to create an issue or open a pull request.
Expand Down
Expand Up @@ -20,6 +20,7 @@ extension SettingsBundleGenerator {
case pl
case pt
case ru
case tr
case uk
case zhHans = "zh-hans"
case zhHant = "zh-hant"
Expand Down Expand Up @@ -74,6 +75,10 @@ extension SettingsBundleGenerator.Language {
return [
.acknowledgements: "Благодарности",
]
case .tr:
return [
.acknowledgements: "Teşekkürler",
]
case .uk:
return [
.acknowledgements: "Подяки",
Expand Down Expand Up @@ -137,6 +142,10 @@ extension SettingsBundleGenerator.Language {
return [
.licenses: "Лицензии",
]
case .tr:
return [
.licenses: "Lisanslar",
]
case .uk:
return [
.licenses: "Ліцензії",
Expand Down
@@ -0,0 +1,6 @@

// Navigation bar title of the license list
"acknowledgments.title" = "Teşekkürler";

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