data class MsgStr
A single translatable string in singular and optionally one or more plural versions.
strings - a list of all singular and plural variants of this string. The first element is the singular version,
the rest of the elements are the plurals.
MsgStr(singularString: String, vararg pluralStrings: String)MsgStr(strings: List<String>)
A single translatable string in singular and optionally one or more plural versions. |
val strings: List<String>
a list of all singular and plural variants of this string. The first element is the singular version, the rest of the elements are the plurals. |
fun toByteArray(): ByteArray
Converts this object to the default ByteArray representation as used in *.mo files. The strings for the different grammatical numbers (singular, plural(s)) are separated by GRAMMATICAL_NUMBER_SEPARATOR. |
const val GRAMMATICAL_NUMBER_SEPARATOR: Char
The |