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
a368982c
Commit
a368982c
authored
Mar 30, 2016
by
Ned Batchelder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stop using roundabout ways of passing strings to cmd()
parent
343bb3e9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
26 deletions
+12
-26
pavelib/i18n.py
+12
-26
No files found.
pavelib/i18n.py
View file @
a368982c
...
...
@@ -42,8 +42,7 @@ def i18n_fastgenerate():
"""
Compile localizable strings from sources without re-extracting strings first.
"""
cmd
=
"i18n_tool generate"
sh
(
cmd
)
sh
(
"i18n_tool generate"
)
@task
...
...
@@ -52,8 +51,7 @@ def i18n_generate():
"""
Compile localizable strings from sources, extracting strings first.
"""
cmd
=
"i18n_tool generate"
sh
(
cmd
)
sh
(
"i18n_tool generate"
)
@task
...
...
@@ -63,8 +61,7 @@ def i18n_generate_strict():
Compile localizable strings from sources, extracting strings first.
Complains if files are missing.
"""
cmd
=
"i18n_tool generate"
sh
(
cmd
+
" --strict"
)
sh
(
"i18n_tool generate --strict"
)
@task
...
...
@@ -74,11 +71,9 @@ def i18n_dummy():
Simulate international translation by generating dummy strings
corresponding to source strings.
"""
cmd
=
"i18n_tool dummy"
sh
(
cmd
)
sh
(
"i18n_tool dummy"
)
# Need to then compile the new dummy strings
cmd
=
"i18n_tool generate"
sh
(
cmd
)
sh
(
"i18n_tool generate"
)
@task
...
...
@@ -131,8 +126,7 @@ def i18n_transifex_push():
"""
Push source strings to Transifex for translation
"""
cmd
=
"i18n_tool transifex"
sh
(
"{cmd} push"
.
format
(
cmd
=
cmd
))
sh
(
"i18n_tool transifex push"
)
@task
...
...
@@ -141,8 +135,7 @@ def i18n_transifex_pull():
"""
Pull translated strings from Transifex
"""
cmd
=
"i18n_tool transifex"
sh
(
"{cmd} pull"
.
format
(
cmd
=
cmd
))
sh
(
"i18n_tool transifex pull"
)
@task
...
...
@@ -150,14 +143,11 @@ def i18n_rtl():
"""
Pull all RTL translations (reviewed AND unreviewed) from Transifex
"""
cmd
=
"i18n_tool transifex"
sh
(
cmd
+
" rtl"
)
sh
(
"i18n_tool transifex rtl"
)
print
"Now generating langugage files..."
cmd
=
"i18n_tool generate"
sh
(
cmd
+
" --rtl"
)
sh
(
"i18n_tool generate --rtl"
)
print
"Committing translations..."
sh
(
'git clean -fdX conf/locale'
)
...
...
@@ -170,14 +160,11 @@ def i18n_ltr():
"""
Pull all LTR translations (reviewed AND unreviewed) from Transifex
"""
cmd
=
"i18n_tool transifex"
sh
(
cmd
+
" ltr"
)
sh
(
"i18n_tool transifex ltr"
)
print
"Now generating langugage files..."
cmd
=
"i18n_tool generate"
sh
(
cmd
+
" --ltr"
)
sh
(
"i18n_tool generate --ltr"
)
print
"Committing translations..."
sh
(
'git clean -fdX conf/locale'
)
...
...
@@ -203,9 +190,8 @@ def i18n_robot_pull():
# TODO: Validate the recently pulled translations, and give a bail option
sh
(
'git clean -fdX conf/locale/rtl'
)
sh
(
'git clean -fdX conf/locale/eo'
)
cmd
=
"i18n_tool validate"
print
"
\n\n
Validating translations with `i18n_tool validate`..."
sh
(
"
{cmd}"
.
format
(
cmd
=
cmd
)
)
sh
(
"
i18n_tool validate"
)
# Generate static i18n JS files.
for
system
in
[
'lms'
,
'cms'
]:
...
...
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