diff --git a/locale/en-CA/definitions.php b/locale/en-CA/definitions.php index 686e7a0..e4d4e29 100755 --- a/locale/en-CA/definitions.php +++ b/locale/en-CA/definitions.php @@ -20,9 +20,11 @@ $Definition['Yaga.Action.Move'] = 'Move the %s reactions?'; $Definition['Yaga.ActionAdded'] = 'Action added successfully!'; $Definition['Yaga.ActionUpdated'] = 'Action updated successfully!'; $Definition['Yaga.Actions.Current'] = 'Current Reactions'; -$Definition['Yaga.Actions.Settings.Desc'] = 'Add or edit the available actions that can be used as reactions.'; +$Definition['Yaga.Actions.Desc'] = "Actions are shown underneath user generated content such as discussions, comments, and activity items. Other users can select one as a 'reaction'. The owner of the original item will receive points based on the reactions of others. This forms a positive feedback loop for both positive and negative actions."; +$Definition['Yaga.Actions.Settings.Desc'] = 'You can manage the available actions that can be used as reactions here. Drag items to sort their display order.'; $Definition['Yaga.AddAction'] = 'Add Action'; $Definition['Yaga.EditAction'] = 'Edit Action'; +$Definition['Yaga.Action.PermDesc'] = "A user will need the following permission to use this action. The default is 'Yaga.Reactions.Add'."; $Definition['Yaga.InvalidAction'] = 'Invalid Action'; $Definition['Yaga.InvalidID'] = 'Invalid ID'; $Definition['Yaga.InvalidReactType'] = 'Invalid React Target'; diff --git a/views/action/edit.php b/views/action/edit.php index e63f34c..013efc9 100644 --- a/views/action/edit.php +++ b/views/action/edit.php @@ -60,7 +60,8 @@ echo $this->Form->Errors();
Form->Label('Elevated Permission', 'Permission'); + echo $this->Form->Label('Permission', 'Permission'); + echo Wrap(T('Yaga.Action.PermDesc'), 'p'); echo $this->Form->Dropdown('Permission', $this->Data('Permissions')); ?>
diff --git a/views/action/settings.php b/views/action/settings.php index cc582b4..5de18b1 100644 --- a/views/action/settings.php +++ b/views/action/settings.php @@ -2,6 +2,7 @@ /* Copyright 2013 Zachary Doll */ echo Wrap($this->Title(), 'h1'); +echo Wrap(Wrap(T('Yaga.Actions.Desc'), 'div'), 'div', array('class' => 'Wrap')); echo Wrap(Wrap(T('Yaga.Actions.Settings.Desc'), 'div'), 'div', array('class' => 'Wrap')); echo Wrap(Anchor(T('Yaga.AddAction'), 'action/add', array('class' => 'Popup SmallButton')), 'div', array('class' => 'Wrap')); ?>