Added patch from Henry:

- removed hardcoded font Arial
- fixed some strings
Updated english translation.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6020 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2012-12-20 12:16:53 +00:00
parent e6839c3245
commit b1d887b614
7 changed files with 197 additions and 189 deletions

View file

@ -52,9 +52,9 @@ PostedDialog::PostedDialog(QWidget *parent)
mPostedList = new PostedListDialog(this, NULL);
mPostedComments = new PostedComments(NULL);
QString list("List");
QString list(tr("List"));
ui.tabWidget->addTab(mPostedList, list);
QString comments("Comments");
QString comments(tr("Comments"));
ui.tabWidget->addTab(mPostedComments, comments);
connect(mPostedList, SIGNAL(loadComments( std::string ) ), mPostedComments, SLOT(loadComments( std::string ) ) );