Improved help text of Actions' syntax
This commit is contained in:
parent
e198b8176a
commit
4ab1f7e1fa
3 changed files with 15 additions and 10 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue