summaryrefslogtreecommitdiff
path: root/modules/ping
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-08-18 19:57:27 +0000
committerDries Buytaert <dries@buytaert.net>2004-08-18 19:57:27 +0000
commit83a739bd898094af5837d2b29863d8e988929e1b (patch)
tree957c07dd7b93fd1d074bb8609b22fe1e0c4f3992 /modules/ping
parent0e36182c967685a55e02e48178f1d6cb64ad815e (diff)
downloadbrdo-83a739bd898094af5837d2b29863d8e988929e1b.tar.gz
brdo-83a739bd898094af5837d2b29863d8e988929e1b.tar.bz2
- Code improvements by Stefan: made all status messages consistent (and easier to translate).
Diffstat (limited to 'modules/ping')
-rw-r--r--modules/ping/ping.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/ping/ping.module b/modules/ping/ping.module
index 96a6d576d..ed0538def 100644
--- a/modules/ping/ping.module
+++ b/modules/ping/ping.module
@@ -64,7 +64,7 @@ function ping_ping($name = '', $url = '') {
$result = $client->send($message);
if (!$result || $result->faultCode()) {
- watchdog('error', t('failed to notify "weblogs.com" (site)'));
+ watchdog('error', t('Failed to notify weblogs.com (site).'));
}
unset($client);
@@ -76,7 +76,7 @@ function ping_ping($name = '', $url = '') {
$result = $client->send($message);
if (!$result || $result->faultCode()) {
- watchdog('error', t('failed to notify "weblogs.com" (RSS)'));
+ watchdog('error', t('Failed to notify weblogs.com (RSS).'));
}
unset($client);
@@ -88,7 +88,7 @@ function ping_ping($name = '', $url = '') {
$result = $client->send($message);
if (!$result || $result->faultCode()) {
- watchdog('error', t('failed to notify "blo.gs"'));
+ watchdog('error', t('Failed to notify blo.gs.'));
}
unset($client);
@@ -100,7 +100,7 @@ function ping_ping($name = '', $url = '') {
$result = $client->send($message);
if (!$result || $result->faultCode()) {
- watchdog('error', t('failed to notify "technorati.com"'));
+ watchdog('error', t('Failed to notify technorati.com.'));
}
}
?>