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

Filter output and clarify title.

parent d412c96f
No related branches found
No related tags found
No related merge requests found
...@@ -109,12 +109,12 @@ function feeds_ui_theme() { ...@@ -109,12 +109,12 @@ function feeds_ui_theme() {
* Title callback. * Title callback.
*/ */
function feed_ui_title($importer) { function feed_ui_title($importer) {
return t('Edit !importer', array('!importer' => $importer->config['name'])); return t('Edit importer: @importer', array('@importer' => $importer->config['name']));
} }
/** /**
* Clone title callback. * Clone title callback.
*/ */
function feed_ui_clone_title($importer) { function feed_ui_clone_title($importer) {
return t('Clone !importer', array('!importer' => $importer->config['name'])); return t('Clone importer: @importer', array('@importer' => $importer->config['name']));
} }
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