Search Gradle plugins

Gradle plugin which generates files based on your translation bundles, for use with the Kord Extensions i18n framework.

https://docs.kordex.dev/i18n/plugin/

Sources: https://codeberg.org/Kord-Extensions/i18n

Version 1.1.1 (latest)

Created 15 December 2025.

Gradle plugin which generates files based on your translation bundles, for use with the Kord Extensions i18n framework.

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.kordex.gradle.i18n") version "1.1.1"
}

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