localize main app
This commit is contained in:
@@ -19,17 +19,17 @@ enum Mood: Int {
|
||||
var strValue: String {
|
||||
switch self {
|
||||
case .horrible:
|
||||
return "Horrible"
|
||||
return String(localized: "mood_value_horrible")
|
||||
case .bad:
|
||||
return "Bad"
|
||||
return String(localized: "mood_value_bad")
|
||||
case .average:
|
||||
return "Average"
|
||||
return String(localized: "mood_value_average")
|
||||
case .good:
|
||||
return "Good"
|
||||
return String(localized: "mood_value_good")
|
||||
case .great:
|
||||
return "Great"
|
||||
return String(localized: "mood_value_great")
|
||||
case .missing:
|
||||
return "Missing"
|
||||
return String(localized: "mood_value_missing")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user