Skip to content
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Turkish language in Settings > General (Türkçe) with Turkish translations for UI strings
- etcd v3 plugin with prefix-tree key browsing, etcdctl syntax editor, lease management, watch, mTLS, auth, and cluster info
- Save Changes button in toolbar for committing pending data edits
- Confirmation dialog before deleting a connection
Expand Down
1 change: 1 addition & 0 deletions TablePro.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1243,6 +1243,7 @@
hasScannedForEncodings = 0;
knownRegions = (
en,
tr,
vi,
"zh-Hans",
Base,
Expand Down
2 changes: 2 additions & 0 deletions TablePro/Models/Settings/AppSettings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ enum AppLanguage: String, Codable, CaseIterable, Identifiable {
case english = "en"
case vietnamese = "vi"
case chineseSimplified = "zh-Hans"
case turkish = "tr"

var id: String { rawValue }

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

Expand Down
Loading
Loading