diff options
-rw-r--r-- | apps/files_sharing/appinfo/app.php | 2 | ||||
-rw-r--r-- | apps/files_sharing/js/app.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index b7459d999db..443d9e02017 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -93,7 +93,7 @@ if ($config->getAppValue('core', 'shareapi_enabled', 'yes') === 'yes') { 'appname' => 'files_sharing', 'script' => 'list.php', 'order' => 18, - 'name' => $l->t('Share overview'), + 'name' => $l->t('Shares'), 'classes' => 'collapsible', 'sublist' => $sharingSublistArray, 'expandedState' => 'show_sharing_menu' diff --git a/apps/files_sharing/js/app.js b/apps/files_sharing/js/app.js index ce16c1da927..76d52cfe9e0 100644 --- a/apps/files_sharing/js/app.js +++ b/apps/files_sharing/js/app.js @@ -132,7 +132,7 @@ OCA.Sharing.App = { ); this._extendFileList(this._overviewFileList); - this._overviewFileList.appName = t('files_sharing', 'Share overview'); + this._overviewFileList.appName = t('files_sharing', 'Shares'); this._overviewFileList.$el.find('#emptycontent').html('<div class="icon-share"></div>' + '<h2>' + t('files_sharing', 'No shares') + '</h2>' + '<p>' + t('files_sharing', 'Shares will show up here') + '</p>'); |