diff --git a/feeds.drush.inc b/feeds.drush.inc index 59adfb1..9814829 100644 --- a/feeds.drush.inc +++ b/feeds.drush.inc @@ -17,65 +17,65 @@ function feeds_drush_command() { $items = array(); $items['feeds-list-importers'] = array( - 'description' => dt('Displays the configs of all importers.'), + 'description' => 'Displays the configs of all importers.', 'examples' => array( 'drush feeds-list', ), ); $items['feeds-list-feeds'] = array( - 'description' => dt('Displays all instances of all Feeds of a given importer (passed as arg).'), + 'description' => 'Displays all instances of all Feeds of a given importer (passed as arg).', 'arguments' => array( - 'importer' => dt('The name of the Feeds importer whose instances will be listed. Optional.'), + 'importer' => 'The name of the Feeds importer whose instances will be listed. Optional.', ), 'examples' => array( - 'drush feeds-list-feeds' => dt('List all instances of all feeds.'), - 'drush feeds-list-feeds rss_feed' => dt('List all feed instances of the rss_feed importer.'), + 'drush feeds-list-feeds' => 'List all instances of all feeds.', + 'drush feeds-list-feeds rss_feed' => 'List all feed instances of the rss_feed importer.', ), 'options' => array( - 'limit' => dt('Only list [limit] feeds. Optional.'), + 'limit' => 'Only list [limit] feeds. Optional.', ), ); $items['feeds-import'] = array( - 'description' => dt('Imports a feed.'), + 'description' => 'Imports a feed.', 'arguments' => array( - 'importer' => dt('The name of the Feeds importer that will be refreshed. Mandatory.'), + 'importer' => 'The name of the Feeds importer that will be refreshed. Mandatory.', ), 'options' => array( - 'nid' => dt('The nid of the Feeds importer that will be imported. Optional.'), - 'file' => dt('The file to import. Optional.'), - 'url' => dt('The URL to import. Optional.'), - 'stdin' => dt('Read the file to import from stdin. Optional.'), + 'nid' => 'The nid of the Feeds importer that will be imported. Optional.', + 'file' => 'The file to import. Optional.', + 'url' => 'The URL to import. Optional.', + 'stdin' => 'Read the file to import from stdin. Optional.', ), 'examples' => array( - 'drush feeds-import my_importer' => dt('Import the feed my_importer.'), - 'drush feeds-import my_importer --nid=2' => dt('Import my_importer associated with nid 2.'), + 'drush feeds-import my_importer' => 'Import the feed my_importer.', + 'drush feeds-import my_importer --nid=2' => 'Import my_importer associated with nid 2.', ), ); $items['feeds-import-all'] = array( - 'description' => dt('Import all instances of feeds of the given type.'), + 'description' => 'Import all instances of feeds of the given type.', 'arguments' => array( - 'importer' => dt('The name of the Feeds importer that will be refreshed. Omitting the importer will cause all instances of all feeds to be imported.'), + 'importer' => 'The name of the Feeds importer that will be refreshed. Omitting the importer will cause all instances of all feeds to be imported.', ), 'examples' => array( - 'drush feeds-import-all' => dt('Import all instances of all feeds.'), - 'drush feeds-import-all my_importer' => dt('Import all instances of the importer my_importer.'), - 'drush feeds-import-all my_importer --limit 10' => dt('Import 10 instances the feed my_importer.'), + 'drush feeds-import-all' => 'Import all instances of all feeds.', + 'drush feeds-import-all my_importer' => 'Import all instances of the importer my_importer.', + 'drush feeds-import-all my_importer --limit 10' => 'Import 10 instances the feed my_importer.', ), 'options' => array( - 'limit' => dt('Only import [limit] Feeds importers. Optional.'), + 'limit' => 'Only import [limit] Feeds importers. Optional.', ), ); $items['feeds-clear'] = array( - 'description' => dt('Clears a feed.'), + 'description' => 'Clears a feed.', 'arguments' => array( - 'importer' => dt('The name of the Feeds importer that will be cleared. Mandatory.'), + 'importer' => 'The name of the Feeds importer that will be cleared. Mandatory.', ), 'options' => array( - 'nid' => dt('The nid of the Feeds importer that will be cleared. Optional.'), + 'nid' => 'The nid of the Feeds importer that will be cleared. Optional.', ), 'examples' => array( 'drush feeds-clear my_importer', @@ -84,9 +84,9 @@ function feeds_drush_command() { ); $items['feeds-enable'] = array( - 'description' => dt('Enables one or more Feeds importers.'), + 'description' => 'Enables one or more Feeds importers.', 'arguments' => array( - 'importers' => dt('A space delimited list of Feeds importers. Mandatory.'), + 'importers' => 'A space delimited list of Feeds importers. Mandatory.', ), 'examples' => array( 'drush feeds-enable importer_1 importer_2', @@ -94,9 +94,9 @@ function feeds_drush_command() { ); $items['feeds-disable'] = array( - 'description' => dt('Disable one or more Feeds importers.'), + 'description' => 'Disable one or more Feeds importers.', 'arguments' => array( - 'importers' => dt('A space delimited list of Feeds importers. Mandatory.'), + 'importers' => 'A space delimited list of Feeds importers. Mandatory.', ), 'examples' => array( 'drush feeds-disable importer_1 importer_2', @@ -104,7 +104,7 @@ function feeds_drush_command() { ); $items['feeds-delete'] = array( - 'description' => dt('Deletes one or more Feeds importers.'), + 'description' => 'Deletes one or more Feeds importers.', 'arguments' => array( 'importers' => 'A space delimited list of Feeds importers. Mandatory.', ), @@ -114,9 +114,9 @@ function feeds_drush_command() { ); $items['feeds-revert'] = array( - 'description' => dt('Reverts one or more Feeds importers.'), + 'description' => 'Reverts one or more Feeds importers.', 'arguments' => array( - 'importers' => dt('A space delimited list of Feeds importers. Mandatory.'), + 'importers' => 'A space delimited list of Feeds importers. Mandatory.', ), 'examples' => array( 'drush feeds-revert importer_1 importer_2',