From 66bc27b485e6dd167d0394db18a078d5b7977ae3 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 26 Jan 2009 13:08:25 -0500 Subject: [PATCH] avoid mixing english with translation "google search" is english which would get mixed in with translated text. Instead, usr just the plugin name. --- IkiWiki/Plugin/google.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.45.0