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
path: root/src
diff options
context:
space:
mode:
authorCamila Ayres <smayres@gmail.com>2018-08-30 18:03:58 +0300
committerGitHub <noreply@github.com>2018-08-30 18:03:58 +0300
commit8c19be72134158620972b14001672dcf69035997 (patch)
tree463e883e91089302a6d7cacf8ee48e06c213ad24 /src
parentfbd84380721e622d95ed362aa4964fecf041aa25 (diff)
parent4a47d1c8efd4aea8ab031f483f11440cb88a3698 (diff)
Merge pull request #599 from Titan-C/unpause_resume
Rename Unpause To Resume.
Diffstat (limited to 'src')
-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);