Commit Graph

3873 Commits

Author SHA1 Message Date
Mika Suomalainen
34f6b6d191 Channel: fix l10n-fi.
Same fix as with Admin plugin. Change ignore to
more explaining word.
2012-01-04 02:42:33 +08:00
Mika Suomalainen
0784ba5e85 Admin: fix l10n-fi.
Fix some typos and change "ignore" to "huomiotta jättämiseksi".
Both are correct, but the first is like "ignoring fact" and second
is the ignoring what Limnoria uses. Both are correct, but this
explains more.
2012-01-04 02:42:33 +08:00
Mika Suomalainen
1432790250 User: update l10n-fi.
Note that it's still partial.

See commit two commits ago.

See my answer to it in previous commit.
2012-01-04 02:42:32 +08:00
skizzhg
74c8c14849 Unix & User: update l10n-it. 2012-01-03 18:39:21 +01:00
nyuszika7h
6e699816d0 Channel: Make supybot.alwaysJoinOnInvite channel-specific. Closes GH-159. 2012-01-02 14:15:01 +01:00
Valentin Lorentz
fc3d3e6c01 Prevent the 'hostmask' converter from returning '*!*@*' while 'foo!*@*' was given. 2011-12-27 11:55:50 +01:00
Valentin Lorentz
95a9ffac17 User: Fix Mkaysi's mess with the messages.pot. 2011-12-23 14:02:39 +01:00
Mika Suomalainen
45da6a2f60 Ctcp: fix l10n-de & fix l10n-fr & update l10n-fi. 2011-12-23 13:44:03 +02:00
Mika Suomalainen
b7b1e15efa Unix: update l10n-fi. 2011-12-23 11:51:49 +02:00
Valentin Lorentz
c510bae4b4 Merge pull request #293 from nyuszika7h/testing
Testing
2011-12-23 01:45:41 -08:00
nyuszika7h
dd8685e7d0 Alias: Fix l10n-hu 2011-12-23 10:37:40 +01:00
nyuszika7h
277080a247 Unix: Made plugin.py:190 localizable and regenerated messages.pot 2011-12-22 22:28:46 +01:00
nyuszika7h
1c01dc2a3c Unix: Add configuration variable spell.language 2011-12-22 22:21:20 +01:00
Mika Suomalainen
66ea215bed Topic: update l10n-fi. 2011-12-22 21:02:16 +02:00
nyuszika7h
3ec2b166a6 User: Fix copyright in l10n-hu 2011-12-22 15:18:16 +01:00
Mika Suomalainen
edf3851691 Web: add l10n-fi. 2011-12-22 15:24:20 +02:00
Mika Suomalainen
c07a267e51 Utilities: add l10n-fi. 2011-12-22 14:07:08 +02:00
nyuszika7h
77597d2cc9 User: Add l10n-hu 2011-12-21 20:40:10 +01:00
Mika Suomalainen
990801aa84 Utilities: start l10n-fi. 2011-12-21 21:09:44 +02:00
Mika Suomalainen
00d9a38830 User: add l10n-fi. 2011-12-21 20:45:08 +02:00
Mika Suomalainen
b5feac3e28 User: fix one string (add she) & update messages.pot & update l10n-fi & continue l10n-fi. 2011-12-21 18:25:33 +02:00
Mika Suomalainen
ad9b0aa3a5 User: continue l10n-fi. 2011-12-21 18:12:47 +02:00
Mika Suomalainen
e77aeb805b User: continue l10n-fi. 2011-12-21 13:13:10 +02:00
Mika Suomalainen
3a57cda34a User: add partial l10n-fi. 2011-12-20 19:09:36 +02:00
Mika Suomalainen
4e38be73ba URL: add l10n-fi. 2011-12-20 17:18:47 +02:00
nyuszika7h
8af27f4f64 Unix: Make configuration variable fortune.offensive channel-specific 2011-12-18 14:24:35 +01:00
nyuszika7h
751a3ef921 Unix: Make configuration variable fortune.short channel-specific 2011-12-18 14:21:46 +01:00
Mika Suomalainen
7dba155038 Unix: add l10n-fi. 2011-12-18 18:53:59 +08:00
Mika Suomalainen
c10f62b57b Unix: add partial l10n-fi. 2011-12-14 01:31:39 +08:00
Valentin Lorentz
72077c8c97 Google: fix previous cherry-pick. 2011-12-13 18:10:20 +01:00
Daniel Folkinshteyn
b991c8679b Google: use web scraping as fallback to ig api
ig api doesn't have everything (for one, timezones),
and also, in case the IG api ever dies.

