Releases: hyperdevs-team/poeditor-android-gradle-plugin
Releases · hyperdevs-team/poeditor-android-gradle-plugin
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!
3.4.1
3.4.0
Added
- Add new
unescapeHtmlTagsflag 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 }