i18n: Separate words

Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
This commit is contained in:
Valdnet 2023-04-04 10:57:35 +02:00 committed by Matthieu Gallien
parent 06b2f2b736
commit 8ed69d1e95

View File

@ -584,7 +584,7 @@ QString ShareModel::displayStringForShare(const SharePtr &share) const
const auto isSecureFileDropShare = _isSecureFileDropSupportedFolder && linkShare->getPermissions().testFlag(OCC::SharePermission::SharePermissionCreate);
const auto displayString = isSecureFileDropShare ? tr("Secure filedrop link") : tr("Share link");
const auto displayString = isSecureFileDropShare ? tr("Secure file drop link") : tr("Share link");
if (!linkShare->getLabel().isEmpty()) {
return QStringLiteral("%1 (%2)").arg(displayString, linkShare->getLabel());