Browse Source

Rename "Shares overview" to "Shares"

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
tags/v14.0.0beta1
Morris Jobke 6 years ago
parent
commit
98cf2bab48
No account linked to committer's email address
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      apps/files_sharing/appinfo/app.php
  2. 1
    1
      apps/files_sharing/js/app.js

+ 1
- 1
apps/files_sharing/appinfo/app.php View File

@@ -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'

+ 1
- 1
apps/files_sharing/js/app.js View File

@@ -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>');

Loading…
Cancel
Save