Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Correctly replace all PHP placeholders with the parameters
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Apr 20, 2021
commit 5a514a9a419f40800e5dc70c33b9de9f33cf7a76
9 changes: 4 additions & 5 deletions lib/private/L10N/L10NString.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,6 @@ public function __toString(): string {
$translations = $this->l10n->getTranslations();
$identityTranslator = $this->l10n->getIdentityTranslator();

$parameters = $this->parameters;
// Add $count as %count% as per \Symfony\Contracts\Translation\TranslatorInterface
$parameters['%count%'] = $this->count;

// Use the indexed version as per \Symfony\Contracts\Translation\TranslatorInterface
$identity = $this->text;
if (array_key_exists($this->text, $translations)) {
Expand All @@ -84,7 +80,10 @@ public function __toString(): string {

$identity = str_replace('%n', '%count%', $identity);

return $identityTranslator->trans($identity, $parameters);
// $count as %count% as per \Symfony\Contracts\Translation\TranslatorInterface
$text = $identityTranslator->trans($identity, ['%count%' => $this->count]);

return vsprintf($text, $this->parameters);
}


Expand Down
5 changes: 4 additions & 1 deletion tests/data/l10n/de.json
Original file line number Diff line number Diff line change
@@ -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);"
}
21 changes: 21 additions & 0 deletions tests/lib/L10N/L10nTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,27 @@ public function testCzechPluralTranslations() {
$this->assertEquals('5 oken', (string)$l->n('%n window', '%n windows', 5));
}

public function dataPlaceholders(): array {
return [
['Ordered placeholders one %s two %s', 'Placeholder one 1 two 2'],
['Reordered placeholders one %s two %s', 'Placeholder two 2 one 1'],
['Reordered placeholders one %1$s two %2$s', 'Placeholder two 2 one 1'],
];
}

/**
* @dataProvider dataPlaceholders
*
* @param $string
* @param $expected
*/
public function testPlaceholders($string, $expected): void {
$transFile = \OC::$SERVERROOT.'/tests/data/l10n/de.json';
$l = new L10N($this->getFactory(), 'test', 'de', 'de_AT', [$transFile]);

$this->assertEquals($expected, $l->t($string, ['1', '2']));
}

public function localizationData() {
return [
// timestamp as string
Expand Down