From 8ed69d1e95fc6ed2c8fdeb843f91e503e6c09ba5 Mon Sep 17 00:00:00 2001 From: Valdnet <47037905+Valdnet@users.noreply.github.com> Date: Tue, 4 Apr 2023 10:57:35 +0200 Subject: [PATCH] i18n: Separate words Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com> --- src/gui/filedetails/sharemodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/filedetails/sharemodel.cpp b/src/gui/filedetails/sharemodel.cpp index cee89c6d1b..df7acb873b 100644 --- a/src/gui/filedetails/sharemodel.cpp +++ b/src/gui/filedetails/sharemodel.cpp @@ -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());