1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-08 18:53:12 +02:00

buflist: replace hardcoded "buflist" by constant in error message

This commit is contained in:
Sébastien Helleu
2025-11-01 16:10:11 +01:00
parent 0dab9b9257
commit 8143d44e44
15 changed files with 65 additions and 65 deletions
+2 -2
View File
@@ -401,14 +401,14 @@ buflist_script_loaded_cb (const void *pointer, void *data, const char *signal,
if (strcmp (base_name2, "buffers.pl") == 0)
{
weechat_printf (NULL,
_("%sbuflist: warning: the script buffers.pl is "
_("%s%s: warning: the script buffers.pl is "
"loaded and provides a bar with list of buffers "
"similar to the buflist plugin; you may want to "
"uninstall the script buffers.pl "
"(/script remove buffers.pl) or disable/unload the "
"buflist plugin; see WeeChat release notes for more "
"information"),
weechat_prefix ("error"));
weechat_prefix ("error"), BUFLIST_PLUGIN_NAME);
}
free (base_name2);