Fixed utf8 characters for group names in RemoteDirModel (shared files).

Changed some strings in GroupFlagsWidget.
Updated english translation.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5974 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2012-12-12 00:04:01 +00:00
parent 751756c543
commit 8078ad3aab
3 changed files with 44 additions and 44 deletions

View file

@ -134,14 +134,14 @@ QString GroupFlagsWidget::groupInfoString(FileStorageFlags flags, const QList<QS
}
if(flags & DIR_FLAGS_BROWSABLE_OTHERS)
res += tr("All your friends can browse this directory\n") ;
res += tr("All your friends can browse this directory") + "\n" ;
else if(flags & DIR_FLAGS_BROWSABLE_GROUPS)
if(!groupNames.empty())
res += tr("Only friends in groups ") + groups_string + tr(" can browse this directory\n") ;
res += tr("Only friends in groups %1 can browse this directory").arg(groups_string) + "\n" ;
else
res += tr("No one can browse this directory\n") ;
res += tr("No one can browse this directory") + "\n" ;
else
res += tr("No one can browse this directory\n") ;
res += tr("No one can browse this directory") + "\n" ;
if(flags & DIR_FLAGS_NETWORK_WIDE_OTHERS)
res += tr("All your friends can relay anonymous tunnels to this directory") ;