Enabled some more translations in news feed items and fixed german translation.

Removed not needed file "Thumbs.db" in skin directory.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5350 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2012-07-29 20:24:09 +00:00
parent 2367653146
commit a360419f97
9 changed files with 2217 additions and 348 deletions

View file

@ -133,13 +133,13 @@ void BlogMsgItem::toggle()
{
expandFrame->show();
expandButton->setIcon(QIcon(QString(":/images/edit_remove24.png")));
expandButton->setToolTip("Hide");
expandButton->setToolTip(tr("Hide"));
}
else
{
expandFrame->hide();
expandButton->setIcon(QIcon(QString(":/images/edit_add24.png")));
expandButton->setToolTip("Expand");
expandButton->setToolTip(tr("Expand"));
}
}