com.legyver.resource-bundle-i18n
Owner: Benjamin Arnold
Auto-generates resource bundle translations based on original property file and sending the values to libretranslate for translation. This ends up in a locale-specific property file
https://github.com/orgs/legyver-gradle-plugins/dashboard
Sources: https://github.com/legyver-gradle-plugins/resource-bundle-i18n.git
Version 1.0.4 (latest)
1.0.4
Created 17 December 2022.
Auto-generates resource bundle translations based on original property file and sending the values to libretranslate for translation. This ends up in a locale-specific property file
Using the plugins DSL:
plugins {
id("com.legyver.resource-bundle-i18n") version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.legyver:resource-bundle-i18n:1.0.4")
}
}
apply(plugin = "com.legyver.resource-bundle-i18n")
Using the plugins DSL:
plugins {
id "com.legyver.resource-bundle-i18n" version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.legyver:resource-bundle-i18n:1.0.4"
}
}
apply plugin: "com.legyver.resource-bundle-i18n"