We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7f773cc + 23dbb85 commit b42bd2bCopy full SHA for b42bd2b
Makefile
@@ -19,7 +19,7 @@ clean: ## archive and delete most git-ignored files
19
rm $(PRIVATE_FILES)
20
21
extract_translations: ## extract localizable strings from sources
22
- i18n_tool extract -vv
+ i18n_tool extract -v
23
24
push_translations: ## push source strings to Transifex for translation
25
i18n_tool transifex push
pavelib/i18n.py
@@ -38,7 +38,7 @@ def i18n_extract(options):
38
cmd = "i18n_tool extract"
39
40
if verbose:
41
- cmd += " -vv"
+ cmd += " -v"
42
43
sh(cmd)
44
0 commit comments