Conflicts:

	plugins/Google/plugin.py
2011-12-13 18:10:15 +01:00
Daniel Folkinshteyn
e1ffe0f4e3 Google: use google ig api for the calc. no more web scraping. let's hope this stays alive.
Conflicts:

	plugins/Google/plugin.py
2011-12-13 18:10:09 +01:00
James McCoy
d1bc7922ee Simplify handling of per-network waitingJoins
Signed-off-by: James McCoy <jamessan@users.sourceforge.net>
2011-12-13 18:08:00 +01:00
Daniel Folkinshteyn
761435ba1a Services: catch occasional error when removing waiting joins from list
Signed-off-by: James McCoy <jamessan@users.sourceforge.net>
2011-12-13 18:07:56 +01:00
Daniel Folkinshteyn
8c3304c520 Services: fix problem with some channels being mixed up between networks on startup, when noJoinsUntilIdentified is true.
When noJoinsUntilIdentified config is true, the bot holds join messages in a 'waitingJoins' list, and processes them
once nickserv identification comes through. The problem was that when the bot is configured to join multiple networks,
join messages from different networks would get appended to the same list, without any differentiation by which message
belongs to which network. Thus, if there are messages waiting for multiple networks, it would often be the case that
whichever network got identification done first, would 'pick up' other network's join messages.

This fix stores the network name along with the join messages in the list, and has each network pick out only its own
join messages.

Conflicts:

	src/version.py

Signed-off-by: James McCoy <jamessan@users.sourceforge.net>

Conflicts:

	plugins/Services/plugin.py
2011-12-13 18:07:22 +01:00
James McCoy
f0233c370f Prevent nesting of Misc.tell
Signed-off-by: James McCoy <jamessan@users.sourceforge.net>
2011-12-13 18:05:21 +01:00
Valentin Lorentz
78accda006 Since: Fix traceback. 2011-12-03 20:55:25 +01:00
Valentin Lorentz
f1852f2e2b Seen: Fix error message ('You must be in') for @since. 2011-12-03 12:45:07 +01:00
skizzhg
6d1cf739ab Games: Update l10n-it. 2011-11-21 19:43:56 +01:00
Valentin Lorentz
8787b366cc Scheduler: Fix typo in l10n-fr. 2011-11-19 22:45:12 +01:00
Valentin Lorentz
05b32b467f Services: Fix traceback on NickServ notice. 2011-11-15 06:29:36 +01:00
Mika Suomalainen
0f3c2f5b35 Topic: add l10n-fi 2011-11-14 18:36:08 +02:00
Mika Suomalainen
8413a657c9 Topic: continue partial l10n-fi.
It's still partial.
2011-11-14 09:00:37 +02:00
Florian Besser
e41e5ca171 Services: Add l10n-de 2011-11-13 19:04:13 +01:00
Florian Besser
663308cb63 Channel: Fix l10n-de 2011-11-13 19:03:42 +01:00
Florian Besser
15fee0b118 Seen: Fix l10n-de 2011-11-13 18:08:24 +01:00
Florian Besser
ce20d8efd0 Channel: Update l10n-de 2011-11-12 23:06:18 +01:00
Florian Besser
6c32f85ed7 Status: Add l10n-de 2011-11-11 11:04:59 +01:00
Florian Besser
572e081160 Todo: Add l10n-de 2011-11-11 11:03:27 +01:00
Florian Besser
c562158784 Games: Add l10n-de 2011-11-11 10:39:31 +01:00