Added patch from Henry:

- Fixed utf8 issues
- Added new translatable strings
- Fixed german translation

git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5.5@7446 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2014-07-10 17:58:46 +00:00
parent 903818d68f
commit a54224e3e0
6 changed files with 14 additions and 6 deletions

View file

@ -385,7 +385,7 @@ void DhtWindow::updateNetPeers()
std::string name = rsPeers->getPeerName(*it);
peer_item -> setData(PTW_COL_PEERID, Qt::DisplayRole, QString::fromStdString(status.mDhtId));
peer_item -> setData(PTW_COL_RSNAME, Qt::DisplayRole, QString::fromStdString(name));
peer_item -> setData(PTW_COL_RSNAME, Qt::DisplayRole, QString::fromUtf8(name.c_str()));
peer_item -> setData(PTW_COL_RSID, Qt::DisplayRole, QString::fromStdString(status.mRsId));
QString dhtstate;