diff options
author | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-11 11:19:59 +0000 |
---|---|---|
committer | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-11 11:19:59 +0000 |
commit | 4b87417062261795eb4a2ce5909c2dacc8ce4704 (patch) | |
tree | 303709b547dc4dbea08c11e1fd7d08e3234c4607 | |
parent | f00396acc7123eff2fef42aa8c2d5bc088a5504e (diff) | |
download | brdo-4b87417062261795eb4a2ce5909c2dacc8ce4704.tar.gz brdo-4b87417062261795eb4a2ce5909c2dacc8ce4704.tar.bz2 |
#58225, made module description translatable
-rw-r--r-- | modules/ping.module | 2 | ||||
-rw-r--r-- | modules/ping/ping.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/ping.module b/modules/ping.module index dfc51f03f..7c4a894e9 100644 --- a/modules/ping.module +++ b/modules/ping.module @@ -24,7 +24,7 @@ function ping_help($section) { $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="%ping">Ping page</a>.', array('%ping' => 'http://drupal.org/handbook/modules/ping/')) .'</p>'; return $output; case 'admin/modules#description': - return('Alerts other sites when your site has been updated.'); + return t('Alerts other sites when your site has been updated.'); } } diff --git a/modules/ping/ping.module b/modules/ping/ping.module index dfc51f03f..7c4a894e9 100644 --- a/modules/ping/ping.module +++ b/modules/ping/ping.module @@ -24,7 +24,7 @@ function ping_help($section) { $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="%ping">Ping page</a>.', array('%ping' => 'http://drupal.org/handbook/modules/ping/')) .'</p>'; return $output; case 'admin/modules#description': - return('Alerts other sites when your site has been updated.'); + return t('Alerts other sites when your site has been updated.'); } } |