Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
funkwhale_OLD
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
jovuit
funkwhale_OLD
Commits
b26cd0bb
Verified
Commit
b26cd0bb
authored
6 years ago
by
Eliot Berriot
Browse files
Options
Downloads
Patches
Plain Diff
Fixed a bug in i18n extract/compile scripts
parent
14d8224d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
front/scripts/i18n-compile.sh
+1
-1
1 addition, 1 deletion
front/scripts/i18n-compile.sh
front/scripts/i18n-extract.sh
+1
-1
1 addition, 1 deletion
front/scripts/i18n-extract.sh
with
2 additions
and
2 deletions
front/scripts/i18n-compile.sh
+
1
−
1
View file @
b26cd0bb
#!/bin/bash -eux
locales
=
$(
tail
-n
+2 src/locales.js |
sed
-e
's/export default //'
| jq
'.locales[].code'
| xargs
echo
)
find locales
-name
'*.po'
| xargs
$(
yarn bin
gettext-extract
)
/gettext-compile
--output
src/translations.json
find locales
-name
'*.po'
| xargs
$(
yarn bin
)
/gettext-compile
--output
src/translations.json
This diff is collapsed.
Click to expand it.
front/scripts/i18n-extract.sh
+
1
−
1
View file @
b26cd0bb
...
...
@@ -7,7 +7,7 @@ touch $locales_dir/app.pot
# Create a main .pot template, then generate .po files for each available language.
# Extract gettext strings from templates files and create a POT dictionary template.
$(
yarn bin
gettext-extract
)
/gettext-extract
--attribute
v-translate
--quiet
--output
$locales_dir
/app.pot
$sources
$(
yarn bin
)
/gettext-extract
--attribute
v-translate
--quiet
--output
$locales_dir
/app.pot
$sources
xgettext
--language
=
JavaScript
--keyword
=
npgettext:1c,2,3
\
--from-code
=
utf-8
--join-existing
--no-wrap
\
--package-name
=
$(
node
-e
"console.log(require('./package.json').name);"
)
\
...
...
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