Skip to content

Commit

Permalink
Fixed language
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Apr 1, 2021
1 parent 28815b5 commit 30d67fc
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Lib/lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
'pl.grouperlite.title.emaillists-member' => 'My email lists',
'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 a Templated Group',
'pl.grouperlite.title.groupcreate' => 'Create a group',
'pl.grouperlite.title.templatecreate' => 'Create a working 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!',
Expand Down
2 changes: 1 addition & 1 deletion View/GrouperGroups/emaillistsmanage.ctp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php $this->extend('/GrouperGroups/base'); ?>
<?php $this->Html->addCrumb('Email lists I manage'); ?>
<?php $this->Html->addCrumb(_txt('pl.grouperlite.title.emaillists-manage')); ?>
<?php echo $this->element('Components/navigation-emaillists', array('active' => 'emaillistsmanage', 'create' => true)); ?>
<?php echo $this->element('Components/search', array('active' => 'emaillistsmanaged')); ?>
<div class="">
Expand Down
2 changes: 1 addition & 1 deletion View/GrouperGroups/emaillistsmember.ctp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php $this->extend('/GrouperGroups/base'); ?>
<?php $this->Html->addCrumb('Email lists I can join'); ?>
<?php $this->Html->addCrumb(_txt('pl.grouperlite.title.emaillists-member')); ?>
<?php echo $this->element('Components/navigation-emaillists', array('active' => 'emaillistsmember')); ?>
<?php echo $this->element('Components/search', array('active' => 'emaillistsmember')); ?>

Expand Down
2 changes: 1 addition & 1 deletion View/GrouperGroups/emaillistsoptin.ctp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php $this->extend('/GrouperGroups/base'); ?>
<?php $this->Html->addCrumb('Email lists I can join'); ?>
<?php $this->Html->addCrumb(_txt('pl.grouperlite.title.emaillists-join')); ?>
<?php echo $this->element('Components/navigation-emaillists', array('active' => 'emaillistsoptin')); ?>
<?php echo $this->element('Components/search', array('active' => 'emaillistsoptin')); ?>

Expand Down
2 changes: 1 addition & 1 deletion View/GrouperGroups/groupcreate.ctp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
$this->extend('/GrouperGroups/base');
$this->Html->addCrumb('Create a Group');
$this->Html->addCrumb(_txt('pl.grouperlite.title.groupcreate'));

$model = $this->name;
?>
Expand Down
2 changes: 1 addition & 1 deletion View/GrouperGroups/groupcreatetemplate.ctp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
$this->extend('/GrouperGroups/base');
$this->Html->addCrumb('Create a Templated Group');
$this->Html->addCrumb(_txt('pl.grouperlite.title.templatecreate'));

$model = $this->name;
?>
Expand Down
2 changes: 1 addition & 1 deletion View/GrouperGroups/groupinfo.ctp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php $this->extend('/GrouperGroups/base'); ?>
<?php $this->Html->addCrumb('Group configuration'); ?>
<?php $this->Html->addCrumb(_txt('pl.grouperlite.title.groupinfo')); ?>
<?php
$baseUrl = $grouperbaseurl;
$path = '/grouper/grouperUi/app/UiV2Main.index';
Expand Down

0 comments on commit 30d67fc

Please sign in to comment.