Skip to content

Commit f550c15

Browse files
authored
Merge pull request #350 from sineld/main
added Turkish language
2 parents 945994a + c057694 commit f550c15

6 files changed

Lines changed: 21502 additions & 13128 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
- Turkish language in Settings > General (Türkçe) with Turkish translations for UI strings
1213
- etcd v3 plugin with prefix-tree key browsing, etcdctl syntax editor, lease management, watch, mTLS, auth, and cluster info
1314
- Save Changes button in toolbar for committing pending data edits
1415
- Confirmation dialog before deleting a connection

TablePro.xcodeproj/project.pbxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1241,6 +1241,7 @@
12411241
hasScannedForEncodings = 0;
12421242
knownRegions = (
12431243
en,
1244+
tr,
12441245
vi,
12451246
"zh-Hans",
12461247
Base,

TablePro/Models/Settings/AppSettings.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ enum AppLanguage: String, Codable, CaseIterable, Identifiable {
3232
case english = "en"
3333
case vietnamese = "vi"
3434
case chineseSimplified = "zh-Hans"
35+
case turkish = "tr"
3536

3637
var id: String { rawValue }
3738

@@ -41,6 +42,7 @@ enum AppLanguage: String, Codable, CaseIterable, Identifiable {
4142
case .english: return "English"
4243
case .vietnamese: return "Tiếng Việt"
4344
case .chineseSimplified: return "简体中文"
45+
case .turkish: return "Türkçe"
4446
}
4547
}
4648

0 commit comments

Comments
 (0)