1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
Author: Rhonda D'Vine <rhonda@debian.org> vim:ft=diff:
Description: add hint about #debian to first time user message, BTS #393707
Forwarded: not-needed
---
src/fe-text/module-formats.c | 7 +++++++
1 file changed, 7 insertions(+)
--- a/src/fe-text/module-formats.c 2022-06-11 16:45:05.150539089 -0400
+++ b/src/fe-text/module-formats.c 2022-06-11 16:45:05.146539101 -0400
@@ -90,6 +90,9 @@
" | || '_(_-<_-< |%:"
"|___|_| /__/__/_|%:"
"Irssi v$J - https://irssi.org", 0 },
+
+ /* add debian informations for first time users,
+ * see debian bug #393707 */
{ "welcome_firsttime",
"- - - - - - - - - - - - - - - - - - - - - - - - - - - -\n"
"Hi there! If this is your first time using Irssi, you%:"
@@ -99,6 +102,10 @@
"to answer any questions you may have.%:%:"
"Use the /HELP command to get detailed information about%:"
"the available commands.%:"
+ "%:"
+ "For Debian specific help type \"/connect OFTC\" and%:"
+ "\"/join #debian\" (without the quotes) and ask your%:"
+ "question.%:"
"- - - - - - - - - - - - - - - - - - - - - - - - - - - -", 0 },
{ "welcome_init_settings", "The following settings were initialized", 0 },
|