~ubuntu-branches/ubuntu/maverick/irssi/maverick

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
Author: Gerfried Fuchs <rhonda@debian.at>	vim:ft=diff:
Description: add hint about #debian to first time user message, BTS #393707

Index: irssi-0.8.15~rc1/src/fe-text/irssi.c
===================================================================
--- irssi-0.8.15~rc1.orig/src/fe-text/irssi.c
+++ irssi-0.8.15~rc1/src/fe-text/irssi.c
@@ -81,6 +81,8 @@ static int dirty, full_redraw, dummy;
 static GMainLoop *main_loop;
 int quitting;
 
+/* add debian informations for first time users,
+ * see debian bug #393707 */
 static const char *firsttimer_text =
 	"Looks like this is the first time you've run irssi.\n"
 	"This is just a reminder that you really should go read\n"
@@ -88,7 +90,11 @@ static const char *firsttimer_text =
 	"and more irssi beginner info at http://www.irssi.org\n"
 	"\n"
 	"For the truly impatient people who don't like any automatic\n"
-	"window creation or closing, just type: /MANUAL-WINDOWS";
+	"window creation or closing, just type: /MANUAL-WINDOWS\n"
+	"\n"
+	"For Ubuntu specific help type \"/connect irc.ubuntu.com\"\n"
+	"and \"/join #ubuntu\" (without the quotes) and ask your\n"
+	"question.";
 static int display_firsttimer = FALSE;