summaryrefslogtreecommitdiff
path: root/src/plugins/notify
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2008-08-22 21:34:29 +0200
committerSebastien Helleu <flashcode@flashtux.org>2008-08-22 21:34:29 +0200
commit74d595498dec1c0b6572d7381b2d13f2ad5322dc (patch)
tree845e4f24cca392c365b65b58cbaae89b9b102508 /src/plugins/notify
parent4185de52197ee9e94c0e4543510cbe94eb26b964 (diff)
downloadweechat-74d595498dec1c0b6572d7381b2d13f2ad5322dc.zip
Add hook infolist to plugins API, fix bugs with gettext in plugins
Diffstat (limited to 'src/plugins/notify')
-rw-r--r--src/plugins/notify/notify.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/plugins/notify/notify.c b/src/plugins/notify/notify.c
index b0c5eef06..4f7116794 100644
--- a/src/plugins/notify/notify.c
+++ b/src/plugins/notify/notify.c
@@ -494,16 +494,16 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
/* /notify command */
weechat_hook_command ("notify",
- _("change notify level for current buffer"),
- _("reset | none | highlight | message | all"),
- _(" reset: reset notify level to default value\n"
- " none: buffer will never be in hotlist\n"
- "highlight: buffer will be in hotlist for "
- "highlights only\n"
- " message: buffer will be in hotlist for "
- "highlights and user messages only\n"
- " all: buffer will be in hotlist for "
- "any text printed"),
+ N_("change notify level for current buffer"),
+ N_("reset | none | highlight | message | all"),
+ N_(" reset: reset notify level to default value\n"
+ " none: buffer will never be in hotlist\n"
+ "highlight: buffer will be in hotlist for "
+ "highlights only\n"
+ " message: buffer will be in hotlist for "
+ "highlights and user messages only\n"
+ " all: buffer will be in hotlist for "
+ "any text printed"),
"reset|none|highlight|message|all",
&notify_command_cb, NULL);