diff options
Diffstat (limited to 'IkiWiki/Plugin/google.pm')
-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 4bba5775c..71948a7e9 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 google search plugin"), "url")); + error(sprintf(gettext("Must specify %s when using the %s plugin"), "url", 'google search')); } my $uri=URI->new($config{url}); if (! $uri || ! defined $uri->host) { |