From 4ab1f7e1fab6a07bd9f9589319cd535693e4f3da Mon Sep 17 00:00:00 2001 From: Melvin Hadasht Date: Tue, 29 Apr 2003 09:37:39 +0000 Subject: [PATCH] Improved help text of Actions' syntax --- ChangeLog.claws | 5 +++++ configure.ac | 2 +- src/prefs_actions.c | 18 +++++++++--------- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/ChangeLog.claws b/ChangeLog.claws index ede7b460b..25e4ff19b 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2003-04-29 [melvin] 0.8.11claws122 + + * src/prefs_actions.c + Improved help text of Actions' syntax + 2003-04-28 [paul] 0.8.11claws121 * src/action.c diff --git a/configure.ac b/configure.ac index b4d25a221..ec52c74be 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=8 MICRO_VERSION=11 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws121 +EXTRA_VERSION=claws122 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/prefs_actions.c b/src/prefs_actions.c index 0d56650f7..e9768148a 100644 --- a/src/prefs_actions.c +++ b/src/prefs_actions.c @@ -640,19 +640,19 @@ static gchar *actions_desc_strings[] = { "", NULL, N_("COMMAND LINE:"), NULL, N_("Begin with:"), NULL, - " |", N_("to send message body or selection to command"), - " >", N_("to send user provided text to command"), - " *", N_("to send user provided hidden text to command"), + " |", N_("to send message body or selection to command's standard input"), + " >", N_("to send user provided text to command's standard input"), + " *", N_("to send user provided hidden text to command's standard input"), N_("End with:"), NULL, - " |", N_("to replace message body or selection with command output"), - " >", N_("to insert command's output without replacing old text"), + " |", N_("to replace message body or selection with command's standard output"), + " >", N_("to insert command's standard output without replacing old text"), " &", N_("to run command asynchronously"), N_("Use:"), NULL, - " %f", N_("for message file name"), - " %F", N_("for the list of the file names of selected messages"), - " %p", N_("for the selected message MIME part"), + " %f", N_("for the file of the selected message in RFC822/2822 format "), + " %F", N_("for the list of the files of the selected messages in RFC822/2822 format"), + " %p", N_("for the file of the selected decoded message MIME part"), " %u", N_("for a user provided argument"), - " %h", N_("for a user provided hidden argument"), + " %h", N_("for a user provided hidden argument (e.g. password)"), " %s", N_("for the text selection"), NULL };