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
0.4.1-dev-1-ir
Created 24 November 2022.
Extract strings for i18n from Kotlin files in Gettext format
Using the plugins DSL:
plugins {
id("name.kropp.kotlinx-gettext") version "0.4.1-dev-1-ir"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("name.kropp.kotlinx-gettext:kotlinx-gettext-gradle-plugin:0.4.1-dev-1-ir")
}
}
apply(plugin = "name.kropp.kotlinx-gettext")
Using the plugins DSL:
plugins {
id "name.kropp.kotlinx-gettext" version "0.4.1-dev-1-ir"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "name.kropp.kotlinx-gettext:kotlinx-gettext-gradle-plugin:0.4.1-dev-1-ir"
}
}
apply plugin: "name.kropp.kotlinx-gettext"