Add qa to translate task.

master
Alan Evans 2020-07-17 11:14:47 -03:00 committed by Greyson Parrelli
parent 4c04991b70
commit 38c74c81a6
1 changed files with 8 additions and 1 deletions

View File

@ -101,8 +101,15 @@ task excludeNonTranslatables {
mustRunAfter cleanApostropheErrors
}
task postTranslateQa {
group 'Translate'
description 'Runs QA to check validity of updated strings, and ensure presence of any new languages in internal lists.'
dependsOn ':qa'
mustRunAfter excludeNonTranslatables
}
task translate {
group 'Translate'
description 'Pull translations and post-process for ellipsis, apostrophes and non-translatables.'
dependsOn pullTranslations, replaceEllipsis, cleanApostropheErrors, excludeNonTranslatables
dependsOn pullTranslations, replaceEllipsis, cleanApostropheErrors, excludeNonTranslatables, postTranslateQa
}