Remove internationalization of a non-internationalizable string

This commit is contained in:
Valentin Lorentz 2010-10-25 13:11:59 +02:00
parent 7fb900d8df
commit 007c58703f
2 changed files with 2 additions and 6 deletions

View File

@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2010-10-16 10:17+CEST\n"
"POT-Creation-Date: 2010-10-25 13:10+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"
@ -305,10 +305,6 @@ msgid ""
" "
msgstr ""
#: plugin.py:409
msgid "haveOp"
msgstr ""
#: plugin.py:409
msgid "invite someone"
msgstr ""

View File

@ -406,7 +406,7 @@ class Channel(callbacks.Plugin):
nick = nick or msg.nick
self._sendMsg(irc, ircmsgs.invite(nick, channel))
self.invites[(irc.getRealIrc(), ircutils.toLower(nick))] = irc
invite = wrap(invite, ['op', (_('haveOp'), _('invite someone')),
invite = wrap(invite, ['op', ('haveOp', _('invite someone')),
additional('nick')])
def do341(self, irc, msg):