Add RTL support to conversation message bubbles

This commit is contained in:
Torsten Grote
2018-09-11 13:37:59 -03:00
parent b72f6b4fc3
commit 81292967e0
18 changed files with 137 additions and 102 deletions

View File

@@ -153,8 +153,9 @@ task verifyTranslations {
lc.children().each { value -> translations.add(value.text()) }
def folders = ["default", "en-US"]
def exceptions = ["values-night", "values-v21", "values-ldrtl"]
project.file("src/main/res").eachDir { dir ->
if (dir.name.startsWith("values-") && !dir.name.endsWith("night") && !dir.name.endsWith("v21")) {
if (dir.name.startsWith("values-") && !exceptions.contains(dir.name)) {
folders.add(dir.name.substring(7).replace("-r", "-"))
}
}