diff --git a/ChangeLog b/ChangeLog index 302a5344abe3c34983128e007897b0f3c7ff5f1f..bc05170392bf20b183da7e57a79e4205c857156c 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,6 @@ 2009-11-15 Steffen Kamper <info@sk-typo3.de> + * Fixed bug #12472: Recycler is missing title + description in the about module (Thanks to Georg Ringer) * Fixed bug #12546: Paths look weird on Windows 2009-11-16 Francois Suter <francois@typo3.org> diff --git a/typo3/sysext/recycler/ext_emconf.php b/typo3/sysext/recycler/ext_emconf.php index e238961e9324744fa0fefd8c4349ea0225d5878e..b2eb5eaa0d73c4c6725628c534dfbe48732ce7e5 100644 --- a/typo3/sysext/recycler/ext_emconf.php +++ b/typo3/sysext/recycler/ext_emconf.php @@ -12,7 +12,7 @@ $EM_CONF[$_EXTKEY] = array( 'title' => 'Recycler', - 'description' => 'The recycler offers the possibilities of cleaning up the garbage collection or to restore data again. Based on an ExtJS interface its possible to get a quick overview of the accordant records, filter the resultset and execute the required actions. This new feature is the modernized and core-specific version of the kj_recycler extension, that has been available in the TER for years now.', + 'description' => 'The recycler offers the possibility to restore deleted records or remove them from the database permanently. These actions can be applied to a single record, multiple records, and recursively to child records (ex. restoring a page can restore all content elements on that page). Filtering by page and by table provides a quick overview of deleted records before taking action on them.', 'category' => 'module', 'author' => 'Julian Kleinhans', 'author_email' => 'typo3@kj187.de', @@ -22,7 +22,7 @@ $EM_CONF[$_EXTKEY] = array( 'priority' => '', 'module' => 'mod1', 'doNotLoadInFE' => 1, - 'state' => 'alpha', + 'state' => 'stable', 'internal' => '', 'uploadfolder' => 0, 'createDirs' => '', diff --git a/typo3/sysext/recycler/mod1/locallang_mod.xml b/typo3/sysext/recycler/mod1/locallang_mod.xml index d55e386c3301b4fc68ba2be7660f27ce32c10b3c..6cada889e4864326792cca3a8f827ce8d32829ad 100644 --- a/typo3/sysext/recycler/mod1/locallang_mod.xml +++ b/typo3/sysext/recycler/mod1/locallang_mod.xml @@ -7,6 +7,8 @@ <data type="array"> <languageKey index="default" type="array"> <label index="mlang_tabs_tab">Recycler</label> + <label index="mlang_labels_tablabel">TYPO3 Recycler</label> + <label index="mlang_labels_tabdescr">The recycler offers the possibility to restore deleted records or remove them from the database permanently. These actions can be applied to a single record, multiple records, and recursively to child records (ex. restoring a page can restore all content elements on that page). Filtering by page and by table provides a quick overview of deleted records before taking action on them.</label> </languageKey> </data> </T3locallang> \ No newline at end of file