name.kropp.kotlinx-gettext
所有者: Victor Kropp
从Kotlin文件中提取字符串以进行i18n并使用Gettext格式
https://github.com/kropp/kotlinx-gettext
来源: https://github.com/kropp/kotlinx-gettext
使用plugins DSL
plugins {
id("name.kropp.kotlinx-gettext") version "0.6.1"
}
使用旧的插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("name.kropp.kotlinx-gettext:kotlinx-gettext-gradle-plugin:0.6.1")
}
}
apply(plugin = "name.kropp.kotlinx-gettext")
使用plugins DSL
plugins {
id "name.kropp.kotlinx-gettext" version "0.6.1"
}
使用旧的插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "name.kropp.kotlinx-gettext:kotlinx-gettext-gradle-plugin:0.6.1"
}
}
apply plugin: "name.kropp.kotlinx-gettext"