Misc: Fix previous commit.

This commit is contained in:
Valentin Lorentz 2013-07-13 11:54:44 +02:00
parent 98f807c230
commit 3bfa4ae35a
7 changed files with 17 additions and 13 deletions

View File

@ -193,11 +193,12 @@ msgstr "Sorry, Ich kann nicht mehr für %s finden"
#: plugin.py:323 #: plugin.py:323
#, fuzzy #, fuzzy
msgid "1 more message" msgid "1 more message"
msgstr "mehr Nachricht" msgstr "1 mehr Nachricht"
#: plugin.py:325 #: plugin.py:325
msgid "more messages" #, fuzzy
msgstr "mehr Nachrichten" msgid "%i more messages"
msgstr "%i mehr Nachrichten"
#: plugin.py:329 #: plugin.py:329
msgid "You haven't asked me a command; perhaps you want to see someone else's more. To do so, call this command with that person's nick." msgid "You haven't asked me a command; perhaps you want to see someone else's more. To do so, call this command with that person's nick."

View File

@ -234,8 +234,9 @@ msgid "1 more message"
msgstr "viesti lisää" msgstr "viesti lisää"
#: plugin.py:355 #: plugin.py:355
msgid "more messages" #, fuzzy
msgstr "lisää viestejä" msgid "%i more messages"
msgstr "%i lisää viestejä"
#: plugin.py:359 #: plugin.py:359
msgid "You haven't asked me a command; perhaps you want to see someone else's more. To do so, call this command with that person's nick." msgid "You haven't asked me a command; perhaps you want to see someone else's more. To do so, call this command with that person's nick."

View File

@ -199,8 +199,8 @@ msgid "1 more message"
msgstr "1 autre message" msgstr "1 autre message"
#: plugin.py:355 #: plugin.py:355
msgid "more messages" msgid "%i more messages"
msgstr "autres messages" msgstr "%i autres messages"
#: plugin.py:359 #: plugin.py:359
msgid "You haven't asked me a command; perhaps you want to see someone else's more. To do so, call this command with that person's nick." msgid "You haven't asked me a command; perhaps you want to see someone else's more. To do so, call this command with that person's nick."

View File

@ -198,8 +198,9 @@ msgid "1 more message"
msgstr "eggyel több üzenet" msgstr "eggyel több üzenet"
#: plugin.py:325 #: plugin.py:325
msgid "more messages" #, fuzzy
msgstr "több üzenet" msgid "%i more messages"
msgstr "%i több üzenet"
#: plugin.py:329 #: plugin.py:329
msgid "You haven't asked me a command; perhaps you want to see someone else's more. To do so, call this command with that person's nick." msgid "You haven't asked me a command; perhaps you want to see someone else's more. To do so, call this command with that person's nick."

View File

@ -224,8 +224,9 @@ msgid "1 more message"
msgstr "altro messaggio" msgstr "altro messaggio"
#: plugin.py:325 #: plugin.py:325
msgid "more messages" #, fuzzy
msgstr "altri messaggi" msgid "%i more messages"
msgstr "%i altri messaggi"
#: plugin.py:329 #: plugin.py:329
msgid "You haven't asked me a command; perhaps you want to see someone else's more. To do so, call this command with that person's nick." msgid "You haven't asked me a command; perhaps you want to see someone else's more. To do so, call this command with that person's nick."

View File

@ -188,7 +188,7 @@ msgid "1 more message"
msgstr "" msgstr ""
#: plugin.py:355 #: plugin.py:355
msgid "more messages" msgid "%i more messages"
msgstr "" msgstr ""
#: plugin.py:359 #: plugin.py:359

View File

@ -361,7 +361,7 @@ class Misc(callbacks.Plugin):
if len(L) < 2: if len(L) < 2:
more = _('1 more message') more = _('1 more message')
else: else:
more = _('more messages') more = _('%i more messages') % len(L)
chunks[-1] += format(' \x02(%s)\x0F', more) chunks[-1] += format(' \x02(%s)\x0F', more)
irc.replies(chunks, noLengthCheck=True, oneToOne=False) irc.replies(chunks, noLengthCheck=True, oneToOne=False)
except KeyError: except KeyError: