Localizations

This commit is contained in:
Arkadiusz Fal
2022-09-04 17:28:30 +02:00
parent 2d51f6adff
commit b66e177114
33 changed files with 2180 additions and 122 deletions

View File

@@ -45,11 +45,11 @@ enum PlayerControlsLayout: String, CaseIterable, Defaults.Serializable {
var description: String {
switch self {
case .tvRegular:
return "TV"
return "TV".localized()
case .veryLarge:
return "Very Large"
return "Very Large".localized()
default:
return rawValue.capitalized
return rawValue.capitalized.localized()
}
}