pidgin/purple-plugin-pack

e534ccadd37c
propagate from branch 'org.guifications.plugins' (head bb8f2716df2e0f3881de6a7afbaa1ac4c39a23d0)
to branch 'org.guifications.plugins.ignorance' (head 8137d06a3aea0dd6a7d06398e5b339fef63ec732)
--- a/AUTHORS Wed Aug 08 14:53:40 2007 -0400
+++ b/AUTHORS Sun Aug 19 04:52:14 2007 -0400
@@ -13,7 +13,7 @@
Translators
===========
es_ES - Máximo Castañeda <antiswen@yahoo.es>
-fr - Yannick <y.le.ny@ifrance.com>
+fr - Yannick LE NY <y.le.ny@ifrance.com>
Packagers
=========
@@ -26,7 +26,7 @@
- Fedora Core 4
- Fedora Core 5
- Fedora Core 6
- - Red Hat Enterprise Linux 4
+ - Red Hat Enterprise Linux 4/CentOS 4
Accepted Patches
================
@@ -46,7 +46,7 @@
Special Thanks
==============
-Kathryn Kulick - For providing a female presence on irc
+Kathryn Kulick - For providing a female presence in our IRC channel
Robert O'Connor - Kicktoy... 'nuff said :)
Dennis Ristuccia - For random gibberish that forces us to take a break from coding
-Ankit Singla - Ticket triaging!
+Ankit Singla - Ticket triaging! (and TLC for the gRIM plugin)
--- a/ChangeLog Wed Aug 08 14:53:40 2007 -0400
+++ b/ChangeLog Sun Aug 19 04:52:14 2007 -0400
@@ -1,6 +1,14 @@
-Version 2.1.0mtn:
+Version 2.1.1: 8/19/07
+ * Fixed lack of .build, .pidgin-plugin, and Makefile.mingw for convbadger
+
+Version 2.1.0: 8/18/07
+ * Completed the convbadger plugin. It adds a protocol icon to the menu
+ bar of the conversation window.
* Added the Pidgin-SNPP protocol plugin as snpp
* Added the /notice command for the irc-more plugin.
+ * Added an additional string to the eight_ball plugin (resiak)
+ * Autorejoin now has a preference to set the delay time before
+ rejoining. Fixes #372
Version 2.0.0: 7/13/07
* Blistops now offers the ability to stretch the display of screen names
--- a/NEWS Wed Aug 08 14:53:40 2007 -0400
+++ b/NEWS Sun Aug 19 04:52:14 2007 -0400
@@ -1,4 +1,7 @@
-Gaim Plugin Pack
+Purple Plugin Pack
+
+The news entries below are provided simply because it was a first release. Please
+see the ChangeLog and our website for current news, changes, etc.
1.0beta (12/16/05):
John: Well, this is our first release of the Plugin Pack. Some of the
--- a/VERSION Wed Aug 08 14:53:40 2007 -0400
+++ b/VERSION Sun Aug 19 04:52:14 2007 -0400
@@ -1,1 +1,1 @@
-2.1.0mtn
+2.1.1
--- a/album/album.c Wed Aug 08 14:53:40 2007 -0400
+++ b/album/album.c Sun Aug 19 04:52:14 2007 -0400
@@ -54,9 +54,6 @@
GHashTable *buddy_windows;
-#define PLUGIN_NAME "Album"
-#define PLUGIN_SUMMARY "Archives buddy icons."
-#define PLUGIN_DESCRIPTION "Enable this plugin to automatically archive all buddy icons."
#define PLUGIN_AUTHOR "Richard Laager <rlaager@guifications.org>" \
"\n\t\t\tSadrul Habib Chowdhury <imadil@gmail.com>"
@@ -85,7 +82,7 @@
PLUGIN_ID, /**< id */
NULL, /**< name */
PP_VERSION, /**< version */
- PLUGIN_SUMMARY, /**< summary */
+ NULL, /**< summary */
NULL, /**< description */
PLUGIN_AUTHOR, /**< author */
PP_WEBSITE, /**< homepage */
@@ -268,9 +265,9 @@
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
#endif /* ENABLE_NLS */
- info.name = _(PLUGIN_NAME);
- info.summary = _(PLUGIN_SUMMARY);
- info.description = _(PLUGIN_DESCRIPTION);
+ info.name = _("Album");
+ info.summary = _("Archives buddy icons.");
+ info.description = _("Enable this plugin to automatically archive all buddy icons.");
/* Setup preferences. */
purple_prefs_add_none(PREF_PREFIX);
--- a/autorejoin/autorejoin.c Wed Aug 08 14:53:40 2007 -0400
+++ b/autorejoin/autorejoin.c Sun Aug 19 04:52:14 2007 -0400
@@ -21,10 +21,7 @@
#include "../common/pp_internal.h"
#define PLUGIN_ID "core-plugin_pack-autorejoin"
-#define PLUGIN_NAME "Autorejoin (IRC)"
-#define PLUGIN_STATIC_NAME "Autorejoin (IRC)"
-#define PLUGIN_SUMMARY "Autorejoin on /kick on IRC"
-#define PLUGIN_DESCRIPTION "Automatically rejoin a IRC chatroom when someone lovingly /kicks you."
+#define PLUGIN_STATIC_NAME "autorejoin"
#define PLUGIN_AUTHOR "Sadrul H Chowdhury <sadrul@users.sourceforge.net>"
/* System headers */
@@ -35,6 +32,9 @@
#include <plugin.h>
#include <prpl.h>
+#define PREF_PREFIX "/plugins/core/" PLUGIN_ID
+#define PREF_DELAY PREF_PREFIX "/delay"
+
static gboolean
show_them(gpointer data)
{
@@ -71,7 +71,7 @@
chats = chats->next;
if (purple_conversation_get_account(conv) == account
&& strcmp(purple_conversation_get_name(conv), name) == 0) {
- g_timeout_add(1000, show_them, conv);
+ g_timeout_add(1000 * MAX(10, purple_prefs_get_int(PREF_DELAY)), show_them, conv);
break;
}
}
@@ -98,6 +98,34 @@
return TRUE;
}
+static PurplePluginPrefFrame *
+get_plugin_pref_frame(PurplePlugin *plugin)
+{
+ PurplePluginPrefFrame *frame;
+ PurplePluginPref *pref;
+
+ frame = purple_plugin_pref_frame_new();
+
+ pref = purple_plugin_pref_new_with_name_and_label(PREF_DELAY,
+ _("Seconds to wait before rejoining"));
+ purple_plugin_pref_set_bounds(pref, 10, 9999);
+ purple_plugin_pref_frame_add(frame, pref);
+
+ return frame;
+}
+
+static PurplePluginUiInfo prefs_info = {
+ get_plugin_pref_frame,
+ 0,
+ NULL,
+
+ /* padding */
+ NULL,
+ NULL,
+ NULL,
+ NULL
+};
+
static PurplePluginInfo info = {
PURPLE_PLUGIN_MAGIC, /* Magic */
PURPLE_MAJOR_VERSION, /* Purple Major Version */
@@ -122,8 +150,9 @@
NULL, /* ui_info */
NULL, /* extra_info */
- NULL, /* prefs_info */
+ &prefs_info, /* prefs_info */
NULL, /* actions */
+
NULL, /* reserved 1 */
NULL, /* reserved 2 */
NULL, /* reserved 3 */
@@ -138,9 +167,13 @@
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
#endif /* ENABLE_NLS */
- info.name = _(PLUGIN_NAME);
- info.summary = _(PLUGIN_SUMMARY);
- info.description = _(PLUGIN_DESCRIPTION);
+ info.name = _("Autorejoin (IRC)");
+ info.summary = _("Autorejoin on /kick on IRC");
+ info.description = _("Automatically rejoin a IRC chatroom when someone "
+ "lovingly /kicks you.");
+
+ purple_prefs_add_none(PREF_PREFIX);
+ purple_prefs_add_int(PREF_DELAY, 30);
}
PURPLE_INIT_PLUGIN(PLUGIN_STATIC_NAME, init_plugin, info)
--- a/autoreply/autoreply.c Wed Aug 08 14:53:40 2007 -0400
+++ b/autoreply/autoreply.c Sun Aug 19 04:52:14 2007 -0400
@@ -21,14 +21,7 @@
#include "../common/pp_internal.h"
#define PLUGIN_ID "core-plugin_pack-autoreply"
-#define PLUGIN_NAME N_("Autoreply")
#define PLUGIN_STATIC_NAME "Autoreply"
-#define PLUGIN_SUMMARY N_("Autoreply for all the protocols")
-#define PLUGIN_DESCRIPTION N_("This plugin lets you set autoreply message for any protocol. "\
- "You can set the global autoreply message from the Plugin-options dialog. " \
- "To set some specific autoreply message for a particular buddy, right click " \
- "on the buddy in the buddy-list window. To set autoreply messages for some " \
- "account, go to the `Advanced' tab of the Account-edit dialog.")
#define PLUGIN_AUTHOR "Sadrul Habib Chowdhury <sadrul@users.sourceforge.net>"
/* Purple headers */
@@ -407,40 +400,55 @@
};
static PurplePluginInfo info = {
- PURPLE_PLUGIN_MAGIC, /* Magic */
- PURPLE_MAJOR_VERSION, /* Purple Major Version */
- PURPLE_MINOR_VERSION, /* Purple Minor Version */
- PURPLE_PLUGIN_STANDARD, /* plugin type */
- NULL, /* ui requirement */
- 0, /* flags */
- NULL, /* dependencies */
- PURPLE_PRIORITY_DEFAULT, /* priority */
+ PURPLE_PLUGIN_MAGIC, /* Magic */
+ PURPLE_MAJOR_VERSION, /* Purple Major Version */
+ PURPLE_MINOR_VERSION, /* Purple Minor Version */
+ PURPLE_PLUGIN_STANDARD, /* plugin type */
+ NULL, /* ui requirement */
+ 0, /* flags */
+ NULL, /* dependencies */
+ PURPLE_PRIORITY_DEFAULT, /* priority */
- PLUGIN_ID, /* plugin id */
- PLUGIN_NAME, /* name */
- PP_VERSION, /* version */
- PLUGIN_SUMMARY, /* summary */
- PLUGIN_DESCRIPTION, /* description */
- PLUGIN_AUTHOR, /* author */
- PP_WEBSITE, /* website */
+ PLUGIN_ID, /* plugin id */
+ NULL, /* name */
+ PP_VERSION, /* version */
+ NULL, /* summary */
+ NULL, /* description */
+ PLUGIN_AUTHOR, /* author */
+ PP_WEBSITE, /* website */
- plugin_load, /* load */
- plugin_unload, /* unload */
- NULL, /* destroy */
+ plugin_load, /* load */
+ plugin_unload, /* unload */
+ NULL, /* destroy */
- NULL, /* ui_info */
- NULL, /* extra_info */
- &prefs_info, /* prefs_info */
- NULL, /* actions */
- NULL, /* reserved 1 */
- NULL, /* reserved 2 */
- NULL, /* reserved 3 */
- NULL /* reserved 4 */
+ NULL, /* ui_info */
+ NULL, /* extra_info */
+ &prefs_info, /* prefs_info */
+ NULL, /* actions */
+
+ NULL, /* reserved 1 */
+ NULL, /* reserved 2 */
+ NULL, /* reserved 3 */
+ NULL /* reserved 4 */
};
static void
init_plugin(PurplePlugin *plugin)
{
+#ifdef ENABLE_NLS
+ bindtextdomain(GETTEXT_PACKAGE, PP_LOCALEDIR);
+ bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
+#endif /* ENABLE_NLS */
+
+ info.name = _("Autoreply");
+ info.summary = _("Autoreply for all the protocols");
+ info.description = _("This plugin lets you set autoreply message for any "
+ "protocol. You can set the global autoreply message from the "
+ "plugin options dialog. To set some specific autoreply message for "
+ "a particular buddy, right click on the buddy in the buddy-list "
+ "window. To set autoreply messages for some accounts, go to the "
+ "`Advanced' tab of the account edit dialog.");
+
purple_prefs_add_none(PREFS_PREFIX);
purple_prefs_add_bool(PREFS_IDLE, TRUE);
purple_prefs_add_bool(PREFS_AWAY, TRUE);
--- a/buddytime/buddytime.c Wed Aug 08 14:53:40 2007 -0400
+++ b/buddytime/buddytime.c Sun Aug 19 04:52:14 2007 -0400
@@ -21,10 +21,7 @@
#include "../common/pp_internal.h"
#define PLUGIN_ID "gtk-plugin_pack-buddytime"
-#define PLUGIN_NAME "Buddy Time"
#define PLUGIN_STATIC_NAME "buddytime"
-#define PLUGIN_SUMMARY "summary"
-#define PLUGIN_DESCRIPTION "description"
#define PLUGIN_AUTHOR "Gary Kramlich <grim@reaperworld.com>"
#include <gdk/gdk.h>
@@ -255,9 +252,9 @@
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
#endif /* ENABLE_NLS */
- info.name = _(PLUGIN_NAME);
- info.summary = _(PLUGIN_SUMMARY);
- info.description = _(PLUGIN_DESCRIPTION);
+ info.name = _("Buddy Time");
+ info.summary = _("summary");
+ info.description = _("description");
}
PURPLE_INIT_PLUGIN(PLUGIN_STATIC_NAME, init_plugin, info)
--- a/common/core-template.c Wed Aug 08 14:53:40 2007 -0400
+++ b/common/core-template.c Sun Aug 19 04:52:14 2007 -0400
@@ -21,10 +21,7 @@
#include "../common/pp_internal.h"
#define PLUGIN_ID "unnamed plugin"
-#define PLUGIN_NAME "unnamed"
#define PLUGIN_STATIC_NAME "unnamed"
-#define PLUGIN_SUMMARY "summary"
-#define PLUGIN_DESCRIPTION "description"
#define PLUGIN_AUTHOR "someone <someone@somewhere.tld>"
/* Purple headers */
@@ -79,9 +76,9 @@
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
#endif /* ENABLE_NLS */
- info.name = _(PLUGIN_NAME);
- info.summary = _(PLUGIN_SUMMARY);
- info.description = _(PLUGIN_DESCRIPTION);
+ info.name = _("unnamed");
+ info.summary = _("summary");
+ info.description = _("description");
}
PURPLE_INIT_PLUGIN(PLUGIN_STATIC_NAME, init_plugin, info)
--- a/common/gtk-template.c Wed Aug 08 14:53:40 2007 -0400
+++ b/common/gtk-template.c Sun Aug 19 04:52:14 2007 -0400
@@ -21,10 +21,7 @@
#include "../common/pp_internal.h"
#define PLUGIN_ID "unnamed plugin"
-#define PLUGIN_NAME "unnamed"
#define PLUGIN_STATIC_NAME "unnamed"
-#define PLUGIN_SUMMARY "summary"
-#define PLUGIN_DESCRIPTION "description"
#define PLUGIN_AUTHOR "someone <someone@somewhere.tld>"
/* System headers */
@@ -83,9 +80,9 @@
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
#endif /* ENABLE_NLS */
- info.name = _(PLUGIN_NAME);
- info.summary = _(PLUGIN_SUMMARY);
- info.description = _(PLUGIN_DESCRIPTION);
+ info.name = _("unnamed");
+ info.summary = _("summary");
+ info.description = _("description");
}
PURPLE_INIT_PLUGIN(PLUGIN_STATIC_NAME, init_plugin, info)
--- a/configure.ac Wed Aug 08 14:53:40 2007 -0400
+++ b/configure.ac Sun Aug 19 04:52:14 2007 -0400
@@ -1,4 +1,4 @@
-AC_INIT([purple-plugin_pack], [2.1.0mtn], [guifications-devel@lists.sourceforge.net])
+AC_INIT([purple-plugin_pack], [2.1.1], [guifications-devel@lists.sourceforge.net])
AC_CANONICAL_SYSTEM
AM_CONFIG_HEADER(pre_config.h)
--- a/convbadger/Makefile.am Wed Aug 08 14:53:40 2007 -0400
+++ b/convbadger/Makefile.am Sun Aug 19 04:52:14 2007 -0400
@@ -1,4 +1,7 @@
-EXTRA_DIST = .pidgin-plugin .incomplete
+EXTRA_DIST = \
+ .build \
+ .pidgin-plugin \
+ Makefile.mingw
convbadgerdir = $(PIDGIN_LIBDIR)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/convbadger/Makefile.mingw Sun Aug 19 04:52:14 2007 -0400
@@ -0,0 +1,12 @@
+#
+# Makefile.mingw
+#
+# Description: Makefile for convbadger plugin.
+#
+
+PP_TOP := ..
+
+PP = convbadger
+
+include $(PP_TOP)/win_pp.mak
+
--- a/difftopic/difftopic.c Wed Aug 08 14:53:40 2007 -0400
+++ b/difftopic/difftopic.c Sun Aug 19 04:52:14 2007 -0400
@@ -21,10 +21,7 @@
#include "../common/pp_internal.h"
#define PLUGIN_ID "gtk-plugin_pack-difftopic"
-#define PLUGIN_NAME "DiffTopic"
-#define PLUGIN_STATIC_NAME "DiffTopic"
-#define PLUGIN_SUMMARY "Show the old topic when the topic in a chat room changes."
-#define PLUGIN_DESCRIPTION "Show the old topic when the topic in a chat room changes."
+#define PLUGIN_STATIC_NAME "difftopic"
#define PLUGIN_AUTHOR "Sadrul H Chowdhury <sadrul@users.sourceforge.net>"
/* System headers */
@@ -218,9 +215,9 @@
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
#endif /* ENABLE_NLS */
- info.name = _(PLUGIN_NAME);
- info.summary = _(PLUGIN_SUMMARY);
- info.description = _(PLUGIN_DESCRIPTION);
+ info.name = _("DiffTopic");
+ info.summary = _("Show the old topic when the topic in a chat room changes.");
+ info.description = _("Show the old topic when the topic in a chat room changes.");
}
PURPLE_INIT_PLUGIN(PLUGIN_STATIC_NAME, init_plugin, info)
--- a/hideconv/hideconv.c Wed Aug 08 14:53:40 2007 -0400
+++ b/hideconv/hideconv.c Sun Aug 19 04:52:14 2007 -0400
@@ -21,10 +21,7 @@
#include "../common/pp_internal.h"
#define PLUGIN_ID "gtk-plugin_pack-hideconv"
-#define PLUGIN_NAME "Hide Conversation"
-#define PLUGIN_STATIC_NAME "Hide Conversation"
-#define PLUGIN_SUMMARY "Hide conversations without closing them."
-#define PLUGIN_DESCRIPTION "Hide conversations without closing them."
+#define PLUGIN_STATIC_NAME "hideconv"
#define PLUGIN_AUTHOR "Sadrul H Chowdhury <sadrul@users.sourceforge.net>"
/* System headers */
@@ -285,9 +282,9 @@
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
#endif /* ENABLE_NLS */
- info.name = _(PLUGIN_NAME);
- info.summary = _(PLUGIN_SUMMARY);
- info.description = _(PLUGIN_DESCRIPTION);
+ info.name = _("Hide Conversation");
+ info.summary = _("Hide conversations without closing them.");
+ info.description = _("Hide conversations without closing them.");
}
PURPLE_INIT_PLUGIN(PLUGIN_STATIC_NAME, init_plugin, info)
--- a/irchelper/irchelper.c Wed Aug 08 14:53:40 2007 -0400
+++ b/irchelper/irchelper.c Sun Aug 19 04:52:14 2007 -0400
@@ -42,10 +42,6 @@
#define PLUGIN_STATIC_NAME "irchelper"
#define PLUGIN_ID "core-rlaager-" PLUGIN_STATIC_NAME
-#define PLUGIN_NAME "IRC Helper"
-#define PLUGIN_SUMMARY "Handles the rough edges of the IRC protocol."
-#define PLUGIN_DESCRIPTION "- Transparent authentication with a variety of services.\n" \
- "- Suppression of various useless messages"
#define PLUGIN_AUTHOR "Richard Laager <rlaager@guifications.org>"
@@ -1262,9 +1258,10 @@
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
#endif /* ENABLE_NLS */
- info.name = _(PLUGIN_NAME);
- info.summary = _(PLUGIN_SUMMARY);
- info.description = _(PLUGIN_DESCRIPTION);
+ info.name = _("IRC Helper");
+ info.summary = _("Handles the rough edges of the IRC protocol.");
+ info.description = _("- Transparent authentication with a variety of "
+ "services.\n- Suppression of various useless messages");
}
PURPLE_INIT_PLUGIN(PLUGIN_STATIC_NAME, plugin_init, info)
--- a/irssi/irssi.c Wed Aug 08 14:53:40 2007 -0400
+++ b/irssi/irssi.c Sun Aug 19 04:52:14 2007 -0400
@@ -23,15 +23,7 @@
/* define these so the plugin info struct way at the bottom is cleaner */
#define PLUGIN_ID "gtk-plugin_pack-irssi"
-#define PLUGIN_NAME "Irssi Features"
#define PLUGIN_STATIC_NAME "irssi"
-#define PLUGIN_SUMMARY "Implements features of the irssi IRC client for " \
- "use in Purple."
-#define PLUGIN_DESCRIPTION "Implements some features of the IRC client irssi " \
- "to be used in Purple. It lets you know in all open " \
- "conversations when the day has changed, adds the " \
- "lastlog command, adds the window command, etc. " \
- "The day changed message is not logged."
#define PLUGIN_AUTHOR "\n" \
"\tGary Kramlich <grim@reaperworld.com>\n" \
"\tJohn Bailey <rekkanoryo@rekkanoryo.org>\n" \
@@ -112,9 +104,13 @@
#endif /* ENABLE_NLS */
/* set these here to allow for translations of the strings */
- irssi_info.name = _(PLUGIN_NAME);
- irssi_info.summary = _(PLUGIN_SUMMARY);
- irssi_info.description = _(PLUGIN_DESCRIPTION);
+ irssi_info.name = _("Irssi Features");
+ irssi_info.summary = _("Implements features of the irssi IRC client for "
+ "use in Pidgin.");
+ irssi_info.description = _("Implements some features of the IRC client "
+ "irssi to be used in Purple. It lets you know in all open "
+ "conversations when the day has changed, adds the lastlog command, "
+ "adds the window command, etc. The day changed message is not logged.");
}
PURPLE_INIT_PLUGIN(PLUGIN_STATIC_NAME, irssi_init, irssi_info)
--- a/mystatusbox/mystatusbox.c Wed Aug 08 14:53:40 2007 -0400
+++ b/mystatusbox/mystatusbox.c Sun Aug 19 04:52:14 2007 -0400
@@ -21,14 +21,7 @@
#include "../common/pp_internal.h"
#define PLUGIN_ID "gtk-plugin_pack-mystatusbox"
-#define PLUGIN_NAME "Mystatusbox (Show Statusboxes)"
#define PLUGIN_STATIC_NAME "mystatusbox"
-#define PLUGIN_SUMMARY "Hide/Show the per-account statusboxes"
-#define PLUGIN_DESCRIPTION "You can show all the per-account statusboxes, " \
- "hide all of them, or just show the ones that are " \
- "in a different status than the global status.\n\n" \
- "For ease of use, you can bind keyboard-shortcuts " \
- "for the menu-items."
#define PLUGIN_AUTHOR "Sadrul Habib Chowdhury <sadrul@users.sourceforge.net>"
/* System headers */
@@ -563,9 +556,12 @@
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
#endif /* ENABLE_NLS */
- info.name = _(PLUGIN_NAME);
- info.summary = _(PLUGIN_SUMMARY);
- info.description = _(PLUGIN_DESCRIPTION);
+ info.name = _("Mystatusbox (Show Statusboxes)");
+ info.summary = _("Hide/Show the per-account statusboxes");
+ info.description = _("You can show all the per-account statusboxes, hide "
+ "all of them, or just show the ones that are in a different status "
+ "from the global status. For ease of use, you can bind keyboard "
+ "shortcuts for the menu items.");
purple_prefs_add_none(PREF_PREFIX);
purple_prefs_add_int(PREF_PANE, 300);
--- a/nicksaid/nicksaid.c Wed Aug 08 14:53:40 2007 -0400
+++ b/nicksaid/nicksaid.c Sun Aug 19 04:52:14 2007 -0400
@@ -21,10 +21,7 @@
#include "../common/pp_internal.h"
#define PLUGIN_ID "gtk-plugin_pack-nicksaid"
-#define PLUGIN_NAME "Nicksaid"
-#define PLUGIN_STATIC_NAME "Nicksaid"
-#define PLUGIN_SUMMARY "Record when someone said your nick in a chat."
-#define PLUGIN_DESCRIPTION "Record when someone said your nick in a chat."
+#define PLUGIN_STATIC_NAME "nicksaid"
#define PLUGIN_AUTHOR "Sadrul H Chowdhury <sadrul@users.sourceforge.net>"
#define PREF_PREFIX "/plugins/gtk/" PLUGIN_ID
@@ -650,9 +647,9 @@
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
#endif /* ENABLE_NLS */
- info.name = _(PLUGIN_NAME);
- info.summary = _(PLUGIN_SUMMARY);
- info.description = _(PLUGIN_DESCRIPTION);
+ info.name = _("Nicksaid");
+ info.summary = _("Record when someone said your nick in a chat.");
+ info.description = _("Record when someone said your nick in a chat.");
purple_prefs_add_none(PREF_PREFIX);
purple_prefs_add_string(PREF_HLWORDS, "");
--- a/po/en_AU.po Wed Aug 08 14:53:40 2007 -0400
+++ b/po/en_AU.po Sun Aug 19 04:52:14 2007 -0400
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: plugin_pack 0.1cvs\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-10 23:04-0400\n"
+"POT-Creation-Date: 2007-08-17 03:53-0400\n"
"PO-Revision-Date: 2005-11-21 10:36+1100\n"
"Last-Translator: Peter Lawler <trans@six-by-nine.com.au>\n"
"Language-Team: English/AU <trans@six-by-nine.com.au>\n"
@@ -16,14 +16,14 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../album/album-ui.c:296
+#: ../album/album-ui.c:293
msgid ""
"<span size='larger' weight='bold'>Unrecognized file type</span>\n"
"\n"
"Defaulting to PNG."
msgstr ""
-#: ../album/album-ui.c:312
+#: ../album/album-ui.c:309
#, c-format
msgid ""
"<span size='larger' weight='bold'>Error saving image</span>\n"
@@ -31,12 +31,12 @@
"%s"
msgstr ""
-#: ../album/album-ui.c:348
+#: ../album/album-ui.c:345
msgid "Save Image"
msgstr ""
#. Label
-#: ../album/album-ui.c:608
+#: ../album/album-ui.c:605
#, c-format
msgid ""
"%x\n"
@@ -44,99 +44,110 @@
msgstr ""
#. Label
-#: ../album/album-ui.c:717
+#: ../album/album-ui.c:714
msgid "No icons were found."
msgstr ""
-#: ../album/album-ui.c:958
+#: ../album/album-ui.c:955
#, c-format
msgid "Buddy Icons used by %s"
msgstr ""
-#: ../album/album-ui.c:1015
+#: ../album/album-ui.c:1012
#, c-format
msgid "Small (%1$ux%1$u)"
msgstr ""
-#: ../album/album-ui.c:1019
+#: ../album/album-ui.c:1016
#, c-format
msgid "Medium (%1$ux%1$u)"
msgstr ""
-#: ../album/album-ui.c:1023
+#: ../album/album-ui.c:1020
#, c-format
msgid "Large (%1$ux%1$u)"
msgstr ""
-#: ../album/album-ui.c:1127
+#: ../album/album-ui.c:1124
msgid "_Name"
msgstr ""
-#: ../album/album-ui.c:1132
+#: ../album/album-ui.c:1129
msgid "_Account"
msgstr ""
-#: ../album/album-ui.c:1140 ../album/album-ui.c:1154
+#: ../album/album-ui.c:1137 ../album/album-ui.c:1151
msgid "View Buddy Icons"
msgstr ""
-#: ../album/album-ui.c:1142
+#: ../album/album-ui.c:1139
msgid ""
"Please enter the screen name or alias of the person whose icon album you "
"want to view."
msgstr ""
-#: ../album/album-ui.c:1144 ../buddytime/buddytime.c:172
+#: ../album/album-ui.c:1141 ../buddytime/buddytime.c:162
msgid "OK"
msgstr ""
-#: ../album/album-ui.c:1145 ../broadcast/broadcast.c:124
-#: ../buddytime/buddytime.c:173 ../groupmsg/groupmsg.c:126
+#: ../album/album-ui.c:1142 ../broadcast/broadcast.c:117
+#: ../buddytime/buddytime.c:163 ../groupmsg/groupmsg.c:120
msgid "Cancel"
msgstr ""
-#: ../album/album-ui.c:1211
+#: ../album/album-ui.c:1208
msgid "_View Buddy Icons"
msgstr ""
-#: ../autoreply/autoreply.c:27
-msgid "Autoreply"
+#: ../album/album.c:268
+msgid "Album"
msgstr ""
-#: ../autoreply/autoreply.c:29
-msgid "Autoreply for all the protocols"
+#: ../album/album.c:269
+msgid "Archives buddy icons."
+msgstr ""
+
+#: ../album/album.c:270
+msgid "Enable this plugin to automatically archive all buddy icons."
msgstr ""
-#: ../autoreply/autoreply.c:30
-msgid ""
-"This plugin lets you set autoreply message for any protocol. You can set the "
-"global autoreply message from the Plugin-options dialog. To set some "
-"specific autoreply message for a particular buddy, right click on the buddy "
-"in the buddy-list window. To set autoreply messages for some account, go to "
-"the `Advanced' tab of the Account-edit dialog."
+#: ../autorejoin/autorejoin.c:110
+msgid "Seconds to wait before rejoining"
+msgstr ""
+
+#: ../autorejoin/autorejoin.c:170
+msgid "Autorejoin (IRC)"
+msgstr ""
+
+#: ../autorejoin/autorejoin.c:171
+msgid "Autorejoin on /kick on IRC"
+msgstr ""
+
+#: ../autorejoin/autorejoin.c:172
+msgid "Automatically rejoin a IRC chatroom when someone lovingly /kicks you."
msgstr ""
#. XXX: There should be a way to reset to the default/account-default autoreply
-#: ../autoreply/autoreply.c:233
+#: ../autoreply/autoreply.c:216
#, c-format
msgid "Set autoreply message for %s"
msgstr ""
-#: ../autoreply/autoreply.c:235
+#: ../autoreply/autoreply.c:218
msgid "Set Autoreply Message"
msgstr ""
-#: ../autoreply/autoreply.c:236
+#: ../autoreply/autoreply.c:219
msgid ""
"The following message will be sent to the buddy when the buddy sends you a "
"message and autoreply is enabled."
msgstr ""
-#: ../autoreply/autoreply.c:240
+#: ../autoreply/autoreply.c:223
msgid "_Save"
msgstr ""
-#: ../autoreply/autoreply.c:241 ../listhandler/aim_blt_files.c:301
+#: ../autoreply/autoreply.c:224 ../listhandler/aim_blt_files.c:301
#: ../listhandler/aim_blt_files.c:465 ../listhandler/gen_xml_files.c:190
#: ../listhandler/gen_xml_files.c:430 ../listhandler/gen_xml_files.c:545
#: ../listhandler/gen_xml_files.c:622 ../listhandler/migrate.c:145
@@ -144,128 +155,145 @@
msgid "_Cancel"
msgstr ""
-#: ../autoreply/autoreply.c:257
+#: ../autoreply/autoreply.c:240
msgid "Set _Autoreply Message"
msgstr ""
-#: ../autoreply/autoreply.c:266
+#: ../autoreply/autoreply.c:249
msgid "Autoreply message"
msgstr ""
-#: ../autoreply/autoreply.c:353
+#: ../autoreply/autoreply.c:336
msgid "Send autoreply messages when"
msgstr ""
-#: ../autoreply/autoreply.c:357
+#: ../autoreply/autoreply.c:340
msgid "When my account is _away"
msgstr ""
-#: ../autoreply/autoreply.c:361
+#: ../autoreply/autoreply.c:344
msgid "When my account is _idle"
msgstr ""
-#: ../autoreply/autoreply.c:365
+#: ../autoreply/autoreply.c:348
msgid "_Default reply"
msgstr ""
-#: ../autoreply/autoreply.c:372
+#: ../autoreply/autoreply.c:355
msgid ""
"Autoreply Prefix\n"
"(only when necessary)"
msgstr ""
-#: ../autoreply/autoreply.c:375
+#: ../autoreply/autoreply.c:358
msgid "Status message"
msgstr ""
-#: ../autoreply/autoreply.c:379
+#: ../autoreply/autoreply.c:362
msgid "Autoreply with status message"
msgstr ""
+#: ../autoreply/autoreply.c:364
+msgid "Never"
+msgstr ""
+
+#: ../autoreply/autoreply.c:366
+msgid "Always when there is a status message"
+msgstr ""
+
+#: ../autoreply/autoreply.c:368
+msgid "Only when there's no autoreply message"
+msgstr ""
+
+#: ../autoreply/autoreply.c:373
+msgid "Delay between autoreplies"
+msgstr ""
+
+#: ../autoreply/autoreply.c:377
+msgid "_Minimum delay (mins)"
+msgstr ""
+
#: ../autoreply/autoreply.c:381
-msgid "Never"
-msgstr ""
-
-#: ../autoreply/autoreply.c:383
-msgid "Always when there is a status message"
+msgid "Times to send autoreplies"
msgstr ""
#: ../autoreply/autoreply.c:385
-msgid "Only when there's no autoreply message"
-msgstr ""
-
-#: ../autoreply/autoreply.c:390
-msgid "Delay between autoreplies"
-msgstr ""
-
-#: ../autoreply/autoreply.c:394
-msgid "_Minimum delay (mins)"
-msgstr ""
-
-#: ../autoreply/autoreply.c:398
-msgid "Times to send autoreplies"
-msgstr ""
-
-#: ../autoreply/autoreply.c:402
msgid "Ma_ximum count"
msgstr ""
-#: ../autoreply/autoreply.c:457
+#: ../autoreply/autoreply.c:443
+msgid "Autoreply"
+msgstr ""
+
+#: ../autoreply/autoreply.c:444
+msgid "Autoreply for all the protocols"
+msgstr ""
+
+#: ../autoreply/autoreply.c:445
+msgid ""
+"This plugin lets you set autoreply message for any protocol. You can set the "
+"global autoreply message from the plugin options dialog. To set some "
+"specific autoreply message for a particular buddy, right click on the buddy "
+"in the buddy-list window. To set autoreply messages for some accounts, go to "
+"the `Advanced' tab of the account edit dialog."
+msgstr ""
+
+#: ../autoreply/autoreply.c:455
msgid ""
"I am currently not available. Please leave your message, and I will get back "
"to you as soon as possible."
msgstr ""
-#: ../autoreply/autoreply.c:462
+#: ../autoreply/autoreply.c:460
msgid "This is an autoreply: "
msgstr ""
-#: ../awaynotify/awaynotify.c:190
+#: ../awaynotify/awaynotify.c:183
#, c-format
msgid "%s is away: %s"
msgstr ""
-#: ../awaynotify/awaynotify.c:220
+#: ../awaynotify/awaynotify.c:213
#, c-format
msgid "%s is no longer away."
msgstr ""
-#: ../awaynotify/awaynotify.c:267
+#: ../awaynotify/awaynotify.c:260
msgid "Away State Notification"
msgstr ""
-#: ../awaynotify/awaynotify.c:269
+#: ../awaynotify/awaynotify.c:262
msgid ""
"Notifies in a conversation window when a buddy goes or returns from away"
msgstr ""
-#: ../bash/bash.c:105
+#: ../bash/bash.c:96
msgid ""
"bash [n]: sends a link to a bash.org quote. Specify a number for n and it "
"will send a link to the quote with the specified number."
msgstr ""
-#: ../bash/bash.c:109
+#: ../bash/bash.c:100
msgid ""
"qdb [n]: sends a link to a qdb.us quote. Specify a number for n and it will "
"send a link to the quite with the specified number."
msgstr ""
-#: ../bash/bash.c:169
+#: ../bash/bash.c:160
msgid "bash.org"
msgstr ""
-#: ../bash/bash.c:171
+#: ../bash/bash.c:162
msgid "Generates links for quotes at bash.org"
msgstr ""
-#: ../bash/bash.c:173
+#: ../bash/bash.c:164
msgid ""
"Generates links for quotes at bash.org or allows the user to specify a "
"quote. Provides the /bash command."
msgstr ""
-#: ../bit/bit.c:122
+#: ../bit/bit.c:115
#, c-format
msgid "Unable to locate the buddy icon cache directory %s"
msgstr ""
@@ -275,230 +303,242 @@
#. without going through every file, and the blist...
#. ... a huge hash type table *may help*, but I'd consider it highly inefficient
#. then again, some of the stuff in here ain't exactly a TGV either
-#: ../bit/bit.c:124 ../bit/bit.c:133 ../bit/bit.c:178
+#: ../bit/bit.c:117 ../bit/bit.c:126 ../bit/bit.c:171
msgid "Destroy Unused Icons"
msgstr ""
+#: ../bit/bit.c:117
+msgid "Unable to locate"
+msgstr ""
+
#: ../bit/bit.c:124
-msgid "Unable to locate"
-msgstr ""
-
-#: ../bit/bit.c:131
#, c-format
msgid "Unable to read the buddy icon cache directory %s"
msgstr ""
-#: ../bit/bit.c:133
+#: ../bit/bit.c:126
msgid "Unable to read"
msgstr ""
-#: ../bit/bit.c:182
+#: ../bit/bit.c:175
msgid "Flush Buddy Icons"
msgstr ""
-#: ../bit/bit.c:186
+#: ../bit/bit.c:179
msgid "Refresh Buddy Icons"
msgstr ""
-#: ../bit/bit.c:236
+#: ../bit/bit.c:229
msgid "Buddy Icon Tools"
msgstr ""
-#: ../bit/bit.c:237
+#: ../bit/bit.c:230
msgid "Tools to manipulate buddy icons. *DANGEROUS*"
msgstr ""
-#: ../bit/bit.c:238
+#: ../bit/bit.c:231
msgid ""
"Whilst working on Purple 2.0.0, I found a need to destroy all my buddies' "
"buddy icons. There's nothing to do these functions in Purple, so here they "
"are. Completely, thoroughly untested."
msgstr ""
-#: ../blistops/blistops.c:233
+#: ../blistops/blistops.c:228
msgid "Hide the buddy list when it is created"
msgstr ""
-#: ../blistops/blistops.c:237
+#: ../blistops/blistops.c:232
msgid "Hide the menu in the buddy list window"
msgstr ""
-#: ../blistops/blistops.c:241
+#: ../blistops/blistops.c:236
msgid "Stretch the buddyname if the buddy has no buddyicon."
msgstr ""
-#: ../blistops/blistops.c:245
+#: ../blistops/blistops.c:240
msgid "Show email addresses for all the buddies."
msgstr ""
-#: ../blistops/blistops.c:302
+#: ../blistops/blistops.c:297
msgid "Buddy List Options"
msgstr ""
-#: ../blistops/blistops.c:303 ../blistops/blistops.c:304
+#: ../blistops/blistops.c:298 ../blistops/blistops.c:299
msgid "Gives extended options to the buddy list"
msgstr ""
#. arbitrary number that I like
-#: ../broadcast/broadcast.c:100
+#: ../broadcast/broadcast.c:93
msgid ""
"Your message will be sent to and possibly annoy EVERYONE on your buddy list!"
msgstr ""
-#: ../broadcast/broadcast.c:122
+#: ../broadcast/broadcast.c:115
msgid "Broadcast Spim"
msgstr ""
-#: ../broadcast/broadcast.c:123
+#: ../broadcast/broadcast.c:116
msgid "Enter the message to send"
msgstr ""
-#: ../broadcast/broadcast.c:124 ../groupmsg/groupmsg.c:125
+#: ../broadcast/broadcast.c:117 ../groupmsg/groupmsg.c:119
msgid "Send"
msgstr ""
-#: ../broadcast/broadcast.c:137
+#: ../broadcast/broadcast.c:130
msgid "Broadcast a Message"
msgstr ""
-#: ../broadcast/broadcast.c:187
+#: ../broadcast/broadcast.c:180
msgid "Broadcaster"
msgstr ""
-#: ../broadcast/broadcast.c:188
+#: ../broadcast/broadcast.c:181
msgid "Send an IM to everyone on your buddy list."
msgstr ""
-#: ../broadcast/broadcast.c:189
+#: ../broadcast/broadcast.c:182
msgid ""
"Adds the ability to send an IM to every Purple Contact on your Buddy List"
msgstr ""
+#: ../buddytime/buddytime.c:124
+msgid "_Timezone"
+msgstr ""
+
+#: ../buddytime/buddytime.c:127
+msgid "Clear setting"
+msgstr ""
+
+#: ../buddytime/buddytime.c:129
+msgid "GMT-12"
+msgstr ""
+
+#: ../buddytime/buddytime.c:130
+msgid "GMT-11"
+msgstr ""
+
+#: ../buddytime/buddytime.c:131
+msgid "GMT-10"
+msgstr ""
+
+#: ../buddytime/buddytime.c:132
+msgid "GMT-9"
+msgstr ""
+
+#: ../buddytime/buddytime.c:133
+msgid "GMT-8"
+msgstr ""
+
#: ../buddytime/buddytime.c:134
-msgid "_Timezone"
+msgid "GMT-7"
+msgstr ""
+
+#: ../buddytime/buddytime.c:135
+msgid "GMT-6"
+msgstr ""
+
+#: ../buddytime/buddytime.c:136
+msgid "GMT-5"
msgstr ""
#: ../buddytime/buddytime.c:137
-msgid "Clear setting"
+msgid "GMT-4"
+msgstr ""
+
+#: ../buddytime/buddytime.c:138
+msgid "GMT-3"
msgstr ""
#: ../buddytime/buddytime.c:139
-msgid "GMT-12"
+msgid "GMT-2"
msgstr ""
#: ../buddytime/buddytime.c:140
-msgid "GMT-11"
+msgid "GMT-1"
msgstr ""
#: ../buddytime/buddytime.c:141
-msgid "GMT-10"
+msgid "GMT"
msgstr ""
#: ../buddytime/buddytime.c:142
-msgid "GMT-9"
+msgid "GMT+1"
msgstr ""
#: ../buddytime/buddytime.c:143
-msgid "GMT-8"
+msgid "GMT+2"
msgstr ""
#: ../buddytime/buddytime.c:144
-msgid "GMT-7"
+msgid "GMT+3"
msgstr ""
#: ../buddytime/buddytime.c:145
-msgid "GMT-6"
+msgid "GMT+4"
msgstr ""
#: ../buddytime/buddytime.c:146
-msgid "GMT-5"
+msgid "GMT+5"
msgstr ""
#: ../buddytime/buddytime.c:147
-msgid "GMT-4"
+msgid "GMT+6"
msgstr ""
#: ../buddytime/buddytime.c:148
-msgid "GMT-3"
+msgid "GMT+7"
msgstr ""
#: ../buddytime/buddytime.c:149
-msgid "GMT-2"
+msgid "GMT+8"
msgstr ""
#: ../buddytime/buddytime.c:150
-msgid "GMT-1"
+msgid "GMT+9"
msgstr ""
#: ../buddytime/buddytime.c:151
-msgid "GMT"
+msgid "GMT+10"
msgstr ""
#: ../buddytime/buddytime.c:152
-msgid "GMT+1"
+msgid "GMT+11"
msgstr ""
#: ../buddytime/buddytime.c:153
-msgid "GMT+2"
-msgstr ""
-
-#: ../buddytime/buddytime.c:154
-msgid "GMT+3"
-msgstr ""
-
-#: ../buddytime/buddytime.c:155
-msgid "GMT+4"
-msgstr ""
-
-#: ../buddytime/buddytime.c:156
-msgid "GMT+5"
-msgstr ""
-
-#: ../buddytime/buddytime.c:157
-msgid "GMT+6"
-msgstr ""
-
-#: ../buddytime/buddytime.c:158
-msgid "GMT+7"
-msgstr ""
-
-#: ../buddytime/buddytime.c:159
-msgid "GMT+8"
+msgid "GMT+12"
msgstr ""
#: ../buddytime/buddytime.c:160
-msgid "GMT+9"
-msgstr ""
-
-#: ../buddytime/buddytime.c:161
-msgid "GMT+10"
-msgstr ""
-
-#: ../buddytime/buddytime.c:162
-msgid "GMT+11"
-msgstr ""
-
-#: ../buddytime/buddytime.c:163
-msgid "GMT+12"
-msgstr ""
-
-#: ../buddytime/buddytime.c:170
msgid "Select timezone"
msgstr ""
-#: ../buddytime/buddytime.c:195
+#: ../buddytime/buddytime.c:185
msgid "Timezone"
msgstr ""
-#: ../chronic/chronic.c:111
+#: ../buddytime/buddytime.c:255
+msgid "Buddy Time"
+msgstr ""
+
+#: ../buddytime/buddytime.c:256
+msgid "summary"
+msgstr ""
+
+#: ../buddytime/buddytime.c:257
+msgid "description"
+msgstr ""
+
+#: ../chronic/chronic.c:102
msgid "Chronic"
msgstr ""
-#: ../chronic/chronic.c:112
+#: ../chronic/chronic.c:103
msgid "Sound playing triggers"
msgstr ""
-#: ../chronic/chronic.c:113
+#: ../chronic/chronic.c:104
msgid ""
"Allows buddies to remotely trigger sound playing in your instance of Purple "
"with {S &lt;sound&gt;. Inspired by #guifications channel resident "
@@ -506,69 +546,77 @@
"FUNCTIONAL! IT IS USELESS!"
msgstr ""
-#: ../dice/dice.c:88
+#: ../dice/dice.c:81
msgid "dice [dice] [sides]: rolls dice number of sides sided dice"
msgstr ""
-#: ../dice/dice.c:146
+#: ../dice/dice.c:139
msgid "Dice"
msgstr ""
-#: ../dice/dice.c:147
+#: ../dice/dice.c:140
msgid "Rolls dice in a chat or im"
msgstr ""
-#: ../dice/dice.c:148
+#: ../dice/dice.c:141
msgid ""
"Adds a command (/dice) to roll an arbitrary number of dice with an arbitrary "
"number of sides"
msgstr ""
-#: ../difftopic/difftopic.c:152
+#: ../difftopic/difftopic.c:137
#, c-format
msgid "<BR>Topic changed from: <BR>%s<BR>To:<BR>%s"
msgstr ""
-#: ../eight_ball/eight_ball.c:142
+#: ../difftopic/difftopic.c:218
+msgid "DiffTopic"
+msgstr ""
+
+#: ../difftopic/difftopic.c:219 ../difftopic/difftopic.c:220
+msgid "Show the old topic when the topic in a chat room changes."
+msgstr ""
+
+#: ../eight_ball/eight_ball.c:134
msgid "8ball: sends a random 8ball message"
msgstr ""
-#: ../eight_ball/eight_ball.c:143
+#: ../eight_ball/eight_ball.c:135
msgid "sgball: sends a random Stargate Ball message"
msgstr ""
-#: ../eight_ball/eight_ball.c:144
+#: ../eight_ball/eight_ball.c:136
msgid "fullcrap: sends random fooling blabber"
msgstr ""
-#: ../eight_ball/eight_ball.c:217
+#: ../eight_ball/eight_ball.c:209
msgid "Magic 8 Ball"
msgstr ""
-#: ../eight_ball/eight_ball.c:218
+#: ../eight_ball/eight_ball.c:210
msgid "Provides Magic 8-ball like functionality"
msgstr ""
-#: ../eight_ball/eight_ball.c:219
+#: ../eight_ball/eight_ball.c:211
msgid ""
"Provides Magic 8-ball like functionality with the /8ball command, as well as "
"similar functionality for common Stargate words or phrases with the /sg-ball "
"command."
msgstr ""
-#: ../flip/flip.c:67
+#: ../flip/flip.c:60
msgid "Outputs the results of flipping a coin"
msgstr ""
-#: ../flip/flip.c:120
+#: ../flip/flip.c:113
msgid "Coin Flip"
msgstr ""
-#: ../flip/flip.c:121
+#: ../flip/flip.c:114
msgid "Flips a coin and outputs the result"
msgstr ""
-#: ../flip/flip.c:122
+#: ../flip/flip.c:115
msgid ""
"Adds a command (/flip) to flip a coin and outputs the result in the active "
"conversation"
@@ -576,21 +624,21 @@
#. should be completely mad and see if user has only one buddy (not a chat)
#. * on the blist and pluralise if appropriate
-#: ../gRIM/gRIM.c:280
+#: ../gRIM/gRIM.c:272
msgid ""
"gRIM: rim your pals\n"
-"/rim &lt;filename&gt; &lt;duration-in-secs&gt;"
+"/rim &lt;duration-in-secs&gt; &lt;filename&gt;"
msgstr ""
-#: ../gRIM/gRIM.c:346
+#: ../gRIM/gRIM.c:338
msgid "gRIM"
msgstr ""
-#: ../gRIM/gRIM.c:347
+#: ../gRIM/gRIM.c:339
msgid "A completely stupid and pointless plugin"
msgstr ""
-#: ../gRIM/gRIM.c:348
+#: ../gRIM/gRIM.c:340
#, fuzzy
msgid ""
"Adds commands to annoy buddies with. Inspired by a dumb IRC convo and Red "
@@ -599,63 +647,71 @@
"Adds a command (/rim) to annoy Bruces and Sheilas with. Inspired by a dumb "
"IRC convo and Red Dwarf."
-#: ../groupmsg/groupmsg.c:110
+#: ../groupmsg/groupmsg.c:104
#, c-format
msgid "There are no buddies online in group %s"
msgstr ""
-#: ../groupmsg/groupmsg.c:118
+#: ../groupmsg/groupmsg.c:112
#, c-format
msgid ""
"Your message will be sent to these buddies:\n"
"%s"
msgstr ""
-#: ../groupmsg/groupmsg.c:121
+#: ../groupmsg/groupmsg.c:115
msgid "Spam"
msgstr ""
-#: ../groupmsg/groupmsg.c:122
+#: ../groupmsg/groupmsg.c:116
msgid "Please enter the message to send"
msgstr ""
-#: ../groupmsg/groupmsg.c:191
+#: ../groupmsg/groupmsg.c:185
msgid "Group IM"
msgstr ""
-#: ../groupmsg/groupmsg.c:192
+#: ../groupmsg/groupmsg.c:186
msgid "Send an IM to a group of buddies."
msgstr ""
-#: ../groupmsg/groupmsg.c:193
+#: ../groupmsg/groupmsg.c:187
msgid "Adds the option to send an IM to every online buddy in a group."
msgstr ""
-#: ../hideconv/hideconv.c:121 ../hideconv/hideconv.c:148
+#: ../hideconv/hideconv.c:109 ../hideconv/hideconv.c:136
msgid "/Options"
msgstr ""
-#: ../hideconv/hideconv.c:129
+#: ../hideconv/hideconv.c:117
msgid "_Hide Conversation"
msgstr ""
-#: ../hideconv/hideconv.c:135
+#: ../hideconv/hideconv.c:123
msgid "Show Hidden Conversations"
msgstr ""
-#: ../hideconv/hideconv.c:248
+#: ../hideconv/hideconv.c:236
msgid "Show All Hidden Conversations"
msgstr ""
-#: ../hideconv/hideconv.c:251
+#: ../hideconv/hideconv.c:239
msgid "Hide All Conversations"
msgstr ""
-#: ../highlight/highlight.c:81
+#: ../hideconv/hideconv.c:285
+msgid "Hide Conversation"
+msgstr ""
+
+#: ../hideconv/hideconv.c:286 ../hideconv/hideconv.c:287
+msgid "Hide conversations without closing them."
+msgstr ""
+
+#: ../highlight/highlight.c:74
msgid "Highlight History"
msgstr ""
-#: ../highlight/highlight.c:253
+#: ../highlight/highlight.c:246
msgid ""
"/highlight history: shows the list of highlighted sentences from the "
"history.\n"
@@ -666,17 +722,17 @@
"for this conversation only.\n"
msgstr ""
-#: ../highlight/highlight.c:281
+#: ../highlight/highlight.c:274
msgid ""
"Words to highlight on\n"
"(separate words by space)"
msgstr ""
-#: ../highlight/highlight.c:309 ../nicksaid/nicksaid.c:577
+#: ../highlight/highlight.c:302 ../nicksaid/nicksaid.c:565
msgid "Highlight"
msgstr ""
-#: ../highlight/highlight.c:311 ../highlight/highlight.c:312
+#: ../highlight/highlight.c:304 ../highlight/highlight.c:305
msgid "Support for highlighting words."
msgstr ""
@@ -754,11 +810,11 @@
msgid "Filter"
msgstr ""
-#: ../ignorance/interface.c:172 ../ignore/ignore.c:275
+#: ../ignorance/interface.c:172 ../ignore/ignore.c:268
msgid "Ignore"
msgstr ""
-#: ../ignorance/interface.c:176 ../schedule/pidgin-schedule.c:264
+#: ../ignorance/interface.c:176 ../schedule/pidgin-schedule.c:255
msgid "Send Message"
msgstr ""
@@ -803,19 +859,19 @@
msgid "Couldn't find pixmap file: %s"
msgstr ""
-#: ../ignore/ignore.c:133
+#: ../ignore/ignore.c:126
msgid "Ignore Rules"
msgstr ""
-#: ../ignore/ignore.c:133
+#: ../ignore/ignore.c:126
msgid "The following are the current ignore rules"
msgstr ""
-#: ../ignore/ignore.c:134
+#: ../ignore/ignore.c:127
msgid "(Dear God! You are not ignoring any one!)"
msgstr ""
-#: ../ignore/ignore.c:236
+#: ../ignore/ignore.c:229
msgid ""
"ignore [-c] [+&lt;ignore&gt; -&lt;unignore&gt;]<br>Examples:<br> 'ignore "
"+StupidBot -NotABot' \t - (in a chat) Starts ignoring StupidBot, and removes "
@@ -825,122 +881,161 @@
"unignoring this person.<br> 'ignore' \t - Lists the current ignore rules."
msgstr ""
-#: ../ignore/ignore.c:277
+#: ../ignore/ignore.c:270
msgid ""
"Flexible plugin to selectively ignore people. Please do not use if you have "
"amnesia."
msgstr ""
-#: ../ignore/ignore.c:278
+#: ../ignore/ignore.c:271
msgid ""
"Flexible plugin to selectively ignore people. See '/help ignore' for more "
"help.\n"
"Please do not use if you have amnesia."
msgstr ""
-#: ../irc-more/irc-more.c:86
+#: ../irc-more/irc-more.c:123
+msgid "notice target message: Send a notice to the specified target."
+msgstr ""
+
+#: ../irc-more/irc-more.c:136
msgid "Default Quit Message"
msgstr ""
-#: ../irc-more/irc-more.c:89
+#: ../irc-more/irc-more.c:139
msgid "Default Part Message"
msgstr ""
-#: ../irc-more/irc-more.c:92
+#: ../irc-more/irc-more.c:142
msgid "CTCP Version reply"
msgstr ""
-#: ../irc-more/irc-more.c:116
+#: ../irc-more/irc-more.c:194
msgid "IRC More"
msgstr ""
-#: ../irc-more/irc-more.c:118 ../irc-more/irc-more.c:119
-msgid ""
-"Adds a couple of options for IRC: Customized default quit message, and CTCP "
-"version reply."
+#: ../irc-more/irc-more.c:195
+msgid "Adds additional IRC features."
msgstr ""
-#: ../irchelper/irchelper.c:948
+#: ../irc-more/irc-more.c:196
+msgid ""
+"Adds additional IRC features, including a customizable quit message, a "
+"customizable CTCP VERSION reply, and the /notice command for notices."
+msgstr ""
+
+#: ../irchelper/irchelper.c:937
msgid "You have been added to the access list."
msgstr ""
-#: ../irchelper/irchelper.c:950
+#: ../irchelper/irchelper.c:939
#, c-format
msgid "You have been added to the access list with an access level of %s."
msgstr ""
-#: ../irchelper/irchelper.c:984
+#: ../irchelper/irchelper.c:973
msgid "You have been removed from the access list."
msgstr ""
-#: ../irchelper/irchelper.c:1093
+#: ../irchelper/irchelper.c:1082
msgid "NickServ Authentication Error"
msgstr ""
-#: ../irchelper/irchelper.c:1094
+#: ../irchelper/irchelper.c:1083
msgid "Error authenticating with NickServ"
msgstr ""
-#: ../irchelper/irchelper.c:1095 ../irchelper/irchelper.c:1121
-#: ../irchelper/irchelper.c:1147
+#: ../irchelper/irchelper.c:1084 ../irchelper/irchelper.c:1110
+#: ../irchelper/irchelper.c:1136
msgid "Check your password."
msgstr ""
-#: ../irchelper/irchelper.c:1119
+#: ../irchelper/irchelper.c:1108
msgid "GameSurge Authentication Error"
msgstr ""
-#: ../irchelper/irchelper.c:1120
+#: ../irchelper/irchelper.c:1109
msgid "Error authenticating with AuthServ"
msgstr ""
-#: ../irchelper/irchelper.c:1145
+#: ../irchelper/irchelper.c:1134
msgid "QuakeNet Authentication Error"
msgstr ""
-#: ../irchelper/irchelper.c:1146
+#: ../irchelper/irchelper.c:1135
msgid "Error authenticating with Q"
msgstr ""
#. Register protocol preferences.
-#: ../irchelper/irchelper.c:1185
+#: ../irchelper/irchelper.c:1174
msgid "Auth name"
msgstr ""
-#: ../irchelper/irchelper.c:1188
+#: ../irchelper/irchelper.c:1177
msgid "Nick password"
msgstr ""
-#: ../irchelper/irchelper.c:1192
+#: ../irchelper/irchelper.c:1181
msgid "Disconnect ghosts (Duplicate nicknames)"
msgstr ""
-#: ../irchelper/irchelper.c:1196
+#: ../irchelper/irchelper.c:1185
msgid "Operator password"
msgstr ""
-#: ../irssi/datechange.c:83
+#: ../irchelper/irchelper.c:1261
+msgid "IRC Helper"
+msgstr ""
+
+#: ../irchelper/irchelper.c:1262
+msgid "Handles the rough edges of the IRC protocol."
+msgstr ""
+
+#: ../irchelper/irchelper.c:1263
+msgid ""
+"- Transparent authentication with a variety of services.\n"
+"- Suppression of various useless messages"
+msgstr ""
+
+#: ../irssi/datechange.c:79
#, c-format
msgid "Day changed to %s"
msgstr ""
-#: ../irssi/datechange.c:94
+#: ../irssi/datechange.c:90
msgid "Happy New Year"
msgstr ""
+#. set these here to allow for translations of the strings
+#: ../irssi/irssi.c:107
+msgid "Irssi Features"
+msgstr ""
+
+#: ../irssi/irssi.c:108
+msgid "Implements features of the irssi IRC client for use in Pidgin."
+msgstr ""
+
+#: ../irssi/irssi.c:110
+msgid ""
+"Implements some features of the IRC client irssi to be used in Purple. It "
+"lets you know in all open conversations when the day has changed, adds the "
+"lastlog command, adds the window command, etc. The day changed message is "
+"not logged."
+msgstr ""
+
#. XXX: This should probably be moved into outputting directly in the
#. * conversation window.
#.
-#: ../irssi/lastlog.c:77
+#: ../irssi/lastlog.c:73
msgid "Lastlog"
msgstr ""
-#: ../irssi/lastlog.c:77
+#: ../irssi/lastlog.c:73
msgid "Lastlog output"
msgstr ""
#. XXX: Translators: DO NOT TRANSLATE "lastlog" or the HTML tags below
-#: ../irssi/lastlog.c:104
+#: ../irssi/lastlog.c:100
msgid ""
"<pre>lastlog &lt;string&gt;: Shows, from the current conversation's history, "
"all messages containing the word or words specified in string. It will be "
@@ -951,7 +1046,7 @@
#. * XXX: Translators: DO NOT TRANSLATE the first "layout" or the "\nsave"
#. * or "reset" at the beginning of the last line below, or the HTML tags.
#.
-#: ../irssi/layout.c:331
+#: ../irssi/layout.c:327
msgid ""
"<pre>layout &lt;save|reset&gt;: Remember the layout of the current "
"conversations to reopen them when Purple is restarted.\n"
@@ -960,15 +1055,15 @@
"</pre>"
msgstr ""
-#: ../irssi/window.c:76
+#: ../irssi/window.c:71
msgid "Invalid window specified."
msgstr ""
+#: ../irssi/window.c:113
+msgid "Invalid argument!"
+msgstr ""
+
#: ../irssi/window.c:118
-msgid "Invalid argument!"
-msgstr ""
-
-#: ../irssi/window.c:123
msgid "Unknown Error!"
msgstr ""
@@ -979,7 +1074,7 @@
#. * NOT going to be translatable. Also, please don't translate the HTML
#. * tags.
#.
-#: ../irssi/window.c:151
+#: ../irssi/window.c:146
msgid ""
"<pre>window &lt;option&gt;: Operations for windows (tabs). Valid options "
"are:\n"
@@ -993,7 +1088,7 @@
msgstr ""
#. same thing as above, except for the /win command
-#: ../irssi/window.c:167
+#: ../irssi/window.c:162
msgid ""
"<pre>win: THis command is synonymous with /window. Try /help window for "
"further details.</pre>"
@@ -1003,39 +1098,39 @@
#. Last said
#. Signed on
#. Signed off
-#: ../lastseen/lastseen.c:165
+#: ../lastseen/lastseen.c:159
msgid ""
"\n"
"<b>Last Seen</b>: "
msgstr ""
-#: ../lastseen/lastseen.c:166
+#: ../lastseen/lastseen.c:160
msgid ""
"\n"
"<b>Last Said</b>: "
msgstr ""
-#: ../lastseen/lastseen.c:167
+#: ../lastseen/lastseen.c:161
msgid ""
"\n"
"<b>Signed On</b>: "
msgstr ""
-#: ../lastseen/lastseen.c:168
+#: ../lastseen/lastseen.c:162
msgid ""
"\n"
"<b>Signed Off</b>: "
msgstr ""
-#: ../lastseen/lastseen.c:246
+#: ../lastseen/lastseen.c:240
msgid "Last Seen"
msgstr ""
-#: ../lastseen/lastseen.c:247
+#: ../lastseen/lastseen.c:241
msgid "Record when a buddy was last seen."
msgstr ""
-#: ../lastseen/lastseen.c:248
+#: ../lastseen/lastseen.c:242
msgid ""
"Logs the time of a last received message, what they said, when they logged "
"in, and when they logged out, for buddies on your buddy list."
@@ -1046,7 +1141,7 @@
#: ../listhandler/gen_xml_files.c:175 ../listhandler/gen_xml_files.c:416
#: ../listhandler/gen_xml_files.c:531 ../listhandler/gen_xml_files.c:607
#: ../listhandler/migrate.c:129 ../listhandler/migrate.c:169
-#: ../schedule/pidgin-schedule.c:292
+#: ../schedule/pidgin-schedule.c:283
msgid "Account"
msgstr ""
@@ -1163,7 +1258,7 @@
msgid "Choose the account to add buddies to:"
msgstr ""
-#: ../listhandler/migrate.c:144 ../schedule/pidgin-schedule.c:584
+#: ../listhandler/migrate.c:144 ../schedule/pidgin-schedule.c:575
msgid "_Add"
msgstr ""
@@ -1175,91 +1270,106 @@
msgid "C_opy"
msgstr ""
-#: ../mystatusbox/mystatusbox.c:395
+#: ../mystatusbox/mystatusbox.c:378
msgid "All"
msgstr ""
-#: ../mystatusbox/mystatusbox.c:398 ../nicksaid/nicksaid.c:264
+#: ../mystatusbox/mystatusbox.c:381 ../nicksaid/nicksaid.c:252
msgid "None"
msgstr ""
-#: ../mystatusbox/mystatusbox.c:401
+#: ../mystatusbox/mystatusbox.c:384
msgid "Out of sync ones"
msgstr ""
-#: ../mystatusbox/mystatusbox.c:406
+#: ../mystatusbox/mystatusbox.c:389
msgid "Toggle icon selectors"
msgstr ""
-#: ../mystatusbox/mystatusbox.c:409
+#: ../mystatusbox/mystatusbox.c:392
msgid "Toggle global selector"
msgstr ""
-#: ../mystatusbox/mystatusbox.c:517
+#: ../mystatusbox/mystatusbox.c:500
msgid "Hide global status selector"
msgstr ""
-#: ../mystatusbox/mystatusbox.c:520
+#: ../mystatusbox/mystatusbox.c:503
msgid "Hide icon-selectors"
msgstr ""
-#: ../napster/napster.c:288
+#: ../mystatusbox/mystatusbox.c:559
+msgid "Mystatusbox (Show Statusboxes)"
+msgstr ""
+
+#: ../mystatusbox/mystatusbox.c:560
+msgid "Hide/Show the per-account statusboxes"
+msgstr ""
+
+#: ../mystatusbox/mystatusbox.c:561
+msgid ""
+"You can show all the per-account statusboxes, hide all of them, or just show "
+"the ones that are in a different status from the global status. For ease of "
+"use, you can bind keyboard shortcuts for the menu items."
+msgstr ""
+
+#: ../napster/napster.c:281
msgid "Unable to read header from server"
msgstr ""
-#: ../napster/napster.c:302
+#: ../napster/napster.c:295
#, c-format
msgid "Unable to read message from server: %s. Command is %hd, length is %hd."
msgstr ""
-#: ../napster/napster.c:318
+#: ../napster/napster.c:311
msgid "Unknown server error."
msgstr ""
-#: ../napster/napster.c:367
+#: ../napster/napster.c:360
#, c-format
msgid "users: %s, files: %s, size: %sGB"
msgstr ""
#. MSG_SERVER_HOTLIST_ERROR
-#: ../napster/napster.c:378
+#: ../napster/napster.c:371
#, c-format
msgid "Unable to add \"%s\" to your Napster hotlist"
msgstr ""
#. MSG_SERVER_DISCONNECTING
#. we have been kicked off =^(
-#: ../napster/napster.c:385
+#: ../napster/napster.c:378
msgid "You were disconnected from the server."
msgstr ""
#. MSG_CLIENT_WHOIS
-#: ../napster/napster.c:442
+#: ../napster/napster.c:435
#, c-format
msgid "%s requested your information"
msgstr ""
#. MSG_SERVER_GHOST
#. Looks like someone logged in as us! =-O
-#: ../napster/napster.c:478
+#: ../napster/napster.c:471
msgid "You have signed on from another location."
msgstr ""
#. MSG_CLIENT_PING
-#: ../napster/napster.c:482
+#: ../napster/napster.c:475
#, c-format
msgid "%s requested a PING"
msgstr ""
-#: ../napster/napster.c:529 ../napster/napster.c:565
+#: ../napster/napster.c:522 ../napster/napster.c:558
msgid "Unable to connect."
msgstr ""
-#: ../napster/napster.c:558
+#: ../napster/napster.c:551
msgid "Connecting"
msgstr ""
-#: ../napster/napster.c:622
+#: ../napster/napster.c:615
msgid "_Group:"
msgstr ""
@@ -1273,302 +1383,381 @@
#. *< version
#. * summary
#. * description
-#: ../napster/napster.c:724 ../napster/napster.c:726
+#: ../napster/napster.c:717 ../napster/napster.c:719
msgid "NAPSTER Protocol Plugin"
msgstr ""
-#: ../napster/napster.c:748
+#: ../napster/napster.c:741 ../snpp/snpp.c:574
msgid "Server"
msgstr ""
-#: ../napster/napster.c:753
+#: ../napster/napster.c:746 ../snpp/snpp.c:577
msgid "Port"
msgstr ""
-#: ../nicksaid/nicksaid.c:240
+#: ../nicksaid/nicksaid.c:228 ../nicksaid/nicksaid.c:650
msgid "Nicksaid"
msgstr ""
-#: ../nicksaid/nicksaid.c:240
+#: ../nicksaid/nicksaid.c:228
msgid "List of highlighted messages:"
msgstr ""
-#: ../nicksaid/nicksaid.c:272
+#: ../nicksaid/nicksaid.c:260
msgid "Next"
msgstr ""
-#: ../nicksaid/nicksaid.c:277
+#: ../nicksaid/nicksaid.c:265
msgid "Previous"
msgstr ""
-#: ../nicksaid/nicksaid.c:302
+#: ../nicksaid/nicksaid.c:290
msgid "Clear History"
msgstr ""
-#: ../nicksaid/nicksaid.c:307
+#: ../nicksaid/nicksaid.c:295
msgid "Show All"
msgstr ""
-#: ../nicksaid/nicksaid.c:581
+#: ../nicksaid/nicksaid.c:569
msgid ""
"_Words to highlight on\n"
"(separate the words with a blank space)"
msgstr ""
-#: ../nicksaid/nicksaid.c:584
+#: ../nicksaid/nicksaid.c:572
msgid "Number of displayed characters"
msgstr ""
-#: ../nicksaid/nicksaid.c:588
+#: ../nicksaid/nicksaid.c:576
msgid ""
"_Set the number of characters displayed\n"
"in the nicksaid menu"
msgstr ""
-#: ../nicksaid/nicksaid.c:593
+#: ../nicksaid/nicksaid.c:581
msgid "Display who said your name in the nicksaid menu"
msgstr ""
-#: ../nicksaid/nicksaid.c:597
+#: ../nicksaid/nicksaid.c:585
msgid "Display _timestamps in the nicksaid menu"
msgstr ""
-#: ../nicksaid/nicksaid.c:601
+#: ../nicksaid/nicksaid.c:589
msgid "_Display _datestamps in the nicksaid menu"
msgstr ""
-#: ../nicksaid/nicksaid.c:605
+#: ../nicksaid/nicksaid.c:593
msgid "Allow displaying in a separate dialog"
msgstr ""
-#: ../oldlogger/oldlogger.c:280
+#: ../nicksaid/nicksaid.c:651 ../nicksaid/nicksaid.c:652
+msgid "Record when someone said your nick in a chat."
+msgstr ""
+
+#: ../oldlogger/oldlogger.c:262
#, c-format
msgid "IM Sessions with %s\n"
msgstr ""
-#: ../oldlogger/oldlogger.c:304
+#: ../oldlogger/oldlogger.c:286
#, c-format
msgid "(%s) %s <AUTO-REPLY>: %s\n"
msgstr ""
-#: ../oldlogger/oldlogger.c:335 ../oldlogger/oldlogger.c:482
-msgid "Old plain text"
-msgstr ""
-
-#: ../oldlogger/oldlogger.c:408
+#: ../oldlogger/oldlogger.c:371
#, c-format
msgid "IM Sessions with %s"
msgstr ""
-#: ../oldlogger/oldlogger.c:438
+#: ../oldlogger/oldlogger.c:401
#, c-format
msgid ""
"<FONT COLOR=\"#16569E\" sml=\"%s\">(%s) <B>%s &lt;AUTO-REPLY&gt;:</B></FONT> "
"%s<BR>\n"
msgstr ""
-#: ../oldlogger/oldlogger.c:440
+#: ../oldlogger/oldlogger.c:403
#, c-format
msgid ""
"<FONT COLOR=\"#A82F2F\" sml=\"%s\">(%s) <B>%s &lt;AUTO-REPLY&gt;:</B></FONT> "
"%s<BR>\n"
msgstr ""
-#: ../oldlogger/oldlogger.c:466 ../oldlogger/oldlogger.c:487
+#: ../oldlogger/oldlogger.c:430
+msgid "Old plain text"
+msgstr ""
+
+#: ../oldlogger/oldlogger.c:435
msgid "Old HTML"
msgstr ""
-#: ../oldlogger/oldlogger.c:554
+#: ../oldlogger/oldlogger.c:493
msgid "Old Logger"
msgstr ""
-#: ../oldlogger/oldlogger.c:555 ../oldlogger/oldlogger.c:556
+#: ../oldlogger/oldlogger.c:494 ../oldlogger/oldlogger.c:495
msgid "Re-implements the legacy, deficient, logging"
msgstr ""
-#: ../schedule/pidgin-schedule.c:97
+#: ../plonkers/plonkers.c:227
+msgid "Ignored Plonkers"
+msgstr ""
+
+#: ../plonkers/plonkers.c:229
+msgid "Plonkers singular format:"
+msgstr ""
+
+#: ../plonkers/plonkers.c:232
+msgid "Plonkers plural format:"
+msgstr ""
+
+#: ../plonkers/plonkers.c:236
+msgid "Plonking"
+msgstr ""
+
+#: ../plonkers/plonkers.c:237
+msgid "Plonked singular plural:"
+msgstr ""
+
+#: ../plonkers/plonkers.c:240
+msgid "Plonked plural format:"
+msgstr ""
+
+#: ../plonkers/plonkers.c:246
+msgid "Format information"
+msgstr ""
+
+#: ../plonkers/plonkers.c:251
+msgid "%P: List of plonkers"
+msgstr ""
+
+#: ../plonkers/plonkers.c:254
+msgid "%N: Number of plonkers"
+msgstr ""
+
+#: ../plonkers/plonkers.c:272
+msgid ""
+"<pre>plonkers;\n"
+"Tell people in a chat what you really think of them\n"
+"</pre>"
+msgstr ""
+
+#: ../plonkers/plonkers.c:341
+msgid "/me has identified %N plonker: %P."
+msgstr ""
+
+#: ../plonkers/plonkers.c:343
+msgid "/me has identified %N plonkers: %P."
+msgstr ""
+
+#: ../plonkers/plonkers.c:346 ../plonkers/plonkers.c:348
+msgid "/me plonks: %P."
+msgstr ""
+
+#: ../plonkers/plonkers.c:350
+msgid "Plonkers"
+msgstr ""
+
+#: ../plonkers/plonkers.c:351
+msgid "Tell plonkers what you really think."
+msgstr ""
+
+#: ../plonkers/plonkers.c:352
+msgid ""
+"Plonkers is a small plugin that lets you announce to a chat room your "
+"current list of ignores, as well as providing other pointless ignore and "
+"privacy tools for dealing with idiots. The name is inspired by the British/"
+"Irish word for 'idiots.'"
+msgstr ""
+
+#: ../schedule/pidgin-schedule.c:88
msgid "Schedule List"
msgstr ""
+#: ../schedule/pidgin-schedule.c:146
+msgid "Every month"
+msgstr ""
+
+#: ../schedule/pidgin-schedule.c:147
+msgid "January"
+msgstr ""
+
+#: ../schedule/pidgin-schedule.c:148
+msgid "February"
+msgstr ""
+
+#: ../schedule/pidgin-schedule.c:149
+msgid "March"
+msgstr ""
+
+#: ../schedule/pidgin-schedule.c:150
+msgid "April"
+msgstr ""
+
+#: ../schedule/pidgin-schedule.c:151
+msgid "May"
+msgstr ""
+
+#: ../schedule/pidgin-schedule.c:152
+msgid "June"
+msgstr ""
+
+#: ../schedule/pidgin-schedule.c:153
+msgid "July"
+msgstr ""
+
+#: ../schedule/pidgin-schedule.c:154
+msgid "August"
+msgstr ""
+
#: ../schedule/pidgin-schedule.c:155
-msgid "Every month"
+msgid "September"
msgstr ""
#: ../schedule/pidgin-schedule.c:156
-msgid "January"
+msgid "October"
msgstr ""
#: ../schedule/pidgin-schedule.c:157
-msgid "February"
+msgid "November"
msgstr ""
#: ../schedule/pidgin-schedule.c:158
-msgid "March"
-msgstr ""
-
-#: ../schedule/pidgin-schedule.c:159
-msgid "April"
+msgid "December"
msgstr ""
-#: ../schedule/pidgin-schedule.c:160
-msgid "May"
-msgstr ""
-
-#: ../schedule/pidgin-schedule.c:161
-msgid "June"
+#: ../schedule/pidgin-schedule.c:161 ../schedule/pidgin-schedule.c:217
+msgid "Everyday"
msgstr ""
#: ../schedule/pidgin-schedule.c:162
-msgid "July"
+msgid "Sunday"
msgstr ""
#: ../schedule/pidgin-schedule.c:163
-msgid "August"
+msgid "Monday"
msgstr ""
#: ../schedule/pidgin-schedule.c:164
-msgid "September"
+msgid "Tuesday"
msgstr ""
#: ../schedule/pidgin-schedule.c:165
-msgid "October"
+msgid "Wednesday"
msgstr ""
#: ../schedule/pidgin-schedule.c:166
-msgid "November"
+msgid "Thursday"
msgstr ""
#: ../schedule/pidgin-schedule.c:167
-msgid "December"
-msgstr ""
-
-#: ../schedule/pidgin-schedule.c:170 ../schedule/pidgin-schedule.c:226
-msgid "Everyday"
-msgstr ""
-
-#: ../schedule/pidgin-schedule.c:171
-msgid "Sunday"
-msgstr ""
-
-#: ../schedule/pidgin-schedule.c:172
-msgid "Monday"
-msgstr ""
-
-#: ../schedule/pidgin-schedule.c:173
-msgid "Tuesday"
-msgstr ""
-
-#: ../schedule/pidgin-schedule.c:174
-msgid "Wednesday"
-msgstr ""
-
-#: ../schedule/pidgin-schedule.c:175
-msgid "Thursday"
-msgstr ""
-
-#: ../schedule/pidgin-schedule.c:176
msgid "Friday"
msgstr ""
-#: ../schedule/pidgin-schedule.c:177
+#: ../schedule/pidgin-schedule.c:168
msgid "Saturday"
msgstr ""
-#: ../schedule/pidgin-schedule.c:185
+#: ../schedule/pidgin-schedule.c:176
msgid "Select Date and Time"
msgstr ""
-#: ../schedule/pidgin-schedule.c:200
+#: ../schedule/pidgin-schedule.c:191
msgid "Month"
msgstr ""
-#: ../schedule/pidgin-schedule.c:207
+#: ../schedule/pidgin-schedule.c:198
msgid "Year"
msgstr ""
-#: ../schedule/pidgin-schedule.c:210
+#: ../schedule/pidgin-schedule.c:201
msgid "Every Year"
msgstr ""
-#: ../schedule/pidgin-schedule.c:214
+#: ../schedule/pidgin-schedule.c:205
msgid "Day"
msgstr ""
-#: ../schedule/pidgin-schedule.c:222
+#: ../schedule/pidgin-schedule.c:213
msgid "Date"
msgstr ""
-#: ../schedule/pidgin-schedule.c:230
+#: ../schedule/pidgin-schedule.c:221
msgid "Time"
msgstr ""
-#: ../schedule/pidgin-schedule.c:274
+#: ../schedule/pidgin-schedule.c:265
msgid "_Send message to a friend"
msgstr ""
#. XXX: set the formatting to default send-message format
-#: ../schedule/pidgin-schedule.c:287
+#: ../schedule/pidgin-schedule.c:278
msgid "Buddy"
msgstr ""
-#: ../schedule/pidgin-schedule.c:296
+#: ../schedule/pidgin-schedule.c:287
msgid "Message"
msgstr ""
-#: ../schedule/pidgin-schedule.c:307
+#: ../schedule/pidgin-schedule.c:298
msgid "Popup Dialog"
msgstr ""
-#: ../schedule/pidgin-schedule.c:312
+#: ../schedule/pidgin-schedule.c:303
msgid "_Popup a reminder dialog with message"
msgstr ""
-#: ../schedule/pidgin-schedule.c:406
+#: ../schedule/pidgin-schedule.c:397
msgid "Name"
msgstr ""
-#: ../schedule/pidgin-schedule.c:588
+#: ../schedule/pidgin-schedule.c:579
msgid "_Delete"
msgstr ""
#. XXX: submit the patch to Purple for making the mnemonics work
-#: ../schedule/pidgin-schedule.c:653
+#: ../schedule/pidgin-schedule.c:644
msgid "New Schedule"
msgstr ""
-#: ../schedule/pidgin-schedule.c:656
+#: ../schedule/pidgin-schedule.c:647
msgid "List of Schedules"
msgstr ""
-#: ../schedule/schedule.c:255
+#: ../schedule/pidgin-schedule.c:708 ../schedule/schedule.c:256
msgid "Schedule"
msgstr ""
-#: ../schedule/schedule.c:378
+#: ../schedule/pidgin-schedule.c:709 ../schedule/pidgin-schedule.c:710
+msgid "Schedule reminders at specified times."
+msgstr ""
+
+#: ../schedule/schedule.c:379
msgid "list of schedules"
msgstr ""
-#: ../sepandtab/sepandtab.c:92
+#: ../sepandtab/sepandtab.c:89
msgid "Separate IM, group Chats"
msgstr ""
-#: ../sepandtab/sepandtab.c:94
+#: ../sepandtab/sepandtab.c:91
msgid "Separate Chats, group IMs"
msgstr ""
-#: ../sepandtab/sepandtab.c:96