Add N_() calls to all the human readable strings. Based on a patch from
Fri Aug 1 15:49:03 2003 Jonathan Blandford <jrb@redhat.com> * gnome-default-applications-properties-structs.c (possible_terminals): Add N_() calls to all the human readable strings. Based on a patch from Christophe Fergeau <teuf@users.sourceforge.net>, #117085
This commit is contained in:
parent
8f1008f48d
commit
d0935e22db
5 changed files with 35 additions and 438 deletions
|
@ -36,14 +36,14 @@ struct _TerminalDesciption
|
|||
|
||||
BrowserDescription possible_browsers[] =
|
||||
{
|
||||
{ "Epiphany", "epiphany", "epiphany %s", FALSE, FALSE, FALSE },
|
||||
{ "Galeon", "galeon", "galeon %s", FALSE, FALSE, FALSE },
|
||||
{ "Encompass", "encompass", "encompass %s", FALSE, FALSE, FALSE },
|
||||
{ "Mozilla/Netscape 6", "mozilla", "mozilla %s", FALSE, TRUE, FALSE },
|
||||
{ "Netscape Communicator", "netscape", "netscape %s", FALSE, TRUE, FALSE },
|
||||
{ "Konqueror", "konqueror", "konqueror %s", FALSE, FALSE, FALSE },
|
||||
{ "Lynx Text Browser", "lynx", "lynx %s", TRUE, FALSE, FALSE },
|
||||
{ "Links Text Browser" , "links", "links %s", TRUE, FALSE, FALSE }
|
||||
{ N_("Epiphany"), "epiphany", "epiphany %s", FALSE, FALSE, FALSE },
|
||||
{ N_("Galeon"), "galeon", "galeon %s", FALSE, FALSE, FALSE },
|
||||
{ N_("Encompass"), "encompass", "encompass %s", FALSE, FALSE, FALSE },
|
||||
{ N_("Mozilla/Netscape 6"), "mozilla", "mozilla %s", FALSE, TRUE, FALSE },
|
||||
{ N_("Netscape Communicator"), "netscape", "netscape %s", FALSE, TRUE, FALSE },
|
||||
{ N_("Konqueror"), "konqueror", "konqueror %s", FALSE, FALSE, FALSE },
|
||||
{ N_("Lynx Text Browser"), "lynx", "lynx %s", TRUE, FALSE, FALSE },
|
||||
{ N_("Links Text Browser") , "links", "links %s", TRUE, FALSE, FALSE }
|
||||
};
|
||||
|
||||
MailerDescription possible_mailers[] =
|
||||
|
@ -52,27 +52,20 @@ MailerDescription possible_mailers[] =
|
|||
* there is only one (the first entry in this list) Evolution entry
|
||||
* in the list shown to the user
|
||||
*/
|
||||
{ "Evolution Mail Reader", "evolution-1.4", "evolution-1.4 %s", FALSE, FALSE, },
|
||||
{ "Evolution Mail Reader", "evolution", "evolution %s", FALSE, FALSE, },
|
||||
{ "Balsa", "balsa", "balsa --compose=%s", FALSE, FALSE },
|
||||
{ "KMail", "kmail", "kmail %s", FALSE, FALSE },
|
||||
{ "Mozilla Mail", "mozilla", "mozilla -mail %s", FALSE, FALSE},
|
||||
{ "Mutt" , "mutt", "mutt %s", TRUE, FALSE },
|
||||
{ N_("Evolution Mail Reader"), "evolution-1.4", "evolution-1.4 %s", FALSE, FALSE, },
|
||||
{ N_("Evolution Mail Reader"), "evolution", "evolution %s", FALSE, FALSE, },
|
||||
{ N_("Balsa"), "balsa", "balsa --compose=%s", FALSE, FALSE },
|
||||
{ N_("KMail"), "kmail", "kmail %s", FALSE, FALSE },
|
||||
{ N_("Mozilla Mail"), "mozilla", "mozilla -mail %s", FALSE, FALSE},
|
||||
{ N_("Mutt") , "mutt", "mutt %s", TRUE, FALSE },
|
||||
|
||||
};
|
||||
|
||||
HelpViewDescription possible_help_viewers[] =
|
||||
{
|
||||
{ "Yelp Gnome Help Browser", "yelp", FALSE, TRUE, FALSE },
|
||||
{ "Gnome Help Browser", "gnome-help", FALSE, TRUE, FALSE },
|
||||
{ "Nautilus", "nautilus", FALSE, TRUE, FALSE }
|
||||
};
|
||||
|
||||
TerminalDescription possible_terminals[] =
|
||||
{
|
||||
{ "Gnome Terminal", "gnome-terminal", "-x", FALSE },
|
||||
{ "Standard XTerminal", "xterm", "-e", FALSE },
|
||||
{ "NXterm", "nxterm", "-e", FALSE },
|
||||
{ "RXVT", "rxvt", "-e", FALSE },
|
||||
{ "ETerm", "Eterm", "-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_("ETerm"), "Eterm", "-e", FALSE }
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue