curly braces + spaces added

Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
Roland Häder 2017-01-26 14:44:46 +01:00 committed by Roland Haeder
parent 15c77beee2
commit 720e7d6034
No known key found for this signature in database
GPG key ID: B72F8185C6C7BD78
7 changed files with 121 additions and 97 deletions

View file

@ -10,7 +10,7 @@
DEFINE("NORM_REGEXP", "|[\\\]|");
if(! class_exists('App')) {
if (! class_exists('App')) {
class TmpA {
public $strings = Array();
}
@ -68,7 +68,7 @@
}
$infile = file($phpfile);
foreach($infile as $l) {
foreach ($infile as $l) {
$l = trim($l);
if (startsWith($l, 'function string_plural_select_')) {
$lang = str_replace( 'function string_plural_select_' , '', str_replace( '($n){','', $l) );
@ -94,7 +94,7 @@
$norm_base_msgids = array();
$base_f = file("util/messages.po") or die("No base messages.po\n");
$_f = 0; $_mid = ""; $_mids = array();
foreach( $base_f as $l) {
foreach ( $base_f as $l) {
$l = trim($l);
//~ print $l."\n";
@ -165,7 +165,7 @@
}
$warnings = "";
foreach($a->strings as $key=>$str) {
foreach ($a->strings as $key=>$str) {
$msgid = massage_string($key);
if (preg_match("|%[sd0-9](\$[sn])*|", $msgid)) {