claws-mail/src/quote_fmt.c
Tristan Chabredier 6894eacfc4 2006-07-31 [wwp] 2.4.0cvs1
* src/quote_fmt.c
		make more strings translatable.
2006-07-31 10:49:57 +00:00

96 lines
3.6 KiB
C

/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Sylpheed-Claws team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <glib.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
#include "manage_window.h"
#include "description_window.h"
#include "gtkutils.h"
/*
* Strings describing quote format strings
*
* When adding new lines, remember to put 2 strings for each line
*/
static gchar *quote_desc_strings[] = {
"%D{fmt}", N_("customized date format (see 'man strftime')"), /* date expression */
"%d", N_("Date"), /* date */
"%f", N_("From"), /* from */
"%N", N_("full name of sender"), /* full name */
"%F", N_("first name of sender"), /* first name */
"%L", N_("last name of sender"), /* last name */
"%I", N_("initials of sender"), /* initial of sender */
"%s", N_("Subject"), /* subject */
"%t", N_("To"), /* to */
"%c", N_("Cc"), /* cc */
"%n", N_("Newsgroups"), /* newsgroups */
"%r", N_("References"), /* references */
"%i", N_("Message-ID"), /* message-id */
"%M", N_("message body"), /* message */
"%Q", N_("quoted message body"), /* quoted message */
"%m", N_("message body without signature"), /* message with no signature */
"%q", N_("quoted message body without signature"), /* quoted message with no signature */
"%X", N_("cursor position"), /* X marks the cursor spot */
"\\%", N_("literal %"),
"\\\\", N_("literal backslash"),
"\\?", N_("literal question mark"),
"\\!", N_("literal exclamation mark"),
"\\|", N_("literal pipe"),
"\\{", N_("literal opening curly brace"),
"\\}", N_("literal closing curly brace"),
"\\t", N_("tab"),
"\\n", N_("linefeed"),
"", NULL,
"?x{expr}\n", N_("insert expr if x is set\n(where x is one of the dfNFLIstcnri characters)"),
"!x{expr}\n", N_("insert expr if x is not set\n(where x is one of the dfNFLIstcnri characters)"),
"|f{sub_expr}\n", N_("insert file:\nsub_expr is evaluated as a filename to insert"), /* insert file */
"|p{sub_expr}\n\n", N_("insert program output:\nsub_expr is evaluated as a command-line to get\nthe output from"), /* insert program output */
"|i{sub_expr}\n\n", N_("insert user input:\nsub_expr is a variable to be replaced by\nuser-entered text"), /* insert user input */
"", NULL,
N_("terms definition:"), NULL,
"expr", N_("text that can contain any of the symbols above"),
"sub_expr\n", N_("text that can contain any of the symbols above\nbut ?x{}, !x{}, |f{}, |p{} and |i{}"),
NULL,NULL
};
static DescriptionWindow quote_desc_win = {
NULL,
NULL,
2,
N_("Description of symbols"),
N_("The following symbols can be used:"),
quote_desc_strings
};
void quote_fmt_quote_description(GtkWidget *widget, GtkWidget *pref_window)
{
quote_desc_win.parent = pref_window;
description_window_create(&quote_desc_win);
}