Browse Source

Fix english typo.

adaptive-webui-19844
sledgehammer999 7 years ago
parent
commit
4927d26877
No known key found for this signature in database
GPG Key ID: 6E4A2D025B7CC9A2
  1. 4
      src/base/rss/rss_session.cpp

4
src/base/rss/rss_session.cpp

@ -163,7 +163,7 @@ bool Session::moveItem(const QString &itemPath, const QString &destPath, QString @@ -163,7 +163,7 @@ bool Session::moveItem(const QString &itemPath, const QString &destPath, QString
auto item = m_itemsByPath.value(itemPath);
if (!item) {
if (error)
*error = tr("Item doesn't exists: %1.").arg(itemPath);
*error = tr("Item doesn't exist: %1.").arg(itemPath);
return false;
}
@ -201,7 +201,7 @@ bool Session::removeItem(const QString &itemPath, QString *error) @@ -201,7 +201,7 @@ bool Session::removeItem(const QString &itemPath, QString *error)
auto item = m_itemsByPath.value(itemPath);
if (!item) {
if (error)
*error = tr("Item doesn't exists: %1.").arg(itemPath);
*error = tr("Item doesn't exist: %1.").arg(itemPath);
return false;
}

Loading…
Cancel
Save