Fixed wording to "Shared by link"

This commit is contained in:
Vincent Petry 2014-06-04 11:32:30 +02:00
parent b3fdda1751
commit 816db7aef1
2 changed files with 3 additions and 3 deletions

View File

@ -47,6 +47,6 @@ OC_FileProxy::register(new OCA\Files\Share\Proxy());
"appname" => 'files_sharing', "appname" => 'files_sharing',
"script" => 'list.php', "script" => 'list.php',
"order" => 20, "order" => 20,
"name" => $l->t('Shared with link') "name" => $l->t('Shared by link')
) )
); );

View File

@ -67,8 +67,8 @@ OCA.Sharing.App = {
); );
this._extendFileList(this._linkFileList); this._extendFileList(this._linkFileList);
this._linkFileList.appName = t('files_sharing', 'Shared with link'); this._linkFileList.appName = t('files_sharing', 'Shared by link');
this._linkFileList.$el.find('#emptycontent').text(t('files_sharing', 'You haven\'t shared any files with link yet.')); this._linkFileList.$el.find('#emptycontent').text(t('files_sharing', 'You haven\'t shared any files by link yet.'));
return this._linkFileList; return this._linkFileList;
}, },