Merge pull request #1547 from nextcloud/files-translate-filesummary

Translate file summary connector (#26221)
This commit is contained in:
Christoph Wurst 2016-10-03 10:41:20 +02:00 committed by GitHub
commit 407232b772
1 changed files with 4 additions and 2 deletions

View File

@ -23,7 +23,7 @@
var INFO_TEMPLATE =
'<span class="info">' +
'<span class="dirinfo"></span>' +
'<span class="connector"> and </span>' +
'<span class="connector">{{connectorLabel}}</span>' +
'<span class="fileinfo"></span>' +
'<span class="hiddeninfo"></span>' +
'<span class="filter"></span>' +
@ -203,7 +203,9 @@
if (!this._infoTemplateCompiled) {
this._infoTemplateCompiled = Handlebars.compile(INFO_TEMPLATE);
}
return this._infoTemplateCompiled(data);
return this._infoTemplateCompiled(_.extend({
connectorLabel: t('files', '{dirs} and {files}', {dirs: '', files: ''})
}, data));
},
/**