improved text of gxs share group key feature in posted and channels

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8222 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
electron128 2015-05-08 17:48:39 +00:00
parent ef0bc745ce
commit f23b3447f9
2 changed files with 6 additions and 6 deletions

View File

@ -285,7 +285,7 @@ void GxsGroupFrameDialog::groupTreeCustomPopupMenu(QPoint point)
action->setEnabled (!mGroupId.isNull() && isAdmin);
if (shareKeyType()) {
action = contextMnu.addAction(QIcon(IMAGE_SHARE), tr("Share"), this, SLOT(shareKey()));
action = contextMnu.addAction(QIcon(IMAGE_SHARE), tr("Share admin permissions"), this, SLOT(shareKey()));
action->setEnabled(!mGroupId.isNull() && isPublisher);
}

View File

@ -78,14 +78,14 @@ void GroupShareKey::setTyp()
return;
ui->headerFrame->setHeaderImage(QPixmap(":/images/channels.png"));
ui->headerFrame->setHeaderText(tr("Share Channel"));
ui->sharekeyinfo_label->setText(tr("You can let your friends know about your Channel by sharing it with them. Select the Friends with which you want to Share your Channel."));
ui->headerFrame->setHeaderText(tr("Share Channel admin permissions"));
ui->sharekeyinfo_label->setText(tr("You can allow your friends to publish in your Channel and to modify the description. Or you can send the admin permissions to another Retroshare instance. Select the Friends which you want to allowed to publish in this Channel. Note: it is not possible to revoke channel admin permissions."));
}
else if(mGrpType == FORUM_KEY_SHARE)
{
ui->headerFrame->setHeaderImage(QPixmap(":/images/konversation64.png"));
ui->headerFrame->setHeaderText(tr("Share Forum"));
ui->headerFrame->setHeaderText(tr("Share Forum admin permissions"));
ui->sharekeyinfo_label->setText(tr("You can let your friends know about your Forum by sharing it with them. Select the Friends with which you want to Share your Forum."));
}
@ -95,8 +95,8 @@ void GroupShareKey::setTyp()
return;
ui->headerFrame->setHeaderImage(QPixmap(":/images/posted_64.png"));
ui->headerFrame->setHeaderText(tr("Share Topic"));
ui->sharekeyinfo_label->setText(tr("You can let your friends know about your Topic by sharing it with them. Select the Friends with which you want to Share your Topic."));
ui->headerFrame->setHeaderText(tr("Share Topic admin permissions"));
ui->sharekeyinfo_label->setText(tr("You can allow your friends to edit the Topic. Select them in the list below. Note: it is not possible to revoke posted admin permissions."));
}
else