Package-level declarations

Types

Link copied to clipboard
@Serializable
data class Bundle(val name: String, val formattingVersion: MessageFormatVersion = MessageFormatVersion.ONE)
Link copied to clipboard
@Serializable
data class Key(val key: String, val bundle: Bundle? = null, val locale: Locale? = null, val presetPlaceholderPosition: PlaceholderPosition = PlaceholderPosition.FIRST, val translateNestedKeys: Boolean = true, val ordinalPlaceholders: List<Any?> = listOf(), val namedPlaceholders: Map<String, Any?> = mapOf(), val postProcessors: List<PostProcessor> = listOf())
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
typealias PostProcessor = Key.(translation: String) -> String