Fix translation string extractor for special characters

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2017-09-27 10:31:13 +02:00
Родитель 2a8bed8b5e
Коммит e1b8672d9a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CC42AC2A7F0E56D8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -27,7 +27,7 @@ class TranslationExtractor {
}
private function extractTranslationString($line) {
$regex = '/\{\{\s*t\s*[\'\"]([\w\d\s,.]*)[\'\"]\s*\}\}/';
$regex = '/\{\{\s*t\s*[\'\"]([\w\d\s,.!?]*)[\'\"]\s*\}\}/';
$matches = [];
preg_match_all($regex, $line, $matches);
$strings = [];