Index: class.tx_templavoila_handlestaticdatastructures.php =================================================================== --- class.tx_templavoila_handlestaticdatastructures.php (revision 30363) +++ class.tx_templavoila_handlestaticdatastructures.php (working copy) @@ -110,7 +110,7 @@ if ($row['previewicon']) { $icon='../'.$GLOBALS['TCA']['tx_templavoila_tmplobj']['columns']['previewicon']['config']['uploadfolder'].'/'.$row['previewicon']; } else $icon=''; - $params['items'][]=Array($row['title'],$row['uid'],$icon); + $params['items'][]=Array($GLOBALS['LANG']->sL($row['title']), $row['uid'], $icon); } } } @@ -138,7 +138,7 @@ $icon = $this->iconPath . $dsRecord['previewicon']; } $params['items'][] = array( - $dsRecord['title'], + $GLOBALS['LANG']->sL($dsRecord['title']), isset($dsRecord['path']) ? $dsRecord['path'] : $dsRecord['uid'], $icon ); @@ -194,7 +194,7 @@ $icon = $this->iconPath . $row['previewicon']; } $params['items'][] = array( - $row['title'], + $GLOBALS['LANG']->sL($row['title']), $row['uid'], $icon ); @@ -245,7 +245,7 @@ $icon = $this->iconPath . $row['previewicon']; } $params['items'][] = array( - $row['title'], + $GLOBALS['LANG']->sL($row['title']), $row['uid'], $icon ); @@ -353,10 +353,10 @@ $row1 = $this->toRows[$key1]; $row2 = $this->toRows[$key2]; if ($row1['datastructure'] == $row2['datastructure']) { - $result = strcmp($row1['title'], $row2['title']); + $result = strcmp($GLOBALS['LANG']->sL($row1['title']), $GLOBALS['LANG']->sL($row2['title'])); } else { - $result = strcmp($this->dsList[$row1['datastructure']]['title'], $this->dsList[$row2['datastructure']]['title']); + $result = strcmp($GLOBALS['LANG']->sL($this->dsList[$row1['datastructure']]['title']), $GLOBALS['LANG']->sL($this->dsList[$row2['datastructure']]['title'])); } return $result; } Index: ext_tables.sql =================================================================== --- ext_tables.sql (revision 30363) +++ ext_tables.sql (working copy) @@ -21,7 +21,7 @@ fileref_mtime int(11) unsigned DEFAULT '0' NOT NULL, deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, sorting int(11) unsigned DEFAULT '0' NOT NULL, - title varchar(60) DEFAULT '' NOT NULL, + title varchar(100) DEFAULT '' NOT NULL, datastructure varchar(100) DEFAULT '' NOT NULL, fileref tinytext, templatemapping mediumblob, @@ -62,7 +62,7 @@ cruser_id int(11) unsigned DEFAULT '0' NOT NULL, deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, sorting int(11) unsigned DEFAULT '0' NOT NULL, - title varchar(60) DEFAULT '' NOT NULL, + title varchar(100) DEFAULT '' NOT NULL, dataprot mediumtext, scope tinyint(4) unsigned DEFAULT '0' NOT NULL, previewicon tinytext, Index: mod1/class.tx_templavoila_mod1_wizards.php =================================================================== --- mod1/class.tx_templavoila_mod1_wizards.php (revision 30363) +++ mod1/class.tx_templavoila_mod1_wizards.php (working copy) @@ -327,7 +327,7 @@
'.htmlspecialchars($row['title']).' | |
| '.$previewIcon.' | '.$description.' |
' . htmlspecialchars($LANG->sL($row['title'])) . ' | |
| ' . $previewIcon . ' | ' . $LANG->sL($description) . ' |