mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-14 22:49:23 +01:00
Fix Ctcp internationalization
This commit is contained in:
parent
db977bf5d2
commit
8864a7fc71
19
plugins/Ctcp/locale/fr.po
Normal file
19
plugins/Ctcp/locale/fr.po
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Supybot-fr\n"
|
||||||
|
"POT-Creation-Date: 2010-10-26 18:57+CEST\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: Valentin Lorentz <progval@gmail.com>\n"
|
||||||
|
"Language-Team: Supybot-fr <progval@gmail.com>\n"
|
||||||
|
"Language: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Poedit-Language: Français\n"
|
||||||
|
"X-Poedit-Country: France\n"
|
||||||
|
"X-Poedit-SourceCharset: ASCII\n"
|
||||||
|
|
||||||
|
#: plugin.py:104
|
||||||
|
msgid "Supybot, the best Python IRC bot in existence!"
|
||||||
|
msgstr "Supybot, le meilleur bot IRC en Python au monde !"
|
||||||
|
|
@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2010-10-17 10:16+CEST\n"
|
"POT-Creation-Date: 2010-10-26 18:57+CEST\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -15,50 +15,7 @@ msgstr ""
|
|||||||
"Generated-By: pygettext.py 1.5\n"
|
"Generated-By: pygettext.py 1.5\n"
|
||||||
|
|
||||||
|
|
||||||
#: plugin.py:77
|
|
||||||
#, docstring
|
|
||||||
msgid "\001PING ?(.*)\001"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plugin.py:86
|
|
||||||
#, docstring
|
|
||||||
msgid "\001VERSION\001"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plugin.py:91
|
|
||||||
#, docstring
|
|
||||||
msgid "\001USERINFO\001"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plugin.py:96
|
|
||||||
#, docstring
|
|
||||||
msgid "\001TIME\001"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plugin.py:101
|
|
||||||
#, docstring
|
|
||||||
msgid "\001FINGER\001"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plugin.py:104
|
#: plugin.py:104
|
||||||
msgid "FINGER Supybot, the best Python IRC bot in existence!"
|
msgid "Supybot, the best Python IRC bot in existence!"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plugin.py:107
|
|
||||||
#, docstring
|
|
||||||
msgid "\001SOURCE\001"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: plugin.py:123
|
|
||||||
#, docstring
|
|
||||||
msgid ""
|
|
||||||
"[<channel>] [--nicks]\n"
|
|
||||||
"\n"
|
|
||||||
" Sends a CTCP VERSION to <channel>, returning the various\n"
|
|
||||||
" version strings returned. It waits for 10 seconds before returning\n"
|
|
||||||
" the versions received at that point. If --nicks is given, nicks are\n"
|
|
||||||
" associated with the version strings; otherwise, only the version\n"
|
|
||||||
" strings are given.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -100,8 +100,8 @@ class Ctcp(callbacks.PluginRegexp):
|
|||||||
def ctcpFinger(self, irc, msg, match):
|
def ctcpFinger(self, irc, msg, match):
|
||||||
"\x01FINGER\x01"
|
"\x01FINGER\x01"
|
||||||
self.log.info('Received CTCP FINGER from %s', msg.prefix)
|
self.log.info('Received CTCP FINGER from %s', msg.prefix)
|
||||||
self._reply(irc, msg,
|
self._reply(irc, msg, 'FINGER ' +
|
||||||
_('FINGER Supybot, the best Python IRC bot in existence!'))
|
_('Supybot, the best Python IRC bot in existence!'))
|
||||||
|
|
||||||
def ctcpSource(self, irc, msg, match):
|
def ctcpSource(self, irc, msg, match):
|
||||||
"\x01SOURCE\x01"
|
"\x01SOURCE\x01"
|
||||||
|
Loading…
Reference in New Issue
Block a user