From 816db7aef1e2b67cc636d099f1571ae30f8a21a1 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 4 Jun 2014 11:32:30 +0200 Subject: [PATCH] Fixed wording to "Shared by link" --- apps/files_sharing/appinfo/app.php | 2 +- apps/files_sharing/js/app.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index 2cd901c07a..6b40ba921c 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -47,6 +47,6 @@ OC_FileProxy::register(new OCA\Files\Share\Proxy()); "appname" => 'files_sharing', "script" => 'list.php', "order" => 20, - "name" => $l->t('Shared with link') + "name" => $l->t('Shared by link') ) ); diff --git a/apps/files_sharing/js/app.js b/apps/files_sharing/js/app.js index 3c7720e239..20c8250042 100644 --- a/apps/files_sharing/js/app.js +++ b/apps/files_sharing/js/app.js @@ -67,8 +67,8 @@ OCA.Sharing.App = { ); this._extendFileList(this._linkFileList); - this._linkFileList.appName = t('files_sharing', 'Shared with link'); - this._linkFileList.$el.find('#emptycontent').text(t('files_sharing', 'You haven\'t shared any files with link yet.')); + this._linkFileList.appName = t('files_sharing', 'Shared by link'); + this._linkFileList.$el.find('#emptycontent').text(t('files_sharing', 'You haven\'t shared any files by link yet.')); return this._linkFileList; },