Skip to content

Commit 165b658

Browse files
committed
Address Nimisha's comments
Signed-off-by: Claudio Cambra <claudio.cambra@gmail.com>
1 parent 8466999 commit 165b658

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/gui/folderman.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1522,7 +1522,7 @@ QString FolderMan::trayTooltipStatusString(
15221522
folderMessage = tr("Setup error.");
15231523
break;
15241524
case SyncResult::SyncAbortRequested:
1525-
folderMessage = tr("Sync request was aborted.");
1525+
folderMessage = tr("Sync request was cancelled.");
15261526
break;
15271527
case SyncResult::Paused:
15281528
folderMessage = tr("Sync is paused.");

src/gui/userstatusselectormodel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ void UserStatusSelectorModel::onError(UserStatusConnector::Error error)
149149
return;
150150

151151
case UserStatusConnector::Error::EmojisNotSupported:
152-
setError(tr("Emojis feature is not supported. Some status functionality may not work."));
152+
setError(tr("Emojis are not supported. Some status functionality may not work."));
153153
return;
154154

155155
case UserStatusConnector::Error::CouldNotSetUserStatus:

src/libsync/syncresult.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ QString SyncResult::statusString() const
5454
re = QLatin1String("Setup error");
5555
break;
5656
case SyncPrepare:
57-
re = QLatin1String("Sync prepare");
57+
re = QLatin1String("Preparing to sync");
5858
break;
5959
case Problem:
6060
re = QLatin1String("Success, some files were ignored.");
6161
break;
6262
case SyncAbortRequested:
63-
re = QLatin1String("Sync request aborted");
63+
re = QLatin1String("Sync request cancelled");
6464
break;
6565
case Paused:
6666
re = QLatin1String("Sync paused");

0 commit comments

Comments
 (0)