diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-16 23:48:38 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-16 23:48:38 +0000 |
commit | a09822b363813158a6182057917080b22d3ca8f7 (patch) | |
tree | 8d2cdf475730f06f040fd06badabf51cd00266d9 /modules/locale | |
parent | 81bba297e67e18e6277dc76eb584a680808471a7 (diff) | |
download | brdo-a09822b363813158a6182057917080b22d3ca8f7.tar.gz brdo-a09822b363813158a6182057917080b22d3ca8f7.tar.bz2 |
#606640 by eojthebrave and sun: Use proper menu router paths for the block module.
Diffstat (limited to 'modules/locale')
-rw-r--r-- | modules/locale/locale.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/locale/locale.module b/modules/locale/locale.module index 0d90233e9..a5d7cf142 100644 --- a/modules/locale/locale.module +++ b/modules/locale/locale.module @@ -81,7 +81,7 @@ function locale_help($path, $arg) { return '<p>' . t('This page exports the translated strings used by your site. An export file may be in Gettext Portable Object (<em>.po</em>) form, which includes both the original string and the translation (used to share translations with others), or in Gettext Portable Object Template (<em>.pot</em>) form, which includes the original strings only (used to create new translations with a Gettext translation editor).') . '</p>'; case 'admin/config/regional/translate/translate': return '<p>' . t('This page allows a translator to search for specific translated and untranslated strings, and is used when creating or editing translations. (Note: For translation tasks involving many strings, it may be more convenient to <a href="@export">export</a> strings for offline editing in a desktop Gettext translation editor.) Searches may be limited to strings found within a specific text group or in a specific language.', array('@export' => url('admin/config/regional/translate/export'))) . '</p>'; - case 'admin/structure/block/configure': + case 'admin/structure/block/manage': if ($arg[4] == 'locale' && $arg[5] == 0) { return '<p>' . t('This block is only shown if <a href="@languages">at least two languages are enabled</a> and <a href="@configuration">language negotiation</a> is set to something other than <em>None</em>.', array('@languages' => url('admin/config/regional/language'), '@configuration' => url('admin/config/regional/language/configure'))) . '</p>'; } |