Improved help text of Actions' syntax
authorMelvin Hadasht <melvin.hadasht@free.fr>
Tue, 29 Apr 2003 09:37:39 +0000 (09:37 +0000)
committerMelvin Hadasht <melvin.hadasht@free.fr>
Tue, 29 Apr 2003 09:37:39 +0000 (09:37 +0000)
ChangeLog.claws
configure.ac
src/prefs_actions.c

index ede7b460b00a95360863f4a9e14a1c7993906bf8..25e4ff19b650d48cb65b3528ee42d5681afec0fa 100644 (file)
@@ -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
index b4d25a2217de84fe36bb4f53a866f5e3ac26b991..ec52c74be46d117b26d24bfa559a7a9b276d8bd9 100644 (file)
@@ -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
index 0d56650f779173e380a6d543d74aab5ae7cfd7fd..e9768148ab142c818f2fe7b6f4fcdc034d540241 100644 (file)
@@ -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
 };