Skip to content

2.4.0

Choose a tag to compare

@adriangl adriangl released this 26 Jul 20:24
· 52 commits to master since this release
3127f56

Added

  • Add filters parameter to poEditorConfig block to specify the POEditor filters to use for all languages. Thanks to @nokite for the contribution!
Groovy
poEditor {
    apiToken = "your_api_token"
    projectId = 12345
    defaultLang = "en"
    filters = ["translated", "not_fuzzy"]
}
Kotlin
poEditor {
    apiToken = "your_api_token"
    projectId = 12345
    defaultLang = "en"
    filters = listOf("translated", "not_fuzzy")
}