Search Gradle plugins

com.legyver.resource-bundle-i18n

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.1

Created 03 September 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.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.legyver:resource-bundle-i18n:1.0.1")
  }
}

apply(plugin = "com.legyver.resource-bundle-i18n")

Using the plugins DSL:

plugins {
  id "com.legyver.resource-bundle-i18n" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.legyver:resource-bundle-i18n:1.0.1"
  }
}

apply plugin: "com.legyver.resource-bundle-i18n"

Learn how to apply plugins to subprojects