aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/i18n
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-06-04 18:12:48 +0200
committerChocobozzz <me@florianbigard.com>2018-06-05 08:43:02 +0200
commit510fefb194aba4b365b96b150f89a9f36306560c (patch)
treef43ec5e108debdfe3173761cdc6930c7bc778ffa /scripts/i18n
parentb1d40cff89f7cff565a98cdbcea9a624196a169a (diff)
downloadPeerTube-510fefb194aba4b365b96b150f89a9f36306560c.tar.gz
PeerTube-510fefb194aba4b365b96b150f89a9f36306560c.tar.zst
PeerTube-510fefb194aba4b365b96b150f89a9f36306560c.zip
Add french
Diffstat (limited to 'scripts/i18n')
-rwxr-xr-xscripts/i18n/generate.sh3
-rwxr-xr-xscripts/i18n/pull-hook.sh6
2 files changed, 7 insertions, 2 deletions
diff --git a/scripts/i18n/generate.sh b/scripts/i18n/generate.sh
index 429523ba4..f8ad8a3c1 100755
--- a/scripts/i18n/generate.sh
+++ b/scripts/i18n/generate.sh
@@ -8,4 +8,5 @@ npm run ngx-extractor -- --locale "en-US" -i 'src/**/*.ts' -f xlf -o src/locale/
8 8
9# Zanata does not support inner elements in <source>, so we hack these special elements 9# Zanata does not support inner elements in <source>, so we hack these special elements
10# This regex translate the Angular elements to special entities (that we will reconvert on pull) 10# This regex translate the Angular elements to special entities (that we will reconvert on pull)
11sed -i 's/<x id=\([^\/]\+\?\)\/>/\&lt;x id=\1\/\&gt;/g' src/locale/source/messages_en_US.xml \ No newline at end of file 11#sed -i 's/<x id=\(.\+\?\)\/>/\&lt;x id=\1\/\&gt;/g' src/locale/source/messages_en_US.xml
12perl -pi -e 's|<x id=(.+?)/>|&lt;x id=\1/&gt;|g' src/locale/source/messages_en_US.xml \ No newline at end of file
diff --git a/scripts/i18n/pull-hook.sh b/scripts/i18n/pull-hook.sh
index cb969f83c..bbe4a813e 100755
--- a/scripts/i18n/pull-hook.sh
+++ b/scripts/i18n/pull-hook.sh
@@ -4,4 +4,8 @@ set -eu
4 4
5# Zanata does not support inner elements in <source>, so we hack these special elements 5# Zanata does not support inner elements in <source>, so we hack these special elements
6# This regex translate the converted elements to initial Angular elements 6# This regex translate the converted elements to initial Angular elements
7sed -i 's/\&lt;x id=\([^\/]\+\?\)\/\&gt;/<x id=\1\/>/g' client/src/locale/target/* \ No newline at end of file 7#sed -i 's/\&lt;x id=\(.\+\?\)\/\&gt;/<x id=\1\/>/g' client/src/locale/target/*
8
9for i in 1 2 3; do
10 perl -pi -e 's|&lt;x id=(.+?)/&gt;([^"])|<x id=\1/>\2|g' client/src/locale/target/*
11done \ No newline at end of file