diff options
author | Joas Schilling <coding@schilljs.com> | 2021-03-31 09:54:23 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-04-20 16:42:05 +0200 |
commit | 5a514a9a419f40800e5dc70c33b9de9f33cf7a76 (patch) | |
tree | 107f7c16df9e7ae8f51c1db5dcda014ace9eca1e /tests/data/l10n | |
parent | 439457d2b4cdc511fbce826764b2b27e30abee50 (diff) | |
download | nextcloud-server-5a514a9a419f40800e5dc70c33b9de9f33cf7a76.tar.gz nextcloud-server-5a514a9a419f40800e5dc70c33b9de9f33cf7a76.zip |
Correctly replace all PHP placeholders with the parameters
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/data/l10n')
-rw-r--r-- | tests/data/l10n/de.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/data/l10n/de.json b/tests/data/l10n/de.json index c2b6f34c081..d9e75d303c5 100644 --- a/tests/data/l10n/de.json +++ b/tests/data/l10n/de.json @@ -1,6 +1,9 @@ { "translations" : { - "_%n file_::_%n files_": ["%n Datei", "%n Dateien"] + "_%n file_::_%n files_": ["%n Datei", "%n Dateien"], + "Ordered placeholders one %s two %s": "Placeholder one %s two %s", + "Reordered placeholders one %s two %s": "Placeholder two %2$s one %1$s", + "Reordered placeholders one %1$s two %2$s": "Placeholder two %2$s one %1$s" }, "pluralForm" : "nplurals=2; plural=(n != 1);" } |