mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 13:05:51 +03:00
Merge pull request #5567 from nextcloud/Valdnet-patch-4
Correct spelling
This commit is contained in:
commit
b655fce7e1
3 changed files with 3 additions and 3 deletions
|
@ -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")),
|
||||
|
|
|
@ -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());
|
||||
|
|
|
@ -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"));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue