Skip to content

Commit abb8528

Browse files
committed
added Turkish language
1 parent 8662bad commit abb8528

5 files changed

Lines changed: 21501 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
@@ -1243,6 +1243,7 @@
12431243
hasScannedForEncodings = 0;
12441244
knownRegions = (
12451245
en,
1246+
tr,
12461247
vi,
12471248
"zh-Hans",
12481249
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)