Change 'Link share' to 'Share link', matching server
authorClaudio Cambra <claudio.cambra@nextcloud.com>
Thu, 15 Sep 2022 16:18:47 +0000 (18:18 +0200)
committerClaudio Cambra <claudio.cambra@nextcloud.com>
Mon, 31 Oct 2022 17:06:07 +0000 (18:06 +0100)
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
src/gui/filedetails/sharemodel.cpp

index fba85c700ebb4d4071eab8859d56c7847cc226f8..3191ff22c8a0e33e977c0763e1191ff5bc51046f 100644 (file)
@@ -459,7 +459,7 @@ void ShareModel::slotServerError(const int code, const QString &message)
 QString ShareModel::displayStringForShare(const SharePtr &share) const
 {
     if (const auto linkShare = share.objectCast<LinkShare>()) {
-        const auto displayString = tr("Link share");
+        const auto displayString = tr("Share link");
 
         if (!linkShare->getLabel().isEmpty()) {
             return QStringLiteral("%1 (%2)").arg(displayString, linkShare->getLabel());