summaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorblizzz <blizzz@owncloud.com>2013-12-09 01:41:06 -0800
committerblizzz <blizzz@owncloud.com>2013-12-09 01:41:06 -0800
commitbc3650e48c7ec4f05794c2bd98a90cca3090f1e3 (patch)
treea0b803667cc20bae695e0cf84c7bc5777f9b4d5a /lib/private
parent079d20a80e9412ae7787ce689d46e9b3859b348b (diff)
parent67957294c2ae7232f39690d25efd19cefa9d0ef4 (diff)
downloadnextcloud-server-bc3650e48c7ec4f05794c2bd98a90cca3090f1e3.tar.gz
nextcloud-server-bc3650e48c7ec4f05794c2bd98a90cca3090f1e3.zip
Merge pull request #6231 from owncloud/fix-plural-l10n
fix plural translation - fixes #6226
Diffstat (limited to 'lib/private')
-rw-r--r--lib/private/l10n.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/l10n.php b/lib/private/l10n.php
index 2d440850459..98665c84c55 100644
--- a/lib/private/l10n.php
+++ b/lib/private/l10n.php
@@ -262,7 +262,7 @@ class OC_L10N implements \OCP\IL10N {
*/
public function n($text_singular, $text_plural, $count, $parameters = array()) {
$this->init();
- $identifier = "_${text_singular}__${text_plural}_";
+ $identifier = "_${text_singular}_::_${text_plural}_";
if( array_key_exists($identifier, $this->translations)) {
return new OC_L10N_String( $this, $identifier, $parameters, $count );
}