Search Gradle plugins

dk.acto.gradle.i18nplugin

Generates a JSON file with internationalized texts, based on a Google Sheet.

https://github.com/actoaps/gradle-i18n-plugin

Sources: https://github.com/actoaps/gradle-i18n-plugin

Version 1.0.9.003fca1 (latest)

Created 11 October 2021.

Generates a JSON file with internationalized texts, based on a Google Sheet.

Add this plugin to your build using the plugins DSL:

plugins {
  id("dk.acto.gradle.i18nplugin") version "1.0.9.003fca1"
}

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