Skip to content

Commit b42bd2b

Browse files
authored
Merge pull request openedx#18565 from edx/fix-make-extract-translations
Fixed make extract_translations
2 parents 7f773cc + 23dbb85 commit b42bd2b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ clean: ## archive and delete most git-ignored files
1919
rm $(PRIVATE_FILES)
2020

2121
extract_translations: ## extract localizable strings from sources
22-
i18n_tool extract -vv
22+
i18n_tool extract -v
2323

2424
push_translations: ## push source strings to Transifex for translation
2525
i18n_tool transifex push

pavelib/i18n.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def i18n_extract(options):
3838
cmd = "i18n_tool extract"
3939

4040
if verbose:
41-
cmd += " -vv"
41+
cmd += " -v"
4242

4343
sh(cmd)
4444

0 commit comments

Comments
 (0)