summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/google.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-01-26 13:08:25 -0500
committerJoey Hess <joey@gnu.kitenet.net>2009-01-26 13:08:25 -0500
commit66bc27b485e6dd167d0394db18a078d5b7977ae3 (patch)
treec4749cc2158aec243e11c5a8d31223ab82823d04 /IkiWiki/Plugin/google.pm
parent12eb056b33e1f01a63c4fcee408c9ac0d96c6b5e (diff)
avoid mixing english with translation
"google search" is english which would get mixed in with translated text. Instead, usr just the plugin name.
Diffstat (limited to 'IkiWiki/Plugin/google.pm')
-rw-r--r--IkiWiki/Plugin/google.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/google.pm b/IkiWiki/Plugin/google.pm
index 71948a7e9..1683220e7 100644
--- a/IkiWiki/Plugin/google.pm
+++ b/IkiWiki/Plugin/google.pm
@@ -24,7 +24,7 @@ sub getsetup () {
sub checkconfig () {
if (! length $config{url}) {
- error(sprintf(gettext("Must specify %s when using the %s plugin"), "url", 'google search'));
+ error(sprintf(gettext("Must specify %s when using the %s plugin"), "url", 'google'));
}
my $uri=URI->new($config{url});
if (! $uri || ! defined $uri->host) {