LanguagePackStringValue
public indirect enum LanguagePackStringValue : Codable, Equatable, FunctionResult, TDEnum, EquatableEnum
Represents the value of a string in a language pack
-
An ordinary language pack string
- value: String value
Declaration
Swift
case ordinary(value: String)
-
A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info
- zeroValue: Value for zero objects
- oneValue: Value for one object
- twoValue: Value for two objects
- fewValue: Value for few objects
- manyValue: Value for many objects
- otherValue: Default value
Declaration
Swift
case pluralized(zeroValue: String, oneValue: String, twoValue: String, fewValue: String, manyValue: String, otherValue: String)
-
A deleted language pack string, the value should be taken from the built-in english language pack
Declaration
Swift
case deleted