diff options
author | Volker Stolz <vs@FreeBSD.org> | 2004-06-09 12:40:20 +0000 |
---|---|---|
committer | Volker Stolz <vs@FreeBSD.org> | 2004-06-09 12:40:20 +0000 |
commit | a040000cf78869844c15b4d4d8fc9dc9021fab52 (patch) | |
tree | bc66c8c4c012d61fc8015c39f6f53d45f6163a6f /astro/gpsdrive/files/patch-src::splash.c | |
parent | Add p5-CGI-Response 0.03, perl module allowing response construction for (diff) |
Update to latest version:
- enable experimental mysql support
- drop gcc3x dependency
PR: ports/67638
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=111162
Diffstat (limited to 'astro/gpsdrive/files/patch-src::splash.c')
-rw-r--r-- | astro/gpsdrive/files/patch-src::splash.c | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/astro/gpsdrive/files/patch-src::splash.c b/astro/gpsdrive/files/patch-src::splash.c new file mode 100644 index 000000000000..22e57ada2d77 --- /dev/null +++ b/astro/gpsdrive/files/patch-src::splash.c @@ -0,0 +1,60 @@ +--- src/splash.c.orig Mon Jun 7 09:55:30 2004 ++++ src/splash.c Mon Jun 7 09:56:28 2004 +@@ -529,6 +529,24 @@ + { + GtkTextIter iter; + GtkTextIter start, end; ++ gchar *t1 = ++ _ ++ ("Left mouse button : Set position (usefull in simulation mode)\n" ++ "Right mouse button : Set target directly on the map\n" ++ "Middle mouse button : Display position again\n" ++ "Shift left mouse button : smaller map\n" ++ "Shift right mouse button : larger map\n" ++ "Control left mouse button : Set a waypoint (mouse position) on the map\n" ++ "Control right mouse button: Set a waypoint at current position on the map\n\n"); ++ gchar *t2 = _("j : switch to next waypoint in route mode\n" ++ "x : add waypoint at current position\n" ++ "y : add waypoint at mouse cursor position\n"); ++ gchar *t3 = ++ _("Press the underlined key together with the ALT-key.\n\n" ++ "You can move on the map by selecting the Position-Mode" ++ " in the menu. A blue rectangle shows this mode, you can set this cursor by clicking on the map." ++ " If you click on the border of the map (the outer 20%) then the map switches to the next area.\n\n" ++ "Suggestions welcome.\n\n"); + + /* demo_find_file() looks in the the current directory first, + * so you can run gtk-demo without installing GTK, then looks +@@ -564,19 +582,7 @@ + -1, "blue_foreground", NULL); + + gtk_text_buffer_insert (buffer, &iter, "\n", -1); +- gchar *t1 = +- _ +- ("Left mouse button : Set position (usefull in simulation mode)\n" +- "Right mouse button : Set target directly on the map\n" +- "Middle mouse button : Display position again\n" +- "Shift left mouse button : smaller map\n" +- "Shift right mouse button : larger map\n" +- "Control left mouse button : Set a waypoint (mouse position) on the map\n" +- "Control right mouse button: Set a waypoint at current position on the map\n\n"); + +- gchar *t2 = _("j : switch to next waypoint in route mode\n" +- "x : add waypoint at current position\n" +- "y : add waypoint at mouse cursor position\n"); + gtk_text_buffer_insert (buffer, &iter, t1, -1); + + gtk_text_buffer_insert_with_tags_by_name (buffer, &iter, +@@ -592,12 +598,6 @@ + -1, "underline", NULL); + gtk_text_buffer_insert (buffer, &iter, _(" letters in the button text.\n"), + -1); +- gchar *t3 = +- _("Press the underlined key together with the ALT-key.\n\n" +- "You can move on the map by selecting the Position-Mode" +- " in the menu. A blue rectangle shows this mode, you can set this cursor by clicking on the map." +- " If you click on the border of the map (the outer 20%) then the map switches to the next area.\n\n" +- "Suggestions welcome.\n\n"); + gtk_text_buffer_insert (buffer, &iter, t3, -1); + gtk_text_buffer_insert_with_tags_by_name (buffer, &iter, + _("Have a lot of fun!"), -1, |