Update string (#2824)

* Change message

* Update string in another file.

* Update addons_manager.cpp

* Update news_manager.cpp
This commit is contained in:
QwertyChouskie 2017-05-04 16:17:08 -07:00 committed by auriamg
parent 553207fc11
commit 58a170b4b7
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ void AddonsManager::init(const XMLNode *xml,
{
file_manager->removeFile(filename);
setErrorState();
NewsManager::get()->addNewsMessage(_("Can't access stkaddons server..."));
NewsManager::get()->addNewsMessage(_("Failed to connect to the SuperTuxKart add-ons server."));
return;
}

View File

@ -319,7 +319,7 @@ void NewsManager::updateNews(const XMLNode *xml, const std::string &filename)
// a new read on the next start, instead of waiting
// for some time).
file_manager->removeFile(filename);
NewsMessage n(_("Can't access stkaddons server..."), -1);
NewsMessage n(_("Failed to connect to the SuperTuxKart add-ons server."), -1);
m_news.lock();
m_news.getData().push_back(n);