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:
Diffstat (limited to 'src/gui/owncloudgui.cpp')
-rw-r--r--src/gui/owncloudgui.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/owncloudgui.cpp b/src/gui/owncloudgui.cpp
index 6c8e3b6a7..f7d27346a 100644
--- a/src/gui/owncloudgui.cpp
+++ b/src/gui/owncloudgui.cpp
@@ -415,7 +415,7 @@ void ownCloudGui::addAccountContextMenu(AccountStatePtr accountState, QMenu *men
menu->addSeparator();
if (separateMenu) {
if (onePaused) {
- QAction *enable = menu->addAction(tr("Unpause all folders"));
+ QAction *enable = menu->addAction(tr("Resume all folders"));
enable->setProperty(propertyAccountC, QVariant::fromValue(accountState));
connect(enable, &QAction::triggered, this, &ownCloudGui::slotUnpauseAllFolders);
}
@@ -648,9 +648,9 @@ void ownCloudGui::updateContextMenu()
if (atLeastOnePaused) {
QString text;
if (accountList.count() > 1) {
- text = tr("Unpause all synchronization");
+ text = tr("Resume all synchronization");
} else {
- text = tr("Unpause synchronization");
+ text = tr("Resume synchronization");
}
QAction *action = _contextMenu->addAction(text);
connect(action, &QAction::triggered, this, &ownCloudGui::slotUnpauseAllFolders);