|
@@ -95,14 +95,17 @@
|
|
}, $output);
|
|
}, $output);
|
|
// Handle {gettext}
|
|
// Handle {gettext}
|
|
$output = preg_replace_callback(static::$regex['gettext'], function($matches){
|
|
$output = preg_replace_callback(static::$regex['gettext'], function($matches){
|
|
- $output = "<?= sprintf(_(";
|
|
|
|
- $output .= "{$matches[1]})";
|
|
|
|
- foreach(array_slice($matches, 2) as $item){
|
|
|
|
- if(preg_match(static::$regex['gettext_string'], $item)){
|
|
|
|
- $output .= ", $item";
|
|
|
|
- }else{
|
|
|
|
- $output .= ", (\$data['{$item}'] ?? '')";
|
|
|
|
|
|
+ if(count($matches) > 2){
|
|
|
|
+ $output = "<?= sprintf(_({$matches[1]})";
|
|
|
|
+ foreach(array_slice($matches, 2) as $item){
|
|
|
|
+ if(preg_match(static::$regex['gettext_string'], $item)){
|
|
|
|
+ $output .= ", $item";
|
|
|
|
+ }else{
|
|
|
|
+ $output .= ", (\$data['{$item}'] ?? '')";
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
+ }else{
|
|
|
|
+ $output = "<?= _({$matches[1]})";
|
|
}
|
|
}
|
|
return "{$output}); ?>";
|
|
return "{$output}); ?>";
|
|
}, $output);
|
|
}, $output);
|