From 8a3ea3d5c86ea5067bc9b93e54cecfc75262fe40 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Thu, 20 Mar 2014 09:57:33 +0100 Subject: [PATCH 01/54] Ctcp: Don't reply to malformed CTCP requests --- plugins/Ctcp/plugin.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/Ctcp/plugin.py b/plugins/Ctcp/plugin.py index 0512480d5..73b911759 100644 --- a/plugins/Ctcp/plugin.py +++ b/plugins/Ctcp/plugin.py @@ -78,7 +78,7 @@ class Ctcp(callbacks.PluginRegexp): irc.reply(s, notice=True, private=True, to=msg.nick) def ctcpPing(self, irc, msg, match): - "\x01PING ?(.*)\x01" + "^\x01PING ?(.*)\x01$" self.log.info('Received CTCP PING from %s', msg.prefix) payload = match.group(1) if payload: @@ -87,28 +87,28 @@ class Ctcp(callbacks.PluginRegexp): self._reply(irc, msg, 'PING') def ctcpVersion(self, irc, msg, match): - "\x01VERSION\x01" + "^\x01VERSION\x01$" self.log.info('Received CTCP VERSION from %s', msg.prefix) self._reply(irc, msg, 'VERSION Supybot %s' % conf.version) def ctcpUserinfo(self, irc, msg, match): - "\x01USERINFO\x01" + "^\x01USERINFO\x01$" self.log.info('Received CTCP USERINFO from %s', msg.prefix) self._reply(irc, msg, 'USERINFO %s' % self.registryValue('userinfo')) def ctcpTime(self, irc, msg, match): - "\x01TIME\x01" + "^\x01TIME\x01$" self.log.info('Received CTCP TIME from %s', msg.prefix) self._reply(irc, msg, 'TIME %s' % time.ctime()) def ctcpFinger(self, irc, msg, match): - "\x01FINGER\x01" + "^\x01FINGER\x01$" self.log.info('Received CTCP FINGER from %s', msg.prefix) self._reply(irc, msg, 'FINGER ' + _('Supybot, the best Python IRC bot in existence!')) def ctcpSource(self, irc, msg, match): - "\x01SOURCE\x01" + "^\x01SOURCE\x01$" self.log.info('Received CTCP SOURCE from %s', msg.prefix) self._reply(irc, msg, 'SOURCE https://github.com/ProgVal/Limnoria') From 9186162b1a0a05bce4e31017c59d8bc09962465e Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Thu, 20 Mar 2014 11:57:04 +0100 Subject: [PATCH 02/54] Ctcp: Fix regex for PING The bot shouldn't treat a request such as "PING1234" as "PING 1234". --- plugins/Ctcp/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Ctcp/plugin.py b/plugins/Ctcp/plugin.py index 73b911759..3750c18a2 100644 --- a/plugins/Ctcp/plugin.py +++ b/plugins/Ctcp/plugin.py @@ -78,7 +78,7 @@ class Ctcp(callbacks.PluginRegexp): irc.reply(s, notice=True, private=True, to=msg.nick) def ctcpPing(self, irc, msg, match): - "^\x01PING ?(.*)\x01$" + "^\x01PING(?: (.+))?\x01$" self.log.info('Received CTCP PING from %s', msg.prefix) payload = match.group(1) if payload: From bfa45a6da888c66e275a7b9abc99a0a662320387 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Thu, 20 Mar 2014 17:46:47 +0000 Subject: [PATCH 03/54] Utilities: Add @sort. --- plugins/Utilities/plugin.py | 9 +++++++++ plugins/Utilities/test.py | 3 +++ 2 files changed, 12 insertions(+) diff --git a/plugins/Utilities/plugin.py b/plugins/Utilities/plugin.py index ee3807821..122bb7ffb 100644 --- a/plugins/Utilities/plugin.py +++ b/plugins/Utilities/plugin.py @@ -104,6 +104,15 @@ class Utilities(callbacks.Plugin): irc.reply(' '.join(things)) shuffle = wrap(shuffle, [many('anything')]) + @internationalizeDocstring + def sort(self, irc, msg, args, things): + """ [ ...] + + Sorts the arguments given. + """ + irc.reply(' '.join(sorted(things))) + sort = wrap(sort, [many('anything')]) + @internationalizeDocstring def sample(self, irc, msg, args, num, things): """ [ ...] diff --git a/plugins/Utilities/test.py b/plugins/Utilities/test.py index d595c7590..1459d9f75 100644 --- a/plugins/Utilities/test.py +++ b/plugins/Utilities/test.py @@ -62,6 +62,9 @@ class UtilitiesTestCase(PluginTestCase): def testShuffle(self): self.assertResponse('shuffle a', 'a') + def testSort(self): + self.assertResponse('sort abc cab cba bca', 'abc bca cab cba') + def testSample(self): self.assertResponse('sample 1 a', 'a') self.assertError('sample moo') From bfb305e2b8cec0523d2f3769b374667d5c7303ef Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Thu, 20 Mar 2014 21:17:18 +0000 Subject: [PATCH 04/54] Utilities: Use number comparison for integers and floats in @sort. --- plugins/Utilities/plugin.py | 8 +++++--- plugins/Utilities/test.py | 2 ++ src/commands.py | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/plugins/Utilities/plugin.py b/plugins/Utilities/plugin.py index 122bb7ffb..50d999a54 100644 --- a/plugins/Utilities/plugin.py +++ b/plugins/Utilities/plugin.py @@ -110,8 +110,10 @@ class Utilities(callbacks.Plugin): Sorts the arguments given. """ - irc.reply(' '.join(sorted(things))) - sort = wrap(sort, [many('anything')]) + irc.reply(' '.join(map(str, sorted(things)))) + # Keep ints as ints, floats as floats, without comparing between numbers + # and strings. + sort = wrap(sort, [first(many(first('int', 'float')), many('anything'))]) @internationalizeDocstring def sample(self, irc, msg, args, num, things): @@ -148,7 +150,7 @@ class Utilities(callbacks.Plugin): tokens = callbacks.tokenize(text) allTokens = commands + tokens self.Proxy(irc, msg, allTokens) - apply = wrap(apply, ['something', many('anything')]) + apply = wrap(apply, ['something', many('something')]) Class = Utilities diff --git a/plugins/Utilities/test.py b/plugins/Utilities/test.py index 1459d9f75..339a0b57d 100644 --- a/plugins/Utilities/test.py +++ b/plugins/Utilities/test.py @@ -64,6 +64,8 @@ class UtilitiesTestCase(PluginTestCase): def testSort(self): self.assertResponse('sort abc cab cba bca', 'abc bca cab cba') + self.assertResponse('sort 2 12 42 7 2', '2 2 7 12 42') + self.assertResponse('sort 2 8 12.2 12.11 42 7 2', '2 2 7 8 12.11 12.2 42') def testSample(self): self.assertResponse('sample 1 a', 'a') diff --git a/src/commands.py b/src/commands.py index 6611b0435..7f93d8326 100644 --- a/src/commands.py +++ b/src/commands.py @@ -243,7 +243,7 @@ def _int(s): try: return int(s, base) except ValueError: - if base == 10: + if base == 10 and '.' not in s: try: return int(float(s)) except OverflowError: From 5f8e45aaa8e69ca6753fd980e90b458104231d33 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Fri, 21 Mar 2014 15:31:48 +0000 Subject: [PATCH 05/54] Fix doc of NestedCommandsIrcProxy.reply. --- src/callbacks.py | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/callbacks.py b/src/callbacks.py index adf288a14..9229ca7c7 100644 --- a/src/callbacks.py +++ b/src/callbacks.py @@ -837,19 +837,21 @@ class NestedCommandsIrcProxy(ReplyIrcProxy): def reply(self, s, noLengthCheck=False, prefixNick=None, action=None, private=None, notice=None, to=None, msg=None): - """reply(s) -> replies to msg with s + """ + + reply(s) -> replies to msg with s Keyword arguments: - noLengthCheck=False: True if the length shouldn't be checked - (used for 'more' handling) - prefixNick=True: False if the nick shouldn't be prefixed to the - reply. - action=False: True if the reply should be an action. - private=False: True if the reply should be in private. - notice=False: True if the reply should be noticed when the - bot is configured to do so. - to=: The nick or channel the reply should go to. - Defaults to msg.args[0] (or msg.nick if private) + * `noLengthCheck=False`: True if the length shouldn't be checked + (used for 'more' handling) + * `prefixNick=True`: False if the nick shouldn't be prefixed to the + reply. + * `action=False`: True if the reply should be an action. + * `private=False`: True if the reply should be in private. + * `notice=False`: True if the reply should be noticed when the + bot is configured to do so. + * `to=`: The nick or channel the reply should go to. + Defaults to msg.args[0] (or msg.nick if private) """ # These use and or or based on whether or not they default to True or # False. Those that default to True use and; those that default to From 0da8ab759e852ae2191b18114a9fb42ffc75ab8b Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Fri, 21 Mar 2014 15:34:14 +0000 Subject: [PATCH 06/54] Fix doc (again). --- src/callbacks.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/callbacks.py b/src/callbacks.py index 9229ca7c7..97331f9ae 100644 --- a/src/callbacks.py +++ b/src/callbacks.py @@ -838,10 +838,8 @@ class NestedCommandsIrcProxy(ReplyIrcProxy): def reply(self, s, noLengthCheck=False, prefixNick=None, action=None, private=None, notice=None, to=None, msg=None): """ - - reply(s) -> replies to msg with s - Keyword arguments: + * `noLengthCheck=False`: True if the length shouldn't be checked (used for 'more' handling) * `prefixNick=True`: False if the nick shouldn't be prefixed to the From f88e8e20b9226ef5e135bab448d8a8373c2226a1 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 12:00:40 +0200 Subject: [PATCH 07/54] My name is Mikaela! MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks @nyuszika7h :) ☺ --- plugins/Admin/locales/fi.po | 4 ++-- plugins/Alias/locales/fi.po | 4 ++-- plugins/Anonymous/locales/fi.po | 4 ++-- plugins/AutoMode/locales/fi.po | 4 ++-- plugins/BadWords/locales/fi.po | 4 ++-- plugins/Channel/locales/fi.po | 4 ++-- plugins/ChannelLogger/locales/fi.po | 4 ++-- plugins/ChannelStats/locales/fi.po | 2 +- plugins/Conditional/locales/fi.po | 4 ++-- plugins/Config/locales/fi.po | 2 +- plugins/Ctcp/locales/fi.po | 4 ++-- plugins/Dict/locales/fi.po | 4 ++-- plugins/Dunno/locales/fi.po | 2 +- plugins/Factoids/locales/fi.po | 4 ++-- plugins/Filter/locales/fi.po | 2 +- plugins/Format/locales/fi.po | 4 ++-- plugins/Games/locales/fi.po | 4 ++-- plugins/Google/locales/fi.po | 4 ++-- plugins/Herald/locales/fi.po | 4 ++-- plugins/Internet/locales/fi.po | 4 ++-- plugins/Karma/locales/fi.po | 4 ++-- plugins/Lart/locales/fi.po | 4 ++-- plugins/Later/locales/fi.po | 4 ++-- plugins/Limiter/locales/fi.po | 4 ++-- plugins/Math/locales/fi.po | 4 ++-- plugins/MessageParser/locales/fi.po | 4 ++-- plugins/Misc/locales/fi.po | 4 ++-- plugins/MoobotFactoids/locales/fi.po | 4 ++-- plugins/Network/locales/fi.po | 4 ++-- plugins/News/locales/fi.po | 4 ++-- plugins/NickAuth/locales/fi.po | 4 ++-- plugins/NickCapture/locales/fi.po | 4 ++-- plugins/Nickometer/locales/fi.po | 4 ++-- plugins/Note/locales/fi.po | 4 ++-- plugins/Owner/locales/fi.po | 2 +- plugins/Plugin/locales/fi.po | 4 ++-- plugins/PluginDownloader/locales/fi.po | 4 ++-- plugins/Praise/locales/fi.po | 4 ++-- plugins/Protector/locales/fi.po | 4 ++-- plugins/Quote/locales/fi.po | 4 ++-- plugins/QuoteGrabs/locales/fi.po | 4 ++-- plugins/RSS/locales/fi.po | 4 ++-- plugins/Relay/locales/fi.po | 4 ++-- plugins/Reply/locales/fi.po | 4 ++-- plugins/Scheduler/locales/fi.po | 4 ++-- plugins/Seen/locales/fi.po | 4 ++-- plugins/Services/locales/fi.po | 4 ++-- plugins/ShrinkUrl/locales/fi.po | 4 ++-- plugins/Status/locales/fi.po | 4 ++-- plugins/String/locales/fi.po | 4 ++-- plugins/Success/locales/fi.po | 4 ++-- plugins/Time/locales/fi.po | 4 ++-- plugins/Todo/locales/fi.po | 4 ++-- plugins/Topic/locales/fi.po | 6 +++--- plugins/URL/locales/fi.po | 4 ++-- plugins/Unix/locales/fi.po | 4 ++-- plugins/User/locales/fi.po | 4 ++-- plugins/Utilities/locales/fi.po | 4 ++-- plugins/Web/locales/fi.po | 4 ++-- 59 files changed, 114 insertions(+), 114 deletions(-) diff --git a/plugins/Admin/locales/fi.po b/plugins/Admin/locales/fi.po index 237b6c642..79a2e5f86 100644 --- a/plugins/Admin/locales/fi.po +++ b/plugins/Admin/locales/fi.po @@ -1,13 +1,13 @@ # Admin plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: Finnish translation of Admin plugin in Supybot\n" "POT-Creation-Date: 2011-10-30 19:20+CET\n" "PO-Revision-Date: 2011-10-31 16:25+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Alias/locales/fi.po b/plugins/Alias/locales/fi.po index 5f0432bfa..a63368c8a 100644 --- a/plugins/Alias/locales/fi.po +++ b/plugins/Alias/locales/fi.po @@ -1,13 +1,13 @@ # Alias plugin in Limnoria. # Copyright (C) 2011, 2012 Limnoria -# Mika Suomalainen , 2011, 2012. +# Mikaela Suomalainen , 2011, 2012. # msgid "" msgstr "" "Project-Id-Version: Supybot Alias plugin\n" "POT-Creation-Date: 2012-10-07 18:48+EEST\n" "PO-Revision-Date: 2012-10-07 18:51+0300\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: suomi <>\n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Anonymous/locales/fi.po b/plugins/Anonymous/locales/fi.po index 3543a0a37..01ceaf2ac 100644 --- a/plugins/Anonymous/locales/fi.po +++ b/plugins/Anonymous/locales/fi.po @@ -1,13 +1,13 @@ # Anonymous plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: Supybot Anonymous\n" "POT-Creation-Date: 2011-06-09 18:26+CEST\n" "PO-Revision-Date: \n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/AutoMode/locales/fi.po b/plugins/AutoMode/locales/fi.po index 6d7a37fb4..a7a975961 100644 --- a/plugins/AutoMode/locales/fi.po +++ b/plugins/AutoMode/locales/fi.po @@ -1,13 +1,13 @@ # AutoMode plugin in Limnoria. # Copyright (C) 2011, 2012 Limnoria -# Mika Suomalainen , 2011, 2012. +# Mikaela Suomalainen , 2011, 2012. # msgid "" msgstr "" "Project-Id-Version: Supybot AutoMode\n" "POT-Creation-Date: 2012-10-07 18:54+EEST\n" "PO-Revision-Date: 2012-10-07 18:58+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: suomi <>\n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/BadWords/locales/fi.po b/plugins/BadWords/locales/fi.po index 0ebbfabd8..2a6add573 100644 --- a/plugins/BadWords/locales/fi.po +++ b/plugins/BadWords/locales/fi.po @@ -1,13 +1,13 @@ # BadWords plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: Supybot BadWords\n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: \n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Channel/locales/fi.po b/plugins/Channel/locales/fi.po index 76ffee786..c058356af 100644 --- a/plugins/Channel/locales/fi.po +++ b/plugins/Channel/locales/fi.po @@ -1,12 +1,12 @@ # -# Mika Suomalainen , 2012. +# Mikaela Suomalainen , 2012. # msgid "" msgstr "" "Project-Id-Version: Supybot Channel\n" "POT-Creation-Date: 2012-10-07 18:04+EEST\n" "PO-Revision-Date: 2012-10-07 18:12+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: suomi <>\n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/ChannelLogger/locales/fi.po b/plugins/ChannelLogger/locales/fi.po index 5e5ae1c06..6f85494f6 100644 --- a/plugins/ChannelLogger/locales/fi.po +++ b/plugins/ChannelLogger/locales/fi.po @@ -1,13 +1,13 @@ # ChannelLogger plugin in Limnoria. # Copyright (C) 2011, 2012 Limnoria -# Mika Suomalainen , 2011, 2012. +# Mikaela Suomalainen , 2011, 2012. # msgid "" msgstr "" "Project-Id-Version: Supybot Channellogger\n" "POT-Creation-Date: 2012-10-07 18:37+EEST\n" "PO-Revision-Date: 2012-10-07 18:39+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: suomi <>\n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/ChannelStats/locales/fi.po b/plugins/ChannelStats/locales/fi.po index 4e9020530..e00141558 100644 --- a/plugins/ChannelStats/locales/fi.po +++ b/plugins/ChannelStats/locales/fi.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: Supybot ChannelStats\n" "POT-Creation-Date: 2010-10-16 09:41+CEST\n" "PO-Revision-Date: \n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Conditional/locales/fi.po b/plugins/Conditional/locales/fi.po index bad3da841..29ce6dce3 100644 --- a/plugins/Conditional/locales/fi.po +++ b/plugins/Conditional/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-06-28 19:37+CEST\n" "PO-Revision-Date: 2011-06-28 22:52+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Config/locales/fi.po b/plugins/Config/locales/fi.po index 404556c11..d060de220 100644 --- a/plugins/Config/locales/fi.po +++ b/plugins/Config/locales/fi.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: Finnish translation of Config plugin in Supybot\n" "POT-Creation-Date: 2010-12-12 15:02+CET\n" "PO-Revision-Date: \n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Ctcp/locales/fi.po b/plugins/Ctcp/locales/fi.po index 6fbcc2a39..e373cb20e 100755 --- a/plugins/Ctcp/locales/fi.po +++ b/plugins/Ctcp/locales/fi.po @@ -1,13 +1,13 @@ # Ctcp plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-12-23 13:36+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Dict/locales/fi.po b/plugins/Dict/locales/fi.po index b929f069e..297d8bd42 100644 --- a/plugins/Dict/locales/fi.po +++ b/plugins/Dict/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-06-28 19:40+CEST\n" "PO-Revision-Date: 2011-06-29 09:47+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Dunno/locales/fi.po b/plugins/Dunno/locales/fi.po index d1368e275..4f92a3f68 100644 --- a/plugins/Dunno/locales/fi.po +++ b/plugins/Dunno/locales/fi.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-06-08 16:50+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Factoids/locales/fi.po b/plugins/Factoids/locales/fi.po index 54dc13b84..da98b1e25 100644 --- a/plugins/Factoids/locales/fi.po +++ b/plugins/Factoids/locales/fi.po @@ -1,13 +1,13 @@ # Factoids plugin in Limnoria # Copyright (C) 2011, 2012 Limnoria -# Mika Suomalainen , 2011, 2012. +# Mikaela Suomalainen , 2011, 2012. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-06-28 19:40+CEST\n" "PO-Revision-Date: 2012-04-27 14:45+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: Finnish <>\n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Filter/locales/fi.po b/plugins/Filter/locales/fi.po index d9f4a546e..605237ee3 100644 --- a/plugins/Filter/locales/fi.po +++ b/plugins/Filter/locales/fi.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-06-17 20:32+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Format/locales/fi.po b/plugins/Format/locales/fi.po index c03dde5d4..09abeea24 100644 --- a/plugins/Format/locales/fi.po +++ b/plugins/Format/locales/fi.po @@ -1,13 +1,13 @@ # Format plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-08-10 11:27+CEST\n" "PO-Revision-Date: 2011-08-10 14:18+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Games/locales/fi.po b/plugins/Games/locales/fi.po index 903c61db1..ac4e8c7c6 100644 --- a/plugins/Games/locales/fi.po +++ b/plugins/Games/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-07-20 15:29+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Google/locales/fi.po b/plugins/Google/locales/fi.po index e46088b37..433680ecc 100644 --- a/plugins/Google/locales/fi.po +++ b/plugins/Google/locales/fi.po @@ -1,13 +1,13 @@ # Google plugin in Limnoria. # Copyright (C) 2012 Limnoria -# Mika Suomalainen , 2011, 2012. +# Mikaela Suomalainen , 2011, 2012. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2012-10-07 18:43+EEST\n" "PO-Revision-Date: 2012-10-07 18:46+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: suomi <>\n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Herald/locales/fi.po b/plugins/Herald/locales/fi.po index 5d1e32d28..ac8330d36 100644 --- a/plugins/Herald/locales/fi.po +++ b/plugins/Herald/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-06-27 12:56+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Internet/locales/fi.po b/plugins/Internet/locales/fi.po index e4a10ff38..1330333c0 100644 --- a/plugins/Internet/locales/fi.po +++ b/plugins/Internet/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-06-23 15:37+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Karma/locales/fi.po b/plugins/Karma/locales/fi.po index 21433d91a..170526d23 100644 --- a/plugins/Karma/locales/fi.po +++ b/plugins/Karma/locales/fi.po @@ -1,13 +1,13 @@ # Karma plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-08-10 11:27+CEST\n" "PO-Revision-Date: 2011-08-10 14:22+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Lart/locales/fi.po b/plugins/Lart/locales/fi.po index fd4ff1e39..98660aaba 100644 --- a/plugins/Lart/locales/fi.po +++ b/plugins/Lart/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen, 2011. +# Mikaela Suomalainen, 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-06-24 20:51+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Later/locales/fi.po b/plugins/Later/locales/fi.po index b6f1808cf..7daf13c78 100644 --- a/plugins/Later/locales/fi.po +++ b/plugins/Later/locales/fi.po @@ -1,13 +1,13 @@ # Later plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-08-10 11:28+CEST\n" "PO-Revision-Date: 2011-08-10 14:41+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Limiter/locales/fi.po b/plugins/Limiter/locales/fi.po index 844447f63..aef1454e1 100644 --- a/plugins/Limiter/locales/fi.po +++ b/plugins/Limiter/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-06-26 20:28+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Math/locales/fi.po b/plugins/Math/locales/fi.po index 85821e4af..edebd04fb 100644 --- a/plugins/Math/locales/fi.po +++ b/plugins/Math/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-06-27 14:08+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/MessageParser/locales/fi.po b/plugins/MessageParser/locales/fi.po index 4e28cf37a..92f19aeab 100644 --- a/plugins/MessageParser/locales/fi.po +++ b/plugins/MessageParser/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-06-28 19:39+CEST\n" "PO-Revision-Date: 2011-07-04 00:21+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Misc/locales/fi.po b/plugins/Misc/locales/fi.po index 59e4f5e39..e22e17525 100644 --- a/plugins/Misc/locales/fi.po +++ b/plugins/Misc/locales/fi.po @@ -1,13 +1,13 @@ # Misc plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011, 2012. +# Mikaela Suomalainen , 2011, 2012. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2012-07-30 11:30+CEST\n" "PO-Revision-Date: 2012-08-04 15:29+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: Finnish <>\n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/MoobotFactoids/locales/fi.po b/plugins/MoobotFactoids/locales/fi.po index 80c00f724..60450c826 100644 --- a/plugins/MoobotFactoids/locales/fi.po +++ b/plugins/MoobotFactoids/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-07-23 13:53+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Network/locales/fi.po b/plugins/Network/locales/fi.po index bafaac55b..92e5da6a0 100644 --- a/plugins/Network/locales/fi.po +++ b/plugins/Network/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011, 2012. +# Mikaela Suomalainen , 2011, 2012. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2012-07-04 19:47+CEST\n" "PO-Revision-Date: 2012-08-04 15:36+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: Finnish <>\n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/News/locales/fi.po b/plugins/News/locales/fi.po index 492fbd174..2f9beda48 100644 --- a/plugins/News/locales/fi.po +++ b/plugins/News/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-07-23 18:00+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/NickAuth/locales/fi.po b/plugins/NickAuth/locales/fi.po index 9fe2258af..eb31ba09c 100644 --- a/plugins/NickAuth/locales/fi.po +++ b/plugins/NickAuth/locales/fi.po @@ -1,13 +1,13 @@ # NickAuth plugin in Limnoria. # Copyright (C) 2012 Limnoria -# Mika Suomalainen , 2012. +# Mikaela Suomalainen , 2012. # msgid "" msgstr "" "Project-Id-Version: NickAuth plugin in Limnoria\n" "POT-Creation-Date: 2012-11-04 11:10+EET\n" "PO-Revision-Date: 2012-11-04 11:28+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: suomi <>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/NickCapture/locales/fi.po b/plugins/NickCapture/locales/fi.po index 828f51631..56a2b5faa 100644 --- a/plugins/NickCapture/locales/fi.po +++ b/plugins/NickCapture/locales/fi.po @@ -1,13 +1,13 @@ # NickCapture plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-08-10 15:06+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Nickometer/locales/fi.po b/plugins/Nickometer/locales/fi.po index 9851cfe75..2401f5af3 100644 --- a/plugins/Nickometer/locales/fi.po +++ b/plugins/Nickometer/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-07-23 21:26+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Note/locales/fi.po b/plugins/Note/locales/fi.po index eb635bf85..40a45cabf 100644 --- a/plugins/Note/locales/fi.po +++ b/plugins/Note/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-07-23 21:45+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Owner/locales/fi.po b/plugins/Owner/locales/fi.po index 5f9afb404..494c2ab36 100755 --- a/plugins/Owner/locales/fi.po +++ b/plugins/Owner/locales/fi.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2012-03-11 20:58+UTC\n" "PO-Revision-Date: 2012-03-15 08:28+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Plugin/locales/fi.po b/plugins/Plugin/locales/fi.po index 4bb0e10aa..610611273 100755 --- a/plugins/Plugin/locales/fi.po +++ b/plugins/Plugin/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-07-24 17:55+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/PluginDownloader/locales/fi.po b/plugins/PluginDownloader/locales/fi.po index 3df0ac6e7..1fdd74e6e 100644 --- a/plugins/PluginDownloader/locales/fi.po +++ b/plugins/PluginDownloader/locales/fi.po @@ -1,13 +1,13 @@ # PluginDownloader plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011, 2012. +# Mikaela Suomalainen , 2011, 2012. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2012-07-29 11:54+CEST\n" "PO-Revision-Date: 2012-08-04 15:22+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: Finnish <>\n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Praise/locales/fi.po b/plugins/Praise/locales/fi.po index 55843a095..3b73e3fab 100644 --- a/plugins/Praise/locales/fi.po +++ b/plugins/Praise/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-07-24 15:36+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Protector/locales/fi.po b/plugins/Protector/locales/fi.po index dc9d2c663..c49226b11 100644 --- a/plugins/Protector/locales/fi.po +++ b/plugins/Protector/locales/fi.po @@ -1,12 +1,12 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-07-24 15:44+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Quote/locales/fi.po b/plugins/Quote/locales/fi.po index fa6855f65..01a4c267f 100644 --- a/plugins/Quote/locales/fi.po +++ b/plugins/Quote/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-07-24 16:04+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/QuoteGrabs/locales/fi.po b/plugins/QuoteGrabs/locales/fi.po index cdb869455..6620da09a 100755 --- a/plugins/QuoteGrabs/locales/fi.po +++ b/plugins/QuoteGrabs/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-07-29 19:38+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/RSS/locales/fi.po b/plugins/RSS/locales/fi.po index ef76226d6..8028fc789 100755 --- a/plugins/RSS/locales/fi.po +++ b/plugins/RSS/locales/fi.po @@ -1,13 +1,13 @@ # RSS plugin in Limnoria. # Copyright (C) Limnoria 2011 -# Mika Suomalainen , 2011, 2012. +# Mikaela Suomalainen , 2011, 2012. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2012-07-31 19:07+UTC\n" "PO-Revision-Date: 2012-08-04 15:07+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: Finnish <>\n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Relay/locales/fi.po b/plugins/Relay/locales/fi.po index 5628d4793..b11b3209d 100644 --- a/plugins/Relay/locales/fi.po +++ b/plugins/Relay/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-07-30 17:05+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Reply/locales/fi.po b/plugins/Reply/locales/fi.po index 8fd7ebdf8..1746d58be 100644 --- a/plugins/Reply/locales/fi.po +++ b/plugins/Reply/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-08-10 11:27+CEST\n" "PO-Revision-Date: 2011-08-10 13:06+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Scheduler/locales/fi.po b/plugins/Scheduler/locales/fi.po index 5cc7bd154..b3b88911c 100644 --- a/plugins/Scheduler/locales/fi.po +++ b/plugins/Scheduler/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-08-07 20:44+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Seen/locales/fi.po b/plugins/Seen/locales/fi.po index 0017841d2..93ab6f0b9 100644 --- a/plugins/Seen/locales/fi.po +++ b/plugins/Seen/locales/fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2012-03-11 20:58+UTC\n" "PO-Revision-Date: 2012-03-15 08:21+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Services/locales/fi.po b/plugins/Services/locales/fi.po index 975ff3874..9dfa2a5b1 100644 --- a/plugins/Services/locales/fi.po +++ b/plugins/Services/locales/fi.po @@ -1,13 +1,13 @@ # Services plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-08-13 23:02+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/ShrinkUrl/locales/fi.po b/plugins/ShrinkUrl/locales/fi.po index eb3b9661c..8caae4fcd 100644 --- a/plugins/ShrinkUrl/locales/fi.po +++ b/plugins/ShrinkUrl/locales/fi.po @@ -1,13 +1,13 @@ # ShrinkUrl plugin in Limnoria. # Copyright (C) 2011, 2012 Limnoria -# Mika Suomalainen , 2011, 2012. +# Mikaela Suomalainen , 2011, 2012. # msgid "" msgstr "" "Project-Id-Version: Limnoria\n" "POT-Creation-Date: 2012-10-07 18:31+EEST\n" "PO-Revision-Date: 2012-10-07 18:33+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: suomi <>\n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Status/locales/fi.po b/plugins/Status/locales/fi.po index 12cfc1d8e..4333c0bb5 100644 --- a/plugins/Status/locales/fi.po +++ b/plugins/Status/locales/fi.po @@ -1,13 +1,13 @@ # Status plugin in Limnoria # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2012-03-11 20:58+UTC\n" "PO-Revision-Date: 2012-03-15 08:48+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/String/locales/fi.po b/plugins/String/locales/fi.po index 71f592973..528771d92 100644 --- a/plugins/String/locales/fi.po +++ b/plugins/String/locales/fi.po @@ -1,13 +1,13 @@ # String plugin in Limnoria # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-10-18 17:56+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Success/locales/fi.po b/plugins/Success/locales/fi.po index 4e18f870d..525c0d11e 100644 --- a/plugins/Success/locales/fi.po +++ b/plugins/Success/locales/fi.po @@ -1,13 +1,13 @@ # Success plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-10-25 15:18+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Time/locales/fi.po b/plugins/Time/locales/fi.po index 05b5758f8..50e867ff6 100644 --- a/plugins/Time/locales/fi.po +++ b/plugins/Time/locales/fi.po @@ -1,13 +1,13 @@ # Time plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2012-03-11 20:58+UTC\n" "PO-Revision-Date: 2012-03-15 08:22+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Todo/locales/fi.po b/plugins/Todo/locales/fi.po index 815db16a8..7139bdf32 100644 --- a/plugins/Todo/locales/fi.po +++ b/plugins/Todo/locales/fi.po @@ -1,13 +1,13 @@ # Todo plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-08-10 11:28+CEST\n" "PO-Revision-Date: 2011-10-26 10:32+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Topic/locales/fi.po b/plugins/Topic/locales/fi.po index 916f1484d..ab5c1338c 100644 --- a/plugins/Topic/locales/fi.po +++ b/plugins/Topic/locales/fi.po @@ -1,14 +1,14 @@ # Topic plugin in Limnoria. # Copyright (C) 2011 -# FIRST AUTHOR , 2011. -# Mika Suomalainen , 2012. +# FIRST AUTHOR , 2011. +# Mikaela Suomalainen , 2012. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2012-07-29 11:54+CEST\n" "PO-Revision-Date: 2012-08-04 15:43+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: Finnish <>\n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/URL/locales/fi.po b/plugins/URL/locales/fi.po index d7a51b0f0..25c3e933c 100644 --- a/plugins/URL/locales/fi.po +++ b/plugins/URL/locales/fi.po @@ -1,13 +1,13 @@ # URL plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-08-10 11:27+CEST\n" "PO-Revision-Date: 2011-12-20 16:33+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Unix/locales/fi.po b/plugins/Unix/locales/fi.po index fc859fd40..b6ce9938a 100644 --- a/plugins/Unix/locales/fi.po +++ b/plugins/Unix/locales/fi.po @@ -1,13 +1,13 @@ # Unix plugin in Limnoria # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2012-04-15 18:47+EEST\n" "PO-Revision-Date: 2012-04-15 18:54+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/User/locales/fi.po b/plugins/User/locales/fi.po index 03cba91b9..4ccf0af00 100644 --- a/plugins/User/locales/fi.po +++ b/plugins/User/locales/fi.po @@ -1,13 +1,13 @@ # User plugin in Limnoria. # Copyright (C) 2011, 2012 Limnoria -# Mika Suomalainen , 2011, 2012. +# Mikaela Suomalainen , 2011, 2012. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2012-10-30 17:37+EET\n" "PO-Revision-Date: 2012-10-30 17:40+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: suomi <>\n" "Language: \n" "MIME-Version: 1.0\n" diff --git a/plugins/Utilities/locales/fi.po b/plugins/Utilities/locales/fi.po index b8cb7b257..aed6bd1e8 100644 --- a/plugins/Utilities/locales/fi.po +++ b/plugins/Utilities/locales/fi.po @@ -1,13 +1,13 @@ # Utilities plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2011-02-26 09:49+CET\n" "PO-Revision-Date: 2011-12-21 20:56+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/plugins/Web/locales/fi.po b/plugins/Web/locales/fi.po index c45b75273..4c9bf93f1 100644 --- a/plugins/Web/locales/fi.po +++ b/plugins/Web/locales/fi.po @@ -1,13 +1,13 @@ # Web plugin in Limnoria. # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011. +# Mikaela Suomalainen , 2011. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2012-02-15 23:19+CET\n" "PO-Revision-Date: 2012-03-15 08:50+0200\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" From 41921b6904d30e2cc050138f94f45d0bd60714fe Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 12:06:29 +0200 Subject: [PATCH 08/54] fix previous commit I forgot core. And now to real translation. --- locales/fi.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/locales/fi.po b/locales/fi.po index 0dfc9326a..1caf8b4f1 100644 --- a/locales/fi.po +++ b/locales/fi.po @@ -1,13 +1,13 @@ # Limnoria # Copyright (C) 2011 Limnoria -# Mika Suomalainen , 2011, 2012. +# Mikaela Suomalainen , 2011, 2012. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2012-04-17 12:51+EEST\n" "PO-Revision-Date: 2012-04-17 13:40+0300\n" -"Last-Translator: Mika Suomalainen \n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: Finnish <>\n" "Language: fi\n" "MIME-Version: 1.0\n" From 0d62257d79cc2ff563628484ef3329de1a7293d3 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 12:22:54 +0200 Subject: [PATCH 09/54] update messages.pot files && Unix: update l10n-fi. --- messages.pot | 17 +++ plugins/Admin/messages.pot | 4 +- plugins/Aka/messages.pot | 51 +++---- plugins/Alias/messages.pot | 2 +- plugins/Anonymous/messages.pot | 2 +- plugins/AutoMode/messages.pot | 2 +- plugins/BadWords/messages.pot | 2 +- plugins/Channel/messages.pot | 98 ++++++------- plugins/ChannelLogger/messages.pot | 2 +- plugins/ChannelStats/messages.pot | 4 +- plugins/Conditional/messages.pot | 2 +- plugins/Config/messages.pot | 2 +- plugins/Ctcp/messages.pot | 14 +- plugins/Dict/messages.pot | 2 +- plugins/Dunno/messages.pot | 2 +- plugins/Factoids/messages.pot | 2 +- plugins/Filter/messages.pot | 2 +- plugins/Format/messages.pot | 2 +- plugins/Games/messages.pot | 2 +- plugins/Internet/messages.pot | 2 +- plugins/Lart/messages.pot | 2 +- plugins/Later/messages.pot | 2 +- plugins/Limiter/messages.pot | 2 +- plugins/Math/messages.pot | 2 +- plugins/MessageParser/messages.pot | 2 +- plugins/Misc/messages.pot | 84 ++++++------ plugins/MoobotFactoids/messages.pot | 2 +- plugins/Network/messages.pot | 85 ++++++------ plugins/News/messages.pot | 2 +- plugins/NickAuth/messages.pot | 2 +- plugins/NickCapture/messages.pot | 2 +- plugins/Nickometer/messages.pot | 2 +- plugins/Note/messages.pot | 2 +- plugins/Owner/messages.pot | 2 +- plugins/Plugin/messages.pot | 73 +++++----- plugins/PluginDownloader/messages.pot | 22 +-- plugins/Praise/messages.pot | 2 +- plugins/Protector/messages.pot | 2 +- plugins/Quote/messages.pot | 2 +- plugins/QuoteGrabs/messages.pot | 2 +- plugins/RSS/messages.pot | 28 ++-- plugins/Relay/messages.pot | 2 +- plugins/Reply/messages.pot | 2 +- plugins/Scheduler/messages.pot | 2 +- plugins/Seen/messages.pot | 2 +- plugins/Services/messages.pot | 24 ++-- plugins/ShrinkUrl/messages.pot | 18 +-- plugins/Status/messages.pot | 2 +- plugins/String/messages.pot | 2 +- plugins/Success/messages.pot | 2 +- plugins/Time/messages.pot | 2 +- plugins/Todo/messages.pot | 2 +- plugins/Topic/messages.pot | 2 +- plugins/URL/messages.pot | 2 +- plugins/Unix/locales/fi.po | 190 +++++++++++++++++--------- plugins/Unix/messages.pot | 41 ++++-- plugins/User/messages.pot | 116 ++++++++-------- plugins/Utilities/messages.pot | 15 +- plugins/Web/messages.pot | 2 +- plugins/messages.pot | 17 +++ 60 files changed, 554 insertions(+), 431 deletions(-) create mode 100644 messages.pot create mode 100644 plugins/messages.pot diff --git a/messages.pot b/messages.pot new file mode 100644 index 000000000..ce95d021f --- /dev/null +++ b/messages.pot @@ -0,0 +1,17 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2014-03-22 12:04+EET\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING\n" +"Generated-By: pygettext.py 1.5\n" + + diff --git a/plugins/Admin/messages.pot b/plugins/Admin/messages.pot index 2639d3ec9..79d0a20e8 100644 --- a/plugins/Admin/messages.pot +++ b/plugins/Admin/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -185,7 +185,7 @@ msgstr "" msgid "I'm not currently globally ignoring anyone." msgstr "" -#: plugin.py:360 plugin.py:371 +#: plugin.py:360 #, docstring msgid "" "takes no arguments\n" diff --git a/plugins/Aka/messages.pot b/plugins/Aka/messages.pot index fd0645505..739e857bf 100644 --- a/plugins/Aka/messages.pot +++ b/plugins/Aka/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,73 +22,74 @@ msgid "" " on long commands." msgstr "" -#: plugin.py:129 plugin.py:368 +#: plugin.py:140 plugin.py:264 plugin.py:505 msgid "This Aka already exists." msgstr "" -#: plugin.py:156 plugin.py:173 plugin.py:190 +#: plugin.py:169 plugin.py:181 plugin.py:195 plugin.py:291 plugin.py:308 +#: plugin.py:325 msgid "This Aka does not exist" msgstr "" -#: plugin.py:158 +#: plugin.py:293 msgid "This Aka is already locked." msgstr "" -#: plugin.py:175 +#: plugin.py:310 msgid "This Aka is already unlocked." msgstr "" -#: plugin.py:235 +#: plugin.py:372 #, docstring msgid "" "Add the help for \"@plugin help Aka\" here\n" " This should describe *how* to use this plugin." msgstr "" -#: plugin.py:342 +#: plugin.py:479 msgid "You've attempted more nesting than is currently allowed on this bot." msgstr "" -#: plugin.py:346 +#: plugin.py:483 msgid " at least" msgstr "" -#: plugin.py:355 +#: plugin.py:492 msgid "Locked by %s at %s" msgstr "" -#: plugin.py:358 +#: plugin.py:495 msgid "" "\n" "\n" "Alias for %q.%s" msgstr "" -#: plugin.py:359 +#: plugin.py:496 msgid "argument" msgstr "" -#: plugin.py:365 +#: plugin.py:502 msgid "You can't overwrite commands in this plugin." msgstr "" -#: plugin.py:370 +#: plugin.py:507 msgid "This Aka has too many spaces in its name." msgstr "" -#: plugin.py:375 +#: plugin.py:512 msgid "Can't mix $* and optional args (@1, etc.)" msgstr "" -#: plugin.py:377 +#: plugin.py:514 msgid "There can be only one $* in an alias." msgstr "" -#: plugin.py:384 +#: plugin.py:521 msgid "This Aka is locked." msgstr "" -#: plugin.py:388 +#: plugin.py:525 #, docstring msgid "" "[--channel <#channel>] \n" @@ -103,11 +104,11 @@ msgid "" " " msgstr "" -#: plugin.py:402 plugin.py:428 plugin.py:460 plugin.py:483 +#: plugin.py:539 plugin.py:565 plugin.py:597 plugin.py:620 msgid "%r is not a valid channel." msgstr "" -#: plugin.py:420 +#: plugin.py:557 #, docstring msgid "" "[--channel <#channel>] \n" @@ -116,14 +117,14 @@ msgid "" " " msgstr "" -#: plugin.py:442 +#: plugin.py:579 #, docstring msgid "" "Check if the user has any of the required capabilities to manage\n" " the regexp database." msgstr "" -#: plugin.py:452 +#: plugin.py:589 #, docstring msgid "" "[--channel <#channel>] \n" @@ -132,7 +133,7 @@ msgid "" " " msgstr "" -#: plugin.py:475 +#: plugin.py:612 #, docstring msgid "" "[--channel <#channel>] \n" @@ -141,7 +142,7 @@ msgid "" " " msgstr "" -#: plugin.py:498 +#: plugin.py:635 #, docstring msgid "" "takes no arguments\n" @@ -149,11 +150,11 @@ msgid "" " Imports the Alias database into Aka's, and clean the former." msgstr "" -#: plugin.py:503 +#: plugin.py:640 msgid "Alias plugin is not loaded." msgstr "" -#: plugin.py:513 +#: plugin.py:650 msgid "Error occured when importing the %n: %L" msgstr "" diff --git a/plugins/Alias/messages.pot b/plugins/Alias/messages.pot index 2ccecdc13..9728d4608 100644 --- a/plugins/Alias/messages.pot +++ b/plugins/Alias/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Anonymous/messages.pot b/plugins/Anonymous/messages.pot index 92cf48d4f..3e7680d3f 100644 --- a/plugins/Anonymous/messages.pot +++ b/plugins/Anonymous/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AutoMode/messages.pot b/plugins/AutoMode/messages.pot index 314525570..24af7a136 100644 --- a/plugins/AutoMode/messages.pot +++ b/plugins/AutoMode/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BadWords/messages.pot b/plugins/BadWords/messages.pot index 5b16ae562..a730fbeb8 100644 --- a/plugins/BadWords/messages.pot +++ b/plugins/BadWords/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Channel/messages.pot b/plugins/Channel/messages.pot index 6488d7ca2..025b7a5b8 100644 --- a/plugins/Channel/messages.pot +++ b/plugins/Channel/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -269,7 +269,7 @@ msgid "" " " msgstr "" -#: plugin.py:336 +#: plugin.py:336 plugin.py:562 msgid "ban someone" msgstr "" @@ -289,7 +289,7 @@ msgstr "" msgid "%s has %s too, you can't ban him/her/it." msgstr "" -#: plugin.py:415 +#: plugin.py:414 #, docstring msgid "" "[] []\n" @@ -302,19 +302,19 @@ msgid "" " " msgstr "" -#: plugin.py:435 +#: plugin.py:434 msgid "All bans on %s matching %s have been removed." msgstr "" -#: plugin.py:439 +#: plugin.py:438 msgid "No bans matching %s were found on %s." msgstr "" -#: plugin.py:442 +#: plugin.py:441 msgid "unban someone" msgstr "" -#: plugin.py:449 +#: plugin.py:448 #, docstring msgid "" "[]\n" @@ -323,11 +323,11 @@ msgid "" " If is not given, it defaults to the current channel." msgstr "" -#: plugin.py:453 +#: plugin.py:452 msgid "No bans." msgstr "" -#: plugin.py:458 +#: plugin.py:457 #, docstring msgid "" "[] \n" @@ -338,19 +338,19 @@ msgid "" " " msgstr "" -#: plugin.py:467 +#: plugin.py:466 msgid "invite someone" msgstr "" -#: plugin.py:486 +#: plugin.py:485 msgid "%s is already in %s." msgstr "" -#: plugin.py:493 +#: plugin.py:492 msgid "There is no %s on this network." msgstr "" -#: plugin.py:505 +#: plugin.py:504 #, docstring msgid "" "[]\n" @@ -362,7 +362,7 @@ msgid "" " " msgstr "" -#: plugin.py:520 +#: plugin.py:519 #, docstring msgid "" "[]\n" @@ -374,7 +374,7 @@ msgid "" " " msgstr "" -#: plugin.py:535 +#: plugin.py:534 #, docstring msgid "" "takes no arguments\n" @@ -383,15 +383,15 @@ msgid "" " " msgstr "" -#: plugin.py:550 +#: plugin.py:549 msgid "I'm currently lobotomized in %L." msgstr "" -#: plugin.py:553 +#: plugin.py:552 msgid "I'm not currently lobotomized in any channels that you're in." msgstr "" -#: plugin.py:560 +#: plugin.py:566 #, docstring msgid "" "[] []\n" @@ -408,7 +408,7 @@ msgid "" " " msgstr "" -#: plugin.py:580 +#: plugin.py:586 #, docstring msgid "" "[] \n" @@ -419,11 +419,11 @@ msgid "" " " msgstr "" -#: plugin.py:592 +#: plugin.py:598 msgid "There are no persistent bans for that hostmask." msgstr "" -#: plugin.py:597 +#: plugin.py:603 #, docstring msgid "" "[]\n" @@ -433,19 +433,19 @@ msgid "" " " msgstr "" -#: plugin.py:607 +#: plugin.py:613 msgid "%q (expires %t)" msgstr "" -#: plugin.py:610 +#: plugin.py:616 msgid "%q (never expires)" msgstr "" -#: plugin.py:614 +#: plugin.py:620 msgid "There are no persistent bans on %s." msgstr "" -#: plugin.py:621 +#: plugin.py:627 #, docstring msgid "" "[] []\n" @@ -460,7 +460,7 @@ msgid "" " " msgstr "" -#: plugin.py:639 +#: plugin.py:645 #, docstring msgid "" "[] \n" @@ -471,11 +471,11 @@ msgid "" " " msgstr "" -#: plugin.py:651 +#: plugin.py:657 msgid "There are no ignores for that hostmask." msgstr "" -#: plugin.py:656 +#: plugin.py:662 #, docstring msgid "" "[]\n" @@ -486,11 +486,11 @@ msgid "" " " msgstr "" -#: plugin.py:665 +#: plugin.py:671 msgid "I'm not currently ignoring any hostmasks in %q" msgstr "" -#: plugin.py:676 +#: plugin.py:682 #, docstring msgid "" "[] [ ...]\n" @@ -502,7 +502,7 @@ msgid "" " " msgstr "" -#: plugin.py:692 +#: plugin.py:698 #, docstring msgid "" "[] [ ...]\n" @@ -514,11 +514,11 @@ msgid "" " " msgstr "" -#: plugin.py:711 +#: plugin.py:717 msgid "That user didn't have the %L %s." msgstr "" -#: plugin.py:720 +#: plugin.py:726 #, docstring msgid "" "[] {True|False}\n" @@ -530,7 +530,7 @@ msgid "" " " msgstr "" -#: plugin.py:738 +#: plugin.py:744 #, docstring msgid "" "[] [ ...]\n" @@ -541,7 +541,7 @@ msgid "" " " msgstr "" -#: plugin.py:753 +#: plugin.py:759 #, docstring msgid "" "[] [ ...]\n" @@ -553,15 +553,15 @@ msgid "" " " msgstr "" -#: plugin.py:769 +#: plugin.py:775 msgid "capability" msgstr "" -#: plugin.py:772 +#: plugin.py:778 msgid "I do not know about the %L %s." msgstr "" -#: plugin.py:779 +#: plugin.py:785 #, docstring msgid "" "[]\n" @@ -571,7 +571,7 @@ msgid "" " " msgstr "" -#: plugin.py:791 +#: plugin.py:797 #, docstring msgid "" "[] [] []\n" @@ -584,15 +584,15 @@ msgid "" " " msgstr "" -#: plugin.py:807 plugin.py:846 +#: plugin.py:813 plugin.py:852 msgid "The %s plugin does not have a command called %s." msgstr "" -#: plugin.py:814 plugin.py:853 +#: plugin.py:820 plugin.py:859 msgid "No plugin or command named %s could be found." msgstr "" -#: plugin.py:830 +#: plugin.py:836 #, docstring msgid "" "[] [] []\n" @@ -605,11 +605,11 @@ msgid "" " " msgstr "" -#: plugin.py:867 +#: plugin.py:873 msgid "%s was not disabled." msgstr "" -#: plugin.py:876 +#: plugin.py:882 #, docstring msgid "" "[] [--count]\n" @@ -620,26 +620,26 @@ msgid "" " " msgstr "" -#: plugin.py:888 +#: plugin.py:894 msgid "You don't have access to that information." msgstr "" -#: plugin.py:902 +#: plugin.py:908 #, docstring msgid "" "Internal message for notifying all the #channel,ops in a channel of\n" " a given situation." msgstr "" -#: plugin.py:905 +#: plugin.py:911 msgid "Alert to all %s ops: %s" msgstr "" -#: plugin.py:907 +#: plugin.py:913 msgid " (from %s)" msgstr "" -#: plugin.py:915 +#: plugin.py:921 #, docstring msgid "" "[] \n" diff --git a/plugins/ChannelLogger/messages.pot b/plugins/ChannelLogger/messages.pot index 33b6a98a2..641713395 100644 --- a/plugins/ChannelLogger/messages.pot +++ b/plugins/ChannelLogger/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ChannelStats/messages.pot b/plugins/ChannelStats/messages.pot index 2a6cadd8c..26f77bb84 100644 --- a/plugins/ChannelStats/messages.pot +++ b/plugins/ChannelStats/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 13:46+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -32,7 +32,7 @@ msgstr "" #: config.py:68 msgid "" "Determines what words\n" -" (i.e., pieces of text with no spaces in them ) are considered 'frowns' for\n" +" (i.e., pieces of text with no spaces in them) are considered 'frowns' for\n" " the purposes of stats-keeping." msgstr "" diff --git a/plugins/Conditional/messages.pot b/plugins/Conditional/messages.pot index 664b478b7..1d53827fc 100644 --- a/plugins/Conditional/messages.pot +++ b/plugins/Conditional/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Config/messages.pot b/plugins/Config/messages.pot index ac15f337a..f673fb1e8 100644 --- a/plugins/Config/messages.pot +++ b/plugins/Config/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Ctcp/messages.pot b/plugins/Ctcp/messages.pot index 3e4d42eeb..ee3aa5852 100644 --- a/plugins/Ctcp/messages.pot +++ b/plugins/Ctcp/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,27 +17,27 @@ msgstr "" #: plugin.py:81 #, docstring -msgid "\001PING ?(.*)\001" +msgid "^\001PING(?: (.+))?\001$" msgstr "" #: plugin.py:90 #, docstring -msgid "\001VERSION\001" +msgid "^\001VERSION\001$" msgstr "" #: plugin.py:95 #, docstring -msgid "\001USERINFO\001" +msgid "^\001USERINFO\001$" msgstr "" #: plugin.py:100 #, docstring -msgid "\001TIME\001" +msgid "^\001TIME\001$" msgstr "" #: plugin.py:105 #, docstring -msgid "\001FINGER\001" +msgid "^\001FINGER\001$" msgstr "" #: plugin.py:108 @@ -46,7 +46,7 @@ msgstr "" #: plugin.py:111 #, docstring -msgid "\001SOURCE\001" +msgid "^\001SOURCE\001$" msgstr "" #: plugin.py:127 diff --git a/plugins/Dict/messages.pot b/plugins/Dict/messages.pot index 51b834e6b..999efdce7 100644 --- a/plugins/Dict/messages.pot +++ b/plugins/Dict/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Dunno/messages.pot b/plugins/Dunno/messages.pot index d9fe54322..5be8fddeb 100644 --- a/plugins/Dunno/messages.pot +++ b/plugins/Dunno/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Factoids/messages.pot b/plugins/Factoids/messages.pot index 3f9566df4..daa569c34 100644 --- a/plugins/Factoids/messages.pot +++ b/plugins/Factoids/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Filter/messages.pot b/plugins/Filter/messages.pot index bea98fdfb..f55ebbfff 100644 --- a/plugins/Filter/messages.pot +++ b/plugins/Filter/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Format/messages.pot b/plugins/Format/messages.pot index 62e240eda..c939fa1f3 100644 --- a/plugins/Format/messages.pot +++ b/plugins/Format/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Games/messages.pot b/plugins/Games/messages.pot index b9202b956..746528266 100644 --- a/plugins/Games/messages.pot +++ b/plugins/Games/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Internet/messages.pot b/plugins/Internet/messages.pot index 711ec594f..0b6c7af48 100644 --- a/plugins/Internet/messages.pot +++ b/plugins/Internet/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Lart/messages.pot b/plugins/Lart/messages.pot index 3b11c1f31..a6d14d2d3 100644 --- a/plugins/Lart/messages.pot +++ b/plugins/Lart/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Later/messages.pot b/plugins/Later/messages.pot index 0a7f35176..f274426bd 100644 --- a/plugins/Later/messages.pot +++ b/plugins/Later/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Limiter/messages.pot b/plugins/Limiter/messages.pot index 58e302946..aaaa0feb6 100644 --- a/plugins/Limiter/messages.pot +++ b/plugins/Limiter/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Math/messages.pot b/plugins/Math/messages.pot index 292e0690c..cb45fc6a6 100644 --- a/plugins/Math/messages.pot +++ b/plugins/Math/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/MessageParser/messages.pot b/plugins/MessageParser/messages.pot index 0766d3626..160075a5b 100644 --- a/plugins/MessageParser/messages.pot +++ b/plugins/MessageParser/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Misc/messages.pot b/plugins/Misc/messages.pot index fc0aa99d2..fc564c2db 100644 --- a/plugins/Misc/messages.pot +++ b/plugins/Misc/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -59,19 +59,19 @@ msgid "" " command" msgstr "" -#: plugin.py:112 +#: plugin.py:115 msgid "You've given me %s invalid commands within the last %i seconds; I'm now ignoring you for %s." msgstr "" -#: plugin.py:154 +#: plugin.py:156 msgid "The %q plugin is loaded, but there is no command named %q in it. Try \"list %s\" to see the commands in the %q plugin." msgstr "" -#: plugin.py:160 plugin.py:163 +#: plugin.py:162 plugin.py:165 msgid "command" msgstr "" -#: plugin.py:180 +#: plugin.py:182 #, docstring msgid "" "[--private] [--unloaded] []\n" @@ -83,23 +83,23 @@ msgid "" " " msgstr "" -#: plugin.py:201 +#: plugin.py:203 msgid "--private and --unloaded are uncompatible options." msgstr "" -#: plugin.py:232 +#: plugin.py:234 msgid "There are no private plugins." msgstr "" -#: plugin.py:234 +#: plugin.py:236 msgid "There are no public plugins." msgstr "" -#: plugin.py:241 +#: plugin.py:243 msgid "That plugin exists, but has no commands. This probably means that it has some configuration variables that can be changed in order to modify its behavior. Try \"config list supybot.plugins.%s\" to see what configuration variables it has." msgstr "" -#: plugin.py:253 +#: plugin.py:255 #, docstring msgid "" "\n" @@ -109,11 +109,11 @@ msgid "" " " msgstr "" -#: plugin.py:272 +#: plugin.py:274 msgid "No appropriate commands were found." msgstr "" -#: plugin.py:277 +#: plugin.py:279 #, docstring msgid "" "[] []\n" @@ -126,15 +126,15 @@ msgid "" " " msgstr "" -#: plugin.py:290 +#: plugin.py:292 msgid "That command exists in the %L plugins. Please specify exactly which plugin command you want help with." msgstr "" -#: plugin.py:297 +#: plugin.py:299 msgid "There is no command %q." msgstr "" -#: plugin.py:303 +#: plugin.py:305 #, docstring msgid "" "takes no arguments\n" @@ -143,23 +143,23 @@ msgid "" " " msgstr "" -#: plugin.py:320 +#: plugin.py:322 msgid "The newest versions available online are %s." msgstr "" -#: plugin.py:321 +#: plugin.py:323 msgid "%s (in %s)" msgstr "" -#: plugin.py:325 +#: plugin.py:327 msgid "I couldn't fetch the newest version from the Limnoria repository." msgstr "" -#: plugin.py:327 +#: plugin.py:329 msgid "The current (running) version of this Supybot is %s, running on Python %s. %s" msgstr "" -#: plugin.py:335 +#: plugin.py:337 #, docstring msgid "" "takes no arguments\n" @@ -168,11 +168,11 @@ msgid "" " " msgstr "" -#: plugin.py:339 +#: plugin.py:341 msgid "My source is at https://github.com/ProgVal/Limnoria" msgstr "" -#: plugin.py:344 +#: plugin.py:346 #, docstring msgid "" "[]\n" @@ -184,31 +184,31 @@ msgid "" " " msgstr "" -#: plugin.py:358 +#: plugin.py:360 msgid "%s has no public mores." msgstr "" -#: plugin.py:361 +#: plugin.py:363 msgid "Sorry, I can't find any mores for %s" msgstr "" -#: plugin.py:369 +#: plugin.py:371 msgid "1 more message" msgstr "" -#: plugin.py:371 +#: plugin.py:373 msgid "%i more messages" msgstr "" -#: plugin.py:375 +#: plugin.py:377 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." msgstr "" -#: plugin.py:379 +#: plugin.py:381 msgid "That's all, there is no more." msgstr "" -#: plugin.py:389 +#: plugin.py:391 #, docstring msgid "" "[--{from,in,on,with,without,regexp} ] [--nolimit]\n" @@ -223,31 +223,31 @@ msgid "" " " msgstr "" -#: plugin.py:484 +#: plugin.py:486 msgid "The regular expression timed out." msgstr "" -#: plugin.py:497 +#: plugin.py:499 msgid "I couldn't find a message matching that criteria in my history of %s messages." msgstr "" -#: plugin.py:516 +#: plugin.py:518 msgid "Hey, just give the command. No need for the tell." msgstr "" -#: plugin.py:521 +#: plugin.py:523 msgid "You just told me, why should I tell myself?" msgstr "" -#: plugin.py:526 +#: plugin.py:528 msgid "I haven't seen %s, I'll let you do the telling." msgstr "" -#: plugin.py:531 +#: plugin.py:533 msgid "%s wants me to tell you: %s" msgstr "" -#: plugin.py:537 +#: plugin.py:539 #, docstring msgid "" " \n" @@ -257,7 +257,7 @@ msgid "" " " msgstr "" -#: plugin.py:547 +#: plugin.py:549 #, docstring msgid "" " \n" @@ -267,7 +267,7 @@ msgid "" " " msgstr "" -#: plugin.py:557 +#: plugin.py:559 #, docstring msgid "" "takes no arguments\n" @@ -276,11 +276,11 @@ msgid "" " " msgstr "" -#: plugin.py:561 +#: plugin.py:563 msgid "pong" msgstr "" -#: plugin.py:565 +#: plugin.py:567 #, docstring msgid "" "[] [--match-case]\n" @@ -290,11 +290,11 @@ msgid "" " defaults to the current channel." msgstr "" -#: plugin.py:571 +#: plugin.py:573 msgid "I'm not even in %s." msgstr "" -#: plugin.py:583 +#: plugin.py:585 msgid "No such nick." msgstr "" diff --git a/plugins/MoobotFactoids/messages.pot b/plugins/MoobotFactoids/messages.pot index 9fdc1b762..03d513261 100644 --- a/plugins/MoobotFactoids/messages.pot +++ b/plugins/MoobotFactoids/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Network/messages.pot b/plugins/Network/messages.pot index 43fb0466b..9b712e1f9 100644 --- a/plugins/Network/messages.pot +++ b/plugins/Network/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -15,7 +15,7 @@ msgstr "" "Generated-By: pygettext.py 1.5\n" -#: plugin.py:58 +#: plugin.py:57 #, docstring msgid "" "[--ssl] [] []\n" @@ -28,19 +28,19 @@ msgid "" " " msgstr "" -#: plugin.py:68 +#: plugin.py:67 msgid "I'm already connected to %s." msgstr "" -#: plugin.py:88 +#: plugin.py:87 msgid "A server must be provided if the network is not already registered." msgstr "" -#: plugin.py:96 +#: plugin.py:95 msgid "Connection to %s initiated." msgstr "" -#: plugin.py:103 +#: plugin.py:102 #, docstring msgid "" "[] []\n" @@ -52,11 +52,11 @@ msgid "" " " msgstr "" -#: plugin.py:115 +#: plugin.py:114 msgid "Disconnection to %s initiated." msgstr "" -#: plugin.py:121 +#: plugin.py:120 #, docstring msgid "" "[] []\n" @@ -69,7 +69,7 @@ msgid "" " " msgstr "" -#: plugin.py:138 +#: plugin.py:137 #, docstring msgid "" " [ ...]\n" @@ -78,55 +78,64 @@ msgid "" " " msgstr "" -#: plugin.py:213 -msgid "is an op on %L" -msgstr "" - -#: plugin.py:215 -msgid "is a halfop on %L" -msgstr "" - -#: plugin.py:217 -msgid "is voiced on %L" -msgstr "" - -#: plugin.py:220 -msgid "is also on %L" +#: plugin.py:145 +#, docstring +msgid "" +" ...\n" +" \n" +" Perform (with its associated s) on all networks.\n" +" " msgstr "" #: plugin.py:222 +msgid "is an op on %L" +msgstr "" + +#: plugin.py:224 +msgid "is a halfop on %L" +msgstr "" + +#: plugin.py:226 +msgid "is voiced on %L" +msgstr "" + +#: plugin.py:229 +msgid "is also on %L" +msgstr "" + +#: plugin.py:231 msgid "is on %L" msgstr "" -#: plugin.py:225 +#: plugin.py:234 msgid "isn't on any non-secret channels" msgstr "" -#: plugin.py:234 plugin.py:235 plugin.py:241 +#: plugin.py:243 plugin.py:244 plugin.py:250 msgid "" msgstr "" -#: plugin.py:248 +#: plugin.py:257 msgid " identified" msgstr "" -#: plugin.py:254 +#: plugin.py:263 msgid "%s (%s) has been%s on server %s since %s (idle for %s) and %s.%s" msgstr "" -#: plugin.py:258 +#: plugin.py:267 msgid "%s (%s) has been%s on server %s and disconnect on %s." msgstr "" -#: plugin.py:272 +#: plugin.py:281 msgid "There is no %s on %s." msgstr "" -#: plugin.py:274 +#: plugin.py:283 msgid "There was no %s on %s." msgstr "" -#: plugin.py:282 plugin.py:298 +#: plugin.py:291 plugin.py:307 #, docstring msgid "" "[] \n" @@ -137,7 +146,7 @@ msgid "" " " msgstr "" -#: plugin.py:314 +#: plugin.py:323 #, docstring msgid "" "takes no arguments\n" @@ -146,11 +155,11 @@ msgid "" " " msgstr "" -#: plugin.py:327 +#: plugin.py:336 msgid "%.2f seconds." msgstr "" -#: plugin.py:331 +#: plugin.py:340 #, docstring msgid "" "[]\n" @@ -161,11 +170,11 @@ msgid "" " " msgstr "" -#: plugin.py:337 +#: plugin.py:346 msgid "Latency check (from %s)." msgstr "" -#: plugin.py:345 +#: plugin.py:354 #, docstring msgid "" "[]\n" @@ -176,7 +185,7 @@ msgid "" " " msgstr "" -#: plugin.py:356 +#: plugin.py:365 #, docstring msgid "" "[]\n" @@ -185,7 +194,7 @@ msgid "" " " msgstr "" -#: plugin.py:363 +#: plugin.py:372 msgid "I've been connected to %s for %s." msgstr "" diff --git a/plugins/News/messages.pot b/plugins/News/messages.pot index ad3d575b5..38c55c924 100644 --- a/plugins/News/messages.pot +++ b/plugins/News/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/NickAuth/messages.pot b/plugins/NickAuth/messages.pot index 8f353998c..2ce7e06f6 100644 --- a/plugins/NickAuth/messages.pot +++ b/plugins/NickAuth/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/NickCapture/messages.pot b/plugins/NickCapture/messages.pot index a67ef9732..159d62107 100644 --- a/plugins/NickCapture/messages.pot +++ b/plugins/NickCapture/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Nickometer/messages.pot b/plugins/Nickometer/messages.pot index eb2cb85de..9303467ff 100644 --- a/plugins/Nickometer/messages.pot +++ b/plugins/Nickometer/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Note/messages.pot b/plugins/Note/messages.pot index fb318bb81..e5fbf09fc 100644 --- a/plugins/Note/messages.pot +++ b/plugins/Note/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Owner/messages.pot b/plugins/Owner/messages.pot index 626b94932..cbb3f2721 100644 --- a/plugins/Owner/messages.pot +++ b/plugins/Owner/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Plugin/messages.pot b/plugins/Plugin/messages.pot index d105ee4ce..136cf2760 100644 --- a/plugins/Plugin/messages.pot +++ b/plugins/Plugin/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,15 +41,6 @@ msgstr "" #: plugin.py:62 #, docstring msgid "" -"takes no arguments\n" -"\n" -" Returns a list of the currently loaded plugins.\n" -" " -msgstr "" - -#: plugin.py:73 -#, docstring -msgid "" "\n" "\n" " Returns the name of the plugin that would be used to call .\n" @@ -59,23 +50,23 @@ msgid "" " " msgstr "" -#: plugin.py:91 +#: plugin.py:80 msgid "plugins" msgstr "" -#: plugin.py:93 +#: plugin.py:82 msgid "plugin" msgstr "" -#: plugin.py:94 +#: plugin.py:83 msgid "The %q command is available in the %L %s." msgstr "" -#: plugin.py:97 +#: plugin.py:86 msgid "There is no command %q." msgstr "" -#: plugin.py:113 +#: plugin.py:102 #, docstring msgid "" "\n" @@ -84,7 +75,7 @@ msgid "" " " msgstr "" -#: plugin.py:134 +#: plugin.py:123 #, docstring msgid "" "\n" @@ -94,15 +85,15 @@ msgid "" " " msgstr "" -#: plugin.py:140 +#: plugin.py:129 msgid "That plugin does not seem to be loaded." msgstr "" -#: plugin.py:146 +#: plugin.py:135 msgid "That plugin doesn't have an author that claims it." msgstr "" -#: plugin.py:151 +#: plugin.py:140 #, docstring msgid "" " []\n" @@ -114,7 +105,7 @@ msgid "" " " msgstr "" -#: plugin.py:159 +#: plugin.py:148 #, docstring msgid "" "\n" @@ -123,7 +114,7 @@ msgid "" " " msgstr "" -#: plugin.py:165 +#: plugin.py:154 #, docstring msgid "" "\n" @@ -132,7 +123,7 @@ msgid "" " " msgstr "" -#: plugin.py:172 +#: plugin.py:161 #, docstring msgid "" "\n" @@ -141,7 +132,7 @@ msgid "" " " msgstr "" -#: plugin.py:182 +#: plugin.py:171 #, docstring msgid "" "\n" @@ -150,39 +141,39 @@ msgid "" " " msgstr "" -#: plugin.py:186 +#: plugin.py:175 msgid "The %s plugin" msgstr "" -#: plugin.py:187 +#: plugin.py:176 msgid "has not been claimed by an author" msgstr "" -#: plugin.py:188 +#: plugin.py:177 msgid "and" msgstr "" -#: plugin.py:189 +#: plugin.py:178 msgid "has no contributors listed." msgstr "" -#: plugin.py:194 +#: plugin.py:183 msgid "was written by %s" msgstr "" -#: plugin.py:205 +#: plugin.py:194 msgid "%s %h contributed to it." msgstr "" -#: plugin.py:210 +#: plugin.py:199 msgid "has no additional contributors listed." msgstr "" -#: plugin.py:212 +#: plugin.py:201 msgid "but" msgstr "" -#: plugin.py:215 +#: plugin.py:204 #, docstring msgid "" "\n" @@ -191,39 +182,39 @@ msgid "" " " msgstr "" -#: plugin.py:229 +#: plugin.py:218 msgid "The nick specified (%s) is not a registered contributor." msgstr "" -#: plugin.py:235 +#: plugin.py:224 msgid "The %s plugin does not have '%s' listed as a contributor." msgstr "" -#: plugin.py:243 +#: plugin.py:232 msgid "command" msgstr "" -#: plugin.py:246 +#: plugin.py:235 msgid "the %L %s" msgstr "" -#: plugin.py:248 +#: plugin.py:237 msgid "the %L" msgstr "" -#: plugin.py:251 +#: plugin.py:240 msgid "%s wrote the %s plugin and also contributed %L." msgstr "" -#: plugin.py:254 +#: plugin.py:243 msgid "%s contributed %L to the %s plugin." msgstr "" -#: plugin.py:257 +#: plugin.py:246 msgid "%s wrote the %s plugin" msgstr "" -#: plugin.py:260 +#: plugin.py:249 msgid "%s has no listed contributions for the %s plugin." msgstr "" diff --git a/plugins/PluginDownloader/messages.pot b/plugins/PluginDownloader/messages.pot index a9824fa2d..ecc96df21 100644 --- a/plugins/PluginDownloader/messages.pot +++ b/plugins/PluginDownloader/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -27,7 +27,7 @@ msgstr "" msgid "Plugin successfully installed." msgstr "" -#: plugin.py:299 +#: plugin.py:307 #, docstring msgid "" "This plugin allows you to install unofficial plugins from\n" @@ -37,7 +37,7 @@ msgid "" " just run command \"install \"." msgstr "" -#: plugin.py:309 +#: plugin.py:317 #, docstring msgid "" "[]\n" @@ -47,19 +47,19 @@ msgid "" " repositories." msgstr "" -#: plugin.py:317 plugin.py:328 +#: plugin.py:325 plugin.py:336 msgid ", " msgstr "" -#: plugin.py:319 plugin.py:338 plugin.py:363 +#: plugin.py:327 plugin.py:346 plugin.py:371 msgid "This repository does not exist or is not known by this bot." msgstr "" -#: plugin.py:326 +#: plugin.py:334 msgid "No plugin found in this repository." msgstr "" -#: plugin.py:333 +#: plugin.py:341 #, docstring msgid "" " \n" @@ -67,11 +67,11 @@ msgid "" " Downloads and installs the from the ." msgstr "" -#: plugin.py:343 plugin.py:368 +#: plugin.py:351 plugin.py:376 msgid "This plugin does not exist in this repository." msgstr "" -#: plugin.py:358 +#: plugin.py:366 #, docstring msgid "" " \n" @@ -79,11 +79,11 @@ msgid "" " Displays informations on the in the ." msgstr "" -#: plugin.py:372 +#: plugin.py:380 msgid "No README found for this plugin" msgstr "" -#: plugin.py:375 +#: plugin.py:383 msgid "This plugin has no description." msgstr "" diff --git a/plugins/Praise/messages.pot b/plugins/Praise/messages.pot index c01385481..b55645b01 100644 --- a/plugins/Praise/messages.pot +++ b/plugins/Praise/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Protector/messages.pot b/plugins/Protector/messages.pot index 2e34e17de..b929d19f8 100644 --- a/plugins/Protector/messages.pot +++ b/plugins/Protector/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Quote/messages.pot b/plugins/Quote/messages.pot index f5dad2a7f..1f0d7607f 100644 --- a/plugins/Quote/messages.pot +++ b/plugins/Quote/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/QuoteGrabs/messages.pot b/plugins/QuoteGrabs/messages.pot index 5505c1660..bf9942b23 100644 --- a/plugins/QuoteGrabs/messages.pot +++ b/plugins/QuoteGrabs/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RSS/messages.pot b/plugins/RSS/messages.pot index 7c8c5bdd2..96d634e25 100644 --- a/plugins/RSS/messages.pot +++ b/plugins/RSS/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -130,12 +130,12 @@ msgid "" " command to determine what feeds should be announced in a given channel." msgstr "" -#: plugin.py:325 +#: plugin.py:327 #, docstring msgid "Return feed items, sorted according to sortFeedItems." msgstr "" -#: plugin.py:378 +#: plugin.py:380 #, docstring msgid "" " \n" @@ -145,7 +145,7 @@ msgid "" " " msgstr "" -#: plugin.py:389 +#: plugin.py:391 #, docstring msgid "" "\n" @@ -155,11 +155,11 @@ msgid "" " " msgstr "" -#: plugin.py:395 +#: plugin.py:397 msgid "That's not a valid RSS feed command name." msgstr "" -#: plugin.py:406 +#: plugin.py:408 #, docstring msgid "" "[]\n" @@ -169,11 +169,11 @@ msgid "" " " msgstr "" -#: plugin.py:413 +#: plugin.py:415 msgid "I am currently not announcing any feeds." msgstr "" -#: plugin.py:418 +#: plugin.py:420 #, docstring msgid "" "[] [ ...]\n" @@ -185,7 +185,7 @@ msgid "" " " msgstr "" -#: plugin.py:436 +#: plugin.py:438 #, docstring msgid "" "[] [ ...]\n" @@ -197,7 +197,7 @@ msgid "" " " msgstr "" -#: plugin.py:454 +#: plugin.py:456 #, docstring msgid "" " []\n" @@ -207,11 +207,11 @@ msgid "" " " msgstr "" -#: plugin.py:467 +#: plugin.py:469 msgid "Couldn't get RSS feed." msgstr "" -#: plugin.py:482 +#: plugin.py:484 #, docstring msgid "" "\n" @@ -221,11 +221,11 @@ msgid "" " " msgstr "" -#: plugin.py:495 +#: plugin.py:497 msgid "I couldn't retrieve that RSS feed." msgstr "" -#: plugin.py:508 +#: plugin.py:510 msgid "Title: %s; URL: %u; Description: %s; Last updated: %s." msgstr "" diff --git a/plugins/Relay/messages.pot b/plugins/Relay/messages.pot index 184273d70..40be22e1b 100644 --- a/plugins/Relay/messages.pot +++ b/plugins/Relay/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Reply/messages.pot b/plugins/Reply/messages.pot index 7b48ac5fb..6e7b3e7f7 100644 --- a/plugins/Reply/messages.pot +++ b/plugins/Reply/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Scheduler/messages.pot b/plugins/Scheduler/messages.pot index 219162041..d8f8e99ec 100644 --- a/plugins/Scheduler/messages.pot +++ b/plugins/Scheduler/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Seen/messages.pot b/plugins/Seen/messages.pot index 668ffc823..fe74b6a71 100644 --- a/plugins/Seen/messages.pot +++ b/plugins/Seen/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Services/messages.pot b/plugins/Services/messages.pot index 7ae5007c7..2befe7341 100644 --- a/plugins/Services/messages.pot +++ b/plugins/Services/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -35,23 +35,23 @@ msgstr "" msgid "What is your NickServ named?" msgstr "" -#: config.py:70 +#: config.py:69 msgid "" "Determines what nicks the bot will use with\n" " services." msgstr "" -#: config.py:77 +#: config.py:76 msgid "" "Determines what networks this plugin\n" " will be disabled on." msgstr "" -#: config.py:77 +#: config.py:76 msgid "QuakeNet" msgstr "" -#: config.py:81 +#: config.py:80 msgid "" "Determines whether the bot will not join any\n" " channels until it is identified. This may be useful, for instances, if\n" @@ -59,43 +59,43 @@ msgid "" " joining +r channels that won't allow you to join unless you identify." msgstr "" -#: config.py:86 +#: config.py:85 msgid "" "Determines how many seconds the bot will\n" " wait between successive GHOST attempts." msgstr "" -#: config.py:89 +#: config.py:88 msgid "" "Determines what nick the 'NickServ' service\n" " has." msgstr "" -#: config.py:93 +#: config.py:92 msgid "" "Determines what nick the 'ChanServ' service\n" " has." msgstr "" -#: config.py:96 +#: config.py:95 msgid "" "Determines what password the bot will use with\n" " ChanServ." msgstr "" -#: config.py:99 +#: config.py:98 msgid "" "Determines whether the bot will request to get\n" " opped by the ChanServ when it joins the channel." msgstr "" -#: config.py:102 +#: config.py:101 msgid "" "Determines whether the bot will request to get\n" " half-opped by the ChanServ when it joins the channel." msgstr "" -#: config.py:105 +#: config.py:104 msgid "" "Determines whether the bot will request to get\n" " voiced by the ChanServ when it joins the channel." diff --git a/plugins/ShrinkUrl/messages.pot b/plugins/ShrinkUrl/messages.pot index 5db4e7b02..19fcf367b 100644 --- a/plugins/ShrinkUrl/messages.pot +++ b/plugins/ShrinkUrl/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -27,7 +27,7 @@ msgstr "" msgid "Valid values include 'ln', 'tiny', 'xrl', 'goo', 'ur1', and 'x0'." msgstr "" -#: config.py:71 +#: config.py:70 msgid "" "Determines whether the\n" " shrink snarfer is enabled. This snarfer will watch for URLs in the\n" @@ -37,45 +37,45 @@ msgid "" " supybot.plugins.ShrinkUrl.default." msgstr "" -#: config.py:78 +#: config.py:77 msgid "" "Determines whether the snarfer will show the\n" " domain of the URL being snarfed along with the shrunken URL." msgstr "" -#: config.py:81 +#: config.py:80 msgid "" "The minimum length a URL must be before\n" " the bot will shrink it." msgstr "" -#: config.py:84 +#: config.py:83 msgid "" "Determines what URLs are to be snarfed; URLs\n" " matching the regexp given will not be snarfed. Give the empty string if\n" " you have no URLs that you'd like to exclude from being snarfed." msgstr "" -#: config.py:88 +#: config.py:87 msgid "" "Determines whether the bot will shrink the\n" " URLs of outgoing messages if those URLs are longer than\n" " supybot.plugins.ShrinkUrl.minimumLength." msgstr "" -#: config.py:92 +#: config.py:91 msgid "" "Determines what website the bot will use when\n" " shrinking a URL." msgstr "" -#: config.py:95 +#: config.py:94 msgid "" "Determines whether this plugin will bold\n" " certain portions of its replies." msgstr "" -#: config.py:98 +#: config.py:97 msgid "" "If set to a non-empty value, specifies the list of\n" " services to rotate through for the shrinkSnarfer and outFilter." diff --git a/plugins/Status/messages.pot b/plugins/Status/messages.pot index 34ab1f415..fc8b84a22 100644 --- a/plugins/Status/messages.pot +++ b/plugins/Status/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/String/messages.pot b/plugins/String/messages.pot index abf8ae0c0..c2192f30c 100644 --- a/plugins/String/messages.pot +++ b/plugins/String/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Success/messages.pot b/plugins/Success/messages.pot index 1dbc3378f..92c2f3aeb 100644 --- a/plugins/Success/messages.pot +++ b/plugins/Success/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Time/messages.pot b/plugins/Time/messages.pot index 141955a3a..95e2f3a72 100644 --- a/plugins/Time/messages.pot +++ b/plugins/Time/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Todo/messages.pot b/plugins/Todo/messages.pot index 6a4126d53..39cc0c3cc 100644 --- a/plugins/Todo/messages.pot +++ b/plugins/Todo/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Topic/messages.pot b/plugins/Topic/messages.pot index 3a2ac515f..abbc68405 100644 --- a/plugins/Topic/messages.pot +++ b/plugins/Topic/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/URL/messages.pot b/plugins/URL/messages.pot index 64e3f8f85..d97a5bc7d 100644 --- a/plugins/URL/messages.pot +++ b/plugins/URL/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Unix/locales/fi.po b/plugins/Unix/locales/fi.po index b6ce9938a..03a9580a0 100644 --- a/plugins/Unix/locales/fi.po +++ b/plugins/Unix/locales/fi.po @@ -5,31 +5,35 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2012-04-15 18:47+EEST\n" -"PO-Revision-Date: 2012-04-15 18:54+0200\n" +"POT-Creation-Date: 2014-03-22 12:07+EET\n" +"PO-Revision-Date: 2014-03-22 12:20+0200\n" "Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 1.5.4\n" #: config.py:47 msgid "" "The \"progstats\" command can reveal potentially sensitive\n" -" information about your machine. Here's an example of its output:\n" +" information about your machine. Here's an example of its " +"output:\n" "\n" " %s\n" msgstr "" -"\"Progstats\" komento voi paljastaa mahdollisesti henkilökohtaista tietoa tietokoneestasi.\n" +"\"Progstats\" komento voi paljastaa mahdollisesti henkilökohtaista tietoa " +"tietokoneestasi.\n" " Tässä on näyte sen ulostulosta:\n" "\n" " %s\n" #: config.py:51 msgid "Would you like to disable this command for non-owner users?" -msgstr "Haluaisitko poistaa tämän komennon käytöstä muille käyttäjille, kuin omistajille?" +msgstr "" +"Haluaisitko poistaa tämän komennon käytöstä muille käyttäjille, kuin " +"omistajille?" #: config.py:59 msgid "" @@ -55,8 +59,10 @@ msgid "" " fortune program." msgstr "" "Määrittää antaako 'fortune'\n" -" yhtäpaljon painoa erilaisille ennustustietokannoille. Jos tämä asetus on 'false', niin\n" -" suuremmille tietokannoille annetaan enemmän painoa. Tämä lähettää -e asetuksen\n" +" yhtäpaljon painoa erilaisille ennustustietokannoille. Jos tämä asetus " +"on 'false', niin\n" +" suuremmille tietokannoille annetaan enemmän painoa. Tämä lähettää -e " +"asetuksen\n" " ennustus ohjelmalle." #: config.py:70 @@ -73,12 +79,14 @@ msgstr "" msgid "" "Determines what specific file\n" " (if any) will be used with the fortune command; if none is given, the\n" -" system-wide default will be used. Do note that this fortune file must be\n" +" system-wide default will be used. Do note that this fortune file must " +"be\n" " placed with the rest of your system's fortune files." msgstr "" "Määrittää mitä tiettyä tietokantaa\n" " (jos mitään) 'fortune' käyttää; jos yhtään ei ole käytetty, \n" -" järjestelmän laajuista oletusta käytetään. Huomaa, että tämän ennustustiedoston täytyy olla\n" +" järjestelmän laajuista oletusta käytetään. Huomaa, että tämän " +"ennustustiedoston täytyy olla\n" " sijoitettuna muiden järjestelmän ennustustiedostojen kanssa." #: config.py:82 @@ -105,7 +113,7 @@ msgstr "" "Määrittää minkä komennon\n" " 'wtf' komento kutsuu." -#: plugin.py:75 +#: plugin.py:76 msgid "" "\n" "\n" @@ -117,19 +125,19 @@ msgstr "" " Palauttaa virhenumeron , tai virhekoodin virhenumeron.\n" " " -#: plugin.py:87 +#: plugin.py:88 msgid "I can't find the errno number for that code." msgstr "En voi löytää virhenumeroa tuolle koodille." -#: plugin.py:90 +#: plugin.py:91 msgid "(unknown)" msgstr "(tuntematon)" -#: plugin.py:91 +#: plugin.py:92 msgid "%s (#%i): %s" msgstr "%s (#%i): %s" -#: plugin.py:96 +#: plugin.py:97 msgid "" "takes no arguments\n" "\n" @@ -138,10 +146,11 @@ msgid "" msgstr "" "ei ota parametrejä\n" "\n" -" Palauttaa muutamia unixmaisia tietoja suoritettavasta supybot prosessista.\n" +" Palauttaa muutamia unixmaisia tietoja suoritettavasta supybot " +"prosessista.\n" " " -#: plugin.py:104 +#: plugin.py:105 msgid "" "takes no arguments\n" "\n" @@ -153,11 +162,12 @@ msgstr "" " Palauttaa tämän Supybot prosessin nykyisen pidin.\n" " " -#: plugin.py:114 +#: plugin.py:115 msgid "" " []\n" "\n" -" Returns the resulting of doing a crypt() on . If is\n" +" Returns the resulting of doing a crypt() on . If " +"is\n" " not given, uses a random salt. If running on a glibc2 system,\n" " prepending '$1$' to your salt will cause crypt to return an MD5sum\n" " based crypt rather than the standard DES based crypt.\n" @@ -166,56 +176,65 @@ msgstr "" " []\n" "\n" " Palauttaa crypt():in tuloksen . Jos ei ole\n" -" annettu, satunnaista suolaa käytetään. Jos suoritetaan glibc2 järjestelmällä,\n" -" '$1$' lisääminen kryptaukseesi aiheuttaa MD5 summaan perustuvan kryptauksen, mielummin kuin\n" +" annettu, satunnaista suolaa käytetään. Jos suoritetaan glibc2 " +"järjestelmällä,\n" +" '$1$' lisääminen kryptaukseesi aiheuttaa MD5 summaan perustuvan " +"kryptauksen, mielummin kuin\n" " normaalin DES pohjaisen kryptin.\n" " " -#: plugin.py:133 +#: plugin.py:134 msgid "" "\n" "\n" " Returns the result of passing to aspell/ispell. The results\n" -" shown are sorted from best to worst in terms of being a likely match\n" +" shown are sorted from best to worst in terms of being a likely " +"match\n" " for the spelling of .\n" " " msgstr "" "\n" "\n" -" Palauttaa lähetyksen aspell/ispell ohjelmaan. Palautuvat tulokset\n" -" näytetään järjestyksessä parhaasta huonompaan sillä perusteella, kuinka todennäköisesti ne ovat oikein kirjoitettuja\n" +" Palauttaa lähetyksen aspell/ispell ohjelmaan. Palautuvat " +"tulokset\n" +" näytetään järjestyksessä parhaasta huonompaan sillä perusteella, " +"kuinka todennäköisesti ne ovat oikein kirjoitettuja\n" " .\n" " " -#: plugin.py:142 -msgid "The spell checking command is not configured. If one is installed, reconfigure supybot.plugins.Unix.spell.command appropriately." -msgstr "Oikeinkirjoituksen tarkistusohjelma ei ole säädetty. Jos sellainen on asennttu, säädä supybot.plugins.Unix.spell.command sopivaksi." +#: plugin.py:143 +msgid "" +"The spell checking command is not configured. If one is installed, " +"reconfigure supybot.plugins.Unix.spell.command appropriately." +msgstr "" +"Oikeinkirjoituksen tarkistusohjelma ei ole säädetty. Jos sellainen on " +"asennttu, säädä supybot.plugins.Unix.spell.command sopivaksi." -#: plugin.py:148 +#: plugin.py:149 msgid " must begin with an alphabet character." msgstr " täytyy alkaa aakkosellisella merkillä." -#: plugin.py:170 +#: plugin.py:171 msgid "No results found." msgstr "Tuloksia ei löytynyt." -#: plugin.py:181 +#: plugin.py:182 msgid "%q may be spelled correctly." msgstr "%q saattaa olla kirjoitettu oikein." -#: plugin.py:183 +#: plugin.py:184 msgid "I could not find an alternate spelling for %q" msgstr "En löytänyt vaihtoehtoista kirjoitustapaa sanalle %q" -#: plugin.py:187 +#: plugin.py:188 msgid "Possible spellings for %q: %L." msgstr "Mahdolliset kirjoitustavat sanalle %q ovat: %L." -#: plugin.py:190 +#: plugin.py:191 msgid "Something unexpected was seen in the [ai]spell output." msgstr "Jotakin odottamatonta nähtiin [ai]spellin ulostulossa." -#: plugin.py:196 +#: plugin.py:197 msgid "" "takes no arguments\n" "\n" @@ -227,39 +246,53 @@ msgstr "" " Palauttaa ennustuksen *nix ennustusohjelmalta.\n" " " -#: plugin.py:217 +#: plugin.py:219 msgid "It seems the configured fortune command was not available." msgstr "Näyttää siltä, että määritetty ennustusohjelma ei ollut saatavilla." -#: plugin.py:226 -msgid "The fortune command is not configured. If fortune is installed on this system, reconfigure the supybot.plugins.Unix.fortune.command configuration variable appropriately." -msgstr "Ennustuskomento ei ole määritetty. Jos fortune on asennettu tähän järjestelmään, määritä uudelleen asetusarvo supybot.plugins.Unix.fortune.command oikein." +#: plugin.py:228 +msgid "" +"The fortune command is not configured. If fortune is installed on this " +"system, reconfigure the supybot.plugins.Unix.fortune.command configuration " +"variable appropriately." +msgstr "" +"Ennustuskomento ei ole määritetty. Jos fortune on asennettu tähän " +"järjestelmään, määritä uudelleen asetusarvo supybot.plugins.Unix.fortune." +"command oikein." -#: plugin.py:233 +#: plugin.py:235 msgid "" "[is] \n" "\n" " Returns wtf is. 'wtf' is a *nix command that first\n" -" appeared in NetBSD 1.5. In most *nices, it's available in some sort\n" +" appeared in NetBSD 1.5. In most *nices, it's available in some " +"sort\n" " of 'bsdgames' package.\n" " " msgstr "" "[is] \n" "\n" -" Palauttaa mikä ihme on. 'wtf' on *nix komento, joka ilmestyi ensin\n" -" NetBSD 1.5 käyttöjärjestelmässä. Suurimmassa osassa *nixeistä, se on saatavilla jonkinlaisessa\n" +" Palauttaa mikä ihme on. 'wtf' on *nix komento, joka " +"ilmestyi ensin\n" +" NetBSD 1.5 käyttöjärjestelmässä. Suurimmassa osassa *nixeistä, se " +"on saatavilla jonkinlaisessa\n" " 'bsdgames' paketissa.\n" " " -#: plugin.py:248 +#: plugin.py:251 msgid "It seems the configured wtf command was not available." msgstr "Vaikuttaa siltä, ettei määritetty wtf komento ollut saatavilla." -#: plugin.py:257 -msgid "The wtf command is not configured. If it is installed on this system, reconfigure the supybot.plugins.Unix.wtf.command configuration variable appropriately." -msgstr "Wtf komento ei ole määritetty. Jos se on asennettu tähän järjestelmään, määritä supybot.plugins.Unix.wtf.command asetusarvo oikein." +#: plugin.py:260 +msgid "" +"The wtf command is not configured. If it is installed on this system, " +"reconfigure the supybot.plugins.Unix.wtf.command configuration variable " +"appropriately." +msgstr "" +"Wtf komento ei ole määritetty. Jos se on asennettu tähän järjestelmään, " +"määritä supybot.plugins.Unix.wtf.command asetusarvo oikein." -#: plugin.py:265 +#: plugin.py:268 msgid "" "[--c ] [--i ] [--t ] [--W ] \n" " Sends an ICMP echo request to the specified host.\n" @@ -268,14 +301,17 @@ msgid "" " or less. --W is limited to 10 or less.\n" " " msgstr "" -"[--c ] [--i ] [--t ] [--W ] \n" +"[--c ] [--i ] [--t ] [--W ] \n" " Lähettää ICMP kaiutuspyynnön määritettyyn isäntään.\n" -" Parametrin täsmäävät niihin, jotka on määritetty ohjekirjasivulla ping(8). --c on\n" -" rajoitettu kymmeneen tai vähempään (oletus on 5). --i on rajoitettu viiteen\n" +" Parametrin täsmäävät niihin, jotka on määritetty ohjekirjasivulla " +"ping(8). --c on\n" +" rajoitettu kymmeneen tai vähempään (oletus on 5). --i on rajoitettu " +"viiteen\n" " tai vähempään. --W on rajoitettu kymmeneen tai vähempään.\n" " " -#: plugin.py:317 +#: plugin.py:322 msgid "" "takes no arguments\n" "\n" @@ -286,7 +322,7 @@ msgstr "" " Palauttaa järjestelmän, jolla botti on ylläoloajan.\n" " " -#: plugin.py:345 +#: plugin.py:351 msgid "" "takes no arguments\n" "\n" @@ -295,26 +331,54 @@ msgid "" msgstr "" "ei ota parametrejä\n" "\n" -" Palauttaa komennon \"uname -a\" ulostulon järjestelmästä, jossa botti on.\n" +" Palauttaa komennon \"uname -a\" ulostulon järjestelmästä, jossa botti " +"on.\n" " " -#: plugin.py:373 +#: plugin.py:380 msgid "" -" \n" +"\n" " Calls any command available on the system, and returns its output.\n" " Requires owner capability.\n" " Note that being restricted to owner, this command does not do any\n" " sanity checking on input/output. So it is up to you to make sure\n" -" you don't run anything that will spamify your channel or that \n" -" will bring your machine to its knees. \n" +" you don't run anything that will spamify your channel or that\n" +" will bring your machine to its knees.\n" " " msgstr "" " \n" -" Kutsuu minkä tahansa komennon, joka on saatavilla järjestelmässä, ja palauttaa sen ulostulon.\n" -" Vaatii owner valtuuden.\n" -" Huomaa, että, koska tämä komento on rajoitettu omistajalle, se ei tee\n" -" minkäänlaista järjellisyystarkistusta sisäänmenoon/ulostuloon. Joten riippuu sinusta, että teet varmaksi, ettet suorita mitään, mikä sotkee kanavaasi, tai joka\n" +" Kutsuu minkä tahansa komennon, joka on saatavilla järjestelmässä " +"palauttaen sen ulostulon.\n" +" Vaatii owner-valtuuden.\n" +" Huomaa että, koska tämä komento on rajoitettu omistajalle, se ei " +"tee\n" +" minkäänlaista järjellisyystarkistusta sisäänmenoon/ulostuloon. Joten " +"on oma tehtäväsi varmistaa, ettet suorita mitään, mikä sotkee kanavaasi, tai " +"laittaa koneesi polvilleen. \n" +" " + +#: plugin.py:408 +msgid "" +"\n" +" Calls any command available on the system using the shell\n" +" specified by the SHELL environment variable, and returns its\n" +" output.\n" +" Requires owner capability.\n" +" Note that being restricted to owner, this command does not do any\n" +" sanity checking on input/output. So it is up to you to make sure\n" +" you don't run anything that will spamify your channel or that\n" +" will bring your machine to its knees.\n" +" " +msgstr "" +" \n" +" Kutsuu minkä tahansa komennon, joka on saatavilla järjestelmässä " +"käyttäen SHELL ympäristömuuttujaa, ja palauttaa sen ulostulon.\n" +" Vaatii owner-valtuuden.\n" +" Huomaa, että, koska tämä komento on rajoitettu omistajalle, se ei " +"tee\n" +" minkäänlaista järjellisyystarkistusta sisäänmenoon/ulostuloon. Joten " +"on oma tehtäväsi varmistaa, ettet suorita mitään, mikä sotkee kanavaasi tai " +"joka\n" " laittaa koneesi\n" " polvilleen. \n" " " - diff --git a/plugins/Unix/messages.pot b/plugins/Unix/messages.pot index 365b3d3ee..6e830a071 100644 --- a/plugins/Unix/messages.pot +++ b/plugins/Unix/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -179,15 +179,15 @@ msgid "" " " msgstr "" -#: plugin.py:218 +#: plugin.py:219 msgid "It seems the configured fortune command was not available." msgstr "" -#: plugin.py:227 +#: plugin.py:228 msgid "The fortune command is not configured. If fortune is installed on this system, reconfigure the supybot.plugins.Unix.fortune.command configuration variable appropriately." msgstr "" -#: plugin.py:234 +#: plugin.py:235 #, docstring msgid "" "[is] \n" @@ -198,15 +198,15 @@ msgid "" " " msgstr "" -#: plugin.py:249 +#: plugin.py:251 msgid "It seems the configured wtf command was not available." msgstr "" -#: plugin.py:258 +#: plugin.py:260 msgid "The wtf command is not configured. If it is installed on this system, reconfigure the supybot.plugins.Unix.wtf.command configuration variable appropriately." msgstr "" -#: plugin.py:266 +#: plugin.py:268 #, docstring msgid "" "[--c ] [--i ] [--t ] [--W ] \n" @@ -217,7 +217,7 @@ msgid "" " " msgstr "" -#: plugin.py:318 +#: plugin.py:322 #, docstring msgid "" "takes no arguments\n" @@ -226,7 +226,7 @@ msgid "" " " msgstr "" -#: plugin.py:346 +#: plugin.py:351 #, docstring msgid "" "takes no arguments\n" @@ -235,16 +235,31 @@ msgid "" " " msgstr "" -#: plugin.py:374 +#: plugin.py:380 #, docstring msgid "" -" \n" +"\n" " Calls any command available on the system, and returns its output.\n" " Requires owner capability.\n" " Note that being restricted to owner, this command does not do any\n" " sanity checking on input/output. So it is up to you to make sure\n" -" you don't run anything that will spamify your channel or that \n" -" will bring your machine to its knees. \n" +" you don't run anything that will spamify your channel or that\n" +" will bring your machine to its knees.\n" +" " +msgstr "" + +#: plugin.py:408 +#, docstring +msgid "" +"\n" +" Calls any command available on the system using the shell\n" +" specified by the SHELL environment variable, and returns its\n" +" output.\n" +" Requires owner capability.\n" +" Note that being restricted to owner, this command does not do any\n" +" sanity checking on input/output. So it is up to you to make sure\n" +" you don't run anything that will spamify your channel or that\n" +" will bring your machine to its knees.\n" " " msgstr "" diff --git a/plugins/User/messages.pot b/plugins/User/messages.pot index 2e8be1534..d21141c9e 100644 --- a/plugins/User/messages.pot +++ b/plugins/User/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -15,7 +15,7 @@ msgstr "" "Generated-By: pygettext.py 1.5\n" -#: plugin.py:52 +#: plugin.py:53 #, docstring msgid "" "[--capability=] []\n" @@ -25,19 +25,19 @@ msgid "" " " msgstr "" -#: plugin.py:67 +#: plugin.py:68 msgid "This is a private capability. Only admins can see who has it." msgstr "" -#: plugin.py:92 +#: plugin.py:93 msgid "There are no matching registered users." msgstr "" -#: plugin.py:94 +#: plugin.py:95 msgid "There are no registered users." msgstr "" -#: plugin.py:100 +#: plugin.py:101 #, docstring msgid "" " \n" @@ -52,23 +52,23 @@ msgid "" " " msgstr "" -#: plugin.py:113 +#: plugin.py:114 msgid "That name is already assigned to someone." msgstr "" -#: plugin.py:118 +#: plugin.py:119 msgid "username" msgstr "" -#: plugin.py:119 +#: plugin.py:120 msgid "Hostmasks are not valid usernames." msgstr "" -#: plugin.py:126 +#: plugin.py:127 msgid "Your hostmask is already registered to %s" msgstr "" -#: plugin.py:142 +#: plugin.py:143 #, docstring msgid "" " []\n" @@ -78,11 +78,11 @@ msgid "" " " msgstr "" -#: plugin.py:157 +#: plugin.py:158 msgid "This command has been disabled. You'll have to ask the owner of this bot to unregister your user." msgstr "" -#: plugin.py:170 +#: plugin.py:171 #, docstring msgid "" " []\n" @@ -94,11 +94,11 @@ msgid "" " " msgstr "" -#: plugin.py:179 +#: plugin.py:180 msgid "%q is already registered." msgstr "" -#: plugin.py:193 +#: plugin.py:194 #, docstring msgid "" "[] \n" @@ -111,7 +111,7 @@ msgid "" " " msgstr "" -#: plugin.py:221 +#: plugin.py:222 #, docstring msgid "" " []\n" @@ -125,11 +125,11 @@ msgid "" " " msgstr "" -#: plugin.py:236 +#: plugin.py:237 msgid "Secure flag set to %s" msgstr "" -#: plugin.py:244 +#: plugin.py:245 #, docstring msgid "" "\n" @@ -139,15 +139,15 @@ msgid "" " " msgstr "" -#: plugin.py:253 +#: plugin.py:254 msgid "I haven't seen %s." msgstr "" -#: plugin.py:258 +#: plugin.py:259 msgid "I don't know who that is." msgstr "" -#: plugin.py:264 +#: plugin.py:265 #, docstring msgid "" "[]\n" @@ -157,7 +157,7 @@ msgid "" " " msgstr "" -#: plugin.py:276 +#: plugin.py:277 #, docstring msgid "" "[]\n" @@ -168,15 +168,15 @@ msgid "" " " msgstr "" -#: plugin.py:288 +#: plugin.py:289 msgid "%s has no registered hostmasks." msgstr "" -#: plugin.py:295 +#: plugin.py:296 msgid "You may only retrieve your own hostmasks." msgstr "" -#: plugin.py:311 +#: plugin.py:312 #, docstring msgid "" "[] [] []\n" @@ -192,19 +192,19 @@ msgid "" " " msgstr "" -#: plugin.py:325 +#: plugin.py:326 msgid "hostmask" msgstr "" -#: plugin.py:326 +#: plugin.py:327 msgid "Make sure your hostmask includes a nick, then an exclamation point (!), then a user, then an at symbol (@), then a host. Feel free to use wildcards (* and ?, which work just like they do on the command line) in any of these parts." msgstr "" -#: plugin.py:336 plugin.py:359 +#: plugin.py:337 plugin.py:358 msgid "That hostmask is already registered." msgstr "" -#: plugin.py:367 +#: plugin.py:368 #, docstring msgid "" "[] [] []\n" @@ -223,19 +223,19 @@ msgid "" " " msgstr "" -#: plugin.py:393 +#: plugin.py:394 msgid "All hostmasks removed." msgstr "" -#: plugin.py:397 +#: plugin.py:398 msgid "There was no such hostmask." msgstr "" -#: plugin.py:414 +#: plugin.py:415 msgid "GPG features are not enabled." msgstr "" -#: plugin.py:423 +#: plugin.py:424 #, docstring msgid "" " \n" @@ -243,27 +243,27 @@ msgid "" " Add a GPG key to your account." msgstr "" -#: plugin.py:427 +#: plugin.py:428 msgid "This key is already associated with your account." msgstr "" -#: plugin.py:431 +#: plugin.py:432 msgid "%n imported, %i unchanged, %i not imported." msgstr "" -#: plugin.py:432 +#: plugin.py:433 msgid "key" msgstr "" -#: plugin.py:443 +#: plugin.py:444 msgid "You must give a valid key id" msgstr "" -#: plugin.py:445 +#: plugin.py:446 msgid "You must give a valid key server" msgstr "" -#: plugin.py:449 +#: plugin.py:450 #, docstring msgid "" "\n" @@ -271,11 +271,11 @@ msgid "" " Remove a GPG key from your account." msgstr "" -#: plugin.py:462 +#: plugin.py:463 msgid "GPG key not associated with your account." msgstr "" -#: plugin.py:467 +#: plugin.py:468 #, docstring msgid "" "takes no arguments\n" @@ -283,11 +283,11 @@ msgid "" " Send you a token that you'll have to sign with your key." msgstr "" -#: plugin.py:474 +#: plugin.py:475 msgid "Your token is: %s. Please sign it with your GPG key, paste it somewhere, and call the 'auth' command with the URL to the (raw) file containing the signature." msgstr "" -#: plugin.py:488 +#: plugin.py:489 #, docstring msgid "" "\n" @@ -296,31 +296,31 @@ msgid "" " the key used is associated to a user." msgstr "" -#: plugin.py:495 +#: plugin.py:499 msgid "Signature or token not found." msgstr "" -#: plugin.py:499 +#: plugin.py:503 msgid "Unknown token. It may have expired before you submit it." msgstr "" -#: plugin.py:502 +#: plugin.py:506 msgid "Your hostname/nick changed in the process. Authentication aborted." msgstr "" -#: plugin.py:513 +#: plugin.py:517 msgid "You are now authenticated as %s." msgstr "" -#: plugin.py:516 +#: plugin.py:520 msgid "Unknown GPG key." msgstr "" -#: plugin.py:518 +#: plugin.py:522 msgid "Signature could not be verified. Make sure this is a valid GPG signature and the URL is valid." msgstr "" -#: plugin.py:524 +#: plugin.py:528 #, docstring msgid "" "[]\n" @@ -331,7 +331,7 @@ msgid "" " " msgstr "" -#: plugin.py:544 +#: plugin.py:548 #, docstring msgid "" " \n" @@ -342,11 +342,11 @@ msgid "" " " msgstr "" -#: plugin.py:556 +#: plugin.py:560 msgid "Your secure flag is true and your hostmask doesn't match any of your known hostmasks." msgstr "" -#: plugin.py:566 +#: plugin.py:570 #, docstring msgid "" "takes no arguments\n" @@ -358,11 +358,11 @@ msgid "" " " msgstr "" -#: plugin.py:575 +#: plugin.py:579 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:584 +#: plugin.py:588 #, docstring msgid "" "takes no arguments\n" @@ -371,11 +371,11 @@ msgid "" " " msgstr "" -#: plugin.py:592 +#: plugin.py:596 msgid "I don't recognize you." msgstr "" -#: plugin.py:597 +#: plugin.py:601 #, docstring msgid "" "takes no arguments\n" @@ -384,7 +384,7 @@ msgid "" " " msgstr "" -#: plugin.py:615 +#: plugin.py:619 msgid "I have %s registered users with %s registered hostmasks; %n and %n." msgstr "" diff --git a/plugins/Utilities/messages.pot b/plugins/Utilities/messages.pot index 06f0509a6..22dc8fbb3 100644 --- a/plugins/Utilities/messages.pot +++ b/plugins/Utilities/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -73,13 +73,22 @@ msgstr "" #: plugin.py:109 #, docstring msgid "" +" [ ...]\n" +"\n" +" Sorts the arguments given.\n" +" " +msgstr "" + +#: plugin.py:120 +#, docstring +msgid "" " [ ...]\n" "\n" " Randomly chooses items out of the arguments given.\n" " " msgstr "" -#: plugin.py:122 +#: plugin.py:133 #, docstring msgid "" " [ ...]\n" @@ -88,7 +97,7 @@ msgid "" " " msgstr "" -#: plugin.py:131 +#: plugin.py:142 #, docstring msgid "" " \n" diff --git a/plugins/Web/messages.pot b/plugins/Web/messages.pot index a4c23f9f4..4269e9ce0 100644 --- a/plugins/Web/messages.pot +++ b/plugins/Web/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:21+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/messages.pot b/plugins/messages.pot new file mode 100644 index 000000000..ce95d021f --- /dev/null +++ b/plugins/messages.pot @@ -0,0 +1,17 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2014-03-22 12:04+EET\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING\n" +"Generated-By: pygettext.py 1.5\n" + + From aa59a9876776e5eb3d510602250c34e386e7db06 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 12:39:48 +0200 Subject: [PATCH 10/54] Aka: add l10n-fi. --- plugins/Admin/messages.pot | 2 +- plugins/Aka/locales/fi.po | 198 ++++++++++++++++++++++++++ plugins/Aka/messages.pot | 2 +- plugins/Alias/messages.pot | 2 +- plugins/Anonymous/messages.pot | 2 +- plugins/AutoMode/messages.pot | 2 +- plugins/BadWords/messages.pot | 2 +- plugins/Channel/messages.pot | 2 +- plugins/ChannelLogger/messages.pot | 2 +- plugins/ChannelStats/messages.pot | 2 +- plugins/Conditional/messages.pot | 2 +- plugins/Config/messages.pot | 2 +- plugins/Ctcp/messages.pot | 2 +- plugins/Dict/messages.pot | 2 +- plugins/Dunno/messages.pot | 2 +- plugins/Factoids/messages.pot | 2 +- plugins/Filter/messages.pot | 2 +- plugins/Format/messages.pot | 2 +- plugins/Games/messages.pot | 2 +- plugins/Internet/messages.pot | 2 +- plugins/Lart/messages.pot | 2 +- plugins/Later/messages.pot | 2 +- plugins/Limiter/messages.pot | 2 +- plugins/Math/messages.pot | 2 +- plugins/MessageParser/messages.pot | 2 +- plugins/Misc/messages.pot | 2 +- plugins/MoobotFactoids/messages.pot | 2 +- plugins/Network/messages.pot | 2 +- plugins/News/messages.pot | 2 +- plugins/NickAuth/messages.pot | 2 +- plugins/NickCapture/messages.pot | 2 +- plugins/Nickometer/messages.pot | 2 +- plugins/Note/messages.pot | 2 +- plugins/Owner/messages.pot | 2 +- plugins/Plugin/messages.pot | 2 +- plugins/PluginDownloader/messages.pot | 2 +- plugins/Praise/messages.pot | 2 +- plugins/Protector/messages.pot | 2 +- plugins/Quote/messages.pot | 2 +- plugins/QuoteGrabs/messages.pot | 2 +- plugins/RSS/messages.pot | 2 +- plugins/Relay/messages.pot | 2 +- plugins/Reply/messages.pot | 2 +- plugins/Scheduler/messages.pot | 2 +- plugins/Seen/messages.pot | 2 +- plugins/Services/messages.pot | 2 +- plugins/ShrinkUrl/messages.pot | 2 +- plugins/Status/messages.pot | 2 +- plugins/String/messages.pot | 2 +- plugins/Success/messages.pot | 2 +- plugins/Time/messages.pot | 2 +- plugins/Todo/messages.pot | 2 +- plugins/Topic/messages.pot | 2 +- plugins/URL/messages.pot | 2 +- plugins/Unix/messages.pot | 2 +- plugins/User/messages.pot | 2 +- plugins/Utilities/messages.pot | 2 +- plugins/Web/messages.pot | 2 +- 58 files changed, 255 insertions(+), 57 deletions(-) create mode 100644 plugins/Aka/locales/fi.po diff --git a/plugins/Admin/messages.pot b/plugins/Admin/messages.pot index 79d0a20e8..29e39a289 100644 --- a/plugins/Admin/messages.pot +++ b/plugins/Admin/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Aka/locales/fi.po b/plugins/Aka/locales/fi.po new file mode 100644 index 000000000..119a0aa76 --- /dev/null +++ b/plugins/Aka/locales/fi.po @@ -0,0 +1,198 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: Aka plugin for Limnoria\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"PO-Revision-Date: 2014-03-22 12:39+0200\n" +"Last-Translator: Mikaela Suomalainen \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 1.5.4\n" +"Language: Finnish\n" + +#: config.py:55 +msgid "" +"The maximum number of words allowed in a\n" +" command name. Setting this to an high value may slow down your bot\n" +" on long commands." +msgstr "" +"Komennon nimessä sallittujen merkkien enimmäismäärä.\n" +" Korkean arvon asettaminen tähän voi hidastaa bottiasi pitkien komentojen " +"kanssa." + +#: plugin.py:140 plugin.py:264 plugin.py:505 +msgid "This Aka already exists." +msgstr "Tämä Aka on jo olemassa." + +#: plugin.py:169 plugin.py:181 plugin.py:195 plugin.py:291 plugin.py:308 +#: plugin.py:325 +msgid "This Aka does not exist" +msgstr "Tätä Akaa ei ole olemassakaan" + +#: plugin.py:293 +msgid "This Aka is already locked." +msgstr "Tämä Aka on jo lukittu." + +#: plugin.py:310 +msgid "This Aka is already unlocked." +msgstr "Tämä Aka on jo avattu." + +#: plugin.py:372 +msgid "" +"Add the help for \"@plugin help Aka\" here\n" +" This should describe *how* to use this plugin." +msgstr "" +"Lisää ohje komentoa \"@plugin help Aka\" varten tähän.\n" +" Tämän pitäisi kuvata *kuinka* tätä lisä-osaa käytetään." + +#: plugin.py:479 +msgid "You've attempted more nesting than is currently allowed on this bot." +msgstr "" +"Olet yrittänyt sisällyttää enemmän komentoja, kuin tässä botti sallii juuri " +"nyt." + +#: plugin.py:483 +msgid " at least" +msgstr "ainakin" + +#: plugin.py:492 +msgid "Locked by %s at %s" +msgstr "Lukinnut %s aikaan %s" + +#: plugin.py:495 +msgid "" +"\n" +"\n" +"Alias for %q.%s" +msgstr "" +"\n" +"\n" +"Alias komennolle %q.%s" + +#: plugin.py:496 +msgid "argument" +msgstr "parametri" + +#: plugin.py:502 +msgid "You can't overwrite commands in this plugin." +msgstr "Et voi ylikirjoittaa tämän lisä-osan komentoja." + +#: plugin.py:507 +msgid "This Aka has too many spaces in its name." +msgstr "Tämän Akan nimessä on liian monta välilyöntiä." + +#: plugin.py:512 +msgid "Can't mix $* and optional args (@1, etc.)" +msgstr "" +"$*:ä ja vapaaehtoisia parametrejä (@1, jne.) ei voida sekoittaa keskenään" + +#: plugin.py:514 +msgid "There can be only one $* in an alias." +msgstr "Aliaksessa voi olla vain yksi $*." + +#: plugin.py:521 +msgid "This Aka is locked." +msgstr "Tämä Aka on lukittu." + +#: plugin.py:525 +#, fuzzy +msgid "" +"[--channel <#channel>] \n" +"\n" +" Defines an alias that executes . The \n" +" should be in the standard \"command argument [nestedcommand " +"argument]\"\n" +" arguments to the alias; they'll be filled with the first, second, " +"etc.\n" +" arguments. $1, $2, etc. can be used for required arguments. @1, " +"@2,\n" +" etc. can be used for optional arguments. $* simply means \"all\n" +" arguments that have not replaced $1, $2, etc.\", ie. it will also\n" +" include optional arguments.\n" +" " +msgstr "" +"[--channel <#kanava>] \n" +"\n" +"Määrittää aliaksen , joka suorittaa . \n" +" pitäisi olla tavallisessa muodossa \"komento parametri [sisällytettykomento " +"parametri]\"\n" +" parametreinä aliakselle; ne täytetään ensimmäisenä, toisena, jne.\n" +" parametreinä. $1, $2, jne. voidaan käyttää vaadittuina parametreinä. @1, " +"@2,\n" +" jne. voidaan käyttää vapaaehtoisina parametreinä. $* tarkoittaa " +"yksinkertaisesti \"kaikki\n" +" jotka eivät ole korvanneet $1, $2, jne.\", esim. se sisältää vapaa-ehtoiset " +"parametrit.\n" +" " + +#: plugin.py:539 plugin.py:565 plugin.py:597 plugin.py:620 +msgid "%r is not a valid channel." +msgstr "%r ei ole kelvollinen kanava." + +#: plugin.py:557 +msgid "" +"[--channel <#channel>] \n" +"\n" +" Removes the given alias, if unlocked.\n" +" " +msgstr "" +"[--channel <#kanava>] \n" +"\n" +" Poistaa annetun aliaksen, ellei se ole lukittu.\n" +" " + +#: plugin.py:579 +msgid "" +"Check if the user has any of the required capabilities to manage\n" +" the regexp database." +msgstr "" +"Tarkistaa onko käyttäjällä vaadittu valtuus säännöllisten lausekkeiden\n" +" tietokannan hallintaan." + +#: plugin.py:589 +msgid "" +"[--channel <#channel>] \n" +"\n" +" Locks an alias so that no one else can change it.\n" +" " +msgstr "" +"[--channel <#kanava>] \n" +"\n" +" Lukitsee aliaksen estäen muita muokkaamasta sitä.\n" +" " + +#: plugin.py:612 +msgid "" +"[--channel <#channel>] \n" +"\n" +" Unlocks an alias so that people can define new aliases over it.\n" +" " +msgstr "" +"[--channel <#kanava>] \n" +"\n" +" Avaa aliaksen, jotta kaikki voivat määrittää uusia aliaksia sen päälle.\n" +" " + +#: plugin.py:635 +msgid "" +"takes no arguments\n" +"\n" +" Imports the Alias database into Aka's, and clean the former." +msgstr "" +"ei ota parametrejä\n" +"\n" +" Tuo Aliaksen tietokannan Akaan ja tyhjentää aiemman." + +#: plugin.py:640 +msgid "Alias plugin is not loaded." +msgstr "Alias lisä-osa ei ole ladattu." + +#: plugin.py:650 +msgid "Error occured when importing the %n: %L" +msgstr "Virhe komennon %n tuomisessa: %L" diff --git a/plugins/Aka/messages.pot b/plugins/Aka/messages.pot index 739e857bf..9361b5e42 100644 --- a/plugins/Aka/messages.pot +++ b/plugins/Aka/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Alias/messages.pot b/plugins/Alias/messages.pot index 9728d4608..7a58368eb 100644 --- a/plugins/Alias/messages.pot +++ b/plugins/Alias/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Anonymous/messages.pot b/plugins/Anonymous/messages.pot index 3e7680d3f..9b2d43776 100644 --- a/plugins/Anonymous/messages.pot +++ b/plugins/Anonymous/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AutoMode/messages.pot b/plugins/AutoMode/messages.pot index 24af7a136..1ee086f94 100644 --- a/plugins/AutoMode/messages.pot +++ b/plugins/AutoMode/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BadWords/messages.pot b/plugins/BadWords/messages.pot index a730fbeb8..55a7d2764 100644 --- a/plugins/BadWords/messages.pot +++ b/plugins/BadWords/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Channel/messages.pot b/plugins/Channel/messages.pot index 025b7a5b8..c93b4c20b 100644 --- a/plugins/Channel/messages.pot +++ b/plugins/Channel/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ChannelLogger/messages.pot b/plugins/ChannelLogger/messages.pot index 641713395..918df8aa8 100644 --- a/plugins/ChannelLogger/messages.pot +++ b/plugins/ChannelLogger/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ChannelStats/messages.pot b/plugins/ChannelStats/messages.pot index 26f77bb84..a1f7f30d8 100644 --- a/plugins/ChannelStats/messages.pot +++ b/plugins/ChannelStats/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Conditional/messages.pot b/plugins/Conditional/messages.pot index 1d53827fc..32d95f9a8 100644 --- a/plugins/Conditional/messages.pot +++ b/plugins/Conditional/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Config/messages.pot b/plugins/Config/messages.pot index f673fb1e8..e16b5d3ae 100644 --- a/plugins/Config/messages.pot +++ b/plugins/Config/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Ctcp/messages.pot b/plugins/Ctcp/messages.pot index ee3aa5852..7949ef75f 100644 --- a/plugins/Ctcp/messages.pot +++ b/plugins/Ctcp/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Dict/messages.pot b/plugins/Dict/messages.pot index 999efdce7..5d9c2b487 100644 --- a/plugins/Dict/messages.pot +++ b/plugins/Dict/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Dunno/messages.pot b/plugins/Dunno/messages.pot index 5be8fddeb..cdca26d89 100644 --- a/plugins/Dunno/messages.pot +++ b/plugins/Dunno/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Factoids/messages.pot b/plugins/Factoids/messages.pot index daa569c34..46ff46019 100644 --- a/plugins/Factoids/messages.pot +++ b/plugins/Factoids/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Filter/messages.pot b/plugins/Filter/messages.pot index f55ebbfff..adc8cf22c 100644 --- a/plugins/Filter/messages.pot +++ b/plugins/Filter/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Format/messages.pot b/plugins/Format/messages.pot index c939fa1f3..d757ac6e1 100644 --- a/plugins/Format/messages.pot +++ b/plugins/Format/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Games/messages.pot b/plugins/Games/messages.pot index 746528266..85c3c6448 100644 --- a/plugins/Games/messages.pot +++ b/plugins/Games/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Internet/messages.pot b/plugins/Internet/messages.pot index 0b6c7af48..06f05c317 100644 --- a/plugins/Internet/messages.pot +++ b/plugins/Internet/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Lart/messages.pot b/plugins/Lart/messages.pot index a6d14d2d3..4686800e8 100644 --- a/plugins/Lart/messages.pot +++ b/plugins/Lart/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Later/messages.pot b/plugins/Later/messages.pot index f274426bd..f6b84da74 100644 --- a/plugins/Later/messages.pot +++ b/plugins/Later/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Limiter/messages.pot b/plugins/Limiter/messages.pot index aaaa0feb6..1e262c33d 100644 --- a/plugins/Limiter/messages.pot +++ b/plugins/Limiter/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Math/messages.pot b/plugins/Math/messages.pot index cb45fc6a6..56fd4ce3a 100644 --- a/plugins/Math/messages.pot +++ b/plugins/Math/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/MessageParser/messages.pot b/plugins/MessageParser/messages.pot index 160075a5b..5ce225585 100644 --- a/plugins/MessageParser/messages.pot +++ b/plugins/MessageParser/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Misc/messages.pot b/plugins/Misc/messages.pot index fc564c2db..d1756f57f 100644 --- a/plugins/Misc/messages.pot +++ b/plugins/Misc/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/MoobotFactoids/messages.pot b/plugins/MoobotFactoids/messages.pot index 03d513261..f378b6c5c 100644 --- a/plugins/MoobotFactoids/messages.pot +++ b/plugins/MoobotFactoids/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Network/messages.pot b/plugins/Network/messages.pot index 9b712e1f9..dd363bcd2 100644 --- a/plugins/Network/messages.pot +++ b/plugins/Network/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/News/messages.pot b/plugins/News/messages.pot index 38c55c924..f3b2a91f6 100644 --- a/plugins/News/messages.pot +++ b/plugins/News/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/NickAuth/messages.pot b/plugins/NickAuth/messages.pot index 2ce7e06f6..0444522fc 100644 --- a/plugins/NickAuth/messages.pot +++ b/plugins/NickAuth/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/NickCapture/messages.pot b/plugins/NickCapture/messages.pot index 159d62107..2b0aeb713 100644 --- a/plugins/NickCapture/messages.pot +++ b/plugins/NickCapture/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Nickometer/messages.pot b/plugins/Nickometer/messages.pot index 9303467ff..75f19c327 100644 --- a/plugins/Nickometer/messages.pot +++ b/plugins/Nickometer/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Note/messages.pot b/plugins/Note/messages.pot index e5fbf09fc..9dd5c765d 100644 --- a/plugins/Note/messages.pot +++ b/plugins/Note/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Owner/messages.pot b/plugins/Owner/messages.pot index cbb3f2721..2e0292b4f 100644 --- a/plugins/Owner/messages.pot +++ b/plugins/Owner/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Plugin/messages.pot b/plugins/Plugin/messages.pot index 136cf2760..5fe2f616d 100644 --- a/plugins/Plugin/messages.pot +++ b/plugins/Plugin/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PluginDownloader/messages.pot b/plugins/PluginDownloader/messages.pot index ecc96df21..8724eb068 100644 --- a/plugins/PluginDownloader/messages.pot +++ b/plugins/PluginDownloader/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Praise/messages.pot b/plugins/Praise/messages.pot index b55645b01..5bac52e63 100644 --- a/plugins/Praise/messages.pot +++ b/plugins/Praise/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Protector/messages.pot b/plugins/Protector/messages.pot index b929d19f8..d7477e709 100644 --- a/plugins/Protector/messages.pot +++ b/plugins/Protector/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Quote/messages.pot b/plugins/Quote/messages.pot index 1f0d7607f..f67905119 100644 --- a/plugins/Quote/messages.pot +++ b/plugins/Quote/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/QuoteGrabs/messages.pot b/plugins/QuoteGrabs/messages.pot index bf9942b23..981ce7af8 100644 --- a/plugins/QuoteGrabs/messages.pot +++ b/plugins/QuoteGrabs/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RSS/messages.pot b/plugins/RSS/messages.pot index 96d634e25..ab3420f6d 100644 --- a/plugins/RSS/messages.pot +++ b/plugins/RSS/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Relay/messages.pot b/plugins/Relay/messages.pot index 40be22e1b..b59df159b 100644 --- a/plugins/Relay/messages.pot +++ b/plugins/Relay/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Reply/messages.pot b/plugins/Reply/messages.pot index 6e7b3e7f7..08091dc58 100644 --- a/plugins/Reply/messages.pot +++ b/plugins/Reply/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Scheduler/messages.pot b/plugins/Scheduler/messages.pot index d8f8e99ec..d14bc54b8 100644 --- a/plugins/Scheduler/messages.pot +++ b/plugins/Scheduler/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Seen/messages.pot b/plugins/Seen/messages.pot index fe74b6a71..297394875 100644 --- a/plugins/Seen/messages.pot +++ b/plugins/Seen/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Services/messages.pot b/plugins/Services/messages.pot index 2befe7341..d66143aca 100644 --- a/plugins/Services/messages.pot +++ b/plugins/Services/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ShrinkUrl/messages.pot b/plugins/ShrinkUrl/messages.pot index 19fcf367b..64cf12687 100644 --- a/plugins/ShrinkUrl/messages.pot +++ b/plugins/ShrinkUrl/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Status/messages.pot b/plugins/Status/messages.pot index fc8b84a22..83bdeefc6 100644 --- a/plugins/Status/messages.pot +++ b/plugins/Status/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/String/messages.pot b/plugins/String/messages.pot index c2192f30c..1126a6f40 100644 --- a/plugins/String/messages.pot +++ b/plugins/String/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Success/messages.pot b/plugins/Success/messages.pot index 92c2f3aeb..c3f94568a 100644 --- a/plugins/Success/messages.pot +++ b/plugins/Success/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Time/messages.pot b/plugins/Time/messages.pot index 95e2f3a72..9277d118c 100644 --- a/plugins/Time/messages.pot +++ b/plugins/Time/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Todo/messages.pot b/plugins/Todo/messages.pot index 39cc0c3cc..5326a31f8 100644 --- a/plugins/Todo/messages.pot +++ b/plugins/Todo/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Topic/messages.pot b/plugins/Topic/messages.pot index abbc68405..405601dd7 100644 --- a/plugins/Topic/messages.pot +++ b/plugins/Topic/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/URL/messages.pot b/plugins/URL/messages.pot index d97a5bc7d..e7e8eb1f5 100644 --- a/plugins/URL/messages.pot +++ b/plugins/URL/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Unix/messages.pot b/plugins/Unix/messages.pot index 6e830a071..204928842 100644 --- a/plugins/Unix/messages.pot +++ b/plugins/Unix/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/User/messages.pot b/plugins/User/messages.pot index d21141c9e..817d15a5a 100644 --- a/plugins/User/messages.pot +++ b/plugins/User/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Utilities/messages.pot b/plugins/Utilities/messages.pot index 22dc8fbb3..272c8481e 100644 --- a/plugins/Utilities/messages.pot +++ b/plugins/Utilities/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:24+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Web/messages.pot b/plugins/Web/messages.pot index 4269e9ce0..ac44b9874 100644 --- a/plugins/Web/messages.pot +++ b/plugins/Web/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:21+EET\n" +"POT-Creation-Date: 2014-03-22 12:23+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 93f470185f6d7b8d4d987277051f48e5bb2e7b09 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 12:44:23 +0200 Subject: [PATCH 11/54] NickAuth: update l10n-fi. --- plugins/NickAuth/locales/fi.po | 42 +++++++++++++++++++--------------- plugins/NickAuth/messages.pot | 2 +- 2 files changed, 24 insertions(+), 20 deletions(-) diff --git a/plugins/NickAuth/locales/fi.po b/plugins/NickAuth/locales/fi.po index eb31ba09c..cfa5164a9 100644 --- a/plugins/NickAuth/locales/fi.po +++ b/plugins/NickAuth/locales/fi.po @@ -5,25 +5,24 @@ msgid "" msgstr "" "Project-Id-Version: NickAuth plugin in Limnoria\n" -"POT-Creation-Date: 2012-11-04 11:10+EET\n" -"PO-Revision-Date: 2012-11-04 11:28+0200\n" -"Last-Translator: Mikaela Suomalainen \n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" +"PO-Revision-Date: 2014-03-22 12:44+0200\n" +"Last-Translator: Mikaela Suomalainen \n" "Language-Team: suomi <>\n" +"Language: fi_FI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" -"X-Poedit-Language: Finnish\n" -"X-Poedit-Country: FINLAND\n" "Plural-Forms: \n" -"X-Generator: Gtranslator 2.91.5\n" +"X-Generator: Poedit 1.5.4\n" #: plugin.py:47 msgid "Support authentication based on nicks and network services." -msgstr "Supybotille tunnistautuminen perustuen nimimerkkeihin ja verkkopalveluihin." +msgstr "" +"Supybotille tunnistautuminen perustuen nimimerkkeihin ja verkkopalveluihin." -#: plugin.py:54 -#: plugin.py:59 +#: plugin.py:54 plugin.py:59 msgid "You are not authenticated." msgstr "Et ole tunnistautunut." @@ -44,7 +43,8 @@ msgstr "" "[] \n" "\n" "Lisää omistamiin nimimerkkeihin\n" -" . Tämä nimimerkki täytyy rekisteröidä verkkopalveluille, jotta sillä\n" +" . Tämä nimimerkki täytyy rekisteröidä verkkopalveluille, jotta " +"sillä\n" " voidaan tunnistautua. on oletuksena nykyinen verkko." #: plugin.py:80 @@ -82,11 +82,15 @@ msgstr "" " Luettelee nimimerkit .\n" " on oletuksena nykyinen verkko." -#: plugin.py:125 -msgid "You have no recognized nick on this network." -msgstr "Sinulla ei ole tunnistettua nimimerkkiä tässä verkossa." +#: plugin.py:119 +msgid "You are not identified and is not given." +msgstr "Et ole tunnistautunut, etkä antanut parametriä." -#: plugin.py:132 +#: plugin.py:129 +msgid "You have no recognized nick on this network." +msgstr "Sinulla ei ole tunnettua nimimerkkiä tässä verkossa." + +#: plugin.py:136 msgid "" "takes no argument\n" "\n" @@ -96,14 +100,14 @@ msgid "" msgstr "" "ei ota parametrejä\n" "\n" -" Yrittää tunnistaa sinut käyttäen verkkopalveluita.\n" -" Mikäli et saa vastausta, se tarkoittaa ettet ole tunnistautunut verkkopalveluille." +" Yrittää tunnistaa käyttäjän käyttäen verkkopalveluita.\n" +" Mikäli et saa vastausta, se tarkoittaa ettet ole tunnistautunut " +"verkkopalveluille." -#: plugin.py:158 +#: plugin.py:162 msgid "You are now authenticated as %s." msgstr "Olet nyt tunnistautunut käyttäjäksi %s." -#: plugin.py:160 +#: plugin.py:164 msgid "No user has this nick on this network." msgstr "Yhdelläkään käyttäjällä ei ole nimimerkkiä tässä verkossa." - diff --git a/plugins/NickAuth/messages.pot b/plugins/NickAuth/messages.pot index 0444522fc..ec7c01e42 100644 --- a/plugins/NickAuth/messages.pot +++ b/plugins/NickAuth/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 3dc73165886151ba76234d2fa1454d250885f740 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 12:47:03 +0200 Subject: [PATCH 12/54] Admin: update l10n-fi. --- plugins/Admin/locales/fi.po | 120 +++++++++++++++++++++--------------- plugins/Admin/messages.pot | 2 +- 2 files changed, 70 insertions(+), 52 deletions(-) diff --git a/plugins/Admin/locales/fi.po b/plugins/Admin/locales/fi.po index 79a2e5f86..e71c980fe 100644 --- a/plugins/Admin/locales/fi.po +++ b/plugins/Admin/locales/fi.po @@ -5,17 +5,16 @@ msgid "" msgstr "" "Project-Id-Version: Finnish translation of Admin plugin in Supybot\n" -"POT-Creation-Date: 2011-10-30 19:20+CET\n" -"PO-Revision-Date: 2011-10-31 16:25+0200\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" +"PO-Revision-Date: 2014-03-22 12:46+0200\n" "Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" -"Language: \n" +"Language: fi_FI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" -"X-Poedit-Language: Finnish\n" -"X-Poedit-Country: FINLAND\n" +"X-Generator: Poedit 1.5.4\n" #: plugin.py:54 msgid "Nick/channel temporarily unavailable." @@ -37,81 +36,87 @@ msgstr "Ei voi liittyä kanavalle %s, se on antanut minulle porttikiellon." msgid "Cannot join %s, my keyword was wrong." msgstr "En voi liittyä kanavalle %s, minun avainsana oli väärä." -#: plugin.py:104 +#: plugin.py:104 plugin.py:113 msgid "Cannot join %s, I'm not identified with NickServ." msgstr "En voi liittyä kanavalle %s, koska en ole tunnistautunut NickServille." -#: plugin.py:134 +#: plugin.py:143 msgid "" " []\n" "\n" -" Tell the bot to join the given channel. If is given, it is used\n" +" Tell the bot to join the given channel. If is given, it is " +"used\n" " when attempting to join the channel.\n" " " msgstr "" " []\n" "\n" -" Käskee botin liittyä annetulle kanavalle. Jos on annettu, sitä käytetään\n" +" Käskee botin liittyä annetulle kanavalle. Jos on annettu, " +"sitä käytetään\n" " yrittäessä liittyä kanavalle.\n" " " -#: plugin.py:147 +#: plugin.py:156 msgid "I'm already too close to maximum number of channels for this network." msgstr "Minä olen jo liian lähellä kanavien maksimimäärää tässä verkossa." -#: plugin.py:156 +#: plugin.py:165 msgid "" "takes no arguments\n" "\n" -" Returns the channels the bot is on. Must be given in private, in order\n" +" Returns the channels the bot is on. Must be given in private, in " +"order\n" " to protect the secrecy of secret channels.\n" " " msgstr "" "Ei ota parametrejä\n" "\n" -" Palauttaa listan kanavista, joilla botti on. Täytyy antaa yksityisviestillä salaistenkanavien\n" +" Palauttaa listan kanavista, joilla botti on. Täytyy antaa " +"yksityisviestillä salaistenkanavien\n" " salaisuuden suojelemiseksi.\n" " " -#: plugin.py:166 +#: plugin.py:175 msgid "I'm not currently in any channels." msgstr "En juuri nyt ole millään kanavalla." -#: plugin.py:172 +#: plugin.py:181 msgid "My connection is restricted, I can't change nicks." msgstr "Minun yhteyteni on rajoitettu. En voi vaihtaa nimimerkkiä." -#: plugin.py:179 +#: plugin.py:188 msgid "Someone else is already using that nick." msgstr "Joku muu käyttää jo tuota nimimerkkiä." -#: plugin.py:186 +#: plugin.py:195 msgid "That nick is currently banned." msgstr "Tuolla nimimerkillä on tällähetkellä porttikielto." -#: plugin.py:193 +#: plugin.py:202 msgid "I can't change nicks, the server said %q." msgstr "Minä en voi vaihtaa nimimerkkiä, koska palvelin sanoi %q" -#: plugin.py:207 +#: plugin.py:216 msgid "" -"[]\n" +"[] []\n" "\n" " Changes the bot's nick to . If no nick is given, returns the\n" " bot's current nick.\n" " " msgstr "" -"[]\n" +"[] []\n" "\n" -" Vaihtaa botin nimimerkin . Jos nimimerkkiä ei ole annettu, palauttaa\n" -" botin nykyisen nimimerkin.\n" +" Vaihtaa botin nimimerkin . Mikäli nimimerkkiä ei anneta, " +"botin nykyinen\n" +" nimimerkki palautetaan.\n" " " -#: plugin.py:222 +#: plugin.py:233 msgid "" "[] []\n" "\n" -" Tells the bot to part the list of channels you give it. is\n" +" Tells the bot to part the list of channels you give it. " +"is\n" " only necessary if you want the bot to part a channel other than the\n" " current channel. If is specified, use it as the part\n" " message.\n" @@ -125,73 +130,87 @@ msgstr "" " poistumisviestissä.\n" " " -#: plugin.py:240 +#: plugin.py:251 msgid "I'm not in %s." msgstr "Minä en ole kanavalla %s." -#: plugin.py:252 +#: plugin.py:263 msgid "" " \n" "\n" -" Gives the user specified by (or the user to whom \n" +" Gives the user specified by (or the user to whom " +"\n" " currently maps) the specified capability \n" " " msgstr "" " \n" "\n" -" Antaa määrittämälle käyttäjälle (tai käyttäjälle jonka \n" +" Antaa määrittämälle käyttäjälle (tai käyttäjälle jonka " +"\n" " ilmoittaa) määritetyn valtuuden \n" " " -#: plugin.py:272 -msgid "The \"owner\" capability can't be added in the bot. Use the supybot-adduser program (or edit the users.conf file yourself) to add an owner capability." -msgstr "\"Owner\" valtuutta ei voi lisätä botissa. Käytä supybot-adduser ohjelmaa (tai muokkaa users.conf tiedostoa itse) lisätäksesi owner valtuuden." - #: plugin.py:283 +msgid "" +"The \"owner\" capability can't be added in the bot. Use the supybot-adduser " +"program (or edit the users.conf file yourself) to add an owner capability." +msgstr "" +"\"Owner\" valtuutta ei voi lisätä botissa. Käytä supybot-adduser ohjelmaa " +"(tai muokkaa users.conf tiedostoa itse) lisätäksesi owner valtuuden." + +#: plugin.py:294 msgid "You can't add capabilities you don't have." msgstr "Et voi lisätä valtuuksia, joita sinulla ei ole." -#: plugin.py:288 +#: plugin.py:299 msgid "" " \n" "\n" " Takes from the user specified by (or the user to whom\n" -" currently maps) the specified capability \n" +" currently maps) the specified capability " +"\n" " " msgstr "" " \n" "\n" -" Ottaa määrittämältä käyttäjältä (tai käyttäjältä johon\n" +" Ottaa määrittämältä käyttäjältä (tai käyttäjältä " +"johon\n" " sopii) määritetyn valtuuden \n" " " -#: plugin.py:300 +#: plugin.py:311 msgid "That user doesn't have that capability." msgstr "Tuolla käyttäjällä ei tuota valtuutta." -#: plugin.py:302 +#: plugin.py:313 msgid "You can't remove capabilities you don't have." msgstr "Sinä et voi poistaa valtuuksia, joita sinulla ei ole." -#: plugin.py:310 +#: plugin.py:321 msgid "" " []\n" "\n" " This will set a persistent ignore on or the hostmask\n" -" currently associated with . is an optional argument\n" -" specifying when (in \"seconds from now\") the ignore will expire; if\n" +" currently associated with . is an optional " +"argument\n" +" specifying when (in \"seconds from now\") the ignore will " +"expire; if\n" " it isn't given, the ignore will never automatically expire.\n" " " msgstr "" " []\n" "\n" -" Tämä asettaa pysyvän huomiotta jättämisen tai hostmaskiin,\n" -" joka on tällä hetkellä yhdistetty . on vaihtoehtoinen paremetri,\n" -" joka määrittää (\"sekuntit\") joiden jälkeen huomiotta jättäminen poistetaan; jos\n" -" sitä ei ole annettu, huomiotta jättäminen ei vanhene ikinä automaattisesti.\n" +" Tämä asettaa pysyvän huomiotta jättämisen tai " +"hostmaskiin,\n" +" joka on tällä hetkellä yhdistetty . on " +"vaihtoehtoinen paremetri,\n" +" joka määrittää (\"sekuntit\") joiden jälkeen huomiotta jättäminen " +"poistetaan; jos\n" +" sitä ei ole annettu, huomiotta jättäminen ei vanhene ikinä " +"automaattisesti.\n" " " -#: plugin.py:323 +#: plugin.py:334 msgid "" "\n" "\n" @@ -205,11 +224,11 @@ msgstr "" " hostmaskista joka on tällä hetkellä yhdistetty .\n" " " -#: plugin.py:332 +#: plugin.py:343 msgid "%s wasn't in the ignores database." msgstr "%s ei ollut huomiotta jätettävien tietokannassa." -#: plugin.py:337 +#: plugin.py:348 msgid "" "takes no arguments\n" "\n" @@ -221,11 +240,11 @@ msgstr "" " Luetteloi hostmaskit jotka ovat botin huomiotta jättämis listalla.\n" " " -#: plugin.py:345 +#: plugin.py:356 msgid "I'm not currently globally ignoring anyone." msgstr "En tällä hetkellä jätä ketään huomioitta globaalisti." -#: plugin.py:351 +#: plugin.py:360 msgid "" "takes no arguments\n" "\n" @@ -236,4 +255,3 @@ msgstr "" "\n" " Tyhjentää nykyisen lähetysjonon tälle verkolle.\n" " " - diff --git a/plugins/Admin/messages.pot b/plugins/Admin/messages.pot index 29e39a289..3fc172747 100644 --- a/plugins/Admin/messages.pot +++ b/plugins/Admin/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From ff75622725872240932a69640b0089db7d1da232 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 12:49:57 +0200 Subject: [PATCH 13/54] Ctcp: update l10n-fi. --- plugins/Ctcp/locales/fi.po | 56 ++++++++++++++++++++------------------ plugins/Ctcp/messages.pot | 2 +- 2 files changed, 30 insertions(+), 28 deletions(-) diff --git a/plugins/Ctcp/locales/fi.po b/plugins/Ctcp/locales/fi.po index e373cb20e..7ccd4b46d 100755 --- a/plugins/Ctcp/locales/fi.po +++ b/plugins/Ctcp/locales/fi.po @@ -5,51 +5,53 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2011-02-26 09:49+CET\n" -"PO-Revision-Date: 2011-12-23 13:36+0200\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" +"PO-Revision-Date: 2014-03-22 12:49+0200\n" "Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 1.5.4\n" -#: plugin.py:77 -msgid "\001PING ?(.*)\001" -msgstr "\001PING ?(.*)\001" +#: plugin.py:81 +msgid "^PING(?: (.+))?$" +msgstr "PING ?(.*)" -#: plugin.py:86 -msgid "\001VERSION\001" -msgstr "\001VERSION\001" +#: plugin.py:90 +msgid "^VERSION$" +msgstr "^VERSION$" -#: plugin.py:91 -msgid "\001USERINFO\001" -msgstr "\001USERINFO\001" +#: plugin.py:95 +msgid "^USERINFO$" +msgstr "^USERINFO$" -#: plugin.py:96 -msgid "\001TIME\001" -msgstr "\001TIME\001" +#: plugin.py:100 +msgid "^TIME$" +msgstr "^TIME$" -#: plugin.py:101 -msgid "\001FINGER\001" -msgstr "\001FINGER\001" +#: plugin.py:105 +msgid "^FINGER$" +msgstr "^FINGER$" -#: plugin.py:104 +#: plugin.py:108 msgid "Supybot, the best Python IRC bot in existence!" -msgstr "Supybot, paras Python IRC botti, joka on olemassa!" +msgstr "Supybot, paras Pythonilla toteutettu IRC-botti, joka on olemassa!" -#: plugin.py:107 -msgid "\001SOURCE\001" -msgstr "\001SOURCE\001" +#: plugin.py:111 +msgid "^SOURCE$" +msgstr "^SOURCE$" -#: plugin.py:123 +#: plugin.py:127 +#, fuzzy msgid "" "[] [--nicks]\n" "\n" " Sends a CTCP VERSION to , 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" +" 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" " " @@ -58,8 +60,8 @@ msgstr "" "\n" " Lähettää CTCP VERSION , palauttaen \n" " palaavat versioketjut. Se odottaa 10 sekuntia ennen kuin palauttaa\n" -" versiot, jotka vastaanotettiin tuolloin. Jos --nicks on annettu, nimimerkit\n" +" versiot, jotka vastaanotettiin tuolloin. Jos --nicks on annettu, " +"nimimerkit\n" " liitetään versioketjuihin; muutoin vain versioketjut\n" " annetaan.\n" " " - diff --git a/plugins/Ctcp/messages.pot b/plugins/Ctcp/messages.pot index 7949ef75f..aaaf5c8bc 100644 --- a/plugins/Ctcp/messages.pot +++ b/plugins/Ctcp/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From cefc20c0fe4c9dc0aa4013d04f211994e51e5482 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 12:59:43 +0200 Subject: [PATCH 14/54] Topic: update l10n-fi. --- plugins/Topic/locales/fi.po | 252 ++++++++++++++++++++++-------------- plugins/Topic/messages.pot | 2 +- 2 files changed, 159 insertions(+), 95 deletions(-) diff --git a/plugins/Topic/locales/fi.po b/plugins/Topic/locales/fi.po index ab5c1338c..3b7b8e008 100644 --- a/plugins/Topic/locales/fi.po +++ b/plugins/Topic/locales/fi.po @@ -6,19 +6,21 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2012-07-29 11:54+CEST\n" -"PO-Revision-Date: 2012-08-04 15:43+0200\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" +"PO-Revision-Date: 2014-03-22 12:59+0200\n" "Last-Translator: Mikaela Suomalainen \n" "Language-Team: Finnish <>\n" -"Language: \n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" +"X-Generator: Poedit 1.5.4\n" #: config.py:45 -msgid "Value must include $topic, otherwise the actual topic would be left out." +msgid "" +"Value must include $topic, otherwise the actual topic would be left out." msgstr "Arvon täytyy sisältää $topic, muutoin itse aihe jätettäisiin pois." #: config.py:50 @@ -32,7 +34,8 @@ msgstr "" #: config.py:53 msgid "" "Determines what format is used to add\n" -" topics in the topic. All the standard substitutes apply, in addition to\n" +" topics in the topic. All the standard substitutes apply, in addition " +"to\n" " \"$topic\" for the topic itself." msgstr "" "Määrittää mitä muotoa käytetään lisäämään\n" @@ -43,12 +46,15 @@ msgstr "" msgid "" "Determines whether the bot will recognize the\n" " TOPICLEN value sent to it by the server and thus refuse to send TOPICs\n" -" longer than the TOPICLEN. These topics are likely to be truncated by the\n" +" longer than the TOPICLEN. These topics are likely to be truncated by " +"the\n" " server anyway, so this defaults to True." msgstr "" "Määrittää tunnistaako botti\n" -" TOPICLEN arvon, jonka palvelin on lähettänyt sille ja näin kieltäytyy asettamasta pidempiä aiheita, \n" -" kuin TOPICLEN. Nämä aiheet tulisivat muutenkin palvelimen lyhentämiksi, joten\n" +" TOPICLEN arvon, jonka palvelin on lähettänyt sille ja näin kieltäytyy " +"asettamasta pidempiä aiheita, \n" +" kuin TOPICLEN. Nämä aiheet tulisivat muutenkin palvelimen lyhentämiksi, " +"joten\n" " tämä on oletuksena True." #: config.py:62 @@ -59,7 +65,15 @@ msgstr "" "Määrittää mikä on oletus aihe kanavalle. \n" " 'Default' komento käyttää tätä." -#: config.py:66 +#: config.py:65 +msgid "" +"Determines whether the bot will set the topic\n" +" every time it joins, or only if the topic is empty." +msgstr "" +"Määrittää asettaako botti aiheen aina liittyessään vai vain aiheen ollessa " +"tyhjä." + +#: config.py:69 msgid "" "Determines the number of previous\n" " topics to keep around in case the undo command is called." @@ -67,7 +81,7 @@ msgstr "" "Määrittää edellisten aiheiden määrän, jotka säilytetään siltä varalta, että\n" " 'undo' komentoa käytetään." -#: config.py:69 +#: config.py:72 msgid "" "Determines the\n" " capabilities required (if any) to make any topic changes,\n" @@ -89,7 +103,9 @@ msgstr "En tällä hetkellä ole kanavalla %s." #: plugin.py:61 msgid "I can't change the topic, I'm not opped and %s is +t." -msgstr "En voi vaihtaa aihetta, koska en ole kanavaoperaattori ja kanavalla %s on tila +t." +msgstr "" +"En voi vaihtaa aihetta, koska en ole kanavaoperaattori ja kanavalla %s on " +"tila +t." #: plugin.py:68 msgid "The topic must not include %q." @@ -104,10 +120,13 @@ msgid "There are no topics in %s." msgstr "Kanavalla %s ei ole aiheita." #: plugin.py:200 -msgid "That topic is too long for this server (maximum length: %i; this topic: %i)." -msgstr "Tuo aihe on liian pitkä tälle palvelimelle (maksimi pituus: %i; tämä aihe: %i)." +msgid "" +"That topic is too long for this server (maximum length: %i; this topic: %i)." +msgstr "" +"Tuo aihe on liian pitkä tälle palvelimelle (maksimi pituus: %i; tämä aihe: " +"%i)." -#: plugin.py:213 +#: plugin.py:219 msgid "" "Check if the user has any of the required capabilities to manage\n" " the channel topic.\n" @@ -122,31 +141,36 @@ msgstr "" "Tarkista onko käyttäjällä valtuudet, jotka on vaadittu\n" " kanavan aiheen hallintaan.\n" "\n" -" Lista vaadituista valtuuksista on kanava-asetusarvossa requireManageCapability\n" +" Lista vaadituista valtuuksista on kanava-asetusarvossa " +"requireManageCapability\n" "\n" -" Salli myös jos käyttäjä on kanavaoperaattori, koska hän voisi vaihtaa aiheen\n" +" Salli myös jos käyttäjä on kanavaoperaattori, koska hän voisi " +"vaihtaa aiheen\n" " muutenkin manuaalisesti.\n" " " -#: plugin.py:267 +#: plugin.py:276 msgid "" "[]\n" "\n" -" Returns the topic for . is only necessary if the\n" +" Returns the topic for . is only necessary if " +"the\n" " message isn't sent in the channel itself.\n" " " msgstr "" "[]\n" "\n" -" Palauttaa aiheen. on vaadittu vain, jos viestiä ei lähetetä\n" +" Palauttaa aiheen. on vaadittu vain, jos viestiä " +"ei lähetetä\n" " kanavalla itsellään.\n" " " -#: plugin.py:278 +#: plugin.py:287 msgid "" "[] \n" "\n" -" Adds to the topics for . is only necessary\n" +" Adds to the topics for . is only " +"necessary\n" " if the message isn't sent in the channel itself.\n" " " msgstr "" @@ -156,13 +180,14 @@ msgstr "" " viestiä ei lähetetä kanavalla itsellään.\n" " " -#: plugin.py:293 +#: plugin.py:302 msgid "" "[] \n" "\n" " Adds to the topics for . If the topic is too long\n" " for the server, topics will be popped until there is enough room.\n" -" is only necessary if the message isn't sent in the channel\n" +" is only necessary if the message isn't sent in the " +"channel\n" " itself.\n" " " msgstr "" @@ -174,7 +199,7 @@ msgstr "" " itsellään.\n" " " -#: plugin.py:310 +#: plugin.py:319 msgid "" "[] \n" "\n" @@ -186,11 +211,12 @@ msgstr "" " Korvaa aiheen .\n" " " -#: plugin.py:324 +#: plugin.py:333 msgid "" "[] \n" "\n" -" Adds to the topics for at the beginning of the topics\n" +" Adds to the topics for at the beginning of the " +"topics\n" " currently on . is only necessary if the message\n" " isn't sent in the channel itself.\n" " " @@ -198,35 +224,39 @@ msgstr "" "[] \n" "\n" " Lisää aiheisiin \n" -" sillä hetkellä olevien aiheiden alkuun. on vaadittu vain, jos viestiä ei lähetetä \n" +" sillä hetkellä olevien aiheiden alkuun. on " +"vaadittu vain, jos viestiä ei lähetetä \n" " kanavalla itsellään.\n" " " -#: plugin.py:340 +#: plugin.py:349 msgid "" "[]\n" "\n" -" Shuffles the topics in . is only necessary if the\n" +" Shuffles the topics in . is only necessary if " +"the\n" " message isn't sent in the channel itself.\n" " " msgstr "" "[]\n" "\n" -" Sekoittaa aiheet . on vaadittu vain, jos viestiä ei lähetetä \n" +" Sekoittaa aiheet . on vaadittu vain, jos " +"viestiä ei lähetetä \n" " kanavalla itsellään.\n" " " -#: plugin.py:350 +#: plugin.py:359 msgid "I can't shuffle 1 or fewer topics." msgstr "En voi sekoittaa yhtä tai vähempää aihetta." -#: plugin.py:362 +#: plugin.py:371 msgid "" "[] [ ...]\n" "\n" " Reorders the topics from in the order of the specified\n" " arguments. is a one-based index into the topics.\n" -" is only necessary if the message isn't sent in the channel\n" +" is only necessary if the message isn't sent in the " +"channel\n" " itself.\n" " " msgstr "" @@ -238,43 +268,48 @@ msgstr "" " itsellään.\n" " " -#: plugin.py:375 +#: plugin.py:384 msgid "I cannot reorder 1 or fewer topics." msgstr "En voi uudelleen järjestää yhtä tai vähempää aihetta." -#: plugin.py:377 +#: plugin.py:386 msgid "All topic numbers must be specified." msgstr "Kaikki numerot täytyy määrittää." -#: plugin.py:379 +#: plugin.py:388 msgid "Duplicate topic numbers cannot be specified." msgstr "Kaksoiskappaleita aiheen numeroista ei voi määrittää." -#: plugin.py:387 +#: plugin.py:396 msgid "" "[]\n" "\n" -" Returns a list of the topics in , prefixed by their indexes.\n" -" Mostly useful for topic reordering. is only necessary if the\n" +" Returns a list of the topics in , prefixed by their " +"indexes.\n" +" Mostly useful for topic reordering. is only necessary if " +"the\n" " message isn't sent in the channel itself.\n" " " msgstr "" "[]\n" "\n" -" Palauttaa listan aiheista , etuliitettyinä indekseihinsä.\n" -" Enimmäkseen hyödyllinen aiheen uudelleenjärjestämisessä. on vaadittu vain jos viestiä ei lähetetä \n" +" Palauttaa listan aiheista , etuliitettyinä " +"indekseihinsä.\n" +" Enimmäkseen hyödyllinen aiheen uudelleenjärjestämisessä. " +"on vaadittu vain jos viestiä ei lähetetä \n" " kanavalla itsellään.\n" " " -#: plugin.py:396 +#: plugin.py:405 msgid "%i: %s" msgstr "%i: %s" -#: plugin.py:403 +#: plugin.py:412 msgid "" "[] \n" "\n" -" Returns topic number from . is a one-based\n" +" Returns topic number from . is a one-" +"based\n" " index into the topics. is only necessary if the message\n" " isn't sent in the channel itself.\n" " " @@ -282,65 +317,77 @@ msgstr "" "[] \n" "\n" " Palauttaa aiheen . on yksi-indexinen\n" -" aiheissa. on vaadittu vain jos viestiä ei lähetetä kanavalla\n" +" aiheissa. on vaadittu vain jos viestiä ei lähetetä " +"kanavalla\n" " itsellään.\n" " " -#: plugin.py:418 +#: plugin.py:424 msgid "" "[] \n" "\n" -" Changes the topic number on according to the regular\n" -" expression . is the one-based index into the topics;\n" +" Changes the topic number on according to the " +"regular\n" +" expression . is the one-based index into the " +"topics;\n" " is a regular expression of the form\n" -" s/regexp/replacement/flags. is only necessary if the message\n" +" s/regexp/replacement/flags. is only necessary if the " +"message\n" " isn't sent in the channel itself.\n" " " msgstr "" "[] \n" "\n" -" Vaihtaa aiheen mukaan.\n" +" Vaihtaa aiheen " +"mukaan.\n" " on yksi-indexinen aiheissa;\n" " on säännöllinen lauseke muodossa\n" -" s/säännöllinen lauseke/korvaus/liput. on vaadittu vain jos viestiä ei lähetetä\n" +" s/säännöllinen lauseke/korvaus/liput. on vaadittu vain jos " +"viestiä ei lähetetä\n" " kanavalla itsellään.\n" " " -#: plugin.py:436 +#: plugin.py:442 msgid "" "[] [] \n" "\n" -" Sets the topic to be . If no is given, this\n" +" Sets the topic to be . If no is given, " +"this\n" " sets the entire topic. is only necessary if the message\n" " isn't sent in the channel itself.\n" " " msgstr "" "[] [] \n" "\n" -" Asettaa aiheen . Jos ei ole annettu, tämä\n" -" asettaa koko aiheen. on vaadittu vain, jos viestiä ei lähetetä\n" +" Asettaa aiheen . Jos ei ole annettu, " +"tämä\n" +" asettaa koko aiheen. on vaadittu vain, jos viestiä ei " +"lähetetä\n" " kanavalla itsellään.\n" " " -#: plugin.py:457 +#: plugin.py:463 msgid "" "[] \n" "\n" " Removes topic from the topic for Topics are\n" -" numbered starting from 1; you can also use negative indexes to refer\n" -" to topics starting the from the end of the topic. is only\n" +" numbered starting from 1; you can also use negative indexes to " +"refer\n" +" to topics starting the from the end of the topic. is " +"only\n" " necessary if the message isn't sent in the channel itself.\n" " " msgstr "" "[] \n" "\n" " Poistaa aiheen aiheesta. Aiheet on numeroitu\n" -" alkaen numerosta 1; voit käyttää negatiivisiä indexejä saadaksesi ne viittaamaan\n" +" alkaen numerosta 1; voit käyttää negatiivisiä indexejä saadaksesi ne " +"viittaamaan\n" " aiheisiin, jotka alkavat lopusta. on vaadittu\n" " vain, jos viestiä ei lähetetä kanavalla itsellään.\n" " " -#: plugin.py:474 +#: plugin.py:480 msgid "" "[]\n" "\n" @@ -350,94 +397,107 @@ msgid "" msgstr "" "[]\n" "\n" -" Lukitsee aiheen (asettaa tilan +t) . on vaadittu vain, jos\n" +" Lukitsee aiheen (asettaa tilan +t) . on " +"vaadittu vain, jos\n" " viestiä ei lähetetä kanavalla itsellään.\n" " " -#: plugin.py:484 +#: plugin.py:490 msgid "lock the topic" msgstr "lukitse aihe" -#: plugin.py:488 +#: plugin.py:494 msgid "" "[]\n" "\n" -" Unlocks the topic (sets the mode -t) in . is only\n" +" Unlocks the topic (sets the mode -t) in . is " +"only\n" " necessary if the message isn't sent in the channel itself.\n" " " msgstr "" "[]\n" "\n" -" Avaa aiheen (asettaa tilan -t) . on vaadittu vain, \n" +" Avaa aiheen (asettaa tilan -t) . on vaadittu " +"vain, \n" " jos viestiä ei lähetetä kanavalla itsellään.\n" " " -#: plugin.py:498 +#: plugin.py:504 msgid "unlock the topic" msgstr "avaa aiheen" -#: plugin.py:502 +#: plugin.py:508 msgid "" "[]\n" "\n" -" Restores the topic to the last topic set by the bot. is only\n" +" Restores the topic to the last topic set by the bot. is " +"only\n" " necessary if the message isn't sent in the channel itself.\n" " " msgstr "" "[]\n" "\n" -" Palauttaa aiheen viimeiseksi aiheeksi, jonka botti on asettanut. on vaadittu\n" +" Palauttaa aiheen viimeiseksi aiheeksi, jonka botti on asettanut. " +" on vaadittu\n" " vain, jos viestiä ei lähetetä kanavalla itsellään.\n" " " -#: plugin.py:513 +#: plugin.py:519 msgid "I haven't yet set the topic in %s." msgstr "En ole vielä asettanut aihetta kanavalla %s." -#: plugin.py:521 +#: plugin.py:527 msgid "" "[]\n" "\n" -" Restores the topic to the one previous to the last topic command that\n" -" set it. is only necessary if the message isn't sent in the\n" +" Restores the topic to the one previous to the last topic command " +"that\n" +" set it. is only necessary if the message isn't sent in " +"the\n" " channel itself.\n" " " msgstr "" "[]\n" "\n" -" Palauttaa aiheen yhdeksi edellisistä aiheista, jotka \"last\" komento on asettanut \n" -" siksi. on vaadittu vain, jos viestiä ei lähetetä kanavalla\n" +" Palauttaa aiheen yhdeksi edellisistä aiheista, jotka \"last\" " +"komento on asettanut \n" +" siksi. on vaadittu vain, jos viestiä ei lähetetä " +"kanavalla\n" " itsellään.\n" " " -#: plugin.py:535 +#: plugin.py:541 msgid "There are no more undos for %s." msgstr "Kanavalle %s ei ole enempää kumouksia." -#: plugin.py:540 +#: plugin.py:546 msgid "" "[]\n" "\n" -" Undoes the last undo. is only necessary if the message isn't\n" +" Undoes the last undo. is only necessary if the message " +"isn't\n" " sent in the channel itself.\n" " " msgstr "" "[]\n" "\n" -" Kumoaa viimeisen kumouksen. on vaadittu vain jos viestiä ei lähetetä\n" +" Kumoaa viimeisen kumouksen. on vaadittu vain jos viestiä " +"ei lähetetä\n" " kanavalla itsellään.\n" " " -#: plugin.py:552 +#: plugin.py:558 msgid "There are no redos for %s." msgstr "Kanavalle %s ei ole enempää kumouksia." -#: plugin.py:557 +#: plugin.py:563 msgid "" "[] \n" "\n" -" Swaps the order of the first topic number and the second topic number.\n" -" is only necessary if the message isn't sent in the channel\n" +" Swaps the order of the first topic number and the second topic " +"number.\n" +" is only necessary if the message isn't sent in the " +"channel\n" " itself.\n" " " msgstr "" @@ -446,11 +506,11 @@ msgstr "" " Vaihtaa ensimmäisen— ja toisen aiheen numeroiden paikkoja.\n" " on vaadittu vain, jos viestiä ei lähetetä kanavalla itsellään." -#: plugin.py:568 +#: plugin.py:574 msgid "I refuse to swap the same topic with itself." msgstr "Kieltäydyn vaihtamasta aiheen paikkaa sen itsensä kanssa." -#: plugin.py:578 +#: plugin.py:584 msgid "" "[]\n" "\n" @@ -461,29 +521,33 @@ msgid "" msgstr "" "[]\n" "\n" -" Tallentaa aiheen , jotta se voidaan palauttaa \"@topic default\"—komennolla\n" -" myöhemmin. on vaadittu vain, jos viestiä ei lähetetä kanavalla itsellään." +" Tallentaa aiheen , jotta se voidaan palauttaa \"@topic default\"—" +"komennolla\n" +" myöhemmin. on vaadittu vain, jos viestiä ei lähetetä kanavalla " +"itsellään." -#: plugin.py:597 +#: plugin.py:603 msgid "" "[]\n" "\n" -" Sets the topic in to the default topic for . The\n" +" Sets the topic in to the default topic for . " +"The\n" " default topic for a channel may be configured via the configuration\n" " variable supybot.plugins.Topic.default.\n" " " msgstr "" "[]\n" "\n" -" Asettaa aiheen . Oletusaihe\n" -" kanavalle voidaan määrittää asetusarvolla \n" -" supybot.plugins.Topic.default.\n" +" Asettaa aiheen oletusaiheeksi. Kanavan oletusaihe " +"voidaan\n" +" määrittää asetuksella supybot.plugins.Topic.default.\n" +" " -#: plugin.py:610 +#: plugin.py:616 msgid "There is no default topic configured for %s." msgstr "Kanavalle %s ei ole määritetty oletusaihetta." -#: plugin.py:616 +#: plugin.py:622 msgid "" "[] \n" "\n" diff --git a/plugins/Topic/messages.pot b/plugins/Topic/messages.pot index 405601dd7..4d8988cde 100644 --- a/plugins/Topic/messages.pot +++ b/plugins/Topic/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 3fc64abe9327eb012fe34bbdef8d8bbfc52667ab Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 13:05:49 +0200 Subject: [PATCH 15/54] Web: update l10n-fi. --- plugins/Web/locales/fi.po | 173 ++++++++++++++++++++++++++------------ plugins/Web/messages.pot | 2 +- 2 files changed, 118 insertions(+), 57 deletions(-) diff --git a/plugins/Web/locales/fi.po b/plugins/Web/locales/fi.po index 4c9bf93f1..cdf9f5e36 100644 --- a/plugins/Web/locales/fi.po +++ b/plugins/Web/locales/fi.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2012-02-15 23:19+CET\n" -"PO-Revision-Date: 2012-03-15 08:50+0200\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" +"PO-Revision-Date: 2014-03-22 13:05+0200\n" "Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 1.5.4\n" #: config.py:50 msgid "" @@ -25,15 +25,38 @@ msgstr "" #: config.py:53 msgid "" +"Determines whether the bot will notfiy the user\n" +" about network exceptions like hostnotfound, timeout ...." +msgstr "" +"Määrittää ilmoitetaanko käyttäjää verkkovirheistä,\n" +" kuten isäntää ei löydy, aikakatkaisu ...." + +#: config.py:56 +msgid "" +"Determines whether the domain name displayed\n" +" by the snarfer will be the original one (posted on IRC) or the target " +"one\n" +" (got after following redirects, if any)." +msgstr "" +"Määrittää onko kaappaajan näyttämä domain nimi se, joka lähetettiin " +"alunperin IRC:ssä\n" +" vai kohde domainin nimi (seuraten uudelleenohjauksia siinä tapauksessa, " +"että niitä on)." + +#: config.py:60 +msgid "" "Determines what URLs matching the given regexp\n" -" will not be snarfed. Give the empty string if you have no URLs that you'd\n" +" will not be snarfed. Give the empty string if you have no URLs that " +"you'd\n" " like to exclude from being snarfed." msgstr "" -"Määrittää mitä säännöllistä lauseketta täsmäävät URL-osoitteet eivät tule kaapatuiksi.\n" -" Anna tyhjä merkkiketju, mikäli sinulla ei ole URL-osoitteita, joiden et haluaisi tulevan\n" +"Määrittää mitä säännöllistä lauseketta täsmäävät URL-osoitteet eivät tule " +"kaapatuiksi.\n" +" Anna tyhjä merkkiketju, mikäli sinulla ei ole URL-osoitteita, joiden et " +"haluaisi tulevan\n" " kaapatuiksi." -#: config.py:59 +#: config.py:72 msgid "" "Determines the maximum number of\n" " bytes the bot will download via the 'fetch' command in this plugin." @@ -41,15 +64,32 @@ msgstr "" "Määrittää enimmäismäärän bittejä, jotka botti lataa \n" " käyttämällä 'fetch' komentoa tässä lisäosassa." -#: plugin.py:71 +#: plugin.py:86 +msgid "" +"Runs a command in a forked process with limited memory resources\n" +" to prevent memory bomb caused by specially crafted http responses." +msgstr "" +"Suorittaa komennon forkatussa prosessissa rajoitetuilla muistiresursseilla\n" +" estääkseen muistipommin, jonka aiheuttavat vartavasten luodut http-" +"vastaukset." + +#: plugin.py:98 +msgid "Page is too big." +msgstr "Sivu on liian suuri." + +#: plugin.py:106 +msgid "Display a nice error instead of \"An error has occurred\"." +msgstr "Näytä kiva virheilmoitus ilmoitukset \"Virhe on tapahtunut\" sijaan." + +#: plugin.py:116 msgid "Add the help for \"@help Web\" here." msgstr "Lisää ohje komennolle \"@help Web\" tähän." -#: plugin.py:107 +#: plugin.py:162 msgid "Title: %s (at %s)" msgstr "Otsikko: %s (sivustolla %s)" -#: plugin.py:114 +#: plugin.py:184 msgid "" "\n" "\n" @@ -63,11 +103,11 @@ msgstr "" " HTTP URL-osoitteet ovat kelvollisia.\n" " " -#: plugin.py:121 +#: plugin.py:194 msgid "%s: %s" msgstr "%s: %s" -#: plugin.py:131 +#: plugin.py:206 msgid "" "\n" "\n" @@ -81,15 +121,16 @@ msgstr "" " vain HTTP URL-osoitteet ovat kelvollisia.\n" " " -#: plugin.py:143 +#: plugin.py:222 msgid "That URL has no specified doctype." msgstr "Tuo URL-osoite ei ole määrittänyt doctypeä." -#: plugin.py:148 +#: plugin.py:229 msgid "" "\n" "\n" -" Returns the Content-Length header of . Only HTTP urls are valid,\n" +" Returns the Content-Length header of . Only HTTP urls are " +"valid,\n" " of course.\n" " " msgstr "" @@ -99,58 +140,42 @@ msgstr "" " vain HTTP URL-osoitteet ovat kelvollisia.\n" " " -#: plugin.py:157 -#: plugin.py:162 +#: plugin.py:241 plugin.py:246 msgid "%u is %S long." msgstr "%u on %S pitkä." -#: plugin.py:164 +#: plugin.py:248 msgid "The server didn't tell me how long %u is but it's longer than %S." -msgstr "Palvelin ei kertonut minulle, kuinka pitkä %u on, mutta se on pidempi kuin %S." +msgstr "" +"Palvelin ei kertonut minulle, kuinka pitkä %u on, mutta se on pidempi kuin " +"%S." -#: plugin.py:173 +#: plugin.py:259 msgid "" -"\n" +"[--no-filter] \n" "\n" " Returns the HTML ... of a URL.\n" +" If --no-filter is given, the bot won't strip special chars (action,\n" +" DCC, ...).\n" " " msgstr "" -"\n" +"[--no-filter] \n" "\n" -" Palauttaa tiedon ... URL-soitteesta.\n" +" Palauttaa ... URL-osoitteen titletageista.\n" +" Jos--no-filter annetaan, erikoismerkkejä (action,\n" +" DCC, ...) ei riisuta.\n" " " -#: plugin.py:188 +#: plugin.py:288 msgid "That URL appears to have no HTML title." msgstr "Tuolla URL-osoitteella ei vaikuta olevan HTTP otsikkoa." -#: plugin.py:190 +#: plugin.py:290 msgid "That URL appears to have no HTML title within the first %S." -msgstr "Tuolla URL-osoitteella ei vaikuta olevan HTML otsikkoa ensinmäisissä %S." - -#: plugin.py:198 -msgid "" -"\n" -"\n" -" Returns Netcraft.com's determination of what operating system and\n" -" webserver is running on the host given.\n" -" " msgstr "" -"\n" -"\n" -" Palauttaa Netcraft.comin määritelmän mitä käyttöjärjestelmää ja\n" -" verkkopalvelinta annettu isäntä käyttää.\n" -" " +"Tuolla URL-osoitteella ei vaikuta olevan HTML otsikkoa ensinmäisissä %S." -#: plugin.py:212 -msgid "No results found for %s." -msgstr "Tuloksia ei löytynyt kohteelle %s." - -#: plugin.py:214 -msgid "The format of page the was odd." -msgstr "Sivun muoto oli omituinen." - -#: plugin.py:219 +#: plugin.py:296 msgid "" "\n" "\n" @@ -162,7 +187,7 @@ msgstr "" " Palauttaa URL lainatun muodon tekstistä.\n" " " -#: plugin.py:228 +#: plugin.py:305 msgid "" "\n" "\n" @@ -174,23 +199,59 @@ msgstr "" " Palauttaa tekstin URL lainaamattomassa muodossa.\n" " " -#: plugin.py:238 +#: plugin.py:317 msgid "" "\n" "\n" " Returns the contents of , or as much as is configured in\n" -" supybot.plugins.Web.fetch.maximum. If that configuration variable is\n" +" supybot.plugins.Web.fetch.maximum. If that configuration variable " +"is\n" " set to 0, this command will be effectively disabled.\n" " " msgstr "" "\n" "\n" -" Palauttaa sisällön, tai niin paljon kuin on määritetty asetuksessa \n" -" supybot.plugins.Web.fetch.maximum. Jos tuo asetusarvo on asetettu arvoon 0, \n" +" Palauttaa sisällön, tai niin paljon kuin on " +"määritetty asetuksessa \n" +" supybot.plugins.Web.fetch.maximum. Jos tuo asetusarvo on asetettu " +"arvoon 0, \n" " tämä komento poistetaan käytöstä.\n" " " -#: plugin.py:246 -msgid "This command is disabled (supybot.plugins.Web.fetch.maximum is set to 0)." -msgstr "Tämä komento on poistettu käytöstä (supybot.plugins.Web.fetch.maximum on asetettu arvoon 0)." +#: plugin.py:328 +msgid "" +"This command is disabled (supybot.plugins.Web.fetch.maximum is set to 0)." +msgstr "" +"Tämä komento on poistettu käytöstä (supybot.plugins.Web.fetch.maximum on " +"asetettu arvoon 0)." +#~ msgid "" +#~ "\n" +#~ "\n" +#~ " Returns the HTML ... of a URL.\n" +#~ " " +#~ msgstr "" +#~ "\n" +#~ "\n" +#~ " Palauttaa tiedon ... URL-soitteesta.\n" +#~ " " + +#~ msgid "" +#~ "\n" +#~ "\n" +#~ " Returns Netcraft.com's determination of what operating system " +#~ "and\n" +#~ " webserver is running on the host given.\n" +#~ " " +#~ msgstr "" +#~ "\n" +#~ "\n" +#~ " Palauttaa Netcraft.comin määritelmän mitä käyttöjärjestelmää ja\n" +#~ " verkkopalvelinta annettu isäntä käyttää.\n" +#~ " " + +#~ msgid "No results found for %s." +#~ msgstr "Tuloksia ei löytynyt kohteelle %s." + +#~ msgid "The format of page the was odd." +#~ msgstr "Sivun muoto oli omituinen." diff --git a/plugins/Web/messages.pot b/plugins/Web/messages.pot index ac44b9874..c61a2a332 100644 --- a/plugins/Web/messages.pot +++ b/plugins/Web/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 18f8ce6a3a7e61c31e87922d1a68c8ed1137e14a Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 13:08:23 +0200 Subject: [PATCH 16/54] Config: update l10n-fi. --- plugins/Config/locales/fi.po | 52 ++++++++++++++++++++++++++---------- plugins/Config/messages.pot | 2 +- 2 files changed, 39 insertions(+), 15 deletions(-) diff --git a/plugins/Config/locales/fi.po b/plugins/Config/locales/fi.po index d060de220..c14ce1b73 100644 --- a/plugins/Config/locales/fi.po +++ b/plugins/Config/locales/fi.po @@ -1,16 +1,15 @@ msgid "" msgstr "" "Project-Id-Version: Finnish translation of Config plugin in Supybot\n" -"POT-Creation-Date: 2010-12-12 15:02+CET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: \n" "Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" -"Language: \n" +"Language: fi_FI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Poedit-Language: Finnish\n" -"X-Poedit-Country: FINLAND\n" +"X-Generator: Poedit 1.5.4\n" #: plugin.py:103 msgid "configuration variable" @@ -26,8 +25,10 @@ msgid "" "\n" " Returns the configuration variables available under the given\n" " configuration . If a variable has values under it, it is\n" -" preceded by an '@' sign. If a variable is a 'ChannelValue', that is,\n" -" it can be separately configured for each channel using the 'channel'\n" +" preceded by an '@' sign. If a variable is a 'ChannelValue', that " +"is,\n" +" it can be separately configured for each channel using the " +"'channel'\n" " command in this plugin, it is preceded by an '#' sign.\n" " " msgstr "" @@ -65,14 +66,19 @@ msgid "Global: %s; %s: %s" msgstr "Globaali: %s; %s: %s" #: plugin.py:185 -msgid "That registry variable has no value. Use the list command in this plugin to see what variables are available in this group." -msgstr "Sillä rekisteriarvolla ei ole arvoa. Käytä list komentoa tässä lisäosassa nähdäksesi mitä arvoja on saatavilla tässä ryhmässä." +msgid "" +"That registry variable has no value. Use the list command in this plugin to " +"see what variables are available in this group." +msgstr "" +"Sillä rekisteriarvolla ei ole arvoa. Käytä list komentoa tässä lisäosassa " +"nähdäksesi mitä arvoja on saatavilla tässä ryhmässä." #: plugin.py:200 msgid "" "[] []\n" "\n" -" If is given, sets the channel configuration variable for \n" +" If is given, sets the channel configuration variable for " +"\n" " to for . Otherwise, returns the current channel\n" " configuration value of . is only necessary if the\n" " message isn't sent in the channel itself." @@ -85,14 +91,16 @@ msgstr "" "jos viestiä ei lähetetä kanavalla itsellään." #: plugin.py:207 -msgid "That configuration variable is not a channel-specific configuration variable." +msgid "" +"That configuration variable is not a channel-specific configuration variable." msgstr "Tällä asetusarvolla ei ole kanava kohtaista asetusarvoa." #: plugin.py:220 msgid "" " []\n" "\n" -" If is given, sets the value of to . Otherwise,\n" +" If is given, sets the value of to . " +"Otherwise,\n" " returns the current value of . You may omit the leading\n" " \"supybot.\" in the name if you so choose.\n" " " @@ -121,8 +129,12 @@ msgid " (Current value: %s)" msgstr " (Nykyinen arvo: %s)" #: plugin.py:245 -msgid "That configuration group exists, but seems to have no help. Try \"config list %s\" to see if it has any children values." -msgstr "Tuo asetusryhmä on olemassa, mutta sillä ei näytä olevan ohjetta. Käytä komentoa \"config list %s\" nähdäksesi onko sillä yhtään alempia arvoja." +msgid "" +"That configuration group exists, but seems to have no help. Try \"config " +"list %s\" to see if it has any children values." +msgstr "" +"Tuo asetusryhmä on olemassa, mutta sillä ei näytä olevan ohjetta. Käytä " +"komentoa \"config list %s\" nähdäksesi onko sillä yhtään alempia arvoja." #: plugin.py:249 msgid "%s has no help." @@ -160,7 +172,8 @@ msgid "" "\n" " Exports the public variables of your configuration to .\n" " If you want to show someone your configuration file, but you don't\n" -" want that person to be able to see things like passwords, etc., this\n" +" want that person to be able to see things like passwords, etc., " +"this\n" " command will export a \"sanitized\" configuration file suitable for\n" " showing publicly.\n" " " @@ -174,3 +187,14 @@ msgstr "" "julkisesti näyttämiseen.\n" " " +#: plugin.py:289 +msgid "" +"\n" +"\n" +" Resets the configuration variable to its default value.\n" +" " +msgstr "" +"\n" +"\n" +" Palauttaa asetusarvon oletukseksi.\n" +" " diff --git a/plugins/Config/messages.pot b/plugins/Config/messages.pot index e16b5d3ae..123562520 100644 --- a/plugins/Config/messages.pot +++ b/plugins/Config/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 26d3a5096b6020150981b56ebce649231a1a015a Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 13:19:01 +0200 Subject: [PATCH 17/54] Aka: fix first comment in l10n-fi. --- plugins/Aka/locales/fi.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/Aka/locales/fi.po b/plugins/Aka/locales/fi.po index 119a0aa76..0e47fd2c0 100644 --- a/plugins/Aka/locales/fi.po +++ b/plugins/Aka/locales/fi.po @@ -1,6 +1,6 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR ORGANIZATION -# FIRST AUTHOR , YEAR. +# Aka plugin for Limnoria +# Copyright (C) 2014 Limnoria +# Mikaela Suomalainen , 2014. # msgid "" msgstr "" From 933d4d3ffaff2470710c4996a0f457a57536334c Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sat, 22 Mar 2014 11:29:19 +0000 Subject: [PATCH 18/54] RSS: Another attempt at fixing encoding issues. --- plugins/RSS/plugin.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/plugins/RSS/plugin.py b/plugins/RSS/plugin.py index 7807f4b70..6a1959021 100644 --- a/plugins/RSS/plugin.py +++ b/plugins/RSS/plugin.py @@ -150,14 +150,22 @@ class RSS(callbacks.Plugin): if headline[2]: pubDate = ' [%s]' % (headline[2],) if sys.version_info[0] < 3: + try: + import charade.universaldetector + u = charade.universaldetector.UniversalDetector() + u.feed(s) + u.close() + encoding = u.result['encoding'] + except ImportError: + encoding = 'utf8' if isinstance(headline[0], unicode): newheadlines.append(format('%s %u%s', - headline[0].encode('utf-8','replace'), + headline[0].encode(encoding,'replace'), link, pubDate)) else: newheadlines.append(format('%s %u%s', - headline[0].decode('utf-8','replace'), + headline[0] link, pubDate)) else: From 04cf2ca27a207daad8e614b30ce237b1a5f52c1c Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sat, 22 Mar 2014 11:37:52 +0000 Subject: [PATCH 19/54] RSS: Fix typo. --- plugins/RSS/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/RSS/plugin.py b/plugins/RSS/plugin.py index 6a1959021..66f556f16 100644 --- a/plugins/RSS/plugin.py +++ b/plugins/RSS/plugin.py @@ -165,7 +165,7 @@ class RSS(callbacks.Plugin): pubDate)) else: newheadlines.append(format('%s %u%s', - headline[0] + headline[0], link, pubDate)) else: From 06c83cbf14ba142d2b49652b6bf6fd7501b72928 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sat, 22 Mar 2014 11:47:28 +0000 Subject: [PATCH 20/54] RSS: Fix typo (again). --- plugins/RSS/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/RSS/plugin.py b/plugins/RSS/plugin.py index 66f556f16..9482598a1 100644 --- a/plugins/RSS/plugin.py +++ b/plugins/RSS/plugin.py @@ -153,7 +153,7 @@ class RSS(callbacks.Plugin): try: import charade.universaldetector u = charade.universaldetector.UniversalDetector() - u.feed(s) + u.feed(headline[0]) u.close() encoding = u.result['encoding'] except ImportError: From ecadc05c7c361f8b944de420e46a569853687059 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sat, 22 Mar 2014 11:49:48 +0000 Subject: [PATCH 21/54] travis.yml: Remove IRC notifications. --- .travis.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4ffef7335..47252fcff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,8 +13,3 @@ script: - echo $TRAVIS_PYTHON_VERSION - python setup.py install - supybot-test test --plugins-dir=./build/lib*/supybot/plugins/ --no-network --disable-multiprocessing --exclude=./build/lib*/supybot/plugins/Scheduler --exclude=./build/lib*/supybot/plugins/Filter -notifications: - irc: - channels: - - "chat.freenode.net#limnoria" - on_success: change From 0c2ab9d83bf93079483411898b5f494cf21b9951 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sat, 22 Mar 2014 11:56:38 +0000 Subject: [PATCH 22/54] RSS: Another attempt at fixing encoding issues (again). --- plugins/RSS/plugin.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/plugins/RSS/plugin.py b/plugins/RSS/plugin.py index 9482598a1..b8c81a011 100644 --- a/plugins/RSS/plugin.py +++ b/plugins/RSS/plugin.py @@ -150,15 +150,15 @@ class RSS(callbacks.Plugin): if headline[2]: pubDate = ' [%s]' % (headline[2],) if sys.version_info[0] < 3: - try: - import charade.universaldetector - u = charade.universaldetector.UniversalDetector() - u.feed(headline[0]) - u.close() - encoding = u.result['encoding'] - except ImportError: - encoding = 'utf8' if isinstance(headline[0], unicode): + try: + import charade.universaldetector + u = charade.universaldetector.UniversalDetector() + u.feed(headline[0]) + u.close() + encoding = u.result['encoding'] + except ImportError: + encoding = 'utf8' newheadlines.append(format('%s %u%s', headline[0].encode(encoding,'replace'), link, From 0742e94ff8303d2dc4532c15f20fadd6fb2f4eb5 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 14:32:30 +0200 Subject: [PATCH 23/54] Math: update l10n-fi. --- plugins/Math/locales/fi.po | 91 ++++++++++++++++++++++---------------- plugins/Math/messages.pot | 2 +- 2 files changed, 55 insertions(+), 38 deletions(-) diff --git a/plugins/Math/locales/fi.po b/plugins/Math/locales/fi.po index edebd04fb..f19bd2db7 100644 --- a/plugins/Math/locales/fi.po +++ b/plugins/Math/locales/fi.po @@ -5,16 +5,17 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2011-02-26 09:49+CET\n" -"PO-Revision-Date: 2011-06-27 14:08+0200\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" +"PO-Revision-Date: 2014-03-22 14:32+0200\n" "Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 1.5.4\n" -#: plugin.py:52 +#: plugin.py:55 #, fuzzy msgid "" " [] \n" @@ -29,17 +30,17 @@ msgstr "" " Jos jätetään pois, se muuntaa desimaaliksi..\n" " " -#: plugin.py:63 +#: plugin.py:66 #, fuzzy msgid "Invalid for base %s: %s" msgstr "Viallinen baselle %s: %s" -#: plugin.py:69 +#: plugin.py:72 #, fuzzy msgid "Convert a decimal number to another base; returns a string." msgstr "Muuunna desimaaliluku; toiseksi baseksi; palauttaa merkkijonon ." -#: plugin.py:90 +#: plugin.py:93 msgid "" "Convert a number from any base, 2 through 36, to any other\n" " base, 2 through 36. Returns a string." @@ -47,53 +48,65 @@ msgstr "" "Muunna basesta mikä tahansa numero, 2:sta 36:teen, millä tahansa muulla\n" " basella , 2:sta 36:teen. Palauttaa merkkiketjun." -#: plugin.py:157 +#: plugin.py:167 #, fuzzy msgid "" "\n" "\n" -" Returns the value of the evaluated . The syntax is\n" +" Returns the value of the evaluated . The syntax " +"is\n" " Python syntax; the type of arithmetic is floating point. Floating\n" -" point arithmetic is used in order to prevent a user from being able to\n" -" crash to the bot with something like '10**10**10**10'. One consequence\n" +" point arithmetic is used in order to prevent a user from being able " +"to\n" +" crash to the bot with something like '10**10**10**10'. One " +"consequence\n" " is that large values such as '10**24' might not be exact.\n" " " msgstr "" "\n" "\n" " Palauttaa kehittyneen arvon. Syntaksi\n" -" on Pythonin syntaksi; aritmeettisen leijumispisteen tyyppi. Leijuvan pisteen\n" -" aritmeettiä käytetään estämään käyttäjää kaatamasta bottia, jollakin\n" +" on Pythonin syntaksi; aritmeettisen leijumispisteen tyyppi. Leijuvan " +"pisteen\n" +" aritmeettiä käytetään estämään käyttäjää kaatamasta bottia, " +"jollakin\n" " kuin '10**10**10**10'. Yksi sattuma on suurilla arvoilla, kuin\n" " '10**24' ei ehkä ole tarkka.\n" " " -#: plugin.py:166 -#: plugin.py:220 -msgid "There's really no reason why you should have underscores or brackets in your mathematical expression. Please remove them." -msgstr "Ei todella ole mitään syytä miksi sinulla pitäisi olla alaviivoja tai sulkuja matemaattisessa lausekkeessasi. Ole hyvä ja poista ne." +#: plugin.py:178 +msgid "" +"There's no reason you should have fancy non-ASCII characters in your " +"mathematical expression. Please remove them." +msgstr "" +"Ei ole mitään syytä miksi matemaattisessa ilmaisussasi pitäisi olla kivoja " +"ei-ASCII merkkejä. Ole hyvä ja poista ne." -#: plugin.py:172 -#: plugin.py:228 +#: plugin.py:183 plugin.py:237 +msgid "" +"There's really no reason why you should have underscores or brackets in your " +"mathematical expression. Please remove them." +msgstr "" +"Ei todella ole mitään syytä miksi sinulla pitäisi olla alaviivoja tai " +"sulkuja matemaattisessa lausekkeessasi. Ole hyvä ja poista ne." + +#: plugin.py:189 plugin.py:245 msgid "You can't use lambda in this command." msgstr "Et voi käyttää Lambdaa tässä komennossa." -#: plugin.py:202 -#: plugin.py:236 +#: plugin.py:219 plugin.py:253 msgid "The answer exceeded %s or so." msgstr "Vastaus ylittää %s:än tai niin." -#: plugin.py:204 -#: plugin.py:238 +#: plugin.py:221 plugin.py:255 msgid "Something in there wasn't a valid number." msgstr "Jokin siinä ei ole kelvollinen numero." -#: plugin.py:206 -#: plugin.py:240 +#: plugin.py:223 plugin.py:257 msgid "%s is not a defined function." msgstr "%s ei ole määritetty funktio." -#: plugin.py:213 +#: plugin.py:230 msgid "" "\n" "\n" @@ -105,11 +118,12 @@ msgstr "" "\n" "\n" " Tämä on sama kuin calc komento, paitsi tämä sallii loputtoman\n" -" matematiikan ja näin aiheuttaa botin imevän kaiken prosessorin suorituskyvyn. Tästä johtuen se vaatii\n" +" matematiikan ja näin aiheuttaa botin imevän kaiken prosessorin " +"suorituskyvyn. Tästä johtuen se vaatii\n" " 'trusted' valtuuden.\n" " " -#: plugin.py:250 +#: plugin.py:267 #, fuzzy msgid "" "\n" @@ -122,19 +136,19 @@ msgstr "" " Palauttaa RPN lausekkeen arvon.\n" " " -#: plugin.py:275 +#: plugin.py:292 msgid "Not enough arguments for %s" msgstr "Ei tarpeeksi parametrejä %s:lle." -#: plugin.py:288 +#: plugin.py:305 msgid "%q is not a defined function." msgstr "%q ei ole määritetty funktio." -#: plugin.py:295 +#: plugin.py:312 msgid "Stack: [%s]" msgstr "Pino: [%s]" -#: plugin.py:299 +#: plugin.py:316 msgid "" "[] to \n" "\n" @@ -144,23 +158,26 @@ msgid "" msgstr "" "[] to \n" "\n" -" Muuntaa to . Jos numeroa ei ole annettu, se\n" +" Muuntaa to . Jos numeroa ei ole " +"annettu, se\n" " on oletuksena 1. Yksikkö tiedoille, katso 'units' komento.\n" " " -#: plugin.py:314 +#: plugin.py:346 msgid "" " []\n" "\n" -" With no arguments, returns a list of measurement types, which can be\n" -" passed as arguments. When called with a type as an argument, returns\n" +" With no arguments, returns a list of measurement types, which can " +"be\n" +" passed as arguments. When called with a type as an argument, " +"returns\n" " the units of that type.\n" " " msgstr "" " []\n" "\n" -" Ilman parametrejä, palauttaa listan arviointi tyyppejä, joita voidaan\n" +" Ilman parametrejä, palauttaa listan arviointi tyyppejä, joita " +"voidaan\n" " käyttää parametreinä. Kun kutsuttu tyyppinä parametrissä, palaittaa\n" " sen tyyppiset yksiköt.\n" " " - diff --git a/plugins/Math/messages.pot b/plugins/Math/messages.pot index 56fd4ce3a..ca8506389 100644 --- a/plugins/Math/messages.pot +++ b/plugins/Math/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From ace3b91363abaea7e5c8946771da0c12d76e6462 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 14:40:08 +0200 Subject: [PATCH 24/54] MessageParser: update l10n-fi. --- plugins/MessageParser/locales/fi.po | 221 +++++++++++++++++----------- plugins/MessageParser/messages.pot | 2 +- 2 files changed, 137 insertions(+), 86 deletions(-) diff --git a/plugins/MessageParser/locales/fi.po b/plugins/MessageParser/locales/fi.po index 92f19aeab..3cff87cb5 100644 --- a/plugins/MessageParser/locales/fi.po +++ b/plugins/MessageParser/locales/fi.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2011-06-28 19:39+CEST\n" -"PO-Revision-Date: 2011-07-04 00:21+0200\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" +"PO-Revision-Date: 2014-03-22 14:39+0200\n" "Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 1.5.4\n" #: config.py:57 msgid "" @@ -27,13 +27,21 @@ msgstr "" #: config.py:61 msgid "" +"Determines whether the message parser\n" +" is enabled for NOTICE messages too." +msgstr "" +"Määrittää onko viestien parsija käytössä\n" +" myös NOTICE viesteille." + +#: config.py:64 +msgid "" "Determines whether we keep updating the usage\n" " count for each regexp, for popularity ranking." msgstr "" "Määrottää pidetäänkö käyttö\n" " count for each regexp, for popularity ranking." -#: config.py:64 +#: config.py:67 msgid "" "Determines the number of regexps returned\n" " by the triggerrank command." @@ -41,7 +49,7 @@ msgstr "" "Määrittää palautuneiden säännöllisten lausekkeiden, jotka palautuvat\n" " triggerrank komennolla, määrän." -#: config.py:67 +#: config.py:70 msgid "" "Determines the capability required (if any) to\n" " vacuum the database." @@ -49,7 +57,7 @@ msgstr "" "Määrittää valtuuden (jos mikään), joka on vaadittu\n" " tietokannan tyhjentämiseen." -#: config.py:70 +#: config.py:73 msgid "" "Determines the\n" " capabilities required (if any) to manage the regexp database,\n" @@ -59,13 +67,15 @@ msgid "" " capability." msgstr "" "Määrittää\n" -" valtuudet, jotka (jos mitkään) on vaadittu hallitsemaan säännöllinen lauseke tietokantaa,\n" +" valtuudet, jotka (jos mitkään) on vaadittu hallitsemaan säännöllinen " +"lauseke tietokantaa,\n" " sisältäen lisää, poista, lukitse, avaa. Käytä 'kanava,valtuus':ksia\n" " kanava tason valtuuksille.\n" -" Huomaa, että jopa antivaltuuden olemassaolo tarkoittaa, että käyttäjällä on \n" +" Huomaa, että jopa antivaltuuden olemassaolo tarkoittaa, että käyttäjällä " +"on \n" " valtuus." -#: config.py:77 +#: config.py:80 msgid "" "Determines the separator used between regexps when\n" " shown by the list command." @@ -73,27 +83,38 @@ msgstr "" "Määrittää erottajan, jota käytetään list komennon näyttämien\n" " säännöllisten lausekkeiden välissä." -#: plugin.py:75 +#: config.py:83 +msgid "" +"Determines the maximum number of triggers in\n" +" one message. Set this to 0 to allow an infinite number of triggers." +msgstr "" +"Määrittää liipaisimien enimmäismäärän yhdessä viestissä.\n" +" Aseta tämä arvoon 0 salliaksesi rajattoman määrän liipaisimia." + +#: plugin.py:72 msgid "" "This plugin can set regexp triggers to activate the bot.\n" " Use 'add' command to add regexp trigger, 'remove' to remove." msgstr "" -"Tämä lisäosa voi asettaa säännöllisiä lausekeke liipaisimia, jotka aktivoivat botin.\n" -" Käytä 'add' komentoa lisätäksesi säännöllisen lausekkeen ja 'remove' poistaaksesi säännöllisen lausekkeen." +"Tämä lisäosa voi asettaa säännöllisiä lausekeke liipaisimia, jotka " +"aktivoivat botin.\n" +" Käytä 'add' komentoa lisätäksesi säännöllisen lausekkeen ja 'remove' " +"poistaaksesi säännöllisen lausekkeen." -#: plugin.py:83 +#: plugin.py:80 msgid "Create the database and connect to it." msgstr "Luo tietokanta ja yhdistä siihen." -#: plugin.py:106 +#: plugin.py:103 msgid "Use this to get a database for a specific channel." msgstr "Käytä tätä saadaksesi tietokannan tietylle kanavalle." -#: plugin.py:129 +#: plugin.py:127 msgid "Run a command from message, as if command was sent over IRC." -msgstr "Suorittaa komennon viestistä, kuin jos komento olisi lähetetty IRC:een yli." +msgstr "" +"Suorittaa komennon viestistä, kuin jos komento olisi lähetetty IRC:een yli." -#: plugin.py:137 +#: plugin.py:135 msgid "" "Check if the user has any of the required capabilities to manage\n" " the regexp database." @@ -101,33 +122,35 @@ msgstr "" "Tarkista onko käyttäjällä vaadittu oikeus säännöllisen lauseke tietokannan\n" " muokkaamiseen." -#: plugin.py:179 +#: plugin.py:195 +#, fuzzy msgid "" -"[] \n" +"[|global] \n" "\n" " Associates with . is only\n" " necessary if the message isn't sent on the channel\n" " itself. Action is echoed upon regexp match, with variables $1, $2,\n" " etc. being interpolated from the regexp match groups." msgstr "" -"[] \n" +"[|global] \n" "\n" -" Liittää . on vain\n" -" vaadittu, jos viestiä ei lähetetä kanavalla itsellään\n" -" Toimintoa kaiutetaan säännöllisillä lausekkeilla, muuttujilla $1, $2,\n" -" esim. ollen interpoloitu säännöllisten lausekkeiden osumis ryhmistä." +" Liittää . vaaditaan\n" +" vain, ellei viestiä lähetetä kanavalla itsellään.\n" +" toiminto toistetaan säännöllisen lausekkeen täsmätessä muuttujilla $1, $2,\n" +" jne. tulevat interpolatoiduiksi säännöllisen lausekkeen täsmäysryhmistä." -#: plugin.py:201 +#: plugin.py:217 msgid "Invalid python regexp: %s" msgstr "Viallinen Python säännöllinen lauseke: %s" -#: plugin.py:213 +#: plugin.py:229 msgid "That trigger is locked." msgstr "Tuo liipaisin on lukittu." -#: plugin.py:219 +#: plugin.py:235 +#, fuzzy msgid "" -"[] [--id] ]\n" +"[|global] [--id] ]\n" "\n" " Removes the trigger for from the triggers database.\n" " is only necessary if\n" @@ -137,61 +160,70 @@ msgid "" msgstr "" "[] [--id] ]\n" "\n" -" Poistaa lipaisimen liipaisin tietokannasta.\n" -" on vaadittu vain jos viestiä ei lähetetä kanavalla itsellään\n" +" Poistaa lipaisimen liipaisin " +"tietokannasta.\n" +" on vaadittu vain jos viestiä ei lähetetä kanavalla " +"itsellään\n" " jos viestiä ei lähetetä kanavalla itsellään.\n" -" Jos asetus --id on annettu, hakee säännöllinen lauseke id:llä, ei sisällöllä.\n" +" Jos asetus --id on annettu, hakee säännöllinen lauseke id:llä, ei " +"sisällöllä.\n" " " -#: plugin.py:241 -#: plugin.py:271 -#: plugin.py:294 -#: plugin.py:322 -#: plugin.py:352 +#: plugin.py:257 plugin.py:287 plugin.py:310 plugin.py:338 plugin.py:368 msgid "There is no such regexp trigger." msgstr "Tuollaista säännöllinen lauseke liipaisinta ei ole." -#: plugin.py:245 +#: plugin.py:261 msgid "This regexp trigger is locked." msgstr "Tämä säännöllinen lauseke liipaisin on lukittu." -#: plugin.py:257 +#: plugin.py:273 +#, fuzzy msgid "" -"[] \n" +"[|global] \n" "\n" " Locks the so that it cannot be\n" -" removed or overwritten to. is only necessary if the message isn't\n" +" removed or overwritten to. is only necessary if the " +"message isn't\n" " sent in the channel itself.\n" " " msgstr "" "[] \n" "\n" -" Lukitsee , jotta sitä ei voida poistaa tai ylikirjoittaa.\n" -" on vaadittu vain, jos viestiä ei lähetetä kanavalla itsellään.\n" +" Lukitsee , jotta sitä ei voida poistaa tai " +"ylikirjoittaa.\n" +" on vaadittu vain, jos viestiä ei lähetetä kanavalla " +"itsellään.\n" " " -#: plugin.py:280 +#: plugin.py:296 +#, fuzzy msgid "" -"[] \n" +"[|global] \n" "\n" " Unlocks the entry associated with so that it can be\n" -" removed or overwritten. is only necessary if the message isn't\n" +" removed or overwritten. is only necessary if the message " +"isn't\n" " sent in the channel itself.\n" " " msgstr "" "[] \n" "\n" -" Avaa merkinnän, joka on liitetty , jotta se voidaan\n" -" poistaa tai ylikirjoittaa. on vaadittu vain jos viestiä ei\n" +" Avaa merkinnän, joka on liitetty , " +"jotta se voidaan\n" +" poistaa tai ylikirjoittaa. on vaadittu vain jos viestiä " +"ei\n" " lähetetä kanavalla itsellään.\n" " " -#: plugin.py:303 +#: plugin.py:319 +#, fuzzy msgid "" -"[] [--id] \n" +"[|global] [--id] \n" "\n" " Looks up the value of in the triggers database.\n" -" is only necessary if the message isn't sent in the channel\n" +" is only necessary if the message isn't sent in the " +"channel\n" " itself.\n" " If option --id specified, will retrieve by regexp id, not content.\n" " " @@ -201,62 +233,75 @@ msgstr "" " Etsii arvoa liipaisin tietokannassa.\n" " on vaadittu vain, jos viestiä ei lähetetä kanavalla\n" " itsellään.\n" -" Jos asetus --id on määritetty, haetaan säännöllisen lausekkeen id:n, ei sisällön perusteella\n" +" Jos asetus --id on määritetty, haetaan säännöllisen lausekkeen id:n, " +"ei sisällön perusteella\n" " " -#: plugin.py:332 +#: plugin.py:348 +#, fuzzy msgid "" -"[] [--id] \n" +"[|global] [--id] \n" "\n" " Display information about in the triggers database.\n" -" is only necessary if the message isn't sent in the channel\n" +" is only necessary if the message isn't sent in the " +"channel\n" " itself.\n" " If option --id specified, will retrieve by regexp id, not content.\n" " " msgstr "" "[] [--id] \n" "\n" -" Näyttää tiedot liipaisin tietokannassa.\n" -" on vaadittu vain jos viestiä ei lähetetä kanavalla itsellään.\n" -" Jos asetus --id on annettu, hakee säännöllisen lausekkeen id:een, ei sisällön perusteella.\n" +" Näyttää tiedot liipaisin " +"tietokannassa.\n" +" on vaadittu vain jos viestiä ei lähetetä kanavalla " +"itsellään.\n" +" Jos asetus --id on annettu, hakee säännöllisen lausekkeen id:een, ei " +"sisällön perusteella.\n" " " -#: plugin.py:355 -msgid "The regexp id is %d, regexp is \"%s\", and action is \"%s\". It was added by user %s on %s, has been triggered %d times, and is %s." -msgstr "Säännöllisen lausekkeen id on %d, säännöllinen lauseke on \"%s\", ja toiminto on \"%s\". Sen lisäsi %s %s:llä, on liipaistu %d kertaa, ja on %s." - -#: plugin.py:364 -msgid "locked" -msgstr "lukittu" - -#: plugin.py:364 -msgid "not locked" -msgstr "ei lukittu" - #: plugin.py:371 msgid "" -"[]\n" +"The regexp id is %d, regexp is \"%s\", and action is \"%s\". It was added by " +"user %s on %s, has been triggered %d times, and is %s." +msgstr "" +"Säännöllisen lausekkeen id on %d, säännöllinen lauseke on \"%s\", ja " +"toiminto on \"%s\". Sen lisäsi %s %s:llä, on liipaistu %d kertaa, ja on %s." + +#: plugin.py:380 +msgid "locked" +msgstr "lukittu" + +#: plugin.py:380 +msgid "not locked" +msgstr "ei lukittu" + +#: plugin.py:387 +#, fuzzy +msgid "" +"[|global]\n" "\n" " Lists regexps present in the triggers database.\n" -" is only necessary if the message isn't sent in the channel\n" +" is only necessary if the message isn't sent in the " +"channel\n" " itself. Regexp ID listed in parentheses.\n" " " msgstr "" "[]\n" "\n" -" Luettelee säännölliset lausekkeet, jotka ovat liipaisin tietokannassa kanavalla.\n" +" Luettelee säännölliset lausekkeet, jotka ovat liipaisin " +"tietokannassa kanavalla.\n" " on vaadittu vain jos viestiä ei lähetetä kanavalla\n" " itsellään. Säännöllinen lauseke ID on luetteloitu suluissa.\n" " " -#: plugin.py:384 -#: plugin.py:410 +#: plugin.py:400 plugin.py:426 msgid "There are no regexp triggers in the database." msgstr "Säännöllinen lauseke tietokannassa ei ole liipaisimia." -#: plugin.py:394 +#: plugin.py:410 +#, fuzzy msgid "" -"[]\n" +"[|global]\n" "\n" " Returns a list of top-ranked regexps, sorted by usage count\n" " (rank). The number of regexps returned is set by the\n" @@ -266,15 +311,19 @@ msgid "" msgstr "" "[]\n" "\n" -" Palauttaa top säännölliset lausekkeet, jotka on lajiteltu käyttömäärän\n" -" (rank). Palautuneiden säännöllisten lausekkeiden lukumäärän määrittää\n" -" rankListLength rekisteriarvo. on vaadittu vain jos viestiä ei lähetetä\n" +" Palauttaa top säännölliset lausekkeet, jotka on lajiteltu " +"käyttömäärän\n" +" (rank). Palautuneiden säännöllisten lausekkeiden lukumäärän " +"määrittää\n" +" rankListLength rekisteriarvo. on vaadittu vain jos viestiä " +"ei lähetetä\n" " kanavalla itsellään.\n" " " -#: plugin.py:418 +#: plugin.py:434 +#, fuzzy msgid "" -"[]\n" +"[|global]\n" "\n" " Vacuums the database for .\n" " See SQLite vacuum doc here: http://www.sqlite.org/lang_vacuum.html\n" @@ -287,9 +336,11 @@ msgstr "" "[]\n" "\n" " Tyhjentää tietokannan.\n" -" Katso SQLite tyhjennys documentaatio täältä: http://www.sqlite.org/lang_vacuum.html\n" -" on vaadittu vain jos viestiä ei lähetetä kanavalla itsellään.\n" -" Tarkista ensin onko käyttäjällä vaadittu valtuus, joka on määritetty\n" +" Katso SQLite tyhjennys documentaatio täältä: http://www.sqlite.org/" +"lang_vacuum.html\n" +" on vaadittu vain jos viestiä ei lähetetä kanavalla " +"itsellään.\n" +" Tarkista ensin onko käyttäjällä vaadittu valtuus, joka on " +"määritetty\n" " asetuksessa requireVacuumCapability.\n" " " - diff --git a/plugins/MessageParser/messages.pot b/plugins/MessageParser/messages.pot index 5ce225585..5fb469d81 100644 --- a/plugins/MessageParser/messages.pot +++ b/plugins/MessageParser/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 830fa847150c15730c7778f8dbf443766588571d Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 14:41:59 +0200 Subject: [PATCH 25/54] Status: update l10n-fi. --- plugins/Status/locales/fi.po | 96 +++++++++++++++++++++++------------- plugins/Status/messages.pot | 2 +- 2 files changed, 64 insertions(+), 34 deletions(-) diff --git a/plugins/Status/locales/fi.po b/plugins/Status/locales/fi.po index 4333c0bb5..922c64195 100644 --- a/plugins/Status/locales/fi.po +++ b/plugins/Status/locales/fi.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2012-03-11 20:58+UTC\n" -"PO-Revision-Date: 2012-03-15 08:48+0200\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" +"PO-Revision-Date: 2014-03-22 14:41+0200\n" "Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 1.5.4\n" #: config.py:46 msgid "" @@ -39,7 +39,7 @@ msgstr "" "Määrittää ilmoittaako cpu komento\n" " botin käyttämän muistin määrän." -#: plugin.py:71 +#: plugin.py:72 msgid "" "takes no arguments\n" "\n" @@ -51,19 +51,19 @@ msgstr "" " Palauttaa botin tilan.\n" " " -#: plugin.py:80 +#: plugin.py:81 msgid "%s as %L" msgstr "%s verkossa %L" -#: plugin.py:81 +#: plugin.py:82 msgid "I am connected to %L." msgstr "Olen yhdistänyt verkkoon %L" -#: plugin.py:83 +#: plugin.py:84 msgid "I am currently in code profiling mode." msgstr "Olen tällä hetkellä koodin profilointi tilassa." -#: plugin.py:89 +#: plugin.py:90 msgid "" "takes no arguments\n" "\n" @@ -75,7 +75,7 @@ msgstr "" " Palauttaa botin tämänhetkiset ketjut, jotka ovat aktiivisia.\n" " " -#: plugin.py:95 +#: plugin.py:96 msgid "I have spawned %n; %n %b still currently active: %L." msgstr "Minä olen ilmestyttänyt %n; %n %b yhä aktiivinen: %L." @@ -83,23 +83,44 @@ msgstr "Minä olen ilmestyttänyt %n; %n %b yhä aktiivinen: %L." msgid "" "takes no arguments\n" "\n" +" Returns the number of processes that have been spawned, and list of\n" +" ones that are still active.\n" +" " +msgstr "" +"ei ota parametrejä\n" +"\n" +" Palauttaa prosessien määrän, jotka on luotu ja listan niistä prosesseista, " +"jotka ovat yhä\n" +" aktiivisia..\n" +" " + +#: plugin.py:118 +msgid "" +"takes no arguments\n" +"\n" " Returns some interesting network-related statistics.\n" " " msgstr "" "ei ota parametrejä\n" "\n" -" Palauttaa joitakin mielenkiintoisia verkkoon liittyviä tilastotietoja.\n" +" Palauttaa joitakin mielenkiintoisia verkkoon liittyviä " +"tilastotietoja.\n" " " -#: plugin.py:111 +#: plugin.py:126 msgid "an indeterminate amount of time" msgstr "määrittämätön määrä aikaa" -#: plugin.py:112 -msgid "I have received %s messages for a total of %S. I have sent %s messages for a total of %S. I have been connected to %s for %s." -msgstr "Minä olen vastaanottanut %s viestiä yhteensä määrän %S edestä. Olen lähettänyt %s viestiä määrän %S edestä. Olen ollut yhdistettynä palvelimeen %s ajan %s." +#: plugin.py:127 +msgid "" +"I have received %s messages for a total of %S. I have sent %s messages for " +"a total of %S. I have been connected to %s for %s." +msgstr "" +"Minä olen vastaanottanut %s viestiä yhteensä määrän %S edestä. Olen " +"lähettänyt %s viestiä määrän %S edestä. Olen ollut yhdistettynä palvelimeen " +"%s ajan %s." -#: plugin.py:121 +#: plugin.py:136 msgid "" "takes no arguments\n" "\n" @@ -108,26 +129,35 @@ msgid "" msgstr "" "ei ota parametrejä\n" "\n" -" Palauttaa joitakin mielenkiintoisia suoritinkäyttöön liittyviä tilastotietoja botista.\n" +" Palauttaa joitakin mielenkiintoisia suoritinkäyttöön liittyviä " +"tilastotietoja botista.\n" " " -#: plugin.py:131 -msgid "My children have taken %.2f seconds of user time and %.2f seconds of system time for a total of %.2f seconds of CPU time." -msgstr "Minun lapseni ovat vieneet %.2f käyttäjän aikaa ja %.2f sekuntia järjestelmän aikaa. Lapseni ovat ottaneet yhteensä %.2f sekuntia CPU aikaa." +#: plugin.py:146 +msgid "" +"My children have taken %.2f seconds of user time and %.2f seconds of system " +"time for a total of %.2f seconds of CPU time." +msgstr "" +"Minun lapseni ovat vieneet %.2f käyttäjän aikaa ja %.2f sekuntia " +"järjestelmän aikaa. Lapseni ovat ottaneet yhteensä %.2f sekuntia CPU aikaa." -#: plugin.py:138 -msgid "I have taken %.2f seconds of user time and %.2f seconds of system time, for a total of %.2f seconds of CPU time. %s" -msgstr "Olen ottanut %.2f sekuntia käyttäjän aikaa %.2f sekuntia järjestelmän aikaa. Olen ottanut yhteensä %.2f sekuntia CPU ajasta. %s" +#: plugin.py:153 +msgid "" +"I have taken %.2f seconds of user time and %.2f seconds of system time, for " +"a total of %.2f seconds of CPU time. %s" +msgstr "" +"Olen ottanut %.2f sekuntia käyttäjän aikaa %.2f sekuntia järjestelmän aikaa. " +"Olen ottanut yhteensä %.2f sekuntia CPU ajasta. %s" -#: plugin.py:160 +#: plugin.py:175 msgid "Unable to run ps command." msgstr "ps komentoa ei pystytä suorittamaan." -#: plugin.py:166 +#: plugin.py:181 msgid " I'm taking up %S of memory." msgstr " Muistinkäyttöni on yhteensä %S." -#: plugin.py:175 +#: plugin.py:190 msgid "" "takes no arguments\n" "\n" @@ -136,14 +166,15 @@ msgid "" msgstr "" "ei ota parametrejä\n" "\n" -" Palauttaa joitakin mielenkiintoisia komentoihin liittyviä tilastotietoja.\n" +" Palauttaa joitakin mielenkiintoisia komentoihin liittyviä " +"tilastotietoja.\n" " " -#: plugin.py:185 +#: plugin.py:200 msgid "I offer a total of %n in %n. I have processed %n." msgstr "Tarjoan yhteensä %n määrän %n sisässä. Olen käsitellyt %n." -#: plugin.py:194 +#: plugin.py:209 msgid "" "takes no arguments\n" "\n" @@ -155,7 +186,7 @@ msgstr "" " Palauttaa listan komennoista, jotka botti tarjoaa.\n" " " -#: plugin.py:208 +#: plugin.py:223 msgid "" "takes no arguments\n" "\n" @@ -167,11 +198,11 @@ msgstr "" " Palauttaa ajan, jonka botti on ollut käynnissä.\n" " " -#: plugin.py:212 +#: plugin.py:227 msgid "I have been running for %s." msgstr "Olen ollut käynnissä ajan %s." -#: plugin.py:219 +#: plugin.py:234 msgid "" "takes no arguments\n" "\n" @@ -183,7 +214,7 @@ msgstr "" " Palauttaa palvelimen, jolla botti on.\n" " " -#: plugin.py:228 +#: plugin.py:243 msgid "" "takes no arguments\n" "\n" @@ -194,4 +225,3 @@ msgstr "" "\n" " Palauttaa verkon, jossa botti on.\n" " " - diff --git a/plugins/Status/messages.pot b/plugins/Status/messages.pot index 83bdeefc6..d62ab09f8 100644 --- a/plugins/Status/messages.pot +++ b/plugins/Status/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 8c343522cd4ac7baaa6f7c479084bd7c4c569846 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 14:46:26 +0200 Subject: [PATCH 26/54] String: update l10n-fi. --- plugins/String/locales/fi.po | 167 +++++++++++++++++++++++------------ plugins/String/messages.pot | 2 +- 2 files changed, 112 insertions(+), 57 deletions(-) diff --git a/plugins/String/locales/fi.po b/plugins/String/locales/fi.po index 528771d92..39dc55d7e 100644 --- a/plugins/String/locales/fi.po +++ b/plugins/String/locales/fi.po @@ -5,60 +5,86 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2011-02-26 09:49+CET\n" -"PO-Revision-Date: 2011-10-18 17:56+0200\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" +"PO-Revision-Date: 2014-03-22 14:46+0200\n" "Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 1.5.4\n" #: config.py:47 msgid "" "Determines the maximum size of a string\n" -" given to the levenshtein command. The levenshtein command uses an O(m*n)\n" +" given to the levenshtein command. The levenshtein command uses an " +"O(m*n)\n" " algorithm, which means that with strings of length 256, it can take 1.5\n" " seconds to finish; with strings of length 384, though, it can take 4\n" -" seconds to finish, and with strings of much larger lengths, it takes more\n" -" and more time. Using nested commands, strings can get quite large, hence\n" +" seconds to finish, and with strings of much larger lengths, it takes " +"more\n" +" and more time. Using nested commands, strings can get quite large, " +"hence\n" " this variable, to limit the size of arguments passed to the levenshtein\n" " command." -msgstr "Määrittää levenshtein komentoon annettavan merkkiketjun maksimimäärän.\n" +msgstr "" +"Määrittää levenshtein komentoon annettavan merkkiketjun maksimimäärän.\n" " Levenshtein komento käyttää O(m*n) algoritmiä, mikä tarkoittaa, että\n" " merkkiketju, jonka koko on 256 voi viedä 1.5\n" " sekuntia valmistumiseen; 384:n merkit piduudella se voi viedä 4\n" " sekuntia valmistumiseen, ja suuremmilla merkkiketjuilla, se vie\n" -" enemmän ja enemmän aikaa. Käyttäen sisäkkäisia komentoja, merkkiketjut voivat tulla hyvin pitkiksi ja tästä johtuen\n" -" tämä asetusarvo on olemassa, rajoittaakseen levenshtein komentoon annettujen parametrien määrää.\n" +" enemmän ja enemmän aikaa. Käyttäen sisäkkäisia komentoja, merkkiketjut " +"voivat tulla hyvin pitkiksi ja tästä johtuen\n" +" tämä asetusarvo on olemassa, rajoittaakseen levenshtein komentoon " +"annettujen parametrien määrää." -#: plugin.py:46 +#: config.py:58 +msgid "" +"Determines the maximum time, in seconds, that\n" +" a regular expression is given to execute before being terminated. Since\n" +" there is a possibility that user input for the re command can cause it " +"to\n" +" eat up large amounts of ram or cpu time, it's a good idea to keep this \n" +" low. Most normal regexps should not take very long at all." +msgstr "" +"Määrittää enimmäisajan sekunteissa, joka annetaan säännöllisen lausekkeen\n" +" suorittamiseksi, ennen lopetusta. Koska on mahdollista, että käyttäjän " +"syöte\n" +" re-komennolle voi aiheuttaa suuren RAM- tai CPU-ajan käytön, on hyvä ajatus " +"pitää\n" +" tämä matalana. Tavallisten säännöllisten lausekkeiden ei pitäisi kestää " +"kauan." + +#: plugin.py:52 msgid "" "\n" "\n" " Returns the 8-bit value of .\n" " " -msgstr "\n" +msgstr "" +"\n" "\n" " Palauttaa 8-bittisen arvon.\n" " " -#: plugin.py:55 +#: plugin.py:61 msgid "" "\n" "\n" " Returns the character associated with the 8-bit value \n" " " -msgstr "\n" +msgstr "" +"\n" "\n" " Palauttaa merkin, joka on yhdistetty 8-bittisen arvon.\n" " " -#: plugin.py:62 +#: plugin.py:68 msgid "That number doesn't map to an 8-bit character." msgstr "Tuo numero ei kartoitu 8-bittiseen merkkiin." -#: plugin.py:67 +#: plugin.py:73 msgid "" " \n" "\n" @@ -66,85 +92,105 @@ msgid "" " available in the documentation of the Python codecs module:\n" " .\n" " " -msgstr " \n" +msgstr "" +" \n" "\n" -" Palauttaa salatun version annetusta tekstistä; kelvolliset salaukset\n" +" Palauttaa salatun version annetusta tekstistä; kelvolliset " +"salaukset\n" " ovat saatavilla Python codecs moduulin dokumentaatiossa:\n" " .\n" " " -#: plugin.py:76 -#: plugin.py:90 +#: plugin.py:89 plugin.py:126 msgid "encoding" msgstr "salaus" -#: plugin.py:81 +#: plugin.py:108 msgid "" " \n" "\n" -" Returns an un-encoded form of the given text; the valid encodings are\n" +" Returns an un-encoded form of the given text; the valid encodings " +"are\n" " available in the documentation of the Python codecs module:\n" " .\n" " " -msgstr " \n" +msgstr "" +" \n" "\n" -" Palauttaa salaamattoman version annetusta tekstistä; kelvolliset salaukset\n" +" Palauttaa salaamattoman version annetusta tekstistä; kelvolliset " +"salaukset\n" " ovat saatavilla Python codecs moduulin dokumentaatiossa:\n" " .\n" " " -#: plugin.py:92 +#: plugin.py:132 msgid "base64 string" msgstr "base64 merkkiketju" -#: plugin.py:93 -msgid "Base64 strings must be a multiple of 4 in length, padded with '=' if necessary." -msgstr "Base64 merkkiketjujen täytyy olla kerrollisia 4:llä, pehmustettuna '='-merkillä jos vaadittu." +#: plugin.py:133 +msgid "" +"Base64 strings must be a multiple of 4 in length, padded with '=' if " +"necessary." +msgstr "" +"Base64 merkkiketjujen täytyy olla kerrollisia 4:llä, pehmustettuna '='-" +"merkillä jos vaadittu." -#: plugin.py:99 +#: plugin.py:149 msgid "" " \n" "\n" -" Returns the levenshtein distance (also known as the \"edit distance\"\n" +" Returns the levenshtein distance (also known as the \"edit distance" +"\"\n" " between and )\n" " " -msgstr " \n" +msgstr "" +" \n" "\n" -" Palauttaa levenshtein etäisyyden (tunnetaan myös nimellä \"muokkaus etäisyys\"\n" +" Palauttaa levenshtein etäisyyden (tunnetaan myös nimellä \"muokkaus " +"etäisyys\"\n" " ja välillä.)\n" " " -#: plugin.py:106 -msgid "Levenshtein distance is a complicated algorithm, try it with some smaller inputs." -msgstr "Levenshtein etäisyys on monimutkainen algoritmi, kokeile sitä pienemmillä sisäänmenoilla." +#: plugin.py:156 +msgid "" +"Levenshtein distance is a complicated algorithm, try it with some smaller " +"inputs." +msgstr "" +"Levenshtein etäisyys on monimutkainen algoritmi, kokeile sitä pienemmillä " +"sisäänmenoilla." -#: plugin.py:114 +#: plugin.py:164 +#, fuzzy msgid "" " []\n" "\n" " Returns the Soundex hash to a given length. The length defaults to\n" -" 4, since that's the standard length for a soundex hash. For unlimited\n" -" length, use 0.\n" +" 4, since that's the standard length for a soundex hash. For " +"unlimited\n" +" length, use 0. Maximum length 1024.\n" " " -msgstr " []\n" +msgstr "" +" []\n" "\n" -" Palauttaa Soundex hashin annetulle pituudelle. Pituus on oletuksena 4, koska se on\n" +" Palauttaa Soundex hashin annetulle pituudelle. Pituus on oletuksena " +"4, koska se on\n" " peruspituus. Jos haluat loputtoman pituuden,\n" " käytä 0:aa.\n" " " -#: plugin.py:125 +#: plugin.py:178 msgid "" "\n" "\n" " Returns the length of .\n" " " -msgstr "\n" +msgstr "" +"\n" "\n" " Palauttaa pituuden.\n" " " -#: plugin.py:134 +#: plugin.py:187 msgid "" " \n" "\n" @@ -153,19 +199,23 @@ msgid "" " s/regexp/replacement/flags, returns the result of applying such a\n" " regexp to .\n" " " -msgstr " \n" +msgstr "" +" \n" "\n" -" Jos on yksi muodosta m/säännöllinen lauseke/liput, palauta\n" -" osa, joka täsmää säännölliseen lausekkeeseen. Jos on muotoa\n" -" s/säännöllinen lauseke/korvaus/liput, palauttaa sellaisen säännöllisen lausekkeen käytön\n" +" Jos on yksi muodosta m/säännöllinen lauseke/" +"liput, palauta\n" +" osa, joka täsmää säännölliseen lausekkeeseen. Jos " +" on muotoa\n" +" s/säännöllinen lauseke/korvaus/liput, palauttaa sellaisen " +"säännöllisen lausekkeen käytön\n" " .\n" " " -#: plugin.py:146 +#: plugin.py:199 msgid "You probably don't want to match the empty string." msgstr "Et luultavasti halua täsmätä tyhjään merkkiketjuun." -#: plugin.py:156 +#: plugin.py:212 msgid "" " \n" "\n" @@ -173,40 +223,45 @@ msgid "" " http://www.yoe.org/developer/xor.html for information about XOR\n" " encryption.\n" " " -msgstr " \n" +msgstr "" +" \n" "\n" " Palauttaa XOR-salattuna . Katso\n" " http://www.yoe.org/developer/xor.html saadaksesi lisätietoja XOR\n" " salauksesta.\n" " " -#: plugin.py:169 +#: plugin.py:225 msgid "" "\n" "\n" " Returns the md5 hash of a given string. Read\n" -" http://www.rsasecurity.com/rsalabs/faq/3-6-6.html for more information\n" +" http://www.rsasecurity.com/rsalabs/faq/3-6-6.html for more " +"information\n" " about md5.\n" " " -msgstr "\n" +msgstr "" +"\n" "\n" " Palauttaa md5 hashin annetusta merkkiketjusta. Lue\n" -" http://www.rsasecurity.com/rsalabs/faq/3-6-6.html saadaksesi lisätietoja\n" +" http://www.rsasecurity.com/rsalabs/faq/3-6-6.html saadaksesi " +"lisätietoja\n" " md5:stä.\n" " " -#: plugin.py:180 +#: plugin.py:236 msgid "" "\n" "\n" " Returns the SHA hash of a given string. Read\n" -" http://www.secure-hash-algorithm-md5-sha-1.co.uk/ for more information\n" +" http://www.secure-hash-algorithm-md5-sha-1.co.uk/ for more " +"information\n" " about SHA.\n" " " -msgstr "\n" +msgstr "" +"\n" "\n" " Palauttaa SHA hashin annetulle merkkiketjulle. Lue\n" " http://www.secure-hash-algorithm-md5-sha-1.co.uk/ saadaksesi\n" " lisätietoa SHA:sta.\n" " " - diff --git a/plugins/String/messages.pot b/plugins/String/messages.pot index 1126a6f40..d9e0619d8 100644 --- a/plugins/String/messages.pot +++ b/plugins/String/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 8377029993d0def5feb21191df9df76f5f143067 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 22 Mar 2014 14:50:46 +0200 Subject: [PATCH 27/54] Time: update l10n-fi. --- plugins/Aka/messages.pot | 2 +- plugins/Alias/messages.pot | 2 +- plugins/Anonymous/messages.pot | 2 +- plugins/AutoMode/messages.pot | 2 +- plugins/BadWords/messages.pot | 2 +- plugins/Channel/messages.pot | 2 +- plugins/ChannelLogger/messages.pot | 2 +- plugins/ChannelStats/messages.pot | 2 +- plugins/Conditional/messages.pot | 2 +- plugins/Dict/messages.pot | 2 +- plugins/Dunno/messages.pot | 2 +- plugins/Factoids/messages.pot | 2 +- plugins/Filter/messages.pot | 2 +- plugins/Format/messages.pot | 2 +- plugins/Games/messages.pot | 2 +- plugins/Google/messages.pot | 2 +- plugins/Herald/messages.pot | 2 +- plugins/Internet/messages.pot | 2 +- plugins/Karma/messages.pot | 2 +- plugins/Lart/messages.pot | 2 +- plugins/Later/messages.pot | 2 +- plugins/Limiter/messages.pot | 2 +- plugins/Misc/messages.pot | 2 +- plugins/MoobotFactoids/messages.pot | 2 +- plugins/Network/messages.pot | 2 +- plugins/News/messages.pot | 2 +- plugins/NickCapture/messages.pot | 2 +- plugins/Nickometer/messages.pot | 2 +- plugins/Note/messages.pot | 2 +- plugins/Owner/messages.pot | 2 +- plugins/Plugin/messages.pot | 2 +- plugins/PluginDownloader/messages.pot | 2 +- plugins/Praise/messages.pot | 2 +- plugins/Protector/messages.pot | 2 +- plugins/Quote/messages.pot | 2 +- plugins/QuoteGrabs/messages.pot | 2 +- plugins/RSS/messages.pot | 2 +- plugins/Relay/messages.pot | 2 +- plugins/Reply/messages.pot | 2 +- plugins/Scheduler/messages.pot | 2 +- plugins/Seen/messages.pot | 2 +- plugins/Services/messages.pot | 2 +- plugins/ShrinkUrl/messages.pot | 2 +- plugins/Success/messages.pot | 2 +- plugins/Time/locales/fi.po | 90 +++++++++++++++++---------- plugins/Time/messages.pot | 2 +- plugins/Todo/messages.pot | 2 +- plugins/URL/messages.pot | 2 +- plugins/Unix/messages.pot | 2 +- plugins/User/messages.pot | 2 +- plugins/Utilities/messages.pot | 2 +- 51 files changed, 108 insertions(+), 82 deletions(-) diff --git a/plugins/Aka/messages.pot b/plugins/Aka/messages.pot index 9361b5e42..806dcf3ab 100644 --- a/plugins/Aka/messages.pot +++ b/plugins/Aka/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Alias/messages.pot b/plugins/Alias/messages.pot index 7a58368eb..1758c2b63 100644 --- a/plugins/Alias/messages.pot +++ b/plugins/Alias/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Anonymous/messages.pot b/plugins/Anonymous/messages.pot index 9b2d43776..7b7b2b9c0 100644 --- a/plugins/Anonymous/messages.pot +++ b/plugins/Anonymous/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AutoMode/messages.pot b/plugins/AutoMode/messages.pot index 1ee086f94..03f44aefb 100644 --- a/plugins/AutoMode/messages.pot +++ b/plugins/AutoMode/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BadWords/messages.pot b/plugins/BadWords/messages.pot index 55a7d2764..69f0383dc 100644 --- a/plugins/BadWords/messages.pot +++ b/plugins/BadWords/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Channel/messages.pot b/plugins/Channel/messages.pot index c93b4c20b..42188937d 100644 --- a/plugins/Channel/messages.pot +++ b/plugins/Channel/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ChannelLogger/messages.pot b/plugins/ChannelLogger/messages.pot index 918df8aa8..230d2f6d4 100644 --- a/plugins/ChannelLogger/messages.pot +++ b/plugins/ChannelLogger/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ChannelStats/messages.pot b/plugins/ChannelStats/messages.pot index a1f7f30d8..e0f8d294b 100644 --- a/plugins/ChannelStats/messages.pot +++ b/plugins/ChannelStats/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Conditional/messages.pot b/plugins/Conditional/messages.pot index 32d95f9a8..27bb63e8b 100644 --- a/plugins/Conditional/messages.pot +++ b/plugins/Conditional/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Dict/messages.pot b/plugins/Dict/messages.pot index 5d9c2b487..0735424dc 100644 --- a/plugins/Dict/messages.pot +++ b/plugins/Dict/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Dunno/messages.pot b/plugins/Dunno/messages.pot index cdca26d89..346e6bf50 100644 --- a/plugins/Dunno/messages.pot +++ b/plugins/Dunno/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Factoids/messages.pot b/plugins/Factoids/messages.pot index 46ff46019..c4609331d 100644 --- a/plugins/Factoids/messages.pot +++ b/plugins/Factoids/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Filter/messages.pot b/plugins/Filter/messages.pot index adc8cf22c..8ae55395b 100644 --- a/plugins/Filter/messages.pot +++ b/plugins/Filter/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Format/messages.pot b/plugins/Format/messages.pot index d757ac6e1..ab1f28f1b 100644 --- a/plugins/Format/messages.pot +++ b/plugins/Format/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Games/messages.pot b/plugins/Games/messages.pot index 85c3c6448..6fd9f9f98 100644 --- a/plugins/Games/messages.pot +++ b/plugins/Games/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Google/messages.pot b/plugins/Google/messages.pot index 4938f62ca..703e25951 100644 --- a/plugins/Google/messages.pot +++ b/plugins/Google/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Herald/messages.pot b/plugins/Herald/messages.pot index c92741677..ced2d8ae0 100644 --- a/plugins/Herald/messages.pot +++ b/plugins/Herald/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Internet/messages.pot b/plugins/Internet/messages.pot index 06f05c317..882e4d035 100644 --- a/plugins/Internet/messages.pot +++ b/plugins/Internet/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Karma/messages.pot b/plugins/Karma/messages.pot index b1ed0c622..218f70649 100644 --- a/plugins/Karma/messages.pot +++ b/plugins/Karma/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-01-22 07:53+CET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Lart/messages.pot b/plugins/Lart/messages.pot index 4686800e8..a1bd27030 100644 --- a/plugins/Lart/messages.pot +++ b/plugins/Lart/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Later/messages.pot b/plugins/Later/messages.pot index f6b84da74..80128884c 100644 --- a/plugins/Later/messages.pot +++ b/plugins/Later/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Limiter/messages.pot b/plugins/Limiter/messages.pot index 1e262c33d..95029554e 100644 --- a/plugins/Limiter/messages.pot +++ b/plugins/Limiter/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Misc/messages.pot b/plugins/Misc/messages.pot index d1756f57f..019653225 100644 --- a/plugins/Misc/messages.pot +++ b/plugins/Misc/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/MoobotFactoids/messages.pot b/plugins/MoobotFactoids/messages.pot index f378b6c5c..880aac607 100644 --- a/plugins/MoobotFactoids/messages.pot +++ b/plugins/MoobotFactoids/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Network/messages.pot b/plugins/Network/messages.pot index dd363bcd2..850bddc67 100644 --- a/plugins/Network/messages.pot +++ b/plugins/Network/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/News/messages.pot b/plugins/News/messages.pot index f3b2a91f6..bed288a1a 100644 --- a/plugins/News/messages.pot +++ b/plugins/News/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/NickCapture/messages.pot b/plugins/NickCapture/messages.pot index 2b0aeb713..210fa4949 100644 --- a/plugins/NickCapture/messages.pot +++ b/plugins/NickCapture/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Nickometer/messages.pot b/plugins/Nickometer/messages.pot index 75f19c327..3a7c90dbf 100644 --- a/plugins/Nickometer/messages.pot +++ b/plugins/Nickometer/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Note/messages.pot b/plugins/Note/messages.pot index 9dd5c765d..5d577bc7d 100644 --- a/plugins/Note/messages.pot +++ b/plugins/Note/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Owner/messages.pot b/plugins/Owner/messages.pot index 2e0292b4f..97152f11d 100644 --- a/plugins/Owner/messages.pot +++ b/plugins/Owner/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Plugin/messages.pot b/plugins/Plugin/messages.pot index 5fe2f616d..c45049707 100644 --- a/plugins/Plugin/messages.pot +++ b/plugins/Plugin/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PluginDownloader/messages.pot b/plugins/PluginDownloader/messages.pot index 8724eb068..aeba9f2eb 100644 --- a/plugins/PluginDownloader/messages.pot +++ b/plugins/PluginDownloader/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Praise/messages.pot b/plugins/Praise/messages.pot index 5bac52e63..bd9b4e374 100644 --- a/plugins/Praise/messages.pot +++ b/plugins/Praise/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Protector/messages.pot b/plugins/Protector/messages.pot index d7477e709..49b5f4135 100644 --- a/plugins/Protector/messages.pot +++ b/plugins/Protector/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Quote/messages.pot b/plugins/Quote/messages.pot index f67905119..2c568d9dc 100644 --- a/plugins/Quote/messages.pot +++ b/plugins/Quote/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/QuoteGrabs/messages.pot b/plugins/QuoteGrabs/messages.pot index 981ce7af8..502b835fb 100644 --- a/plugins/QuoteGrabs/messages.pot +++ b/plugins/QuoteGrabs/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RSS/messages.pot b/plugins/RSS/messages.pot index ab3420f6d..6a7b6b7f6 100644 --- a/plugins/RSS/messages.pot +++ b/plugins/RSS/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Relay/messages.pot b/plugins/Relay/messages.pot index b59df159b..7e864f7f2 100644 --- a/plugins/Relay/messages.pot +++ b/plugins/Relay/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Reply/messages.pot b/plugins/Reply/messages.pot index 08091dc58..ea420299d 100644 --- a/plugins/Reply/messages.pot +++ b/plugins/Reply/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Scheduler/messages.pot b/plugins/Scheduler/messages.pot index d14bc54b8..072233882 100644 --- a/plugins/Scheduler/messages.pot +++ b/plugins/Scheduler/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Seen/messages.pot b/plugins/Seen/messages.pot index 297394875..1cfe1ef9f 100644 --- a/plugins/Seen/messages.pot +++ b/plugins/Seen/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:24+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Services/messages.pot b/plugins/Services/messages.pot index d66143aca..fc31c131a 100644 --- a/plugins/Services/messages.pot +++ b/plugins/Services/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ShrinkUrl/messages.pot b/plugins/ShrinkUrl/messages.pot index 64cf12687..1f8f040c0 100644 --- a/plugins/ShrinkUrl/messages.pot +++ b/plugins/ShrinkUrl/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Success/messages.pot b/plugins/Success/messages.pot index c3f94568a..f902c38f9 100644 --- a/plugins/Success/messages.pot +++ b/plugins/Success/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-03-22 12:23+EET\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Time/locales/fi.po b/plugins/Time/locales/fi.po index 50e867ff6..87d820527 100644 --- a/plugins/Time/locales/fi.po +++ b/plugins/Time/locales/fi.po @@ -5,35 +5,40 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2012-03-11 20:58+UTC\n" -"PO-Revision-Date: 2012-03-15 08:22+0200\n" +"POT-Creation-Date: 2014-03-22 12:41+EET\n" +"PO-Revision-Date: 2014-03-22 14:50+0200\n" "Last-Translator: Mikaela Suomalainen \n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 1.5.4\n" #: config.py:45 msgid "" "Determines the\n" -" format string for timestamps. Refer to the Python documentation for the\n" -" time module to see what formats are accepted. If you set this variable to\n" +" format string for timestamps. Refer to the Python documentation for " +"the\n" +" time module to see what formats are accepted. If you set this variable " +"to\n" " the empty string, the timestamp will not be shown." msgstr "" "Määrittää\n" " muotoketjun aikaleimoille. Katso Python documentaatiosta\n" -" aikamoduulin kohdalta nähdäksesi, mitkä muodot hyväksytään. Jos asetat tämän tyhjäksi\n" +" aikamoduulin kohdalta nähdäksesi, mitkä muodot hyväksytään. Jos asetat " +"tämän tyhjäksi\n" " merkkiketjuksi, aikaleimaa ei näytetä." -#: plugin.py:61 +#: plugin.py:64 msgid "" "[y] [w] [d] [h] [m] [s]\n" "\n" " Returns the number of seconds in the number of , ,\n" -" , , , and given. An example usage is\n" -" \"seconds 2h 30m\", which would return 9000, which is '3600*2 + 30*60'.\n" +" , , , and given. An example usage " +"is\n" +" \"seconds 2h 30m\", which would return 9000, which is '3600*2 + " +"30*60'.\n" " Useful for scheduling events at a given number of seconds in the\n" " future.\n" " " @@ -41,34 +46,48 @@ msgstr "" "[y] [w] [d] [h] [m] [s]\n" "\n" " Palauttaa annettujen , ,\n" -" , , , ja määrän sekunteina. Esimerkki käyttö on\n" -" \"seconds 2h 30m\", joka palauttaisi 9000, joka on '3600*2 + 30*60'.\n" +" , , , ja määrän " +"sekunteina. Esimerkki käyttö on\n" +" \"seconds 2h 30m\", joka palauttaisi 9000, joka on '3600*2 + " +"30*60'.\n" " Hyödyllinen ajastamaan tapahtumia annettujen sekuntien päästä\n" " tulevaisuudessa.\n" " " -#: plugin.py:96 +#: plugin.py:99 +#, fuzzy msgid "" -"