Skip to content

Commit

Permalink
Added label for rsce_data
Browse files Browse the repository at this point in the history
  • Loading branch information
ausi committed May 27, 2014
1 parent ea9efb3 commit 65f2570
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 0 deletions.
1 change: 1 addition & 0 deletions dca/tl_content.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
$GLOBALS['TL_DCA']['tl_content']['config']['onload_callback'][] = array('MadeYourDay\Contao\CustomElements', 'onloadCallback');
$GLOBALS['TL_DCA']['tl_content']['config']['onsubmit_callback'][] = array('MadeYourDay\Contao\CustomElements', 'onsubmitCallback');
$GLOBALS['TL_DCA']['tl_content']['fields']['rsce_data'] = array(
'label' => &$GLOBALS['TL_LANG']['tl_content']['rsce_data'],
'inputType' => 'rsce_list_hidden',
'sql' => "mediumblob NULL",
'save_callback' => array(
Expand Down
1 change: 1 addition & 0 deletions dca/tl_module.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
$GLOBALS['TL_DCA']['tl_module']['config']['onload_callback'][] = array('MadeYourDay\Contao\CustomElements', 'onloadCallback');
$GLOBALS['TL_DCA']['tl_module']['config']['onsubmit_callback'][] = array('MadeYourDay\Contao\CustomElements', 'onsubmitCallback');
$GLOBALS['TL_DCA']['tl_module']['fields']['rsce_data'] = array(
'label' => &$GLOBALS['TL_LANG']['tl_module']['rsce_data'],
'inputType' => 'rsce_list_hidden',
'sql' => "mediumblob NULL",
'save_callback' => array(
Expand Down
15 changes: 15 additions & 0 deletions languages/de/tl_content.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php
/*
* Copyright MADE/YOUR/DAY OG <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

/**
* RockSolid Custom Elements tl_content translations
*
* @author Martin Auswöger <[email protected]>
*/

$GLOBALS['TL_LANG']['tl_content']['rsce_data'][0] = 'Element-Daten';
15 changes: 15 additions & 0 deletions languages/de/tl_module.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php
/*
* Copyright MADE/YOUR/DAY OG <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

/**
* RockSolid Custom Elements tl_module translations
*
* @author Martin Auswöger <[email protected]>
*/

$GLOBALS['TL_LANG']['tl_module']['rsce_data'][0] = 'Element-Daten';
15 changes: 15 additions & 0 deletions languages/en/tl_content.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php
/*
* Copyright MADE/YOUR/DAY OG <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

/**
* RockSolid Custom Elements tl_content translations
*
* @author Martin Auswöger <[email protected]>
*/

$GLOBALS['TL_LANG']['tl_content']['rsce_data'][0] = 'Element data';
15 changes: 15 additions & 0 deletions languages/en/tl_module.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php
/*
* Copyright MADE/YOUR/DAY OG <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

/**
* RockSolid Custom Elements tl_module translations
*
* @author Martin Auswöger <[email protected]>
*/

$GLOBALS['TL_LANG']['tl_module']['rsce_data'][0] = 'Element data';

0 comments on commit 65f2570

Please sign in to comment.