Skip to content
Snippets Groups Projects
Commit 66185487 authored by Alex Barth's avatar Alex Barth
Browse files

Adjust language on Feeds page.

parent 9820430f
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
function feeds_ui_help($path, $arg) { function feeds_ui_help($path, $arg) {
switch ($path) { switch ($path) {
case 'admin/build/feeds': case 'admin/build/feeds':
$output = '<p>'. t('Create one or more configurations for importing content into Drupal. You can use these configurations from the !import page or - if you attach them to a content type - simply by creating a node from that content type.', array('!import' => l(t('Import'), 'import'))) .'</p>'; $output = '<p>'. t('Create one or more Feed importers for pulling content into Drupal. You can use these importers from the !import page or - if you attach them to a content type - simply by creating a node from that content type.', array('!import' => l(t('Import'), 'import'))) .'</p>';
return $output; return $output;
case 'admin/content/feeds': case 'admin/content/feeds':
$output = '<p>'. t('Import content into Drupal.') .'</p>'; $output = '<p>'. t('Import content into Drupal.') .'</p>';
...@@ -24,7 +24,7 @@ function feeds_ui_help($path, $arg) { ...@@ -24,7 +24,7 @@ function feeds_ui_help($path, $arg) {
function feeds_ui_menu() { function feeds_ui_menu() {
$items = array(); $items = array();
$items['admin/build/feeds'] = array( $items['admin/build/feeds'] = array(
'title' => 'Feeds', 'title' => 'Feed importers',
'description' => 'Configure feeds to import or aggregate RSS and Atom feeds, import CSV files or more.', 'description' => 'Configure feeds to import or aggregate RSS and Atom feeds, import CSV files or more.',
'page callback' => 'drupal_get_form', 'page callback' => 'drupal_get_form',
'page arguments' => array('feeds_ui_overview_form'), 'page arguments' => array('feeds_ui_overview_form'),
...@@ -36,7 +36,7 @@ function feeds_ui_menu() { ...@@ -36,7 +36,7 @@ function feeds_ui_menu() {
'type' => MENU_DEFAULT_LOCAL_TASK, 'type' => MENU_DEFAULT_LOCAL_TASK,
); );
$items['admin/build/feeds/create'] = array( $items['admin/build/feeds/create'] = array(
'title' => t('New configuration'), 'title' => t('New importer'),
'page callback' => 'drupal_get_form', 'page callback' => 'drupal_get_form',
'page arguments' => array('feeds_ui_create_form'), 'page arguments' => array('feeds_ui_create_form'),
'access arguments' => array('administer feeds'), 'access arguments' => array('administer feeds'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment