mirror of
git://git.sv.gnu.org/nano.git
synced 2024-12-28 05:09:49 +03:00
Add a nice (more) tag when there's too many completions
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@272 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
7da4e9f28b
commit
b684805da7
4
files.c
4
files.c
@ -726,6 +726,10 @@ int input_tab(char *buf, int place, int lastWasTab)
|
|||||||
if (col > (COLS - longestname) && matches[i + 1] != NULL) {
|
if (col > (COLS - longestname) && matches[i + 1] != NULL) {
|
||||||
editline++;
|
editline++;
|
||||||
wmove(edit, editline, 0);
|
wmove(edit, editline, 0);
|
||||||
|
if (editline == editwinrows - 1) {
|
||||||
|
waddstr(edit, _("(more)"));
|
||||||
|
break;
|
||||||
|
}
|
||||||
col = 0;
|
col = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
365
po/cat-id-tbl.c
365
po/cat-id-tbl.c
@ -28,80 +28,81 @@ const struct _msg_ent _msg_tbl[] = {
|
|||||||
{"File Name to write", 19},
|
{"File Name to write", 19},
|
||||||
{"filename is %s", 20},
|
{"filename is %s", 20},
|
||||||
{"File exists, OVERWRITE ?", 21},
|
{"File exists, OVERWRITE ?", 21},
|
||||||
{"Constant cursor position", 22},
|
{"(more)", 22},
|
||||||
{"Auto indent", 23},
|
{"Constant cursor position", 23},
|
||||||
{"Suspend", 24},
|
{"Auto indent", 24},
|
||||||
{"Help mode", 25},
|
{"Suspend", 25},
|
||||||
{"Pico messages", 26},
|
{"Help mode", 26},
|
||||||
{"Mouse support", 27},
|
{"Pico messages", 27},
|
||||||
{"Cut to end", 28},
|
{"Mouse support", 28},
|
||||||
{"Regular expressions", 29},
|
{"Cut to end", 29},
|
||||||
{"Auto wrap", 30},
|
{"Regular expressions", 30},
|
||||||
{"Invoke the help menu", 31},
|
{"Auto wrap", 31},
|
||||||
{"Write the current file to disk", 32},
|
{"Invoke the help menu", 32},
|
||||||
{"Exit from nano", 33},
|
{"Write the current file to disk", 33},
|
||||||
{"Goto a specific line number", 34},
|
{"Exit from nano", 34},
|
||||||
{"Justify the current paragraph", 35},
|
{"Goto a specific line number", 35},
|
||||||
{"Replace text within the editor", 36},
|
{"Justify the current paragraph", 36},
|
||||||
{"Insert another file into the current one", 37},
|
{"Replace text within the editor", 37},
|
||||||
{"Search for text within the editor", 38},
|
{"Insert another file into the current one", 38},
|
||||||
{"Move to the previous screen", 39},
|
{"Search for text within the editor", 39},
|
||||||
{"Move to the next screen", 40},
|
{"Move to the previous screen", 40},
|
||||||
{"Cut the current line and store it in the cutbuffer", 41},
|
{"Move to the next screen", 41},
|
||||||
{"Uncut from the cutbuffer into the current line", 42},
|
{"Cut the current line and store it in the cutbuffer", 42},
|
||||||
{"Show the posititon of the cursor", 43},
|
{"Uncut from the cutbuffer into the current line", 43},
|
||||||
{"Invoke the spell checker (if available)", 44},
|
{"Show the posititon of the cursor", 44},
|
||||||
{"Move up one line", 45},
|
{"Invoke the spell checker (if available)", 45},
|
||||||
{"Move down one line", 46},
|
{"Move up one line", 46},
|
||||||
{"Move forward one character", 47},
|
{"Move down one line", 47},
|
||||||
{"Move back one character", 48},
|
{"Move forward one character", 48},
|
||||||
{"Move to the beginning of the current line", 49},
|
{"Move back one character", 49},
|
||||||
{"Move to the end of the current line", 50},
|
{"Move to the beginning of the current line", 50},
|
||||||
{"Go to the first line of the file", 51},
|
{"Move to the end of the current line", 51},
|
||||||
{"Go to the last line of the file", 52},
|
{"Go to the first line of the file", 52},
|
||||||
{"Refresh (redraw) the current screen", 53},
|
{"Go to the last line of the file", 53},
|
||||||
{"Mark text at the current cursor location", 54},
|
{"Refresh (redraw) the current screen", 54},
|
||||||
{"Delete the character under the cursor", 55},
|
{"Mark text at the current cursor location", 55},
|
||||||
{"Delete the character to the left of the cursor", 56},
|
{"Delete the character under the cursor", 56},
|
||||||
{"Insert a tab character", 57},
|
{"Delete the character to the left of the cursor", 57},
|
||||||
{"Insert a carriage return at the cursor position", 58},
|
{"Insert a tab character", 58},
|
||||||
{"Make the current search or replace case (in)sensitive", 59},
|
{"Insert a carriage return at the cursor position", 59},
|
||||||
{"Cancel the current function", 60},
|
{"Make the current search or replace case (in)sensitive", 60},
|
||||||
{"Get Help", 61},
|
{"Cancel the current function", 61},
|
||||||
{"WriteOut", 62},
|
{"Get Help", 62},
|
||||||
{"Exit", 63},
|
{"WriteOut", 63},
|
||||||
{"Goto Line", 64},
|
{"Exit", 64},
|
||||||
{"Justify", 65},
|
{"Goto Line", 65},
|
||||||
{"Replace", 66},
|
{"Justify", 66},
|
||||||
{"Read File", 67},
|
{"Replace", 67},
|
||||||
{"Where Is", 68},
|
{"Read File", 68},
|
||||||
{"Prev Page", 69},
|
{"Where Is", 69},
|
||||||
{"Next Page", 70},
|
{"Prev Page", 70},
|
||||||
{"Cut Text", 71},
|
{"Next Page", 71},
|
||||||
{"UnCut Txt", 72},
|
{"Cut Text", 72},
|
||||||
{"Cur Pos", 73},
|
{"UnCut Txt", 73},
|
||||||
{"To Spell", 74},
|
{"Cur Pos", 74},
|
||||||
{"Up", 75},
|
{"To Spell", 75},
|
||||||
{"Down", 76},
|
{"Up", 76},
|
||||||
{"Forward", 77},
|
{"Down", 77},
|
||||||
{"Back", 78},
|
{"Forward", 78},
|
||||||
{"Home", 79},
|
{"Back", 79},
|
||||||
{"End", 80},
|
{"Home", 80},
|
||||||
{"Refresh", 81},
|
{"End", 81},
|
||||||
{"Mark Text", 82},
|
{"Refresh", 82},
|
||||||
{"Delete", 83},
|
{"Mark Text", 83},
|
||||||
{"Backspace", 84},
|
{"Delete", 84},
|
||||||
{"Tab", 85},
|
{"Backspace", 85},
|
||||||
{"Enter", 86},
|
{"Tab", 86},
|
||||||
{"First Line", 87},
|
{"Enter", 87},
|
||||||
{"Last Line", 88},
|
{"First Line", 88},
|
||||||
{"Case Sens", 89},
|
{"Last Line", 89},
|
||||||
{"Cancel", 90},
|
{"Case Sens", 90},
|
||||||
{"No Replace", 91},
|
{"Cancel", 91},
|
||||||
|
{"No Replace", 92},
|
||||||
{"\
|
{"\
|
||||||
\n\
|
\n\
|
||||||
Buffer written to 'nano.save'\n", 92},
|
Buffer written to 'nano.save'\n", 93},
|
||||||
{"Key illegal in VIEW mode", 93},
|
{"Key illegal in VIEW mode", 94},
|
||||||
{"\
|
{"\
|
||||||
nano help text\n\
|
nano help text\n\
|
||||||
\n\
|
\n\
|
||||||
@ -119,120 +120,120 @@ Escape-key sequences are notated with the Meta (M) symbol and can be entered \
|
|||||||
using either the Esc, Alt or Meta key depending on your keyboard setup. The \
|
using either the Esc, Alt or Meta key depending on your keyboard setup. The \
|
||||||
following keystrokes are available in the main editor window. Optional keys \
|
following keystrokes are available in the main editor window. Optional keys \
|
||||||
are shown in parentheses:\n\
|
are shown in parentheses:\n\
|
||||||
\n", 94},
|
\n", 95},
|
||||||
{"free_node(): free'd a node, YAY!\n", 95},
|
{"free_node(): free'd a node, YAY!\n", 96},
|
||||||
{"free_node(): free'd last node.\n", 96},
|
{"free_node(): free'd last node.\n", 97},
|
||||||
{"\
|
{"\
|
||||||
Usage: nano [GNU long option] [option] +LINE <file>\n\
|
Usage: nano [GNU long option] [option] +LINE <file>\n\
|
||||||
\n", 97},
|
\n", 98},
|
||||||
{"Option\t\tLong option\t\tMeaning\n", 98},
|
{"Option\t\tLong option\t\tMeaning\n", 99},
|
||||||
{" -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n", 99},
|
{" -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n", 100},
|
||||||
{" -R\t\t--regexp\t\tUse regular expressions for search\n", 100},
|
{" -R\t\t--regexp\t\tUse regular expressions for search\n", 101},
|
||||||
{" -V \t\t--version\t\tPrint version information and exit\n", 101},
|
{" -V \t\t--version\t\tPrint version information and exit\n", 102},
|
||||||
{" -c \t\t--const\t\t\tConstantly show cursor position\n", 102},
|
{" -c \t\t--const\t\t\tConstantly show cursor position\n", 103},
|
||||||
{" -h \t\t--help\t\t\tShow this message\n", 103},
|
{" -h \t\t--help\t\t\tShow this message\n", 104},
|
||||||
{" -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n", 104},
|
{" -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n", 105},
|
||||||
{" -i \t\t--autoindent\t\tAutomatically indent new lines\n", 105},
|
{" -i \t\t--autoindent\t\tAutomatically indent new lines\n", 106},
|
||||||
{" -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite\n", 106},
|
{" -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite\n", 107},
|
||||||
{" -m \t\t--mouse\t\t\tEnable mouse\n", 107},
|
{" -m \t\t--mouse\t\t\tEnable mouse\n", 108},
|
||||||
{"\
|
{"\
|
||||||
-r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n", 108},
|
-r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n", 109},
|
||||||
{" -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n", 109},
|
{" -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n", 110},
|
||||||
{" -s [prog] \t--speller=[prog]\tEnable alternate speller\n", 110},
|
{" -s [prog] \t--speller=[prog]\tEnable alternate speller\n", 111},
|
||||||
{" -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n", 111},
|
{" -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n", 112},
|
||||||
{" -v \t\t--view\t\t\tView (read only) mode\n", 112},
|
{" -v \t\t--view\t\t\tView (read only) mode\n", 113},
|
||||||
{" -w \t\t--nowrap\t\tDon't wrap long lines\n", 113},
|
{" -w \t\t--nowrap\t\tDon't wrap long lines\n", 114},
|
||||||
{" -x \t\t--nohelp\t\tDon't show help window\n", 114},
|
{" -x \t\t--nohelp\t\tDon't show help window\n", 115},
|
||||||
{" -z \t\t--suspend\t\tEnable suspend\n", 115},
|
{" -z \t\t--suspend\t\tEnable suspend\n", 116},
|
||||||
{" +LINE\t\t\t\t\tStart at line number LINE\n", 116},
|
{" +LINE\t\t\t\t\tStart at line number LINE\n", 117},
|
||||||
{"\
|
{"\
|
||||||
Usage: nano [option] +LINE <file>\n\
|
Usage: nano [option] +LINE <file>\n\
|
||||||
\n", 117},
|
\n", 118},
|
||||||
{"Option\t\tMeaning\n", 118},
|
{"Option\t\tMeaning\n", 119},
|
||||||
{" -T [num]\tSet width of a tab to num\n", 119},
|
{" -T [num]\tSet width of a tab to num\n", 120},
|
||||||
{" -R\t\tUse regular expressions for search\n", 120},
|
{" -R\t\tUse regular expressions for search\n", 121},
|
||||||
{" -V \t\tPrint version information and exit\n", 121},
|
{" -V \t\tPrint version information and exit\n", 122},
|
||||||
{" -c \t\tConstantly show cursor position\n", 122},
|
{" -c \t\tConstantly show cursor position\n", 123},
|
||||||
{" -h \t\tShow this message\n", 123},
|
{" -h \t\tShow this message\n", 124},
|
||||||
{" -k \t\tLet ^K cut from cursor to end of line\n", 124},
|
{" -k \t\tLet ^K cut from cursor to end of line\n", 125},
|
||||||
{" -i \t\tAutomatically indent new lines\n", 125},
|
{" -i \t\tAutomatically indent new lines\n", 126},
|
||||||
{" -l \t\tDon't follow symbolic links, overwrite\n", 126},
|
{" -l \t\tDon't follow symbolic links, overwrite\n", 127},
|
||||||
{" -m \t\tEnable mouse\n", 127},
|
{" -m \t\tEnable mouse\n", 128},
|
||||||
{" -r [#cols] \tSet fill cols to (wrap lines at) #cols\n", 128},
|
{" -r [#cols] \tSet fill cols to (wrap lines at) #cols\n", 129},
|
||||||
{" -s [prog] \tEnable alternate speller\n", 129},
|
{" -s [prog] \tEnable alternate speller\n", 130},
|
||||||
{" -p \t\tMake bottom 2 lines more Pico-like\n", 130},
|
{" -p \t\tMake bottom 2 lines more Pico-like\n", 131},
|
||||||
{" -t \t\tAuto save on exit, don't prompt\n", 131},
|
{" -t \t\tAuto save on exit, don't prompt\n", 132},
|
||||||
{" -v \t\tView (read only) mode\n", 132},
|
{" -v \t\tView (read only) mode\n", 133},
|
||||||
{" -w \t\tDon't wrap long lines\n", 133},
|
{" -w \t\tDon't wrap long lines\n", 134},
|
||||||
{" -x \t\tDon't show help window\n", 134},
|
{" -x \t\tDon't show help window\n", 135},
|
||||||
{" -z \t\tEnable suspend\n", 135},
|
{" -z \t\tEnable suspend\n", 136},
|
||||||
{" +LINE\t\tStart at line number LINE\n", 136},
|
{" +LINE\t\tStart at line number LINE\n", 137},
|
||||||
{" nano version %s by Chris Allegretta (compiled %s, %s)\n", 137},
|
{" nano version %s by Chris Allegretta (compiled %s, %s)\n", 138},
|
||||||
{" Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org\n", 138},
|
{" Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org\n", 139},
|
||||||
{"Mark Set", 139},
|
{"Mark Set", 140},
|
||||||
{"Mark UNset", 140},
|
{"Mark UNset", 141},
|
||||||
{"check_wrap called with inptr->data=\"%s\"\n", 141},
|
{"check_wrap called with inptr->data=\"%s\"\n", 142},
|
||||||
{"current->data now = \"%s\"\n", 142},
|
{"current->data now = \"%s\"\n", 143},
|
||||||
{"After, data = \"%s\"\n", 143},
|
{"After, data = \"%s\"\n", 144},
|
||||||
{"Error deleting tempfile, ack!", 144},
|
{"Error deleting tempfile, ack!", 145},
|
||||||
{"Edit a replacement", 145},
|
{"Edit a replacement", 146},
|
||||||
{"Could not create a temporary filename: %s", 146},
|
{"Could not create a temporary filename: %s", 147},
|
||||||
{"Finished checking spelling", 147},
|
{"Finished checking spelling", 148},
|
||||||
{"Spell checking failed", 148},
|
{"Spell checking failed", 149},
|
||||||
{"Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? ", 149},
|
{"Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? ", 150},
|
||||||
{"Cannot resize top win", 150},
|
{"Cannot resize top win", 151},
|
||||||
{"Cannot move top win", 151},
|
{"Cannot move top win", 152},
|
||||||
{"Cannot resize edit win", 152},
|
{"Cannot resize edit win", 153},
|
||||||
{"Cannot move edit win", 153},
|
{"Cannot move edit win", 154},
|
||||||
{"Cannot resize bottom win", 154},
|
{"Cannot resize bottom win", 155},
|
||||||
{"Cannot move bottom win", 155},
|
{"Cannot move bottom win", 156},
|
||||||
{"Justify Complete", 156},
|
{"Justify Complete", 157},
|
||||||
{"%s enable/disable", 157},
|
{"%s enable/disable", 158},
|
||||||
{"enabled", 158},
|
{"enabled", 159},
|
||||||
{"disabled", 159},
|
{"disabled", 160},
|
||||||
{"Main: set up windows\n", 160},
|
{"Main: set up windows\n", 161},
|
||||||
{"Main: bottom win\n", 161},
|
{"Main: bottom win\n", 162},
|
||||||
{"Main: open file\n", 162},
|
{"Main: open file\n", 163},
|
||||||
{"I got Alt-O-%c! (%d)\n", 163},
|
{"I got Alt-O-%c! (%d)\n", 164},
|
||||||
{"I got Alt-[-1-%c! (%d)\n", 164},
|
{"I got Alt-[-1-%c! (%d)\n", 165},
|
||||||
{"I got Alt-[-2-%c! (%d)\n", 165},
|
{"I got Alt-[-2-%c! (%d)\n", 166},
|
||||||
{"I got Alt-[-%c! (%d)\n", 166},
|
{"I got Alt-[-%c! (%d)\n", 167},
|
||||||
{"I got Alt-%c! (%d)\n", 167},
|
{"I got Alt-%c! (%d)\n", 168},
|
||||||
{"Case Sensitive Regexp Search%s%s", 168},
|
{"Case Sensitive Regexp Search%s%s", 169},
|
||||||
{"Regexp Search%s%s", 169},
|
{"Regexp Search%s%s", 170},
|
||||||
{"Case Sensitive Search%s%s", 170},
|
{"Case Sensitive Search%s%s", 171},
|
||||||
{"Search%s%s", 171},
|
{"Search%s%s", 172},
|
||||||
{" (to replace)", 172},
|
{" (to replace)", 173},
|
||||||
{"Search Cancelled", 173},
|
{"Search Cancelled", 174},
|
||||||
{"\"%s...\" not found", 174},
|
{"\"%s...\" not found", 175},
|
||||||
{"Search Wrapped", 175},
|
{"Search Wrapped", 176},
|
||||||
{"Replaced %d occurences", 176},
|
{"Replaced %d occurences", 177},
|
||||||
{"Replaced 1 occurence", 177},
|
{"Replaced 1 occurence", 178},
|
||||||
{"Replace Cancelled", 178},
|
{"Replace Cancelled", 179},
|
||||||
{"Replace this instance?", 179},
|
{"Replace this instance?", 180},
|
||||||
{"Replace failed: unknown subexpression!", 180},
|
{"Replace failed: unknown subexpression!", 181},
|
||||||
{"Replace with [%s]", 181},
|
{"Replace with [%s]", 182},
|
||||||
{"Replace with", 182},
|
{"Replace with", 183},
|
||||||
{"Enter line number", 183},
|
{"Enter line number", 184},
|
||||||
{"Aborted", 184},
|
{"Aborted", 185},
|
||||||
{"Come on, be reasonable", 185},
|
{"Come on, be reasonable", 186},
|
||||||
{"Only %d lines available, skipping to last line", 186},
|
{"Only %d lines available, skipping to last line", 187},
|
||||||
{"actual_x_from_start for xplus=%d returned %d\n", 187},
|
{"actual_x_from_start for xplus=%d returned %d\n", 188},
|
||||||
{"input '%c' (%d)\n", 188},
|
{"input '%c' (%d)\n", 189},
|
||||||
{"New Buffer", 189},
|
{"New Buffer", 190},
|
||||||
{" File: ...", 190},
|
{" File: ...", 191},
|
||||||
{"Modified", 191},
|
{"Modified", 192},
|
||||||
{"Moved to (%d, %d) in edit buffer\n", 192},
|
{"Moved to (%d, %d) in edit buffer\n", 193},
|
||||||
{"current->data = \"%s\"\n", 193},
|
{"current->data = \"%s\"\n", 194},
|
||||||
{"I got \"%s\"\n", 194},
|
{"I got \"%s\"\n", 195},
|
||||||
{"Yes", 195},
|
{"Yes", 196},
|
||||||
{"All", 196},
|
{"All", 197},
|
||||||
{"No", 197},
|
{"No", 198},
|
||||||
{"do_cursorpos: linepct = %f, bytepct = %f\n", 198},
|
{"do_cursorpos: linepct = %f, bytepct = %f\n", 199},
|
||||||
{"line %d of %d (%.0f%%), character %d of %d (%.0f%%)", 199},
|
{"line %d of %d (%.0f%%), character %d of %d (%.0f%%)", 200},
|
||||||
{"Dumping file buffer to stderr...\n", 200},
|
{"Dumping file buffer to stderr...\n", 201},
|
||||||
{"Dumping cutbuffer to stderr...\n", 201},
|
{"Dumping cutbuffer to stderr...\n", 202},
|
||||||
{"Dumping a buffer to stderr...\n", 202},
|
{"Dumping a buffer to stderr...\n", 203},
|
||||||
};
|
};
|
||||||
|
|
||||||
int _msg_tbl_length = 202;
|
int _msg_tbl_length = 203;
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2000-11-05 21:55-0500\n"
|
"POT-Creation-Date: 2000-11-05 21:59-0500\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -107,6 +107,10 @@ msgstr ""
|
|||||||
msgid "File exists, OVERWRITE ?"
|
msgid "File exists, OVERWRITE ?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: files.c:730
|
||||||
|
msgid "(more)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: global.c:124
|
#: global.c:124
|
||||||
msgid "Constant cursor position"
|
msgid "Constant cursor position"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
Loading…
Reference in New Issue
Block a user