summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-07-16 16:26:39 +0200
committerMorris Jobke <hey@morrisjobke.de>2018-07-16 16:28:26 +0200
commit98cf2bab488af7cf64399bbe43560c9b68d50f47 (patch)
tree8fdc1589cb6ccabf47877781c33e90f39043e6f4 /apps/files_sharing
parent18790858caea8f20f09ade8c7e3039da6dd1483b (diff)
downloadnextcloud-server-98cf2bab488af7cf64399bbe43560c9b68d50f47.tar.gz
nextcloud-server-98cf2bab488af7cf64399bbe43560c9b68d50f47.zip
Rename "Shares overview" to "Shares"
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/files_sharing')
-rw-r--r--apps/files_sharing/appinfo/app.php2
-rw-r--r--apps/files_sharing/js/app.js2
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>');