Merge pull request #18565 from edx/fix-make-extract-translations

Fixed make extract_translations
This commit is contained in:
Ayub-khan
2018-07-12 13:01:02 +05:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ clean: ## archive and delete most git-ignored files
rm $(PRIVATE_FILES)
extract_translations: ## extract localizable strings from sources
i18n_tool extract -vv
i18n_tool extract -v
push_translations: ## push source strings to Transifex for translation
i18n_tool transifex push

View File

@@ -38,7 +38,7 @@ def i18n_extract(options):
cmd = "i18n_tool extract"
if verbose:
cmd += " -vv"
cmd += " -v"
sh(cmd)