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

@ -91,18 +91,18 @@ void ForumNewItem::updateItemStatic()
}
else
{
nameLabel->setText("Unknown Forum");
titleLabel->setText("New Forum");
nameLabel->setText(tr("Unknown Forum"));
titleLabel->setText(tr("New Forum"));
descLabel->setText("");
}
if (mIsNew)
{
titleLabel->setText("New Forum");
titleLabel->setText(tr("New Forum"));
}
else
{
titleLabel->setText("Updated Forum");
titleLabel->setText(tr("Updated Forum"));
}
if (mIsHome)
@ -135,13 +135,13 @@ void ForumNewItem::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"));
}
}