diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-04-27 12:58:16 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-05-08 00:33:45 -0500 |
commit | 010b9c460929c5330ad1d4dd91f32042cbb135a0 (patch) | |
tree | 805a938daac9cda170aa8e89a1db1ed847cdbea6 /apps/files_external/js | |
parent | 6109afc14df1ee1167c408065c9a9dab81c708cc (diff) | |
download | nextcloud-server-010b9c460929c5330ad1d4dd91f32042cbb135a0.tar.gz nextcloud-server-010b9c460929c5330ad1d4dd91f32042cbb135a0.zip |
Fix name of external storages
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/files_external/js')
-rw-r--r-- | apps/files_external/js/app.js | 3 | ||||
-rw-r--r-- | apps/files_external/js/mountsfilelist.js | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/apps/files_external/js/app.js b/apps/files_external/js/app.js index d3ce2010ecd..859a820f14c 100644 --- a/apps/files_external/js/app.js +++ b/apps/files_external/js/app.js @@ -35,7 +35,7 @@ OCA.External.App = { ); this._extendFileList(this.fileList); - this.fileList.appName = t('files_external', 'External storage'); + this.fileList.appName = t('files_external', 'External storages'); return this.fileList; }, @@ -111,4 +111,3 @@ $(document).ready(function() { } /* End Status Manager */ }); - diff --git a/apps/files_external/js/mountsfilelist.js b/apps/files_external/js/mountsfilelist.js index 35aef751fef..3beee6f73b2 100644 --- a/apps/files_external/js/mountsfilelist.js +++ b/apps/files_external/js/mountsfilelist.js @@ -28,7 +28,7 @@ FileList.prototype = _.extend({}, OCA.Files.FileList.prototype, /** @lends OCA.External.FileList.prototype */ { - appName: 'External storage', + appName: 'External storages', /** * @private |