diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/w3mhelp-funcdesc.en.pl.in | 46 | ||||
| -rw-r--r-- | scripts/w3mhelp.cgi.in | 30 | 
2 files changed, 38 insertions, 38 deletions
| diff --git a/scripts/w3mhelp-funcdesc.en.pl.in b/scripts/w3mhelp-funcdesc.en.pl.in index d854b59..b9f4ed8 100644 --- a/scripts/w3mhelp-funcdesc.en.pl.in +++ b/scripts/w3mhelp-funcdesc.en.pl.in @@ -4,44 +4,44 @@ $charset = 'US-ASCII';  # Buffer selection mode  %buf_funcdesc = ( - 'BUF:PREV', 'Select previous buffer', - 'BUF:NEXT', 'Select next buffer', - 'BUF:DELETE', 'Delete current buffer', - 'BUF:GO', 'Go to the selected buffer', + 'BUF:PREV', 'Previous item', + 'BUF:NEXT', 'Next item', + 'BUF:DELETE', 'Delete item', + 'BUF:GO', 'Select item',  );  %lineedit_funcdesc = ( - 'LINEEDIT:FORWARD', 'Move cursor forward', - 'LINEEDIT:BACK', 'Move cursor backward', + 'LINEEDIT:FORWARD', 'Cursor forward', + 'LINEEDIT:BACK', 'Cursor backward',   'LINEEDIT:BS',  'Delete previous character', - 'LINEEDIT:DEL', 'Delete current character', - 'LINEEDIT:KILL_AFTER', 'Kill everything after cursor', - 'LINEEDIT:KILL_BEFORE', 'Kill everything before cursor', - 'LINEEDIT:TOP', 'Move to the top of line', - 'LINEEDIT:BOTTOM', 'Move to the bottom of line', + 'LINEEDIT:DEL', 'Delete character', + 'LINEEDIT:KILL_AFTER', 'Delete everything after cursor', + 'LINEEDIT:KILL_BEFORE', 'Delete everything before cursor', + 'LINEEDIT:TOP', 'Cursor to the beginning of the line', + 'LINEEDIT:BOTTOM', 'Cursor to the end of the line',   'LINEEDIT:PREV', 'Fetch the previous string from the history list',   'LINEEDIT:NEXT', 'Fetch the next string from the history list',   'LINEEDIT:EDITOR', 'Edit with external editor', - 'LINEEDIT:COMPLETE', 'Complete filename', - 'LINEEDIT:ACCEPT', 'Accept', + 'LINEEDIT:COMPLETE', 'Try to complete filename', + 'LINEEDIT:ACCEPT', 'Accept input line',  );  %menu_funcdesc = (   'MENU:SELECT', 'Select item',   'MENU:CLOSE', 'Close menu', - 'MENU:CANCEL', 'Back', - 'MENU:DOWN', 'Move to next item', - 'MENU:UP', 'Move to previous item', + 'MENU:CANCEL', 'One selection step backward', + 'MENU:DOWN', 'Move to the next item', + 'MENU:UP', 'Move to the previous item',   'MENU:LINE_UP', 'Scroll up one item',   'MENU:LINE_DOWN', 'Scroll down one item', - 'MENU:TOP', 'Go to top item', - 'MENU:LAST', 'Go to last item', - 'MENU:NEXT', 'Go to next page', - 'MENU:PREV', 'Go to previous page', - 'MENU:SEARCH_FORE', 'Search foreward', + 'MENU:TOP', 'Move to the first item', + 'MENU:LAST', 'Move to the final item', + 'MENU:NEXT', 'Go to the next page', + 'MENU:PREV', 'Go to the previous page', + 'MENU:SEARCH_FORE', 'Search forward',   'MENU:SEARCH_BACK', 'Search backward', - 'MENU:SEARCH_NEXT', 'Search next regexp', - 'MENU:SEARCH_PREV', 'Search previous regexp', + 'MENU:SEARCH_NEXT', 'Search for the next match', + 'MENU:SEARCH_PREV', 'Search for the previous match',   'MENU:SUSPEND', 'Suspend',  ); diff --git a/scripts/w3mhelp.cgi.in b/scripts/w3mhelp.cgi.in index 2c3f4d5..503dddc 100644 --- a/scripts/w3mhelp.cgi.in +++ b/scripts/w3mhelp.cgi.in @@ -122,14 +122,14 @@ for $otherlang (@docdirs) {  }  $keymap =~ s/[<>&]/$htmlesc{$&}/ge; -$head = "Show keymap file"; +$head = 'Current keymap file';  if (defined($title{$head})) {  	$head = $title{$head};  	$head =~ s/[<>&]/$htmlesc{$&}/ge;  }  print "<P><A HREF=\"$keymap\">$head</A>\n"; -&show_keymap("Page/Cursor motion",  +&show_keymap('In-page Navigation',   	     split(" ", "pgFore pgBack movR movL movD movU  		movR1 movL1 movD1 movU1 ldown1 lup1  		shiftl shiftr col1L col1R linbeg linend ctrCsrH ctrCsrV @@ -138,50 +138,50 @@ print "<P><A HREF=\"$keymap\">$head</A>\n";  		nextR nextL nextD nextU nextRD nextLU  		undoPos redoPos")); -&show_keymap("Hyperlink operation", +&show_keymap('Hyperlink Operations',  	     split(" ", "followA tabA svA followI svI submitForm  		curURL peekURL peekIMG pginfo curlno chkURL chkWORD chkNMID  		rFrame extbrz linkbrz linkLst listMn linkMn accessKey")); -&show_keymap("File/Stream operation", +&show_keymap('File/Stream Operations',  	     split(" ", "goURL gorURL tabURL tabrURL ldfile readsh pipesh  		pipeBuf")); -&show_keymap("Buffer operation", +&show_keymap('Buffer Operations',  	     split(" ", "backBf nextBf prevBf selMn selBuf vwSrc svSrc svBuf  		editBf editScr reload reshape rdrwSc dispI stopI")); -&show_keymap("Tab operation", +&show_keymap('Tab Operations',  	     split(" ", "newT closeT nextT prevT tabMn tabR tabL")); -&show_keymap("Bookmark operation", +&show_keymap('Bookmark Management',  	     split(" ", "ldBmark adBmark")); -&show_keymap("Search", +&show_keymap('Searches',  	     split(" ", "srchfor srchbak srchnxt srchprv isrchfor isrchbak")); -&show_keymap("Dictionary look-up", +&show_keymap('Dictionary Lookup',  	     split(" ", "dictword dictwordat")); -&show_keymap("Mark operation", +&show_keymap('Mark Operations',  	     split(" ", "_mark nextMk prevMk reMark")); -&show_keymap("Miscellany", +&show_keymap('Miscellaneous',  	     split(" ", "mainMn ldhelp ldOpt dispVer cooLst ldHist ldDL  		docCSet defCSet  		msgs msToggle wrapToggle execCmd setAlarm setOpt setEnv defKey  		reinit execsh susp qquitfm quitfm")); -&show_keymap_data("User defined keymaps"); +&show_keymap_data('User-defined key bindings');  print "<BR>\n<HR WIDTH=80%>\n"; -&show_keymap("Buffer selection mode", +&show_keymap('Buffer and Tab Selection Mode',  	     split(" ", "buffer_next buffer_prev buffer_delete buffer_go"));  print "<BR>\n<HR WIDTH=80%>\n"; -&show_keymap("Line-editing mode", +&show_keymap('Input Line Editing Mode',  	     split(" ", "lineedit_forward lineedit_back lineedit_backspace   		lineedit_delete lineedit_kill_after lineedit_kill_before  		lineedit_top lineedit_bottom lineedit_prev lineedit_next @@ -189,7 +189,7 @@ print "<BR>\n<HR WIDTH=80%>\n";  print "<BR>\n<HR WIDTH=80%>\n"; -&show_keymap("Pop up menu", +&show_keymap('Popup Menu Mode',  	     split(" ", "menu_select menu_close menu_cancel menu_down menu_up  		menu_line_up menu_line_down menu_top menu_last menu_next  		menu_prev menu_search_fore menu_search_back menu_search_next | 
