Skip to content

Commit ee1caac

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

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/gui/creds/oauth.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,9 @@ void OAuth::start()
138138
if (!_expectedUser.isNull() && user != _expectedUser) {
139139
// Connected with the wrong user
140140
QString message = tr("<h1>Wrong account</h1>"
141-
"<p>You logged-in with account <em>%1</em>, but must login with account <em>%2</em>.<br>"
141+
"<p>You logged in with the account <em>%1</em>, but must log in with the account <em>%2</em>.<br>"
142142
"Please log out of %3 in another tab, then <a href='%4'>click here</a> "
143-
"and log in with account %2</p>")
143+
"and log in with %2</p>")
144144
.arg(user, _expectedUser, Theme::instance()->appNameGUI(),
145145
authorisationLink().toString(QUrl::FullyEncoded));
146146
httpReplyAndClose(socket, "200 OK", message.toUtf8().constData());

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)