From 36bce4d753819828f99ed57ddaf212817724b88d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Terje=20Ho=C3=A5s?= Date: Thu, 8 Aug 2013 10:02:26 +0200 Subject: [PATCH] Seen: Change 'last left the #channelname' to 'last left #channelname' in the English error message. --- plugins/Seen/locales/de.po | 2 +- plugins/Seen/locales/fi.po | 2 +- plugins/Seen/locales/fr.po | 2 +- plugins/Seen/locales/it.po | 2 +- plugins/Seen/messages.pot | 2 +- plugins/Seen/plugin.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/Seen/locales/de.po b/plugins/Seen/locales/de.po index cd8c0ac37..973d139d7 100644 --- a/plugins/Seen/locales/de.po +++ b/plugins/Seen/locales/de.po @@ -123,7 +123,7 @@ msgid "%s must be in %s to use this command." msgstr "Du musst in %s sein, um diesen Befehl zu benutzen." #: plugin.py:334 -msgid "I couldn't find in my history of %s messages where %r last left the %s" +msgid "I couldn't find in my history of %s messages where %r last left %s" msgstr "Ich konnte in meiner Vergangenheit von %s Nachrichten nichts finden, wo %r zuletzt %s verlassen hat." #: plugin.py:343 diff --git a/plugins/Seen/locales/fi.po b/plugins/Seen/locales/fi.po index d3d58a4f2..0017841d2 100644 --- a/plugins/Seen/locales/fi.po +++ b/plugins/Seen/locales/fi.po @@ -142,7 +142,7 @@ msgid "%s must be in %s to use this command." msgstr "Käyttäjän %s täytyy olla kanavalla %s käyttääkseen tätä komentoa." #: plugin.py:334 -msgid "I couldn't find in my history of %s messages where %r last left the %s" +msgid "I couldn't find in my history of %s messages where %r last left %s" msgstr "En voinut löytää %s viestin historiasta milloin %r viimeksi lähti kanavalta %s" #: plugin.py:343 diff --git a/plugins/Seen/locales/fr.po b/plugins/Seen/locales/fr.po index 754aa9f36..5151f6629 100644 --- a/plugins/Seen/locales/fr.po +++ b/plugins/Seen/locales/fr.po @@ -154,7 +154,7 @@ msgid "%s must be in %s to use this command." msgstr "%s doit être dans %s pour utiliser cette commande." #: plugin.py:352 -msgid "I couldn't find in my history of %s messages where %r last left the %s" +msgid "I couldn't find in my history of %s messages where %r last left %s" msgstr "" "Je ne peux pas trouver dans mon historique de %s messages, où %r a quitté il " "y a %s" diff --git a/plugins/Seen/locales/it.po b/plugins/Seen/locales/it.po index 1847c566b..0c8ea0565 100644 --- a/plugins/Seen/locales/it.po +++ b/plugins/Seen/locales/it.po @@ -139,7 +139,7 @@ msgid "%s must be in %s to use this command." msgstr "Per usare questo comando %s deve essere in %s." #: plugin.py:334 -msgid "I couldn't find in my history of %s messages where %r last left the %s" +msgid "I couldn't find in my history of %s messages where %r last left %s" msgstr "Non trovo nella cronologia dei messaggi di %s dove %r ha lasciato %s l'ultima volta." #: plugin.py:343 diff --git a/plugins/Seen/messages.pot b/plugins/Seen/messages.pot index 196cc9d5f..69085739f 100644 --- a/plugins/Seen/messages.pot +++ b/plugins/Seen/messages.pot @@ -135,7 +135,7 @@ msgid "%s must be in %s to use this command." msgstr "" #: plugin.py:363 -msgid "I couldn't find in my history of %s messages where %r last left the %s" +msgid "I couldn't find in my history of %s messages where %r last left %s" msgstr "" #: plugin.py:372 diff --git a/plugins/Seen/plugin.py b/plugins/Seen/plugin.py index fe76d2b2e..f61ebef2e 100644 --- a/plugins/Seen/plugin.py +++ b/plugins/Seen/plugin.py @@ -361,7 +361,7 @@ class Seen(callbacks.Plugin): break else: # I never use this; it only kicks in when the for loop exited normally. irc.error(format(_('I couldn\'t find in my history of %s messages ' - 'where %r last left the %s'), + 'where %r last left %s'), len(irc.state.history), nick, channel)) return msgs = [m for m in irc.state.history[i:end]