mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Add a unit test for translation with trailing colon
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
dd93df22f4
commit
0b7ab9c092
1 changed files with 7 additions and 0 deletions
|
|
@ -35,6 +35,13 @@ class L10nTest extends TestCase {
|
|||
return new Factory($config, $request, $userSession, \OC::$SERVERROOT);
|
||||
}
|
||||
|
||||
public function testSimpleTranslationWithTrailingColon(): void {
|
||||
$transFile = \OC::$SERVERROOT.'/tests/data/l10n/de.json';
|
||||
$l = new L10N($this->getFactory(), 'test', 'de', 'de_AT', [$transFile]);
|
||||
|
||||
$this->assertEquals('Files:', $l->t('Files:'));
|
||||
}
|
||||
|
||||
public function testGermanPluralTranslations() {
|
||||
$transFile = \OC::$SERVERROOT.'/tests/data/l10n/de.json';
|
||||
$l = new L10N($this->getFactory(), 'test', 'de', 'de_AT', [$transFile]);
|
||||
|
|
|
|||
Loading…
Reference in a new issue