remove dump statement

This commit is contained in:
2017-04-18 22:18:19 +02:00
parent e4b4483845
commit 7b8d22a486
3 changed files with 9 additions and 20 deletions

View File

@@ -78,8 +78,15 @@ class TranslatableStringHelper
}
}
// no fallback translation... trying the first available
$langs = array_keys($translatableStrings);
if (count($langs) === 0) {
return '';
}
return '';
return $translatableStrings[$langs[0]];
}