Update run_xgettext script and util/messages.po to use with transifex. Fix to po2php
This commit is contained in:
parent
944f1a7f4c
commit
4c2c14d34c
4847
util/messages.po
4847
util/messages.po
File diff suppressed because it is too large
Load diff
|
@ -35,7 +35,7 @@ function po2php_run($argv, $argc) {
|
||||||
if ($l[0]=="#") $l="";
|
if ($l[0]=="#") $l="";
|
||||||
if (substr($l,0,15)=='"Plural-Forms: '){
|
if (substr($l,0,15)=='"Plural-Forms: '){
|
||||||
$match=Array();
|
$match=Array();
|
||||||
preg_match("|nplurals=([0-9]*); plural=(.*);|", $l, $match);
|
preg_match("|nplurals=([0-9]*); *plural=(.*)|", $l, $match);
|
||||||
$cond = str_replace('n','$n',$match[2]);
|
$cond = str_replace('n','$n',$match[2]);
|
||||||
$out .= 'function string_plural_select($n){'."\n";
|
$out .= 'function string_plural_select($n){'."\n";
|
||||||
$out .= ' return '.$cond.';'."\n";
|
$out .= ' return '.$cond.';'."\n";
|
||||||
|
@ -112,4 +112,4 @@ function po2php_run($argv, $argc) {
|
||||||
|
|
||||||
if (array_search(__file__,get_included_files())===0){
|
if (array_search(__file__,get_included_files())===0){
|
||||||
po2php_run($argv,$argc);
|
po2php_run($argv,$argc);
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,7 @@ sed -i "s/FIRST AUTHOR <EMAIL@ADDRESS>, YEAR./Mike Macgirvin, 2010/g" "$OUTFILE"
|
||||||
sed -i "s/PACKAGE VERSION/$F9KVERSION/g" "$OUTFILE"
|
sed -i "s/PACKAGE VERSION/$F9KVERSION/g" "$OUTFILE"
|
||||||
sed -i "s/PACKAGE/Friendika/g" "$OUTFILE"
|
sed -i "s/PACKAGE/Friendika/g" "$OUTFILE"
|
||||||
sed -i "s/CHARSET/UTF-8/g" "$OUTFILE"
|
sed -i "s/CHARSET/UTF-8/g" "$OUTFILE"
|
||||||
|
sed -i "s/^\"Plural-Forms/#\"Plural-Forms/g" "$OUTFILE"
|
||||||
|
|
||||||
|
|
||||||
echo "done."
|
echo "done."
|
||||||
|
|
Loading…
Reference in a new issue