From bb65eb8cddbbdc6d1f1536dc5600d8af9c1136cd Mon Sep 17 00:00:00 2001 From: Kilian Pfeiffer Date: Wed, 11 Apr 2018 15:08:32 +0200 Subject: [PATCH] changed wording https://github.com/nextcloud/client/issues/216 --- src/gui/folder.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/folder.cpp b/src/gui/folder.cpp index 13aa24d9a7..6197bb804b 100644 --- a/src/gui/folder.cpp +++ b/src/gui/folder.cpp @@ -1032,11 +1032,11 @@ void Folder::slotAboutToRemoveAllFiles(SyncFileItem::Direction dir, bool *cancel "synchronized with your server, making such files unavailable unless restored.\n" "Are you sure you want to sync those actions with the server?\n" "If this was an accident and you decide to keep your files, they will be re-synced from the server."); - QMessageBox msgBox(QMessageBox::Warning, tr("Remove All Files?"), + QMessageBox msgBox(QMessageBox::Warning, tr("Download new files?"), msg.arg(shortGuiLocalPath())); msgBox.setWindowFlags(msgBox.windowFlags() | Qt::WindowStaysOnTopHint); - msgBox.addButton(tr("Remove all files"), QMessageBox::DestructiveRole); - QPushButton *keepBtn = msgBox.addButton(tr("Keep files"), QMessageBox::AcceptRole); + msgBox.addButton(tr("Download new files"), QMessageBox::DestructiveRole); + QPushButton *keepBtn = msgBox.addButton(tr("Keep local files"), QMessageBox::AcceptRole); if (msgBox.exec() == -1) { *cancel = true; return;