Skip to content
Snippets Groups Projects
Commit dc9e5ee4 authored by Christoph Wurst's avatar Christoph Wurst Committed by GitHub
Browse files

Merge pull request #42 from nextcloud/fix-translation-extractor

fix translation extractor
parents 1c5c0151 c77efc62
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ class TranslationExtractor {
$strings = $this->extract($this->directory);
$export = '';
foreach ($strings as $s) {
$export .= 't(\'' . $s . '\');' . PHP_EOL;
$export .= 't(\'mail\', \'' . $s . '\');' . PHP_EOL;
}
file_put_contents('translations.js', $export);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment