Merge pull request #18565 from edx/fix-make-extract-translations
Fixed make extract_translations
This commit is contained in:
2
Makefile
2
Makefile
@@ -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
|
||||
|
||||
@@ -38,7 +38,7 @@ def i18n_extract(options):
|
||||
cmd = "i18n_tool extract"
|
||||
|
||||
if verbose:
|
||||
cmd += " -vv"
|
||||
cmd += " -v"
|
||||
|
||||
sh(cmd)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user