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"));
}
}

View File

@ -99,18 +99,18 @@ void BlogNewItem::updateItemStatic()
}
else
{
nameLabel->setText("Unknown Blog");
nameLabel->setText(tr("Unknown Blog"));
titleLabel->setText("Blog ???");
descLabel->setText("");
}
if (mIsNew)
{
titleLabel->setText("New Blog");
titleLabel->setText(tr("New Blog"));
}
else
{
titleLabel->setText("Updated Blog");
titleLabel->setText(tr("Updated Blog"));
}
if (mIsHome)
@ -144,13 +144,13 @@ void BlogNewItem::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"));
}
}

View File

@ -145,13 +145,13 @@ void ChanNewItem::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"));
}
}

View File

@ -259,7 +259,7 @@ void ForumMsgItem::toggle()
sendButton->setVisible(canReply);
signedcheckBox->setVisible(canReply);
expandButton->setIcon(QIcon(QString(":/images/edit_remove24.png")));
expandButton->setToolTip("Hide");
expandButton->setToolTip(tr("Hide"));
if (!mIsTop)
{
nextFrame->show();
@ -275,7 +275,7 @@ void ForumMsgItem::toggle()
sendButton->hide();
signedcheckBox->hide();
expandButton->setIcon(QIcon(QString(":/images/edit_add24.png")));
expandButton->setToolTip("Expand");
expandButton->setToolTip(tr("Expand"));
}
}

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"));
}
}

File diff suppressed because it is too large Load Diff