diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-01-26 13:08:25 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-01-26 13:08:25 -0500 |
commit | 66bc27b485e6dd167d0394db18a078d5b7977ae3 (patch) | |
tree | c4749cc2158aec243e11c5a8d31223ab82823d04 /IkiWiki/Plugin | |
parent | 12eb056b33e1f01a63c4fcee408c9ac0d96c6b5e (diff) | |
download | ikiwiki-66bc27b485e6dd167d0394db18a078d5b7977ae3.tar ikiwiki-66bc27b485e6dd167d0394db18a078d5b7977ae3.tar.gz |
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')
-rw-r--r-- | IkiWiki/Plugin/google.pm | 2 |
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) { |