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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2022-11-08 14:52:59 +0300
committerHannah von Reth <vonreth@kde.org>2022-11-08 16:45:53 +0300
commit772a8e465fbc78fd7a8ec936d9f5a0aa2c08864b (patch)
tree937bb6441e3d5112d3eab7b05204bb850509ed15
parent02274cd5241f3f401397511ded63d227d157a15c (diff)
Fix message
-rw-r--r--src/cmd/cmd.cpp26
1 files changed, 16 insertions, 10 deletions
diff --git a/src/cmd/cmd.cpp b/src/cmd/cmd.cpp
index a6b7d4ed2..498a36e65 100644
--- a/src/cmd/cmd.cpp
+++ b/src/cmd/cmd.cpp
@@ -159,16 +159,22 @@ void sync(const SyncCTX &ctx)
if (!ctx.options.interactive) {
abort(false);
} else {
- std::cout << (dir == SyncFileItem::Down ? "All files in the sync folder '%1' folder were deleted on the server.\n"
- "These deletes will be synchronized to your local sync folder, making such files "
- "unavailable unless you have a right to restore. \n"
- "If you decide to keep the files, they will be re-synced with the server if you have rights to do so.\n"
- "If you decide to delete the files, they will be unavailable to you, unless you are the owner."
- : "All the files in your local sync folder '%1' were deleted. These deletes will be "
- "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.")
- << std::endl;
+ if (dir == SyncFileItem::Down) {
+ std::cout << "All files in the sync folder '" << qPrintable(ctx.options.remoteFolder) << "' folder were deleted on the server.\n"
+ << "These deletes will be synchronized to your local sync folder, making such files "
+ << "unavailable unless you have a right to restore. \n"
+ << "If you decide to keep the files, they will be re-synced with the server if you have rights to do so.\n"
+ << "If you decide to delete the files, they will be unavailable to you, unless you are the owner."
+ << std::endl;
+
+
+ } else {
+ std::cout << "All the files in your local sync folder '" << qPrintable(ctx.options.source_dir) << "' were deleted. These deletes will be "
+ << "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."
+ << std::endl;
+ }
std::string s;
while (true) {
std::cout << "Remove all files?[y,n]";