Releases: hyperdevs-team/poeditor-android-gradle-plugin
Releases · hyperdevs-team/poeditor-android-gradle-plugin
4.3.1
Added
- Add new
languagesparameter to filter which languages to download from PoEditor.
If not specified or empty, all languages will be downloaded. Thanks to @DaniAguion for the contribution!
Groovy
poEditor {
apiToken = "your_api_token"
projectId = 12345
defaultLang = "en"
languages = ["en", "es", "fr"] // Download only English, Spanish, and French
}Kotlin
poEditor {
apiToken = "your_api_token"
projectId = 12345
defaultLang = "en"
languages.set(listOf("en", "es", "fr")) // Download only English, Spanish, and French
}4.3.0
Added
- Add new
includeCommentsflag to keep comments generated in PoEditor in the generated XML files.
Groovy
poEditor {
apiToken = "your_api_token"
projectId = 12345
defaultLang = "en"
includeComments = true
}Kotlin
poEditor {
apiToken = "your_api_token"
projectId = 12345
defaultLang = "en"
includeComments = true
}Fixed
- Fix bug with
&character not being properly escaped.
4.2.1
Fixed
- Fix issue with toLowerCase behavior for the Turkish language. Thanks to @fevziomurtekin for the contribution!
4.2.0
Added
- Add new
untranslatableStringsRegexto define a regex to mark matching PoEditor string keys as untranslatable.
Groovy
poEditor {
apiToken = "your_api_token"
projectId = 12345
defaultLang = "en"
untranslatableStringsRegex = "(.*)"
}Kotlin
poEditor {
apiToken = "your_api_token"
projectId = 12345
defaultLang = "en"
untranslatableStringsRegex = "(.*)"
}4.1.2
4.1.1
4.1.0
4.0.0
3.4.2
Fixed
- Fix tags not being sent as String JSON array. Thanks to @bogdanzurac for the contribution!