comparison libgaim/plugins/autoreply.c @ 15357:2db21e0292b8

[gaim-migrate @ 18149] clean out the translations tracker, including some gettext stuff from bjorn committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Wed, 17 Jan 2007 18:57:22 +0000
parents 630b794db0c8
children
comparison
equal deleted inserted replaced
15356:00d0d4524377 15357:2db21e0292b8
18 * 02111-1307, USA. 18 * 02111-1307, USA.
19 */ 19 */
20 #include "internal.h" 20 #include "internal.h"
21 21
22 #define PLUGIN_ID "core-plugin_pack-autoreply" 22 #define PLUGIN_ID "core-plugin_pack-autoreply"
23 #define PLUGIN_NAME "Autoreply" 23 #define PLUGIN_NAME N_("Autoreply")
24 #define PLUGIN_STATIC_NAME "Autoreply" 24 #define PLUGIN_STATIC_NAME "Autoreply"
25 #define PLUGIN_SUMMARY "Autoreply for all the protocols" 25 #define PLUGIN_SUMMARY N_("Autoreply for all the protocols")
26 #define PLUGIN_DESCRIPTION "This plugin lets you set autoreply message for any protocol. "\ 26 #define PLUGIN_DESCRIPTION N_("This plugin lets you set autoreply message for any protocol. "\
27 "You can set the global autoreply message from the Plugin-options dialog. " \ 27 "You can set the global autoreply message from the Plugin-options dialog. " \
28 "To set some specific autoreply message for a particular buddy, right click " \ 28 "To set some specific autoreply message for a particular buddy, right click " \
29 "on the buddy in the buddy-list window. To set autoreply messages for some " \ 29 "on the buddy in the buddy-list window. To set autoreply messages for some " \
30 "account, go to the `Advanced' tab of the Account-edit dialog." 30 "account, go to the `Advanced' tab of the Account-edit dialog.")
31 #define PLUGIN_AUTHOR "Sadrul Habib Chowdhury <sadrul@users.sourceforge.net>" 31 #define PLUGIN_AUTHOR "Sadrul Habib Chowdhury <sadrul@users.sourceforge.net>"
32 32
33 /* System headers */ 33 /* System headers */
34 #include <glib.h> 34 #include <glib.h>
35 35
393 393
394 static GaimPluginInfo info = { 394 static GaimPluginInfo info = {
395 GAIM_PLUGIN_MAGIC, /* Magic */ 395 GAIM_PLUGIN_MAGIC, /* Magic */
396 GAIM_MAJOR_VERSION, /* Gaim Major Version */ 396 GAIM_MAJOR_VERSION, /* Gaim Major Version */
397 GAIM_MINOR_VERSION, /* Gaim Minor Version */ 397 GAIM_MINOR_VERSION, /* Gaim Minor Version */
398 GAIM_PLUGIN_STANDARD, /* plugin type */ 398 GAIM_PLUGIN_STANDARD, /* plugin type */
399 NULL, /* ui requirement */ 399 NULL, /* ui requirement */
400 0, /* flags */ 400 0, /* flags */
401 NULL, /* dependencies */ 401 NULL, /* dependencies */
402 GAIM_PRIORITY_DEFAULT, /* priority */ 402 GAIM_PRIORITY_DEFAULT, /* priority */
403 403
404 PLUGIN_ID, /* plugin id */ 404 PLUGIN_ID, /* plugin id */
405 N_(PLUGIN_NAME), /* name */ 405 PLUGIN_NAME, /* name */
406 VERSION, /* version */ 406 VERSION, /* version */
407 N_(PLUGIN_SUMMARY), /* summary */ 407 PLUGIN_SUMMARY, /* summary */
408 N_(PLUGIN_DESCRIPTION), /* description */ 408 PLUGIN_DESCRIPTION, /* description */
409 PLUGIN_AUTHOR, /* author */ 409 PLUGIN_AUTHOR, /* author */
410 GAIM_WEBSITE, /* website */ 410 GAIM_WEBSITE, /* website */
411 411
412 plugin_load, /* load */ 412 plugin_load, /* load */
413 plugin_unload, /* unload */ 413 plugin_unload, /* unload */
414 NULL, /* destroy */ 414 NULL, /* destroy */
415 415
416 NULL, /* ui_info */ 416 NULL, /* ui_info */
417 NULL, /* extra_info */ 417 NULL, /* extra_info */
418 &prefs_info, /* prefs_info */ 418 &prefs_info, /* prefs_info */
419 NULL /* actions */ 419 NULL /* actions */
420 }; 420 };
421 421
422 static void 422 static void
423 init_plugin(GaimPlugin *plugin) 423 init_plugin(GaimPlugin *plugin)
424 { 424 {