You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add new languages parameter 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
}