Skip to content

Commit

Permalink
Add some translations to scheduler import task
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.typo3.org/TYPO3v4/Extensions/powermail/trunk@51664 735d13b6-9817-0410-8766-e36946ffe9aa
  • Loading branch information
rabe69 committed Sep 5, 2011
1 parent 6889331 commit c6f414d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions cli/locallang.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
</meta>
<data type="array">
<languageKey index="default" type="array">
<label index="import_scheduler.title">Automatic CSV import</label>
<label index="import_scheduler.descrition">Automatic import of CSV data to powermail</label>
<label index="label.fileurl">URL of file to import (with http://)</label>
<label index="label.delimiter">Field delimiter</label>
<label index="label.enclosure">Field enclosure</label>
Expand All @@ -31,9 +33,11 @@
<label index="msg.successfullyImport">%s rows have been imported.</label>
<label index="msg.fileNotFound">%s not found!</label>
<label index="msg.error">Error</label>
<label index="msg.additionalInformation">Import CSV (%s) to page %s</label>
<label index="msg.additionalInformation">Import %s to page %s</label>
</languageKey>
<languageKey index="de" type="array">
<label index="import_scheduler.title">Automatischer CSV Import</label>
<label index="import_scheduler.descrition">Automatischer Import von CSV-Daten in Powermail</label>
<label index="label.fileurl">URL der zu importierenden Datei (mit http://)</label>
<label index="label.delimiter">Feldtrenner</label>
<label index="label.enclosure">Feldumschließungen</label>
Expand All @@ -57,7 +61,7 @@
<label index="msg.successfullyImport">Es wurden %s Zeilen importiert.</label>
<label index="msg.fileNotFound">%s nicht gefunden!</label>
<label index="msg.error">Fehler</label>
<label index="msg.additionalInformation">Importiere CSV (%s) nach Seite %s</label>
<label index="msg.additionalInformation">Importiere %s in Seite %s</label>
</languageKey>
</data>
</T3locallang>
4 changes: 2 additions & 2 deletions ext_localconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@

$TYPO3_CONF_VARS['SC_OPTIONS']['scheduler']['tasks']['tx_powermail_import_scheduler'] = array(
'extension' => 'powermail',
'title' => 'Automatic CSV Import',
'description' => 'Automatic import of CSV data to powermail',
'title' => 'LLL:EXT:' . $_EXTKEY . '/cli/locallang.xml:import_scheduler.title',
'description' => 'LLL:EXT:' . $_EXTKEY . '/cli/locallang.xml:import_scheduler.description',
'additionalFields' => 'tx_powermail_import_scheduler_addFields'
);
?>

0 comments on commit c6f414d

Please sign in to comment.