From: Joey Hess Date: Mon, 26 Jan 2009 18:08:25 +0000 (-0500) Subject: avoid mixing english with translation X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/66bc27b485e6dd167d0394db18a078d5b7977ae3 avoid mixing english with translation "google search" is english which would get mixed in with translated text. Instead, usr just the plugin name. --- 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) {