Corrected w3m binary name
Added Debian's "sensible-browser" (wrapper script honouring $BROWSER (http://www.catb.org/~esr/BROWSER/), x-www-browser etc.) Added Debian's "x-terminal-emulator" (which is managed through the alternatives mechanism) Added "aterm" (http://aterm.sf.net) Added "Firefox" entry (official capitalisation; no StudlyCaps) Removed inconsistent "Firebird/FireFox" entry
This commit is contained in:
parent
6e1883c2b0
commit
31241dc09d
2 changed files with 17 additions and 3 deletions
|
@ -1,3 +1,15 @@
|
|||
2004-10-17 J.H.M. Dassen (Ray) <jdassen@debian.org>
|
||||
|
||||
* gnome-default-applications-properties-structs.c:
|
||||
* Corrected w3m binary name
|
||||
* Added Debian's "sensible-browser" (wrapper script honouring
|
||||
$BROWSER (http://www.catb.org/~esr/BROWSER/), x-www-browser etc.)
|
||||
* Added Debian's "x-terminal-emulator" (which is managed through the
|
||||
alternatives mechanism)
|
||||
* Added "aterm" (http://aterm.sf.net)
|
||||
* Added "Firefox" entry (official capitalisation; no StudlyCaps)
|
||||
* Removed inconsistent "Firebird/FireFox" entry
|
||||
|
||||
2004-10-14 Jody Goldberg <jody@gnome.org>
|
||||
|
||||
* Release 2.8.1
|
||||
|
|
|
@ -6,17 +6,17 @@ struct _BrowserDescription {
|
|||
gboolean in_path;
|
||||
};
|
||||
BrowserDescription possible_browsers[] = {
|
||||
{ N_("Debian Sensible Browser"), "sensible-browser", "sensible-browser %s", FALSE, FALSE },
|
||||
{ N_("Epiphany"), "epiphany", "epiphany %s", FALSE, FALSE },
|
||||
{ N_("Galeon"), "galeon", "galeon %s", FALSE, FALSE },
|
||||
{ N_("Encompass"), "encompass", "encompass %s", FALSE, FALSE },
|
||||
{ N_("Firebird/FireFox"), "mozilla-firebird", "mozilla-firebird %s", FALSE, FALSE },
|
||||
{ N_("Firebird/FireFox"), "mozilla-firefox", "mozilla-firebird %s", FALSE, FALSE },
|
||||
{ N_("Firebird/FireFox"), "firefox", "mozilla-firebird %s", FALSE, FALSE },
|
||||
{ N_("Firefox"), "firefox", "firefox %s", FALSE, FALSE },
|
||||
{ N_("Mozilla/Netscape 6"), "mozilla-1.6", "mozilla-1.6 %s", FALSE, FALSE },
|
||||
{ N_("Mozilla/Netscape 6"), "mozilla", "mozilla %s", FALSE, FALSE },
|
||||
{ N_("Netscape Communicator"), "netscape", "netscape %s", FALSE, FALSE },
|
||||
{ N_("Konqueror"), "konqueror", "konqueror %s", FALSE, FALSE },
|
||||
{ N_("W3M Text Browser"), "w3n", "w3m %s", TRUE, FALSE },
|
||||
{ N_("W3M Text Browser"), "w3m", "w3m %s", TRUE, FALSE },
|
||||
{ N_("Lynx Text Browser"), "lynx", "lynx %s", TRUE, FALSE },
|
||||
{ N_("Links Text Browser") , "links", "links %s", TRUE, FALSE }
|
||||
};
|
||||
|
@ -51,9 +51,11 @@ struct _TerminalDesciption {
|
|||
gboolean in_path;
|
||||
};
|
||||
TerminalDescription possible_terminals[] = {
|
||||
{ N_("Debian Terminal Emulator"), "x-terminal-emulator", "-e", FALSE },
|
||||
{ N_("Gnome Terminal"), "gnome-terminal", "-x", FALSE },
|
||||
{ N_("Standard XTerminal"), "xterm", "-e", FALSE },
|
||||
{ N_("NXterm"), "nxterm", "-e", FALSE },
|
||||
{ N_("RXVT"), "rxvt", "-e", FALSE },
|
||||
{ N_("aterm"), "aterm", "-e", FALSE },
|
||||
{ N_("ETerm"), "Eterm", "-e", FALSE }
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue