Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Updated text
rmathis committed Mar 22, 2021
1 parent 0c06c51 commit 5ce26b2
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Lib/lang.php
@@ -30,7 +30,7 @@
'pl.grouperlite.title.emaillists-manage' => 'Email lists I manage',
'pl.grouperlite.title.emaillistsinfo' => 'Email list configuration and attributes',
'pl.grouperlite.title.groupcreate' => 'Create Group',
'pl.grouperlite.title.templatecreate' => 'Create Email List',
'pl.grouperlite.title.templatecreate' => 'Create a Templated Group',

'pl.grouperlite.message.flash.join-group-success' => 'You have been added to the group!',
'pl.grouperlite.message.flash.join-group-failed' => 'You are unable to join the group!',
2 changes: 1 addition & 1 deletion View/GrouperGroups/groupcreatetemplateform.ctp
@@ -1,6 +1,6 @@
<?php
$this->extend('/GrouperGroups/base');
$this->Html->addCrumb('Create a Template Group');
$this->Html->addCrumb('Create a Templated Group');

$model = $this->name;
?>
2 changes: 1 addition & 1 deletion View/GrouperGroups/groupfields.inc
@@ -107,7 +107,7 @@ $PRIVELAGES = array('READ', 'VIEW', 'OPTIN', 'OPTOUT', 'ATTRIBUTE_READ');
)); */ ?>
</div>
</div>-->
<fieldset id="form" class="">
<fieldset id="form" class="container-fluid">
<div class="form-group row py-2 bg-light">
<?php echo $this->Form->label(false, _txt('pl.grouperlite.form.group.name.label'), array(
'for' => 'name',
4 changes: 2 additions & 2 deletions View/GrouperGroups/groupinfo.ctp
@@ -14,7 +14,7 @@ $attrUrlBase = $baseUrl . $path . $attrOperation;
<h2><strong>Group: </strong><?php echo $groupergroupsdetail['friendlyName']; ?></h2>
<div class="d-flex align-items-center">
<?php if ($isuserowner === 'T') : ?>
<button class="btn btn-grouper btn btn-primary mr-2" data-toggle="modal" data-target="#subscribers">View Subscribers <i class="fa fa-group"></i></button>
<button class="btn btn-grouper btn btn-primary mr-2" data-toggle="modal" data-target="#subscribers">View members <i class="fa fa-group"></i></button>
<?php endif ?>
<a href="<?php echo $groupUrlBase . $groupergroupsdetail['uuid']; ?>" class="btn btn-grouper btn btn-success mt-0" target="_blank" role="button">
View in Grouper &nbsp;
@@ -57,7 +57,7 @@ $attrUrlBase = $baseUrl . $path . $attrOperation;
<div class="modal-dialog modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Subscribers</h5>
<h5 class="modal-title">Members</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
20 changes: 10 additions & 10 deletions View/GrouperGroups/templatefields.inc
@@ -1,4 +1,4 @@
<fieldset id="form" class="">
<fieldset id="form" class="container-fluid">
<div class="form-group row py-2 bg-light">
<?php echo $this->Form->label(false, "Working Group Extension", array(
'for' => 'gsh_input_workingGroupExtension',
@@ -43,7 +43,7 @@
</div>
</div>
<div class="form-group row py-2 bg-light">
<?php echo $this->Form->label(false, "Enable Sympa for Group?", array(
<?php echo $this->Form->label(false, "Enable email list?", array(
'for' => 'gsh_input_isSympa',
'class' => "col-sm-3 col-form-label"
)); ?>
@@ -142,25 +142,25 @@
); ?>
</div>
</div>
<div class="form-group row py-2 bg-light">
<?php echo $this->Form->label(false, "Days for Attestation", array(
<!--<div class="form-group row py-2 bg-light">
<?php /*echo $this->Form->label(false, "Days for Attestation", array(
'for' => 'gsh_input_attestationDays',
'class' => "col-sm-3 col-form-label"
)); ?>
));*/ ?>
<div class="col-sm-9">
<?php echo $this->Form->input('gsh_input_attestationDays', array(
<?php /*echo $this->Form->input('gsh_input_attestationDays', array(
'label' => false,
'class' => 'form-control',
'type' => 'number',
'default' => '30',
'min' => '30',
'max' => '365',
'id' => 'gsh_input_attestationDays'
)); ?>
));*/ ?>
</div>
</div>
</div>-->
<div class="form-group row py-2 bg-light">
<?php echo $this->Form->label(false, "Add Confluence?", array(
<?php echo $this->Form->label(false, "Add wiki?", array(
'for' => 'gsh_input_isConfluence',
'class' => "col-sm-3 col-form-label"
)); ?>
@@ -186,7 +186,7 @@
</div>
</div>
<div class="form-group row py-2 bg-light">
<?php echo $this->Form->label(false, "Add Jira?", array(
<?php echo $this->Form->label(false, "Add project?", array(
'for' => 'gsh_input_isJira',
'class' => "col-sm-3 col-form-label"
)); ?>

0 comments on commit 5ce26b2

Please sign in to comment.