Skip to content

Instantly share code, notes, and snippets.

@sarimmehdi
Created September 3, 2025 23:55
Show Gist options
  • Save sarimmehdi/7586aeb411494c8adbc2c44474686318 to your computer and use it in GitHub Desktop.
Save sarimmehdi/7586aeb411494c8adbc2c44474686318 to your computer and use it in GitHub Desktop.
add the plugin
plugins {
id("io.github.sarimmehdi.translate-genie") version "1.0.0" apply false
}
subprojects {
pluginManager.apply("com.sarim.translate-genie")
configure<TranslateGenieExtension> {
baseApiUrl = "https://libretranslate.com/translate"
keyForTextsToTranslate = "q"
keyForTargetLanguage = "target"
keyForSourceLanguage = "source"
targetLanguagesList = listOf("es", "fr", "de")
responseKeyForTranslatedTextsArray = "translatedText"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment