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.4 (latest)

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.legyver.resource-bundle-i18n") version "1.0.4"
}

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("com.legyver.resource-bundle-i18n:com.legyver.resource-bundle-i18n.gradle.plugin:1.0.4")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.legyver.resource-bundle-i18n")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.legyver.resource-bundle-i18n:com.legyver.resource-bundle-i18n.gradle.plugin:1.0.4")
      }
    }
    
    apply(plugin = "com.legyver.resource-bundle-i18n")
  • Applying plugins to all subprojects .