User: internationalize a string

This commit is contained in:
Valentin Lorentz 2010-10-30 11:23:56 +02:00
parent 6737424bc6
commit 52094ec910
2 changed files with 7 additions and 3 deletions

View File

@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2010-10-16 13:50+CEST\n"
"POT-Creation-Date: 2010-10-30 11:23+CEST\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -260,6 +260,10 @@ msgid ""
" "
msgstr ""
#: plugin.py:438
msgid "If you remain recognized after giving this command, you're being recognized by hostmask, rather than by password. You must remove whatever hostmask is causing you to be recognized in order not to be recognized."
msgstr ""
#: plugin.py:447
#, docstring
msgid ""

View File

@ -435,11 +435,11 @@ class User(callbacks.Plugin):
"""
user.clearAuth()
ircdb.users.setUser(user)
irc.replySuccess('If you remain recognized after giving this command, '
irc.replySuccess(_('If you remain recognized after giving this command, '
'you\'re being recognized by hostmask, rather than '
'by password. You must remove whatever hostmask is '
'causing you to be recognized in order not to be '
'recognized.')
'recognized.'))
unidentify = wrap(unidentify, ['user'])
@internationalizeDocstring