pidgin/purple-plugin-pack

Backed out changeset 16ea65748767

2010-12-04, John Bailey
d3d76303ee0d
Parents 16ea65748767
Children b9b3f0d8bcc6
Backed out changeset 16ea65748767

Stu pointed out that this is probably not going to work. I had forgotten why
we did this in the first place.
--- a/common/gtk_template.c Fri Dec 03 21:45:15 2010 -0500
+++ b/common/gtk_template.c Sat Dec 04 10:49:22 2010 -0500
@@ -52,10 +52,10 @@
PURPLE_PRIORITY_DEFAULT, /* priority */
PLUGIN_ID, /* plugin id */
- N_("unnamed"), /* name */
+ NULL, /* name */
PP_VERSION, /* version */
- N_("summary"), /* summary */
- N_("description"), /* description */
+ NULL, /* summary */
+ NULL, /* description */
PLUGIN_AUTHOR, /* author */
PP_WEBSITE, /* website */
@@ -80,6 +80,10 @@
bindtextdomain(GETTEXT_PACKAGE, PP_LOCALEDIR);
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
#endif /* ENABLE_NLS */
+
+ info.name = _("unnamed");
+ info.summary = _("summary");
+ info.description = _("description");
}
PURPLE_INIT_PLUGIN(PLUGIN_STATIC_NAME, init_plugin, info)
--- a/common/purple_template.c Fri Dec 03 21:45:15 2010 -0500
+++ b/common/purple_template.c Sat Dec 04 10:49:22 2010 -0500
@@ -48,10 +48,10 @@
PURPLE_PRIORITY_DEFAULT, /* priority */
PLUGIN_ID, /* plugin id */
- N_("unnamed"), /* name */
+ NULL, /* name */
PP_VERSION, /* version */
- N_("summary"), /* summary */
- N_("description"), /* description */
+ NULL, /* summary */
+ NULL, /* description */
PLUGIN_AUTHOR, /* author */
PP_WEBSITE, /* website */
@@ -75,6 +75,10 @@
bindtextdomain(GETTEXT_PACKAGE, PP_LOCALEDIR);
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
#endif /* ENABLE_NLS */
+
+ info.name = _("unnamed");
+ info.summary = _("summary");
+ info.description = _("description");
}
PURPLE_INIT_PLUGIN(PLUGIN_STATIC_NAME, init_plugin, info)