Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
94cd1e65
Commit
94cd1e65
authored
Jun 23, 2014
by
Dave St.Germain
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change reference to installed i18n command.
parent
834c2c47
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
pavelib/i18n.py
+6
-7
No files found.
pavelib/i18n.py
View file @
94cd1e65
...
...
@@ -5,7 +5,6 @@ import sys
import
subprocess
from
path
import
path
from
paver.easy
import
task
,
cmdopts
,
needs
,
sh
from
pavelib.utils.envs
import
Env
try
:
from
pygments.console
import
colorize
...
...
@@ -26,7 +25,7 @@ def i18n_extract(options):
Extract localizable strings from sources
"""
verbose
=
getattr
(
options
,
"verbose"
,
None
)
cmd
=
Env
.
REPO_ROOT
/
"i18n"
/
"extract.py
"
cmd
=
"i18n_tool extract
"
if
verbose
:
cmd
+=
" -vv"
...
...
@@ -40,7 +39,7 @@ def i18n_generate():
"""
Compile localizable strings from sources, extracting strings first.
"""
cmd
=
Env
.
REPO_ROOT
/
"i18n"
/
"generate.py
"
cmd
=
"i18n_tool generate
"
sh
(
cmd
)
...
...
@@ -51,7 +50,7 @@ def i18n_generate_strict():
Compile localizable strings from sources, extracting strings first.
Complains if files are missing.
"""
cmd
=
Env
.
REPO_ROOT
/
"i18n"
/
"generate.py
"
cmd
=
"i18n_tool generate
"
sh
(
cmd
+
" --strict"
)
...
...
@@ -62,7 +61,7 @@ def i18n_dummy():
Simulate international translation by generating dummy strings
corresponding to source strings.
"""
cmd
=
Env
.
REPO_ROOT
/
"i18n"
/
"dummy.p
y"
cmd
=
"i18n_tool dumm
y"
sh
(
cmd
)
...
...
@@ -116,7 +115,7 @@ def i18n_transifex_push():
"""
Push source strings to Transifex for translation
"""
cmd
=
Env
.
REPO_ROOT
/
"i18n"
/
"transifex.py
"
cmd
=
"i18n_tool transifex
"
sh
(
"{cmd} push"
.
format
(
cmd
=
cmd
))
...
...
@@ -126,7 +125,7 @@ def i18n_transifex_pull():
"""
Pull translated strings from Transifex
"""
cmd
=
Env
.
REPO_ROOT
/
"i18n"
/
"transifex.py
"
cmd
=
"i18n_tool transifex
"
sh
(
"{cmd} pull"
.
format
(
cmd
=
cmd
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment