aboutsummaryrefslogtreecommitdiffstats
path: root/core/js/js.js
diff options
context:
space:
mode:
authortomneedham <tom@owncloud.com>2013-12-11 09:12:47 +0000
committertomneedham <tom@owncloud.com>2013-12-11 09:12:47 +0000
commit7afe6b349352f90bec5a8409bf5c23494f808f1a (patch)
treec0e4294c123a42b519ac168259a113efadbebed7 /core/js/js.js
parent37b07fe6a9e512214852584fb15056f008509882 (diff)
parent28180485d9d767a081656e403fe7c8210957f976 (diff)
downloadnextcloud-server-7afe6b349352f90bec5a8409bf5c23494f808f1a.tar.gz
nextcloud-server-7afe6b349352f90bec5a8409bf5c23494f808f1a.zip
Merge branch 'master' into fix-5388-master
Diffstat (limited to 'core/js/js.js')
-rw-r--r--core/js/js.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/js.js b/core/js/js.js
index f5991cfc9dd..d9b3b54e0a1 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -115,7 +115,7 @@ t.cache = {};
*/
function n(app, text_singular, text_plural, count, vars) {
initL10N(app);
- var identifier = '_' + text_singular + '__' + text_plural + '_';
+ var identifier = '_' + text_singular + '_::_' + text_plural + '_';
if( typeof( t.cache[app][identifier] ) !== 'undefined' ){
var translation = t.cache[app][identifier];
if ($.isArray(translation)) {