Releases: hyperdevs-team/poeditor-android-gradle-plugin
Releases · hyperdevs-team/poeditor-android-gradle-plugin
4.2.1
4.2.0
Added
- Add new
untranslatableStringsRegex
to 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!
3.4.1
3.4.0
Added
- Add new
unescapeHtmlTags
flag to enable or disable HTML unescaping from strings.
Groovy
poEditor {
apiToken = "your_api_token"
projectId = 12345
defaultLang = "en"
unescapeHtmlTags = false
}
Kotlin
poEditor {
apiToken = "your_api_token"
projectId = 12345
defaultLang = "en"
unescapeHtmlTags = false
}