diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2011-03-18 18:07:37 +0100 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2011-03-18 18:07:37 +0100 |
commit | 878bdeccfd66b7b8229fd761c23ba13bc51c7454 (patch) | |
tree | 6b881c4f71389ef6aa49776e8b99ac65f30f4ec2 /util/extract.php | |
parent | f4f5095e19badcc85453182b86bff97f57228257 (diff) | |
parent | 9838245c6c9b2e311650b53a1c3aa1ef778ef935 (diff) | |
download | volse-hubzilla-878bdeccfd66b7b8229fd761c23ba13bc51c7454.tar.gz volse-hubzilla-878bdeccfd66b7b8229fd761c23ba13bc51c7454.tar.bz2 volse-hubzilla-878bdeccfd66b7b8229fd761c23ba13bc51c7454.zip |
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'util/extract.php')
-rw-r--r-- | util/extract.php | 47 |
1 files changed, 36 insertions, 11 deletions
diff --git a/util/extract.php b/util/extract.php index 92ec8501c..90127f3c1 100644 --- a/util/extract.php +++ b/util/extract.php @@ -10,25 +10,50 @@ $str = file_get_contents($file); $pat = '| t\(([^\)]*)\)|'; + $patt = '| tt\(([^\)]*)\)|'; preg_match_all($pat,$str,$matches); - - if(! count($matches)) - continue; - - foreach($matches[1] as $match) { - if(! in_array($match,$arr)) - $arr[] = $match; + preg_match_all($patt, $str, $matchestt); + + + if(count($matches)){ + foreach($matches[1] as $match) { + if(! in_array($match,$arr)) + $arr[] = $match; + } + } + if(count($matchestt)){ + foreach($matchestt[1] as $match) { + $matchtkns = preg_split("|[ \t\r\n]*,[ \t\r\n]*|",$match); + if (count($matchtkns)==3 && !in_array($matchtkns,$arr)){ + $arr[] = $matchtkns; + } + } } } $s = '<?php' . "\n"; - foreach($arr as $a) { - if(substr($a,0,1) == '$') - continue; + $s .= ' +function string_plural_select($n){ + return ($n != 1); +} - $s .= '$a->strings[' . $a . '] = ' . $a . ';' . "\n"; +'; + + foreach($arr as $a) { + if (is_array($a)){ + if(substr($a[1],0,1) == '$') + continue; + $s .= '$a->strings[' . $a[0] . "] = array(\n"; + $s .= "\t0 => ". $a[0]. ",\n"; + $s .= "\t1 => ". $a[1]. ",\n"; + $s .= ");\n"; + } else { + if(substr($a,0,1) == '$') + continue; + $s .= '$a->strings[' . $a . '] = '. $a . ';' . "\n"; + } } $zones = timezone_identifiers_list(); |