This commit is contained in:
Martin Rotter 2016-06-27 11:17:21 +02:00
parent add2d8971f
commit b9116d1a82
2 changed files with 3 additions and 3 deletions

View File

@ -94,7 +94,7 @@ void WebViewer::loadMessages(const QList<Message> &messages) {
messages_layout.append(single_message_layout.arg(message.m_title,
tr("Written by ") + (message.m_author.isEmpty() ?
tr("uknown author") :
tr("unknown author") :
message.m_author),
message.m_url,
message.m_contents,

View File

@ -306,10 +306,10 @@ bool StandardServiceRoot::mergeImportExportModel(FeedsImportExportModel *model,
}
if (some_feed_category_error) {
output_message = tr("Import successfull, but some feeds/categories were not imported due to error.");
output_message = tr("Import successful, but some feeds/categories were not imported due to error.");
}
else {
output_message = tr("Import was completely successfull.");
output_message = tr("Import was completely successful.");
}
return !some_feed_category_error;