Merge pull request #5567 from nextcloud/Valdnet-patch-4

Correct spelling
This commit is contained in:
Matthieu Gallien 2023-04-07 16:07:53 +02:00 committed by GitHub
commit b655fce7e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -176,7 +176,7 @@ bool Application::configVersionMigration()
tr("Some settings were configured in %1 versions of this client and "
"use features that are not available in this version.<br>"
"<br>"
"Continuing will mean <b>%2 these settings</b><br>"
"Continuing will mean <b>%2 these settings</b>.<br>"
"<br>"
"The current configuration file was already backed up to <i>%3</i>.")
.arg((downgrading ? tr("newer", "newer software version") : tr("older", "older software version")),

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());

View file

@ -1180,7 +1180,7 @@ void SocketApi::sendSharingContextMenuOptions(const FileData &fileData, SocketLi
if (canCreateDefaultPublicLink) {
if (isSecureFileDropSupported) {
listener->sendMessage(QLatin1String("MENU_ITEM:COPY_SECUREFILEDROP_LINK") + QLatin1String("::") + tr("Copy secure filedrop link"));
listener->sendMessage(QLatin1String("MENU_ITEM:COPY_SECUREFILEDROP_LINK") + QLatin1String("::") + tr("Copy secure file drop link"));
} else {
listener->sendMessage(QLatin1String("MENU_ITEM:COPY_PUBLIC_LINK") + flagString + tr("Copy public link"));
}