Search Gradle plugins

io.github.clubpay.auto-translate

Gradle plugin for automatic Android string resource translation using AI. Detects missing translations and uses OpenAI API for context-aware, high-quality localization.

https://github.com/clubpay/qlub-auto-translate-android

Sources: https://github.com/clubpay/qlub-auto-translate-android.git

Version 1.0.0 (latest)

Created 07 October 2025.

Gradle plugin for automatic Android string resource translation using AI. Detects missing translations and uses OpenAI API for context-aware, high-quality localization.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.clubpay.auto-translate") version "1.0.0"
}

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