Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamila San <hello@camila.codes>2019-09-14 00:50:49 +0300
committerCamila San <hello@camila.codes>2019-09-14 00:50:49 +0300
commitb1667f48d337450c82936507909bb01e7c55b3e7 (patch)
treebfac98390b83d4a5ab64a3fb6b7f38c919aeab9b
parent33f9ae827f82f3e4d412c2c79c52dd4bb05fc252 (diff)
Fix context menu wording.techpreview-v2
Signed-off-by: Camila San <hello@camila.codes>
-rw-r--r--src/gui/socketapi.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/socketapi.cpp b/src/gui/socketapi.cpp
index 2773262ca..b5d842dbd 100644
--- a/src/gui/socketapi.cpp
+++ b/src/gui/socketapi.cpp
@@ -954,8 +954,8 @@ void SocketApi::sendSharingContextMenuOptions(const FileData &fileData, SocketLi
// If sharing is globally disabled, do not show any sharing entries.
// If there is no permission to share for this file, add a disabled entry saying so
- listener->sendMessage(QLatin1String("MENU_ITEM:OFFLINE_DOWNLOAD_MODE") + flagString + tr("0ff line"));
- listener->sendMessage(QLatin1String("MENU_ITEM:ONLINE_DOWNLOAD_MODE") + flagString + tr("On line"));
+ listener->sendMessage(QLatin1String("MENU_ITEM:OFFLINE_DOWNLOAD_MODE") + flagString + tr("0ffline"));
+ listener->sendMessage(QLatin1String("MENU_ITEM:ONLINE_DOWNLOAD_MODE") + flagString + tr("Online"));
if (isOnTheServer && !record._remotePerm.isNull() && !record._remotePerm.hasPermission(RemotePermissions::CanReshare)) {
listener->sendMessage(QLatin1String("MENU_ITEM:DISABLED:d:") + tr("Resharing this file is not allowed"));