This commit is contained in:
Jinyu Meng 2025-09-21 23:45:24 +09:00 committed by GitHub
commit 831feb4cf4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 32 additions and 11 deletions

View file

@ -4783,7 +4783,7 @@
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : ""
"value" : "Apple芯片"
}
},
"zh-Hant" : {
@ -5055,7 +5055,14 @@
}
},
"Architecture" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "架构"
}
}
}
},
"Authenticating" : {
"extractionState" : "manual",
@ -5964,7 +5971,14 @@
}
},
"Category" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "类别"
}
}
}
},
"Change" : {
"localizations" : {
@ -11371,7 +11385,7 @@
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "Install Apple Silicon"
"value" : "安装Apple芯片版本"
}
},
"zh-Hant" : {
@ -11495,7 +11509,7 @@
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "Install Universal"
"value" : "安装通用版本"
}
},
"zh-Hant" : {
@ -14127,7 +14141,14 @@
}
},
"Installed Only" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "仅已安装"
}
}
}
},
"InstallHelper" : {
"localizations" : {
@ -23811,7 +23832,7 @@
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "Universal"
"value" : "通用"
}
},
"zh-Hant" : {

View file

@ -19,9 +19,9 @@ public enum Architecture: String, Codable, Equatable, Hashable, Identifiable, Ca
public var displayString: String {
switch self {
case .arm64:
return "Apple Silicon"
return localizeString("Apple Silicon")
case .x86_64:
return "Intel"
return localizeString("Intel")
}
}
@ -44,9 +44,9 @@ public enum ArchitectureVariant: String, Codable, Equatable, Hashable, Identifia
public var displayString: String {
switch self {
case .appleSilicon:
return "Apple Silicon"
return localizeString("Apple Silicon")
case .universal:
return "Universal"
return localizeString("Universal")
}
}