diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-11-04 22:53:10 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-11-04 22:53:10 +0000 |
commit | b536a8a4914f18419447eb8c22392043d7bf3d49 (patch) | |
tree | d0f94d3bd84f3c17052fab26130da9bb90c9412c /src/irc | |
parent | 51cacc0fdb0fc491382f1a757a440793b4e120c3 (diff) | |
download | weechat-b536a8a4914f18419447eb8c22392043d7bf3d49.zip |
Added message for /buffer notify completion
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/irc-display.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/irc/irc-display.c b/src/irc/irc-display.c index e6aa330cd..ab97f1488 100644 --- a/src/irc/irc-display.c +++ b/src/irc/irc-display.c @@ -188,11 +188,11 @@ irc_display_server (t_irc_server *server) GUI_COLOR(COLOR_WIN_CHAT_DARK)); gui_printf (NULL, " server_autoconnect . . . .: %s%s\n", - (server->autoconnect) ? _("yes") : _("no"), + (server->autoconnect) ? _("on") : _("off"), (server->command_line) ? _(" (temporary server, will not be saved)") : ""); gui_printf (NULL, " server_autoreconnect . . .: %s\n", - (server->autoreconnect) ? _("yes") : _("no")); + (server->autoreconnect) ? _("on") : _("off")); gui_printf (NULL, " server_autoreconnect_delay: %d seconds\n", server->autoreconnect_delay); gui_printf (NULL, " server_address . . . . . .: %s\n", @@ -200,9 +200,9 @@ irc_display_server (t_irc_server *server) gui_printf (NULL, " server_port . . . . . . .: %d\n", server->port); gui_printf (NULL, " server_ipv6 . . . . . . .: %s\n", - (server->ipv6) ? _("yes") : _("no")); + (server->ipv6) ? _("on") : _("off")); gui_printf (NULL, " server_ssl . . . . . . . .: %s\n", - (server->ssl) ? _("yes") : _("no")); + (server->ssl) ? _("on") : _("off")); gui_printf (NULL, " server_password . . . . .: %s\n", (server->password && server->password[0]) ? _("(hidden)") : ""); |