Intial commit
[profile/ivi/w3m.git] / scripts / w3mhelp-funcdesc.en.pl.in
1 # charset
2 $charset = 'US-ASCII';
3
4 # Buffer selection mode
5
6 %buf_funcdesc = (
7  'BUF:PREV', 'Select previous buffer',
8  'BUF:NEXT', 'Select next buffer',
9  'BUF:DELETE', 'Delete current buffer',
10  'BUF:GO', 'Go to the selected buffer',
11 );
12
13 %lineedit_funcdesc = (
14  'LINEEDIT:FORWARD', 'Move cursor forward',
15  'LINEEDIT:BACK', 'Move cursor backward',
16  'LINEEDIT:BS',  'Delete previous character',
17  'LINEEDIT:DEL', 'Delete current character',
18  'LINEEDIT:KILL_AFTER', 'Kill everything after cursor',
19  'LINEEDIT:KILL_BEFORE', 'Kill everything before cursor',
20  'LINEEDIT:TOP', 'Move to the top of line',
21  'LINEEDIT:BOTTOM', 'Move to the bottom of line',
22  'LINEEDIT:PREV', 'Fetch the previous string from the history list',
23  'LINEEDIT:NEXT', 'Fetch the next string from the history list',
24  'LINEEDIT:EDITOR', 'Edit with external editor',
25  'LINEEDIT:COMPLETE', 'Complete filename',
26  'LINEEDIT:ACCEPT', 'Accept',
27 );
28
29 %menu_funcdesc = (
30  'MENU:SELECT', 'Select item',
31  'MENU:CLOSE', 'Close menu',
32  'MENU:CANCEL', 'Back',
33  'MENU:DOWN', 'Move to next item',
34  'MENU:UP', 'Move to previous item',
35  'MENU:LINE_UP', 'Scroll up one item',
36  'MENU:LINE_DOWN', 'Scroll down one item',
37  'MENU:TOP', 'Go to top item',
38  'MENU:LAST', 'Go to last item',
39  'MENU:NEXT', 'Go to next page',
40  'MENU:PREV', 'Go to previous page',
41  'MENU:SEARCH_FORE', 'Search foreward',
42  'MENU:SEARCH_BACK', 'Search backward',
43  'MENU:SEARCH_NEXT', 'Search next regexp',
44  'MENU:SEARCH_PREV', 'Search previous regexp',
45  'MENU:SUSPEND', 'Suspend',
46 );
47
48 1;