mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
BUGFIX Fixed incorrect lables "TOADD" etc in WidgetAreaEditor (from r97507)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@102719 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
32bdc74381
commit
869e1d7774
@ -13,11 +13,7 @@ class WidgetAreaEditor extends FormField {
|
||||
public $ToAddTitle;
|
||||
|
||||
function __construct($name, $widgetClasses = array('Widget'), $maxWidgets = 0) {
|
||||
$this->InUseTitle = _t('WidgetAreaEditor.ss', 'INUSE');
|
||||
$this->AvailableTitle = _t('WidgetAreaEditor.ss', 'AVAILABLE');
|
||||
$this->ToAddTitle = _t('WidgetAreaEditor.ss', 'TOADD');
|
||||
$this->MaxWidgets = $maxWidgets;
|
||||
|
||||
$this->widgetClasses = $widgetClasses;
|
||||
|
||||
parent::__construct($name);
|
||||
|
@ -1,7 +1,7 @@
|
||||
<div class="WidgetAreaEditor" id="WidgetAreaEditor-$Name" name="$Name"<% if MaxWidgets %> maxwidgets="$MaxWidgets"<% end_if %>>
|
||||
<input type="hidden" id="$Name" name="$IdxField" value="$Value" />
|
||||
<div class="availableWidgetsHolder">
|
||||
<h2>$AvailableTitle</h2>
|
||||
<h2><% _t('AVAILABLE', 'Available Widgets') %></h2>
|
||||
<p> </p>
|
||||
<div class="availableWidgets" id="availableWidgets-$Name">
|
||||
<% if AvailableWidgets %>
|
||||
@ -16,8 +16,8 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="usedWidgetsHolder">
|
||||
<h2>$InUseTitle</h2>
|
||||
<p>$ToAddTitle</p>
|
||||
<h2><% _t('INUSE', 'Widgets currently used') %></h2>
|
||||
<p><% _t('TOADD', 'To add widgets, click on the purple header on the left') %></p>
|
||||
|
||||
<div class="usedWidgets" id="usedWidgets-$Name">
|
||||
<% if UsedWidgets %>
|
||||
|
Loading…
Reference in New Issue
Block a user