User: fix typo. Closes GH-32.

This commit is contained in:
Valentin Lorentz 2011-06-25 13:06:06 +02:00
parent 1acc55feb3
commit 2cb7f72874
3 changed files with 3 additions and 3 deletions

View File

@ -185,7 +185,7 @@ msgid "%s has no registered hostmasks."
msgstr "%s n'a pas de masque d'hôte enregistré." msgstr "%s n'a pas de masque d'hôte enregistré."
#: plugin.py:283 #: plugin.py:283
msgid "You may only retrieve your own (hostmasks." msgid "You may only retrieve your own hostmasks."
msgstr "Vous ne pouvez récupérer que vos propres masques d'hôte." msgstr "Vous ne pouvez récupérer que vos propres masques d'hôte."
#: plugin.py:299 #: plugin.py:299

View File

@ -169,7 +169,7 @@ msgid "%s has no registered hostmasks."
msgstr "" msgstr ""
#: plugin.py:283 #: plugin.py:283
msgid "You may only retrieve your own (hostmasks." msgid "You may only retrieve your own hostmasks."
msgstr "" msgstr ""
#: plugin.py:299 #: plugin.py:299

View File

@ -281,7 +281,7 @@ class User(callbacks.Plugin):
if name != user.name and \ if name != user.name and \
not ircdb.checkCapability(msg.prefix, 'owner'): not ircdb.checkCapability(msg.prefix, 'owner'):
irc.error(_('You may only retrieve your own ' irc.error(_('You may only retrieve your own '
'(hostmasks.'), Raise=True) 'hostmasks.'), Raise=True)
else: else:
try: try:
user = ircdb.users.getUser(name) user = ircdb.users.getUser(name)