summaryrefslogtreecommitdiffstats
path: root/apps/files/js/files.js
diff options
context:
space:
mode:
authorkondou <kondou@ts.unde.re>2013-08-09 20:37:18 +0200
committerkondou <kondou@ts.unde.re>2013-08-09 20:37:18 +0200
commit9549bd3e68aa32bb9fa1a9a54bda84fa5070966f (patch)
treee8464e5679053e1b75e358682ece102ea959836a /apps/files/js/files.js
parent4c0ec974b9a8b97625695edd136e1f805af0bf31 (diff)
downloadnextcloud-server-9549bd3e68aa32bb9fa1a9a54bda84fa5070966f.tar.gz
nextcloud-server-9549bd3e68aa32bb9fa1a9a54bda84fa5070966f.zip
Use plural translations
Diffstat (limited to 'apps/files/js/files.js')
-rw-r--r--apps/files/js/files.js14
1 files changed, 3 insertions, 11 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index 3fad3fae7d3..53fc25f41b0 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -759,21 +759,13 @@ function procesSelection(){
$('#headerSize').text(humanFileSize(totalSize));
var selection='';
if(selectedFolders.length>0){
- if(selectedFolders.length==1){
- selection+=t('files','1 folder');
- }else{
- selection+=t('files','{count} folders',{count: selectedFolders.length});
- }
+ selection += n('files', '%n folder', '%n folders', selectedFolders.length);
if(selectedFiles.length>0){
selection+=' & ';
}
}
if(selectedFiles.length>0){
- if(selectedFiles.length==1){
- selection+=t('files','1 file');
- }else{
- selection+=t('files','{count} files',{count: selectedFiles.length});
- }
+ selection += n('files', '%n file', '%n files', selectedFiles.length);
}
$('#headerName>span.name').text(selection);
$('#modified').text('');
@@ -852,4 +844,4 @@ function checkTrashStatus() {
$("input[type=button][id=trash]").removeAttr("disabled");
}
});
-} \ No newline at end of file
+}