Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
eb4d5f1c
Commit
eb4d5f1c
authored
11 years ago
by
Ned Batchelder
Browse files
Options
Downloads
Patches
Plain Diff
Also clean up the 3rd-party po files.
parent
a8c60259
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
i18n/extract.py
+8
-2
8 additions, 2 deletions
i18n/extract.py
with
8 additions
and
2 deletions
i18n/extract.py
+
8
−
2
View file @
eb4d5f1c
...
...
@@ -79,25 +79,31 @@ def main():
source_msgs_dir
.
joinpath
(
'
djangojs-partial.po
'
)
)
files_to_clean
=
set
()
# Extract strings from third-party applications.
for
app_name
in
CONFIGURATION
.
third_party
:
# Import the app to find out where it is. Then use pybabel to extract
# from that directory.
app_module
=
importlib
.
import_module
(
app_name
)
app_dir
=
path
(
app_module
.
__file__
).
dirname
().
dirname
()
output_file
=
source_msgs_dir
/
(
app_name
+
"
.po
"
)
files_to_clean
.
add
(
output_file
)
babel_cmd
=
'
pybabel extract -F {config} -c
"
Translators:
"
{app} -o {output}
'
babel_cmd
=
babel_cmd
.
format
(
config
=
LOCALE_DIR
/
'
babel_third_party.cfg
'
,
app
=
app_name
,
output
=
s
ou
rce_msgs_dir
/
(
app_name
+
"
.po
"
)
,
output
=
ou
tput_file
,
)
execute
(
babel_cmd
,
working_directory
=
app_dir
)
# Segment the generated files.
segmented_files
=
segment_pofiles
(
"
en
"
)
files_to_clean
.
update
(
segmented_files
)
# Finish each file.
for
filename
in
segmented_files
:
for
filename
in
files_to_clean
:
LOG
.
info
(
'
Cleaning %s
'
%
filename
)
po
=
pofile
(
source_msgs_dir
.
joinpath
(
filename
))
# replace default headers with edX headers
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment