name.kropp.kotlinx-gettext
Owner: Victor Kropp
Extract strings for i18n from Kotlin files in Gettext format
https://github.com/kropp/kotlinx-gettext
Sources: https://github.com/kropp/kotlinx-gettext
Version 0.4.1-dev-1-ir
Created 24 November 2022.
Extract strings for i18n from Kotlin files in Gettext format
Add this plugin to your build using the plugins DSL:
plugins {
id("name.kropp.kotlinx-gettext") version "0.4.1-dev-1-ir"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("name.kropp.kotlinx-gettext:name.kropp.kotlinx-gettext.gradle.plugin:0.4.1-dev-1-ir") }
It can then be applied in the precompiled script plugin:plugins { id("name.kropp.kotlinx-gettext") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("name.kropp.kotlinx-gettext:name.kropp.kotlinx-gettext.gradle.plugin:0.4.1-dev-1-ir") } } apply(plugin = "name.kropp.kotlinx-gettext")
- Applying plugins to all subprojects .