Created
September 3, 2025 23:55
-
-
Save sarimmehdi/7586aeb411494c8adbc2c44474686318 to your computer and use it in GitHub Desktop.
add the plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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