From 8e427838cdc899f8cfde6a03c1d83d95cc9638e8 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Mon, 28 Dec 2015 20:04:31 +0100 Subject: [PATCH] Plugin: internationalize a string. --- plugins/Plugin/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Plugin/plugin.py b/plugins/Plugin/plugin.py index a07db1fac..6931bd076 100644 --- a/plugins/Plugin/plugin.py +++ b/plugins/Plugin/plugin.py @@ -113,7 +113,7 @@ class Plugin(callbacks.Plugin): plugin = 'plugins' else: plugin = 'plugin' - irc.reply(format('The %q command is available in the %L %s.', + irc.reply(format(_('The %q command is available in the %L %s.'), command, L, plugin)) else: irc.error(format('There is no command %q.', command))