diff options
Diffstat (limited to 'src')
131 files changed, 4844 insertions, 73046 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index 49edfda838..f2b75dca2a 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -326,6 +326,7 @@ elseif(CLANG_TSAN) message(STATUS "Enabling Clang thread sanitizer for nvim.") set_property(TARGET nvim APPEND_STRING PROPERTY COMPILE_FLAGS "-DEXITFREE ") set_property(TARGET nvim APPEND_STRING PROPERTY COMPILE_FLAGS "-fsanitize=thread ") + set_property(TARGET nvim APPEND_STRING PROPERTY COMPILE_FLAGS "-fPIE ") set_property(TARGET nvim APPEND_STRING PROPERTY LINK_FLAGS "-fsanitize=thread ") endif() diff --git a/src/nvim/api/private/defs.h b/src/nvim/api/private/defs.h index 1d5ecd3071..223aab09dc 100644 --- a/src/nvim/api/private/defs.h +++ b/src/nvim/api/private/defs.h @@ -91,9 +91,6 @@ typedef enum { struct object { ObjectType type; union { - Buffer buffer; - Window window; - Tabpage tabpage; Boolean boolean; Integer integer; Float floating; diff --git a/src/nvim/api/private/helpers.c b/src/nvim/api/private/helpers.c index 87a52a5dd0..72db7c0782 100644 --- a/src/nvim/api/private/helpers.c +++ b/src/nvim/api/private/helpers.c @@ -618,13 +618,14 @@ bool object_to_vim(Object obj, typval_T *tv, Error *err) case kObjectTypeWindow: case kObjectTypeTabpage: case kObjectTypeInteger: - if (obj.data.integer > INT_MAX || obj.data.integer < INT_MIN) { + if (obj.data.integer > VARNUMBER_MAX + || obj.data.integer < VARNUMBER_MIN) { api_set_error(err, Validation, _("Integer value outside range")); return false; } tv->v_type = VAR_NUMBER; - tv->vval.v_number = (int)obj.data.integer; + tv->vval.v_number = (varnumber_T)obj.data.integer; break; case kObjectTypeFloat: diff --git a/src/nvim/api/private/helpers.h b/src/nvim/api/private/helpers.h index a946e35149..9fe8c351cf 100644 --- a/src/nvim/api/private/helpers.h +++ b/src/nvim/api/private/helpers.h @@ -37,15 +37,15 @@ #define BUFFER_OBJ(s) ((Object) { \ .type = kObjectTypeBuffer, \ - .data.buffer = s }) + .data.integer = s }) #define WINDOW_OBJ(s) ((Object) { \ .type = kObjectTypeWindow, \ - .data.window = s }) + .data.integer = s }) #define TABPAGE_OBJ(s) ((Object) { \ .type = kObjectTypeTabpage, \ - .data.tabpage = s }) + .data.integer = s }) #define ARRAY_OBJ(a) ((Object) { \ .type = kObjectTypeArray, \ diff --git a/src/nvim/api/ui.c b/src/nvim/api/ui.c index 56b41f1eea..9178538110 100644 --- a/src/nvim/api/ui.c +++ b/src/nvim/api/ui.c @@ -271,6 +271,8 @@ static void remote_ui_mode_change(UI *ui, int mode) ADD(args, STRING_OBJ(cstr_to_string("insert"))); } else if (mode == REPLACE) { ADD(args, STRING_OBJ(cstr_to_string("replace"))); + } else if (mode == CMDLINE) { + ADD(args, STRING_OBJ(cstr_to_string("cmdline"))); } else { assert(mode == NORMAL); ADD(args, STRING_OBJ(cstr_to_string("normal"))); diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index 491375bd73..e59e955aed 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -61,6 +61,7 @@ void nvim_feedkeys(String keys, String mode, Boolean escape_csi) bool insert = false; bool typed = false; bool execute = false; + bool dangerous = false; for (size_t i = 0; i < mode.size; ++i) { switch (mode.data[i]) { @@ -69,6 +70,7 @@ void nvim_feedkeys(String keys, String mode, Boolean escape_csi) case 't': typed = true; break; case 'i': insert = true; break; case 'x': execute = true; break; + case '!': dangerous = true; break; } } @@ -99,7 +101,13 @@ void nvim_feedkeys(String keys, String mode, Boolean escape_csi) /* Avoid a 1 second delay when the keys start Insert mode. */ msg_scroll = false; + if (!dangerous) { + ex_normal_busy++; + } exec_normal(true); + if (!dangerous) { + ex_normal_busy--; + } msg_scroll |= save_msg_scroll; } } diff --git a/src/nvim/api/window.c b/src/nvim/api/window.c index ef881fa0eb..1f555a6a05 100644 --- a/src/nvim/api/window.c +++ b/src/nvim/api/window.c @@ -348,7 +348,7 @@ Tabpage nvim_win_get_tabpage(Window window, Error *err) /// @return Window number Integer nvim_win_get_number(Window window, Error *err) { - Integer rv = 0; + int rv = 0; win_T *win = find_window_by_handle(window, err); if (!win) { @@ -356,7 +356,7 @@ Integer nvim_win_get_number(Window window, Error *err) } int tabnr; - win_get_tabwin(window, &tabnr, (int *)&rv); + win_get_tabwin(window, &tabnr, &rv); return rv; } diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index a66fdc1304..80db0e2ebc 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -268,6 +268,9 @@ open_buffer ( bool buf_valid(buf_T *buf) FUNC_ATTR_PURE FUNC_ATTR_WARN_UNUSED_RESULT { + if (buf == NULL) { + return false; + } FOR_ALL_BUFFERS(bp) { if (bp == buf) { return true; @@ -479,6 +482,18 @@ void buf_clear_file(buf_T *buf) buf->b_ml.ml_flags = ML_EMPTY; /* empty buffer */ } +/// Clears the current buffer contents. +void buf_clear(void) +{ + linenr_T line_count = curbuf->b_ml.ml_line_count; + while (!(curbuf->b_ml.ml_flags & ML_EMPTY)) { + ml_delete((linenr_T)1, false); + } + deleted_lines_mark(1, line_count); // prepare for display + ml_close(curbuf, true); // free memline_T + buf_clear_file(curbuf); +} + /// buf_freeall() - free all things allocated for a buffer that are related to /// the file. Careful: get here with "curwin" NULL when exiting. /// @@ -671,14 +686,15 @@ void handle_swap_exists(buf_T *old_curbuf) * aborting() returns FALSE when closing a buffer. */ enter_cleanup(&cs); - /* User selected Quit at ATTENTION prompt. Go back to previous - * buffer. If that buffer is gone or the same as the current one, - * open a new, empty buffer. */ - swap_exists_action = SEA_NONE; /* don't want it again */ - swap_exists_did_quit = TRUE; - close_buffer(curwin, curbuf, DOBUF_UNLOAD, FALSE); - if (!buf_valid(old_curbuf) || old_curbuf == curbuf) + // User selected Quit at ATTENTION prompt. Go back to previous + // buffer. If that buffer is gone or the same as the current one, + // open a new, empty buffer. + swap_exists_action = SEA_NONE; // don't want it again + swap_exists_did_quit = true; + close_buffer(curwin, curbuf, DOBUF_UNLOAD, false); + if (!buf_valid(old_curbuf) || old_curbuf == curbuf) { old_curbuf = buflist_new(NULL, NULL, 1L, BLN_CURBUF | BLN_LISTED); + } if (old_curbuf != NULL) { enter_buffer(old_curbuf); if (old_tw != curbuf->b_p_tw) @@ -1319,28 +1335,29 @@ void do_autochdir(void) } } -/* - * functions for dealing with the buffer list - */ +// +// functions for dealing with the buffer list +// -/* - * Add a file name to the buffer list. Return a pointer to the buffer. - * If the same file name already exists return a pointer to that buffer. - * If it does not exist, or if fname == NULL, a new entry is created. - * If (flags & BLN_CURBUF) is TRUE, may use current buffer. - * If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list. - * If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer. - * This is the ONLY way to create a new buffer. - */ -static int top_file_num = 1; /* highest file number */ - -buf_T * -buflist_new ( - char_u *ffname, /* full path of fname or relative */ - char_u *sfname, /* short fname or NULL */ - linenr_T lnum, /* preferred cursor line */ - int flags /* BLN_ defines */ -) +static int top_file_num = 1; ///< highest file number + +/// Add a file name to the buffer list. +/// If the same file name already exists return a pointer to that buffer. +/// If it does not exist, or if fname == NULL, a new entry is created. +/// If (flags & BLN_CURBUF) is TRUE, may use current buffer. +/// If (flags & BLN_LISTED) is TRUE, add new buffer to buffer list. +/// If (flags & BLN_DUMMY) is TRUE, don't count it as a real buffer. +/// If (flags & BLN_NEW) is TRUE, don't use an existing buffer. +/// This is the ONLY way to create a new buffer. +/// +/// @param ffname full path of fname or relative +/// @param sfname short fname or NULL +/// @param lnum preferred cursor line +/// @param flags BLN_ defines +/// @param bufnr +/// +/// @return pointer to the buffer +buf_T * buflist_new(char_u *ffname, char_u *sfname, linenr_T lnum, int flags) { buf_T *buf; @@ -2374,10 +2391,11 @@ buf_T *setaltfname(char_u *ffname, char_u *sfname, linenr_T lnum) { buf_T *buf; - /* Create a buffer. 'buflisted' is not set if it's a new buffer */ + // Create a buffer. 'buflisted' is not set if it's a new buffer buf = buflist_new(ffname, sfname, lnum, 0); - if (buf != NULL && !cmdmod.keepalt) + if (buf != NULL && !cmdmod.keepalt) { curwin->w_alt_fnum = buf->b_fnum; + } return buf; } @@ -2412,8 +2430,9 @@ int buflist_add(char_u *fname, int flags) buf_T *buf; buf = buflist_new(fname, NULL, (linenr_T)0, flags); - if (buf != NULL) + if (buf != NULL) { return buf->b_fnum; + } return 0; } @@ -4130,12 +4149,10 @@ do_arg_all ( wpnext = wp->w_next; buf = wp->w_buffer; if (buf->b_ffname == NULL - || (!keep_tabs && buf->b_nwindows > 1) - || wp->w_width != Columns - ) + || (!keep_tabs && (buf->b_nwindows > 1 || wp->w_width != Columns))) { i = opened_len; - else { - /* check if the buffer in this window is in the arglist */ + } else { + // check if the buffer in this window is in the arglist for (i = 0; i < opened_len; ++i) { if (i < alist->al_ga.ga_len && (AARGLIST(alist)[i].ae_fnum == buf->b_fnum @@ -5253,3 +5270,21 @@ wipe_buffer ( unblock_autocmds(); } } + +/// Creates or switches to a scratch buffer. :h special-buffers +/// Scratch buffer is: +/// - buftype=nofile bufhidden=hide noswapfile +/// - Always considered 'nomodified' +/// +/// @param bufnr Buffer to switch to, or 0 to create a new buffer. +/// +/// @see curbufIsChanged() +void buf_open_scratch(handle_T bufnr, char *bufname) +{ + (void)do_ecmd((int)bufnr, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL); + (void)setfname(curbuf, (char_u *)bufname, NULL, true); + set_option_value((char_u *)"bh", 0L, (char_u *)"hide", OPT_LOCAL); + set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL); + set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL); + RESET_BINDING(curwin); +} diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index ab5987612c..2f0e8ad974 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -488,9 +488,9 @@ struct file_buffer { bool file_id_valid; FileID file_id; - bool b_changed; /* 'modified': Set to true if something in the - file has been changed and not written out. */ - int b_changedtick; /* incremented for each change, also for undo */ + int b_changed; // 'modified': Set to true if something in the + // file has been changed and not written out. + int b_changedtick; // incremented for each change, also for undo bool b_saving; /* Set to true if we are in the middle of saving the buffer. */ @@ -655,7 +655,7 @@ struct file_buffer { long b_p_sts; ///< 'softtabstop' long b_p_sts_nopaste; ///< b_p_sts saved for paste mode char_u *b_p_sua; ///< 'suffixesadd' - bool b_p_swf; ///< 'swapfile' + int b_p_swf; ///< 'swapfile' long b_p_smc; ///< 'synmaxcol' char_u *b_p_syn; ///< 'syntax' long b_p_ts; ///< 'tabstop' @@ -771,7 +771,7 @@ struct file_buffer { /* * Stuff for diff mode. */ -# define DB_COUNT 4 /* up to four buffers can be diff'ed */ +# define DB_COUNT 8 // up to four buffers can be diff'ed /* * Each diffblock defines where a block of lines starts in each of the buffers @@ -877,16 +877,17 @@ struct frame_S { * match functions there is a different pattern for each window. */ typedef struct { - regmmatch_T rm; /* points to the regexp program; contains last found - match (may continue in next line) */ - buf_T *buf; /* the buffer to search for a match */ - linenr_T lnum; /* the line to search for a match */ - int attr; /* attributes to be used for a match */ - int attr_cur; /* attributes currently active in win_line() */ - linenr_T first_lnum; /* first lnum to search for multi-line pat */ - colnr_T startcol; /* in win_line() points to char where HL starts */ - colnr_T endcol; /* in win_line() points to char where HL ends */ - proftime_T tm; /* for a time limit */ + regmmatch_T rm; // points to the regexp program; contains last found + // match (may continue in next line) + buf_T *buf; // the buffer to search for a match + linenr_T lnum; // the line to search for a match + int attr; // attributes to be used for a match + int attr_cur; // attributes currently active in win_line() + linenr_T first_lnum; // first lnum to search for multi-line pat + colnr_T startcol; // in win_line() points to char where HL starts + colnr_T endcol; // in win_line() points to char where HL ends + bool is_addpos; // position specified directly by matchaddpos() + proftime_T tm; // for a time limit } match_T; /// number of positions supported by matchaddpos() diff --git a/src/nvim/charset.c b/src/nvim/charset.c index 61c5b10808..4d150c3230 100644 --- a/src/nvim/charset.c +++ b/src/nvim/charset.c @@ -59,12 +59,8 @@ static char_u g_chartab[256]; /// Depends on the option settings 'iskeyword', 'isident', 'isfname', /// 'isprint' and 'encoding'. /// -/// The index in g_chartab[] depends on 'encoding': -/// - For non-multi-byte index with the byte (same as the character). -/// - For DBCS index with the first byte. -/// - For UTF-8 index with the character (when first byte is up to 0x80 it is -/// the same as the character, if the first byte is 0x80 and above it depends -/// on further bytes). +/// The index in g_chartab[] is the character when first byte is up to 0x80, +/// if the first byte is 0x80 and above it depends on further bytes. /// /// The contents of g_chartab[]: /// - The lower two bits, masked by CT_CELL_MASK, give the number of display @@ -118,15 +114,9 @@ int buf_init_chartab(buf_T *buf, int global) } while (c < 256) { - if (enc_utf8 && (c >= 0xa0)) { + if (c >= 0xa0) { // UTF-8: bytes 0xa0 - 0xff are printable (latin1) g_chartab[c++] = CT_PRINT_CHAR + 1; - } else if ((enc_dbcs == DBCS_JPNU) && (c == 0x8e)) { - // euc-jp characters starting with 0x8e are single width - g_chartab[c++] = CT_PRINT_CHAR + 1; - } else if ((enc_dbcs != 0) && (MB_BYTE2LEN(c) == 2)) { - // other double-byte chars can be printable AND double-width - g_chartab[c++] = CT_PRINT_CHAR + 2; } else { // the rest is unprintable by default g_chartab[c++] = (dy_flags & DY_UHEX) ? 4 : 2; @@ -134,10 +124,8 @@ int buf_init_chartab(buf_T *buf, int global) } // Assume that every multi-byte char is a filename character. - for (c = 1; c < 256; ++c) { - if (((enc_dbcs != 0) && (MB_BYTE2LEN(c) > 1)) - || ((enc_dbcs == DBCS_JPNU) && (c == 0x8e)) - || (enc_utf8 && (c >= 0xa0))) { + for (c = 1; c < 256; c++) { + if (c >= 0xa0) { g_chartab[c] |= CT_FNAME_CHAR; } } @@ -146,15 +134,6 @@ int buf_init_chartab(buf_T *buf, int global) // Init word char flags all to false memset(buf->b_chartab, 0, (size_t)32); - if (enc_dbcs != 0) { - for (c = 0; c < 256; ++c) { - // double-byte characters are probably word characters - if (MB_BYTE2LEN(c) == 2) { - SET_CHARTAB(buf, c); - } - } - } - // In lisp mode the '-' character is included in keywords. if (buf->b_p_lisp) { SET_CHARTAB(buf, '-'); @@ -189,10 +168,8 @@ int buf_init_chartab(buf_T *buf, int global) if (ascii_isdigit(*p)) { c = getdigits_int(&p); - } else if (has_mbyte) { - c = mb_ptr2char_adv(&p); } else { - c = *p++; + c = mb_ptr2char_adv(&p); } c2 = -1; @@ -201,10 +178,8 @@ int buf_init_chartab(buf_T *buf, int global) if (ascii_isdigit(*p)) { c2 = getdigits_int(&p); - } else if (has_mbyte) { - c2 = mb_ptr2char_adv(&p); } else { - c2 = *p++; + c2 = mb_ptr2char_adv(&p); } } @@ -251,8 +226,7 @@ int buf_init_chartab(buf_T *buf, int global) // that we can detect it from the first byte. if (((c < ' ') || (c > '~') - || (p_altkeymap && (F_isalpha(c) || F_isdigit(c)))) - && !(enc_dbcs && (MB_BYTE2LEN(c) == 2))) { + || (p_altkeymap && (F_isalpha(c) || F_isdigit(c))))) { if (tilde) { g_chartab[c] = (uint8_t)((g_chartab[c] & ~CT_CELL_MASK) + ((dy_flags & DY_UHEX) ? 4 : 2)); @@ -313,7 +287,7 @@ void trans_characters(char_u *buf, int bufsize) while (*buf != 0) { // Assume a multi-byte character doesn't need translation. - if (has_mbyte && ((trs_len = (*mb_ptr2len)(buf)) > 1)) { + if ((trs_len = (*mb_ptr2len)(buf)) > 1) { len -= trs_len; } else { trs = transchar_byte(*buf); @@ -347,44 +321,40 @@ char_u *transstr(char_u *s) FUNC_ATTR_NONNULL_RET size_t l; char_u hexbuf[11]; - if (has_mbyte) { - // Compute the length of the result, taking account of unprintable - // multi-byte characters. - size_t len = 0; - p = s; + // Compute the length of the result, taking account of unprintable + // multi-byte characters. + size_t len = 0; + p = s; - while (*p != NUL) { - if ((l = (size_t)(*mb_ptr2len)(p)) > 1) { - c = (*mb_ptr2char)(p); - p += l; + while (*p != NUL) { + if ((l = (size_t)(*mb_ptr2len)(p)) > 1) { + c = (*mb_ptr2char)(p); + p += l; - if (vim_isprintc(c)) { - len += l; - } else { - transchar_hex(hexbuf, c); - len += STRLEN(hexbuf); - } + if (vim_isprintc(c)) { + len += l; } else { - l = (size_t)byte2cells(*p++); + transchar_hex(hexbuf, c); + len += STRLEN(hexbuf); + } + } else { + l = (size_t)byte2cells(*p++); - if (l > 0) { - len += l; - } else { - // illegal byte sequence - len += 4; - } + if (l > 0) { + len += l; + } else { + // illegal byte sequence + len += 4; } } - res = xmallocz(len); - } else { - res = xmallocz((size_t)vim_strsize(s)); } + res = xmallocz(len); *res = NUL; p = s; while (*p != NUL) { - if (has_mbyte && ((l = (size_t)(*mb_ptr2len)(p)) > 1)) { + if ((l = (size_t)(*mb_ptr2len)(p)) > 1) { c = (*mb_ptr2char)(p); if (vim_isprintc(c)) { @@ -443,59 +413,49 @@ char_u* str_foldcase(char_u *str, int orglen, char_u *buf, int buflen) // Make each character lower case. i = 0; while (STR_CHAR(i) != NUL) { - if (enc_utf8 || (has_mbyte && (MB_BYTE2LEN(STR_CHAR(i)) > 1))) { - if (enc_utf8) { - int c = utf_ptr2char(STR_PTR(i)); - int olen = utf_ptr2len(STR_PTR(i)); - int lc = utf_tolower(c); - - // Only replace the character when it is not an invalid - // sequence (ASCII character or more than one byte) and - // utf_tolower() doesn't return the original character. - if (((c < 0x80) || (olen > 1)) && (c != lc)) { - int nlen = utf_char2len(lc); - - // If the byte length changes need to shift the following - // characters forward or backward. - if (olen != nlen) { - if (nlen > olen) { - if (buf == NULL) { - ga_grow(&ga, nlen - olen + 1); - } else { - if (len + nlen - olen >= buflen) { - // out of memory, keep old char - lc = c; - nlen = olen; - } - } - } - - if (olen != nlen) { - if (buf == NULL) { - STRMOVE(GA_PTR(i) + nlen, GA_PTR(i) + olen); - ga.ga_len += nlen - olen; - } else { - STRMOVE(buf + i + nlen, buf + i + olen); - len += nlen - olen; - } + int c = utf_ptr2char(STR_PTR(i)); + int olen = utf_ptr2len(STR_PTR(i)); + int lc = utf_tolower(c); + + // Only replace the character when it is not an invalid + // sequence (ASCII character or more than one byte) and + // utf_tolower() doesn't return the original character. + if (((c < 0x80) || (olen > 1)) && (c != lc)) { + int nlen = utf_char2len(lc); + + // If the byte length changes need to shift the following + // characters forward or backward. + if (olen != nlen) { + if (nlen > olen) { + if (buf == NULL) { + ga_grow(&ga, nlen - olen + 1); + } else { + if (len + nlen - olen >= buflen) { + // out of memory, keep old char + lc = c; + nlen = olen; } } - (void)utf_char2bytes(lc, STR_PTR(i)); } - } - // skip to next multi-byte char - i += (*mb_ptr2len)(STR_PTR(i)); - } else { - if (buf == NULL) { - GA_CHAR(i) = (char_u)TOLOWER_LOC(GA_CHAR(i)); - } else { - buf[i] = (char_u)TOLOWER_LOC(buf[i]); + if (olen != nlen) { + if (buf == NULL) { + STRMOVE(GA_PTR(i) + nlen, GA_PTR(i) + olen); + ga.ga_len += nlen - olen; + } else { + STRMOVE(buf + i + nlen, buf + i + olen); + len += nlen - olen; + } + } } - ++i; + (void)utf_char2bytes(lc, STR_PTR(i)); } + + // skip to next multi-byte char + i += (*mb_ptr2len)(STR_PTR(i)); } + if (buf == NULL) { return (char_u *)ga.ga_data; } @@ -545,7 +505,7 @@ char_u* transchar(int c) /// @return pointer to translated character in transchar_buf. char_u* transchar_byte(int c) { - if (enc_utf8 && (c >= 0x80)) { + if (c >= 0x80) { transchar_nonprint(transchar_buf, c); return transchar_buf; } @@ -578,7 +538,7 @@ void transchar_nonprint(char_u *buf, int c) buf[1] = (char_u)(c ^ 0x40); buf[2] = NUL; - } else if (enc_utf8 && (c >= 0x80)) { + } else if (c >= 0x80) { transchar_hex(buf, c); } else if ((c >= ' ' + 0x80) && (c <= '~' + 0x80)) { // 0xa0 - 0xfe @@ -632,15 +592,15 @@ static unsigned nr2hex(unsigned c) /// Caller must make sure 0 <= b <= 255. /// For multi-byte mode "b" must be the first byte of a character. /// A TAB is counted as two cells: "^I". -/// For UTF-8 mode this will return 0 for bytes >= 0x80, because the number of -/// cells depends on further bytes. +/// This will return 0 for bytes >= 0x80, because the number of +/// cells depends on further bytes in UTF-8. /// /// @param b /// /// @reeturn Number of display cells. int byte2cells(int b) { - if (enc_utf8 && (b >= 0x80)) { + if (b >= 0x80) { return 0; } return g_chartab[b] & CT_CELL_MASK; @@ -662,18 +622,7 @@ int char2cells(int c) if (c >= 0x80) { // UTF-8: above 0x80 need to check the value - if (enc_utf8) { - return utf_char2cells(c); - } - - // DBCS: double-byte means double-width, except for euc-jp with first - // byte 0x8e - if ((enc_dbcs != 0) && (c >= 0x100)) { - if ((enc_dbcs == DBCS_JPNU) && (((unsigned)c >> 8) == 0x8e)) { - return 1; - } - return 2; - } + return utf_char2cells(c); } return g_chartab[c & 0xff] & CT_CELL_MASK; } @@ -687,7 +636,7 @@ int char2cells(int c) int ptr2cells(char_u *p) { // For UTF-8 we need to look at more bytes if the first byte is >= 0x80. - if (enc_utf8 && (*p >= 0x80)) { + if (*p >= 0x80) { return utf_ptr2cells(p); } @@ -722,14 +671,10 @@ int vim_strnsize(char_u *s, int len) assert(s != NULL); int size = 0; while (*s != NUL && --len >= 0) { - if (has_mbyte) { - int l = (*mb_ptr2len)(s); - size += ptr2cells(s); - s += l; - len -= l - 1; - } else { - size += byte2cells(*s++); - } + int l = (*mb_ptr2len)(s); + size += ptr2cells(s); + s += l; + len -= l - 1; } return size; } @@ -840,13 +785,7 @@ bool vim_iswordc_buf(int c, buf_T *buf) FUNC_ATTR_PURE FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_NONNULL_ARG(2) { if (c >= 0x100) { - if (enc_dbcs != 0) { - return dbcs_class((unsigned)c >> 8, (unsigned)(c & 0xff)) >= 2; - } - - if (enc_utf8) { - return utf_class(c) >= 2; - } + return utf_class(c) >= 2; } return c > 0 && c < 0x100 && GET_CHARTAB(buf, c) != 0; } @@ -859,7 +798,7 @@ bool vim_iswordc_buf(int c, buf_T *buf) bool vim_iswordp(char_u *p) FUNC_ATTR_PURE FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_NONNULL_ALL { - if (has_mbyte && (MB_BYTE2LEN(*p) > 1)) { + if (MB_BYTE2LEN(*p) > 1) { return mb_get_class(p) >= 2; } return GET_CHARTAB(curbuf, *p) != 0; @@ -875,7 +814,7 @@ bool vim_iswordp(char_u *p) bool vim_iswordp_buf(char_u *p, buf_T *buf) FUNC_ATTR_PURE FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_NONNULL_ALL { - if (has_mbyte && (MB_BYTE2LEN(*p) > 1)) { + if (MB_BYTE2LEN(*p) > 1) { return mb_get_class(p) >= 2; } return GET_CHARTAB(buf, *p) != 0; @@ -913,7 +852,7 @@ bool vim_isfilec_or_wc(int c) bool vim_isprintc(int c) FUNC_ATTR_PURE FUNC_ATTR_WARN_UNUSED_RESULT { - if (enc_utf8 && (c >= 0x100)) { + if (c >= 0x100) { return utf_printable(c); } return c >= 0x100 || (c > 0 && (g_chartab[c] & CT_PRINT_CHAR)); @@ -928,14 +867,10 @@ bool vim_isprintc(int c) bool vim_isprintc_strict(int c) FUNC_ATTR_PURE FUNC_ATTR_WARN_UNUSED_RESULT { - if ((enc_dbcs != 0) && (c < 0x100) && (MB_BYTE2LEN(c) > 1)) { - return false; - } - - if (enc_utf8 && (c >= 0x100)) { + if (c >= 0x100) { return utf_printable(c); } - return c >= 0x100 || (c > 0 && (g_chartab[c] & CT_PRINT_CHAR)); + return c > 0 && (g_chartab[c] & CT_PRINT_CHAR); } /// like chartabsize(), but also check for line breaks on the screen @@ -1052,8 +987,7 @@ int win_lbr_chartabsize(win_T *wp, char_u *line, char_u *s, colnr_T col, int *he break; } } - } else if (has_mbyte - && (size == 2) + } else if ((size == 2) && (MB_BYTE2LEN(*s) > 1) && wp->w_p_wrap && in_win_border(wp, col)) { @@ -1251,28 +1185,24 @@ void getvcol(win_T *wp, pos_T *pos, colnr_T *start, colnr_T *cursor, if (c == TAB) { incr = ts - (vcol % ts); } else { - if (has_mbyte) { - // For utf-8, if the byte is >= 0x80, need to look at - // further bytes to find the cell width. - if (enc_utf8 && (c >= 0x80)) { - incr = utf_ptr2cells(ptr); - } else { - incr = g_chartab[c] & CT_CELL_MASK; - } - - // If a double-cell char doesn't fit at the end of a line - // it wraps to the next line, it's like this char is three - // cells wide. - if ((incr == 2) - && wp->w_p_wrap - && (MB_BYTE2LEN(*ptr) > 1) - && in_win_border(wp, vcol)) { - ++incr; - head = 1; - } + // For utf-8, if the byte is >= 0x80, need to look at + // further bytes to find the cell width. + if (c >= 0x80) { + incr = utf_ptr2cells(ptr); } else { incr = g_chartab[c] & CT_CELL_MASK; } + + // If a double-cell char doesn't fit at the end of a line + // it wraps to the next line, it's like this char is three + // cells wide. + if ((incr == 2) + && wp->w_p_wrap + && (MB_BYTE2LEN(*ptr) > 1) + && in_win_border(wp, vcol)) { + incr++; + head = 1; + } } if ((posptr != NULL) && (ptr >= posptr)) { @@ -1557,36 +1487,6 @@ char_u* skiptohex(char_u *q) // islower()/toupper() etc. do not work properly: they crash when used with // invalid values or can't handle latin1 when the locale is C. // Speed is most important here. -#define LATIN1LOWER 'l' -#define LATIN1UPPER 'U' - -static char_u latin1flags[257] = - " " - " UUUUUUUUUUUUUUUUUUUUUUUUUU llllllllllllllllllllllllll " - " " - "UUUUUUUUUUUUUUUUUUUUUUU UUUUUUUllllllllllllllllllllllll llllllll"; -static char_u latin1upper[257] = - " !\"#$%&'()*+,-./0123456789:;<=>" - "?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~" - "\x7f\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e" - "\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e" - "\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae" - "\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe" - "\xbf\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce" - "\xcf\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde" - "\xdf\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce" - "\xcf\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xf7\xd8\xd9\xda\xdb\xdc\xdd\xde\xff"; -static char_u latin1lower[257] = - " !\"#$%&'()*+,-./0123456789:;<=>" - "?@abcdefghijklmnopqrstuvwxyz[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~" - "\x7f\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e" - "\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e" - "\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae" - "\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe" - "\xbf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee" - "\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xd7\xf8\xf9\xfa\xfb\xfc\xfd\xfe" - "\xdf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee" - "\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"; /// Check that the character is lower-case /// @@ -1599,22 +1499,7 @@ bool vim_islower(int c) } if (c >= 0x80) { - if (enc_utf8) { - return utf_islower(c); - } - - if (c >= 0x100) { - if (has_mbyte) { - return iswlower((wint_t)c); - } - - // islower() can't handle these chars and may crash - return false; - } - - if (enc_latin1like) { - return (latin1flags[c] & LATIN1LOWER) == LATIN1LOWER; - } + return utf_islower(c); } return islower(c); } @@ -1630,22 +1515,7 @@ bool vim_isupper(int c) } if (c >= 0x80) { - if (enc_utf8) { return utf_isupper(c); - } - - if (c >= 0x100) { - if (has_mbyte) { - return iswupper((wint_t)c); - } - - // isupper() can't handle these chars and may crash - return false; - } - - if (enc_latin1like) { - return (latin1flags[c] & LATIN1UPPER) == LATIN1UPPER; - } } return isupper(c); } @@ -1657,22 +1527,7 @@ int vim_toupper(int c) } if (c >= 0x80) { - if (enc_utf8) { - return utf_toupper(c); - } - - if (c >= 0x100) { - if (has_mbyte) { - return (int)towupper((wint_t)c); - } - - // toupper() can't handle these chars and may crash - return c; - } - - if (enc_latin1like) { - return latin1upper[c]; - } + return utf_toupper(c); } return TOUPPER_LOC(c); } @@ -1684,22 +1539,7 @@ int vim_tolower(int c) } if (c >= 0x80) { - if (enc_utf8) { - return utf_tolower(c); - } - - if (c >= 0x100) { - if (has_mbyte) { - return (int)towlower((wint_t)c); - } - - // tolower() can't handle these chars and may crash - return c; - } - - if (enc_latin1like) { - return latin1lower[c]; - } + return utf_tolower(c); } return TOLOWER_LOC(c); } diff --git a/src/nvim/edit.c b/src/nvim/edit.c index 24744f1437..164194f5a7 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -474,7 +474,9 @@ static int insert_check(VimState *state) InsertState *s = (InsertState *)state; // If typed something may trigger CursorHoldI again. - if (s->c != K_EVENT) { + if (s->c != K_EVENT + // but not in CTRL-X mode, a script can't restore the state + && ctrl_x_mode == 0) { did_cursorhold = false; } @@ -669,7 +671,7 @@ static int insert_execute(VimState *state, int key) && (s->c == CAR || s->c == K_KENTER || s->c == NL))) && stop_arrow() == OK) { ins_compl_delete(); - ins_compl_insert(); + ins_compl_insert(false); } } } @@ -2322,7 +2324,6 @@ static int ins_compl_make_cyclic(void) return count; } - // Set variables that store noselect and noinsert behavior from the // 'completeopt' value. void completeopt_was_set(void) @@ -2775,7 +2776,7 @@ static void ins_compl_files(int count, char_u **files, int thesaurus, int flags, break; } line_breakcheck(); - ins_compl_check_keys(50); + ins_compl_check_keys(50, false); } fclose(fp); } @@ -3907,7 +3908,7 @@ static int ins_compl_get_exp(pos_T *ini) break; /* Fill the popup menu as soon as possible. */ if (type != -1) - ins_compl_check_keys(0); + ins_compl_check_keys(0, false); if ((l_ctrl_x_mode != 0 && !CTRL_X_MODE_LINE_OR_EVAL(l_ctrl_x_mode)) || compl_interrupted) { @@ -3969,8 +3970,9 @@ static void ins_compl_delete(void) set_vim_var_dict(VV_COMPLETED_ITEM, dict_alloc()); } -/* Insert the new text being completed. */ -static void ins_compl_insert(void) +// Insert the new text being completed. +// "in_compl_func" is TRUE when called from complete_check(). +static void ins_compl_insert(int in_compl_func) { ins_bytes(compl_shown_match->cp_str + ins_compl_len()); if (compl_shown_match->cp_flags & ORIGINAL_TEXT) @@ -3992,7 +3994,9 @@ static void ins_compl_insert(void) dict_add_nr_str(dict, "info", 0L, EMPTY_IF_NULL(compl_shown_match->cp_text[CPT_INFO])); set_vim_var_dict(VV_COMPLETED_ITEM, dict); - compl_curr_match = compl_shown_match; + if (!in_compl_func) { + compl_curr_match = compl_shown_match; + } } /* @@ -4014,9 +4018,10 @@ static void ins_compl_insert(void) static int ins_compl_next ( int allow_get_expansion, - int count, /* repeat completion this many times; should - be at least 1 */ - int insert_match /* Insert the newly selected match */ + int count, // Repeat completion this many times; should + // be at least 1 + int insert_match, // Insert the newly selected match + int in_compl_func // Called from complete_check() ) { int num_matches = -1; @@ -4146,7 +4151,7 @@ ins_compl_next ( compl_used_match = FALSE; } else if (insert_match) { if (!compl_get_longest || compl_used_match) { - ins_compl_insert(); + ins_compl_insert(in_compl_func); } else { ins_bytes(compl_leader + ins_compl_len()); } @@ -4196,14 +4201,14 @@ ins_compl_next ( return num_matches; } -/* - * Call this while finding completions, to check whether the user has hit a key - * that should change the currently displayed completion, or exit completion - * mode. Also, when compl_pending is not zero, show a completion as soon as - * possible. -- webb - * "frequency" specifies out of how many calls we actually check. - */ -void ins_compl_check_keys(int frequency) +// Call this while finding completions, to check whether the user has hit a key +// that should change the currently displayed completion, or exit completion +// mode. Also, when compl_pending is not zero, show a completion as soon as +// possible. -- webb +// "frequency" specifies out of how many calls we actually check. +// "in_compl_func" is TRUE when called from complete_check(), don't set +// compl_curr_match. +void ins_compl_check_keys(int frequency, int in_compl_func) { static int count = 0; @@ -4226,8 +4231,8 @@ void ins_compl_check_keys(int frequency) if (vim_is_ctrl_x_key(c) && c != Ctrl_X && c != Ctrl_R) { c = safe_vgetc(); /* Eat the character */ compl_shows_dir = ins_compl_key2dir(c); - (void)ins_compl_next(FALSE, ins_compl_key2count(c), - c != K_UP && c != K_DOWN); + (void)ins_compl_next(false, ins_compl_key2count(c), + c != K_UP && c != K_DOWN, in_compl_func); } else { /* Need to get the character to have KeyTyped set. We'll put it * back with vungetc() below. But skip K_IGNORE. */ @@ -4246,7 +4251,7 @@ void ins_compl_check_keys(int frequency) int todo = compl_pending > 0 ? compl_pending : -compl_pending; compl_pending = 0; - (void)ins_compl_next(FALSE, todo, TRUE); + (void)ins_compl_next(false, todo, true, in_compl_func); } } @@ -4673,7 +4678,7 @@ static int ins_complete(int c, bool enable_pum) * Find next match (and following matches). */ save_w_wrow = curwin->w_wrow; - n = ins_compl_next(true, ins_compl_key2count(c), insert_match); + n = ins_compl_next(true, ins_compl_key2count(c), insert_match, false); /* may undisplay the popup menu */ ins_compl_upd_pum(); diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 417a38e906..71d60d6b45 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -354,6 +354,7 @@ static struct vimvar { VV(VV_FCS_CHOICE, "fcs_choice", VAR_STRING, 0), VV(VV_BEVAL_BUFNR, "beval_bufnr", VAR_NUMBER, VV_RO), VV(VV_BEVAL_WINNR, "beval_winnr", VAR_NUMBER, VV_RO), + VV(VV_BEVAL_WINID, "beval_winid", VAR_NUMBER, VV_RO), VV(VV_BEVAL_LNUM, "beval_lnum", VAR_NUMBER, VV_RO), VV(VV_BEVAL_COL, "beval_col", VAR_NUMBER, VV_RO), VV(VV_BEVAL_TEXT, "beval_text", VAR_STRING, VV_RO), @@ -363,6 +364,7 @@ static struct vimvar { VV(VV_SWAPCOMMAND, "swapcommand", VAR_STRING, VV_RO), VV(VV_CHAR, "char", VAR_STRING, 0), VV(VV_MOUSE_WIN, "mouse_win", VAR_NUMBER, 0), + VV(VV_MOUSE_WINID, "mouse_winid", VAR_NUMBER, 0), VV(VV_MOUSE_LNUM, "mouse_lnum", VAR_NUMBER, 0), VV(VV_MOUSE_COL, "mouse_col", VAR_NUMBER, 0), VV(VV_OP, "operator", VAR_STRING, VV_RO), @@ -384,6 +386,15 @@ static struct vimvar { VV(VV_NULL, "null", VAR_SPECIAL, VV_RO), VV(VV__NULL_LIST, "_null_list", VAR_LIST, VV_RO), VV(VV__NULL_DICT, "_null_dict", VAR_DICT, VV_RO), + VV(VV_VIM_DID_ENTER, "vim_did_enter", VAR_NUMBER, VV_RO), + VV(VV_TYPE_NUMBER, "t_number", VAR_NUMBER, VV_RO), + VV(VV_TYPE_STRING, "t_string", VAR_NUMBER, VV_RO), + VV(VV_TYPE_FUNC, "t_func", VAR_NUMBER, VV_RO), + VV(VV_TYPE_LIST, "t_list", VAR_NUMBER, VV_RO), + VV(VV_TYPE_DICT, "t_dict", VAR_NUMBER, VV_RO), + VV(VV_TYPE_FLOAT, "t_float", VAR_NUMBER, VV_RO), + VV(VV_TYPE_BOOL, "t_bool", VAR_NUMBER, VV_RO), + VV(VV_EXITING, "exiting", VAR_NUMBER, VV_RO), }; #undef VV @@ -397,7 +408,7 @@ static struct vimvar { #define vv_dict vv_di.di_tv.vval.v_dict #define vv_tv vv_di.di_tv -static dictitem_T vimvars_var; /* variable used for v: */ +static dictitem_T vimvars_var; // variable used for v: #define vimvarht vimvardict.dv_hashtab typedef struct { @@ -559,10 +570,19 @@ void eval_init(void) set_vim_var_list(VV_ERRORS, list_alloc()); set_vim_var_nr(VV_SEARCHFORWARD, 1L); set_vim_var_nr(VV_HLSEARCH, 1L); + set_vim_var_nr(VV_COUNT1, 1); + set_vim_var_nr(VV_TYPE_NUMBER, VAR_TYPE_NUMBER); + set_vim_var_nr(VV_TYPE_STRING, VAR_TYPE_STRING); + set_vim_var_nr(VV_TYPE_FUNC, VAR_TYPE_FUNC); + set_vim_var_nr(VV_TYPE_LIST, VAR_TYPE_LIST); + set_vim_var_nr(VV_TYPE_DICT, VAR_TYPE_DICT); + set_vim_var_nr(VV_TYPE_FLOAT, VAR_TYPE_FLOAT); + set_vim_var_nr(VV_TYPE_BOOL, VAR_TYPE_BOOL); set_vim_var_special(VV_FALSE, kSpecialVarFalse); set_vim_var_special(VV_TRUE, kSpecialVarTrue); set_vim_var_special(VV_NULL, kSpecialVarNull); + set_vim_var_special(VV_EXITING, kSpecialVarNull); set_reg_var(0); // default for v:register is not 0 but '"' } @@ -2142,11 +2162,9 @@ get_lval ( if (lp->ll_tv->v_type == VAR_DICT) { if (len == -1) { - /* "[key]": get key from "var1" */ - key = get_tv_string(&var1); /* is number or string */ - if (*key == NUL) { - if (!quiet) - EMSG(_(e_emptykey)); + // "[key]": get key from "var1" + key = get_tv_string_chk(&var1); // is number or string + if (key == NULL) { clear_tv(&var1); return NULL; } @@ -4597,10 +4615,8 @@ eval_index ( dictitem_T *item; if (len == -1) { - key = get_tv_string(&var1); - if (*key == NUL) { - if (verbose) - EMSG(_(e_emptykey)); + key = get_tv_string_chk(&var1); + if (key == NULL) { clear_tv(&var1); return FAIL; } @@ -6584,10 +6600,8 @@ static int get_dict_tv(char_u **arg, typval_T *rettv, int evaluate) } if (evaluate) { key = get_tv_string_buf_chk(&tvkey, buf); - if (key == NULL || *key == NUL) { - /* "key" is NULL when get_tv_string_buf_chk() gave an errmsg */ - if (key != NULL) - EMSG(_(e_emptykey)); + if (key == NULL) { + // "key" is NULL when get_tv_string_buf_chk() gave an errmsg clear_tv(&tvkey); goto failret; } @@ -8009,7 +8023,7 @@ static void f_complete_check(typval_T *argvars, typval_T *rettv, FunPtr fptr) int saved = RedrawingDisabled; RedrawingDisabled = 0; - ins_compl_check_keys(0); + ins_compl_check_keys(0, true); rettv->vval.v_number = compl_interrupted; RedrawingDisabled = saved; } @@ -9565,6 +9579,7 @@ static void f_getchar(typval_T *argvars, typval_T *rettv, FunPtr fptr) --allow_keys; vimvars[VV_MOUSE_WIN].vv_nr = 0; + vimvars[VV_MOUSE_WINID].vv_nr = 0; vimvars[VV_MOUSE_LNUM].vv_nr = 0; vimvars[VV_MOUSE_COL].vv_nr = 0; @@ -9607,6 +9622,7 @@ static void f_getchar(typval_T *argvars, typval_T *rettv, FunPtr fptr) for (wp = firstwin; wp != win; wp = wp->w_next) ++winnr; vimvars[VV_MOUSE_WIN].vv_nr = winnr; + vimvars[VV_MOUSE_WINID].vv_nr = wp->handle; vimvars[VV_MOUSE_LNUM].vv_nr = lnum; vimvars[VV_MOUSE_COL].vv_nr = col + 1; } @@ -10653,7 +10669,7 @@ static void f_has(typval_T *argvars, typval_T *rettv, FunPtr fptr) if (!n) { if (STRNICMP(name, "patch", 5) == 0) { if (name[5] == '-' - && strlen(name) > 11 + && strlen(name) >= 11 && ascii_isdigit(name[6]) && ascii_isdigit(name[8]) && ascii_isdigit(name[10])) { @@ -10769,7 +10785,7 @@ static void f_haslocaldir(typval_T *argvars, typval_T *rettv, FunPtr fptr) if (scope_number[kCdScopeTab] > 0) { tp = find_tabpage(scope_number[kCdScopeTab]); if (!tp) { - EMSG(_("5000: Cannot find tab number.")); + EMSG(_("E5000: Cannot find tab number.")); return; } } @@ -11454,6 +11470,9 @@ static void f_jobclose(typval_T *argvars, typval_T *rettv, FunPtr fptr) process_close_err(proc); } else { process_close_streams(proc); + if (proc->type == kProcessTypePty) { + pty_process_close_master(&data->proc.pty); + } } } } @@ -11562,7 +11581,7 @@ static void f_jobresize(typval_T *argvars, typval_T *rettv, FunPtr fptr) rettv->vval.v_number = 1; } -static char **tv_to_argv(typval_T *cmd_tv, char **cmd) +static char **tv_to_argv(typval_T *cmd_tv, char **cmd, bool *executable) { if (cmd_tv->v_type == VAR_STRING) { char *cmd_str = (char *)get_tv_string(cmd_tv); @@ -11580,7 +11599,7 @@ static char **tv_to_argv(typval_T *cmd_tv, char **cmd) list_T *argl = cmd_tv->vval.v_list; int argc = argl->lv_len; if (!argc) { - EMSG(_("Argument vector must have at least one item")); + EMSG(_(e_invarg)); // List must have at least one item. return NULL; } @@ -11588,9 +11607,8 @@ static char **tv_to_argv(typval_T *cmd_tv, char **cmd) const char_u *exe = get_tv_string_chk(&argl->lv_first->li_tv); if (!exe || !os_can_exe(exe, NULL, true)) { - // String is not executable - if (exe) { - EMSG2(e_jobexe, exe); + if (exe && executable) { + *executable = false; } return NULL; } @@ -11598,7 +11616,7 @@ static char **tv_to_argv(typval_T *cmd_tv, char **cmd) if (cmd) { *cmd = (char *)exe; } - + // Build the argument vector int i = 0; char **argv = xcalloc(argc + 1, sizeof(char *)); @@ -11625,8 +11643,10 @@ static void f_jobstart(typval_T *argvars, typval_T *rettv, FunPtr fptr) return; } - char **argv = tv_to_argv(&argvars[0], NULL); + bool executable = true; + char **argv = tv_to_argv(&argvars[0], NULL, &executable); if (!argv) { + rettv->vval.v_number = executable ? 0 : -1; return; // Did error message in tv_to_argv. } @@ -12192,9 +12212,16 @@ static void find_some_match(typval_T *argvars, typval_T *rettv, int type) p_cpo = (char_u *)""; rettv->vval.v_number = -1; - if (type == 3) { - /* return empty list when there are no matches */ + if (type == 3 || type == 4) { + // type 3: return empty list when there are no matches. + // type 4: return ["", -1, -1, -1] rettv_list_alloc(rettv); + if (type == 4) { + list_append_string(rettv->vval.v_list, (char_u *)"", 0); + list_append_number(rettv->vval.v_list, (varnumber_T)-1); + list_append_number(rettv->vval.v_list, (varnumber_T)-1); + list_append_number(rettv->vval.v_list, (varnumber_T)-1); + } } else if (type == 2) { rettv->v_type = VAR_STRING; rettv->vval.v_string = NULL; @@ -12257,7 +12284,7 @@ static void find_some_match(typval_T *argvars, typval_T *rettv, int type) break; } xfree(tofree); - tofree = str = (char_u *) encode_tv2echo(&li->li_tv, NULL); + tofree = expr = str = (char_u *)encode_tv2echo(&li->li_tv, NULL); if (str == NULL) { break; } @@ -12285,7 +12312,19 @@ static void find_some_match(typval_T *argvars, typval_T *rettv, int type) } if (match) { - if (type == 3) { + if (type == 4) { + listitem_T *li1 = rettv->vval.v_list->lv_first; + listitem_T *li2 = li1->li_next; + listitem_T *li3 = li2->li_next; + listitem_T *li4 = li3->li_next; + int rd = (int)(regmatch.endp[0] - regmatch.startp[0]); + li1->li_tv.vval.v_string = vim_strnsave(regmatch.startp[0], rd); + li3->li_tv.vval.v_number = (varnumber_T)(regmatch.startp[0] - expr); + li4->li_tv.vval.v_number = (varnumber_T)(regmatch.endp[0] - expr); + if (l != NULL) { + li2->li_tv.vval.v_number = (varnumber_T)idx; + } + } else if (type == 3) { int i; /* return list with matched string and submatches */ @@ -12320,6 +12359,11 @@ static void find_some_match(typval_T *argvars, typval_T *rettv, int type) vim_regfree(regmatch.regprog); } + if (type == 4 && l == NULL) { + // matchstrpos() without a list: drop the second item + listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first->li_next); + } + theend: xfree(tofree); p_cpo = save_cpo; @@ -12492,6 +12536,11 @@ static void f_matchstr(typval_T *argvars, typval_T *rettv, FunPtr fptr) find_some_match(argvars, rettv, 2); } +/// "matchstrpos()" function +static void f_matchstrpos(typval_T *argvars, typval_T *rettv, FunPtr fptr) +{ + find_some_match(argvars, rettv, 4); +} static void max_min(typval_T *argvars, typval_T *rettv, int domax) { @@ -15612,6 +15661,39 @@ static void f_strftime(typval_T *argvars, typval_T *rettv, FunPtr fptr) } } +// "strgetchar()" function +static void f_strgetchar(typval_T *argvars, typval_T *rettv, FunPtr fptr) +{ + char_u *str; + int len; + int error = false; + int charidx; + + rettv->vval.v_number = -1; + str = get_tv_string_chk(&argvars[0]); + if (str == NULL) { + return; + } + len = (int)STRLEN(str); + charidx = get_tv_number_chk(&argvars[1], &error); + if (error) { + return; + } + + { + int byteidx = 0; + + while (charidx >= 0 && byteidx < len) { + if (charidx == 0) { + rettv->vval.v_number = mb_ptr2char(str + byteidx); + break; + } + charidx--; + byteidx += mb_cptr2len(str + byteidx); + } + } +} + /* * "stridx()" function */ @@ -15712,6 +15794,64 @@ static void f_strwidth(typval_T *argvars, typval_T *rettv, FunPtr fptr) rettv->vval.v_number = (varnumber_T) mb_string2cells(s); } +// "strcharpart()" function +static void f_strcharpart(typval_T *argvars, typval_T *rettv, FunPtr fptr) { + char_u *p; + int nchar; + int nbyte = 0; + int charlen; + int len = 0; + int slen; + int error = false; + + p = get_tv_string(&argvars[0]); + slen = (int)STRLEN(p); + + nchar = get_tv_number_chk(&argvars[1], &error); + if (!error) { + if (nchar > 0) { + while (nchar > 0 && nbyte < slen) { + nbyte += mb_cptr2len(p + nbyte); + nchar--; + } + } else { + nbyte = nchar; + } + } + if (argvars[2].v_type != VAR_UNKNOWN) { + charlen = get_tv_number(&argvars[2]); + while (charlen > 0 && nbyte + len < slen) { + int off = nbyte + len; + + if (off < 0) { + len += 1; + } else { + len += mb_cptr2len(p + off); + } + charlen--; + } + } else { + len = slen - nbyte; // default: all bytes that are available. + } + + // Only return the overlap between the specified part and the actual + // string. + if (nbyte < 0) { + len += nbyte; + nbyte = 0; + } else if (nbyte > slen) { + nbyte = slen; + } + if (len < 0) { + len = 0; + } else if (nbyte + len > slen) { + len = slen - nbyte; + } + + rettv->v_type = VAR_STRING; + rettv->vval.v_string = vim_strnsave(p + nbyte, len); +} + /* * "strpart()" function */ @@ -16096,7 +16236,7 @@ static void get_system_output_as_rettv(typval_T *argvars, typval_T *rettv, } // get shell command to execute - char **argv = tv_to_argv(&argvars[0], NULL); + char **argv = tv_to_argv(&argvars[0], NULL, NULL); if (!argv) { xfree(input); return; // Already did emsg. @@ -16329,8 +16469,10 @@ static void f_termopen(typval_T *argvars, typval_T *rettv, FunPtr fptr) } char *cmd; - char **argv = tv_to_argv(&argvars[0], &cmd); + bool executable = true; + char **argv = tv_to_argv(&argvars[0], &cmd, &executable); if (!argv) { + rettv->vval.v_number = executable ? 0 : -1; return; // Did error message in tv_to_argv. } @@ -16701,17 +16843,17 @@ static void f_type(typval_T *argvars, typval_T *rettv, FunPtr fptr) int n = -1; switch (argvars[0].v_type) { - case VAR_NUMBER: n = 0; break; - case VAR_STRING: n = 1; break; - case VAR_FUNC: n = 2; break; - case VAR_LIST: n = 3; break; - case VAR_DICT: n = 4; break; - case VAR_FLOAT: n = 5; break; + case VAR_NUMBER: n = VAR_TYPE_NUMBER; break; + case VAR_STRING: n = VAR_TYPE_STRING; break; + case VAR_FUNC: n = VAR_TYPE_FUNC; break; + case VAR_LIST: n = VAR_TYPE_LIST; break; + case VAR_DICT: n = VAR_TYPE_DICT; break; + case VAR_FLOAT: n = VAR_TYPE_FLOAT; break; case VAR_SPECIAL: { switch (argvars[0].vval.v_special) { case kSpecialVarTrue: case kSpecialVarFalse: { - n = 6; + n = VAR_TYPE_BOOL; break; } case kSpecialVarNull: { @@ -17655,6 +17797,8 @@ void set_vcount(long count, long count1, int set_prevcount) /// @param[in] val Value to set to. void set_vim_var_nr(const VimVarIndex idx, const varnumber_T val) { + clear_tv(&vimvars[idx].vv_tv); + vimvars[idx].vv_type = VAR_NUMBER; vimvars[idx].vv_nr = val; } @@ -17664,6 +17808,8 @@ void set_vim_var_nr(const VimVarIndex idx, const varnumber_T val) /// @param[in] val Value to set to. void set_vim_var_special(const VimVarIndex idx, const SpecialVarValue val) { + clear_tv(&vimvars[idx].vv_tv); + vimvars[idx].vv_type = VAR_SPECIAL; vimvars[idx].vv_special = val; } diff --git a/src/nvim/eval.h b/src/nvim/eval.h index d6800afd52..630e309442 100644 --- a/src/nvim/eval.h +++ b/src/nvim/eval.h @@ -94,6 +94,7 @@ typedef enum { VV_FCS_CHOICE, VV_BEVAL_BUFNR, VV_BEVAL_WINNR, + VV_BEVAL_WINID, VV_BEVAL_LNUM, VV_BEVAL_COL, VV_BEVAL_TEXT, @@ -103,6 +104,7 @@ typedef enum { VV_SWAPCOMMAND, VV_CHAR, VV_MOUSE_WIN, + VV_MOUSE_WINID, VV_MOUSE_LNUM, VV_MOUSE_COL, VV_OP, @@ -124,6 +126,15 @@ typedef enum { VV_NULL, VV__NULL_LIST, // List with NULL value. For test purposes only. VV__NULL_DICT, // Dictionary with NULL value. For test purposes only. + VV_VIM_DID_ENTER, + VV_TYPE_NUMBER, + VV_TYPE_STRING, + VV_TYPE_FUNC, + VV_TYPE_LIST, + VV_TYPE_DICT, + VV_TYPE_FLOAT, + VV_TYPE_BOOL, + VV_EXITING, } VimVarIndex; /// All recognized msgpack types diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index eaaee81533..61a5438d8c 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -198,6 +198,7 @@ return { matchend={args={2, 4}}, matchlist={args={2, 4}}, matchstr={args={2, 4}}, + matchstrpos={args={2,4}}, max={args=1}, min={args=1}, mkdir={args={1, 3}}, @@ -268,9 +269,11 @@ return { sqrt={args=1, func="float_op_wrapper", data="&sqrt"}, str2float={args=1}, str2nr={args={1, 2}}, + strcharpart={args={2, 3}}, strchars={args={1,2}}, strdisplaywidth={args={1, 2}}, strftime={args={1, 2}}, + strgetchar={args={2, 2}}, stridx={args={2, 3}}, string={args=1}, strlen={args=1}, diff --git a/src/nvim/eval/encode.c b/src/nvim/eval/encode.c index c38d021fc7..869eae74a3 100644 --- a/src/nvim/eval/encode.c +++ b/src/nvim/eval/encode.c @@ -842,7 +842,7 @@ char *encode_tv2json(typval_T *tv, size_t *len) msgpack_pack_double(packer, (double) (flt)) #define TYPVAL_ENCODE_CONV_FUNC(fun) \ - return conv_error(_("E951: Error while dumping %s, %s: " \ + return conv_error(_("E5004: Error while dumping %s, %s: " \ "attempt to dump function reference"), \ mpstack, objname) @@ -886,7 +886,7 @@ char *encode_tv2json(typval_T *tv, size_t *len) #define TYPVAL_ENCODE_CONV_LIST_BETWEEN_ITEMS() #define TYPVAL_ENCODE_CONV_RECURSE(val, conv_type) \ - return conv_error(_("E952: Unable to dump %s: " \ + return conv_error(_("E5005: Unable to dump %s: " \ "container references itself in %s"), \ mpstack, objname) diff --git a/src/nvim/event/loop.c b/src/nvim/event/loop.c index d562ac1ed3..0e1775d01b 100644 --- a/src/nvim/event/loop.c +++ b/src/nvim/event/loop.c @@ -92,6 +92,22 @@ void loop_close(Loop *loop, bool wait) kl_destroy(WatcherPtr, loop->children); } +void loop_purge(Loop *loop) +{ + uv_mutex_lock(&loop->mutex); + multiqueue_purge_events(loop->thread_events); + multiqueue_purge_events(loop->fast_events); + uv_mutex_unlock(&loop->mutex); +} + +size_t loop_size(Loop *loop) +{ + uv_mutex_lock(&loop->mutex); + size_t rv = multiqueue_size(loop->thread_events); + uv_mutex_unlock(&loop->mutex); + return rv; +} + static void async_cb(uv_async_t *handle) { Loop *l = handle->loop->data; diff --git a/src/nvim/event/multiqueue.c b/src/nvim/event/multiqueue.c index 7efdfc4cad..79b4dd9458 100644 --- a/src/nvim/event/multiqueue.c +++ b/src/nvim/event/multiqueue.c @@ -1,6 +1,7 @@ -// Multi-level queue for selective async event processing. Multiqueue supports -// a parent-child relationship with the following properties: +// Multi-level queue for selective async event processing. +// Not threadsafe; access must be synchronized externally. // +// Multiqueue supports a parent-child relationship with these properties: // - pushing a node to a child queue will push a corresponding link node to the // parent queue // - removing a link node from a parent queue will remove the next node @@ -14,8 +15,7 @@ // +----------------+ // | Main loop | // +----------------+ -// ^ -// | +// // +----------------+ // +-------------->| Event loop |<------------+ // | +--+-------------+ | @@ -60,7 +60,7 @@ struct multiqueue_item { MultiQueue *queue; struct { Event event; - MultiQueueItem *parent; + MultiQueueItem *parent_item; } item; } data; bool link; // true: current item is just a link to a node in a child queue @@ -69,9 +69,10 @@ struct multiqueue_item { struct multiqueue { MultiQueue *parent; - QUEUE headtail; + QUEUE headtail; // circularly-linked put_callback put_cb; void *data; + size_t size; }; #ifdef INCLUDE_GENERATED_DECLARATIONS @@ -88,7 +89,8 @@ MultiQueue *multiqueue_new_parent(put_callback put_cb, void *data) MultiQueue *multiqueue_new_child(MultiQueue *parent) FUNC_ATTR_NONNULL_ALL { - assert(!parent->parent); + assert(!parent->parent); // parent cannot have a parent, more like a "root" + parent->size++; return multiqueue_new(parent, NULL, NULL); } @@ -97,6 +99,7 @@ static MultiQueue *multiqueue_new(MultiQueue *parent, put_callback put_cb, { MultiQueue *rv = xmalloc(sizeof(MultiQueue)); QUEUE_INIT(&rv->headtail); + rv->size = 0; rv->parent = parent; rv->put_cb = put_cb; rv->data = data; @@ -110,8 +113,8 @@ void multiqueue_free(MultiQueue *this) QUEUE *q = QUEUE_HEAD(&this->headtail); MultiQueueItem *item = multiqueue_node_data(q); if (this->parent) { - QUEUE_REMOVE(&item->data.item.parent->node); - xfree(item->data.item.parent); + QUEUE_REMOVE(&item->data.item.parent_item->node); + xfree(item->data.item.parent_item); } QUEUE_REMOVE(q); xfree(item); @@ -145,6 +148,15 @@ void multiqueue_process_events(MultiQueue *this) } } +/// Removes all events without processing them. +void multiqueue_purge_events(MultiQueue *this) +{ + assert(this); + while (!multiqueue_empty(this)) { + (void)multiqueue_remove(this); + } +} + bool multiqueue_empty(MultiQueue *this) { assert(this); @@ -157,6 +169,12 @@ void multiqueue_replace_parent(MultiQueue *this, MultiQueue *new_parent) this->parent = new_parent; } +/// Gets the count of all events currently in the queue. +size_t multiqueue_size(MultiQueue *this) +{ + return this->size; +} + static Event multiqueue_remove(MultiQueue *this) { assert(!multiqueue_empty(this)); @@ -178,12 +196,13 @@ static Event multiqueue_remove(MultiQueue *this) } else { if (this->parent) { // remove the corresponding link node in the parent queue - QUEUE_REMOVE(&item->data.item.parent->node); - xfree(item->data.item.parent); + QUEUE_REMOVE(&item->data.item.parent_item->node); + xfree(item->data.item.parent_item); } rv = item->data.item.event; } + this->size--; xfree(item); return rv; } @@ -196,11 +215,13 @@ static void multiqueue_push(MultiQueue *this, Event event) QUEUE_INSERT_TAIL(&this->headtail, &item->node); if (this->parent) { // push link node to the parent queue - item->data.item.parent = xmalloc(sizeof(MultiQueueItem)); - item->data.item.parent->link = true; - item->data.item.parent->data.queue = this; - QUEUE_INSERT_TAIL(&this->parent->headtail, &item->data.item.parent->node); + item->data.item.parent_item = xmalloc(sizeof(MultiQueueItem)); + item->data.item.parent_item->link = true; + item->data.item.parent_item->data.queue = this; + QUEUE_INSERT_TAIL(&this->parent->headtail, + &item->data.item.parent_item->node); } + this->size++; } static MultiQueueItem *multiqueue_node_data(QUEUE *q) diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 4674460a16..42af5989a1 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -8,7 +8,11 @@ #include <string.h> #include <stdlib.h> #include <inttypes.h> +#include <math.h> +#include "nvim/api/private/defs.h" +#include "nvim/api/buffer.h" +#include "nvim/log.h" #include "nvim/vim.h" #include "nvim/ascii.h" #include "nvim/ex_cmds.h" @@ -83,6 +87,15 @@ typedef struct { SubIgnoreType do_ic; ///< ignore case flag } subflags_T; +/// Lines matched during :substitute. +typedef struct { + linenr_T lnum; + long nmatch; + char_u *line; + kvec_t(colnr_T) cols; ///< columns of in-line matches +} MatchedLine; +typedef kvec_t(MatchedLine) MatchedLineVec; + #ifdef INCLUDE_GENERATED_DECLARATIONS # include "ex_cmds.c.generated.h" #endif @@ -1524,8 +1537,9 @@ int rename_buffer(char_u *new_fname) curbuf->b_flags |= BF_NOTEDITED; if (xfname != NULL && *xfname != NUL) { buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0); - if (buf != NULL && !cmdmod.keepalt) + if (buf != NULL && !cmdmod.keepalt) { curwin->w_alt_fnum = buf->b_fnum; + } } xfree(fname); xfree(sfname); @@ -2019,37 +2033,34 @@ theend: return retval; } -/* - * start editing a new file - * - * fnum: file number; if zero use ffname/sfname - * ffname: the file name - * - full path if sfname used, - * - any file name if sfname is NULL - * - empty string to re-edit with the same file name (but may be - * in a different directory) - * - NULL to start an empty buffer - * sfname: the short file name (or NULL) - * eap: contains the command to be executed after loading the file and - * forced 'ff' and 'fenc' - * newlnum: if > 0: put cursor on this line number (if possible) - * if ECMD_LASTL: use last position in loaded file - * if ECMD_LAST: use last position in all files - * if ECMD_ONE: use first line - * flags: - * ECMD_HIDE: if TRUE don't free the current buffer - * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file - * ECMD_OLDBUF: use existing buffer if it exists - * ECMD_FORCEIT: ! used for Ex command - * ECMD_ADDBUF: don't edit, just add to buffer list - * oldwin: Should be "curwin" when editing a new buffer in the current - * window, NULL when splitting the window first. When not NULL info - * of the previous buffer for "oldwin" is stored. - * - * return FAIL for failure, OK otherwise - */ -int -do_ecmd ( +/// start editing a new file +/// +/// @param fnum file number; if zero use ffname/sfname +/// @param ffname the file name +/// - full path if sfname used, +/// - any file name if sfname is NULL +/// - empty string to re-edit with the same file name (but may +/// be in a different directory) +/// - NULL to start an empty buffer +/// @param sfname the short file name (or NULL) +/// @param eap contains the command to be executed after loading the file +/// and forced 'ff' and 'fenc' +/// @param newlnum if > 0: put cursor on this line number (if possible) +/// ECMD_LASTL: use last position in loaded file +/// ECMD_LAST: use last position in all files +/// ECMD_ONE: use first line +/// @param flags ECMD_HIDE: if TRUE don't free the current buffer +/// ECMD_SET_HELP: set b_help flag of (new) buffer before +/// opening file +/// ECMD_OLDBUF: use existing buffer if it exists +/// ECMD_FORCEIT: ! used for Ex command +/// ECMD_ADDBUF: don't edit, just add to buffer list +/// @param oldwin Should be "curwin" when editing a new buffer in the current +/// window, NULL when splitting the window first. When not NULL +/// info of the previous buffer for "oldwin" is stored. +/// +/// @return FAIL for failure, OK otherwise +int do_ecmd( int fnum, char_u *ffname, char_u *sfname, @@ -2174,9 +2185,9 @@ do_ecmd ( buflist_altfpos(oldwin); } - if (fnum) + if (fnum) { buf = buflist_findnr(fnum); - else { + } else { if (flags & ECMD_ADDBUF) { linenr_T tlnum = 1L; @@ -2189,7 +2200,7 @@ do_ecmd ( goto theend; } buf = buflist_new(ffname, sfname, 0L, - BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED)); + BLN_CURBUF | (flags & ECMD_SET_HELP ? 0 : BLN_LISTED)); // Autocmds may change curwin and curbuf. if (oldwin != NULL) { oldwin = curwin; @@ -2941,10 +2952,11 @@ void sub_set_replacement(SubReplacementString sub) /// @param[in] pat Search pattern /// @param[in] sub Replacement string /// @param[in] cmd Command from :s_flags +/// @param[in] save Save pattern to options, history /// /// @returns true if :substitute can be replaced with a join command -static bool sub_joining_lines(exarg_T *eap, char_u *pat, - char_u *sub, char_u *cmd) +static bool sub_joining_lines(exarg_T *eap, char_u *pat, char_u *sub, + char_u *cmd, bool save) FUNC_ATTR_NONNULL_ARG(1, 3, 4) { // TODO(vim): find a generic solution to make line-joining operations more @@ -2978,10 +2990,12 @@ static bool sub_joining_lines(exarg_T *eap, char_u *pat, ex_may_print(eap); } - if (!cmdmod.keeppatterns) { - save_re_pat(RE_SUBST, pat, p_magic); + if (save) { + if (!cmdmod.keeppatterns) { + save_re_pat(RE_SUBST, pat, p_magic); + } + add_to_history(HIST_SEARCH, pat, true, NUL); } - add_to_history(HIST_SEARCH, pat, TRUE, NUL); return true; } @@ -3087,16 +3101,15 @@ static char_u *sub_parse_flags(char_u *cmd, subflags_T *subflags, return cmd; } -/* do_sub() - * - * Perform a substitution from line eap->line1 to line eap->line2 using the - * command pointed to by eap->arg which should be of the form: - * - * /pattern/substitution/{flags} - * - * The usual escapes are supported as described in the regexp docs. - */ -void do_sub(exarg_T *eap) +/// Perform a substitution from line eap->line1 to line eap->line2 using the +/// command pointed to by eap->arg which should be of the form: +/// +/// /pattern/substitution/{flags} +/// +/// The usual escapes are supported as described in the regexp docs. +/// +/// @return buffer used for 'inccommand' preview +static buf_T *do_sub(exarg_T *eap, proftime_T timeout) { long i = 0; regmmatch_T regmatch; @@ -3112,20 +3125,23 @@ void do_sub(exarg_T *eap) }; char_u *pat = NULL, *sub = NULL; // init for GCC int delimiter; + bool has_second_delim = false; int sublen; int got_quit = false; int got_match = false; int which_pat; char_u *cmd = eap->arg; linenr_T first_line = 0; // first changed line - linenr_T last_line= 0; // below last changed line AFTER the - // change + linenr_T last_line= 0; // below last changed line AFTER the change linenr_T old_line_count = curbuf->b_ml.ml_line_count; - char_u *sub_firstline; // allocated copy of first sub line - bool endcolumn = false; // cursor in last column when done + char_u *sub_firstline; // allocated copy of first sub line + bool endcolumn = false; // cursor in last column when done + MatchedLineVec matched_lines = KV_INITIAL_VALUE; pos_T old_cursor = curwin->w_cursor; int start_nsubs; int save_ma = 0; + int save_b_changed = curbuf->b_changed; + bool preview = (State & CMDPREVIEW); if (!global_busy) { sub_nsubs = 0; @@ -3144,7 +3160,7 @@ void do_sub(exarg_T *eap) /* don't accept alphanumeric for separator */ if (isalpha(*cmd)) { EMSG(_("E146: Regular expressions can't be delimited by letters")); - return; + return NULL; } /* * undocumented vi feature: @@ -3155,21 +3171,26 @@ void do_sub(exarg_T *eap) ++cmd; if (vim_strchr((char_u *)"/?&", *cmd) == NULL) { EMSG(_(e_backslash)); - return; + return NULL; } - if (*cmd != '&') - which_pat = RE_SEARCH; /* use last '/' pattern */ - pat = (char_u *)""; /* empty search pattern */ - delimiter = *cmd++; /* remember delimiter character */ - } else { /* find the end of the regexp */ - if (p_altkeymap && curwin->w_p_rl) + if (*cmd != '&') { + which_pat = RE_SEARCH; // use last '/' pattern + } + pat = (char_u *)""; // empty search pattern + delimiter = *cmd++; // remember delimiter character + has_second_delim = true; + } else { // find the end of the regexp + if (p_altkeymap && curwin->w_p_rl) { lrF_sub(cmd); - which_pat = RE_LAST; /* use last used regexp */ - delimiter = *cmd++; /* remember delimiter character */ - pat = cmd; /* remember start of search pat */ + } + which_pat = RE_LAST; // use last used regexp + delimiter = *cmd++; // remember delimiter character + pat = cmd; // remember start of search pat cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg); - if (cmd[0] == delimiter) /* end delimiter found */ - *cmd++ = NUL; /* replace it with a NUL */ + if (cmd[0] == delimiter) { // end delimiter found + *cmd++ = NUL; // replace it with a NUL + has_second_delim = true; + } } /* @@ -3188,7 +3209,7 @@ void do_sub(exarg_T *eap) mb_ptr_adv(cmd); } - if (!eap->skip) { + if (!eap->skip && !preview) { sub_set_replacement((SubReplacementString) { .sub = xstrdup((char *) sub), .timestamp = os_time(), @@ -3198,7 +3219,7 @@ void do_sub(exarg_T *eap) } else if (!eap->skip) { /* use previous pattern and substitution */ if (old_sub.sub == NULL) { /* there is no previous command */ EMSG(_(e_nopresub)); - return; + return NULL; } pat = NULL; /* search_regcomp() will use previous pattern */ sub = (char_u *) old_sub.sub; @@ -3208,8 +3229,8 @@ void do_sub(exarg_T *eap) endcolumn = (curwin->w_curswant == MAXCOL); } - if (sub_joining_lines(eap, pat, sub, cmd)) { - return; + if (sub_joining_lines(eap, pat, sub, cmd, !preview)) { + return NULL; } cmd = sub_parse_flags(cmd, &subflags, &which_pat); @@ -3223,7 +3244,7 @@ void do_sub(exarg_T *eap) i = getdigits_long(&cmd); if (i <= 0 && !eap->skip && subflags.do_error) { EMSG(_(e_zerocount)); - return; + return NULL; } eap->line1 = eap->line2; eap->line2 += i - 1; @@ -3239,24 +3260,26 @@ void do_sub(exarg_T *eap) eap->nextcmd = check_nextcmd(cmd); if (eap->nextcmd == NULL) { EMSG(_(e_trailing)); - return; + return NULL; } } - if (eap->skip) /* not executing commands, only parsing */ - return; + if (eap->skip) { // not executing commands, only parsing + return NULL; + } if (!subflags.do_count && !MODIFIABLE(curbuf)) { // Substitution is not allowed in non-'modifiable' buffer EMSG(_(e_modifiable)); - return; + return NULL; } - if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, ®match) == FAIL) { + if (search_regcomp(pat, RE_SUBST, which_pat, (preview ? 0 : SEARCH_HIS), + ®match) == FAIL) { if (subflags.do_error) { EMSG(_(e_invcmd)); } - return; + return NULL; } // the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' @@ -3343,6 +3366,8 @@ void do_sub(exarg_T *eap) sub_firstlnum = lnum; copycol = 0; matchcol = 0; + // the current match + MatchedLine matched_line = { 0, 0, NULL, KV_INITIAL_VALUE }; /* At first match, remember current cursor position. */ if (!got_match) { @@ -3379,6 +3404,12 @@ void do_sub(exarg_T *eap) curwin->w_cursor.lnum = lnum; do_again = FALSE; + if (preview) { + // Increment the in-line match count and store the column. + matched_line.nmatch++; + kv_push(matched_line.cols, regmatch.startpos[0].col); + } + /* * 1. Match empty string does not count, except for first * match. This reproduces the strange vi behaviour. @@ -3426,7 +3457,7 @@ void do_sub(exarg_T *eap) goto skip; } - if (subflags.do_ask) { + if (subflags.do_ask && !preview) { int typed = 0; /* change State to CONFIRM, so that the mouse works @@ -3550,7 +3581,7 @@ void do_sub(exarg_T *eap) || typed == intr_char #endif ) { - got_quit = TRUE; + got_quit = true; break; } if (typed == 'n') @@ -3597,134 +3628,131 @@ void do_sub(exarg_T *eap) * use "\=col("."). */ curwin->w_cursor.col = regmatch.startpos[0].col; - /* - * 3. substitute the string. - */ - if (subflags.do_count) { - // prevent accidentally changing the buffer by a function - save_ma = curbuf->b_p_ma; - curbuf->b_p_ma = false; - sandbox++; - } - // Save flags for recursion. They can change for e.g. - // :s/^/\=execute("s#^##gn") - subflags_T subflags_save = subflags; - // get length of substitution part - sublen = vim_regsub_multi(®match, - sub_firstlnum - regmatch.startpos[0].lnum, - sub, sub_firstline, false, p_magic, true); - // Don't keep flags set by a recursive call - subflags = subflags_save; - if (subflags.do_count) { - curbuf->b_p_ma = save_ma; - if (sandbox > 0) { - sandbox--; + // 3. Substitute the string. During 'inccommand' preview only do this if + // there is a replace pattern. + if (!preview || has_second_delim) { + if (subflags.do_count) { + // prevent accidentally changing the buffer by a function + save_ma = curbuf->b_p_ma; + curbuf->b_p_ma = false; + sandbox++; + } + // Save flags for recursion. They can change for e.g. + // :s/^/\=execute("s#^##gn") + subflags_T subflags_save = subflags; + // get length of substitution part + sublen = vim_regsub_multi(®match, + sub_firstlnum - regmatch.startpos[0].lnum, + sub, sub_firstline, false, p_magic, true); + // Don't keep flags set by a recursive call + subflags = subflags_save; + if (subflags.do_count) { + curbuf->b_p_ma = save_ma; + if (sandbox > 0) { + sandbox--; + } + goto skip; } - goto skip; - } - - /* When the match included the "$" of the last line it may - * go beyond the last line of the buffer. */ - if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1) { - nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1; - skip_match = TRUE; - } - /* Need room for: - * - result so far in new_start (not for first sub in line) - * - original text up to match - * - length of substituted part - * - original text after match - */ - if (nmatch == 1) - p1 = sub_firstline; - else { - p1 = ml_get(sub_firstlnum + nmatch - 1); - nmatch_tl += nmatch - 1; - } - size_t copy_len = regmatch.startpos[0].col - copycol; - new_end = sub_grow_buf(&new_start, - copy_len + (STRLEN(p1) - regmatch.endpos[0].col) - + sublen + 1); + // When the match included the "$" of the last line it may + // go beyond the last line of the buffer. + if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1) { + nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1; + skip_match = true; + } - /* - * copy the text up to the part that matched - */ - memmove(new_end, sub_firstline + copycol, (size_t)copy_len); - new_end += copy_len; - - (void)vim_regsub_multi(®match, - sub_firstlnum - regmatch.startpos[0].lnum, - sub, new_end, TRUE, p_magic, TRUE); - sub_nsubs++; - did_sub = TRUE; - - /* Move the cursor to the start of the line, to avoid that it - * is beyond the end of the line after the substitution. */ - curwin->w_cursor.col = 0; - - /* For a multi-line match, make a copy of the last matched - * line and continue in that one. */ - if (nmatch > 1) { - sub_firstlnum += nmatch - 1; - xfree(sub_firstline); - sub_firstline = vim_strsave(ml_get(sub_firstlnum)); - // When going beyond the last line, stop substituting. - if (sub_firstlnum <= line2) { - do_again = true; + // Need room for: + // - result so far in new_start (not for first sub in line) + // - original text up to match + // - length of substituted part + // - original text after match + if (nmatch == 1) { + p1 = sub_firstline; } else { - subflags.do_all = false; + p1 = ml_get(sub_firstlnum + nmatch - 1); + nmatch_tl += nmatch - 1; } - } + size_t copy_len = regmatch.startpos[0].col - copycol; + new_end = sub_grow_buf(&new_start, + (STRLEN(p1) - regmatch.endpos[0].col) + + copy_len + sublen + 1); + + // copy the text up to the part that matched + memmove(new_end, sub_firstline + copycol, (size_t)copy_len); + new_end += copy_len; + + (void)vim_regsub_multi(®match, + sub_firstlnum - regmatch.startpos[0].lnum, + sub, new_end, true, p_magic, true); + sub_nsubs++; + did_sub = true; - /* Remember next character to be copied. */ - copycol = regmatch.endpos[0].col; + // Move the cursor to the start of the line, to avoid that it + // is beyond the end of the line after the substitution. + curwin->w_cursor.col = 0; - if (skip_match) { - /* Already hit end of the buffer, sub_firstlnum is one - * less than what it ought to be. */ - xfree(sub_firstline); - sub_firstline = vim_strsave((char_u *)""); - copycol = 0; - } + // For a multi-line match, make a copy of the last matched + // line and continue in that one. + if (nmatch > 1) { + sub_firstlnum += nmatch - 1; + xfree(sub_firstline); + sub_firstline = vim_strsave(ml_get(sub_firstlnum)); + // When going beyond the last line, stop substituting. + if (sub_firstlnum <= line2) { + do_again = true; + } else { + subflags.do_all = false; + } + } - /* - * Now the trick is to replace CTRL-M chars with a real line - * break. This would make it impossible to insert a CTRL-M in - * the text. The line break can be avoided by preceding the - * CTRL-M with a backslash. To be able to insert a backslash, - * they must be doubled in the string and are halved here. - * That is Vi compatible. - */ - for (p1 = new_end; *p1; ++p1) { - if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */ - STRMOVE(p1, p1 + 1); - else if (*p1 == CAR) { - if (u_inssub(lnum) == OK) { /* prepare for undo */ - *p1 = NUL; /* truncate up to the CR */ - ml_append(lnum - 1, new_start, - (colnr_T)(p1 - new_start + 1), FALSE); - mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L); - if (subflags.do_ask) { - appended_lines(lnum - 1, 1L); - } else { - if (first_line == 0) { - first_line = lnum; + // Remember next character to be copied. + copycol = regmatch.endpos[0].col; + + if (skip_match) { + // Already hit end of the buffer, sub_firstlnum is one + // less than what it ought to be. + xfree(sub_firstline); + sub_firstline = vim_strsave((char_u *)""); + copycol = 0; + } + + // Now the trick is to replace CTRL-M chars with a real line + // break. This would make it impossible to insert a CTRL-M in + // the text. The line break can be avoided by preceding the + // CTRL-M with a backslash. To be able to insert a backslash, + // they must be doubled in the string and are halved here. + // That is Vi compatible. + for (p1 = new_end; *p1; p1++) { + if (p1[0] == '\\' && p1[1] != NUL) { // remove backslash + STRMOVE(p1, p1 + 1); + } else if (*p1 == CAR) { + if (u_inssub(lnum) == OK) { // prepare for undo + *p1 = NUL; // truncate up to the CR + ml_append(lnum - 1, new_start, + (colnr_T)(p1 - new_start + 1), false); + mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L); + if (subflags.do_ask) { + appended_lines(lnum - 1, 1L); + } else { + if (first_line == 0) { + first_line = lnum; + } + last_line = lnum + 1; } - last_line = lnum + 1; + // All line numbers increase. + sub_firstlnum++; + lnum++; + line2++; + // move the cursor to the new line, like Vi + curwin->w_cursor.lnum++; + // copy the rest + STRMOVE(new_start, p1 + 1); + p1 = new_start - 1; } - /* All line numbers increase. */ - ++sub_firstlnum; - ++lnum; - ++line2; - /* move the cursor to the new line, like Vi */ - ++curwin->w_cursor.lnum; - /* copy the rest */ - STRMOVE(new_start, p1 + 1); - p1 = new_start - 1; + } else if (has_mbyte) { + p1 += (*mb_ptr2len)(p1) - 1; } - } else if (has_mbyte) - p1 += (*mb_ptr2len)(p1) - 1; + } } // 4. If subflags.do_all is set, find next match. @@ -3845,9 +3873,19 @@ skip: xfree(new_start); /* for when substitute was cancelled */ xfree(sub_firstline); /* free the copy of the original line */ sub_firstline = NULL; + + if (preview) { + matched_line.lnum = lnum; + matched_line.line = vim_strsave(ml_get(lnum)); + kv_push(matched_lines, matched_line); + } } line_breakcheck(); + + if (profile_passed_limit(timeout)) { + got_quit = true; + } } if (first_line != 0) { @@ -3880,7 +3918,7 @@ skip: beginline(BL_WHITE | BL_FIX); } } - if (!do_sub_msg(subflags.do_count) && subflags.do_ask) { + if (!preview && !do_sub_msg(subflags.do_count) && subflags.do_ask) { MSG(""); } } else { @@ -3912,6 +3950,27 @@ skip: // Restore the flag values, they can be used for ":&&". subflags.do_all = save_do_all; subflags.do_ask = save_do_ask; + + // Show 'inccommand' preview if there are matched lines. + buf_T *preview_buf = NULL; + if (preview && !aborting()) { + if (got_quit) { // Substitution is too slow, disable 'inccommand'. + set_string_option_direct((char_u *)"icm", -1, (char_u *)"", OPT_FREE, + SID_NONE); + } else if (*p_icm != NUL && matched_lines.size != 0 && pat != NULL) { + curbuf->b_changed = save_b_changed; // preserve 'modified' during preview + preview_buf = show_sub(eap, old_cursor, pat, sub, &matched_lines); + } + } + + for (MatchedLine m; kv_size(matched_lines);) { + m = kv_pop(matched_lines); + xfree(m.line); + kv_destroy(m.cols); + } + kv_destroy(matched_lines); + + return preview_buf; } // NOLINT(readability/fn_size) /* @@ -5793,50 +5852,39 @@ static enum EXP_SIGN_NAMES /* expand with name of placed signs */ } expand_what; -/* - * Function given to ExpandGeneric() to obtain the sign command - * expansion. - */ +/// Function given to ExpandGeneric() to obtain the sign command +/// expansion. char_u * get_sign_name(expand_T *xp, int idx) { - sign_T *sp; - int current_idx; - - switch (expand_what) - { + switch (expand_what) + { case EXP_SUBCMD: - return (char_u *)cmds[idx]; - case EXP_DEFINE: - { - char *define_arg[] = - { - "icon=", "linehl=", "text=", "texthl=", NULL - }; - return (char_u *)define_arg[idx]; - } - case EXP_PLACE: - { - char *place_arg[] = - { - "line=", "name=", "file=", "buffer=", NULL - }; - return (char_u *)place_arg[idx]; - } - case EXP_UNPLACE: - { - char *unplace_arg[] = { "file=", "buffer=", NULL }; - return (char_u *)unplace_arg[idx]; - } - case EXP_SIGN_NAMES: - /* Complete with name of signs already defined */ - current_idx = 0; - for (sp = first_sign; sp != NULL; sp = sp->sn_next) - if (current_idx++ == idx) - return sp->sn_name; - return NULL; + return (char_u *)cmds[idx]; + case EXP_DEFINE: { + char *define_arg[] = { "icon=", "linehl=", "text=", "texthl=", NULL }; + return (char_u *)define_arg[idx]; + } + case EXP_PLACE: { + char *place_arg[] = { "line=", "name=", "file=", "buffer=", NULL }; + return (char_u *)place_arg[idx]; + } + case EXP_UNPLACE: { + char *unplace_arg[] = { "file=", "buffer=", NULL }; + return (char_u *)unplace_arg[idx]; + } + case EXP_SIGN_NAMES: { + // Complete with name of signs already defined + int current_idx = 0; + for (sign_T *sp = first_sign; sp != NULL; sp = sp->sn_next) { + if (current_idx++ == idx) { + return sp->sn_name; + } + } + } + return NULL; default: - return NULL; - } + return NULL; + } } /* @@ -5956,3 +6004,171 @@ void set_context_in_sign_cmd(expand_T *xp, char_u *arg) } } } + +/// Shows the effects of the :substitute command being typed ('inccommand'). +/// If inccommand=split, shows a preview window and later restores the layout. +static buf_T *show_sub(exarg_T *eap, pos_T old_cusr, char_u *pat, char_u *sub, + MatchedLineVec *matched_lines) + FUNC_ATTR_NONNULL_ALL +{ + static handle_T bufnr = 0; // special buffer, re-used on each visit + + win_T *save_curwin = curwin; + cmdmod_T save_cmdmod = cmdmod; + char_u *save_shm_p = vim_strsave(p_shm); + size_t sub_size = mb_string2cells(sub); + size_t pat_size = mb_string2cells(pat); + + // We keep a special-purpose buffer around, but don't assume it exists. + buf_T *preview_buf = bufnr ? buflist_findnr(bufnr) : 0; + cmdmod.tab = 0; // disable :tab modifier + cmdmod.noswapfile = true; // disable swap for preview buffer + // disable file info message + set_string_option_direct((char_u *)"shm", -1, (char_u *)"F", OPT_FREE, + SID_NONE); + + bool outside_curline = (eap->line1 != old_cusr.lnum + || eap->line2 != old_cusr.lnum); + bool split = outside_curline && (*p_icm != 'n') && (sub_size || pat_size); + if (preview_buf == curbuf) { // Preview buffer cannot preview itself! + split = false; + preview_buf = NULL; + } + + // Place cursor on nearest matching line, to undo do_sub() cursor placement. + for (size_t i = 0; i < matched_lines->size; i++) { + MatchedLine curmatch = matched_lines->items[i]; + if (curmatch.lnum >= old_cusr.lnum) { + curwin->w_cursor.lnum = curmatch.lnum; + curwin->w_cursor.col = curmatch.cols.items[0]; + break; + } // Else: All matches are above, do_sub() already placed cursor. + } + + if (split && win_split((int)p_cwh, WSP_BOT) != FAIL) { + buf_open_scratch(preview_buf ? bufnr : 0, "[Preview]"); + buf_clear(); + preview_buf = curbuf; + bufnr = preview_buf->handle; + curbuf->b_p_bl = false; + curbuf->b_p_ma = true; + curbuf->b_p_ul = -1; + curbuf->b_p_tw = 0; // Reset 'textwidth' (was set by ftplugin) + curwin->w_p_cul = false; + curwin->w_p_cuc = false; + curwin->w_p_spell = false; + curwin->w_p_fen = false; + + // Width of the "| lnum|..." column which displays the line numbers. + linenr_T highest_num_line = kv_last(*matched_lines).lnum; + int col_width = log10(highest_num_line) + 1 + 3; + + char *str = NULL; + size_t old_line_size = 0; + size_t line_size; + int src_id_highlight = 0; + int hl_id = syn_check_group((char_u *)"Substitute", 13); + + // Dump the lines into the preview buffer. + for (size_t line = 0; line < matched_lines->size; line++) { + MatchedLine mat = matched_lines->items[line]; + line_size = mb_string2cells(mat.line) + col_width + 1; + + // Reallocate if str not long enough + if (line_size > old_line_size) { + str = xrealloc(str, line_size * sizeof(char)); + old_line_size = line_size; + } + + // Put "|lnum| line" into `str` and append it to the preview buffer. + snprintf(str, line_size, "|%*ld| %s", col_width - 3, mat.lnum, mat.line); + ml_append(line, (char_u *)str, (colnr_T)line_size, false); + + // highlight the replaced part + if (sub_size > 0) { + for (size_t i = 0; i < mat.cols.size; i++) { + colnr_T col_start = mat.cols.items[i] + col_width + + i * (sub_size - pat_size) + 1; + colnr_T col_end = col_start - 1 + sub_size; + src_id_highlight = bufhl_add_hl(curbuf, src_id_highlight, hl_id, + line + 1, col_start, col_end); + } + } + } + xfree(str); + } + + redraw_later(SOME_VALID); + win_enter(save_curwin, false); // Return to original window + update_topline(); + + // Update screen now. Must do this _before_ close_windows(). + int save_rd = RedrawingDisabled; + RedrawingDisabled = 0; + update_screen(SOME_VALID); + RedrawingDisabled = save_rd; + + set_string_option_direct((char_u *)"shm", -1, save_shm_p, OPT_FREE, SID_NONE); + xfree(save_shm_p); + + cmdmod = save_cmdmod; + + return preview_buf; +} + +/// :substitute command +/// +/// If 'inccommand' is empty: calls do_sub(). +/// If 'inccommand' is set: shows a "live" preview then removes the changes. +/// from undo history. +void ex_substitute(exarg_T *eap) +{ + bool preview = (State & CMDPREVIEW); + if (*p_icm == NUL || !preview) { // 'inccommand' is disabled + (void)do_sub(eap, profile_zero()); + return; + } + + block_autocmds(); // Disable events during command preview. + + char_u *save_eap = eap->arg; + garray_T save_view; + win_size_save(&save_view); // Save current window sizes. + save_search_patterns(); + int save_changedtick = curbuf->b_changedtick; + time_t save_b_u_time_cur = curbuf->b_u_time_cur; + u_header_T *save_b_u_newhead = curbuf->b_u_newhead; + long save_b_p_ul = curbuf->b_p_ul; + int save_w_p_cul = curwin->w_p_cul; + int save_w_p_cuc = curwin->w_p_cuc; + + emsg_off++; // No error messages during command preview. + curbuf->b_p_ul = LONG_MAX; // make sure we can undo all changes + curwin->w_p_cul = false; // Disable 'cursorline' + curwin->w_p_cuc = false; // Disable 'cursorcolumn' + + buf_T *preview_buf = do_sub(eap, profile_setlimit(p_rdt)); + + if (save_changedtick != curbuf->b_changedtick) { + // Undo invisibly. This also moves the cursor! + if (!u_undo_and_forget(1)) { abort(); } + // Restore newhead. It is meaningless when curhead is valid, but we must + // restore it so that undotree() is identical before/after the preview. + curbuf->b_u_newhead = save_b_u_newhead; + curbuf->b_u_time_cur = save_b_u_time_cur; + curbuf->b_changedtick = save_changedtick; + } + if (buf_valid(preview_buf)) { + // XXX: Must do this *after* u_undo_and_forget(), why? + close_windows(preview_buf, false); + } + curbuf->b_p_ul = save_b_p_ul; + curwin->w_p_cul = save_w_p_cul; // Restore 'cursorline' + curwin->w_p_cuc = save_w_p_cuc; // Restore 'cursorcolumn' + eap->arg = save_eap; + restore_search_patterns(); + win_size_restore(&save_view); + ga_clear(&save_view); + emsg_off--; + unblock_autocmds(); +} diff --git a/src/nvim/ex_cmds.h b/src/nvim/ex_cmds.h index 721145efd8..243b11255e 100644 --- a/src/nvim/ex_cmds.h +++ b/src/nvim/ex_cmds.h @@ -5,14 +5,16 @@ #include "nvim/os/time.h" #include "nvim/eval_defs.h" +#include "nvim/pos.h" + +// flags for do_ecmd() +#define ECMD_HIDE 0x01 // don't free the current buffer +#define ECMD_SET_HELP 0x02 // set b_help flag of (new) buffer before + // opening file +#define ECMD_OLDBUF 0x04 // use existing buffer if it exists +#define ECMD_FORCEIT 0x08 // ! used in Ex command +#define ECMD_ADDBUF 0x10 // don't edit, just add to buffer list -/* flags for do_ecmd() */ -#define ECMD_HIDE 0x01 /* don't free the current buffer */ -#define ECMD_SET_HELP 0x02 /* set b_help flag of (new) buffer before - opening file */ -#define ECMD_OLDBUF 0x04 /* use existing buffer if it exists */ -#define ECMD_FORCEIT 0x08 /* ! used in Ex command */ -#define ECMD_ADDBUF 0x10 /* don't edit, just add to buffer list */ /* for lnum argument in do_ecmd() */ #define ECMD_LASTL (linenr_T)0 /* use last position in loaded file */ diff --git a/src/nvim/ex_cmds.lua b/src/nvim/ex_cmds.lua index 3f5d9b3244..b056fff667 100644 --- a/src/nvim/ex_cmds.lua +++ b/src/nvim/ex_cmds.lua @@ -35,6 +35,7 @@ local ADDR_LOADED_BUFFERS = 3 local ADDR_BUFFERS = 4 local ADDR_TABS = 5 local ADDR_QUICKFIX = 6 +local ADDR_OTHER = 99 -- The following table is described in ex_cmds_defs.h file. return { @@ -1604,8 +1605,8 @@ return { }, { command='messages', - flags=bit.bor(TRLBAR, CMDWIN), - addr_type=ADDR_LINES, + flags=bit.bor(EXTRA, TRLBAR, RANGE, CMDWIN), + addr_type=ADDR_OTHER, func='ex_messages', }, { @@ -2194,7 +2195,7 @@ return { command='substitute', flags=bit.bor(RANGE, WHOLEFOLD, EXTRA, CMDWIN), addr_type=ADDR_LINES, - func='do_sub', + func='ex_substitute', }, { command='sNext', @@ -3181,7 +3182,7 @@ return { enum='CMD_and', flags=bit.bor(RANGE, WHOLEFOLD, EXTRA, CMDWIN, MODIFY), addr_type=ADDR_LINES, - func='do_sub', + func='ex_substitute', }, { command='<', @@ -3222,6 +3223,6 @@ return { enum='CMD_tilde', flags=bit.bor(RANGE, WHOLEFOLD, EXTRA, CMDWIN, MODIFY), addr_type=ADDR_LINES, - func='do_sub', + func='ex_substitute', }, } diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index f68663c60c..3b92b3734a 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -2552,7 +2552,7 @@ static void add_pack_plugin(char_u *fname, void *cookie) } if (cookie != &APP_ADD_DIR) { - static const char *plugpat = "%s/plugin/*.vim"; // NOLINT + static const char *plugpat = "%s/plugin/**/*.vim"; // NOLINT static const char *ftpat = "%s/ftdetect/*.vim"; // NOLINT size_t len = STRLEN(ffname) + STRLEN(ftpat); diff --git a/src/nvim/ex_cmds_defs.h b/src/nvim/ex_cmds_defs.h index 8148eb5cee..c6389a0c8b 100644 --- a/src/nvim/ex_cmds_defs.h +++ b/src/nvim/ex_cmds_defs.h @@ -73,6 +73,7 @@ #define ADDR_BUFFERS 4 #define ADDR_TABS 5 #define ADDR_QUICKFIX 6 +#define ADDR_OTHER 99 typedef struct exarg exarg_T; diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 5e418bf099..79a0b5849f 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -271,7 +271,7 @@ do_exmode ( int do_cmdline_cmd(char *cmd) { return do_cmdline((char_u *)cmd, NULL, NULL, - DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED); + DOCMD_NOWAIT|DOCMD_KEYTYPED); } /* @@ -597,11 +597,11 @@ int do_cmdline(char_u *cmdline, LineGetter fgetline, * do_one_cmd() will return NULL if there is no trailing '|'. * "cmdline_copy" can change, e.g. for '%' and '#' expansion. */ - ++recursive; - next_cmdline = do_one_cmd(&cmdline_copy, flags & DOCMD_VERBOSE, - &cstack, - cmd_getline, cmd_cookie); - --recursive; + recursive++; + next_cmdline = do_one_cmd(&cmdline_copy, flags, + &cstack, + cmd_getline, cmd_cookie); + recursive--; if (cmd_cookie == (void *)&cmd_loop_cookie) /* Use "current_line" from "cmd_loop_cookie", it may have been @@ -1225,7 +1225,7 @@ static void get_wincmd_addr_type(char_u *arg, exarg_T *eap) * This function may be called recursively! */ static char_u * do_one_cmd(char_u **cmdlinep, - int sourcing, + int flags, struct condstack *cstack, LineGetter fgetline, void *cookie /* argument for fgetline() */ @@ -1248,7 +1248,7 @@ static char_u * do_one_cmd(char_u **cmdlinep, memset(&ea, 0, sizeof(ea)); ea.line1 = 1; ea.line2 = 1; - ++ex_nesting_level; + ex_nesting_level++; /* When the last file has not been edited :q has to be typed twice. */ if (quitmore @@ -1542,7 +1542,8 @@ static char_u * do_one_cmd(char_u **cmdlinep, break; } ea.cmd = skipwhite(ea.cmd); - lnum = get_address(&ea, &ea.cmd, ea.addr_type, ea.skip, ea.addr_count == 0); + lnum = get_address(&ea, &ea.cmd, ea.addr_type, ea.skip, + ea.addr_count == 0); if (ea.cmd == NULL) { // error detected goto doend; } @@ -1726,8 +1727,9 @@ static char_u * do_one_cmd(char_u **cmdlinep, if (ea.cmdidx == CMD_SIZE) { if (!ea.skip) { STRCPY(IObuff, _("E492: Not an editor command")); - if (!sourcing) + if (!(flags & DOCMD_VERBOSE)) { append_command(*cmdlinep); + } errormsg = IObuff; did_emsg_syntax = TRUE; } @@ -1809,7 +1811,7 @@ static char_u * do_one_cmd(char_u **cmdlinep, */ if (!global_busy && ea.line1 > ea.line2) { if (msg_silent == 0) { - if (sourcing || exmode_active) { + if ((flags & DOCMD_VERBOSE) || exmode_active) { errormsg = (char_u *)_("E493: Backwards range given"); goto doend; } @@ -2221,7 +2223,7 @@ doend: curwin->w_cursor.lnum = 1; if (errormsg != NULL && *errormsg != NUL && !did_emsg) { - if (sourcing) { + if (flags & DOCMD_VERBOSE) { if (errormsg != IObuff) { STRCPY(IObuff, errormsg); errormsg = IObuff; @@ -7293,15 +7295,13 @@ void ex_may_print(exarg_T *eap) } } -/* - * ":smagic" and ":snomagic". - */ +/// ":smagic" and ":snomagic". static void ex_submagic(exarg_T *eap) { int magic_save = p_magic; p_magic = (eap->cmdidx == CMD_smagic); - do_sub(eap); + ex_substitute(eap); p_magic = magic_save; } @@ -7971,7 +7971,8 @@ static void ex_startinsert(exarg_T *eap) static void ex_stopinsert(exarg_T *eap) { restart_edit = 0; - stop_insert_mode = TRUE; + stop_insert_mode = true; + clearmode(); } /* @@ -8754,17 +8755,18 @@ makeopens ( if (put_line(fd, "wincmd t") == FAIL) return FAIL; - /* - * If more than one window, see if sizes can be restored. - * First set 'winheight' and 'winwidth' to 1 to avoid the windows being - * resized when moving between windows. - * Do this before restoring the view, so that the topline and the - * cursor can be set. This is done again below. - */ - if (put_line(fd, "set winheight=1 winwidth=1") == FAIL) + // If more than one window, see if sizes can be restored. + // First set 'winheight' and 'winwidth' to 1 to avoid the windows being + // resized when moving between windows. + // Do this before restoring the view, so that the topline and the + // cursor can be set. This is done again below. + if (put_line(fd, "set winminheight=1 winminwidth=1 winheight=1 winwidth=1") + == FAIL) { return FAIL; - if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL) + } + if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL) { return FAIL; + } /* * Restore the view of the window (options, file, cursor, etc.). @@ -8828,11 +8830,18 @@ makeopens ( if (put_line(fd, "unlet! s:wipebuf") == FAIL) return FAIL; - /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */ - if (fprintf(fd, "set winheight=%" PRId64 " winwidth=%" PRId64 " shortmess=%s", - (int64_t)p_wh, (int64_t)p_wiw, p_shm) < 0 - || put_eol(fd) == FAIL) + // Re-apply options. + if (fprintf(fd, "set winheight=%" PRId64 " winwidth=%" PRId64 + " winminheight=%" PRId64 " winminwidth=%" PRId64 + " shortmess=%s", + (int64_t)p_wh, + (int64_t)p_wiw, + (int64_t)p_wmh, + (int64_t)p_wmw, + p_shm) < 0 + || put_eol(fd) == FAIL) { return FAIL; + } /* * Lastly, execute the x.vim file if it exists. @@ -9647,3 +9656,27 @@ static void ex_terminal(exarg_T *eap) xfree(name); } } + +/// Checks if `cmd` is "previewable" (i.e. supported by 'inccommand'). +/// +/// @param[in] cmd Commandline to check. May start with a range. +/// +/// @return true if `cmd` is previewable +bool cmd_can_preview(char_u *cmd) +{ + if (cmd == NULL) { + return false; + } + + exarg_T ea; + // parse the command line + ea.cmd = skip_range(cmd, NULL); + if (*ea.cmd == '*') { + ea.cmd = skipwhite(ea.cmd + 1); + } + find_command(&ea, NULL); + + return ea.cmdidx == CMD_substitute + || ea.cmdidx == CMD_smagic + || ea.cmdidx == CMD_snomagic; +} diff --git a/src/nvim/ex_docmd.h b/src/nvim/ex_docmd.h index bafad20169..fb6aac223f 100644 --- a/src/nvim/ex_docmd.h +++ b/src/nvim/ex_docmd.h @@ -3,13 +3,13 @@ #include "nvim/ex_cmds_defs.h" -/* flags for do_cmdline() */ -#define DOCMD_VERBOSE 0x01 /* included command in error message */ -#define DOCMD_NOWAIT 0x02 /* don't call wait_return() and friends */ -#define DOCMD_REPEAT 0x04 /* repeat exec. until getline() returns NULL */ -#define DOCMD_KEYTYPED 0x08 /* don't reset KeyTyped */ -#define DOCMD_EXCRESET 0x10 /* reset exception environment (for debugging)*/ -#define DOCMD_KEEPLINE 0x20 /* keep typed line for repeating with "." */ +// flags for do_cmdline() +#define DOCMD_VERBOSE 0x01 // included command in error message +#define DOCMD_NOWAIT 0x02 // don't call wait_return() and friends +#define DOCMD_REPEAT 0x04 // repeat exec. until getline() returns NULL +#define DOCMD_KEYTYPED 0x08 // don't reset KeyTyped +#define DOCMD_EXCRESET 0x10 // reset exception environment (for debugging +#define DOCMD_KEEPLINE 0x20 // keep typed line for repeating with "." /* defines for eval_vars() */ #define VALID_PATH 1 diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index e525c949bd..532775ad0b 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -95,19 +95,20 @@ typedef struct command_line_state { char_u *lookfor; // string to match int hiscnt; // current history line in use int histype; // history type to be used - pos_T old_cursor; - colnr_T old_curswant; - colnr_T old_leftcol; - linenr_T old_topline; - int old_topfill; - linenr_T old_botline; + pos_T old_cursor; + colnr_T old_curswant; + colnr_T old_leftcol; + linenr_T old_topline; + int old_topfill; + linenr_T old_botline; int did_incsearch; int incsearch_postponed; int did_wild_list; // did wild_list() recently int wim_index; // index in wim_flags[] int res; - int save_msg_scroll; - int save_State; // remember State when called + int save_msg_scroll; + int save_State; // remember State when called + char_u *save_p_icm; int some_key_typed; // one of the keys was typed // mouse drag and release events are ignored, unless they are // preceded with a mouse down event @@ -159,6 +160,7 @@ static uint8_t *command_line_enter(int firstc, long count, int indent) s->indent = indent; s->save_msg_scroll = msg_scroll; s->save_State = State; + s->save_p_icm = vim_strsave(p_icm); s->ignore_drag_release = true; if (s->firstc == -1) { @@ -323,9 +325,12 @@ static uint8_t *command_line_enter(int firstc, long count, int indent) need_wait_return = false; } + set_string_option_direct((char_u *)"icm", -1, s->save_p_icm, OPT_FREE, + SID_NONE); State = s->save_State; setmouse(); ui_cursor_shape(); // may show different cursor shape + xfree(s->save_p_icm); { char_u *p = ccline.cmdbuff; @@ -981,7 +986,6 @@ static int command_line_handle_key(CommandLineState *s) status_redraw_curbuf(); return command_line_not_changed(s); - // case '@': only in very old vi case Ctrl_U: // delete all characters left of the cursor s->j = ccline.cmdpos; @@ -996,7 +1000,6 @@ static int command_line_handle_key(CommandLineState *s) redrawcmd(); return command_line_changed(s); - case ESC: // get here if p_wc != ESC or when ESC typed twice case Ctrl_C: // In exmode it doesn't make sense to return. Except when @@ -1489,11 +1492,11 @@ static int command_line_handle_key(CommandLineState *s) static int command_line_not_changed(CommandLineState *s) { - // This part implements incremental searches for "/" and "?" Jump to - // cmdline_not_changed when a character has been read but the command line - // did not change. Then we only search and redraw if something changed in - // the past. Jump to cmdline_changed when the command line did change. - // (Sorry for the goto's, I know it is ugly). + // Incremental searches for "/" and "?": + // Enter command_line_not_changed() when a character has been read but the + // command line did not change. Then we only search and redraw if something + // changed in the past. + // Enter command_line_changed() when the command line did change. if (!s->incsearch_postponed) { return 1; } @@ -1591,6 +1594,34 @@ static int command_line_changed(CommandLineState *s) msg_starthere(); redrawcmdline(); s->did_incsearch = true; + } else if (s->firstc == ':' + && current_SID == 0 // only if interactive + && *p_icm != NUL // 'inccommand' is set + && curbuf->b_p_ma // buffer is modifiable + && cmdline_star == 0 // not typing a password + && cmd_can_preview(ccline.cmdbuff) + && !vpeekc_any()) { + // Show 'inccommand' preview. It works like this: + // 1. Do the command. + // 2. Command implementation detects CMDPREVIEW state, then: + // - Update the screen while the effects are in place. + // - Immediately undo the effects. + State |= CMDPREVIEW; + do_cmdline(ccline.cmdbuff, NULL, NULL, DOCMD_KEEPLINE|DOCMD_NOWAIT); + + // Restore the window "view". + curwin->w_cursor = s->old_cursor; + curwin->w_curswant = s->old_curswant; + curwin->w_leftcol = s->old_leftcol; + curwin->w_topline = s->old_topline; + curwin->w_topfill = s->old_topfill; + curwin->w_botline = s->old_botline; + update_topline(); + + redrawcmdline(); + } else if (State & CMDPREVIEW) { + State = (State & ~CMDPREVIEW); + update_screen(SOME_VALID); // Clear 'inccommand' preview. } if (cmdmsg_rl || (p_arshape && !p_tbidi && enc_utf8)) { @@ -5137,16 +5168,14 @@ static int ex_window(void) } cmdwin_type = get_cmdline_type(); - /* Create the command-line buffer empty. */ - (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL); - (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE); - set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL); - set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL); - curbuf->b_p_ma = TRUE; - curwin->w_p_fen = FALSE; + // Create empty command-line buffer. + buf_open_scratch(0, "[Command Line]"); + // Command-line buffer has bufhidden=wipe, unlike a true "scratch" buffer. + set_option_value((char_u *)"bh", 0L, (char_u *)"wipe", OPT_LOCAL); curwin->w_p_rl = cmdmsg_rl; - cmdmsg_rl = FALSE; - RESET_BINDING(curwin); + cmdmsg_rl = false; + curbuf->b_p_ma = true; + curwin->w_p_fen = false; /* Do execute autocommands for setting the filetype (load syntax). */ unblock_autocmds(); diff --git a/src/nvim/file_search.c b/src/nvim/file_search.c index c6cfba8142..2ac8e27047 100644 --- a/src/nvim/file_search.c +++ b/src/nvim/file_search.c @@ -1149,7 +1149,7 @@ static ff_stack_T *ff_create_stack_element(char_u *fix_part, char_u *wc_part, in new->ffs_filearray_cur = 0; new->ffs_stage = 0; new->ffs_level = level; - new->ffs_star_star_empty = star_star_empty;; + new->ffs_star_star_empty = star_star_empty; /* the following saves NULL pointer checks in vim_findfile */ if (fix_part == NULL) diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index c0d4a71b35..529b48adbd 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -187,6 +187,14 @@ struct bw_info { static char *e_auchangedbuf = N_( "E812: Autocommands changed buffer or buffer name"); +// Set by the apply_autocmds_group function if the given event is equal to +// EVENT_FILETYPE. Used by the readfile function in order to determine if +// EVENT_BUFREADPOST triggered the EVENT_FILETYPE. +// +// Relying on this value requires one to reset it prior calling +// apply_autocmds_group. +static bool au_did_filetype INIT(= false); + void filemess(buf_T *buf, char_u *name, char_u *s, int attr) { int msg_scroll_save; @@ -329,6 +337,8 @@ readfile ( int using_b_ffname; int using_b_fname; + au_did_filetype = false; // reset before triggering any autocommands + curbuf->b_no_eol_lnum = 0; /* in case it was set by the previous read */ /* @@ -1957,20 +1967,29 @@ failed: * should not be overwritten: Set msg_scroll, restore its value if no * output was done. */ - msg_scroll = TRUE; - if (filtering) + msg_scroll = true; + if (filtering) { apply_autocmds_exarg(EVENT_FILTERREADPOST, NULL, sfname, - FALSE, curbuf, eap); - else if (newfile) + false, curbuf, eap); + } else if (newfile) { apply_autocmds_exarg(EVENT_BUFREADPOST, NULL, sfname, - FALSE, curbuf, eap); - else + false, curbuf, eap); + if (!au_did_filetype && *curbuf->b_p_ft != NUL) { + // EVENT_FILETYPE was not triggered but the buffer already has a + // filetype. Trigger EVENT_FILETYPE using the existing filetype. + apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft, curbuf->b_fname, + true, curbuf); + } + } else { apply_autocmds_exarg(EVENT_FILEREADPOST, sfname, sfname, - FALSE, NULL, eap); - if (msg_scrolled == n) + false, NULL, eap); + } + if (msg_scrolled == n) { msg_scroll = m; - if (aborting()) /* autocmds may abort script processing */ + } + if (aborting()) { // autocmds may abort script processing return FAIL; + } } if (recoverymode && error) @@ -4165,9 +4184,8 @@ static bool need_conversion(const char_u *fenc) same_encoding = (enc_flags != 0 && fenc_flags == enc_flags); } if (same_encoding) { - /* Specified encoding matches with 'encoding'. This requires - * conversion when 'encoding' is Unicode but not UTF-8. */ - return enc_unicode != 0; + // Specified file encoding matches UTF-8. + return false; } /* Encodings differ. However, conversion is not needed when 'enc' is any @@ -5063,10 +5081,10 @@ void buf_reload(buf_T *buf, int orig_mode) * the old contents. Can't use memory only, the file might be * too big. Use a hidden buffer to move the buffer contents to. */ - if (bufempty() || saved == FAIL) + if (bufempty() || saved == FAIL) { savebuf = NULL; - else { - /* Allocate a buffer without putting it in the buffer list. */ + } else { + // Allocate a buffer without putting it in the buffer list. savebuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY); if (savebuf != NULL && buf == curbuf) { /* Open the memline. */ @@ -6343,27 +6361,24 @@ aucmd_prepbuf ( aco->new_curbuf = curbuf; } -/* - * Cleanup after executing autocommands for a (hidden) buffer. - * Restore the window as it was (if possible). - */ -void -aucmd_restbuf ( - aco_save_T *aco /* structure holding saved values */ -) +/// Cleanup after executing autocommands for a (hidden) buffer. +/// Restore the window as it was (if possible). +/// +/// @param aco structure holding saved values +void aucmd_restbuf(aco_save_T *aco) { int dummy; if (aco->use_aucmd_win) { - --curbuf->b_nwindows; - /* Find "aucmd_win", it can't be closed, but it may be in another tab - * page. Do not trigger autocommands here. */ + curbuf->b_nwindows--; + // Find "aucmd_win", it can't be closed, but it may be in another tab page. + // Do not trigger autocommands here. block_autocmds(); if (curwin != aucmd_win) { FOR_ALL_TAB_WINDOWS(tp, wp) { if (wp == aucmd_win) { if (tp != curtab) { - goto_tabpage_tp(tp, TRUE, TRUE); + goto_tabpage_tp(tp, true, true); } win_goto(aucmd_win); goto win_found; @@ -6372,49 +6387,50 @@ aucmd_restbuf ( } win_found: - /* Remove the window and frame from the tree of frames. */ + // Remove the window and frame from the tree of frames. (void)winframe_remove(curwin, &dummy, NULL); win_remove(curwin, NULL); - aucmd_win_used = FALSE; - last_status(FALSE); /* may need to remove last status line */ - restore_snapshot(SNAP_AUCMD_IDX, FALSE); - (void)win_comp_pos(); /* recompute window positions */ + aucmd_win_used = false; + last_status(false); // may need to remove last status line + restore_snapshot(SNAP_AUCMD_IDX, false); + (void)win_comp_pos(); // recompute window positions unblock_autocmds(); - if (win_valid(aco->save_curwin)) + if (win_valid(aco->save_curwin)) { curwin = aco->save_curwin; - else - /* Hmm, original window disappeared. Just use the first one. */ + } else { + // Hmm, original window disappeared. Just use the first one. curwin = firstwin; - vars_clear(&aucmd_win->w_vars->dv_hashtab); /* free all w: variables */ - hash_init(&aucmd_win->w_vars->dv_hashtab); /* re-use the hashtab */ + } + vars_clear(&aucmd_win->w_vars->dv_hashtab); // free all w: variables + hash_init(&aucmd_win->w_vars->dv_hashtab); // re-use the hashtab curbuf = curwin->w_buffer; xfree(globaldir); globaldir = aco->globaldir; - /* the buffer contents may have changed */ + // the buffer contents may have changed check_cursor(); if (curwin->w_topline > curbuf->b_ml.ml_line_count) { curwin->w_topline = curbuf->b_ml.ml_line_count; curwin->w_topfill = 0; } } else { - /* restore curwin */ + // restore curwin if (win_valid(aco->save_curwin)) { - /* Restore the buffer which was previously edited by curwin, if - * it was changed, we are still the same window and the buffer is - * valid. */ + // Restore the buffer which was previously edited by curwin, if it was + // changed, we are still the same window and the buffer is valid. if (curwin == aco->new_curwin && curbuf != aco->new_curbuf && buf_valid(aco->new_curbuf) && aco->new_curbuf->b_ml.ml_mfp != NULL) { - if (curwin->w_s == &curbuf->b_s) + if (curwin->w_s == &curbuf->b_s) { curwin->w_s = &aco->new_curbuf->b_s; - --curbuf->b_nwindows; + } + curbuf->b_nwindows--; curbuf = aco->new_curbuf; curwin->w_buffer = curbuf; - ++curbuf->b_nwindows; + curbuf->b_nwindows++; } curwin = aco->save_curwin; @@ -6868,6 +6884,10 @@ BYPASS_AU: if (event == EVENT_BUFWIPEOUT && buf != NULL) aubuflocal_remove(buf); + if (retval == OK && event == EVENT_FILETYPE) { + au_did_filetype = true; + } + return retval; } diff --git a/src/nvim/fold.c b/src/nvim/fold.c index c84d738cb4..dcd32acfb7 100644 --- a/src/nvim/fold.c +++ b/src/nvim/fold.c @@ -165,7 +165,7 @@ bool hasFoldingWin( int use_level = FALSE; int maybe_small = FALSE; garray_T *gap; - int low_level = 0;; + int low_level = 0; checkupdate(win); /* diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c index dad0ac33cd..fccbd69dbf 100644 --- a/src/nvim/getchar.c +++ b/src/nvim/getchar.c @@ -113,7 +113,7 @@ static mapblock_T *first_abbr = NULL; /* first entry in abbrlist */ static int KeyNoremap = 0; /* remapping flags */ /* - * variables used by vgetorpeek() and flush_buffers() + * Variables used by vgetorpeek() and flush_buffers() * * typebuf.tb_buf[] contains all characters that are not consumed yet. * typebuf.tb_buf[typebuf.tb_off] is the first valid character. @@ -1583,29 +1583,27 @@ vungetc ( /* unget one character (can only be done once!) */ old_mouse_col = mouse_col; } -/* - * get a character: - * 1. from the stuffbuffer - * This is used for abbreviated commands like "D" -> "d$". - * Also used to redo a command for ".". - * 2. from the typeahead buffer - * Stores text obtained previously but not used yet. - * Also stores the result of mappings. - * Also used for the ":normal" command. - * 3. from the user - * This may do a blocking wait if "advance" is TRUE. - * - * if "advance" is TRUE (vgetc()): - * really get the character. - * KeyTyped is set to TRUE in the case the user typed the key. - * KeyStuffed is TRUE if the character comes from the stuff buffer. - * if "advance" is FALSE (vpeekc()): - * just look whether there is a character available. - * - * When "no_mapping" is zero, checks for mappings in the current mode. - * Only returns one byte (of a multi-byte character). - * K_SPECIAL and CSI may be escaped, need to get two more bytes then. - */ +/// get a character: +/// 1. from the stuffbuffer +/// This is used for abbreviated commands like "D" -> "d$". +/// Also used to redo a command for ".". +/// 2. from the typeahead buffer +/// Stores text obtained previously but not used yet. +/// Also stores the result of mappings. +/// Also used for the ":normal" command. +/// 3. from the user +/// This may do a blocking wait if "advance" is TRUE. +/// +/// if "advance" is TRUE (vgetc()): +/// really get the character. +/// KeyTyped is set to TRUE in the case the user typed the key. +/// KeyStuffed is TRUE if the character comes from the stuff buffer. +/// if "advance" is FALSE (vpeekc()): +/// just look whether there is a character available. +/// +/// When "no_mapping" is zero, checks for mappings in the current mode. +/// Only returns one byte (of a multi-byte character). +/// K_SPECIAL and CSI may be escaped, need to get two more bytes then. static int vgetorpeek(int advance) { int c, c1; diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 87fb928b30..acdda9b657 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -600,9 +600,9 @@ EXTERN int redraw_tabline INIT(= FALSE); /* need to redraw tabline */ * All buffers are linked in a list. 'firstbuf' points to the first entry, * 'lastbuf' to the last entry and 'curbuf' to the currently active buffer. */ -EXTERN buf_T *firstbuf INIT(= NULL); /* first buffer */ -EXTERN buf_T *lastbuf INIT(= NULL); /* last buffer */ -EXTERN buf_T *curbuf INIT(= NULL); /* currently active buffer */ +EXTERN buf_T *firstbuf INIT(= NULL); // first buffer +EXTERN buf_T *lastbuf INIT(= NULL); // last buffer +EXTERN buf_T *curbuf INIT(= NULL); // currently active buffer // Iterates over all buffers in the buffer list. # define FOR_ALL_BUFFERS(buf) for (buf_T *buf = firstbuf; buf != NULL; buf = buf->b_next) @@ -778,44 +778,38 @@ EXTERN int vr_lines_changed INIT(= 0); /* #Lines changed by "gR" so far */ # define DBCS_2BYTE 1 /* 2byte- */ # define DBCS_DEBUG -1 -EXTERN int enc_dbcs INIT(= 0); /* One of DBCS_xxx values if - DBCS encoding */ -EXTERN int enc_unicode INIT(= 0); /* 2: UCS-2 or UTF-16, 4: UCS-4 */ -EXTERN bool enc_utf8 INIT(= false); /* UTF-8 encoded Unicode */ -EXTERN int enc_latin1like INIT(= TRUE); /* 'encoding' is latin1 comp. */ -EXTERN int has_mbyte INIT(= 0); /* any multi-byte encoding */ +// mbyte flags that used to depend on 'encoding'. These are now deprecated, as +// 'encoding' is always "utf-8". Code that use them can be refactored to +// remove dead code. +#define enc_dbcs false +#define enc_utf8 true +#define has_mbyte true /// Encoding used when 'fencs' is set to "default" EXTERN char_u *fenc_default INIT(= NULL); -/* - * To speed up BYTELEN() we fill a table with the byte lengths whenever - * enc_utf8 or enc_dbcs changes. - */ -EXTERN char mb_bytelen_tab[256]; - -/* - * Function pointers, used to quickly get to the right function. Each has - * three possible values: latin_ (8-bit), utfc_ or utf_ (utf-8) and dbcs_ - * (DBCS). - * The value is set in mb_init(); - */ -/* length of char in bytes, including following composing chars */ -EXTERN int (*mb_ptr2len)(const char_u *p) INIT(= latin_ptr2len); -/* idem, with limit on string length */ -EXTERN int (*mb_ptr2len_len)(const char_u *p, int size) INIT(= latin_ptr2len_len); -/* byte length of char */ -EXTERN int (*mb_char2len)(int c) INIT(= latin_char2len); -/* convert char to bytes, return the length */ -EXTERN int (*mb_char2bytes)(int c, char_u *buf) INIT(= latin_char2bytes); -EXTERN int (*mb_ptr2cells)(const char_u *p) INIT(= latin_ptr2cells); -EXTERN int (*mb_ptr2cells_len)(const char_u *p, int size) INIT( - = latin_ptr2cells_len); -EXTERN int (*mb_char2cells)(int c) INIT(= latin_char2cells); -EXTERN int (*mb_off2cells)(unsigned off, unsigned max_off) INIT( - = latin_off2cells); -EXTERN int (*mb_ptr2char)(const char_u *p) INIT(= latin_ptr2char); -EXTERN int (*mb_head_off)(const char_u *base, const char_u *p) INIT(= latin_head_off); +// To speed up BYTELEN(); keep a lookup table to quickly get the length in +// bytes of a UTF-8 character from the first byte of a UTF-8 string. Bytes +// which are illegal when used as the first byte have a 1. The NUL byte has +// length 1. +EXTERN char utf8len_tab[256] INIT(= { + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 1, 1, +}); # if defined(USE_ICONV) && defined(DYNAMIC_ICONV) /* Pointers to functions and variables to be loaded at runtime */ @@ -1131,7 +1125,6 @@ EXTERN char_u e_invcmd[] INIT(= N_("E476: Invalid command")); EXTERN char_u e_isadir2[] INIT(= N_("E17: \"%s\" is a directory")); EXTERN char_u e_invjob[] INIT(= N_("E900: Invalid job id")); EXTERN char_u e_jobtblfull[] INIT(= N_("E901: Job table is full")); -EXTERN char_u e_jobexe[] INIT(= N_("E902: \"%s\" is not an executable")); EXTERN char_u e_jobspawn[] INIT(= N_( "E903: Process for command \"%s\" could not be spawned")); EXTERN char_u e_jobnotpty[] INIT(= N_("E904: Job is not connected to a pty")); diff --git a/src/nvim/hardcopy.c b/src/nvim/hardcopy.c index 6acf7f395a..cb0415a486 100644 --- a/src/nvim/hardcopy.c +++ b/src/nvim/hardcopy.c @@ -269,17 +269,25 @@ char_u *parse_printmbfont(void) * Returns an error message for an illegal option, NULL otherwise. * Only used for the printer at the moment... */ -static char_u *parse_list_options(char_u *option_str, option_table_T *table, int table_size) +static char_u *parse_list_options(char_u *option_str, option_table_T *table, + size_t table_size) { + option_table_T *old_opts; + char_u *ret = NULL; char_u *stringp; char_u *colonp; char_u *commap; char_u *p; - int idx = 0; /* init for GCC */ + size_t idx = 0; // init for GCC int len; - for (idx = 0; idx < table_size; ++idx) - table[idx].present = FALSE; + // Save the old values, so that they can be restored in case of an error. + old_opts = (option_table_T *)xmalloc(sizeof(option_table_T) * table_size); + + for (idx = 0; idx < table_size; idx++) { + old_opts[idx] = table[idx]; + table[idx].present = false; + } /* * Repeat for all comma separated parts. @@ -287,8 +295,10 @@ static char_u *parse_list_options(char_u *option_str, option_table_T *table, int stringp = option_str; while (*stringp) { colonp = vim_strchr(stringp, ':'); - if (colonp == NULL) - return (char_u *)N_("E550: Missing colon"); + if (colonp == NULL) { + ret = (char_u *)N_("E550: Missing colon"); + break; + } commap = vim_strchr(stringp, ','); if (commap == NULL) commap = option_str + STRLEN(option_str); @@ -299,15 +309,19 @@ static char_u *parse_list_options(char_u *option_str, option_table_T *table, int if (STRNICMP(stringp, table[idx].name, len) == 0) break; - if (idx == table_size) - return (char_u *)N_("E551: Illegal component"); + if (idx == table_size) { + ret = (char_u *)N_("E551: Illegal component"); + break; + } p = colonp + 1; table[idx].present = TRUE; if (table[idx].hasnum) { - if (!ascii_isdigit(*p)) - return (char_u *)N_("E552: digit expected"); + if (!ascii_isdigit(*p)) { + ret = (char_u *)N_("E552: digit expected"); + break; + } table[idx].number = getdigits_int(&p); } @@ -320,7 +334,15 @@ static char_u *parse_list_options(char_u *option_str, option_table_T *table, int ++stringp; } - return NULL; + if (ret != NULL) { + // Restore old options in case of error + for (idx = 0; idx < table_size; idx++) { + table[idx] = old_opts[idx]; + } + } + + xfree(old_opts); + return ret; } diff --git a/src/nvim/hashtab.c b/src/nvim/hashtab.c index 7d4ae61fc4..fa4077f22f 100644 --- a/src/nvim/hashtab.c +++ b/src/nvim/hashtab.c @@ -368,8 +368,7 @@ hash_T hash_hash(char_u *key) hash_T hash = *key; if (hash == 0) { - // Empty keys are not allowed, but we don't want to crash if we get one. - return (hash_T) 0; + return (hash_T)0; } // A simplistic algorithm that appears to do very well. diff --git a/src/nvim/lib/queue.h b/src/nvim/lib/queue.h index 9fcedf298f..ab9270081e 100644 --- a/src/nvim/lib/queue.h +++ b/src/nvim/lib/queue.h @@ -1,3 +1,8 @@ +// Queue implemented by circularly-linked list. +// +// Adapted from libuv. Simpler and more efficient than klist.h for implementing +// queues that support arbitrary insertion/removal. +// // Copyright (c) 2013, Ben Noordhuis <info@bnoordhuis.nl> // // Permission to use, copy, modify, and/or distribute this software for any @@ -28,6 +33,8 @@ typedef struct _queue { #define QUEUE_DATA(ptr, type, field) \ ((type *)((char *)(ptr) - offsetof(type, field))) +// Important note: mutating the list while QUEUE_FOREACH is +// iterating over its elements results in undefined behavior. #define QUEUE_FOREACH(q, h) \ for ( /* NOLINT(readability/braces) */ \ (q) = (h)->next; (q) != (h); (q) = (q)->next) @@ -56,17 +63,6 @@ static inline void QUEUE_ADD(QUEUE *const h, QUEUE *const n) h->prev->next = h; } -static inline void QUEUE_SPLIT(QUEUE *const h, QUEUE *const q, QUEUE *const n) - FUNC_ATTR_ALWAYS_INLINE -{ - n->prev = h->prev; - n->prev->next = n; - n->next = q; - h->prev = q->prev; - h->prev->next = h; - q->prev = n; -} - static inline void QUEUE_INSERT_HEAD(QUEUE *const h, QUEUE *const q) FUNC_ATTR_ALWAYS_INLINE { diff --git a/src/nvim/macros.h b/src/nvim/macros.h index 503daa9648..df2b431e92 100644 --- a/src/nvim/macros.h +++ b/src/nvim/macros.h @@ -122,32 +122,29 @@ /* Whether to draw the vertical bar on the right side of the cell. */ # define CURSOR_BAR_RIGHT (curwin->w_p_rl && (!(State & CMDLINE) || cmdmsg_rl)) -/* - * mb_ptr_adv(): advance a pointer to the next character, taking care of - * multi-byte characters if needed. - * mb_ptr_back(): backup a pointer to the previous character, taking care of - * multi-byte characters if needed. - * MB_COPY_CHAR(f, t): copy one char from "f" to "t" and advance the pointers. - * PTR2CHAR(): get character from pointer. - */ -/* Get the length of the character p points to */ -# define MB_PTR2LEN(p) (has_mbyte ? (*mb_ptr2len)(p) : 1) -/* Advance multi-byte pointer, skip over composing chars. */ -# define mb_ptr_adv(p) (p += has_mbyte ? (*mb_ptr2len)((char_u *)p) : 1) -/* Advance multi-byte pointer, do not skip over composing chars. */ -# define mb_cptr_adv(p) (p += \ - enc_utf8 ? utf_ptr2len(p) : has_mbyte ? (*mb_ptr2len)(p) : 1) -/* Backup multi-byte pointer. Only use with "p" > "s" ! */ -# define mb_ptr_back(s, p) (p -= has_mbyte ? ((*mb_head_off)((char_u *)s, (char_u *)p - 1) + 1) : 1) -/* get length of multi-byte char, not including composing chars */ -# define mb_cptr2len(p) (enc_utf8 ? utf_ptr2len(p) : (*mb_ptr2len)(p)) - -# define MB_COPY_CHAR(f, t) \ - if (has_mbyte) mb_copy_char((const char_u **)(&f), &t); \ - else *t++ = *f++ -# define MB_CHARLEN(p) (has_mbyte ? mb_charlen(p) : (int)STRLEN(p)) -# define MB_CHAR2LEN(c) (has_mbyte ? mb_char2len(c) : 1) -# define PTR2CHAR(p) (has_mbyte ? mb_ptr2char(p) : (int)*(p)) +// mb_ptr_adv(): advance a pointer to the next character, taking care of +// multi-byte characters if needed. +// mb_ptr_back(): backup a pointer to the previous character, taking care of +// multi-byte characters if needed. +// MB_COPY_CHAR(f, t): copy one char from "f" to "t" and advance the pointers. +// PTR2CHAR(): get character from pointer. + +// Get the length of the character p points to +# define MB_PTR2LEN(p) mb_ptr2len(p) +// Advance multi-byte pointer, skip over composing chars. +# define mb_ptr_adv(p) (p += mb_ptr2len((char_u *)p)) +// Advance multi-byte pointer, do not skip over composing chars. +# define mb_cptr_adv(p) (p += utf_ptr2len(p)) +// Backup multi-byte pointer. Only use with "p" > "s" ! +# define mb_ptr_back(s, p) (p -= mb_head_off((char_u *)s, (char_u *)p - 1) + 1) +// get length of multi-byte char, not including composing chars +# define mb_cptr2len(p) utf_ptr2len(p) + +# define MB_COPY_CHAR(f, t) mb_copy_char((const char_u **)(&f), &t); + +# define MB_CHARLEN(p) mb_charlen(p) +# define MB_CHAR2LEN(c) mb_char2len(c) +# define PTR2CHAR(p) mb_ptr2char(p) # define RESET_BINDING(wp) (wp)->w_p_scb = FALSE; (wp)->w_p_crb = FALSE @@ -161,4 +158,7 @@ #define RGB(r, g, b) ((r << 16) | (g << 8) | b) +#define STR_(x) #x +#define STR(x) STR_(x) + #endif // NVIM_MACROS_H diff --git a/src/nvim/main.c b/src/nvim/main.c index eb67483d08..c7a60d07c1 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -177,7 +177,6 @@ void early_init(void) fs_init(); handle_init(); - (void)mb_init(); // init mb_bytelen_tab[] to ones eval_init(); // init global variables // Init the table of Normal mode commands. @@ -512,7 +511,8 @@ int main(int argc, char **argv) if (p_im) need_start_insertmode = TRUE; - apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf); + set_vim_var_nr(VV_VIM_DID_ENTER, 1L); + apply_autocmds(EVENT_VIMENTER, NULL, NULL, false, curbuf); TIME_MSG("VimEnter autocommands"); /* When a startup script or session file setup for diff'ing and @@ -534,7 +534,7 @@ int main(int argc, char **argv) } TIME_MSG("before starting main loop"); - ILOG("Starting Neovim main loop."); + ILOG("starting main loop"); /* * Call the main command loop. This never returns. @@ -557,6 +557,8 @@ void getout(int exitval) if (exmode_active) exitval += ex_exitval; + set_vim_var_nr(VV_EXITING, exitval); + /* Position the cursor on the last screen line, below all the text */ ui_cursor_goto((int)Rows - 1, 0); @@ -1761,7 +1763,7 @@ static int process_env(char *env, bool is_viminit) do_cmdline_cmd((char *)initstr); sourcing_name = save_sourcing_name; sourcing_lnum = save_sourcing_lnum; - current_SID = save_sid;; + current_SID = save_sid; return OK; } return FAIL; diff --git a/src/nvim/mark.c b/src/nvim/mark.c index 2a65cf396b..6453c41415 100644 --- a/src/nvim/mark.c +++ b/src/nvim/mark.c @@ -473,7 +473,7 @@ static void fname2fnum(xfmark_T *fm) os_dirname(IObuff, IOSIZE); p = path_shorten_fname(NameBuff, IObuff); - /* buflist_new() will call fmarks_check_names() */ + // buflist_new() will call fmarks_check_names() (void)buflist_new(NameBuff, p, (linenr_T)1, 0); } } diff --git a/src/nvim/mbyte.c b/src/nvim/mbyte.c index e6312f9c00..2ecd86974e 100644 --- a/src/nvim/mbyte.c +++ b/src/nvim/mbyte.c @@ -1,68 +1,27 @@ -/* - * mbyte.c: Code specifically for handling multi-byte characters. - * Multibyte extensions partly by Sung-Hoon Baek - * - * The encoding used in the core is set with 'encoding'. When 'encoding' is - * changed, the following four variables are set (for speed). - * Currently these types of character encodings are supported: - * - * "enc_dbcs" When non-zero it tells the type of double byte character - * encoding (Chinese, Korean, Japanese, etc.). - * The cell width on the display is equal to the number of - * bytes. (exception: DBCS_JPNU with first byte 0x8e) - * Recognizing the first or second byte is difficult, it - * requires checking a byte sequence from the start. - * "enc_utf8" When TRUE use Unicode characters in UTF-8 encoding. - * The cell width on the display needs to be determined from - * the character value. - * Recognizing bytes is easy: 0xxx.xxxx is a single-byte - * char, 10xx.xxxx is a trailing byte, 11xx.xxxx is a leading - * byte of a multi-byte character. - * To make things complicated, up to six composing characters - * are allowed. These are drawn on top of the first char. - * For most editing the sequence of bytes with composing - * characters included is considered to be one character. - * "enc_unicode" When 2 use 16-bit Unicode characters (or UTF-16). - * When 4 use 32-but Unicode characters. - * Internally characters are stored in UTF-8 encoding to - * avoid NUL bytes. Conversion happens when doing I/O. - * "enc_utf8" will also be TRUE. - * - * "has_mbyte" is set when "enc_dbcs" or "enc_utf8" is non-zero. - * - * If none of these is TRUE, 8-bit bytes are used for a character. The - * encoding isn't currently specified (TODO). - * - * 'encoding' specifies the encoding used in the core. This is in registers, - * text manipulation, buffers, etc. Conversion has to be done when characters - * in another encoding are received or send: - * - * clipboard - * ^ - * | (2) - * V - * +---------------+ - * (1) | | (3) - * keyboard ----->| core |-----> display - * | | - * +---------------+ - * ^ - * | (4) - * V - * file - * - * (1) Typed characters arrive in the current locale. - * (2) Text will be made available with the encoding specified with - * 'encoding'. If this is not sufficient, system-specific conversion - * might be required. - * (3) For the GUI the correct font must be selected, no conversion done. - * (4) The encoding of the file is specified with 'fileencoding'. Conversion - * is to be done when it's different from 'encoding'. - * - * The ShaDa file is a special case: Only text is converted, not file names. - * Vim scripts may contain an ":encoding" command. This has an effect for - * some commands, like ":menutrans" - */ +/// mbyte.c: Code specifically for handling multi-byte characters. +/// Multibyte extensions partly by Sung-Hoon Baek +/// +/// The encoding used in nvim is always UTF-8. "enc_utf8" and "has_mbyte" is +/// thus always true. "enc_dbcs" is always zero. The 'encoding' option is +/// read-only and always reads "utf-8". +/// +/// The cell width on the display needs to be determined from the character +/// value. Recognizing UTF-8 bytes is easy: 0xxx.xxxx is a single-byte char, +/// 10xx.xxxx is a trailing byte, 11xx.xxxx is a leading byte of a multi-byte +/// character. To make things complicated, up to six composing characters +/// are allowed. These are drawn on top of the first char. For most editing +/// the sequence of bytes with composing characters included is considered to +/// be one character. +/// +/// UTF-8 is used everywhere in the core. This is in registers, text +/// manipulation, buffers, etc. Nvim core communicates with external plugins +/// and GUIs in this encoding. +/// +/// The encoding of a file is specified with 'fileencoding'. Conversion +/// is to be done when it's different from "utf-8". +/// +/// Vim scripts may contain an ":scriptencoding" command. This has an effect +/// for some commands, like ":menutrans". #include <inttypes.h> #include <stdbool.h> @@ -110,24 +69,6 @@ struct interval { #endif /* - * Lookup table to quickly get the length in bytes of a UTF-8 character from - * the first byte of a UTF-8 string. - * Bytes which are illegal when used as the first byte have a 1. - * The NUL byte has length 1. - */ -static char utf8len_tab[256] = -{ - 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, - 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, - 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6,1,1, -}; - -/* * Like utf8len_tab above, but using a zero for illegal lead bytes. */ static uint8_t utf8len_tab_zero[256] = @@ -385,207 +326,6 @@ int enc_canon_props(const char_u *name) } /* - * Set up for using multi-byte characters. - * Called in three cases: - * - by main() to initialize (p_enc == NULL) - * - by set_init_1() after 'encoding' was set to its default. - * - by do_set() when 'encoding' has been set. - * p_enc must have been passed through enc_canonize() already. - * Sets the "enc_unicode", "enc_utf8", "enc_dbcs" and "has_mbyte" flags. - * Fills mb_bytelen_tab[] and returns NULL when there are no problems. - * When there is something wrong: Returns an error message and doesn't change - * anything. - */ -char_u * mb_init(void) -{ - int i; - int idx; - int n; - int enc_dbcs_new = 0; -#if defined(USE_ICONV) && !defined(WIN3264) && !defined(WIN32UNIX) \ - && !defined(MACOS) -# define LEN_FROM_CONV - vimconv_T vimconv; - char_u *p; -#endif - - if (p_enc == NULL) { - /* Just starting up: set the whole table to one's. */ - for (i = 0; i < 256; ++i) - mb_bytelen_tab[i] = 1; - return NULL; - } else if (STRNCMP(p_enc, "8bit-", 5) == 0 - || STRNCMP(p_enc, "iso-8859-", 9) == 0) { - /* Accept any "8bit-" or "iso-8859-" name. */ - enc_unicode = 0; - enc_utf8 = false; - } else if (STRNCMP(p_enc, "2byte-", 6) == 0) { - /* Unix: accept any "2byte-" name, assume current locale. */ - enc_dbcs_new = DBCS_2BYTE; - } else if ((idx = enc_canon_search(p_enc)) >= 0) { - i = enc_canon_table[idx].prop; - if (i & ENC_UNICODE) { - /* Unicode */ - enc_utf8 = true; - if (i & (ENC_2BYTE | ENC_2WORD)) - enc_unicode = 2; - else if (i & ENC_4BYTE) - enc_unicode = 4; - else - enc_unicode = 0; - } else if (i & ENC_DBCS) { - /* 2byte, handle below */ - enc_dbcs_new = enc_canon_table[idx].codepage; - } else { - /* Must be 8-bit. */ - enc_unicode = 0; - enc_utf8 = false; - } - } else /* Don't know what encoding this is, reject it. */ - return e_invarg; - - if (enc_dbcs_new != 0) { - enc_unicode = 0; - enc_utf8 = false; - } - enc_dbcs = enc_dbcs_new; - has_mbyte = (enc_dbcs != 0 || enc_utf8); - - - /* Detect an encoding that uses latin1 characters. */ - enc_latin1like = (enc_utf8 || STRCMP(p_enc, "latin1") == 0 - || STRCMP(p_enc, "iso-8859-15") == 0); - - /* - * Set the function pointers. - */ - if (enc_utf8) { - mb_ptr2len = utfc_ptr2len; - mb_ptr2len_len = utfc_ptr2len_len; - mb_char2len = utf_char2len; - mb_char2bytes = utf_char2bytes; - mb_ptr2cells = utf_ptr2cells; - mb_ptr2cells_len = utf_ptr2cells_len; - mb_char2cells = utf_char2cells; - mb_off2cells = utf_off2cells; - mb_ptr2char = utf_ptr2char; - mb_head_off = utf_head_off; - } else if (enc_dbcs != 0) { - mb_ptr2len = dbcs_ptr2len; - mb_ptr2len_len = dbcs_ptr2len_len; - mb_char2len = dbcs_char2len; - mb_char2bytes = dbcs_char2bytes; - mb_ptr2cells = dbcs_ptr2cells; - mb_ptr2cells_len = dbcs_ptr2cells_len; - mb_char2cells = dbcs_char2cells; - mb_off2cells = dbcs_off2cells; - mb_ptr2char = dbcs_ptr2char; - mb_head_off = dbcs_head_off; - } else { - mb_ptr2len = latin_ptr2len; - mb_ptr2len_len = latin_ptr2len_len; - mb_char2len = latin_char2len; - mb_char2bytes = latin_char2bytes; - mb_ptr2cells = latin_ptr2cells; - mb_ptr2cells_len = latin_ptr2cells_len; - mb_char2cells = latin_char2cells; - mb_off2cells = latin_off2cells; - mb_ptr2char = latin_ptr2char; - mb_head_off = latin_head_off; - } - - /* - * Fill the mb_bytelen_tab[] for MB_BYTE2LEN(). - */ -#ifdef LEN_FROM_CONV - /* When 'encoding' is different from the current locale mblen() won't - * work. Use conversion to "utf-8" instead. */ - vimconv.vc_type = CONV_NONE; - if (enc_dbcs) { - p = enc_locale(); - if (p == NULL || STRCMP(p, p_enc) != 0) { - convert_setup(&vimconv, p_enc, (char_u *)"utf-8"); - vimconv.vc_fail = true; - } - xfree(p); - } -#endif - - for (i = 0; i < 256; ++i) { - /* Our own function to reliably check the length of UTF-8 characters, - * independent of mblen(). */ - if (enc_utf8) - n = utf8len_tab[i]; - else if (enc_dbcs == 0) - n = 1; - else { - char buf[MB_MAXBYTES + 1]; - if (i == NUL) /* just in case mblen() can't handle "" */ - n = 1; - else { - buf[0] = i; - buf[1] = 0; -#ifdef LEN_FROM_CONV - if (vimconv.vc_type != CONV_NONE) { - /* - * string_convert() should fail when converting the first - * byte of a double-byte character. - */ - p = string_convert(&vimconv, (char_u *)buf, NULL); - if (p != NULL) { - xfree(p); - n = 1; - } else - n = 2; - } else -#endif - { - /* - * mblen() should return -1 for invalid (means the leading - * multibyte) character. However there are some platforms - * where mblen() returns 0 for invalid character. - * Therefore, following condition includes 0. - */ - ignored = mblen(NULL, 0); /* First reset the state. */ - if (mblen(buf, (size_t)1) <= 0) - n = 2; - else - n = 1; - } - } - } - mb_bytelen_tab[i] = n; - } - -#ifdef LEN_FROM_CONV - convert_setup(&vimconv, NULL, NULL); -#endif - - /* The cell width depends on the type of multi-byte characters. */ - (void)init_chartab(); - - /* When enc_utf8 is set or reset, (de)allocate ScreenLinesUC[] */ - screenalloc(false); - -#ifdef HAVE_WORKING_LIBINTL - /* GNU gettext 0.10.37 supports this feature: set the codeset used for - * translated messages independently from the current locale. */ - (void)bind_textdomain_codeset(PROJECT_NAME, - enc_utf8 ? "utf-8" : (char *)p_enc); -#endif - - - /* Fire an autocommand to let people do custom font setup. This must be - * after Vim has been setup for the new encoding. */ - apply_autocmds(EVENT_ENCODINGCHANGED, NULL, (char_u *)"", FALSE, curbuf); - - /* Need to reload spell dictionaries */ - spell_reload(); - - return NULL; -} - -/* * Return the size of the BOM for the current buffer: * 0 - no BOM * 2 - UCS-2 or UTF-16 BOM @@ -597,20 +337,15 @@ int bomb_size(void) int n = 0; if (curbuf->b_p_bomb && !curbuf->b_p_bin) { - if (*curbuf->b_p_fenc == NUL) { - if (enc_utf8) { - if (enc_unicode != 0) - n = enc_unicode; - else - n = 3; - } - } else if (STRCMP(curbuf->b_p_fenc, "utf-8") == 0) + if (*curbuf->b_p_fenc == NUL + || STRCMP(curbuf->b_p_fenc, "utf-8") == 0) { n = 3; - else if (STRNCMP(curbuf->b_p_fenc, "ucs-2", 5) == 0 - || STRNCMP(curbuf->b_p_fenc, "utf-16", 6) == 0) + } else if (STRNCMP(curbuf->b_p_fenc, "ucs-2", 5) == 0 + || STRNCMP(curbuf->b_p_fenc, "utf-16", 6) == 0) { n = 2; - else if (STRNCMP(curbuf->b_p_fenc, "ucs-4", 5) == 0) + } else if (STRNCMP(curbuf->b_p_fenc, "ucs-4", 5) == 0) { n = 4; + } } return n; } @@ -804,99 +539,6 @@ int dbcs_class(unsigned lead, unsigned trail) } /* - * mb_char2len() function pointer. - * Return length in bytes of character "c". - * Returns 1 for a single-byte character. - */ -int latin_char2len(int c) -{ - return 1; -} - -static int dbcs_char2len(int c) -{ - if (c >= 0x100) - return 2; - return 1; -} - -/* - * mb_char2bytes() function pointer. - * Convert a character to its bytes. - * Returns the length in bytes. - */ -int latin_char2bytes(int c, char_u *buf) -{ - buf[0] = c; - return 1; -} - -static int dbcs_char2bytes(int c, char_u *buf) -{ - if (c >= 0x100) { - buf[0] = (unsigned)c >> 8; - buf[1] = c; - /* Never use a NUL byte, it causes lots of trouble. It's an invalid - * character anyway. */ - if (buf[1] == NUL) - buf[1] = '\n'; - return 2; - } - buf[0] = c; - return 1; -} - -/* - * mb_ptr2len() function pointer. - * Get byte length of character at "*p" but stop at a NUL. - * For UTF-8 this includes following composing characters. - * Returns 0 when *p is NUL. - */ -int latin_ptr2len(const char_u *p) -{ - return MB_BYTE2LEN(*p); -} - -static int dbcs_ptr2len(const char_u *p) -{ - int len; - - /* Check if second byte is not missing. */ - len = MB_BYTE2LEN(*p); - if (len == 2 && p[1] == NUL) - len = 1; - return len; -} - -/* - * mb_ptr2len_len() function pointer. - * Like mb_ptr2len(), but limit to read "size" bytes. - * Returns 0 for an empty string. - * Returns 1 for an illegal char or an incomplete byte sequence. - */ -int latin_ptr2len_len(const char_u *p, int size) -{ - if (size < 1 || *p == NUL) - return 0; - return 1; -} - -static int dbcs_ptr2len_len(const char_u *p, int size) -{ - int len; - - if (size < 1 || *p == NUL) - return 0; - if (size == 1) - return 1; - /* Check that second byte is not missing. */ - len = MB_BYTE2LEN(*p); - if (len == 2 && p[1] == NUL) - len = 1; - return len; -} - -/* * Return true if "c" is in "table". */ static bool intable(const struct interval *table, size_t n_items, int c) @@ -963,16 +605,8 @@ int utf_char2cells(int c) return 1; } -/* - * mb_ptr2cells() function pointer. - * Return the number of display cells character at "*p" occupies. - * This doesn't take care of unprintable characters, use ptr2cells() for that. - */ -int latin_ptr2cells(const char_u *p) -{ - return 1; -} - +/// Return the number of display cells character at "*p" occupies. +/// This doesn't take care of unprintable characters, use ptr2cells() for that. int utf_ptr2cells(const char_u *p) { int c; @@ -991,26 +625,9 @@ int utf_ptr2cells(const char_u *p) return 1; } -int dbcs_ptr2cells(const char_u *p) -{ - /* Number of cells is equal to number of bytes, except for euc-jp when - * the first byte is 0x8e. */ - if (enc_dbcs == DBCS_JPNU && *p == 0x8e) - return 1; - return MB_BYTE2LEN(*p); -} - -/* - * mb_ptr2cells_len() function pointer. - * Like mb_ptr2cells(), but limit string length to "size". - * For an empty string or truncated character returns 1. - */ -int latin_ptr2cells_len(const char_u *p, int size) -{ - return 1; -} - -static int utf_ptr2cells_len(const char_u *p, int size) +/// Like utf_ptr2cells(), but limit string length to "size". +/// For an empty string or truncated character returns 1. +int utf_ptr2cells_len(const char_u *p, int size) { int c; @@ -1030,35 +647,6 @@ static int utf_ptr2cells_len(const char_u *p, int size) return 1; } -static int dbcs_ptr2cells_len(const char_u *p, int size) -{ - /* Number of cells is equal to number of bytes, except for euc-jp when - * the first byte is 0x8e. */ - if (size <= 1 || (enc_dbcs == DBCS_JPNU && *p == 0x8e)) - return 1; - return MB_BYTE2LEN(*p); -} - -/* - * mb_char2cells() function pointer. - * Return the number of display cells character "c" occupies. - * Only takes care of multi-byte chars, not "^C" and such. - */ -int latin_char2cells(int c) -{ - return 1; -} - -static int dbcs_char2cells(int c) -{ - /* Number of cells is equal to number of bytes, except for euc-jp when - * the first byte is 0x8e. */ - if (enc_dbcs == DBCS_JPNU && ((unsigned)c >> 8) == 0x8e) - return 1; - /* use the first byte */ - return MB_BYTE2LEN((unsigned)c >> 8); -} - /// Calculate the number of cells occupied by string `str`. /// /// @param str The source string, may not be NULL, must be a NUL-terminated @@ -1075,51 +663,14 @@ size_t mb_string2cells(const char_u *str) return clen; } -/* - * mb_off2cells() function pointer. - * Return number of display cells for char at ScreenLines[off]. - * We make sure that the offset used is less than "max_off". - */ -int latin_off2cells(unsigned off, unsigned max_off) -{ - return 1; -} - -int dbcs_off2cells(unsigned off, unsigned max_off) -{ - /* never check beyond end of the line */ - if (off >= max_off) - return 1; - - /* Number of cells is equal to number of bytes, except for euc-jp when - * the first byte is 0x8e. */ - if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e) - return 1; - return MB_BYTE2LEN(ScreenLines[off]); -} - +/// Return number of display cells for char at ScreenLines[off]. +/// We make sure that the offset used is less than "max_off". int utf_off2cells(unsigned off, unsigned max_off) { return (off + 1 < max_off && ScreenLines[off + 1] == 0) ? 2 : 1; } /* - * mb_ptr2char() function pointer. - * Convert a byte sequence into a character. - */ -int latin_ptr2char(const char_u *p) -{ - return *p; -} - -static int dbcs_ptr2char(const char_u *p) -{ - if (MB_BYTE2LEN(*p) > 1 && p[1] != NUL) - return (p[0] << 8) + p[1]; - return *p; -} - -/* * Convert a UTF-8 byte sequence to a wide character. * If the sequence is illegal or truncated by a NUL the first byte is * returned. @@ -2065,68 +1616,9 @@ void show_utf8(void) msg(IObuff); } -/* - * mb_head_off() function pointer. - * Return offset from "p" to the first byte of the character it points into. - * If "p" points to the NUL at the end of the string return 0. - * Returns 0 when already at the first byte of a character. - */ -int latin_head_off(const char_u *base, const char_u *p) -{ - return 0; -} - -int dbcs_head_off(const char_u *base, const char_u *p) -{ - /* It can't be a trailing byte when not using DBCS, at the start of the - * string or the previous byte can't start a double-byte. */ - if (p <= base || MB_BYTE2LEN(p[-1]) == 1 || *p == NUL) { - return 0; - } - - /* This is slow: need to start at the base and go forward until the - * byte we are looking for. Return 1 when we went past it, 0 otherwise. */ - const char_u *q = base; - while (q < p) { - q += dbcs_ptr2len(q); - } - - return (q == p) ? 0 : 1; -} - -/* - * Special version of dbcs_head_off() that works for ScreenLines[], where - * single-width DBCS_JPNU characters are stored separately. - */ -int dbcs_screen_head_off(const char_u *base, const char_u *p) -{ - /* It can't be a trailing byte when not using DBCS, at the start of the - * string or the previous byte can't start a double-byte. - * For euc-jp an 0x8e byte in the previous cell always means we have a - * lead byte in the current cell. */ - if (p <= base - || (enc_dbcs == DBCS_JPNU && p[-1] == 0x8e) - || MB_BYTE2LEN(p[-1]) == 1 - || *p == NUL) - return 0; - - /* This is slow: need to start at the base and go forward until the - * byte we are looking for. Return 1 when we went past it, 0 otherwise. - * For DBCS_JPNU look out for 0x8e, which means the second byte is not - * stored as the next byte. */ - const char_u *q = base; - while (q < p) { - if (enc_dbcs == DBCS_JPNU && *q == 0x8e) { - ++q; - } - else { - q += dbcs_ptr2len(q); - } - } - - return (q == p) ? 0 : 1; -} - +/// Return offset from "p" to the first byte of the character it points into. +/// If "p" points to the NUL at the end of the string return 0. +/// Returns 0 when already at the first byte of a character. int utf_head_off(const char_u *base, const char_u *p) { int c; @@ -2232,26 +1724,20 @@ int mb_tail_off(char_u *base, char_u *p) if (*p == NUL) return 0; - if (enc_utf8) { - /* Find the last character that is 10xx.xxxx */ - for (i = 0; (p[i + 1] & 0xc0) == 0x80; ++i) - ; - /* Check for illegal sequence. */ - for (j = 0; p - j > base; ++j) - if ((p[-j] & 0xc0) != 0x80) - break; - if (utf8len_tab[p[-j]] != i + j + 1) - return 0; - return i; + // Find the last character that is 10xx.xxxx + for (i = 0; (p[i + 1] & 0xc0) == 0x80; i++) {} + + // Check for illegal sequence. + for (j = 0; p - j > base; j++) { + if ((p[-j] & 0xc0) != 0x80) { + break; + } } - /* It can't be the first byte if a double-byte when not using DBCS, at the - * end of the string or the byte can't start a double-byte. */ - if (enc_dbcs == 0 || p[1] == NUL || MB_BYTE2LEN(*p) == 1) + if (utf8len_tab[p[-j]] != i + j + 1) { return 0; - - /* Return 1 when on the lead byte, 0 when on the tail byte. */ - return 1 - dbcs_head_off(base, p); + } + return i; } /* @@ -2466,13 +1952,10 @@ int mb_fix_col(int col, int row) { col = check_col(col); row = check_row(row); - if (has_mbyte && ScreenLines != NULL && col > 0 - && ((enc_dbcs - && ScreenLines[LineOffset[row] + col] != NUL - && dbcs_screen_head_off(ScreenLines + LineOffset[row], - ScreenLines + LineOffset[row] + col)) - || (enc_utf8 && ScreenLines[LineOffset[row] + col] == 0))) + if (ScreenLines != NULL && col > 0 + && ScreenLines[LineOffset[row] + col] == 0) { return col - 1; + } return col; } diff --git a/src/nvim/mbyte.h b/src/nvim/mbyte.h index 0cfe2c4bab..2c92a0fbb2 100644 --- a/src/nvim/mbyte.h +++ b/src/nvim/mbyte.h @@ -9,8 +9,8 @@ * MB_BYTE2LEN_CHECK() can be used to count a special key as one byte. * Don't call MB_BYTE2LEN(b) with b < 0 or b > 255! */ -#define MB_BYTE2LEN(b) mb_bytelen_tab[b] -#define MB_BYTE2LEN_CHECK(b) (((b) < 0 || (b) > 255) ? 1 : mb_bytelen_tab[b]) +#define MB_BYTE2LEN(b) utf8len_tab[b] +#define MB_BYTE2LEN_CHECK(b) (((b) < 0 || (b) > 255) ? 1 : utf8len_tab[b]) /* properties used in enc_canon_table[] (first three mutually exclusive) */ #define ENC_8BIT 0x01 @@ -28,6 +28,18 @@ #define ENC_LATIN9 0x400 /* Latin9 */ #define ENC_MACROMAN 0x800 /* Mac Roman (not Macro Man! :-) */ +// TODO(bfredl): eventually we should keep only one of the namings +#define mb_ptr2len utfc_ptr2len +#define mb_ptr2len_len utfc_ptr2len_len +#define mb_char2len utf_char2len +#define mb_char2bytes utf_char2bytes +#define mb_ptr2cells utf_ptr2cells +#define mb_ptr2cells_len utf_ptr2cells_len +#define mb_char2cells utf_char2cells +#define mb_off2cells utf_off2cells +#define mb_ptr2char utf_ptr2char +#define mb_head_off utf_head_off + #ifdef INCLUDE_GENERATED_DECLARATIONS # include "mbyte.h.generated.h" #endif diff --git a/src/nvim/memline.c b/src/nvim/memline.c index 5505335769..a9a53ebca7 100644 --- a/src/nvim/memline.c +++ b/src/nvim/memline.c @@ -2340,14 +2340,13 @@ int ml_replace(linenr_T lnum, char_u *line, int copy) return OK; } -/* - * Delete line 'lnum' in the current buffer. - * - * Check: The caller of this function should probably also call - * deleted_lines() after this. - * - * return FAIL for failure, OK otherwise - */ +/// Delete line `lnum` in the current buffer. +/// +/// @note The caller of this function should probably also call +/// deleted_lines() after this. +/// +/// @param message Show "--No lines in buffer--" message. +/// @return FAIL for failure, OK otherwise int ml_delete(linenr_T lnum, int message) { ml_flush_line(curbuf); diff --git a/src/nvim/memory.c b/src/nvim/memory.c index 3e041be4d3..071ef335cf 100644 --- a/src/nvim/memory.c +++ b/src/nvim/memory.c @@ -283,18 +283,16 @@ size_t memcnt(const void *data, char c, size_t len) return cnt; } -/// The xstpcpy() function shall copy the string pointed to by src (including -/// the terminating NUL character) into the array pointed to by dst. +/// Copies the string pointed to by src (including the terminating NUL +/// character) into the array pointed to by dst. /// -/// The xstpcpy() function shall return a pointer to the terminating NUL -/// character copied into the dst buffer. This is the only difference with -/// strcpy(), which returns dst. +/// @returns pointer to the terminating NUL char copied into the dst buffer. +/// This is the only difference with strcpy(), which returns dst. /// -/// WARNING: If copying takes place between objects that overlap, the behavior is -/// undefined. +/// WARNING: If copying takes place between objects that overlap, the behavior +/// is undefined. /// -/// This is the Neovim version of stpcpy(3) as defined in POSIX 2008. We -/// don't require that supported platforms implement POSIX 2008, so we +/// Nvim version of POSIX 2008 stpcpy(3). We do not require POSIX 2008, so /// implement our own version. /// /// @param dst @@ -306,16 +304,15 @@ char *xstpcpy(char *restrict dst, const char *restrict src) return (char *)memcpy(dst, src, len + 1) + len; } -/// The xstpncpy() function shall copy not more than n bytes (bytes that follow -/// a NUL character are not copied) from the array pointed to by src to the -/// array pointed to by dst. +/// Copies not more than n bytes (bytes that follow a NUL character are not +/// copied) from the array pointed to by src to the array pointed to by dst. /// -/// If a NUL character is written to the destination, the xstpncpy() function -/// shall return the address of the first such NUL character. Otherwise, it -/// shall return &dst[maxlen]. +/// If a NUL character is written to the destination, xstpncpy() returns the +/// address of the first such NUL character. Otherwise, it shall return +/// &dst[maxlen]. /// -/// WARNING: If copying takes place between objects that overlap, the behavior is -/// undefined. +/// WARNING: If copying takes place between objects that overlap, the behavior +/// is undefined. /// /// WARNING: xstpncpy will ALWAYS write maxlen bytes. If src is shorter than /// maxlen, zeroes will be written to the remaining bytes. diff --git a/src/nvim/message.c b/src/nvim/message.c index 1de2347b12..3163a797ed 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -19,6 +19,7 @@ #include "nvim/fileio.h" #include "nvim/func_attr.h" #include "nvim/getchar.h" +#include "nvim/main.h" #include "nvim/mbyte.h" #include "nvim/memory.h" #include "nvim/misc1.h" @@ -581,6 +582,24 @@ bool emsgf(const char *const fmt, ...) return emsg(IObuff); } +static void msg_emsgf_event(void **argv) +{ + char *s = argv[0]; + (void)emsg((char_u *)s); + xfree(s); +} + +void msg_schedule_emsgf(const char *const fmt, ...) +{ + va_list ap; + va_start(ap, fmt); + vim_vsnprintf((char *)IObuff, IOSIZE, fmt, ap, NULL); + va_end(ap); + + char *s = xstrdup((char *)IObuff); + loop_schedule(&main_loop, event_create(1, msg_emsgf_event, 1, s)); +} + /* * Like msg(), but truncate to a single line if p_shm contains 't', or when * "force" is TRUE. This truncates in another way as for normal messages. @@ -701,14 +720,47 @@ int delete_first_msg(void) void ex_messages(exarg_T *eap) { struct msg_hist *p; + int c = 0; - msg_hist_off = TRUE; + if (STRCMP(eap->arg, "clear") == 0) { + int keep = eap->addr_count == 0 ? 0 : eap->line2; + + while (msg_hist_len > keep) { + (void)delete_first_msg(); + } + return; + } - for (p = first_msg_hist; p != NULL && !got_int; p = p->next) - if (p->msg != NULL) + if (*eap->arg != NUL) { + EMSG(_(e_invarg)); + return; + } + + msg_hist_off = true; + + p = first_msg_hist; + + if (eap->addr_count != 0) { + // Count total messages + for (; p != NULL && !got_int; p = p->next) { + c++; + } + + c -= eap->line2; + + // Skip without number of messages specified + for (p = first_msg_hist; p != NULL && !got_int && c > 0; p = p->next, c--) { + } + } + + // Display what was not skipped. + for (; p != NULL && !got_int; p = p->next) { + if (p->msg != NULL) { msg_attr(p->msg, p->attr); + } + } - msg_hist_off = FALSE; + msg_hist_off = false; } /* diff --git a/src/nvim/msgpack_rpc/helpers.c b/src/nvim/msgpack_rpc/helpers.c index 14e1c2d978..5137b375f0 100644 --- a/src/nvim/msgpack_rpc/helpers.c +++ b/src/nvim/msgpack_rpc/helpers.c @@ -21,7 +21,8 @@ static msgpack_zone zone; static msgpack_sbuffer sbuffer; #define HANDLE_TYPE_CONVERSION_IMPL(t, lt) \ - bool msgpack_rpc_to_##lt(const msgpack_object *const obj, t *const arg) \ + bool msgpack_rpc_to_##lt(const msgpack_object *const obj, \ + Integer *const arg) \ FUNC_ATTR_NONNULL_ALL \ { \ if (obj->type != MSGPACK_OBJECT_EXT \ @@ -44,12 +45,12 @@ static msgpack_sbuffer sbuffer; return true; \ } \ \ - void msgpack_rpc_from_##lt(t o, msgpack_packer *res) \ + void msgpack_rpc_from_##lt(Integer o, msgpack_packer *res) \ FUNC_ATTR_NONNULL_ARG(2) \ { \ msgpack_packer pac; \ msgpack_packer_init(&pac, &sbuffer, msgpack_sbuffer_write); \ - msgpack_pack_int64(&pac, o); \ + msgpack_pack_int64(&pac, (handle_T)o); \ msgpack_pack_ext(res, sbuffer.size, kObjectType##t); \ msgpack_pack_ext_body(res, sbuffer.data, sbuffer.size); \ msgpack_sbuffer_clear(&sbuffer); \ @@ -124,7 +125,7 @@ bool msgpack_rpc_to_object(const msgpack_object *const obj, Object *const arg) dest = conv(((String) { \ .size = obj->via.attr.size, \ .data = (obj->via.attr.ptr == NULL || obj->via.attr.size == 0 \ - ? NULL \ + ? xmemdupz("", 0) \ : xmemdupz(obj->via.attr.ptr, obj->via.attr.size)), \ })); \ break; \ @@ -213,17 +214,17 @@ bool msgpack_rpc_to_object(const msgpack_object *const obj, Object *const arg) switch (cur.mobj->via.ext.type) { case kObjectTypeBuffer: { cur.aobj->type = kObjectTypeBuffer; - ret = msgpack_rpc_to_buffer(cur.mobj, &cur.aobj->data.buffer); + ret = msgpack_rpc_to_buffer(cur.mobj, &cur.aobj->data.integer); break; } case kObjectTypeWindow: { cur.aobj->type = kObjectTypeWindow; - ret = msgpack_rpc_to_window(cur.mobj, &cur.aobj->data.window); + ret = msgpack_rpc_to_window(cur.mobj, &cur.aobj->data.integer); break; } case kObjectTypeTabpage: { cur.aobj->type = kObjectTypeTabpage; - ret = msgpack_rpc_to_tabpage(cur.mobj, &cur.aobj->data.tabpage); + ret = msgpack_rpc_to_tabpage(cur.mobj, &cur.aobj->data.integer); break; } } @@ -325,7 +326,9 @@ void msgpack_rpc_from_string(String result, msgpack_packer *res) FUNC_ATTR_NONNULL_ARG(2) { msgpack_pack_str(res, result.size); - msgpack_pack_str_body(res, result.data, result.size); + if (result.size > 0) { + msgpack_pack_str_body(res, result.data, result.size); + } } typedef struct { @@ -369,15 +372,15 @@ void msgpack_rpc_from_object(const Object result, msgpack_packer *const res) break; } case kObjectTypeBuffer: { - msgpack_rpc_from_buffer(cur.aobj->data.buffer, res); + msgpack_rpc_from_buffer(cur.aobj->data.integer, res); break; } case kObjectTypeWindow: { - msgpack_rpc_from_window(cur.aobj->data.window, res); + msgpack_rpc_from_window(cur.aobj->data.integer, res); break; } case kObjectTypeTabpage: { - msgpack_rpc_from_tabpage(cur.aobj->data.tabpage, res); + msgpack_rpc_from_tabpage(cur.aobj->data.integer, res); break; } case kObjectTypeArray: { diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 76e3829bee..312777d3b9 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -3646,10 +3646,11 @@ nv_gd ( size_t len; char_u *ptr; if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0 - || !find_decl(ptr, len, nchar == 'd', thisblock, 0)) + || !find_decl(ptr, len, nchar == 'd', thisblock, SEARCH_START)) { clearopbeep(oap); - else if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP) + } else if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP) { foldOpenCursor(); + } } /* diff --git a/src/nvim/ops.c b/src/nvim/ops.c index 388a72adce..dfa89acb1a 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -1936,8 +1936,7 @@ int swapchar(int op_type, pos_T *pos) if (c >= 0x80 && op_type == OP_ROT13) return FALSE; - if (op_type == OP_UPPER && c == 0xdf - && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0)) { + if (op_type == OP_UPPER && c == 0xdf) { pos_T sp = curwin->w_cursor; /* Special handling of German sharp s: change to "SS". */ @@ -4680,6 +4679,8 @@ int do_addsub(int op_type, pos_T *pos, int length, linenr_T Prenum1) theend: if (visual) { curwin->w_cursor = save_cursor; + } else if (did_change) { + curwin->w_set_curswant = true; } return did_change; diff --git a/src/nvim/option.c b/src/nvim/option.c index 81919c00d2..469aeecc23 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -288,6 +288,7 @@ static char *(p_fdm_values[]) = { "manual", "expr", "marker", "indent", static char *(p_fcl_values[]) = { "all", NULL }; static char *(p_cot_values[]) = { "menu", "menuone", "longest", "preview", "noinsert", "noselect", NULL }; +static char *(p_icm_values[]) = { "nosplit", "split", NULL }; #ifdef INCLUDE_GENERATED_DECLARATIONS # include "option.c.generated.h" @@ -780,14 +781,11 @@ void set_init_1(void) } fenc_default = p; - // Initialize multibyte (utf-8) handling - mb_init(); - - // Don't change &encoding when resetting to defaults with ":set all&". - opt_idx = findoption((char_u *)"encoding"); - if (opt_idx >= 0) { - options[opt_idx].flags |= P_NODEFAULT; - } +#ifdef HAVE_WORKING_LIBINTL + // GNU gettext 0.10.37 supports this feature: set the codeset used for + // translated messages independently from the current locale. + (void)bind_textdomain_codeset(PROJECT_NAME, (char *)p_enc); +#endif /* Set the default for 'helplang'. */ set_helplang_default(get_mess_lang()); @@ -1729,13 +1727,25 @@ do_set ( } if (flags & P_FLAGLIST) { - /* Remove flags that appear twice. */ - for (s = newval; *s; ++s) - if ((!(flags & P_COMMA) || *s != ',') - && vim_strchr(s + 1, *s) != NULL) { - STRMOVE(s, s + 1); - --s; + // Remove flags that appear twice. + for (s = newval; *s; s++) { + // if options have P_FLAGLIST and P_ONECOMMA such as + // 'whichwrap' + if (flags & P_ONECOMMA) { + if (*s != ',' && *(s + 1) == ',' + && vim_strchr(s + 2, *s) != NULL) { + // Remove the duplicated value and the next comma. + STRMOVE(s, s + 2); + s -= 2; + } + } else { + if ((!(flags & P_COMMA) || *s != ',') + && vim_strchr(s + 1, *s) != NULL) { + STRMOVE(s, s + 1); + s--; + } } + } } if (save_arg != NULL) /* number for 'whichwrap' */ @@ -2389,6 +2399,18 @@ static char *set_string_option(const int opt_idx, const char *const value, return r; } +/// Return true if "val" is a valid 'filetype' name. +/// Also used for 'syntax' and 'keymap'. +static bool valid_filetype(char_u *val) +{ + for (char_u *s = val; *s != NUL; s++) { + if (!ASCII_ISALNUM(*s) && vim_strchr((char_u *)".-_", *s) == NULL) { + return false; + } + } + return true; +} + /* * Handle string options that need some action to perform when changed. * Returns NULL for success, or an error message for an error. @@ -2527,7 +2549,7 @@ did_set_string_option ( else if (varp == &p_sbo) { if (check_opt_strings(p_sbo, p_scbopt_values, TRUE) != OK) errmsg = e_invarg; - } else if (varp == &p_ambw || (bool *)varp == &p_emoji) { + } else if (varp == &p_ambw || (int *)varp == &p_emoji) { // 'ambiwidth' if (check_opt_strings(p_ambw, p_ambw_values, false) != OK) { errmsg = e_invarg; @@ -2580,19 +2602,17 @@ did_set_string_option ( errmsg = e_invarg; /* 'encoding' and 'fileencoding' */ } else if (varp == &p_enc || gvarp == &p_fenc) { - if (varp == &p_enc && did_source_startup_scripts) { - errmsg = e_afterinit; - } else if (gvarp == &p_fenc) { - if (!MODIFIABLE(curbuf) && opt_flags != OPT_GLOBAL) + if (gvarp == &p_fenc) { + if (!MODIFIABLE(curbuf) && opt_flags != OPT_GLOBAL) { errmsg = e_modifiable; - else if (vim_strchr(*varp, ',') != NULL) - /* No comma allowed in 'fileencoding'; catches confusing it - * with 'fileencodings'. */ + } else if (vim_strchr(*varp, ',') != NULL) { + // No comma allowed in 'fileencoding'; catches confusing it + // with 'fileencodings'. errmsg = e_invarg; - else { - /* May show a "+" in the title now. */ + } else { + // May show a "+" in the title now. redraw_titles(); - /* Add 'fileencoding' to the swap file. */ + // Add 'fileencoding' to the swap file. ml_setflags(curbuf); } } @@ -2603,25 +2623,24 @@ did_set_string_option ( xfree(*varp); *varp = p; if (varp == &p_enc) { - errmsg = mb_init(); - redraw_titles(); + // only encoding=utf-8 allowed + if (STRCMP(p_enc, "utf-8") != 0) { + errmsg = e_invarg; + } } } - - if (errmsg == NULL) { - /* When 'keymap' is used and 'encoding' changes, reload the keymap - * (with another encoding). */ - if (varp == &p_enc && *curbuf->b_p_keymap != NUL) - (void)keymap_init(); - } } else if (varp == &p_penc) { /* Canonize printencoding if VIM standard one */ p = enc_canonize(p_penc); xfree(p_penc); p_penc = p; } else if (varp == &curbuf->b_p_keymap) { - /* load or unload key mapping tables */ - errmsg = keymap_init(); + if (!valid_filetype(*varp)) { + errmsg = e_invarg; + } else { + // load or unload key mapping tables + errmsg = keymap_init(); + } if (errmsg == NULL) { if (*curbuf->b_p_keymap != NUL) { @@ -3110,9 +3129,21 @@ did_set_string_option ( else if (gvarp == &p_cino) { /* TODO: recognize errors */ parse_cino(curbuf); - } - /* Options that are a list of flags. */ - else { + // inccommand + } else if (varp == &p_icm) { + if (check_opt_strings(p_icm, p_icm_values, false) != OK) { + errmsg = e_invarg; + } + } else if (gvarp == &p_ft) { + if (!valid_filetype(*varp)) { + errmsg = e_invarg; + } + } else if (gvarp == &p_syn) { + if (!valid_filetype(*varp)) { + errmsg = e_invarg; + } + } else { + // Options that are a list of flags. p = NULL; if (varp == &p_ww) p = (char_u *)WW_ALL; @@ -3706,23 +3737,19 @@ set_bool_option ( } } } - } - - /* - * When 'lisp' option changes include/exclude '-' in - * keyword characters. - */ - else if (varp == (char_u *)&(curbuf->b_p_lisp)) { - (void)buf_init_chartab(curbuf, FALSE); /* ignore errors */ - } - /* when 'title' changed, may need to change the title; same for 'icon' */ - else if ((int *)varp == &p_title) { - did_set_title(FALSE); + } else if (varp == (char_u *)&(curbuf->b_p_lisp)) { + // When 'lisp' option changes include/exclude '-' in + // keyword characters. + (void)buf_init_chartab(curbuf, false); // ignore errors + } else if ((int *)varp == &p_title) { + // when 'title' changed, may need to change the title; same for 'icon' + did_set_title(false); } else if ((int *)varp == &p_icon) { - did_set_title(TRUE); - } else if ((bool *)varp == &curbuf->b_changed) { - if (!value) - save_file_ff(curbuf); /* Buffer is unchanged */ + did_set_title(true); + } else if ((int *)varp == &curbuf->b_changed) { + if (!value) { + save_file_ff(curbuf); // Buffer is unchanged + } redraw_titles(); modified_was_set = value; } @@ -3750,11 +3777,12 @@ set_bool_option ( else if ((int *)varp == &curwin->w_p_wrap) { if (curwin->w_p_wrap) curwin->w_leftcol = 0; - } else if ((bool *)varp == &p_ea) { - if (p_ea && !old_value) + } else if ((int *)varp == &p_ea) { + if (p_ea && !old_value) { win_equal(curwin, false, 0); - } else if ((bool *)varp == &p_acd) { - /* Change directories when the 'acd' option is set now. */ + } + } else if ((int *)varp == &p_acd) { + // Change directories when the 'acd' option is set now. do_autochdir(); } /* 'diff' */ @@ -4513,10 +4541,11 @@ get_option_value ( else { /* Special case: 'modified' is b_changed, but we also want to consider * it set when 'ff' or 'fenc' changed. */ - if ((bool *)varp == &curbuf->b_changed) + if ((int *)varp == &curbuf->b_changed) { *numval = curbufIsChanged(); - else + } else { *numval = *(int *)varp; + } } return 1; } @@ -4884,14 +4913,15 @@ showoneopt ( varp = get_varp_scope(p, opt_flags); - /* for 'modified' we also need to check if 'ff' or 'fenc' changed. */ - if ((p->flags & P_BOOL) && ((bool *)varp == &curbuf->b_changed - ? !curbufIsChanged() : !*(bool *)varp)) + // for 'modified' we also need to check if 'ff' or 'fenc' changed. + if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed + ? !curbufIsChanged() : !*(int *)varp)) { MSG_PUTS("no"); - else if ((p->flags & P_BOOL) && *(int *)varp < 0) + } else if ((p->flags & P_BOOL) && *(int *)varp < 0) { MSG_PUTS("--"); - else + } else { MSG_PUTS(" "); + } MSG_PUTS(p->fullname); if (!(p->flags & P_BOOL)) { msg_putchar('='); diff --git a/src/nvim/option.h b/src/nvim/option.h index cf167cdd2c..60f14dea44 100644 --- a/src/nvim/option.h +++ b/src/nvim/option.h @@ -13,12 +13,12 @@ /// When OPT_GLOBAL and OPT_LOCAL are both missing, set both local and global /// values, get local value. typedef enum { - OPT_FREE = 1, ///< Free old value if it was allocated. - OPT_GLOBAL = 2, ///< Use global value. - OPT_LOCAL = 4, ///< Use local value. - OPT_MODELINE = 8, ///< Option in modeline. - OPT_WINONLY = 16, ///< Only set window-local options. - OPT_NOWIN = 32, ///< Don’t set window-local options. + OPT_FREE = 1, ///< Free old value if it was allocated. + OPT_GLOBAL = 2, ///< Use global value. + OPT_LOCAL = 4, ///< Use local value. + OPT_MODELINE = 8, ///< Option in modeline. + OPT_WINONLY = 16, ///< Only set window-local options. + OPT_NOWIN = 32, ///< Don’t set window-local options. } OptionFlags; #ifdef INCLUDE_GENERATED_DECLARATIONS diff --git a/src/nvim/option_defs.h b/src/nvim/option_defs.h index fdfcd1f428..6e89a093c8 100644 --- a/src/nvim/option_defs.h +++ b/src/nvim/option_defs.h @@ -1,8 +1,6 @@ #ifndef NVIM_OPTION_DEFS_H #define NVIM_OPTION_DEFS_H -#include <stdbool.h> - #include "nvim/types.h" #include "nvim/macros.h" // For EXTERN @@ -296,16 +294,16 @@ enum { * The following are actual variables for the options */ -EXTERN long p_aleph; /* 'aleph' */ -EXTERN bool p_acd; /* 'autochdir' */ -EXTERN char_u *p_ambw; /* 'ambiwidth' */ -EXTERN int p_ar; /* 'autoread' */ -EXTERN int p_aw; /* 'autowrite' */ -EXTERN int p_awa; /* 'autowriteall' */ -EXTERN char_u *p_bs; /* 'backspace' */ -EXTERN char_u *p_bg; /* 'background' */ -EXTERN int p_bk; /* 'backup' */ -EXTERN char_u *p_bkc; /* 'backupcopy' */ +EXTERN long p_aleph; // 'aleph' +EXTERN int p_acd; // 'autochdir' +EXTERN char_u *p_ambw; // 'ambiwidth' +EXTERN int p_ar; // 'autoread' +EXTERN int p_aw; // 'autowrite' +EXTERN int p_awa; // 'autowriteall' +EXTERN char_u *p_bs; // 'backspace' +EXTERN char_u *p_bg; // 'background' +EXTERN int p_bk; // 'backup' +EXTERN char_u *p_bkc; // 'backupcopy' EXTERN unsigned int bkc_flags; ///< flags from 'backupcopy' #ifdef IN_OPTION_C static char *(p_bkc_values[]) = @@ -403,9 +401,9 @@ static char *(p_dy_values[]) = { "lastline", "truncate", "uhex", NULL }; #define DY_TRUNCATE 0x002 #define DY_UHEX 0x004 EXTERN int p_ed; // 'edcompatible' -EXTERN bool p_emoji; // 'emoji' +EXTERN int p_emoji; // 'emoji' EXTERN char_u *p_ead; // 'eadirection' -EXTERN bool p_ea; // 'equalalways' +EXTERN int p_ea; // 'equalalways' EXTERN char_u *p_ep; // 'equalprg' EXTERN int p_eb; // 'errorbells' EXTERN char_u *p_ef; // 'errorfile' @@ -417,7 +415,7 @@ EXTERN int p_ek; // 'esckeys' EXTERN int p_exrc; // 'exrc' EXTERN char_u *p_fencs; // 'fileencodings' EXTERN char_u *p_ffs; // 'fileformats' -EXTERN bool p_fic; // 'fileignorecase' +EXTERN int p_fic; // 'fileignorecase' EXTERN char_u *p_fcl; // 'foldclose' EXTERN long p_fdls; // 'foldlevelstart' EXTERN char_u *p_fdo; // 'foldopen' @@ -470,6 +468,7 @@ EXTERN int p_icon; // 'icon' EXTERN char_u *p_iconstring; // 'iconstring' EXTERN int p_ic; // 'ignorecase' EXTERN int p_is; // 'incsearch' +EXTERN char_u *p_icm; // 'inccommand' EXTERN int p_im; // 'insertmode' EXTERN char_u *p_isf; // 'isfname' EXTERN char_u *p_isi; // 'isident' @@ -622,7 +621,7 @@ EXTERN long p_titlelen; ///< 'titlelen' EXTERN char_u *p_titleold; ///< 'titleold' EXTERN char_u *p_titlestring; ///< 'titlestring' EXTERN char_u *p_tsr; ///< 'thesaurus' -EXTERN bool p_tgc; ///< 'termguicolors' +EXTERN int p_tgc; ///< 'termguicolors' EXTERN int p_ttimeout; ///< 'ttimeout' EXTERN long p_ttm; ///< 'ttimeoutlen' EXTERN char_u *p_udir; ///< 'undodir' @@ -651,26 +650,26 @@ char_u *p_vfile = (char_u *)""; /* used before options are initialized */ #else extern char_u *p_vfile; /* 'verbosefile' */ #endif -EXTERN int p_warn; /* 'warn' */ -EXTERN char_u *p_wop; /* 'wildoptions' */ -EXTERN long p_window; /* 'window' */ -EXTERN char_u *p_wak; /* 'winaltkeys' */ -EXTERN char_u *p_wig; /* 'wildignore' */ -EXTERN char_u *p_ww; /* 'whichwrap' */ -EXTERN long p_wc; /* 'wildchar' */ -EXTERN long p_wcm; /* 'wildcharm' */ -EXTERN bool p_wic; ///< 'wildignorecase' -EXTERN char_u *p_wim; /* 'wildmode' */ -EXTERN int p_wmnu; /* 'wildmenu' */ -EXTERN long p_wh; /* 'winheight' */ -EXTERN long p_wmh; /* 'winminheight' */ -EXTERN long p_wmw; /* 'winminwidth' */ -EXTERN long p_wiw; /* 'winwidth' */ -EXTERN bool p_ws; /* 'wrapscan' */ -EXTERN int p_write; /* 'write' */ -EXTERN int p_wa; /* 'writeany' */ -EXTERN int p_wb; /* 'writebackup' */ -EXTERN long p_wd; /* 'writedelay' */ +EXTERN int p_warn; // 'warn' +EXTERN char_u *p_wop; // 'wildoptions' +EXTERN long p_window; // 'window' +EXTERN char_u *p_wak; // 'winaltkeys' +EXTERN char_u *p_wig; // 'wildignore' +EXTERN char_u *p_ww; // 'whichwrap' +EXTERN long p_wc; // 'wildchar' +EXTERN long p_wcm; // 'wildcharm' +EXTERN int p_wic; // 'wildignorecase' +EXTERN char_u *p_wim; // 'wildmode' +EXTERN int p_wmnu; // 'wildmenu' +EXTERN long p_wh; // 'winheight' +EXTERN long p_wmh; // 'winminheight' +EXTERN long p_wmw; // 'winminwidth' +EXTERN long p_wiw; // 'winwidth' +EXTERN int p_ws; // 'wrapscan' +EXTERN int p_write; // 'write' +EXTERN int p_wa; // 'writeany' +EXTERN int p_wb; // 'writebackup' +EXTERN long p_wd; // 'writedelay' EXTERN int p_force_on; ///< options that cannot be turned off. EXTERN int p_force_off; ///< options that cannot be turned on. diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 583c63614a..14707aaa6c 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -1188,6 +1188,14 @@ return { } }, { + full_name='inccommand', abbreviation='icm', + type='string', scope={'global'}, + vi_def=true, + redraw={'everything'}, + varname='p_icm', + defaults={if_true={vi=""}} + }, + { full_name='include', abbreviation='inc', type='string', scope={'global', 'buffer'}, vi_def=true, diff --git a/src/nvim/os/shell.c b/src/nvim/os/shell.c index 18ee008d66..9514936ad0 100644 --- a/src/nvim/os/shell.c +++ b/src/nvim/os/shell.c @@ -25,7 +25,9 @@ #include "nvim/charset.h" #include "nvim/strings.h" -#define DYNAMIC_BUFFER_INIT {NULL, 0, 0} +#define DYNAMIC_BUFFER_INIT { NULL, 0, 0 } +#define NS_1_SECOND 1000000000U // 1 second, in nanoseconds +#define OUT_DATA_THRESHOLD 1024 * 10U // 10KB, "a few screenfuls" of data. typedef struct { char *data; @@ -187,6 +189,9 @@ static int do_os_system(char **argv, bool silent, bool forward_output) { + out_data_decide_throttle(0); // Initialize throttle decider. + out_data_ring(NULL, 0); // Initialize output ring-buffer. + // the output buffer DynamicBuffer buf = DYNAMIC_BUFFER_INIT; stream_read_cb data_cb = system_data_cb; @@ -215,7 +220,7 @@ static int do_os_system(char **argv, proc->err = &err; if (!process_spawn(proc)) { loop_poll_events(&main_loop, 0); - // Failed, probably due to `sh` not being executable + // Failed, probably due to 'sh' not being executable if (!silent) { MSG_PUTS(_("\nCannot execute ")); msg_outtrans((char_u *)prog); @@ -253,11 +258,15 @@ static int do_os_system(char **argv, wstream_set_write_cb(&in, shell_write_cb, NULL); } - // invoke busy_start here so event_poll_until wont change the busy state for - // the UI + // Invoke busy_start here so LOOP_PROCESS_EVENTS_UNTIL will not change the + // busy state. ui_busy_start(); ui_flush(); int status = process_wait(proc, -1, NULL); + if (!got_int && out_data_decide_throttle(0)) { + // Last chunk of output was skipped; display it now. + out_data_ring(NULL, SIZE_MAX); + } ui_busy_stop(); // prepare the out parameters if requested @@ -309,15 +318,130 @@ static void system_data_cb(Stream *stream, RBuffer *buf, size_t count, dbuf->len += nread; } +/// Tracks output received for the current executing shell command, and displays +/// a pulsing "..." when output should be skipped. Tracking depends on the +/// synchronous/blocking nature of ":!". +// +/// Purpose: +/// 1. CTRL-C is more responsive. #1234 #5396 +/// 2. Improves performance of :! (UI, esp. TUI, is the bottleneck). +/// 3. Avoids OOM during long-running, spammy :!. +/// +/// Vim does not need this hack because: +/// 1. :! in terminal-Vim runs in cooked mode, so CTRL-C is caught by the +/// terminal and raises SIGINT out-of-band. +/// 2. :! in terminal-Vim uses a tty (Nvim uses pipes), so commands +/// (e.g. `git grep`) may page themselves. +/// +/// @param size Length of data, used with internal state to decide whether +/// output should be skipped. size=0 resets the internal state and +/// returns the previous decision. +/// +/// @returns true if output should be skipped and pulse was displayed. +/// Returns the previous decision if size=0. +static bool out_data_decide_throttle(size_t size) +{ + static uint64_t started = 0; // Start time of the current throttle. + static size_t received = 0; // Bytes observed since last throttle. + static size_t visit = 0; // "Pulse" count of the current throttle. + static char pulse_msg[] = { ' ', ' ', ' ', '\0' }; + + if (!size) { + bool previous_decision = (visit > 0); + started = received = visit = 0; + return previous_decision; + } + + received += size; + if (received < OUT_DATA_THRESHOLD + // Display at least the first chunk of output even if it is big. + || (!started && received < size + 1000)) { + return false; + } else if (!visit) { + started = os_hrtime(); + } else if (visit % 20 == 0) { + uint64_t since = os_hrtime() - started; + if (since > (3 * NS_1_SECOND)) { + received = visit = 0; + return false; + } + } + + visit++; + // Pulse "..." at the bottom of the screen. + size_t tick = (visit % 20 == 0) + ? 3 // Force all dots "..." on last visit. + : (visit % 4); + pulse_msg[0] = (tick == 0) ? ' ' : '.'; + pulse_msg[1] = (tick == 0 || 1 == tick) ? ' ' : '.'; + pulse_msg[2] = (tick == 0 || 1 == tick || 2 == tick) ? ' ' : '.'; + if (visit == 1) { + screen_del_lines(0, 0, 1, (int)Rows, NULL); + } + int lastrow = (int)Rows - 1; + screen_puts_len((char_u *)pulse_msg, ARRAY_SIZE(pulse_msg), lastrow, 0, 0); + ui_flush(); + return true; +} + +/// Saves output in a quasi-ringbuffer. Used to ensure the last ~page of +/// output for a shell-command is always displayed. +/// +/// Init mode: Resets the internal state. +/// output = NULL +/// size = 0 +/// Print mode: Displays the current saved data. +/// output = NULL +/// size = SIZE_MAX +/// +/// @param output Data to save, or NULL to invoke a special mode. +/// @param size Length of `output`. +static void out_data_ring(char *output, size_t size) +{ +#define MAX_CHUNK_SIZE (OUT_DATA_THRESHOLD / 2) + static char last_skipped[MAX_CHUNK_SIZE]; // Saved output. + static size_t last_skipped_len = 0; + + assert(output != NULL || (size == 0 || size == SIZE_MAX)); + + if (output == NULL && size == 0) { // Init mode + last_skipped_len = 0; + return; + } + + if (output == NULL && size == SIZE_MAX) { // Print mode + out_data_append_to_screen(last_skipped, last_skipped_len, true); + return; + } + + // This is basically a ring-buffer... + if (size >= MAX_CHUNK_SIZE) { // Save mode + size_t start = size - MAX_CHUNK_SIZE; + memcpy(last_skipped, output + start, MAX_CHUNK_SIZE); + last_skipped_len = MAX_CHUNK_SIZE; + } else if (size > 0) { + // Length of the old data that can be kept. + size_t keep_len = MIN(last_skipped_len, MAX_CHUNK_SIZE - size); + size_t keep_start = last_skipped_len - keep_len; + // Shift the kept part of the old data to the start. + if (keep_start) { + memmove(last_skipped, last_skipped + keep_start, keep_len); + } + // Copy the entire new data to the remaining space. + memcpy(last_skipped + keep_len, output, size); + last_skipped_len = keep_len + size; + } +} + /// Continue to append data to last screen line. /// /// @param output Data to append to screen lines. /// @param remaining Size of data. /// @param new_line If true, next data output will be on a new line. -static void append_to_screen_end(char *output, size_t remaining, bool new_line) +static void out_data_append_to_screen(char *output, size_t remaining, + bool new_line) { - // Column of last row to start appending data to. - static colnr_T last_col = 0; + static colnr_T last_col = 0; // Column of last row to append to. size_t off = 0; int last_row = (int)Rows - 1; @@ -370,7 +494,14 @@ static void out_data_cb(Stream *stream, RBuffer *buf, size_t count, void *data, size_t cnt; char *ptr = rbuffer_read_ptr(buf, &cnt); - append_to_screen_end(ptr, cnt, eof); + if (ptr != NULL && cnt > 0 + && out_data_decide_throttle(cnt)) { // Skip output above a threshold. + // Save the skipped output. If it is the final chunk, we display it later. + out_data_ring(ptr, cnt); + } else { + out_data_append_to_screen(ptr, cnt, eof); + } + if (cnt) { rbuffer_consumed(buf, cnt); } @@ -548,8 +679,8 @@ static void shell_write_cb(Stream *stream, void *data, int status) if (status) { // Can happen if system() tries to send input to a shell command that was // backgrounded (:call system("cat - &", "foo")). #3529 #5241 - EMSG2(_("E5677: Error writing input to shell-command: %s"), - uv_err_name(status)); + msg_schedule_emsgf(_("E5677: Error writing input to shell-command: %s"), + uv_err_name(status)); } if (stream->closed) { // Process may have exited before this write. ELOG("stream was already closed"); diff --git a/src/nvim/po/CMakeLists.txt b/src/nvim/po/CMakeLists.txt index 184c4894b9..d2b62f89a0 100644 --- a/src/nvim/po/CMakeLists.txt +++ b/src/nvim/po/CMakeLists.txt @@ -22,16 +22,14 @@ if(HAVE_WORKING_LIBINTL AND GETTEXT_FOUND AND XGETTEXT_PRG AND ICONV_PRG) ko.UTF-8 nl no - pl + pl.UTF-8 pt_BR ru sk sv uk vi - zh_CN zh_CN.UTF-8 - zh_TW zh_TW.UTF-8) set(NEOVIM_RELATIVE_SOURCES) @@ -48,7 +46,7 @@ if(HAVE_WORKING_LIBINTL AND GETTEXT_FOUND AND XGETTEXT_PRG AND ICONV_PRG) -DXGETTEXT_PRG=${XGETTEXT_PRG} -DPOT_FILE=${NVIM_POT} -DSEARCH_DIR=${CMAKE_CURRENT_SOURCE_DIR} - "'-DSOURCES=${NEOVIM_RELATIVE_SOURCES}'" + "\"-DSOURCES=${NEOVIM_RELATIVE_SOURCES}\"" -P ${PROJECT_SOURCE_DIR}/cmake/RunXgettext.cmake DEPENDS ${NEOVIM_SOURCES}) @@ -143,27 +141,9 @@ if(HAVE_WORKING_LIBINTL AND GETTEXT_FOUND AND XGETTEXT_PRG AND ICONV_PRG) BuildPoIconv(cs ISO-8859-2 cp1250) BuildMo(cs.cp1250) - BuildPoIconv(pl ISO-8859-2 cp1250) - BuildMo(pl.cp1250) - - BuildPoIconv(pl ISO-8859-2 UTF-8) - BuildMo(pl.UTF-8) - BuildPoIconv(sk ISO-8859-2 cp1250) BuildMo(sk.cp1250) - BuildPoIconv(ru UTF-8 cp1251) - BuildMo(ru.cp1251) - - BuildPoIconv(uk UTF-8 cp1251) - BuildMo(uk.cp1251) - - BuildPoIconvGeneric(ko ko.UTF-8 ko UTF-8 euc-kr) - BuildMo(ko) - - BuildPoIconvGenericWithCharset(zh_CN.cp936 zh_CN zh_CN.cp936 gb2312 cp936 gbk) - BuildMo(zh_CN.cp936) - add_custom_target(update-po-nb COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/no.po ${CMAKE_CURRENT_SOURCE_DIR}/nb.po @@ -172,15 +152,6 @@ if(HAVE_WORKING_LIBINTL AND GETTEXT_FOUND AND XGETTEXT_PRG AND ICONV_PRG) CheckPo(nb) BuildMo(nb) - add_executable(sjiscorr sjiscorr.c) - add_custom_target(update-po-ja.sjis - COMMAND iconv -f utf-8 -t cp932 ${CMAKE_CURRENT_SOURCE_DIR}/ja.po | - $<TARGET_FILE:sjiscorr> > ${CMAKE_CURRENT_SOURCE_DIR}/ja.sjis.po - DEPENDS ja.po sjiscorr) - list(APPEND UPDATE_PO_TARGETS update-po-ja.sjis) - CheckPo(ja.sjis) - BuildMo(ja.sjis) - foreach(LANGUAGE ${LANGUAGES}) set(poFile "${CMAKE_CURRENT_SOURCE_DIR}/${LANGUAGE}.po") diff --git a/src/nvim/po/af.po b/src/nvim/po/af.po index 8f06ed178c..eb6be42688 100644 --- a/src/nvim/po/af.po +++ b/src/nvim/po/af.po @@ -2722,11 +2722,6 @@ msgstr "E49: Ongeldige rolgrootte" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/ca.po b/src/nvim/po/ca.po index 2b0d7611d0..7d32db9f97 100644 --- a/src/nvim/po/ca.po +++ b/src/nvim/po/ca.po @@ -2717,11 +2717,6 @@ msgstr "E49: La distncia de desplaament no s vlida" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/cs.cp1250.po b/src/nvim/po/cs.cp1250.po index 339dfe6ae5..112e949815 100644 --- a/src/nvim/po/cs.cp1250.po +++ b/src/nvim/po/cs.cp1250.po @@ -2763,11 +2763,6 @@ msgstr "E49: Chybn hodnota volby 'scroll'" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/cs.po b/src/nvim/po/cs.po index 5c19eecf32..3839230df2 100644 --- a/src/nvim/po/cs.po +++ b/src/nvim/po/cs.po @@ -2763,11 +2763,6 @@ msgstr "E49: Chybn hodnota volby 'scroll'" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/de.po b/src/nvim/po/de.po index 4950533a21..f04d3be4b4 100644 --- a/src/nvim/po/de.po +++ b/src/nvim/po/de.po @@ -2137,11 +2137,6 @@ msgstr "E900: Ungltige Job-ID" msgid "E901: Job table is full" msgstr "E901: Job-Tabelle ist voll" -#: ../globals.h:1021 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "E902: \"%s\" ist nicht ausfhrbar" - #: ../globals.h:1023 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/en_GB.po b/src/nvim/po/en_GB.po index 41e4cd895d..00a05195b4 100644 --- a/src/nvim/po/en_GB.po +++ b/src/nvim/po/en_GB.po @@ -2623,11 +2623,6 @@ msgstr "" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/eo.po b/src/nvim/po/eo.po index 8a3cd50406..d0a47d6e9b 100644 --- a/src/nvim/po/eo.po +++ b/src/nvim/po/eo.po @@ -2697,11 +2697,6 @@ msgstr "E49: Nevalida grando de rulumo" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/es.po b/src/nvim/po/es.po index 9a3bfa6894..ed96e4de94 100644 --- a/src/nvim/po/es.po +++ b/src/nvim/po/es.po @@ -2748,11 +2748,6 @@ msgstr "E49: La longitud de desplazamiento no es válida" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/fi.po b/src/nvim/po/fi.po index 6dfaa78a77..d30faeb554 100644 --- a/src/nvim/po/fi.po +++ b/src/nvim/po/fi.po @@ -2691,11 +2691,6 @@ msgstr "E49: Virheellinen vierityskoko" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/fr.po b/src/nvim/po/fr.po index cd9f5a7eb2..bf0610de02 100644 --- a/src/nvim/po/fr.po +++ b/src/nvim/po/fr.po @@ -2879,11 +2879,6 @@ msgstr "E49: Valeur de dfilement invalide" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/ga.po b/src/nvim/po/ga.po index d94b788449..761539039d 100644 --- a/src/nvim/po/ga.po +++ b/src/nvim/po/ga.po @@ -2684,11 +2684,6 @@ msgstr "E49: Mid neamhbhail scrollaithe" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/it.po b/src/nvim/po/it.po index 119a8f02ff..6c62262675 100644 --- a/src/nvim/po/it.po +++ b/src/nvim/po/it.po @@ -2704,11 +2704,6 @@ msgstr "E900: 'Job id' non valido" msgid "E901: Job table is full" msgstr "E901: Job table piena" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "E902: \"%s\" non un esegubile" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/ja.euc-jp.po b/src/nvim/po/ja.euc-jp.po index e8d60d4438..c6425324b1 100644 --- a/src/nvim/po/ja.euc-jp.po +++ b/src/nvim/po/ja.euc-jp.po @@ -2684,11 +2684,6 @@ msgstr "E49: ̵ʥ̤Ǥ" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/ja.po b/src/nvim/po/ja.po index fd3690f9bf..e12cfb7e70 100644 --- a/src/nvim/po/ja.po +++ b/src/nvim/po/ja.po @@ -2683,11 +2683,6 @@ msgstr "E49: 無効なスクロール量です" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/ja.sjis.po b/src/nvim/po/ja.sjis.po deleted file mode 100644 index c9fd35292c..0000000000 --- a/src/nvim/po/ja.sjis.po +++ /dev/null @@ -1,8219 +0,0 @@ -# Japanese translation for Vim -# -# Do ":help uganda" in Vim to read copying and usage conditions. -# Do ":help credits" in Vim to see a list of people who contributed. -# -# Copyright (C) 2001-2016 MURAOKA Taro <koron.kaoriya@gmail.com>, -# vim-jp (http://vim-jp.org/) -# -# THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE. -# -# Original translations. -# -msgid "" -msgstr "" -"Project-Id-Version: Vim 7.4\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-01 09:02+0900\n" -"PO-Revision-Date: 2016-02-01 09:08+0900\n" -"Last-Translator: MURAOKA Taro <koron.kaoriya@gmail.com>\n" -"Language-Team: vim-jpj (https://github.com/vim-jp/lang-ja)\n" -"Language: Japanese\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=cp932\n" -"Content-Transfer-Encoding: 8-bit\n" - -#: ../api/private/helpers.c:201 -#, fuzzy -msgid "Unable to get option value" -msgstr "IvV̒l͎擾ł܂" - -#: ../api/private/helpers.c:204 -msgid "internal error: unknown option type" -msgstr "G[: m̃IvV^ł" - -#: ../buffer.c:92 -msgid "[Location List]" -msgstr "[P[VXg]" - -#: ../buffer.c:93 -msgid "[Quickfix List]" -msgstr "[QuickfixXg]" - -#: ../buffer.c:94 -msgid "E855: Autocommands caused command to abort" -msgstr "E855: autocommandR}h̒~N܂" - -#: ../buffer.c:135 -msgid "E82: Cannot allocate any buffer, exiting..." -msgstr "E82: obt@1쐬łȂ̂, I܂..." - -#: ../buffer.c:138 -msgid "E83: Cannot allocate buffer, using other one..." -msgstr "E83: obt@쐬łȂ̂, ̂gp܂..." - -#: ../buffer.c:763 -msgid "E515: No buffers were unloaded" -msgstr "E515: ꂽobt@͂܂" - -#: ../buffer.c:765 -msgid "E516: No buffers were deleted" -msgstr "E516: 폜ꂽobt@͂܂" - -#: ../buffer.c:767 -msgid "E517: No buffers were wiped out" -msgstr "E517: jꂽobt@͂܂" - -#: ../buffer.c:772 -msgid "1 buffer unloaded" -msgstr "1 ̃obt@܂" - -#: ../buffer.c:774 -#, c-format -msgid "%d buffers unloaded" -msgstr "%d ̃obt@܂" - -#: ../buffer.c:777 -msgid "1 buffer deleted" -msgstr "1 ̃obt@폜܂" - -#: ../buffer.c:779 -#, c-format -msgid "%d buffers deleted" -msgstr "%d ̃obt@폜܂" - -#: ../buffer.c:782 -msgid "1 buffer wiped out" -msgstr "1 ̃obt@j܂" - -#: ../buffer.c:784 -#, c-format -msgid "%d buffers wiped out" -msgstr "%d ̃obt@j܂" - -#: ../buffer.c:806 -msgid "E90: Cannot unload last buffer" -msgstr "E90: Ō̃obt@͉ł܂" - -#: ../buffer.c:874 -msgid "E84: No modified buffer found" -msgstr "E84: ύXꂽobt@͂܂" - -#. back where we started, didn't find anything. -#: ../buffer.c:903 -msgid "E85: There is no listed buffer" -msgstr "E85: Xg\\obt@͂܂" - -#: ../buffer.c:913 -#, c-format -msgid "E86: Buffer %<PRId64> does not exist" -msgstr "E86: obt@ %<PRId64> ͂܂" - -#: ../buffer.c:915 -msgid "E87: Cannot go beyond last buffer" -msgstr "E87: Ō̃obt@zĈړ͂ł܂" - -#: ../buffer.c:917 -msgid "E88: Cannot go before first buffer" -msgstr "E88: ŏ̃obt@Oւ͈ړł܂" - -#: ../buffer.c:945 -#, c-format -msgid "" -"E89: No write since last change for buffer %<PRId64> (add ! to override)" -msgstr "E89: obt@ %<PRId64> ̕ύX͕ۑĂ܂ (! ŕύXj)" - -#. wrap around (may cause duplicates) -#: ../buffer.c:1423 -msgid "W14: Warning: List of file names overflow" -msgstr "W14: x: t@C̃Xg߂܂" - -#: ../buffer.c:1555 ../quickfix.c:3361 -#, c-format -msgid "E92: Buffer %<PRId64> not found" -msgstr "E92: obt@ %<PRId64> ܂" - -#: ../buffer.c:1798 -#, c-format -msgid "E93: More than one match for %s" -msgstr "E93: %s ɕ̊Y܂" - -#: ../buffer.c:1800 -#, c-format -msgid "E94: No matching buffer for %s" -msgstr "E94: %s ɊYobt@͂܂ł" - -#: ../buffer.c:2161 -#, c-format -msgid "line %<PRId64>" -msgstr "s %<PRId64>" - -#: ../buffer.c:2233 -msgid "E95: Buffer with this name already exists" -msgstr "E95: ̖Õobt@͊ɂ܂" - -#: ../buffer.c:2498 -msgid " [Modified]" -msgstr " [ύX]" - -#: ../buffer.c:2501 -msgid "[Not edited]" -msgstr "[ҏW]" - -#: ../buffer.c:2504 -msgid "[New file]" -msgstr "[Vt@C]" - -#: ../buffer.c:2505 -msgid "[Read errors]" -msgstr "[ǍG[]" - -#: ../buffer.c:2506 ../buffer.c:3217 ../fileio.c:1807 ../screen.c:4895 -msgid "[RO]" -msgstr "[ǐ]" - -#: ../buffer.c:2507 ../fileio.c:1807 -msgid "[readonly]" -msgstr "[Ǎp]" - -#: ../buffer.c:2524 -#, c-format -msgid "1 line --%d%%--" -msgstr "1 s --%d%%--" - -#: ../buffer.c:2526 -#, c-format -msgid "%<PRId64> lines --%d%%--" -msgstr "%<PRId64> s --%d%%--" - -#: ../buffer.c:2530 -#, c-format -msgid "line %<PRId64> of %<PRId64> --%d%%-- col " -msgstr "s %<PRId64> (S %<PRId64>) --%d%%-- col " - -#: ../buffer.c:2632 ../buffer.c:4292 ../memline.c:1554 -msgid "[No Name]" -msgstr "[]" - -#. must be a help buffer -#: ../buffer.c:2667 -msgid "help" -msgstr "wv" - -#: ../buffer.c:3225 ../screen.c:4883 -msgid "[Help]" -msgstr "[wv]" - -#: ../buffer.c:3254 ../screen.c:4887 -msgid "[Preview]" -msgstr "[vr[]" - -#: ../buffer.c:3528 -msgid "All" -msgstr "S" - -#: ../buffer.c:3528 -msgid "Bot" -msgstr "" - -#: ../buffer.c:3531 -msgid "Top" -msgstr "擪" - -#: ../buffer.c:4244 -msgid "" -"\n" -"# Buffer list:\n" -msgstr "" -"\n" -"# obt@Xg:\n" - -#: ../buffer.c:4289 -msgid "[Scratch]" -msgstr "[]" - -#: ../buffer.c:4529 -msgid "" -"\n" -"--- Signs ---" -msgstr "" -"\n" -"--- TC ---" - -#: ../buffer.c:4538 -#, c-format -msgid "Signs for %s:" -msgstr "%s ̃TC:" - -#: ../buffer.c:4543 -#, c-format -msgid " line=%<PRId64> id=%d name=%s" -msgstr " s=%<PRId64> ʎq=%d O=%s" - -#: ../cursor_shape.c:68 -msgid "E545: Missing colon" -msgstr "E545: R܂" - -#: ../cursor_shape.c:70 ../cursor_shape.c:94 -msgid "E546: Illegal mode" -msgstr "E546: sȃ[hł" - -#: ../cursor_shape.c:134 -msgid "E548: digit expected" -msgstr "E548: lKvł" - -#: ../cursor_shape.c:138 -msgid "E549: Illegal percentage" -msgstr "E549: sȃp[Ze[Wł" - -#: ../diff.c:146 -#, c-format -msgid "E96: Can not diff more than %<PRId64> buffers" -msgstr "E96: %<PRId64> ȏ̃obt@diffł܂" - -#: ../diff.c:753 -msgid "E810: Cannot read or write temp files" -msgstr "E810: ꎞt@C̓Ǎ͏ł܂" - -#: ../diff.c:755 -msgid "E97: Cannot create diffs" -msgstr "E97: 쐬ł܂" - -#: ../diff.c:966 -msgid "E816: Cannot read patch output" -msgstr "E816: patch̏o͂Ǎ߂܂" - -#: ../diff.c:1220 -msgid "E98: Cannot read diff output" -msgstr "E98: diff̏o͂Ǎ߂܂" - -#: ../diff.c:2081 -msgid "E99: Current buffer is not in diff mode" -msgstr "E99: ݂̃obt@͍[hł͂܂" - -#: ../diff.c:2100 -msgid "E793: No other buffer in diff mode is modifiable" -msgstr "E793: [hł鑼̃obt@͕ύXł܂" - -#: ../diff.c:2102 -msgid "E100: No other buffer in diff mode" -msgstr "E100: [hł鑼̃obt@͂܂" - -#: ../diff.c:2112 -msgid "E101: More than two buffers in diff mode, don't know which one to use" -msgstr "" -"E101: [h̃obt@2ȏ゠̂ŁAǂgł܂" - -#: ../diff.c:2141 -#, c-format -msgid "E102: Can't find buffer \"%s\"" -msgstr "E102: obt@ \"%s\" ܂" - -#: ../diff.c:2152 -#, c-format -msgid "E103: Buffer \"%s\" is not in diff mode" -msgstr "E103: obt@ \"%s\" ͍[hł͂܂" - -#: ../diff.c:2193 -msgid "E787: Buffer changed unexpectedly" -msgstr "E787: \\obt@ύXύX܂" - -#: ../digraph.c:1598 -msgid "E104: Escape not allowed in digraph" -msgstr "E104: Escape͎gpł܂" - -#: ../digraph.c:1760 -msgid "E544: Keymap file not found" -msgstr "E544: L[}bvt@C܂" - -#: ../digraph.c:1785 -msgid "E105: Using :loadkeymap not in a sourced file" -msgstr "E105: :source Ŏ捞ރt@CȊOł :loadkeymap g܂" - -#: ../digraph.c:1821 -msgid "E791: Empty keymap entry" -msgstr "E791: ̃L[}bvGg" - -#: ../edit.c:82 -msgid " Keyword completion (^N^P)" -msgstr " L[[h⊮ (^N^P)" - -#. ctrl_x_mode == 0, ^P/^N compl. -#: ../edit.c:83 -msgid " ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" -msgstr " ^X [h (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" - -#: ../edit.c:85 -msgid " Whole line completion (^L^N^P)" -msgstr " s(S)⊮ (^L^N^P)" - -#: ../edit.c:86 -msgid " File name completion (^F^N^P)" -msgstr " t@C⊮ (^F^N^P)" - -#: ../edit.c:87 -msgid " Tag completion (^]^N^P)" -msgstr " ^O⊮ (^]^N^P)" - -#: ../edit.c:88 -msgid " Path pattern completion (^N^P)" -msgstr " pXp^[⊮ (^N^P)" - -#: ../edit.c:89 -msgid " Definition completion (^D^N^P)" -msgstr " `⊮ (^D^N^P)" - -#: ../edit.c:91 -msgid " Dictionary completion (^K^N^P)" -msgstr " ⊮ (^K^N^P)" - -#: ../edit.c:92 -msgid " Thesaurus completion (^T^N^P)" -msgstr " V\\[X⊮ (^T^N^P)" - -#: ../edit.c:93 -msgid " Command-line completion (^V^N^P)" -msgstr " R}hC⊮ (^V^N^P)" - -#: ../edit.c:94 -msgid " User defined completion (^U^N^P)" -msgstr " [U[`⊮ (^U^N^P)" - -#: ../edit.c:95 -msgid " Omni completion (^O^N^P)" -msgstr " Ij⊮ (^O^N^P)" - -#: ../edit.c:96 -msgid " Spelling suggestion (s^N^P)" -msgstr " ԂC (s^N^P)" - -#: ../edit.c:97 -msgid " Keyword Local completion (^N^P)" -msgstr " ǏL[[h⊮ (^N^P)" - -#: ../edit.c:100 -msgid "Hit end of paragraph" -msgstr "i̍ŌɃqbg" - -#: ../edit.c:101 -msgid "E839: Completion function changed window" -msgstr "E839: ԊEBhEύX܂" - -#: ../edit.c:102 -msgid "E840: Completion function deleted text" -msgstr "E840: ⊮eLXg폜܂" - -#: ../edit.c:1847 -msgid "'dictionary' option is empty" -msgstr "'dictionary' IvVł" - -#: ../edit.c:1848 -msgid "'thesaurus' option is empty" -msgstr "'thesaurus' IvVł" - -#: ../edit.c:2655 -#, c-format -msgid "Scanning dictionary: %s" -msgstr "XL: %s" - -#: ../edit.c:3079 -msgid " (insert) Scroll (^E/^Y)" -msgstr " (}) XN[(^E/^Y)" - -#: ../edit.c:3081 -msgid " (replace) Scroll (^E/^Y)" -msgstr " (u) XN[ (^E/^Y)" - -#: ../edit.c:3587 -#, c-format -msgid "Scanning: %s" -msgstr "XL: %s" - -#: ../edit.c:3614 -msgid "Scanning tags." -msgstr "^OXL." - -#: ../edit.c:4519 -msgid " Adding" -msgstr " lj" - -#. showmode might reset the internal line pointers, so it must -#. * be called before line = ml_get(), or when this address is no -#. * longer needed. -- Acevedo. -#. -#: ../edit.c:4562 -msgid "-- Searching..." -msgstr "-- ..." - -#: ../edit.c:4618 -msgid "Back at original" -msgstr "n߂ɖ߂" - -#: ../edit.c:4621 -msgid "Word from other line" -msgstr "̍s̒P" - -#: ../edit.c:4624 -msgid "The only match" -msgstr "B̊Y" - -#: ../edit.c:4680 -#, c-format -msgid "match %d of %d" -msgstr "%d Ԗڂ̊Y (SY %d )" - -#: ../edit.c:4684 -#, c-format -msgid "match %d" -msgstr "%d Ԗڂ̊Y" - -#: ../eval.c:137 -msgid "E18: Unexpected characters in :let" -msgstr "E18: \\ʕ :let ɂ܂" - -#: ../eval.c:138 -#, c-format -msgid "E684: list index out of range: %<PRId64>" -msgstr "E684: Xg̃CfbNX͈͊Oł: %<PRId64>" - -#: ../eval.c:139 -#, c-format -msgid "E121: Undefined variable: %s" -msgstr "E121: `̕ϐł: %s" - -#: ../eval.c:140 -msgid "E111: Missing ']'" -msgstr "E111: ']' ܂" - -#: ../eval.c:141 -#, c-format -msgid "E686: Argument of %s must be a List" -msgstr "E686: %s ̈̓Xg^łȂȂ܂" - -#: ../eval.c:143 -#, c-format -msgid "E712: Argument of %s must be a List or Dictionary" -msgstr "E712: %s ̈̓Xg^܂͎^łȂȂ܂" - -#: ../eval.c:144 -msgid "E713: Cannot use empty key for Dictionary" -msgstr "E713: ^ɋ̃L[gƂ͂ł܂" - -#: ../eval.c:145 -msgid "E714: List required" -msgstr "E714: Xg^Kvł" - -#: ../eval.c:146 -msgid "E715: Dictionary required" -msgstr "E715: ^Kvł" - -#: ../eval.c:147 -#, c-format -msgid "E118: Too many arguments for function: %s" -msgstr "E118: ̈߂܂: %s" - -#: ../eval.c:148 -#, c-format -msgid "E716: Key not present in Dictionary: %s" -msgstr "E716: ^ɃL[݂܂: %s" - -#: ../eval.c:150 -#, c-format -msgid "E122: Function %s already exists, add ! to replace it" -msgstr "E122: %s ͒`ςł, Ē`ɂ ! ljĂ" - -#: ../eval.c:151 -msgid "E717: Dictionary entry already exists" -msgstr "E717: ^ɃGgɑ݂܂" - -#: ../eval.c:152 -msgid "E718: Funcref required" -msgstr "E718: Qƌ^v܂" - -#: ../eval.c:153 -msgid "E719: Cannot use [:] with a Dictionary" -msgstr "E719: [:] ^Ƒgݍ킹Ă͎g܂" - -#: ../eval.c:154 -#, c-format -msgid "E734: Wrong variable type for %s=" -msgstr "E734: قȂ^̕ϐł %s=" - -#: ../eval.c:155 -#, c-format -msgid "E130: Unknown function: %s" -msgstr "E130: m̊ł: %s" - -#: ../eval.c:156 -#, c-format -msgid "E461: Illegal variable name: %s" -msgstr "E461: sȕϐł: %s" - -#: ../eval.c:157 -msgid "E806: using Float as a String" -msgstr "E806: _ƂĈĂ܂" - -#: ../eval.c:1830 -msgid "E687: Less targets than List items" -msgstr "E687: ^[QbgXg^̗vfȂł" - -#: ../eval.c:1834 -msgid "E688: More targets than List items" -msgstr "E688: ^[QbgXg^̗vfł" - -#: ../eval.c:1906 -msgid "Double ; in list of variables" -msgstr "Xg^̒l2ȏ ; o܂" - -#: ../eval.c:2078 -#, c-format -msgid "E738: Can't list variables for %s" -msgstr "E738: %s ̒lꗗ\\ł܂" - -#: ../eval.c:2391 -msgid "E689: Can only index a List or Dictionary" -msgstr "E689: Xg^Ǝ^ȊO̓CfbNXwł܂" - -#: ../eval.c:2396 -msgid "E708: [:] must come last" -msgstr "E708: [:] ͍ŌłȂ܂" - -#: ../eval.c:2439 -msgid "E709: [:] requires a List value" -msgstr "E709: [:] ɂ̓Xg^̒lKvł" - -#: ../eval.c:2674 -msgid "E710: List value has more items than target" -msgstr "E710: Xg^ϐɃ^[Qbgvf܂" - -#: ../eval.c:2678 -msgid "E711: List value has not enough items" -msgstr "E711: Xg^ϐɏ\\Ȑ̗vf܂" - -# -#: ../eval.c:2867 -msgid "E690: Missing \"in\" after :for" -msgstr "E690: :for ̌ \"in\" ܂" - -#: ../eval.c:3063 -#, c-format -msgid "E107: Missing parentheses: %s" -msgstr "E107: JbR '(' ܂: %s" - -#: ../eval.c:3263 -#, c-format -msgid "E108: No such variable: \"%s\"" -msgstr "E108: ̕ϐ͂܂: \"%s\"" - -#: ../eval.c:3333 -msgid "E743: variable nested too deep for (un)lock" -msgstr "E743: (A)bNɂ͕ϐ̓q[߂܂" - -#: ../eval.c:3630 -msgid "E109: Missing ':' after '?'" -msgstr "E109: '?' ̌ ':' ܂" - -#: ../eval.c:3893 -msgid "E691: Can only compare List with List" -msgstr "E691: Xg^̓Xg^Ƃrł܂" - -#: ../eval.c:3895 -msgid "E692: Invalid operation for Lists" -msgstr "E692: Xg^ɂ͖ȑł" - -#: ../eval.c:3915 -msgid "E735: Can only compare Dictionary with Dictionary" -msgstr "E735: ^͎^Ƃrł܂" - -#: ../eval.c:3917 -msgid "E736: Invalid operation for Dictionary" -msgstr "E736: ^ɂ͖ȑł" - -#: ../eval.c:3932 -msgid "E693: Can only compare Funcref with Funcref" -msgstr "E693: Qƌ^͊Qƌ^Ƃrł܂" - -#: ../eval.c:3934 -msgid "E694: Invalid operation for Funcrefs" -msgstr "E694: Qƌ^ɂ͖ȑł" - -#: ../eval.c:4277 -msgid "E804: Cannot use '%' with Float" -msgstr "E804: '%' _Ƒgݍ킹Ă͎g܂" - -#: ../eval.c:4478 -msgid "E110: Missing ')'" -msgstr "E110: ')' ܂" - -#: ../eval.c:4609 -msgid "E695: Cannot index a Funcref" -msgstr "E695: Qƌ^̓CfbNXł܂" - -#: ../eval.c:4839 -#, c-format -msgid "E112: Option name missing: %s" -msgstr "E112: IvV܂: %s" - -#: ../eval.c:4855 -#, c-format -msgid "E113: Unknown option: %s" -msgstr "E113: m̃IvVł: %s" - -#: ../eval.c:4904 -#, c-format -msgid "E114: Missing quote: %s" -msgstr "E114: p (\") ܂: %s" - -#: ../eval.c:5020 -#, c-format -msgid "E115: Missing quote: %s" -msgstr "E115: p (') ܂: %s" - -#: ../eval.c:5084 -#, c-format -msgid "E696: Missing comma in List: %s" -msgstr "E696: Xg^ɃJ}܂: %s" - -#: ../eval.c:5091 -#, c-format -msgid "E697: Missing end of List ']': %s" -msgstr "E697: Xg^̍Ō ']' ܂: %s" - -msgid "Not enough memory to set references, garbage collection aborted!" -msgstr "" -"K[xbWRNV𒆎~܂! QƂ쐬̂Ƀs܂" - -#: ../eval.c:6475 -#, c-format -msgid "E720: Missing colon in Dictionary: %s" -msgstr "E720: ^ɃR܂: %s" - -#: ../eval.c:6499 -#, c-format -msgid "E721: Duplicate key in Dictionary: \"%s\"" -msgstr "E721: ^ɏdL[܂: \"%s\"" - -#: ../eval.c:6517 -#, c-format -msgid "E722: Missing comma in Dictionary: %s" -msgstr "E722: ^ɃJ}܂: %s" - -#: ../eval.c:6524 -#, c-format -msgid "E723: Missing end of Dictionary '}': %s" -msgstr "E723: ^̍Ō '}' ܂: %s" - -#: ../eval.c:6555 -msgid "E724: variable nested too deep for displaying" -msgstr "E724: \\ɂ͕ϐ̓q[߂܂" - -#: ../eval.c:7188 -#, c-format -msgid "E740: Too many arguments for function %s" -msgstr "E740: ̈߂܂: %s" - -#: ../eval.c:7190 -#, c-format -msgid "E116: Invalid arguments for function %s" -msgstr "E116: ̖Ȉł: %s" - -#: ../eval.c:7377 -#, c-format -msgid "E117: Unknown function: %s" -msgstr "E117: m̊ł: %s" - -#: ../eval.c:7383 -#, c-format -msgid "E119: Not enough arguments for function: %s" -msgstr "E119: ̈܂: %s" - -#: ../eval.c:7387 -#, c-format -msgid "E120: Using <SID> not in a script context: %s" -msgstr "E120: XNvgȊO<SID>g܂: %s" - -#: ../eval.c:7391 -#, c-format -msgid "E725: Calling dict function without Dictionary: %s" -msgstr "E725: pĂ܂܂: %s" - -#: ../eval.c:7453 -msgid "E808: Number or Float required" -msgstr "E808: l_Kvł" - -#: ../eval.c:7503 -msgid "add() argument" -msgstr "add() ̈" - -#: ../eval.c:7907 -msgid "E699: Too many arguments" -msgstr "E699: ߂܂" - -#: ../eval.c:8073 -msgid "E785: complete() can only be used in Insert mode" -msgstr "E785: complete() ͑}[hłpł܂" - -#: ../eval.c:8156 -msgid "&Ok" -msgstr "&Ok" - -#: ../eval.c:8676 -#, c-format -msgid "E737: Key already exists: %s" -msgstr "E737: L[͊ɑ݂܂: %s" - -#: ../eval.c:8692 -msgid "extend() argument" -msgstr "extend() ̈" - -#: ../eval.c:8915 -msgid "map() argument" -msgstr "map() ̈" - -#: ../eval.c:8916 -msgid "filter() argument" -msgstr "filter() ̈" - -#: ../eval.c:9229 -#, c-format -msgid "+-%s%3ld lines: " -msgstr "+-%s%3ld s: " - -#: ../eval.c:9291 -#, c-format -msgid "E700: Unknown function: %s" -msgstr "E700: m̊ł: %s" - -#: ../eval.c:10729 -msgid "called inputrestore() more often than inputsave()" -msgstr "inputrestore() inputsave() Ă܂" - -#: ../eval.c:10771 -msgid "insert() argument" -msgstr "insert() ̈" - -#: ../eval.c:10841 -msgid "E786: Range not allowed" -msgstr "E786: ͈͎w͋Ă܂" - -#: ../eval.c:11140 -msgid "E701: Invalid type for len()" -msgstr "E701: len() ɂ͖Ȍ^ł" - -#: ../eval.c:11980 -msgid "E726: Stride is zero" -msgstr "E726: XgCh(Oi) 0 ł" - -#: ../eval.c:11982 -msgid "E727: Start past end" -msgstr "E727: JnʒuIʒuz܂" - -#: ../eval.c:12024 ../eval.c:15297 -msgid "<empty>" -msgstr "<>" - -#: ../eval.c:12282 -msgid "remove() argument" -msgstr "remove() ̈" - -# Added at 10-Mar-2004. -#: ../eval.c:12466 -msgid "E655: Too many symbolic links (cycle?)" -msgstr "E655: V{bNN߂܂ (zĂ\\܂)" - -#: ../eval.c:12593 -msgid "reverse() argument" -msgstr "reverse() ̈" - -#: ../eval.c:13721 -msgid "sort() argument" -msgstr "sort() ̈" - -#: ../eval.c:13721 -msgid "uniq() argument" -msgstr "uniq() ̈" - -#: ../eval.c:13776 -msgid "E702: Sort compare function failed" -msgstr "E702: \\[g̔rs܂" - -#: ../eval.c:13806 -msgid "E882: Uniq compare function failed" -msgstr "E882: Uniq ̔rs܂" - -#: ../eval.c:14085 -msgid "(Invalid)" -msgstr "()" - -#: ../eval.c:14590 -msgid "E677: Error writing temp file" -msgstr "E677: ꎞt@CɃG[܂" - -#: ../eval.c:16159 -msgid "E805: Using a Float as a Number" -msgstr "E805: _𐔒lƂĈĂ܂" - -#: ../eval.c:16162 -msgid "E703: Using a Funcref as a Number" -msgstr "E703: Qƌ^𐔒lƂĈĂ܂B" - -#: ../eval.c:16170 -msgid "E745: Using a List as a Number" -msgstr "E745: Xg^𐔒lƂĈĂ܂" - -#: ../eval.c:16173 -msgid "E728: Using a Dictionary as a Number" -msgstr "E728: ^𐔒lƂĈĂ܂" - -msgid "E891: Using a Funcref as a Float" -msgstr "E891: Qƌ^_ƂĈĂ܂B" - -msgid "E892: Using a String as a Float" -msgstr "E892: _ƂĈĂ܂" - -msgid "E893: Using a List as a Float" -msgstr "E893: Xg^_ƂĈĂ܂" - -msgid "E894: Using a Dictionary as a Float" -msgstr "E894: ^_ƂĈĂ܂" - -#: ../eval.c:16259 -msgid "E729: using Funcref as a String" -msgstr "E729: Qƌ^ƂĈĂ܂" - -#: ../eval.c:16262 -msgid "E730: using List as a String" -msgstr "E730: Xg^ƂĈĂ܂" - -#: ../eval.c:16265 -msgid "E731: using Dictionary as a String" -msgstr "E731: ^ƂĈĂ܂" - -#: ../eval.c:16619 -#, c-format -msgid "E706: Variable type mismatch for: %s" -msgstr "E706: ϐ̌^v܂: %s" - -#: ../eval.c:16705 -#, c-format -msgid "E795: Cannot delete variable %s" -msgstr "E795: ϐ %s 폜ł܂" - -#: ../eval.c:16724 -#, c-format -msgid "E704: Funcref variable name must start with a capital: %s" -msgstr "E704: Qƌ^ϐ͑啶Ŏn܂ȂȂ܂: %s" - -#: ../eval.c:16732 -#, c-format -msgid "E705: Variable name conflicts with existing function: %s" -msgstr "E705: ϐ̊ƏՓ˂܂: %s" - -#: ../eval.c:16763 -#, c-format -msgid "E741: Value is locked: %s" -msgstr "E741: lbNĂ܂: %s" - -#: ../eval.c:16764 ../eval.c:16769 ../message.c:1839 -msgid "Unknown" -msgstr "s" - -#: ../eval.c:16768 -#, c-format -msgid "E742: Cannot change value of %s" -msgstr "E742: %s ̒lύXł܂" - -#: ../eval.c:16838 -msgid "E698: variable nested too deep for making a copy" -msgstr "E698: Rs[ɂ͕ϐ̓q[߂܂" - -#: ../eval.c:17249 -#, c-format -msgid "E123: Undefined function: %s" -msgstr "E123: `̊ł: %s" - -#: ../eval.c:17260 -#, c-format -msgid "E124: Missing '(': %s" -msgstr "E124: '(' ܂: %s" - -#: ../eval.c:17293 -msgid "E862: Cannot use g: here" -msgstr "E862: ł g: ͎g܂" - -#: ../eval.c:17312 -#, c-format -msgid "E125: Illegal argument: %s" -msgstr "E125: sȈł: %s" - -#: ../eval.c:17323 -#, c-format -msgid "E853: Duplicate argument name: %s" -msgstr "E853: dĂ܂: %s" - -#: ../eval.c:17416 -msgid "E126: Missing :endfunction" -msgstr "E126: :endfunction ܂" - -#: ../eval.c:17537 -#, c-format -msgid "E707: Function name conflicts with variable: %s" -msgstr "E707: ϐƏՓ˂܂: %s" - -#: ../eval.c:17549 -#, c-format -msgid "E127: Cannot redefine function %s: It is in use" -msgstr "E127: %s Ē`ł܂: gpł" - -#: ../eval.c:17604 -#, c-format -msgid "E746: Function name does not match script file name: %s" -msgstr "E746: XNvg̃t@Cƈv܂: %s" - -#: ../eval.c:17716 -msgid "E129: Function name required" -msgstr "E129: v܂" - -#: ../eval.c:17824 -#, c-format -msgid "E128: Function name must start with a capital or \"s:\": %s" -msgstr "E128: ͑啶 \"s:\" Ŏn܂ȂȂ܂: %s" - -#: ../eval.c:17833 -#, c-format -msgid "E884: Function name cannot contain a colon: %s" -msgstr "E884: ɂ̓R͊܂߂܂: %s" - -#: ../eval.c:18336 -#, c-format -msgid "E131: Cannot delete function %s: It is in use" -msgstr "E131: %s 폜ł܂: gpł" - -#: ../eval.c:18441 -msgid "E132: Function call depth is higher than 'maxfuncdepth'" -msgstr "E132: ďo̓q 'maxfuncdepth' ܂" - -#: ../eval.c:18568 -#, c-format -msgid "calling %s" -msgstr "%s sł" - -#: ../eval.c:18651 -#, c-format -msgid "%s aborted" -msgstr "%s f܂" - -#: ../eval.c:18653 -#, c-format -msgid "%s returning #%<PRId64>" -msgstr "%s #%<PRId64> Ԃ܂" - -#: ../eval.c:18670 -#, c-format -msgid "%s returning %s" -msgstr "%s %s Ԃ܂" - -#: ../eval.c:18691 ../ex_cmds2.c:2695 -#, c-format -msgid "continuing in %s" -msgstr "%s ̎spł" - -#: ../eval.c:18795 -msgid "E133: :return not inside a function" -msgstr "E133: O :return ܂" - -#: ../eval.c:19159 -msgid "" -"\n" -"# global variables:\n" -msgstr "" -"\n" -"# O[oϐ:\n" - -#: ../eval.c:19254 -msgid "" -"\n" -"\tLast set from " -msgstr "" -"\n" -"\tLast set from " - -#: ../eval.c:19272 -msgid "No old files" -msgstr "Ât@C͂܂" - -#: ../ex_cmds.c:122 -#, c-format -msgid "<%s>%s%s %d, Hex %02x, Octal %03o" -msgstr "<%s>%s%s %d, 16i %02x, 8i %03o" - -#: ../ex_cmds.c:145 -#, c-format -msgid "> %d, Hex %04x, Octal %o" -msgstr "> %d, 16i %04x, 8i %o" - -#: ../ex_cmds.c:146 -#, c-format -msgid "> %d, Hex %08x, Octal %o" -msgstr "> %d, 16i %08x, 8i %o" - -#: ../ex_cmds.c:684 -msgid "E134: Move lines into themselves" -msgstr "E134: sꎩgɂ͈ړł܂" - -#: ../ex_cmds.c:747 -msgid "1 line moved" -msgstr "1 sړ܂" - -#: ../ex_cmds.c:749 -#, c-format -msgid "%<PRId64> lines moved" -msgstr "%<PRId64> sړ܂" - -#: ../ex_cmds.c:1175 -#, c-format -msgid "%<PRId64> lines filtered" -msgstr "%<PRId64> stB^܂" - -#: ../ex_cmds.c:1194 -msgid "E135: *Filter* Autocommands must not change current buffer" -msgstr "E135: *tB^* autocommand݂͌̃obt@ύXĂ͂܂" - -#: ../ex_cmds.c:1244 -msgid "[No write since last change]\n" -msgstr "[Ō̕ύXۑĂ܂]\n" - -#: ../ex_cmds.c:1424 -#, c-format -msgid "%sviminfo: %s in line: " -msgstr "%sviminfo: %s s: " - -#: ../ex_cmds.c:1431 -msgid "E136: viminfo: Too many errors, skipping rest of file" -msgstr "E136: viminfo: G[߂̂, ȍ~̓XLbv܂" - -#: ../ex_cmds.c:1458 -#, c-format -msgid "Reading viminfo file \"%s\"%s%s%s" -msgstr "viminfot@C \"%s\"%s%s%s Ǎݒ" - -#: ../ex_cmds.c:1460 -msgid " info" -msgstr " " - -#: ../ex_cmds.c:1461 -msgid " marks" -msgstr " }[N" - -#: ../ex_cmds.c:1462 -msgid " oldfiles" -msgstr " t@CQ" - -#: ../ex_cmds.c:1463 -msgid " FAILED" -msgstr " s" - -#. avoid a wait_return for this message, it's annoying -#: ../ex_cmds.c:1541 -#, c-format -msgid "E137: Viminfo file is not writable: %s" -msgstr "E137: viminfot@C݂ł܂: %s" - -#: ../ex_cmds.c:1626 -#, c-format -msgid "E138: Can't write viminfo file %s!" -msgstr "E138: viminfot@C %s ۑł܂!" - -#: ../ex_cmds.c:1635 -#, c-format -msgid "Writing viminfo file \"%s\"" -msgstr "viminfot@C \"%s\" ݒ" - -#. Write the info: -#: ../ex_cmds.c:1720 -#, c-format -msgid "# This viminfo file was generated by Vim %s.\n" -msgstr "# viminfo t@C Vim %s ɂĐ܂.\n" - -#: ../ex_cmds.c:1722 -msgid "" -"# You may edit it if you're careful!\n" -"\n" -msgstr "" -"# ύXۂɂ͏\\ӂĂ!\n" -"\n" - -#: ../ex_cmds.c:1723 -msgid "# Value of 'encoding' when this file was written\n" -msgstr "# ̃t@Cꂽ 'encoding' ̒l\n" - -#: ../ex_cmds.c:1800 -msgid "Illegal starting char" -msgstr "sȐ擪ł" - -#: ../ex_cmds.c:2162 -msgid "Write partial file?" -msgstr "t@CIɕۑ܂?" - -#: ../ex_cmds.c:2166 -msgid "E140: Use ! to write partial buffer" -msgstr "E140: obt@Iɕۑɂ ! gĂ" - -#: ../ex_cmds.c:2281 -#, c-format -msgid "Overwrite existing file \"%s\"?" -msgstr "̃t@C \"%s\" ㏑܂?" - -#: ../ex_cmds.c:2317 -#, c-format -msgid "Swap file \"%s\" exists, overwrite anyway?" -msgstr "Xbvt@C \"%s\" ݂܂. ㏑܂?" - -#: ../ex_cmds.c:2326 -#, c-format -msgid "E768: Swap file exists: %s (:silent! overrides)" -msgstr "E768: Xbvt@C݂܂: %s (:silent! ljŏ㏑)" - -#: ../ex_cmds.c:2381 -#, c-format -msgid "E141: No file name for buffer %<PRId64>" -msgstr "E141: obt@ %<PRId64> ɂ͖O܂" - -#: ../ex_cmds.c:2412 -msgid "E142: File not written: Writing is disabled by 'write' option" -msgstr "E142: t@C͕ۑ܂ł: 'write' IvVɂ薳ł" - -#: ../ex_cmds.c:2434 -#, c-format -msgid "" -"'readonly' option is set for \"%s\".\n" -"Do you wish to write anyway?" -msgstr "" -"\"%s\" ɂ 'readonly' IvVݒ肳Ă܂.\n" -"㏑܂?" - -#: ../ex_cmds.c:2439 -#, c-format -msgid "" -"File permissions of \"%s\" are read-only.\n" -"It may still be possible to write it.\n" -"Do you wish to try?" -msgstr "" -"t@C \"%s\" ̃p[~bVǍpł.\n" -"ł炭ނƂ͉\\ł.\n" -"p܂?" - -#: ../ex_cmds.c:2451 -#, c-format -msgid "E505: \"%s\" is read-only (add ! to override)" -msgstr "E505: \"%s\" ͓Ǎpł (ɂ ! lj)" - -#: ../ex_cmds.c:3120 -#, c-format -msgid "E143: Autocommands unexpectedly deleted new buffer %s" -msgstr "E143: autocommand\\Vobt@ %s 폜܂" - -#: ../ex_cmds.c:3313 -msgid "E144: non-numeric argument to :z" -msgstr "E144: ł͂Ȃ :z ɓn܂" - -#: ../ex_cmds.c:3404 -msgid "E145: Shell commands not allowed in rvim" -msgstr "E145: rvimł̓VFR}hg܂" - -#: ../ex_cmds.c:3498 -msgid "E146: Regular expressions can't be delimited by letters" -msgstr "E146: K\\͕ŋ邱Ƃł܂" - -#: ../ex_cmds.c:3964 -#, c-format -msgid "replace with %s (y/n/a/q/l/^E/^Y)?" -msgstr "%s ɒu܂? (y/n/a/q/l/^E/^Y)" - -#: ../ex_cmds.c:4379 -msgid "(Interrupted) " -msgstr "(܂܂) " - -#: ../ex_cmds.c:4384 -msgid "1 match" -msgstr "1 ӏY܂" - -#: ../ex_cmds.c:4384 -msgid "1 substitution" -msgstr "1 ӏu܂" - -#: ../ex_cmds.c:4387 -#, c-format -msgid "%<PRId64> matches" -msgstr "%<PRId64> ӏY܂" - -#: ../ex_cmds.c:4388 -#, c-format -msgid "%<PRId64> substitutions" -msgstr "%<PRId64> ӏu܂" - -#: ../ex_cmds.c:4392 -msgid " on 1 line" -msgstr " (v 1 s)" - -#: ../ex_cmds.c:4395 -#, c-format -msgid " on %<PRId64> lines" -msgstr " (v %<PRId64> s)" - -#: ../ex_cmds.c:4438 -msgid "E147: Cannot do :global recursive" -msgstr "E147: :global ċAIɂ͎g܂" - -#: ../ex_cmds.c:4467 -msgid "E148: Regular expression missing from global" -msgstr "E148: globalR}hɐK\\w肳Ă܂" - -#: ../ex_cmds.c:4508 -#, c-format -msgid "Pattern found in every line: %s" -msgstr "p^[SĂ̍sŌ܂: %s" - -#: ../ex_cmds.c:4510 -#, c-format -msgid "Pattern not found: %s" -msgstr "p^[͌܂ł: %s" - -#: ../ex_cmds.c:4587 -msgid "" -"\n" -"# Last Substitute String:\n" -"$" -msgstr "" -"\n" -"# Ōɒuꂽ:\n" -"$" - -#: ../ex_cmds.c:4679 -msgid "E478: Don't panic!" -msgstr "E478: QĂȂł" - -#: ../ex_cmds.c:4717 -#, c-format -msgid "E661: Sorry, no '%s' help for %s" -msgstr "E661: cOł '%s' ̃wv %s ɂ͂܂" - -#: ../ex_cmds.c:4719 -#, c-format -msgid "E149: Sorry, no help for %s" -msgstr "E149: cOł %s ɂ̓wv܂" - -#: ../ex_cmds.c:4751 -#, c-format -msgid "Sorry, help file \"%s\" not found" -msgstr "cOłwvt@C \"%s\" ܂" - -#: ../ex_cmds.c:5323 -#, c-format -msgid "E150: Not a directory: %s" -msgstr "E150: fBNgł͂܂: %s" - -#: ../ex_cmds.c:5446 -#, c-format -msgid "E152: Cannot open %s for writing" -msgstr "E152: ݗp %s J܂" - -#: ../ex_cmds.c:5471 -#, c-format -msgid "E153: Unable to open %s for reading" -msgstr "E153: Ǎp %s J܂" - -# Added at 29-Apr-2004. -#: ../ex_cmds.c:5500 -#, c-format -msgid "E670: Mix of help file encodings within a language: %s" -msgstr "E670: 1̌̃wvt@Cɕ̃GR[h݂Ă܂: %s" - -#: ../ex_cmds.c:5565 -#, c-format -msgid "E154: Duplicate tag \"%s\" in file %s/%s" -msgstr "E154: ^O \"%s\" t@C %s/%s ɏdĂ܂" - -#: ../ex_cmds.c:5687 -#, c-format -msgid "E160: Unknown sign command: %s" -msgstr "E160: msignR}hł: %s" - -#: ../ex_cmds.c:5704 -msgid "E156: Missing sign name" -msgstr "E156: sign܂" - -#: ../ex_cmds.c:5746 -msgid "E612: Too many signs defined" -msgstr "E612: sign̒`܂" - -#: ../ex_cmds.c:5813 -#, c-format -msgid "E239: Invalid sign text: %s" -msgstr "E239: sigñeLXgł: %s" - -#: ../ex_cmds.c:5844 ../ex_cmds.c:6035 -#, c-format -msgid "E155: Unknown sign: %s" -msgstr "E155: msignł: %s" - -#: ../ex_cmds.c:5877 -msgid "E159: Missing sign number" -msgstr "E159: sign̔ԍ܂" - -#: ../ex_cmds.c:5971 -#, c-format -msgid "E158: Invalid buffer name: %s" -msgstr "E158: ȃobt@ł: %s" - -#: ../ex_cmds.c:6008 -#, c-format -msgid "E157: Invalid sign ID: %<PRId64>" -msgstr "E157: signʎqł: %<PRId64>" - -#, c-format -msgid "E885: Not possible to change sign %s" -msgstr "E885: ύXłȂ sign ł: %s" - -#: ../ex_cmds.c:6066 -msgid " (not supported)" -msgstr " (T|[g)" - -#: ../ex_cmds.c:6169 -msgid "[Deleted]" -msgstr "[폜]" - -#: ../ex_cmds2.c:139 -msgid "Entering Debug mode. Type \"cont\" to continue." -msgstr "fobO[hɓ܂. ɂ \"cont\" Ɠ͂Ă." - -#: ../ex_cmds2.c:143 ../ex_docmd.c:759 -#, c-format -msgid "line %<PRId64>: %s" -msgstr "s %<PRId64>: %s" - -#: ../ex_cmds2.c:145 -#, c-format -msgid "cmd: %s" -msgstr "R}h: %s" - -msgid "frame is zero" -msgstr "t[ 0 ł" - -#, c-format -msgid "frame at highest level: %d" -msgstr "ōx̃t[: %d" - -#: ../ex_cmds2.c:322 -#, c-format -msgid "Breakpoint in \"%s%s\" line %<PRId64>" -msgstr "u[N|Cg \"%s%s\" s %<PRId64>" - -#: ../ex_cmds2.c:581 -#, c-format -msgid "E161: Breakpoint not found: %s" -msgstr "E161: u[N|Cg܂: %s" - -#: ../ex_cmds2.c:611 -msgid "No breakpoints defined" -msgstr "u[N|Cg`Ă܂" - -#: ../ex_cmds2.c:617 -#, c-format -msgid "%3d %s %s line %<PRId64>" -msgstr "%3d %s %s s %<PRId64>" - -#: ../ex_cmds2.c:942 -msgid "E750: First use \":profile start {fname}\"" -msgstr "E750: ߂ \":profile start {fname}\" sĂ" - -#: ../ex_cmds2.c:1269 -#, c-format -msgid "Save changes to \"%s\"?" -msgstr "ύX \"%s\" ɕۑ܂?" - -#: ../ex_cmds2.c:1271 ../ex_docmd.c:8851 -msgid "Untitled" -msgstr "" - -#: ../ex_cmds2.c:1421 -#, c-format -msgid "E162: No write since last change for buffer \"%s\"" -msgstr "E162: obt@ \"%s\" ̕ύX͕ۑĂ܂" - -#: ../ex_cmds2.c:1480 -msgid "Warning: Entered other buffer unexpectedly (check autocommands)" -msgstr "x: \\obt@ֈړ܂ (autocommands ׂĂ)" - -#: ../ex_cmds2.c:1826 -msgid "E163: There is only one file to edit" -msgstr "E163: ҏWt@C1܂" - -#: ../ex_cmds2.c:1828 -msgid "E164: Cannot go before first file" -msgstr "E164: ŏ̃t@COɂ͍s܂" - -#: ../ex_cmds2.c:1830 -msgid "E165: Cannot go beyond last file" -msgstr "E165: Ō̃t@CzČɂ͍s܂" - -#: ../ex_cmds2.c:2175 -#, c-format -msgid "E666: compiler not supported: %s" -msgstr "E666: ̃RpCɂ͑ΉĂ܂: %s" - -#: ../ex_cmds2.c:2257 -#, c-format -msgid "Searching for \"%s\" in \"%s\"" -msgstr "\"%s\" \"%s\" 猟" - -#: ../ex_cmds2.c:2284 -#, c-format -msgid "Searching for \"%s\"" -msgstr "\"%s\" " - -#: ../ex_cmds2.c:2307 -#, c-format -msgid "not found in 'runtimepath': \"%s\"" -msgstr "'runtimepath' ̒ɂ͌܂: \"%s\"" - -#: ../ex_cmds2.c:2472 -#, c-format -msgid "Cannot source a directory: \"%s\"" -msgstr "fBNg͎捞߂܂: \"%s\"" - -#: ../ex_cmds2.c:2518 -#, c-format -msgid "could not source \"%s\"" -msgstr "\"%s\" 捞߂܂" - -#: ../ex_cmds2.c:2520 -#, c-format -msgid "line %<PRId64>: could not source \"%s\"" -msgstr "s %<PRId64>: \"%s\" 捞߂܂" - -#: ../ex_cmds2.c:2535 -#, c-format -msgid "sourcing \"%s\"" -msgstr "\"%s\" 捞" - -#: ../ex_cmds2.c:2537 -#, c-format -msgid "line %<PRId64>: sourcing \"%s\"" -msgstr "s %<PRId64>: %s 捞" - -#: ../ex_cmds2.c:2693 -#, c-format -msgid "finished sourcing %s" -msgstr "%s ̎捞" - -#: ../ex_cmds2.c:2765 -msgid "modeline" -msgstr "[hs" - -#: ../ex_cmds2.c:2767 -msgid "--cmd argument" -msgstr "--cmd " - -#: ../ex_cmds2.c:2769 -msgid "-c argument" -msgstr "-c " - -#: ../ex_cmds2.c:2771 -msgid "environment variable" -msgstr "ϐ" - -#: ../ex_cmds2.c:2773 -msgid "error handler" -msgstr "G[nh" - -#: ../ex_cmds2.c:3020 -msgid "W15: Warning: Wrong line separator, ^M may be missing" -msgstr "W15: x: ssł. ^M Ȃ̂ł傤" - -#: ../ex_cmds2.c:3139 -msgid "E167: :scriptencoding used outside of a sourced file" -msgstr "E167: :scriptencoding 捞XNvgȊOŎgp܂" - -#: ../ex_cmds2.c:3166 -msgid "E168: :finish used outside of a sourced file" -msgstr "E168: :finish 捞XNvgȊOŎgp܂" - -#: ../ex_cmds2.c:3389 -#, c-format -msgid "Current %slanguage: \"%s\"" -msgstr "݂ %s: \"%s\"" - -#: ../ex_cmds2.c:3404 -#, c-format -msgid "E197: Cannot set language to \"%s\"" -msgstr "E197: \"%s\" ɐݒł܂" - -#. don't redisplay the window -#. don't wait for return -#: ../ex_docmd.c:387 -msgid "Entering Ex mode. Type \"visual\" to go to Normal mode." -msgstr "" -"Ex[hɓ܂. m[}[hɖ߂ɂ\"visual\"Ɠ͂Ă." - -#: ../ex_docmd.c:428 -msgid "E501: At end-of-file" -msgstr "E501: t@C̏Iʒu" - -#: ../ex_docmd.c:513 -msgid "E169: Command too recursive" -msgstr "E169: R}hċAI߂܂" - -#: ../ex_docmd.c:1006 -#, c-format -msgid "E605: Exception not caught: %s" -msgstr "E605: Oߑ܂ł: %s" - -#: ../ex_docmd.c:1085 -msgid "End of sourced file" -msgstr "捞t@C̍Ōł" - -#: ../ex_docmd.c:1086 -msgid "End of function" -msgstr "̍Ōł" - -#: ../ex_docmd.c:1628 -msgid "E464: Ambiguous use of user-defined command" -msgstr "E464: [U[`R}ĥ܂Ȏgpł" - -#: ../ex_docmd.c:1638 -msgid "E492: Not an editor command" -msgstr "E492: GfB^̃R}hł͂܂" - -#: ../ex_docmd.c:1729 -msgid "E493: Backwards range given" -msgstr "E493: t܂͈̔͂w肳܂" - -#: ../ex_docmd.c:1733 -msgid "Backwards range given, OK to swap" -msgstr "t܂͈̔͂w肳܂, ւ܂?" - -#. append -#. typed wrong -#: ../ex_docmd.c:1787 -msgid "E494: Use w or w>>" -msgstr "E494: w w>> gpĂ" - -#: ../ex_docmd.c:3454 -msgid "E319: The command is not available in this version" -msgstr "E319: ̃o[Wł͂̃R}h͗pł܂, ߂Ȃ" - -#: ../ex_docmd.c:3752 -msgid "E172: Only one file name allowed" -msgstr "E172: t@C 1 ɂĂ" - -#: ../ex_docmd.c:4238 -msgid "1 more file to edit. Quit anyway?" -msgstr "ҏWׂt@C 1 ܂, I܂?" - -#: ../ex_docmd.c:4242 -#, c-format -msgid "%d more files to edit. Quit anyway?" -msgstr "ҏWׂt@C %d ܂, I܂?" - -#: ../ex_docmd.c:4248 -msgid "E173: 1 more file to edit" -msgstr "E173: ҏWׂt@C 1 ܂" - -#: ../ex_docmd.c:4250 -#, c-format -msgid "E173: %<PRId64> more files to edit" -msgstr "E173: ҏWׂt@C %<PRId64> ܂" - -#: ../ex_docmd.c:4320 -msgid "E174: Command already exists: add ! to replace it" -msgstr "E174: R}hɂ܂: Ē`ɂ ! ljĂ" - -#: ../ex_docmd.c:4432 -msgid "" -"\n" -" Name Args Address Complete Definition" -msgstr "" -"\n" -" O AhX ⊮ `" - -#: ../ex_docmd.c:4516 -msgid "No user-defined commands found" -msgstr "[U[`R}h܂ł" - -#: ../ex_docmd.c:4538 -msgid "E175: No attribute specified" -msgstr "E175: ͒`Ă܂" - -#: ../ex_docmd.c:4583 -msgid "E176: Invalid number of arguments" -msgstr "E176: ̐ł" - -#: ../ex_docmd.c:4594 -msgid "E177: Count cannot be specified twice" -msgstr "E177: JEg2dw肷邱Ƃ͂ł܂" - -#: ../ex_docmd.c:4603 -msgid "E178: Invalid default value for count" -msgstr "E178: JEg̏ȗlł" - -#: ../ex_docmd.c:4625 -msgid "E179: argument required for -complete" -msgstr "E179: -complete ɂ͈Kvł" - -msgid "E179: argument required for -addr" -msgstr "E179: -addr ɂ͈Kvł" - -#: ../ex_docmd.c:4635 -#, c-format -msgid "E181: Invalid attribute: %s" -msgstr "E181: ȑł: %s" - -#: ../ex_docmd.c:4678 -msgid "E182: Invalid command name" -msgstr "E182: ȃR}hł" - -#: ../ex_docmd.c:4691 -msgid "E183: User defined commands must start with an uppercase letter" -msgstr "E183: [U[`R}h͉p啶Ŏn܂ȂȂ܂" - -#: ../ex_docmd.c:4696 -msgid "E841: Reserved name, cannot be used for user defined command" -msgstr "E841: \\Ȃ̂, [U[`R}hɗpł܂" - -#: ../ex_docmd.c:4751 -#, c-format -msgid "E184: No such user-defined command: %s" -msgstr "E184: ̃[U[`R}h͂܂: %s" - -#, c-format -msgid "E180: Invalid address type value: %s" -msgstr "E180: ȃAhX^Cvlł: %s" - -#: ../ex_docmd.c:5219 -#, c-format -msgid "E180: Invalid complete value: %s" -msgstr "E180: ȕ⊮wł: %s" - -#: ../ex_docmd.c:5225 -msgid "E468: Completion argument only allowed for custom completion" -msgstr "E468: ⊮̓JX^⊮łgpł܂" - -#: ../ex_docmd.c:5231 -msgid "E467: Custom completion requires a function argument" -msgstr "E467: JX^⊮ɂ͈ƂĊKvł" - -#: ../ex_docmd.c:5257 -#, c-format -msgid "E185: Cannot find color scheme '%s'" -msgstr "E185: J[XL[ '%s' ܂" - -#: ../ex_docmd.c:5263 -msgid "Greetings, Vim user!" -msgstr "Vim gA₠!" - -#: ../ex_docmd.c:5431 -msgid "E784: Cannot close last tab page" -msgstr "E784: Ō̃^uy[W邱Ƃ͂ł܂" - -#: ../ex_docmd.c:5462 -msgid "Already only one tab page" -msgstr "Ƀ^uy[W1܂" - -#: ../ex_docmd.c:6004 -#, c-format -msgid "Tab page %d" -msgstr "^uy[W %d" - -#: ../ex_docmd.c:6295 -msgid "No swap file" -msgstr "Xbvt@C܂" - -#: ../ex_docmd.c:6478 -msgid "E747: Cannot change directory, buffer is modified (add ! to override)" -msgstr "" -"E747: obt@CĂ̂, fBNgύXł܂ (! lj" -"㏑)" - -#: ../ex_docmd.c:6485 -msgid "E186: No previous directory" -msgstr "E186: ÕfBNg͂܂" - -#: ../ex_docmd.c:6530 -msgid "E187: Unknown" -msgstr "E187: m" - -#: ../ex_docmd.c:6610 -msgid "E465: :winsize requires two number arguments" -msgstr "E465: :winsize ɂ2̐l̈Kvł" - -#: ../ex_docmd.c:6655 -msgid "E188: Obtaining window position not implemented for this platform" -msgstr "" -"E188: ̃vbgz[ɂ̓EBhEʒu̎擾@\\͎Ă܂" - -#: ../ex_docmd.c:6662 -msgid "E466: :winpos requires two number arguments" -msgstr "E466: :winpos ɂ2̐l̈Kvł" - -#: ../ex_docmd.c:7241 -#, c-format -msgid "E739: Cannot create directory: %s" -msgstr "E739: fBNg쐬ł܂: %s" - -#: ../ex_docmd.c:7268 -#, c-format -msgid "E189: \"%s\" exists (add ! to override)" -msgstr "E189: \"%s\" ݂܂ (㏑ɂ ! ljĂ)" - -#: ../ex_docmd.c:7273 -#, c-format -msgid "E190: Cannot open \"%s\" for writing" -msgstr "E190: \"%s\" ݗpƂĊJ܂" - -#. set mark -#: ../ex_docmd.c:7294 -msgid "E191: Argument must be a letter or forward/backward quote" -msgstr "E191: 1̉pp (' `) łȂ܂" - -#: ../ex_docmd.c:7333 -msgid "E192: Recursive use of :normal too deep" -msgstr "E192: :normal ̍ċAp[Ȃ߂܂" - -#: ../ex_docmd.c:7807 -msgid "E194: No alternate file name to substitute for '#'" -msgstr "E194: '#'u镛t@C̖O܂" - -#: ../ex_docmd.c:7841 -msgid "E495: no autocommand file name to substitute for \"<afile>\"" -msgstr "E495: \"<afile>\"uautocommand̃t@C܂" - -#: ../ex_docmd.c:7850 -msgid "E496: no autocommand buffer number to substitute for \"<abuf>\"" -msgstr "E496: \"<abuf>\"uautocommandobt@ԍ܂" - -#: ../ex_docmd.c:7861 -msgid "E497: no autocommand match name to substitute for \"<amatch>\"" -msgstr "E497: \"<amatch>\"uautocommand̊Y܂" - -#: ../ex_docmd.c:7870 -msgid "E498: no :source file name to substitute for \"<sfile>\"" -msgstr "E498: \"<sfile>\"u :source Ώۃt@C܂" - -#: ../ex_docmd.c:7876 -msgid "E842: no line number to use for \"<slnum>\"" -msgstr "E842: \"<slnum>\"usԍ܂" - -#: ../ex_docmd.c:7903 -#, fuzzy, c-format -msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" -msgstr "" -"E499: '%' '#' t@CȂ̂ \":p:h\" Ȃg͂ł܂" - -#: ../ex_docmd.c:7905 -msgid "E500: Evaluates to an empty string" -msgstr "E500: Ƃĕ]܂" - -#: ../ex_docmd.c:8838 -msgid "E195: Cannot open viminfo file for reading" -msgstr "E195: viminfot@CǍpƂĊJ܂" - -#: ../ex_eval.c:464 -msgid "E608: Cannot :throw exceptions with 'Vim' prefix" -msgstr "E608: 'Vim' Ŏn܂O :throw ł܂" - -#. always scroll up, don't overwrite -#: ../ex_eval.c:496 -#, c-format -msgid "Exception thrown: %s" -msgstr "O܂: %s" - -#: ../ex_eval.c:545 -#, c-format -msgid "Exception finished: %s" -msgstr "O܂: %s" - -#: ../ex_eval.c:546 -#, c-format -msgid "Exception discarded: %s" -msgstr "Oj܂: %s" - -#: ../ex_eval.c:588 ../ex_eval.c:634 -#, c-format -msgid "%s, line %<PRId64>" -msgstr "%s, s %<PRId64>" - -#. always scroll up, don't overwrite -#: ../ex_eval.c:608 -#, c-format -msgid "Exception caught: %s" -msgstr "Oߑ܂: %s" - -#: ../ex_eval.c:676 -#, c-format -msgid "%s made pending" -msgstr "%s ɂ薢Ԃ܂" - -#: ../ex_eval.c:679 -#, c-format -msgid "%s resumed" -msgstr "%s ĊJ܂" - -#: ../ex_eval.c:683 -#, c-format -msgid "%s discarded" -msgstr "%s j܂" - -#: ../ex_eval.c:708 -msgid "Exception" -msgstr "O" - -#: ../ex_eval.c:713 -msgid "Error and interrupt" -msgstr "G[Ɗ" - -#: ../ex_eval.c:715 -msgid "Error" -msgstr "G[" - -#. if (pending & CSTP_INTERRUPT) -#: ../ex_eval.c:717 -msgid "Interrupt" -msgstr "" - -#: ../ex_eval.c:795 -msgid "E579: :if nesting too deep" -msgstr "E579: :if ̓q[߂܂" - -#: ../ex_eval.c:830 -msgid "E580: :endif without :if" -msgstr "E580: :if ̂Ȃ :endif ܂" - -#: ../ex_eval.c:873 -msgid "E581: :else without :if" -msgstr "E581: :if ̂Ȃ :else ܂" - -#: ../ex_eval.c:876 -msgid "E582: :elseif without :if" -msgstr "E582: :if ̂Ȃ :elseif ܂" - -#: ../ex_eval.c:880 -msgid "E583: multiple :else" -msgstr "E583: :else ܂" - -#: ../ex_eval.c:883 -msgid "E584: :elseif after :else" -msgstr "E584: :else ̌ :elseif ܂" - -#: ../ex_eval.c:941 -msgid "E585: :while/:for nesting too deep" -msgstr "E585: :while :for ̓q[߂܂" - -#: ../ex_eval.c:1028 -msgid "E586: :continue without :while or :for" -msgstr "E586: :while :for ̂Ȃ :continue ܂" - -#: ../ex_eval.c:1061 -msgid "E587: :break without :while or :for" -msgstr "E587: :while :for ̂Ȃ :break ܂" - -#: ../ex_eval.c:1102 -msgid "E732: Using :endfor with :while" -msgstr "E732: :endfor :while Ƒgݍ킹Ă܂" - -#: ../ex_eval.c:1104 -msgid "E733: Using :endwhile with :for" -msgstr "E733: :endwhile :for Ƒgݍ킹Ă܂" - -#: ../ex_eval.c:1247 -msgid "E601: :try nesting too deep" -msgstr "E601: :try ̓q[߂܂" - -#: ../ex_eval.c:1317 -msgid "E603: :catch without :try" -msgstr "E603: :try ̂Ȃ :catch ܂" - -#. Give up for a ":catch" after ":finally" and ignore it. -#. * Just parse. -#: ../ex_eval.c:1332 -msgid "E604: :catch after :finally" -msgstr "E604: :finally ̌ :catch ܂" - -#: ../ex_eval.c:1451 -msgid "E606: :finally without :try" -msgstr "E606: :try ̂Ȃ :finally ܂" - -#. Give up for a multiple ":finally" and ignore it. -#: ../ex_eval.c:1467 -msgid "E607: multiple :finally" -msgstr "E607: :finally ܂" - -#: ../ex_eval.c:1571 -msgid "E602: :endtry without :try" -msgstr "E602: :try ̂Ȃ :endtry ł" - -#: ../ex_eval.c:2026 -msgid "E193: :endfunction not inside a function" -msgstr "E193: ̊O :endfunction ܂" - -#: ../ex_getln.c:1643 -msgid "E788: Not allowed to edit another buffer now" -msgstr "E788: ݂͑̃obt@ҏW邱Ƃ͋܂" - -#: ../ex_getln.c:1656 -msgid "E811: Not allowed to change buffer information now" -msgstr "E811: ݂̓obt@ύX邱Ƃ͋܂" - -#: ../ex_getln.c:3178 -msgid "tagname" -msgstr "^O" - -#: ../ex_getln.c:3181 -msgid " kind file\n" -msgstr " t@C\n" - -#: ../ex_getln.c:4799 -msgid "'history' option is zero" -msgstr "IvV 'history' [ł" - -#: ../ex_getln.c:5046 -#, c-format -msgid "" -"\n" -"# %s History (newest to oldest):\n" -msgstr "" -"\n" -"# %s ڂ̗ (V̂Â̂):\n" - -#: ../ex_getln.c:5047 -msgid "Command Line" -msgstr "R}hC" - -#: ../ex_getln.c:5048 -msgid "Search String" -msgstr "" - -#: ../ex_getln.c:5049 -msgid "Expression" -msgstr "" - -#: ../ex_getln.c:5050 -msgid "Input Line" -msgstr "͍s" - -#: ../ex_getln.c:5117 -msgid "E198: cmd_pchar beyond the command length" -msgstr "E198: cmd_pchar R}h܂" - -#: ../ex_getln.c:5279 -msgid "E199: Active window or buffer deleted" -msgstr "E199: ANeBuȃEBhEobt@폜܂" - -#: ../file_search.c:203 -msgid "E854: path too long for completion" -msgstr "E854: pX߂ĕ⊮ł܂" - -#: ../file_search.c:446 -#, c-format -msgid "" -"E343: Invalid path: '**[number]' must be at the end of the path or be " -"followed by '%s'." -msgstr "" -"E343: ȃpXł: '**[l]' path̍Ōォ '%s' ĂȂƂ܂" -"." - -#: ../file_search.c:1505 -#, c-format -msgid "E344: Can't find directory \"%s\" in cdpath" -msgstr "E344: cdpathɂ \"%s\" Ƃt@C܂" - -#: ../file_search.c:1508 -#, c-format -msgid "E345: Can't find file \"%s\" in path" -msgstr "E345: pathɂ \"%s\" Ƃt@C܂" - -#: ../file_search.c:1512 -#, c-format -msgid "E346: No more directory \"%s\" found in cdpath" -msgstr "E346: cdpathɂ͂ȏ \"%s\" Ƃt@C܂" - -#: ../file_search.c:1515 -#, c-format -msgid "E347: No more file \"%s\" found in path" -msgstr "E347: pXɂ͂ȏ \"%s\" Ƃt@C܂" - -#: ../fileio.c:137 -msgid "E812: Autocommands changed buffer or buffer name" -msgstr "E812: autocommandobt@obt@ύX܂" - -#: ../fileio.c:368 -msgid "Illegal file name" -msgstr "sȃt@C" - -#: ../fileio.c:395 ../fileio.c:476 ../fileio.c:2543 ../fileio.c:2578 -msgid "is a directory" -msgstr "̓fBNgł" - -#: ../fileio.c:397 -msgid "is not a file" -msgstr "̓t@Cł͂܂" - -#: ../fileio.c:508 ../fileio.c:3522 -msgid "[New File]" -msgstr "[Vt@C]" - -#: ../fileio.c:511 -msgid "[New DIRECTORY]" -msgstr "[VKfBNg]" - -#: ../fileio.c:529 ../fileio.c:532 -msgid "[File too big]" -msgstr "[t@Cߑ]" - -#: ../fileio.c:534 -msgid "[Permission Denied]" -msgstr "[܂]" - -#: ../fileio.c:653 -msgid "E200: *ReadPre autocommands made the file unreadable" -msgstr "E200: *ReadPre autocommand t@CǍsɂ܂" - -#: ../fileio.c:655 -msgid "E201: *ReadPre autocommands must not change current buffer" -msgstr "E201: *ReadPre autocommand ݂͌̃obt@ς܂" - -#: ../fileio.c:672 -msgid "Nvim: Reading from stdin...\n" -msgstr "Vim: W͂Ǎ...\n" - -#. Re-opening the original file failed! -#: ../fileio.c:909 -msgid "E202: Conversion made file unreadable!" -msgstr "E202: ϊt@CǍsɂ܂" - -#. fifo or socket -#: ../fileio.c:1782 -msgid "[fifo/socket]" -msgstr "[FIFO/\\Pbg]" - -#. fifo -#: ../fileio.c:1788 -msgid "[fifo]" -msgstr "[FIFO]" - -#. or socket -#: ../fileio.c:1794 -msgid "[socket]" -msgstr "[\\Pbg]" - -#. or character special -#: ../fileio.c:1801 -msgid "[character special]" -msgstr "[LN^EfoCX]" - -#: ../fileio.c:1815 -msgid "[CR missing]" -msgstr "[CR]" - -#: ../fileio.c:1819 -msgid "[long lines split]" -msgstr "[s]" - -#: ../fileio.c:1823 ../fileio.c:3512 -msgid "[NOT converted]" -msgstr "[ϊ]" - -#: ../fileio.c:1826 ../fileio.c:3515 -msgid "[converted]" -msgstr "[ϊ]" - -#: ../fileio.c:1831 -#, c-format -msgid "[CONVERSION ERROR in line %<PRId64>]" -msgstr "[%<PRId64> sڂŕϊG[]" - -#: ../fileio.c:1835 -#, c-format -msgid "[ILLEGAL BYTE in line %<PRId64>]" -msgstr "[%<PRId64> sڂ̕sȃoCg]" - -#: ../fileio.c:1838 -msgid "[READ ERRORS]" -msgstr "[ǍG[]" - -#: ../fileio.c:2104 -msgid "Can't find temp file for conversion" -msgstr "ϊɕKvȈꎞt@C܂" - -#: ../fileio.c:2110 -msgid "Conversion with 'charconvert' failed" -msgstr "'charconvert' ɂϊs܂" - -#: ../fileio.c:2113 -msgid "can't read output of 'charconvert'" -msgstr "'charconvert' ̏o͂Ǎ߂܂ł" - -#: ../fileio.c:2437 -msgid "E676: No matching autocommands for acwrite buffer" -msgstr "E676: acwriteobt@̊Yautocommand݂͑܂" - -#: ../fileio.c:2466 -msgid "E203: Autocommands deleted or unloaded buffer to be written" -msgstr "E203: ۑobt@autocommand폜܂" - -#: ../fileio.c:2486 -msgid "E204: Autocommand changed number of lines in unexpected way" -msgstr "E204: autocommand\\ʕ@ōsύX܂" - -#: ../fileio.c:2548 ../fileio.c:2565 -msgid "is not a file or writable device" -msgstr "̓t@Cł݉\\foCXł܂" - -#: ../fileio.c:2601 -msgid "is read-only (add ! to override)" -msgstr "͓Ǎpł (ɂ ! lj)" - -#: ../fileio.c:2886 -msgid "E506: Can't write to backup file (add ! to override)" -msgstr "E506: obNAbvt@Cۑł܂ (! ljŋۑ)" - -#: ../fileio.c:2898 -msgid "E507: Close error for backup file (add ! to override)" -msgstr "" -"E507: obNAbvt@CۂɃG[܂ (! ljŋ)" - -#: ../fileio.c:2901 -msgid "E508: Can't read file for backup (add ! to override)" -msgstr "E508: obNAbvpt@CǍ߂܂ (! ljŋǍ)" - -#: ../fileio.c:2923 -msgid "E509: Cannot create backup file (add ! to override)" -msgstr "E509: obNAbvt@C܂ (! ljŋ쐬)" - -#: ../fileio.c:3008 -msgid "E510: Can't make backup file (add ! to override)" -msgstr "E510: obNAbvt@C܂ (! ljŋ쐬)" - -#. Can't write without a tempfile! -#: ../fileio.c:3121 -msgid "E214: Can't find temp file for writing" -msgstr "E214: ۑpꎞt@C܂" - -#: ../fileio.c:3134 -msgid "E213: Cannot convert (add ! to write without conversion)" -msgstr "E213: ϊł܂ (! ljŕϊɕۑ)" - -#: ../fileio.c:3169 -msgid "E166: Can't open linked file for writing" -msgstr "E166: Nꂽt@Cɏ߂܂" - -#: ../fileio.c:3173 -msgid "E212: Can't open file for writing" -msgstr "E212: ݗpɃt@CJ܂" - -#: ../fileio.c:3363 -msgid "E667: Fsync failed" -msgstr "E667: fsync Ɏs܂" - -#: ../fileio.c:3398 -msgid "E512: Close failed" -msgstr "E512: 邱ƂɎs" - -#: ../fileio.c:3436 -msgid "E513: write error, conversion failed (make 'fenc' empty to override)" -msgstr "E513: ݃G[, ϊs (㏑ɂ 'fenc' ɂĂ)" - -#: ../fileio.c:3441 -#, c-format -msgid "" -"E513: write error, conversion failed in line %<PRId64> (make 'fenc' empty to " -"override)" -msgstr "" -"E513: ݃G[, ϊs, s %<PRId64> (㏑ɂ 'fenc' ɂ" -")" - -#: ../fileio.c:3448 -msgid "E514: write error (file system full?)" -msgstr "E514: ݃G[, (t@CVXet?)" - -#: ../fileio.c:3506 -msgid " CONVERSION ERROR" -msgstr " ϊG[" - -#: ../fileio.c:3509 -#, c-format -msgid " in line %<PRId64>;" -msgstr " s %<PRId64>;" - -#: ../fileio.c:3519 -msgid "[Device]" -msgstr "[foCX]" - -#: ../fileio.c:3522 -msgid "[New]" -msgstr "[V]" - -#: ../fileio.c:3535 -msgid " [a]" -msgstr " [a]" - -#: ../fileio.c:3535 -msgid " appended" -msgstr " lj" - -#: ../fileio.c:3537 -msgid " [w]" -msgstr " [w]" - -#: ../fileio.c:3537 -msgid " written" -msgstr " " - -#: ../fileio.c:3579 -msgid "E205: Patchmode: can't save original file" -msgstr "E205: patchmode: {t@Cۑł܂" - -#: ../fileio.c:3602 -msgid "E206: patchmode: can't touch empty original file" -msgstr "E206: patchmode: ̌{t@Ctouchł܂" - -#: ../fileio.c:3616 -msgid "E207: Can't delete backup file" -msgstr "E207: obNAbvt@C܂" - -#: ../fileio.c:3672 -msgid "" -"\n" -"WARNING: Original file may be lost or damaged\n" -msgstr "" -"\n" -"x: {t@CꂽύX܂\n" - -#: ../fileio.c:3675 -msgid "don't quit the editor until the file is successfully written!" -msgstr "t@C̕ۑɐ܂ŃGfB^IȂł!" - -#: ../fileio.c:3795 -msgid "[dos]" -msgstr "[dos]" - -#: ../fileio.c:3795 -msgid "[dos format]" -msgstr "[dostH[}bg]" - -#: ../fileio.c:3801 -msgid "[mac]" -msgstr "[mac]" - -#: ../fileio.c:3801 -msgid "[mac format]" -msgstr "[mactH[}bg]" - -#: ../fileio.c:3807 -msgid "[unix]" -msgstr "[unix]" - -#: ../fileio.c:3807 -msgid "[unix format]" -msgstr "[unixtH[}bg]" - -#: ../fileio.c:3831 -msgid "1 line, " -msgstr "1 s, " - -#: ../fileio.c:3833 -#, c-format -msgid "%<PRId64> lines, " -msgstr "%<PRId64> s, " - -#: ../fileio.c:3836 -msgid "1 character" -msgstr "1 " - -#: ../fileio.c:3838 -#, c-format -msgid "%<PRId64> characters" -msgstr "%<PRId64> " - -#: ../fileio.c:3849 -msgid "[noeol]" -msgstr "[noeol]" - -#: ../fileio.c:3849 -msgid "[Incomplete last line]" -msgstr "[ŏIssS]" - -#. don't overwrite messages here -#. must give this prompt -#. don't use emsg() here, don't want to flush the buffers -#: ../fileio.c:3865 -msgid "WARNING: The file has been changed since reading it!!!" -msgstr "x: ǍɃt@CɕύX܂!!!" - -#: ../fileio.c:3867 -msgid "Do you really want to write to it" -msgstr "{ɏ㏑܂" - -#: ../fileio.c:4648 -#, c-format -msgid "E208: Error writing to \"%s\"" -msgstr "E208: \"%s\" ݒ̃G[ł" - -#: ../fileio.c:4655 -#, c-format -msgid "E209: Error closing \"%s\"" -msgstr "E209: \"%s\" 鎞ɃG[ł" - -#: ../fileio.c:4657 -#, c-format -msgid "E210: Error reading \"%s\"" -msgstr "E210: \"%s\" Ǎ̃G[ł" - -#: ../fileio.c:4883 -msgid "E246: FileChangedShell autocommand deleted buffer" -msgstr "E246: autocommand FileChangedShell obt@폜܂" - -#: ../fileio.c:4894 -#, c-format -msgid "E211: File \"%s\" no longer available" -msgstr "E211: t@C \"%s\" ͊ɑ݂܂" - -#: ../fileio.c:4906 -#, c-format -msgid "" -"W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as " -"well" -msgstr "W12: x: t@C \"%s\" ύXVim̃obt@ύX܂" - -#: ../fileio.c:4907 -msgid "See \":help W12\" for more info." -msgstr "ڍׂ \":help W12\" QƂĂ" - -#: ../fileio.c:4910 -#, c-format -msgid "W11: Warning: File \"%s\" has changed since editing started" -msgstr "W11: x: t@C \"%s\" ͕ҏWJnɕύX܂" - -#: ../fileio.c:4911 -msgid "See \":help W11\" for more info." -msgstr "ڍׂ \":help W11\" QƂĂ" - -#: ../fileio.c:4914 -#, c-format -msgid "W16: Warning: Mode of file \"%s\" has changed since editing started" -msgstr "W16: x: t@C \"%s\" ̃[hҏWJnɕύX܂" - -#: ../fileio.c:4915 -msgid "See \":help W16\" for more info." -msgstr "ڍׂ \":help W16\" QƂĂ" - -#: ../fileio.c:4927 -#, c-format -msgid "W13: Warning: File \"%s\" has been created after editing started" -msgstr "W13: x: t@C \"%s\" ͕ҏWJnɍ쐬܂" - -#: ../fileio.c:4947 -msgid "Warning" -msgstr "x" - -#: ../fileio.c:4948 -msgid "" -"&OK\n" -"&Load File" -msgstr "" -"&OK\n" -"t@CǍ(&L)" - -#: ../fileio.c:5065 -#, c-format -msgid "E462: Could not prepare for reloading \"%s\"" -msgstr "E462: \"%s\" [h鏀ł܂ł" - -#: ../fileio.c:5078 -#, c-format -msgid "E321: Could not reload \"%s\"" -msgstr "E321: \"%s\" ̓[hł܂ł" - -#: ../fileio.c:5601 -msgid "--Deleted--" -msgstr "--폜--" - -#: ../fileio.c:5732 -#, c-format -msgid "auto-removing autocommand: %s <buffer=%d>" -msgstr "autocommand: %s <obt@=%d> Iɍ폜܂" - -#. the group doesn't exist -#: ../fileio.c:5772 -#, c-format -msgid "E367: No such group: \"%s\"" -msgstr "E367: ̃O[v͂܂: \"%s\"" - -#: ../fileio.c:5897 -#, c-format -msgid "E215: Illegal character after *: %s" -msgstr "E215: * ̌ɕsȕ܂: %s" - -#: ../fileio.c:5905 -#, c-format -msgid "E216: No such event: %s" -msgstr "E216: ̂悤ȃCxg͂܂: %s" - -#: ../fileio.c:5907 -#, c-format -msgid "E216: No such group or event: %s" -msgstr "E216: ̂悤ȃO[v̓Cxg͂܂: %s" - -#. Highlight title -#: ../fileio.c:6090 -msgid "" -"\n" -"--- Auto-Commands ---" -msgstr "" -"\n" -"--- Auto-Commands ---" - -#: ../fileio.c:6293 -#, c-format -msgid "E680: <buffer=%d>: invalid buffer number " -msgstr "E680: <obt@=%d>: ȃobt@ԍł " - -#: ../fileio.c:6370 -msgid "E217: Can't execute autocommands for ALL events" -msgstr "E217: SẴCxgɑĂautocommand͎sł܂" - -#: ../fileio.c:6393 -msgid "No matching autocommands" -msgstr "Yautocommand݂͑܂" - -#: ../fileio.c:6831 -msgid "E218: autocommand nesting too deep" -msgstr "E218: autocommand̓q[߂܂" - -#: ../fileio.c:7143 -#, c-format -msgid "%s Auto commands for \"%s\"" -msgstr "%s Auto commands for \"%s\"" - -#: ../fileio.c:7149 -#, c-format -msgid "Executing %s" -msgstr "%s sĂ܂" - -#: ../fileio.c:7211 -#, c-format -msgid "autocommand %s" -msgstr "autocommand %s" - -#: ../fileio.c:7795 -msgid "E219: Missing {." -msgstr "E219: { ܂." - -#: ../fileio.c:7797 -msgid "E220: Missing }." -msgstr "E220: } ܂." - -#: ../fold.c:93 -msgid "E490: No fold found" -msgstr "E490: ݂܂" - -#: ../fold.c:544 -msgid "E350: Cannot create fold with current 'foldmethod'" -msgstr "E350: ݂ 'foldmethod' ł݂͐쐬ł܂" - -#: ../fold.c:546 -msgid "E351: Cannot delete fold with current 'foldmethod'" -msgstr "E351: ݂ 'foldmethod' ł݂͐폜ł܂" - -#: ../fold.c:1784 -#, c-format -msgid "+--%3ld lines folded " -msgstr "+--%3ld s܂܂ " - -#. buffer has already been read -#: ../getchar.c:273 -msgid "E222: Add to read buffer" -msgstr "E222: Ǎobt@֒lj" - -#: ../getchar.c:2040 -msgid "E223: recursive mapping" -msgstr "E223: ċAI}bsO" - -#: ../getchar.c:2849 -#, c-format -msgid "E224: global abbreviation already exists for %s" -msgstr "E224: %s ƂO[oZk͂͊ɑ݂܂" - -#: ../getchar.c:2852 -#, c-format -msgid "E225: global mapping already exists for %s" -msgstr "E225: %s ƂO[o}bsO͊ɑ݂܂" - -#: ../getchar.c:2952 -#, c-format -msgid "E226: abbreviation already exists for %s" -msgstr "E226: %s ƂZk͂͊ɑ݂܂" - -#: ../getchar.c:2955 -#, c-format -msgid "E227: mapping already exists for %s" -msgstr "E227: %s Ƃ}bsO͊ɑ݂܂" - -#: ../getchar.c:3008 -msgid "No abbreviation found" -msgstr "Zk͂͌܂ł" - -#: ../getchar.c:3010 -msgid "No mapping found" -msgstr "}bsO͌܂ł" - -#: ../getchar.c:3974 -msgid "E228: makemap: Illegal mode" -msgstr "E228: makemap: sȃ[h" - -#. key value of 'cedit' option -#. type of cmdline window or 0 -#. result of cmdline window or 0 -#: ../globals.h:924 -msgid "--No lines in buffer--" -msgstr "--obt@ɍs܂--" - -#. -#. * The error messages that can be shared are included here. -#. * Excluded are errors that are only used once and debugging messages. -#. -#: ../globals.h:996 -msgid "E470: Command aborted" -msgstr "E470: R}hf܂" - -#: ../globals.h:997 -msgid "E471: Argument required" -msgstr "E471: Kvł" - -#: ../globals.h:998 -msgid "E10: \\ should be followed by /, ? or &" -msgstr "E10: \\ ̌ / ? & łȂȂ܂" - -#: ../globals.h:1000 -msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits" -msgstr "E11: R}hCł͖ł; <CR>Ŏs, CTRL-Cł߂" - -#: ../globals.h:1002 -msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search" -msgstr "" -"E12: ݂̃fBNg^Ołexrc/vimrc̃R}h͋܂" - -#: ../globals.h:1003 -msgid "E171: Missing :endif" -msgstr "E171: :endif ܂" - -#: ../globals.h:1004 -msgid "E600: Missing :endtry" -msgstr "E600: :endtry ܂" - -#: ../globals.h:1005 -msgid "E170: Missing :endwhile" -msgstr "E170: :endwhile ܂" - -#: ../globals.h:1006 -msgid "E170: Missing :endfor" -msgstr "E170: :endfor ܂" - -#: ../globals.h:1007 -msgid "E588: :endwhile without :while" -msgstr "E588: :while ̂Ȃ :endwhile ܂" - -#: ../globals.h:1008 -msgid "E588: :endfor without :for" -msgstr "E588: :endfor ̂Ȃ :for ܂" - -#: ../globals.h:1009 -msgid "E13: File exists (add ! to override)" -msgstr "E13: t@C݂܂ (! ljŏ㏑)" - -#: ../globals.h:1010 -msgid "E472: Command failed" -msgstr "E472: R}hs܂" - -#: ../globals.h:1011 -msgid "E473: Internal error" -msgstr "E473: G[ł" - -#: ../globals.h:1012 -msgid "Interrupted" -msgstr "܂܂" - -#: ../globals.h:1013 -msgid "E14: Invalid address" -msgstr "E14: ȃAhXł" - -#: ../globals.h:1014 -msgid "E474: Invalid argument" -msgstr "E474: Ȉł" - -#: ../globals.h:1015 -#, c-format -msgid "E475: Invalid argument: %s" -msgstr "E475: Ȉł: %s" - -#: ../globals.h:1016 -#, c-format -msgid "E15: Invalid expression: %s" -msgstr "E15: Ȏł: %s" - -#: ../globals.h:1017 -msgid "E16: Invalid range" -msgstr "E16: Ȕ͈͂ł" - -#: ../globals.h:1018 -msgid "E476: Invalid command" -msgstr "E476: ȃR}hł" - -#: ../globals.h:1019 -#, c-format -msgid "E17: \"%s\" is a directory" -msgstr "E17: \"%s\" ̓fBNgł" - -#: ../globals.h:1020 -#, fuzzy -msgid "E900: Invalid job id" -msgstr "E49: ȃXN[ʂł" - -#: ../globals.h:1021 -msgid "E901: Job table is full" -msgstr "" - -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - -#: ../globals.h:1024 -#, c-format -msgid "E364: Library call failed for \"%s()\"" -msgstr "E364: \"%s\"() ̃CuďoɎs܂" - -#: ../globals.h:1026 -msgid "E19: Mark has invalid line number" -msgstr "E19: }[Nɖȍsԍw肳Ă܂" - -#: ../globals.h:1027 -msgid "E20: Mark not set" -msgstr "E20: }[N͐ݒ肳Ă܂" - -#: ../globals.h:1029 -msgid "E21: Cannot make changes, 'modifiable' is off" -msgstr "E21: 'modifiable' ItȂ̂, ύXł܂" - -#: ../globals.h:1030 -msgid "E22: Scripts nested too deep" -msgstr "E22: XNvg̓q[߂܂" - -#: ../globals.h:1031 -msgid "E23: No alternate file" -msgstr "E23: t@C͂܂" - -#: ../globals.h:1032 -msgid "E24: No such abbreviation" -msgstr "E24: ̂悤ȒZk͂͂܂" - -#: ../globals.h:1033 -msgid "E477: No ! allowed" -msgstr "E477: ! ͋Ă܂" - -#: ../globals.h:1035 -msgid "E25: Nvim does not have a built-in GUI" -msgstr "E25: GUI͎gps\\ł: RpCɖɂĂ܂" - -#: ../globals.h:1036 -#, c-format -msgid "E28: No such highlight group name: %s" -msgstr "E28: ̂悤Ȗ̃nCCgO[v͂܂: %s" - -#: ../globals.h:1037 -msgid "E29: No inserted text yet" -msgstr "E29: ܂eLXg}Ă܂" - -#: ../globals.h:1038 -msgid "E30: No previous command line" -msgstr "E30: ȑOɃR}hs܂" - -#: ../globals.h:1039 -msgid "E31: No such mapping" -msgstr "E31: ̂悤ȃ}bsO͂܂" - -#: ../globals.h:1040 -msgid "E479: No match" -msgstr "E479: Y͂܂" - -#: ../globals.h:1041 -#, c-format -msgid "E480: No match: %s" -msgstr "E480: Y͂܂: %s" - -#: ../globals.h:1042 -msgid "E32: No file name" -msgstr "E32: t@C܂" - -#: ../globals.h:1044 -msgid "E33: No previous substitute regular expression" -msgstr "E33: K\\u܂sĂ܂" - -#: ../globals.h:1045 -msgid "E34: No previous command" -msgstr "E34: R}h܂sĂ܂" - -#: ../globals.h:1046 -msgid "E35: No previous regular expression" -msgstr "E35: K\\܂sĂ܂" - -#: ../globals.h:1047 -msgid "E481: No range allowed" -msgstr "E481: ͈͎w͋Ă܂" - -#: ../globals.h:1048 -msgid "E36: Not enough room" -msgstr "E36: EBhEɏ\\ȍ͕܂" - -#: ../globals.h:1049 -#, c-format -msgid "E482: Can't create file %s" -msgstr "E482: t@C %s 쐬ł܂" - -#: ../globals.h:1050 -msgid "E483: Can't get temp file name" -msgstr "E483: ꎞt@C̖O擾ł܂" - -#: ../globals.h:1051 -#, c-format -msgid "E484: Can't open file %s" -msgstr "E484: t@C \"%s\" J܂" - -#: ../globals.h:1052 -#, c-format -msgid "E485: Can't read file %s" -msgstr "E485: t@C %s Ǎ߂܂" - -#: ../globals.h:1054 -msgid "E37: No write since last change (add ! to override)" -msgstr "E37: Ō̕ύXۑĂ܂ (! ljŕύXj)" - -#: ../globals.h:1055 -msgid "E37: No write since last change" -msgstr "E37: Ō̕ύXۑĂ܂" - -#: ../globals.h:1056 -msgid "E38: Null argument" -msgstr "E38: ł" - -#: ../globals.h:1057 -msgid "E39: Number expected" -msgstr "E39: lvĂ܂" - -#: ../globals.h:1058 -#, c-format -msgid "E40: Can't open errorfile %s" -msgstr "E40: G[t@C %s J܂" - -#: ../globals.h:1059 -msgid "E41: Out of memory!" -msgstr "E41: sʂĂ܂!" - -#: ../globals.h:1060 -msgid "Pattern not found" -msgstr "p^[͌܂ł" - -#: ../globals.h:1061 -#, c-format -msgid "E486: Pattern not found: %s" -msgstr "E486: p^[͌܂ł: %s" - -#: ../globals.h:1062 -msgid "E487: Argument must be positive" -msgstr "E487: ͐̒lłȂȂ܂" - -#: ../globals.h:1064 -msgid "E459: Cannot go back to previous directory" -msgstr "E459: ÕfBNgɖ߂܂" - -#: ../globals.h:1066 -msgid "E42: No Errors" -msgstr "E42: G[͂܂" - -#: ../globals.h:1067 -msgid "E776: No location list" -msgstr "E776: P[VXg͂܂" - -#: ../globals.h:1068 -msgid "E43: Damaged match string" -msgstr "E43: YjĂ܂" - -#: ../globals.h:1069 -msgid "E44: Corrupted regexp program" -msgstr "E44: sȐK\\vOł" - -#: ../globals.h:1071 -msgid "E45: 'readonly' option is set (add ! to override)" -msgstr "E45: 'readonly' IvVݒ肳Ă܂ (! ljŏ㏑)" - -#: ../globals.h:1073 -#, c-format -msgid "E46: Cannot change read-only variable \"%s\"" -msgstr "E46: ǎpϐ \"%s\" ɂ͒lݒł܂" - -#: ../globals.h:1075 -#, c-format -msgid "E794: Cannot set variable in the sandbox: \"%s\"" -msgstr "E794: Th{bNXł͕ϐ \"%s\" ɒlݒł܂" - -#: ../globals.h:1076 -msgid "E47: Error while reading errorfile" -msgstr "E47: G[t@C̓ǍɃG[܂" - -#: ../globals.h:1078 -msgid "E48: Not allowed in sandbox" -msgstr "E48: Th{bNXł͋܂" - -#: ../globals.h:1080 -msgid "E523: Not allowed here" -msgstr "E523: ł͋܂" - -#: ../globals.h:1082 -msgid "E359: Screen mode setting not supported" -msgstr "E359: XN[[h̐ݒɂ͑ΉĂ܂" - -#: ../globals.h:1083 -msgid "E49: Invalid scroll size" -msgstr "E49: ȃXN[ʂł" - -#: ../globals.h:1084 -msgid "E91: 'shell' option is empty" -msgstr "E91: 'shell' IvVł" - -#: ../globals.h:1085 -msgid "E255: Couldn't read in sign data!" -msgstr "E255: sign ̃f[^Ǎ߂܂ł" - -#: ../globals.h:1086 -msgid "E72: Close error on swap file" -msgstr "E72: Xbvt@C̃N[YG[ł" - -#: ../globals.h:1087 -msgid "E73: tag stack empty" -msgstr "E73: ^OX^bNł" - -#: ../globals.h:1088 -msgid "E74: Command too complex" -msgstr "E74: R}hG߂܂" - -#: ../globals.h:1089 -msgid "E75: Name too long" -msgstr "E75: O߂܂" - -#: ../globals.h:1090 -msgid "E76: Too many [" -msgstr "E76: [ ߂܂" - -#: ../globals.h:1091 -msgid "E77: Too many file names" -msgstr "E77: t@C߂܂" - -#: ../globals.h:1092 -msgid "E488: Trailing characters" -msgstr "E488: ]ȕɂ܂" - -#: ../globals.h:1093 -msgid "E78: Unknown mark" -msgstr "E78: m̃}[N" - -#: ../globals.h:1094 -msgid "E79: Cannot expand wildcards" -msgstr "E79: ChJ[hWJł܂" - -#: ../globals.h:1096 -msgid "E591: 'winheight' cannot be smaller than 'winminheight'" -msgstr "E591: 'winheight' 'winminheight' 菬ł܂" - -#: ../globals.h:1098 -msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'" -msgstr "E592: 'winwidth' 'winminwidth' 菬ł܂" - -#: ../globals.h:1099 -msgid "E80: Error while writing" -msgstr "E80: ݒ̃G[" - -#: ../globals.h:1100 -msgid "Zero count" -msgstr "[JEg" - -#: ../globals.h:1101 -msgid "E81: Using <SID> not in a script context" -msgstr "E81: XNvgȊO<SID>g܂" - -#: ../globals.h:1102 -#, c-format -msgid "E685: Internal error: %s" -msgstr "E685: G[ł: %s" - -#: ../globals.h:1104 -msgid "E363: pattern uses more memory than 'maxmempattern'" -msgstr "E363: p^[ 'maxmempattern' ȏ̃gp܂" - -#: ../globals.h:1105 -msgid "E749: empty buffer" -msgstr "E749: obt@ł" - -#, c-format -msgid "E86: Buffer %ld does not exist" -msgstr "E86: obt@ %ld ͂܂" - -#: ../globals.h:1108 -msgid "E682: Invalid search pattern or delimiter" -msgstr "E682: p^[Lsł" - -#: ../globals.h:1109 -msgid "E139: File is loaded in another buffer" -msgstr "E139: Õt@C̃obt@œǍ܂Ă܂" - -#: ../globals.h:1110 -#, c-format -msgid "E764: Option '%s' is not set" -msgstr "E764: IvV '%s' ͐ݒ肳Ă܂" - -#: ../globals.h:1111 -msgid "E850: Invalid register name" -msgstr "E850: ȃWX^ł" - -#: ../globals.h:1114 -msgid "search hit TOP, continuing at BOTTOM" -msgstr "܂Ō̂ʼnɖ߂܂" - -#: ../globals.h:1115 -msgid "search hit BOTTOM, continuing at TOP" -msgstr "܂Ō̂ŏɖ߂܂" - -#: ../hardcopy.c:240 -msgid "E550: Missing colon" -msgstr "E550: R܂" - -#: ../hardcopy.c:252 -msgid "E551: Illegal component" -msgstr "E551: sȍ\\vfł" - -#: ../hardcopy.c:259 -msgid "E552: digit expected" -msgstr "E552: lKvł" - -#: ../hardcopy.c:473 -#, c-format -msgid "Page %d" -msgstr "%d y[W" - -#: ../hardcopy.c:597 -msgid "No text to be printed" -msgstr "eLXg܂" - -#: ../hardcopy.c:668 -#, c-format -msgid "Printing page %d (%d%%)" -msgstr ": y[W %d (%d%%)" - -#: ../hardcopy.c:680 -#, c-format -msgid " Copy %d of %d" -msgstr " Rs[ %d (S %d )" - -#: ../hardcopy.c:733 -#, c-format -msgid "Printed: %s" -msgstr "܂: %s" - -#: ../hardcopy.c:740 -msgid "Printing aborted" -msgstr "~܂" - -#: ../hardcopy.c:1365 -msgid "E455: Error writing to PostScript output file" -msgstr "E455: PostScripto̓t@C̏݃G[ł" - -#: ../hardcopy.c:1747 -#, c-format -msgid "E624: Can't open file \"%s\"" -msgstr "E624: t@C \"%s\" J܂" - -#: ../hardcopy.c:1756 ../hardcopy.c:2470 -#, c-format -msgid "E457: Can't read PostScript resource file \"%s\"" -msgstr "E457: PostScript̃\\[Xt@C \"%s\" Ǎ߂܂" - -#: ../hardcopy.c:1772 -#, c-format -msgid "E618: file \"%s\" is not a PostScript resource file" -msgstr "E618: t@C \"%s\" PostScript \\[Xt@Cł͂܂" - -#: ../hardcopy.c:1788 ../hardcopy.c:1805 ../hardcopy.c:1844 -#, c-format -msgid "E619: file \"%s\" is not a supported PostScript resource file" -msgstr "E619: t@C \"%s\" ͑ΉĂȂ PostScript \\[Xt@Cł" - -#: ../hardcopy.c:1856 -#, c-format -msgid "E621: \"%s\" resource file has wrong version" -msgstr "E621: \\[Xt@C \"%s\" ̓o[WقȂ܂" - -#: ../hardcopy.c:2225 -msgid "E673: Incompatible multi-byte encoding and character set." -msgstr "E673: ̖݊}`oCgGR[fBOƕZbgł" - -#: ../hardcopy.c:2238 -msgid "E674: printmbcharset cannot be empty with multi-byte encoding." -msgstr "E674: }`oCgGR[fBOł printmbcharset ɂł܂" - -#: ../hardcopy.c:2254 -msgid "E675: No default font specified for multi-byte printing." -msgstr "" -"E675: }`oCg邽߂̃ftHgtHgw肳Ă܂" - -#: ../hardcopy.c:2426 -msgid "E324: Can't open PostScript output file" -msgstr "E324: PostScripto͗p̃t@CJ܂" - -#: ../hardcopy.c:2458 -#, c-format -msgid "E456: Can't open file \"%s\"" -msgstr "E456: t@C \"%s\" J܂" - -#: ../hardcopy.c:2583 -msgid "E456: Can't find PostScript resource file \"prolog.ps\"" -msgstr "E456: PostScript̃\\[Xt@C \"prolog.ps\" ܂" - -#: ../hardcopy.c:2593 -msgid "E456: Can't find PostScript resource file \"cidfont.ps\"" -msgstr "E456: PostScript̃\\[Xt@C \"cidfont.ps\" ܂" - -#: ../hardcopy.c:2622 ../hardcopy.c:2639 ../hardcopy.c:2665 -#, c-format -msgid "E456: Can't find PostScript resource file \"%s.ps\"" -msgstr "E456: PostScript̃\\[Xt@C \"%s.ps\" ܂" - -#: ../hardcopy.c:2654 -#, c-format -msgid "E620: Unable to convert to print encoding \"%s\"" -msgstr "E620: GR[h \"%s\" ֕ϊł܂" - -#: ../hardcopy.c:2877 -msgid "Sending to printer..." -msgstr "v^ɑM..." - -#: ../hardcopy.c:2881 -msgid "E365: Failed to print PostScript file" -msgstr "E365: PostScriptt@C̈Ɏs܂" - -#: ../hardcopy.c:2883 -msgid "Print job sent." -msgstr "Wu𑗐M܂." - -#: ../if_cscope.c:85 -msgid "Add a new database" -msgstr "Vf[^x[Xlj" - -#: ../if_cscope.c:87 -msgid "Query for a pattern" -msgstr "p^[̃NG[lj" - -#: ../if_cscope.c:89 -msgid "Show this message" -msgstr "̃bZ[W\\" - -#: ../if_cscope.c:91 -msgid "Kill a connection" -msgstr "ڑI" - -#: ../if_cscope.c:93 -msgid "Reinit all connections" -msgstr "SĂ̐ڑď" - -#: ../if_cscope.c:95 -msgid "Show connections" -msgstr "ڑ\\" - -#: ../if_cscope.c:101 -#, c-format -msgid "E560: Usage: cs[cope] %s" -msgstr "E560: gp@: cs[cope] %s" - -#: ../if_cscope.c:225 -msgid "This cscope command does not support splitting the window.\n" -msgstr "cscopeR}h͕EBhEł̓T|[g܂.\n" - -#: ../if_cscope.c:266 -msgid "E562: Usage: cstag <ident>" -msgstr "E562: gp@: cstag <ident>" - -#: ../if_cscope.c:313 -msgid "E257: cstag: tag not found" -msgstr "E257: cstag: ^O܂" - -#: ../if_cscope.c:461 -#, c-format -msgid "E563: stat(%s) error: %d" -msgstr "E563: stat(%s) G[: %d" - -#: ../if_cscope.c:551 -#, c-format -msgid "E564: %s is not a directory or a valid cscope database" -msgstr "E564: %s ̓fBNgyїLcscopẽf[^x[Xł͂܂" - -#: ../if_cscope.c:566 -#, c-format -msgid "Added cscope database %s" -msgstr "cscopef[^x[X %s lj" - -#: ../if_cscope.c:616 -#, c-format -msgid "E262: error reading cscope connection %<PRId64>" -msgstr "E262: cscope̐ڑ %<PRId64> Ǎݒ̃G[ł" - -#: ../if_cscope.c:711 -msgid "E561: unknown cscope search type" -msgstr "E561: mcscope^ł" - -#: ../if_cscope.c:752 ../if_cscope.c:789 -msgid "E566: Could not create cscope pipes" -msgstr "E566: cscopepCv쐬ł܂ł" - -#: ../if_cscope.c:767 -msgid "E622: Could not fork for cscope" -msgstr "E622: cscope̋N(fork)Ɏs܂" - -#: ../if_cscope.c:849 -msgid "cs_create_connection setpgid failed" -msgstr "cs_create_connection ւ setpgid Ɏs܂" - -#: ../if_cscope.c:853 ../if_cscope.c:889 -msgid "cs_create_connection exec failed" -msgstr "cs_create_connection ̎sɎs܂" - -#: ../if_cscope.c:863 ../if_cscope.c:902 -msgid "cs_create_connection: fdopen for to_fp failed" -msgstr "cs_create_connection: to_fp fdopen Ɏs܂" - -#: ../if_cscope.c:865 ../if_cscope.c:906 -msgid "cs_create_connection: fdopen for fr_fp failed" -msgstr "cs_create_connection: fr_fp fdopen Ɏs܂" - -#: ../if_cscope.c:890 -msgid "E623: Could not spawn cscope process" -msgstr "E623: cscopevZXNł܂ł" - -#: ../if_cscope.c:932 -msgid "E567: no cscope connections" -msgstr "E567: cscopeڑɎs܂" - -#: ../if_cscope.c:1009 -#, c-format -msgid "E469: invalid cscopequickfix flag %c for %c" -msgstr "E469: cscopequickfix tO %c %c ł" - -#: ../if_cscope.c:1058 -#, c-format -msgid "E259: no matches found for cscope query %s of %s" -msgstr "E259: cscopeNG[ %s of %s ɊY܂ł" - -#: ../if_cscope.c:1142 -msgid "cscope commands:\n" -msgstr "cscopeR}h:\n" - -#: ../if_cscope.c:1150 -#, c-format -msgid "%-5s: %s%*s (Usage: %s)" -msgstr "%-5s: %s%*s (gp@: %s)" - -#: ../if_cscope.c:1155 -msgid "" -"\n" -" c: Find functions calling this function\n" -" d: Find functions called by this function\n" -" e: Find this egrep pattern\n" -" f: Find this file\n" -" g: Find this definition\n" -" i: Find files #including this file\n" -" s: Find this C symbol\n" -" t: Find this text string\n" -msgstr "" -"\n" -" c: ̊ĂłT\n" -" d: ̊ĂłT\n" -" e: egrepp^[T\n" -" f: ̃t@CT\n" -" g: ̒`T\n" -" i: ̃t@C#includeĂt@CT\n" -" s: CV{T\n" -" t: ̃eLXgT\n" - -#: ../if_cscope.c:1226 -msgid "E568: duplicate cscope database not added" -msgstr "E568: dcscopef[^x[X͒lj܂ł" - -#: ../if_cscope.c:1335 -#, c-format -msgid "E261: cscope connection %s not found" -msgstr "E261: cscopeڑ %s ܂ł" - -#: ../if_cscope.c:1364 -#, c-format -msgid "cscope connection %s closed" -msgstr "cscopeڑ %s ܂" - -#. should not reach here -#: ../if_cscope.c:1486 -msgid "E570: fatal error in cs_manage_matches" -msgstr "E570: cs_manage_matches ŒvIȃG[ł" - -#: ../if_cscope.c:1693 -#, c-format -msgid "Cscope tag: %s" -msgstr "Cscope ^O: %s" - -#: ../if_cscope.c:1711 -msgid "" -"\n" -" # line" -msgstr "" -"\n" -" # sԍ" - -#: ../if_cscope.c:1713 -msgid "filename / context / line\n" -msgstr "t@C / / s\n" - -#: ../if_cscope.c:1809 -#, c-format -msgid "E609: Cscope error: %s" -msgstr "E609: cscopeG[: %s" - -#: ../if_cscope.c:2053 -msgid "All cscope databases reset" -msgstr "SĂcscopef[^x[XZbg܂" - -#: ../if_cscope.c:2123 -msgid "no cscope connections\n" -msgstr "cscopeڑ܂\n" - -#: ../if_cscope.c:2126 -msgid " # pid database name prepend path\n" -msgstr " # pid f[^x[X prepend pX\n" - -#: ../main.c:144 -msgid "Unknown option argument" -msgstr "m̃IvVł" - -#: ../main.c:146 -msgid "Too many edit arguments" -msgstr "ҏW߂܂" - -#: ../main.c:148 -msgid "Argument missing after" -msgstr "܂" - -#: ../main.c:150 -msgid "Garbage after option argument" -msgstr "IvV̌ɃS~܂" - -#: ../main.c:152 -msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments" -msgstr "\"+command\", \"-c command\", \"--cmd command\" ̈߂܂" - -#: ../main.c:154 -msgid "Invalid argument for" -msgstr "Ȉł: " - -#: ../main.c:294 -#, c-format -msgid "%d files to edit\n" -msgstr "%d ̃t@CҏWTĂ܂\n" - -#: ../main.c:1342 -msgid "Attempt to open script file again: \"" -msgstr "XNvgt@CĂъJĂ݂܂: \"" - -#: ../main.c:1350 -msgid "Cannot open for reading: \"" -msgstr "ǍpƂĊJ܂" - -#: ../main.c:1393 -msgid "Cannot open for script output: \"" -msgstr "XNvgo͗pJ܂" - -#: ../main.c:1622 -msgid "Vim: Warning: Output is not to a terminal\n" -msgstr "Vim: x: [ւ̏o͂ł͂܂\n" - -#: ../main.c:1624 -msgid "Vim: Warning: Input is not from a terminal\n" -msgstr "Vim: x: [̓͂ł͂܂\n" - -#. just in case.. -#: ../main.c:1891 -msgid "pre-vimrc command line" -msgstr "vimrcÕR}hC" - -#: ../main.c:1964 -#, c-format -msgid "E282: Cannot read from \"%s\"" -msgstr "E282: \"%s\"ǍނƂł܂" - -#: ../main.c:2149 -msgid "" -"\n" -"More info with: \"vim -h\"\n" -msgstr "" -"\n" -"ڍׂȏ: \"vim -h\"\n" - -#: ../main.c:2178 -msgid "[file ..] edit specified file(s)" -msgstr "[t@C..] t@CҏW" - -#: ../main.c:2179 -msgid "- read text from stdin" -msgstr "- W͂eLXgǍ" - -#: ../main.c:2180 -msgid "-t tag edit file where tag is defined" -msgstr "-t ^O ^O`ꂽƂ납ҏW" - -#: ../main.c:2181 -msgid "-q [errorfile] edit file with first error" -msgstr "-q [errorfile] ŏ̃G[ŕҏW" - -#: ../main.c:2187 -msgid "" -"\n" -"\n" -"usage:" -msgstr "" -"\n" -"\n" -"gp@:" - -#: ../main.c:2189 -msgid " vim [arguments] " -msgstr " vim [] " - -#: ../main.c:2193 -msgid "" -"\n" -" or:" -msgstr "" -"\n" -" :" - -#: ../main.c:2196 -msgid "" -"\n" -"\n" -"Arguments:\n" -msgstr "" -"\n" -"\n" -":\n" - -#: ../main.c:2197 -msgid "--\t\t\tOnly file names after this" -msgstr "--\t\t\t̂Ƃɂ̓t@C" - -#: ../main.c:2199 -msgid "--literal\t\tDon't expand wildcards" -msgstr "--literal\t\tChJ[hWJȂ" - -#: ../main.c:2201 -msgid "-v\t\t\tVi mode (like \"vi\")" -msgstr "-v\t\t\tVi[h (\"vi\" Ɠ)" - -#: ../main.c:2202 -msgid "-e\t\t\tEx mode (like \"ex\")" -msgstr "-e\t\t\tEx[h (\"ex\" Ɠ)" - -#: ../main.c:2203 -msgid "-E\t\t\tImproved Ex mode" -msgstr "-E\t\t\tEx[h" - -#: ../main.c:2204 -msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")" -msgstr "-s\t\t\tTCg(ob`)[h (\"ex\" p)" - -#: ../main.c:2205 -msgid "-d\t\t\tDiff mode (like \"vimdiff\")" -msgstr "-d\t\t\t[h (\"vidiff\" Ɠ)" - -#: ../main.c:2206 -msgid "-y\t\t\tEasy mode (like \"evim\", modeless)" -msgstr "-y\t\t\tC[W[[h (\"evim\" Ɠ, [h)" - -#: ../main.c:2207 -msgid "-R\t\t\tReadonly mode (like \"view\")" -msgstr "-R\t\t\tǍp[h (\"view\" Ɠ)" - -#: ../main.c:2208 -msgid "-Z\t\t\tRestricted mode (like \"rvim\")" -msgstr "-Z\t\t\t[h (\"rvim\" Ɠ)" - -#: ../main.c:2209 -msgid "-m\t\t\tModifications (writing files) not allowed" -msgstr "-m\t\t\tύX (t@Cۑ) łȂ悤ɂ" - -#: ../main.c:2210 -msgid "-M\t\t\tModifications in text not allowed" -msgstr "-M\t\t\teLXg̕ҏWsȂȂ悤ɂ" - -#: ../main.c:2211 -msgid "-b\t\t\tBinary mode" -msgstr "-b\t\t\toCi[h" - -#: ../main.c:2212 -msgid "-l\t\t\tLisp mode" -msgstr "-l\t\t\tLisp[h" - -#: ../main.c:2213 -msgid "-C\t\t\tCompatible with Vi: 'compatible'" -msgstr "-C\t\t\tVi݊[h: 'compatible'" - -#: ../main.c:2214 -msgid "-N\t\t\tNot fully Vi compatible: 'nocompatible'" -msgstr "-N\t\t\tVi݊[h: 'nocompatible" - -#: ../main.c:2215 -msgid "-V[N][fname]\t\tBe verbose [level N] [log messages to fname]" -msgstr "-V[N][fname]\t\tOo͐ݒ [x N] [Ot@C fname]" - -#: ../main.c:2216 -msgid "-D\t\t\tDebugging mode" -msgstr "-D\t\t\tfobO[h" - -#: ../main.c:2217 -msgid "-n\t\t\tNo swap file, use memory only" -msgstr "-n\t\t\tXbvt@Cgp" - -#: ../main.c:2218 -msgid "-r\t\t\tList swap files and exit" -msgstr "-r\t\t\tXbvt@CI" - -#: ../main.c:2219 -msgid "-r (with file name)\tRecover crashed session" -msgstr "-r (t@C)\tNbVZbVA" - -#: ../main.c:2220 -msgid "-L\t\t\tSame as -r" -msgstr "-L\t\t\t-rƓ" - -#: ../main.c:2221 -msgid "-A\t\t\tstart in Arabic mode" -msgstr "-A\t\t\tArAꃂ[hŋN" - -#: ../main.c:2222 -msgid "-H\t\t\tStart in Hebrew mode" -msgstr "-H\t\t\twuCꃂ[hŋN" - -#: ../main.c:2223 -msgid "-F\t\t\tStart in Farsi mode" -msgstr "-F\t\t\tyVAꃂ[hŋN" - -#: ../main.c:2224 -msgid "-T <terminal>\tSet terminal type to <terminal>" -msgstr "-T <terminal>\t[ <terminal> ɐݒ肷" - -#: ../main.c:2225 -msgid "-u <vimrc>\t\tUse <vimrc> instead of any .vimrc" -msgstr "-u <vimrc>\t\t.vimrc̑ <vimrc> g" - -#: ../main.c:2226 -msgid "--noplugin\t\tDon't load plugin scripts" -msgstr "--noplugin\t\tvOCXNvg[hȂ" - -#: ../main.c:2227 -msgid "-p[N]\t\tOpen N tab pages (default: one for each file)" -msgstr "-p[N]\t\tN ^uy[WJ(ȗl: t@Cɂ1)" - -#: ../main.c:2228 -msgid "-o[N]\t\tOpen N windows (default: one for each file)" -msgstr "-o[N]\t\tN EBhEJ(ȗl: t@Cɂ1)" - -#: ../main.c:2229 -msgid "-O[N]\t\tLike -o but split vertically" -msgstr "-O[N]\t\t-oƓ" - -#: ../main.c:2230 -msgid "+\t\t\tStart at end of file" -msgstr "+\t\t\tt@C̍Ōォ͂߂" - -#: ../main.c:2231 -msgid "+<lnum>\t\tStart at line <lnum>" -msgstr "+<lnum>\t\t<lnum> s͂߂" - -#: ../main.c:2232 -msgid "--cmd <command>\tExecute <command> before loading any vimrc file" -msgstr "--cmd <command>\tvimrc[hO <command> s" - -#: ../main.c:2233 -msgid "-c <command>\t\tExecute <command> after loading the first file" -msgstr "-c <command>\t\tŏ̃t@C[h <command> s" - -#: ../main.c:2235 -msgid "-S <session>\t\tSource file <session> after loading the first file" -msgstr "-S <session>\t\tŏ̃t@C[ht@C <session> 捞" - -#: ../main.c:2236 -msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>" -msgstr "-s <scriptin>\tt@C <scriptin> m[}R}hǍ" - -#: ../main.c:2237 -msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>" -msgstr "-w <scriptout>\t͂SR}ht@C <scriptout> ɒlj" - -#: ../main.c:2238 -msgid "-W <scriptout>\tWrite all typed commands to file <scriptout>" -msgstr "-W <scriptout>\t͂SR}ht@C <scriptout> ɕۑ" - -#: ../main.c:2240 -msgid "--startuptime <file>\tWrite startup timing messages to <file>" -msgstr "--startuptime <file>\tNɂԂ̏ڍׂ <file> ֏o͂" - -#: ../main.c:2242 -msgid "-i <viminfo>\t\tUse <viminfo> instead of .viminfo" -msgstr "-i <viminfo>\t\t.viminfȏ <viminfo> g" - -#: ../main.c:2243 -msgid "-h or --help\tPrint Help (this message) and exit" -msgstr "-h or --help\twv(̃bZ[W)\\I" - -#: ../main.c:2244 -msgid "--version\t\tPrint version information and exit" -msgstr "--version\t\to[W\\I" - -#: ../mark.c:676 -msgid "No marks set" -msgstr "}[Nݒ肳Ă܂" - -#: ../mark.c:678 -#, c-format -msgid "E283: No marks matching \"%s\"" -msgstr "E283: \"%s\" ɊY}[N܂" - -#. Highlight title -#: ../mark.c:687 -msgid "" -"\n" -"mark line col file/text" -msgstr "" -"\n" -"mark s t@C/eLXg" - -#. Highlight title -#: ../mark.c:789 -msgid "" -"\n" -" jump line col file/text" -msgstr "" -"\n" -" jump s t@C/eLXg" - -#. Highlight title -#: ../mark.c:831 -msgid "" -"\n" -"change line col text" -msgstr "" -"\n" -"ύX s eLXg" - -#: ../mark.c:1238 -msgid "" -"\n" -"# File marks:\n" -msgstr "" -"\n" -"# t@C}[N:\n" - -#. Write the jumplist with -' -#: ../mark.c:1271 -msgid "" -"\n" -"# Jumplist (newest first):\n" -msgstr "" -"\n" -"# WvXg (V̂):\n" - -#: ../mark.c:1352 -msgid "" -"\n" -"# History of marks within files (newest to oldest):\n" -msgstr "" -"\n" -"# t@C}[N̗ (V̂Â):\n" - -#: ../mark.c:1431 -msgid "Missing '>'" -msgstr "'>' ܂" - -#: ../memfile.c:426 -msgid "E293: block was not locked" -msgstr "E293: ubNbNĂ܂" - -#: ../memfile.c:799 -msgid "E294: Seek error in swap file read" -msgstr "E294: Xbvt@CǍɃV[NG[ł" - -#: ../memfile.c:803 -msgid "E295: Read error in swap file" -msgstr "E295: Xbvt@C̓Ǎ݃G[ł" - -#: ../memfile.c:849 -msgid "E296: Seek error in swap file write" -msgstr "E296: Xbvt@CݎɃV[NG[ł" - -#: ../memfile.c:865 -msgid "E297: Write error in swap file" -msgstr "E297: Xbvt@C̏݃G[ł" - -#: ../memfile.c:1036 -msgid "E300: Swap file already exists (symlink attack?)" -msgstr "E300: Xbvt@Cɑ݂܂ (symlinkɂU?)" - -#: ../memline.c:318 -msgid "E298: Didn't get block nr 0?" -msgstr "E298: ubN 0 擾ł܂?" - -#: ../memline.c:361 -msgid "E298: Didn't get block nr 1?" -msgstr "E298: ubN 1 擾ł܂?" - -#: ../memline.c:377 -msgid "E298: Didn't get block nr 2?" -msgstr "E298: ubN 2 擾ł܂?" - -#. could not (re)open the swap file, what can we do???? -#: ../memline.c:465 -msgid "E301: Oops, lost the swap file!!!" -msgstr "E301: , Xbvt@C܂!!!" - -#: ../memline.c:477 -msgid "E302: Could not rename swap file" -msgstr "E302: Xbvt@C̖Oς܂" - -#: ../memline.c:554 -#, c-format -msgid "E303: Unable to open swap file for \"%s\", recovery impossible" -msgstr "E303: \"%s\" ̃Xbvt@CJȂ̂ŃJo͕s\\ł" - -#: ../memline.c:666 -msgid "E304: ml_upd_block0(): Didn't get block 0??" -msgstr "E304: ml_upd_block0(): ubN 0 擾ł܂ł??" - -#. no swap files found -#: ../memline.c:830 -#, c-format -msgid "E305: No swap file found for %s" -msgstr "E305: %s ɂ̓Xbvt@C܂" - -#: ../memline.c:839 -msgid "Enter number of swap file to use (0 to quit): " -msgstr "gpXbvt@C̔ԍ͂Ă(0 ŏI): " - -#: ../memline.c:879 -#, c-format -msgid "E306: Cannot open %s" -msgstr "E306: %s J܂" - -#: ../memline.c:897 -msgid "Unable to read block 0 from " -msgstr "ubN 0 Ǎ߂܂ " - -#: ../memline.c:900 -msgid "" -"\n" -"Maybe no changes were made or Vim did not update the swap file." -msgstr "" -"\n" -"炭ύXĂȂVimXbvt@CXVĂ܂." - -#: ../memline.c:909 -msgid " cannot be used with this version of Vim.\n" -msgstr " Vim̂̃o[Wł͎gpł܂.\n" - -#: ../memline.c:911 -msgid "Use Vim version 3.0.\n" -msgstr "Vim̃o[W3.0gpĂ.\n" - -#: ../memline.c:916 -#, c-format -msgid "E307: %s does not look like a Vim swap file" -msgstr "E307: %s Vim̃Xbvt@Cł͂Ȃ悤ł" - -#: ../memline.c:922 -msgid " cannot be used on this computer.\n" -msgstr " ̃Rs[^ł͎gpł܂.\n" - -#: ../memline.c:924 -msgid "The file was created on " -msgstr "̃t@C͎̏ꏊō܂ " - -#: ../memline.c:928 -msgid "" -",\n" -"or the file has been damaged." -msgstr "" -",\n" -"̓t@CĂ܂." - -#: ../memline.c:945 -msgid " has been damaged (page size is smaller than minimum value).\n" -msgstr " ͑Ă܂ (y[WTCYŏlĂ܂).\n" - -#: ../memline.c:974 -#, c-format -msgid "Using swap file \"%s\"" -msgstr "Xbvt@C \"%s\" gp" - -#: ../memline.c:980 -#, c-format -msgid "Original file \"%s\"" -msgstr "{t@C \"%s\"" - -#: ../memline.c:995 -msgid "E308: Warning: Original file may have been changed" -msgstr "E308: x: {t@CύXĂ܂" - -#: ../memline.c:1061 -#, c-format -msgid "E309: Unable to read block 1 from %s" -msgstr "E309: %s ubN 1 Ǎ߂܂" - -#: ../memline.c:1065 -msgid "???MANY LINES MISSING" -msgstr "???̍sĂ܂" - -#: ../memline.c:1076 -msgid "???LINE COUNT WRONG" -msgstr "???sԈĂ܂" - -#: ../memline.c:1082 -msgid "???EMPTY BLOCK" -msgstr "???ubNł" - -#: ../memline.c:1103 -msgid "???LINES MISSING" -msgstr "???sĂ܂" - -#: ../memline.c:1128 -#, c-format -msgid "E310: Block 1 ID wrong (%s not a .swp file?)" -msgstr "E310: ubN 1 IDԈĂ܂(%s .swpt@CłȂ?)" - -#: ../memline.c:1133 -msgid "???BLOCK MISSING" -msgstr "???ubN܂" - -#: ../memline.c:1147 -msgid "??? from here until ???END lines may be messed up" -msgstr "??? ???END ܂ł̍sjĂ悤ł" - -#: ../memline.c:1164 -msgid "??? from here until ???END lines may have been inserted/deleted" -msgstr "??? ???END ܂ł̍s}폜ꂽ悤ł" - -#: ../memline.c:1181 -msgid "???END" -msgstr "???END" - -#: ../memline.c:1238 -msgid "E311: Recovery Interrupted" -msgstr "E311: Jo܂܂" - -#: ../memline.c:1243 -msgid "" -"E312: Errors detected while recovering; look for lines starting with ???" -msgstr "" -"E312: Jo̍ŒɃG[o܂; ???Ŏn܂sQƂĂ" - -#: ../memline.c:1245 -msgid "See \":help E312\" for more information." -msgstr "ڍׂ \":help E312\" QƂĂ" - -#: ../memline.c:1249 -msgid "Recovery completed. You should check if everything is OK." -msgstr "JoI܂. SĂ`FbNĂ." - -#: ../memline.c:1251 -msgid "" -"\n" -"(You might want to write out this file under another name\n" -msgstr "" -"\n" -"(ύX`FbN邽߂, ̃t@Cʂ̖Oŕۑ\n" - -#: ../memline.c:1252 -msgid "and run diff with the original file to check for changes)" -msgstr "{t@CƂ diff sƗǂł傤)" - -#: ../memline.c:1254 -msgid "Recovery completed. Buffer contents equals file contents." -msgstr ". obt@̓e̓t@CƓɂȂ܂." - -#: ../memline.c:1255 -msgid "" -"\n" -"You may want to delete the .swp file now.\n" -"\n" -msgstr "" -"\n" -".swpt@C͍폜Ă\\܂\n" -"\n" - -#. use msg() to start the scrolling properly -#: ../memline.c:1327 -msgid "Swap files found:" -msgstr "Xbvt@C܂:" - -#: ../memline.c:1446 -msgid " In current directory:\n" -msgstr " ݂̃fBNg:\n" - -#: ../memline.c:1448 -msgid " Using specified name:\n" -msgstr " ȉ̖Ogp:\n" - -#: ../memline.c:1450 -msgid " In directory " -msgstr " fBNg " - -#: ../memline.c:1465 -msgid " -- none --\n" -msgstr " -- Ȃ --\n" - -#: ../memline.c:1527 -msgid " owned by: " -msgstr " L: " - -#: ../memline.c:1529 -msgid " dated: " -msgstr " t: " - -#: ../memline.c:1532 ../memline.c:3231 -msgid " dated: " -msgstr " t: " - -#: ../memline.c:1548 -msgid " [from Vim version 3.0]" -msgstr " [from Vim version 3.0]" - -#: ../memline.c:1550 -msgid " [does not look like a Vim swap file]" -msgstr " [Vim̃Xbvt@Cł͂Ȃ悤ł]" - -#: ../memline.c:1552 -msgid " file name: " -msgstr " t@C: " - -#: ../memline.c:1558 -msgid "" -"\n" -" modified: " -msgstr "" -"\n" -" ύX: " - -#: ../memline.c:1559 -msgid "YES" -msgstr "" - -#: ../memline.c:1559 -msgid "no" -msgstr "Ȃ" - -#: ../memline.c:1562 -msgid "" -"\n" -" user name: " -msgstr "" -"\n" -" [U[: " - -#: ../memline.c:1568 -msgid " host name: " -msgstr " zXg: " - -#: ../memline.c:1570 -msgid "" -"\n" -" host name: " -msgstr "" -"\n" -" zXg: " - -#: ../memline.c:1575 -msgid "" -"\n" -" process ID: " -msgstr "" -"\n" -" vZXID: " - -#: ../memline.c:1579 -msgid " (still running)" -msgstr " (܂s)" - -#: ../memline.c:1586 -msgid "" -"\n" -" [not usable on this computer]" -msgstr "" -"\n" -" [̃Rs[^ł͎gpł܂]" - -#: ../memline.c:1590 -msgid " [cannot be read]" -msgstr " [Ǎ߂܂]" - -#: ../memline.c:1593 -msgid " [cannot be opened]" -msgstr " [J܂]" - -#: ../memline.c:1698 -msgid "E313: Cannot preserve, there is no swap file" -msgstr "E313: Xbvt@Ĉňێł܂" - -#: ../memline.c:1747 -msgid "File preserved" -msgstr "t@Cێ܂" - -#: ../memline.c:1749 -msgid "E314: Preserve failed" -msgstr "E314: ێɎs܂" - -#: ../memline.c:1819 -#, c-format -msgid "E315: ml_get: invalid lnum: %<PRId64>" -msgstr "E315: ml_get: lnumł: %<PRId64>" - -#: ../memline.c:1851 -#, c-format -msgid "E316: ml_get: cannot find line %<PRId64>" -msgstr "E316: ml_get: s %<PRId64> ܂" - -#: ../memline.c:2236 -msgid "E317: pointer block id wrong 3" -msgstr "E317: |C^ubNIDԈĂ܂ 3" - -#: ../memline.c:2311 -msgid "stack_idx should be 0" -msgstr "stack_idx 0 łׂł" - -#: ../memline.c:2369 -msgid "E318: Updated too many blocks?" -msgstr "E318: XVꂽubN߂邩?" - -#: ../memline.c:2511 -msgid "E317: pointer block id wrong 4" -msgstr "E317: |C^ubNIDԈĂ܂ 4" - -#: ../memline.c:2536 -msgid "deleted block 1?" -msgstr "ubN 1 ͏ꂽ?" - -#: ../memline.c:2707 -#, c-format -msgid "E320: Cannot find line %<PRId64>" -msgstr "E320: s %<PRId64> ܂" - -#: ../memline.c:2916 -msgid "E317: pointer block id wrong" -msgstr "E317: |C^ubNIDԈĂ܂" - -#: ../memline.c:2930 -msgid "pe_line_count is zero" -msgstr "pe_line_count [ł" - -#: ../memline.c:2955 -#, c-format -msgid "E322: line number out of range: %<PRId64> past the end" -msgstr "E322: sԍ͈͊Oł: %<PRId64> Ă܂" - -#: ../memline.c:2959 -#, c-format -msgid "E323: line count wrong in block %<PRId64>" -msgstr "E323: ubN %<PRId64> ̍sJEgԈĂ܂" - -#: ../memline.c:2999 -msgid "Stack size increases" -msgstr "X^bNTCY܂" - -#: ../memline.c:3038 -msgid "E317: pointer block id wrong 2" -msgstr "E317: |C^ubNIDԈĂ܂ 2" - -#: ../memline.c:3070 -#, c-format -msgid "E773: Symlink loop for \"%s\"" -msgstr "E773: \"%s\" ̃V{bNN[vɂȂĂ܂" - -#: ../memline.c:3221 -msgid "E325: ATTENTION" -msgstr "E325: " - -#: ../memline.c:3222 -msgid "" -"\n" -"Found a swap file by the name \"" -msgstr "" -"\n" -"̖OŃXbvt@C܂ \"" - -#: ../memline.c:3226 -msgid "While opening file \"" -msgstr "̃t@CJĂŒ \"" - -#: ../memline.c:3239 -msgid " NEWER than swap file!\n" -msgstr " Xbvt@CVł!\n" - -#: ../memline.c:3244 -msgid "" -"\n" -"(1) Another program may be editing the same file. If this is the case,\n" -" be careful not to end up with two different instances of the same\n" -" file when making changes." -msgstr "" -"\n" -"(1) ʂ̃vOt@CҏWĂ邩܂.\n" -" ̏ꍇɂ, ύXĂ܂1̃t@CɑĈقȂ2\n" -" CX^XłĂ܂̂, Ȃ悤ɋCĂ." - -#: ../memline.c:3245 -msgid " Quit, or continue with caution.\n" -msgstr " I邩, ӂȂ瑱Ă.\n" - -#: ../memline.c:3246 -msgid "(2) An edit session for this file crashed.\n" -msgstr "(2) ̃t@C̕ҏWZbVNbV.\n" - -#: ../memline.c:3247 -msgid " If this is the case, use \":recover\" or \"vim -r " -msgstr " ̏ꍇɂ \":recover\" \"vim -r " - -#: ../memline.c:3249 -msgid "" -"\"\n" -" to recover the changes (see \":help recovery\").\n" -msgstr "" -"\"\n" -" gpĕύXJo[܂(\":help recovery\" Q).\n" - -#: ../memline.c:3250 -msgid " If you did this already, delete the swap file \"" -msgstr " ɂsȂ̂Ȃ, Xbvt@C \"" - -#: ../memline.c:3252 -msgid "" -"\"\n" -" to avoid this message.\n" -msgstr "" -"\"\n" -" ̃bZ[Wł܂.\n" - -#: ../memline.c:3450 ../memline.c:3452 -msgid "Swap file \"" -msgstr "Xbvt@C \"" - -#: ../memline.c:3451 ../memline.c:3455 -msgid "\" already exists!" -msgstr "\" ɂ܂!" - -#: ../memline.c:3457 -msgid "VIM - ATTENTION" -msgstr "VIM - " - -#: ../memline.c:3459 -msgid "Swap file already exists!" -msgstr "Xbvt@Cɑ݂܂!" - -#: ../memline.c:3464 -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Quit\n" -"&Abort" -msgstr "" -"ǍpŊJ(&O)\n" -"ƂɂҏW(&E)\n" -"(&R)\n" -"I(&Q)\n" -"~(&A)" - -#: ../memline.c:3467 -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Delete it\n" -"&Quit\n" -"&Abort" -msgstr "" -"ǍpŊJ(&O)\n" -"ƂɂҏW(&E)\n" -"(&R)\n" -"폜(&D)\n" -"I(&Q)\n" -"~(&A)" - -#. -#. * Change the ".swp" extension to find another file that can be used. -#. * First decrement the last char: ".swo", ".swn", etc. -#. * If that still isn't enough decrement the last but one char: ".svz" -#. * Can happen when editing many "No Name" buffers. -#. -#. ".s?a" -#. ".saa": tried enough, give up -#: ../memline.c:3528 -msgid "E326: Too many swap files found" -msgstr "E326: Xbvt@C܂" - -#: ../memory.c:227 -#, c-format -msgid "E342: Out of memory! (allocating %<PRIu64> bytes)" -msgstr "E342: ܂! (%<PRIu64> oCgv)" - -#: ../menu.c:62 -msgid "E327: Part of menu-item path is not sub-menu" -msgstr "E327: j[ACẽpX̕Tuj[ł͂܂" - -#: ../menu.c:63 -msgid "E328: Menu only exists in another mode" -msgstr "E328: j[͑̃[hɂ܂" - -#: ../menu.c:64 -#, c-format -msgid "E329: No menu \"%s\"" -msgstr "E329: \"%s\" Ƃj[͂܂" - -#. Only a mnemonic or accelerator is not valid. -#: ../menu.c:329 -msgid "E792: Empty menu name" -msgstr "E792: j[ł" - -#: ../menu.c:340 -msgid "E330: Menu path must not lead to a sub-menu" -msgstr "E330: j[pX̓Tuj[ׂł͂܂" - -#: ../menu.c:365 -msgid "E331: Must not add menu items directly to menu bar" -msgstr "E331: j[o[ɂ͒ڃj[ACeljł܂" - -#: ../menu.c:370 -msgid "E332: Separator cannot be part of a menu path" -msgstr "E332: ̓j[pẌꕔł͂܂" - -#. Now we have found the matching menu, and we list the mappings -#. Highlight title -#: ../menu.c:762 -msgid "" -"\n" -"--- Menus ---" -msgstr "" -"\n" -"--- j[ ---" - -#: ../menu.c:1313 -msgid "E333: Menu path must lead to a menu item" -msgstr "E333: j[pX̓j[ACeȂ܂" - -#: ../menu.c:1330 -#, c-format -msgid "E334: Menu not found: %s" -msgstr "E334: j[܂: %s" - -#: ../menu.c:1396 -#, c-format -msgid "E335: Menu not defined for %s mode" -msgstr "E335: %s ɂ̓j[`Ă܂" - -#: ../menu.c:1426 -msgid "E336: Menu path must lead to a sub-menu" -msgstr "E336: j[pX̓Tuj[Ȃ܂" - -#: ../menu.c:1447 -msgid "E337: Menu not found - check menu names" -msgstr "E337: j[܂ - j[mFĂ" - -#: ../message.c:423 -#, c-format -msgid "Error detected while processing %s:" -msgstr "%s ̏ɃG[o܂:" - -#: ../message.c:445 -#, c-format -msgid "line %4ld:" -msgstr "s %4ld:" - -#: ../message.c:617 -#, c-format -msgid "E354: Invalid register name: '%s'" -msgstr "E354: ȃWX^: '%s'" - -#: ../message.c:986 -msgid "Interrupt: " -msgstr ": " - -#: ../message.c:988 -msgid "Press ENTER or type command to continue" -msgstr "ɂENTERR}h͂Ă" - -#: ../message.c:1843 -#, c-format -msgid "%s line %<PRId64>" -msgstr "%s s %<PRId64>" - -#: ../message.c:2392 -msgid "-- More --" -msgstr "-- p --" - -#: ../message.c:2398 -msgid " SPACE/d/j: screen/page/line down, b/u/k: up, q: quit " -msgstr " SPACE/d/j: /y[W/s , b/u/k: , q: I " - -#: ../message.c:3021 ../message.c:3031 -msgid "Question" -msgstr "" - -#: ../message.c:3023 -msgid "" -"&Yes\n" -"&No" -msgstr "" -"͂(&Y)\n" -"(&N)" - -#: ../message.c:3033 -msgid "" -"&Yes\n" -"&No\n" -"&Cancel" -msgstr "" -"͂(&Y)\n" -"(&N)\n" -"LZ(&C)" - -#: ../message.c:3045 -msgid "" -"&Yes\n" -"&No\n" -"Save &All\n" -"&Discard All\n" -"&Cancel" -msgstr "" -"͂(&Y)\n" -"(&N)\n" -"Sĕۑ(&A)\n" -"Sĕ(&D)\n" -"LZ(&C)" - -#: ../message.c:3058 -msgid "E766: Insufficient arguments for printf()" -msgstr "E766: printf() ̈s\\ł" - -#: ../message.c:3119 -msgid "E807: Expected Float argument for printf()" -msgstr "E807: printf() ̈ɂ͕_҂Ă܂" - -#: ../message.c:3873 -msgid "E767: Too many arguments to printf()" -msgstr "E767: printf() ̈߂܂" - -#: ../misc1.c:2256 -msgid "W10: Warning: Changing a readonly file" -msgstr "W10: x: Ǎpt@CύX܂" - -#: ../misc1.c:2537 -msgid "Type number and <Enter> or click with mouse (empty cancels): " -msgstr "" -"ԍ<Enter>͂邩}EXŃNbNĂ (ŃLZ): " - -#: ../misc1.c:2539 -msgid "Type number and <Enter> (empty cancels): " -msgstr "ԍ<Enter>͂Ă (ŃLZ): " - -#: ../misc1.c:2585 -msgid "1 more line" -msgstr "1 s lj܂" - -#: ../misc1.c:2588 -msgid "1 line less" -msgstr "1 s 폜܂" - -#: ../misc1.c:2593 -#, c-format -msgid "%<PRId64> more lines" -msgstr "%<PRId64> s lj܂" - -#: ../misc1.c:2596 -#, c-format -msgid "%<PRId64> fewer lines" -msgstr "%<PRId64> s 폜܂" - -#: ../misc1.c:2599 -msgid " (Interrupted)" -msgstr " (܂܂)" - -#: ../misc1.c:2635 -msgid "Beep!" -msgstr "r[b!" - -#: ../misc2.c:738 -#, c-format -msgid "Calling shell to execute: \"%s\"" -msgstr "ŝ߂ɃVFďo: \"%s\"" - -#: ../normal.c:183 -msgid "E349: No identifier under cursor" -msgstr "E349: J[\\̈ʒuɂ͎ʎq܂" - -#: ../normal.c:1866 -msgid "E774: 'operatorfunc' is empty" -msgstr "E774: 'operatorfunc' IvVł" - -#: ../normal.c:2637 -msgid "Warning: terminal cannot highlight" -msgstr "x: gpĂ[̓nCCgł܂" - -#: ../normal.c:2807 -msgid "E348: No string under cursor" -msgstr "E348: J[\\̈ʒuɂ͕܂" - -#: ../normal.c:3937 -msgid "E352: Cannot erase folds with current 'foldmethod'" -msgstr "E352: ݂ 'foldmethod' ł݂͐ł܂" - -#: ../normal.c:5897 -msgid "E664: changelist is empty" -msgstr "E664: ύXXgł" - -#: ../normal.c:5899 -msgid "E662: At start of changelist" -msgstr "E662: ύXXg̐擪" - -#: ../normal.c:5901 -msgid "E663: At end of changelist" -msgstr "E663: ύXXg̖" - -#: ../normal.c:7053 -msgid "Type :quit<Enter> to exit Nvim" -msgstr "VimIɂ :quit<Enter> Ɠ͂Ă" - -#: ../ops.c:248 -#, c-format -msgid "1 line %sed 1 time" -msgstr "1 s %s 1 ܂" - -#: ../ops.c:250 -#, c-format -msgid "1 line %sed %d times" -msgstr "1 s %s %d ܂" - -#: ../ops.c:253 -#, c-format -msgid "%<PRId64> lines %sed 1 time" -msgstr "%<PRId64> s %s 1 ܂" - -#: ../ops.c:256 -#, c-format -msgid "%<PRId64> lines %sed %d times" -msgstr "%<PRId64> s %s %d ܂" - -#: ../ops.c:592 -#, c-format -msgid "%<PRId64> lines to indent... " -msgstr "%<PRId64> sCfg܂... " - -#: ../ops.c:634 -msgid "1 line indented " -msgstr "1 sCfg܂ " - -#: ../ops.c:636 -#, c-format -msgid "%<PRId64> lines indented " -msgstr "%<PRId64> sCfg܂ " - -#: ../ops.c:938 -msgid "E748: No previously used register" -msgstr "E748: ܂WX^gpĂ܂" - -#. must display the prompt -#: ../ops.c:1433 -msgid "cannot yank; delete anyway" -msgstr "Nł܂; Ƃɂ" - -#: ../ops.c:1929 -msgid "1 line changed" -msgstr "1 sύX܂" - -#: ../ops.c:1931 -#, c-format -msgid "%<PRId64> lines changed" -msgstr "%<PRId64> sύX܂" - -#: ../ops.c:2521 -msgid "block of 1 line yanked" -msgstr "1 s̃ubNN܂" - -#: ../ops.c:2523 -msgid "1 line yanked" -msgstr "1 sN܂" - -#: ../ops.c:2525 -#, c-format -msgid "block of %<PRId64> lines yanked" -msgstr "%<PRId64> s̃ubNN܂" - -#: ../ops.c:2528 -#, c-format -msgid "%<PRId64> lines yanked" -msgstr "%<PRId64> sN܂" - -#: ../ops.c:2710 -#, c-format -msgid "E353: Nothing in register %s" -msgstr "E353: WX^ %s ɂ͉܂" - -#. Highlight title -#: ../ops.c:3185 -msgid "" -"\n" -"--- Registers ---" -msgstr "" -"\n" -"--- WX^ ---" - -#: ../ops.c:4455 -msgid "Illegal register name" -msgstr "sȃWX^" - -#: ../ops.c:4533 -msgid "" -"\n" -"# Registers:\n" -msgstr "" -"\n" -"# WX^:\n" - -#: ../ops.c:4575 -#, c-format -msgid "E574: Unknown register type %d" -msgstr "E574: m̃WX^^ %d ł" - -msgid "" -"E883: search pattern and expression register may not contain two or more " -"lines" -msgstr "E883: p^[ƎWX^ɂ2sȏ܂߂܂" - -#: ../ops.c:5089 -#, c-format -msgid "%<PRId64> Cols; " -msgstr "%<PRId64> ; " - -#: ../ops.c:5097 -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Bytes" -msgstr "" -"I %s%<PRId64> / %<PRId64> s; %<PRId64> / %<PRId64> P; %<PRId64> / " -"%<PRId64> oCg" - -#: ../ops.c:5105 -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Chars; %<PRId64> of %<PRId64> Bytes" -msgstr "" -"I %s%<PRId64> / %<PRId64> s; %<PRId64> / %<PRId64> P; %<PRId64> / " -"%<PRId64> ; %<PRId64> / %<PRId64> oCg" - -#: ../ops.c:5123 -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Byte " -"%<PRId64> of %<PRId64>" -msgstr "" -" %s / %s; s %<PRId64> of %<PRId64>; P %<PRId64> / %<PRId64>; oCg " -"%<PRId64> / %<PRId64>" - -#: ../ops.c:5133 -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Char " -"%<PRId64> of %<PRId64>; Byte %<PRId64> of %<PRId64>" -msgstr "" -" %s / %s; s %<PRId64> / %<PRId64>; P %<PRId64> / %<PRId64>; " -"%<PRId64> / %<PRId64>; oCg %<PRId64> of %<PRId64>" - -#: ../ops.c:5146 -#, c-format -msgid "(+%<PRId64> for BOM)" -msgstr "(+%<PRId64> for BOM)" - -#: ../option.c:1238 -msgid "%<%f%h%m%=Page %N" -msgstr "%<%f%h%m%=%N y[W" - -#: ../option.c:1574 -msgid "Thanks for flying Vim" -msgstr "Vim gĂĂ肪Ƃ" - -#. found a mismatch: skip -#: ../option.c:2698 -msgid "E518: Unknown option" -msgstr "E518: m̃IvVł" - -#: ../option.c:2709 -msgid "E519: Option not supported" -msgstr "E519: IvV̓T|[gĂ܂" - -#: ../option.c:2740 -msgid "E520: Not allowed in a modeline" -msgstr "E520: modeline ł͋܂" - -#: ../option.c:2815 -msgid "E846: Key code not set" -msgstr "E846: L[R[hݒ肳Ă܂" - -#: ../option.c:2924 -msgid "E521: Number required after =" -msgstr "E521: = ̌ɂ͐Kvł" - -#: ../option.c:3226 ../option.c:3864 -msgid "E522: Not found in termcap" -msgstr "E522: termcap Ɍ܂" - -#: ../option.c:3335 -#, c-format -msgid "E539: Illegal character <%s>" -msgstr "E539: sȕł <%s>" - -#, c-format -msgid "For option %s" -msgstr "IvV: %s" - -#: ../option.c:3862 -msgid "E529: Cannot set 'term' to empty string" -msgstr "E529: 'term' ɂ͋ݒł܂" - -#: ../option.c:3885 -msgid "E589: 'backupext' and 'patchmode' are equal" -msgstr "E589: 'backupext' 'patchmode' ł" - -#: ../option.c:3964 -msgid "E834: Conflicts with value of 'listchars'" -msgstr "E834: 'listchars'̒lɖ܂" - -#: ../option.c:3966 -msgid "E835: Conflicts with value of 'fillchars'" -msgstr "E835: 'fillchars'̒lɖ܂" - -#: ../option.c:4163 -msgid "E524: Missing colon" -msgstr "E524: R܂" - -#: ../option.c:4165 -msgid "E525: Zero length string" -msgstr "E525: ̒[ł" - -#: ../option.c:4220 -#, c-format -msgid "E526: Missing number after <%s>" -msgstr "E526: <%s> ̌ɐ܂" - -#: ../option.c:4232 -msgid "E527: Missing comma" -msgstr "E527: J}܂" - -#: ../option.c:4239 -msgid "E528: Must specify a ' value" -msgstr "E528: ' ̒lw肵ȂȂ܂" - -#: ../option.c:4271 -msgid "E595: contains unprintable or wide character" -msgstr "E595: \\łȂCh܂ł܂" - -#: ../option.c:4469 -#, c-format -msgid "E535: Illegal character after <%c>" -msgstr "E535: <%c> ̌ɕsȕ܂" - -#: ../option.c:4534 -msgid "E536: comma required" -msgstr "E536: J}Kvł" - -#: ../option.c:4543 -#, c-format -msgid "E537: 'commentstring' must be empty or contain %s" -msgstr "E537: 'commentstring' ͋ł邩 %s ܂ޕKv܂" - -#: ../option.c:4928 -msgid "E540: Unclosed expression sequence" -msgstr "E540: IĂ܂" - -#: ../option.c:4932 -msgid "E541: too many items" -msgstr "E541: vf߂܂" - -#: ../option.c:4934 -msgid "E542: unbalanced groups" -msgstr "E542: O[vލ܂" - -#: ../option.c:5148 -msgid "E590: A preview window already exists" -msgstr "E590: vr[EBhEɑ݂܂" - -#: ../option.c:5311 -msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'" -msgstr "" -"W17: ArAɂUTF-8KvȂ̂, ':set encoding=utf-8' Ă" - -#: ../option.c:5623 -#, c-format -msgid "E593: Need at least %d lines" -msgstr "E593: Œ %d ̍sKvł" - -#: ../option.c:5631 -#, c-format -msgid "E594: Need at least %d columns" -msgstr "E594: Œ %d ̃JKvł" - -#: ../option.c:6011 -#, c-format -msgid "E355: Unknown option: %s" -msgstr "E355: m̃IvVł: %s" - -#. There's another character after zeros or the string -#. * is empty. In both cases, we are trying to set a -#. * num option using a string. -#: ../option.c:6037 -#, c-format -msgid "E521: Number required: &%s = '%s'" -msgstr "E521: Kvł: &%s = '%s'" - -#: ../option.c:6149 -msgid "" -"\n" -"--- Terminal codes ---" -msgstr "" -"\n" -"--- [R[h ---" - -#: ../option.c:6151 -msgid "" -"\n" -"--- Global option values ---" -msgstr "" -"\n" -"--- O[oIvVl ---" - -#: ../option.c:6153 -msgid "" -"\n" -"--- Local option values ---" -msgstr "" -"\n" -"--- [JIvVl ---" - -#: ../option.c:6155 -msgid "" -"\n" -"--- Options ---" -msgstr "" -"\n" -"--- IvV ---" - -#: ../option.c:6816 -msgid "E356: get_varp ERROR" -msgstr "E356: get_varp G[" - -#: ../option.c:7696 -#, c-format -msgid "E357: 'langmap': Matching character missing for %s" -msgstr "E357: 'langmap': %s ɑΉ镶܂" - -#: ../option.c:7715 -#, c-format -msgid "E358: 'langmap': Extra characters after semicolon: %s" -msgstr "E358: 'langmap': Z~Řɗ]ȕ܂: %s" - -#: ../os/shell.c:194 -msgid "" -"\n" -"Cannot execute shell " -msgstr "" -"\n" -"VFsł܂ " - -#: ../os/shell.c:439 -msgid "" -"\n" -"shell returned " -msgstr "" -"\n" -"VFlԂ܂ " - -#: ../os_unix.c:465 ../os_unix.c:471 -msgid "" -"\n" -"Could not get security context for " -msgstr "" -"\n" -"ZLeBReLXg擾ł܂ " - -#: ../os_unix.c:479 -msgid "" -"\n" -"Could not set security context for " -msgstr "" -"\n" -"ZLeBReLXgݒł܂ " - -#, c-format -msgid "Could not set security context %s for %s" -msgstr "ZLeBReLXg %s %s ɐݒł܂" - -#, c-format -msgid "Could not get security context %s for %s. Removing it!" -msgstr "ZLeBReLXg %s %s 擾ł܂. 폜܂!" - -#: ../os_unix.c:1558 ../os_unix.c:1647 -#, c-format -msgid "dlerror = \"%s\"" -msgstr "dlerror = \"%s\"" - -#: ../path.c:1449 -#, c-format -msgid "E447: Can't find file \"%s\" in path" -msgstr "E447: pathɂ \"%s\" Ƃt@C܂" - -#: ../quickfix.c:359 -#, c-format -msgid "E372: Too many %%%c in format string" -msgstr "E372: tH[}bg %%%c ߂܂" - -#: ../quickfix.c:371 -#, c-format -msgid "E373: Unexpected %%%c in format string" -msgstr "E373: tH[}bgɗ\\ %%%c ܂" - -#: ../quickfix.c:420 -msgid "E374: Missing ] in format string" -msgstr "E374: tH[}bg ] ܂" - -#: ../quickfix.c:431 -#, c-format -msgid "E375: Unsupported %%%c in format string" -msgstr "E375: tH[}bgł %%%c ̓T|[g܂" - -#: ../quickfix.c:448 -#, c-format -msgid "E376: Invalid %%%c in format string prefix" -msgstr "E376: tH[}bg̑Ouɖ %%%c ܂" - -#: ../quickfix.c:454 -#, c-format -msgid "E377: Invalid %%%c in format string" -msgstr "E377: tH[}bgɖ %%%c ܂" - -#. nothing found -#: ../quickfix.c:477 -msgid "E378: 'errorformat' contains no pattern" -msgstr "E378: 'errorformat' Ƀp^[w肳Ă܂" - -#: ../quickfix.c:695 -msgid "E379: Missing or empty directory name" -msgstr "E379: fBNgł" - -#: ../quickfix.c:1305 -msgid "E553: No more items" -msgstr "E553: vf܂" - -#: ../quickfix.c:1674 -#, c-format -msgid "(%d of %d)%s%s: " -msgstr "(%d of %d)%s%s: " - -#: ../quickfix.c:1676 -msgid " (line deleted)" -msgstr " (s폜܂)" - -#: ../quickfix.c:1863 -msgid "E380: At bottom of quickfix stack" -msgstr "E380: quickfix X^bN̖ł" - -#: ../quickfix.c:1869 -msgid "E381: At top of quickfix stack" -msgstr "E381: quickfix X^bN̐擪ł" - -#: ../quickfix.c:1880 -#, c-format -msgid "error list %d of %d; %d errors" -msgstr "G[ꗗ %d of %d; %d G[" - -#: ../quickfix.c:2427 -msgid "E382: Cannot write, 'buftype' option is set" -msgstr "E382: 'buftype' IvVݒ肳Ă̂ŏ݂܂" - -#: ../quickfix.c:2812 -msgid "E683: File name missing or invalid pattern" -msgstr "E683: t@Cȃp^[ł" - -#: ../quickfix.c:2911 -#, c-format -msgid "Cannot open file \"%s\"" -msgstr "t@C \"%s\" J܂" - -#: ../quickfix.c:3429 -msgid "E681: Buffer is not loaded" -msgstr "E681: obt@͓ǂݍ܂܂ł" - -#: ../quickfix.c:3487 -msgid "E777: String or List expected" -msgstr "E777: XgKvł" - -#: ../regexp.c:359 -#, c-format -msgid "E369: invalid item in %s%%[]" -msgstr "E369: ȍڂł: %s%%[]" - -# -#: ../regexp.c:374 -#, c-format -msgid "E769: Missing ] after %s[" -msgstr "E769: %s[ ̌ ] ܂" - -#: ../regexp.c:375 -#, c-format -msgid "E53: Unmatched %s%%(" -msgstr "E53: %s%%( ނ荇Ă܂" - -#: ../regexp.c:376 -#, c-format -msgid "E54: Unmatched %s(" -msgstr "E54: %s( ނ荇Ă܂" - -#: ../regexp.c:377 -#, c-format -msgid "E55: Unmatched %s)" -msgstr "E55: %s) ނ荇Ă܂" - -# -#: ../regexp.c:378 -msgid "E66: \\z( not allowed here" -msgstr "E66: \\z( ̓RRł͋Ă܂" - -# -#: ../regexp.c:379 -msgid "E67: \\z1 et al. not allowed here" -msgstr "E67: \\z1 ̑̓RRł͋Ă܂" - -# -#: ../regexp.c:380 -#, c-format -msgid "E69: Missing ] after %s%%[" -msgstr "E69: %s%%[ ̌ ] ܂" - -#: ../regexp.c:381 -#, c-format -msgid "E70: Empty %s%%[]" -msgstr "E70: %s%%[] ł" - -#: ../regexp.c:1209 ../regexp.c:1224 -msgid "E339: Pattern too long" -msgstr "E339: p^[߂܂" - -#: ../regexp.c:1371 -msgid "E50: Too many \\z(" -msgstr "E50: \\z( ߂܂" - -#: ../regexp.c:1378 -#, c-format -msgid "E51: Too many %s(" -msgstr "E51: %s( ߂܂" - -#: ../regexp.c:1427 -msgid "E52: Unmatched \\z(" -msgstr "E52: \\z( ނ荇Ă܂" - -#: ../regexp.c:1637 -#, c-format -msgid "E59: invalid character after %s@" -msgstr "E59: %s@ ̌ɕsȕ܂" - -#: ../regexp.c:1672 -#, c-format -msgid "E60: Too many complex %s{...}s" -msgstr "E60: G %s{...} ߂܂" - -#: ../regexp.c:1687 -#, c-format -msgid "E61: Nested %s*" -msgstr "E61:%s* qɂȂĂ܂" - -#: ../regexp.c:1690 -#, c-format -msgid "E62: Nested %s%c" -msgstr "E62:%s%c qɂȂĂ܂" - -# -#: ../regexp.c:1800 -msgid "E63: invalid use of \\_" -msgstr "E63: \\_ ̖Ȏgp@ł" - -#: ../regexp.c:1850 -#, c-format -msgid "E64: %s%c follows nothing" -msgstr "E64:%s%c ̌ɂȂɂ܂" - -# -#: ../regexp.c:1902 -msgid "E65: Illegal back reference" -msgstr "E65: sȌQƂł" - -# -#: ../regexp.c:1943 -msgid "E68: Invalid character after \\z" -msgstr "E68: \\z ̌ɕsȕ܂" - -# -#: ../regexp.c:2049 ../regexp_nfa.c:1296 -#, c-format -msgid "E678: Invalid character after %s%%[dxouU]" -msgstr "E678: %s%%[dxouU] ̌ɕsȕ܂" - -# -#: ../regexp.c:2107 -#, c-format -msgid "E71: Invalid character after %s%%" -msgstr "E71: %s%% ̌ɕsȕ܂" - -#: ../regexp.c:3017 -#, c-format -msgid "E554: Syntax error in %s{...}" -msgstr "E554: %s{...} ɕ@G[܂" - -#: ../regexp.c:3805 -msgid "External submatches:\n" -msgstr "O̕Y:\n" - -#, c-format -msgid "E888: (NFA regexp) cannot repeat %s" -msgstr "E888: (NFA K\\) JԂ܂ %s" - -#: ../regexp.c:7022 -msgid "" -"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be " -"used " -msgstr "" -"E864: \\%#= ɂ 0, 1 2 ݂̂܂BK\\GW͎I" -"܂B" - -msgid "Switching to backtracking RE engine for pattern: " -msgstr "̃p^[ɃobNgbLO RE GWKp܂: " - -msgid "E865: (NFA) Regexp end encountered prematurely" -msgstr "E865: (NFA) ҂葁K\\̏I[ɓB܂" - -#: ../regexp_nfa.c:240 -#, c-format -msgid "E866: (NFA regexp) Misplaced %c" -msgstr "E866: (NFA K\\) ʒuĂ܂: %c" - -#: ../regexp_nfa.c:242 -#, c-format -msgid "E877: (NFA regexp) Invalid character class: %<PRId64>" -msgstr "E877: (NFA K\\) ȕNX: %<PRId64>" - -#: ../regexp_nfa.c:1261 -#, c-format -msgid "E867: (NFA) Unknown operator '\\z%c'" -msgstr "E867: (NFA) m̃Iy[^ł: '\\z%c'" - -#: ../regexp_nfa.c:1387 -#, c-format -msgid "E867: (NFA) Unknown operator '\\%%%c'" -msgstr "E867: (NFA) m̃Iy[^ł: '\\%%%c'" - -#: ../regexp_nfa.c:1802 -#, c-format -msgid "E869: (NFA) Unknown operator '\\@%c'" -msgstr "E869: (NFA) m̃Iy[^ł: '\\@%c'" - -#: ../regexp_nfa.c:1831 -msgid "E870: (NFA regexp) Error reading repetition limits" -msgstr "E870: (NFA K\\) JԂ̐ǍɃG[" - -#. Can't have a multi follow a multi. -#: ../regexp_nfa.c:1895 -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" -msgstr "E871: (NFA K\\) JԂ ̌ JԂ ͂ł܂!" - -#. Too many `(' -#: ../regexp_nfa.c:2037 -msgid "E872: (NFA regexp) Too many '('" -msgstr "E872: (NFA K\\) '(' ߂܂" - -#: ../regexp_nfa.c:2042 -msgid "E879: (NFA regexp) Too many \\z(" -msgstr "E879: (NFA K\\) \\z( ߂܂" - -#: ../regexp_nfa.c:2066 -msgid "E873: (NFA regexp) proper termination error" -msgstr "E873: (NFA K\\) I[L܂" - -#: ../regexp_nfa.c:2599 -msgid "E874: (NFA) Could not pop the stack !" -msgstr "E874: (NFA) X^bN|bvł܂!" - -#: ../regexp_nfa.c:3298 -msgid "" -"E875: (NFA regexp) (While converting from postfix to NFA), too many states " -"left on stack" -msgstr "" -"E875: (NFA K\\) (uNFAɕϊ) X^bNɎcꂽXe[g" -"߂܂" - -#: ../regexp_nfa.c:3302 -msgid "E876: (NFA regexp) Not enough space to store the whole NFA " -msgstr "E876: (NFA K\\) NFAŜۑɂ͋Xy[X܂" - -#: ../regexp_nfa.c:4571 ../regexp_nfa.c:4869 -msgid "" -"Could not open temporary log file for writing, displaying on stderr ... " -msgstr "" -"NFAK\\GWp̃Ot@CpƂĊJ܂BO͕Wo͂" -"o͂܂B" - -#: ../regexp_nfa.c:4840 -#, c-format -msgid "(NFA) COULD NOT OPEN %s !" -msgstr "(NFA) Ot@C %s J܂!" - -#: ../regexp_nfa.c:6049 -msgid "Could not open temporary log file for writing " -msgstr "NFAK\\GWp̃Ot@CpƂĊJ܂B" - -#: ../screen.c:7435 -msgid " VREPLACE" -msgstr " zu" - -#: ../screen.c:7437 -msgid " REPLACE" -msgstr " u" - -#: ../screen.c:7440 -msgid " REVERSE" -msgstr " ]" - -#: ../screen.c:7441 -msgid " INSERT" -msgstr " }" - -#: ../screen.c:7443 -msgid " (insert)" -msgstr " (})" - -#: ../screen.c:7445 -msgid " (replace)" -msgstr " (u)" - -#: ../screen.c:7447 -msgid " (vreplace)" -msgstr " (zu)" - -#: ../screen.c:7449 -msgid " Hebrew" -msgstr " wuC" - -#: ../screen.c:7454 -msgid " Arabic" -msgstr " ArA" - -#: ../screen.c:7456 -msgid " (lang)" -msgstr " ()" - -#: ../screen.c:7459 -msgid " (paste)" -msgstr " (\\t)" - -#: ../screen.c:7469 -msgid " VISUAL" -msgstr " rWA" - -#: ../screen.c:7470 -msgid " VISUAL LINE" -msgstr " rWA s" - -#: ../screen.c:7471 -msgid " VISUAL BLOCK" -msgstr " rWA `" - -#: ../screen.c:7472 -msgid " SELECT" -msgstr " ZNg" - -#: ../screen.c:7473 -msgid " SELECT LINE" -msgstr " swI" - -#: ../screen.c:7474 -msgid " SELECT BLOCK" -msgstr " `I" - -#: ../screen.c:7486 ../screen.c:7541 -msgid "recording" -msgstr "L^" - -#: ../search.c:487 -#, c-format -msgid "E383: Invalid search string: %s" -msgstr "E383: Ȍł: %s" - -#: ../search.c:832 -#, c-format -msgid "E384: search hit TOP without match for: %s" -msgstr "E384: ܂Ō܂Yӏ͂܂: %s" - -#: ../search.c:835 -#, c-format -msgid "E385: search hit BOTTOM without match for: %s" -msgstr "E385: ܂Ō܂Yӏ͂܂: %s" - -#: ../search.c:1200 -msgid "E386: Expected '?' or '/' after ';'" -msgstr "E386: ';' ̂Ƃɂ '?' '/' ҂Ă" - -#: ../search.c:4085 -msgid " (includes previously listed match)" -msgstr " (OɗYӏ܂)" - -#. cursor at status line -#: ../search.c:4104 -msgid "--- Included files " -msgstr "--- CN[hꂽt@C " - -#: ../search.c:4106 -msgid "not found " -msgstr "܂ " - -#: ../search.c:4107 -msgid "in path ---\n" -msgstr "pX ----\n" - -#: ../search.c:4168 -msgid " (Already listed)" -msgstr " (ɗ)" - -#: ../search.c:4170 -msgid " NOT FOUND" -msgstr " ܂" - -#: ../search.c:4211 -#, c-format -msgid "Scanning included file: %s" -msgstr "CN[hꂽt@CXL: %s" - -#: ../search.c:4216 -#, c-format -msgid "Searching included file %s" -msgstr "CN[hꂽt@CXL %s" - -#: ../search.c:4405 -msgid "E387: Match is on current line" -msgstr "E387: ݍsɊY܂" - -#: ../search.c:4517 -msgid "All included files were found" -msgstr "SẴCN[hꂽt@C܂" - -#: ../search.c:4519 -msgid "No included files" -msgstr "CN[ht@C͂܂" - -#: ../search.c:4527 -msgid "E388: Couldn't find definition" -msgstr "E388: `܂" - -#: ../search.c:4529 -msgid "E389: Couldn't find pattern" -msgstr "E389: p^[܂" - -#: ../search.c:4668 -msgid "Substitute " -msgstr "Substitute " - -#: ../search.c:4681 -#, c-format -msgid "" -"\n" -"# Last %sSearch Pattern:\n" -"~" -msgstr "" -"\n" -"# Ō %sp^[:\n" -"~" - -#: ../spell.c:951 -msgid "E759: Format error in spell file" -msgstr "E759: Xyt@C̏G[ł" - -#: ../spell.c:952 -msgid "E758: Truncated spell file" -msgstr "E758: Xyt@C؎Ă悤ł" - -#: ../spell.c:953 -#, c-format -msgid "Trailing text in %s line %d: %s" -msgstr "%s (%d s) ɑeLXg: %s" - -#: ../spell.c:954 -#, c-format -msgid "Affix name too long in %s line %d: %s" -msgstr "%s (%d s) affix ߂܂: %s" - -#: ../spell.c:955 -msgid "E761: Format error in affix file FOL, LOW or UPP" -msgstr "" -"E761: affixt@C FOL, LOW UPP ̃tH[}bgɃG[܂" - -#: ../spell.c:957 -msgid "E762: Character in FOL, LOW or UPP is out of range" -msgstr "E762: FOL, LOW UPP ͈͊̕Oł" - -#: ../spell.c:958 -msgid "Compressing word tree..." -msgstr "Pc[kĂ܂..." - -#: ../spell.c:1951 -msgid "E756: Spell checking is not enabled" -msgstr "E756: Xy`FbN͖Ă܂" - -#: ../spell.c:2249 -#, c-format -msgid "Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\"" -msgstr "" -"x: PꃊXg \"%s.%s.spl\" \"%s.ascii.spl\" ͌܂" - -#: ../spell.c:2473 -#, c-format -msgid "Reading spell file \"%s\"" -msgstr "Xyt@C \"%s\" Ǎ" - -#: ../spell.c:2496 -msgid "E757: This does not look like a spell file" -msgstr "E757: Xyt@Cł͂Ȃ悤ł" - -#: ../spell.c:2501 -msgid "E771: Old spell file, needs to be updated" -msgstr "E771: ÂXyt@CȂ̂, Abvf[gĂ" - -#: ../spell.c:2504 -msgid "E772: Spell file is for newer version of Vim" -msgstr "E772: Vo[W Vim p̃Xyt@Cł" - -#: ../spell.c:2602 -msgid "E770: Unsupported section in spell file" -msgstr "E770: Xyt@CɃT|[gĂȂZNV܂" - -#: ../spell.c:3762 -#, c-format -msgid "Warning: region %s not supported" -msgstr "x9: %s Ƃ͈͂̓T|[gĂ܂" - -#: ../spell.c:4550 -#, c-format -msgid "Reading affix file %s ..." -msgstr "affix t@C %s Ǎ..." - -#: ../spell.c:4589 ../spell.c:5635 ../spell.c:6140 -#, c-format -msgid "Conversion failure for word in %s line %d: %s" -msgstr "%s (%d s) ̒Pϊł܂ł: %s" - -#: ../spell.c:4630 ../spell.c:6170 -#, c-format -msgid "Conversion in %s not supported: from %s to %s" -msgstr "%s ̎̕ϊ̓T|[gĂ܂: %s %s " - -#: ../spell.c:4642 -#, c-format -msgid "Invalid value for FLAG in %s line %d: %s" -msgstr "%s %d sڂ FLAG ɖȒl܂: %s" - -#: ../spell.c:4655 -#, c-format -msgid "FLAG after using flags in %s line %d: %s" -msgstr "%s %d sڂɃtO̓dgp܂: %s" - -#: ../spell.c:4723 -#, c-format -msgid "" -"Defining COMPOUNDFORBIDFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" -"%s %d sڂ PFX ڂ̌ COMPOUNDFORBIDFLAG ̒`͌ʂ" -"Ƃ܂" - -#: ../spell.c:4731 -#, c-format -msgid "" -"Defining COMPOUNDPERMITFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" -"%s %d sڂ PFX ڂ̌ COMPOUNDPERMITFLAG ̒`͌ʂ" -"Ƃ܂" - -#: ../spell.c:4747 -#, c-format -msgid "Wrong COMPOUNDRULES value in %s line %d: %s" -msgstr "COMPOUNDRULES ̒lɌ肪܂. t@C %s %d s: %s" - -#: ../spell.c:4771 -#, c-format -msgid "Wrong COMPOUNDWORDMAX value in %s line %d: %s" -msgstr "%s %d sڂ COMPOUNDWORDMAX ̒lɌ肪܂: %s" - -#: ../spell.c:4777 -#, c-format -msgid "Wrong COMPOUNDMIN value in %s line %d: %s" -msgstr "%s %d sڂ COMPOUNDMIN ̒lɌ肪܂: %s" - -#: ../spell.c:4783 -#, c-format -msgid "Wrong COMPOUNDSYLMAX value in %s line %d: %s" -msgstr "%s %d sڂ COMPOUNDSYLMAX ̒lɌ肪܂: %s" - -#: ../spell.c:4795 -#, c-format -msgid "Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s" -msgstr "%s %d sڂ CHECKCOMPOUNDPATTERN ̒lɌ肪܂: %s" - -#: ../spell.c:4847 -#, c-format -msgid "Different combining flag in continued affix block in %s line %d: %s" -msgstr "" -"%s %d sڂ A affix ubÑtȎgɈႢ܂: %s" - -#: ../spell.c:4850 -#, c-format -msgid "Duplicate affix in %s line %d: %s" -msgstr "%s %d sڂ d affix o܂: %s" - -#: ../spell.c:4871 -#, c-format -msgid "" -"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s " -"line %d: %s" -msgstr "" -"%s %d sڂ affix BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST " -"ɎgpĂ: %s" - -#: ../spell.c:4893 -#, c-format -msgid "Expected Y or N in %s line %d: %s" -msgstr "%s %d sڂł Y N Kvł: %s" - -#: ../spell.c:4968 -#, c-format -msgid "Broken condition in %s line %d: %s" -msgstr "%s %d sڂ ͉Ă܂: %s" - -#: ../spell.c:5091 -#, c-format -msgid "Expected REP(SAL) count in %s line %d" -msgstr "%s %d sڂɂ REP(SAL) ̉Kvł" - -#: ../spell.c:5120 -#, c-format -msgid "Expected MAP count in %s line %d" -msgstr "%s %d sڂɂ MAP ̉Kvł" - -#: ../spell.c:5132 -#, c-format -msgid "Duplicate character in MAP in %s line %d" -msgstr "%s %d sڂ MAP ɏd܂" - -#: ../spell.c:5176 -#, c-format -msgid "Unrecognized or duplicate item in %s line %d: %s" -msgstr "%s %d sڂ FłȂdڂ܂: %s" - -#: ../spell.c:5197 -#, c-format -msgid "Missing FOL/LOW/UPP line in %s" -msgstr "%s sڂ FOL/LOW/UPP ܂" - -#: ../spell.c:5220 -msgid "COMPOUNDSYLMAX used without SYLLABLE" -msgstr "SYLLABLE w肳Ȃ COMPOUNDSYLMAX" - -#: ../spell.c:5236 -msgid "Too many postponed prefixes" -msgstr "xuq߂܂" - -#: ../spell.c:5238 -msgid "Too many compound flags" -msgstr "tO߂܂" - -#: ../spell.c:5240 -msgid "Too many postponed prefixes and/or compound flags" -msgstr "xuq / tO߂܂" - -#: ../spell.c:5250 -#, c-format -msgid "Missing SOFO%s line in %s" -msgstr "SOFO%s s %s ɂ܂" - -#: ../spell.c:5253 -#, c-format -msgid "Both SAL and SOFO lines in %s" -msgstr "SALs SOFOs %s ŗw肳Ă܂" - -#: ../spell.c:5331 -#, c-format -msgid "Flag is not a number in %s line %d: %s" -msgstr "%s %d s tOlł͂܂: %s" - -#: ../spell.c:5334 -#, c-format -msgid "Illegal flag in %s line %d: %s" -msgstr "%s %d sڂ tOsł: %s" - -#: ../spell.c:5493 ../spell.c:5501 -#, c-format -msgid "%s value differs from what is used in another .aff file" -msgstr "l %s ͑ .aff t@CŎgpꂽ̂ƈقȂ܂" - -#: ../spell.c:5602 -#, c-format -msgid "Reading dictionary file %s ..." -msgstr "t@C %s XL..." - -#: ../spell.c:5611 -#, c-format -msgid "E760: No word count in %s" -msgstr "E760: %s ɂ͒Pꐔ܂" - -#: ../spell.c:5669 -#, c-format -msgid "line %6d, word %6d - %s" -msgstr "s %6d, P %6d - %s" - -#: ../spell.c:5691 -#, c-format -msgid "Duplicate word in %s line %d: %s" -msgstr "%s %d sڂ dPꂪ܂: %s" - -#: ../spell.c:5694 -#, c-format -msgid "First duplicate word in %s line %d: %s" -msgstr "d̂ŏ̒P %s %d sڂł: %s" - -#: ../spell.c:5746 -#, c-format -msgid "%d duplicate word(s) in %s" -msgstr "%d ̒Pꂪ܂ (%s )" - -#: ../spell.c:5748 -#, c-format -msgid "Ignored %d word(s) with non-ASCII characters in %s" -msgstr "ASCII܂ %d ̒P܂ (%s )" - -#: ../spell.c:6115 -#, c-format -msgid "Reading word file %s ..." -msgstr "W͂Ǎݒ %s ..." - -#: ../spell.c:6155 -#, c-format -msgid "Duplicate /encoding= line ignored in %s line %d: %s" -msgstr "%s %d sڂ d /encoding= s܂: %s" - -#: ../spell.c:6159 -#, c-format -msgid "/encoding= line after word ignored in %s line %d: %s" -msgstr "%s %d sڂ P̌ /encoding= s܂: %s" - -#: ../spell.c:6180 -#, c-format -msgid "Duplicate /regions= line ignored in %s line %d: %s" -msgstr "%s %d sڂ d /regions= s܂: %s" - -#: ../spell.c:6185 -#, c-format -msgid "Too many regions in %s line %d: %s" -msgstr "%s %d s, ͈͎w肪߂܂: %s" - -#: ../spell.c:6198 -#, c-format -msgid "/ line ignored in %s line %d: %s" -msgstr "%s %d sڂ d / s܂: %s" - -#: ../spell.c:6224 -#, c-format -msgid "Invalid region nr in %s line %d: %s" -msgstr "%s %d s nr ̈ł: %s" - -#: ../spell.c:6230 -#, c-format -msgid "Unrecognized flags in %s line %d: %s" -msgstr "%s %d s Fs\\ȃtOł: %s" - -#: ../spell.c:6257 -#, c-format -msgid "Ignored %d words with non-ASCII characters" -msgstr "ASCII܂ %d ̒P܂" - -#: ../spell.c:6656 -#, c-format -msgid "Compressed %d of %d nodes; %d (%d%%) remaining" -msgstr "m[h %d (S %d ) k܂; c %d (%d%%)" - -#: ../spell.c:7340 -msgid "Reading back spell file..." -msgstr "Xyt@CtǍ" - -#. Go through the trie of good words, soundfold each word and add it to -#. the soundfold trie. -#: ../spell.c:7357 -msgid "Performing soundfolding..." -msgstr "݂s..." - -#: ../spell.c:7368 -#, c-format -msgid "Number of words after soundfolding: %<PRId64>" -msgstr "̑Pꐔ: %<PRId64>" - -#: ../spell.c:7476 -#, c-format -msgid "Total number of words: %d" -msgstr "Pꐔ: %d" - -#: ../spell.c:7655 -#, c-format -msgid "Writing suggestion file %s ..." -msgstr "Ct@C \"%s\" ݒ..." - -#: ../spell.c:7707 ../spell.c:7927 -#, c-format -msgid "Estimated runtime memory use: %d bytes" -msgstr "胁gp: %d oCg" - -#: ../spell.c:7820 -msgid "E751: Output file name must not have region name" -msgstr "E751: o̓t@Cɂ͔͈͖܂߂܂" - -#: ../spell.c:7822 -msgid "E754: Only up to 8 regions supported" -msgstr "E754: ͈͂ 8 ܂łT|[gĂ܂" - -#: ../spell.c:7846 -#, c-format -msgid "E755: Invalid region in %s" -msgstr "E755: Ȕ͈͂ł: %s" - -#: ../spell.c:7907 -msgid "Warning: both compounding and NOBREAK specified" -msgstr "x: tO NOBREAK Ƃw肳܂" - -#: ../spell.c:7920 -#, c-format -msgid "Writing spell file %s ..." -msgstr "Xyt@C %s ݒ..." - -#: ../spell.c:7925 -msgid "Done!" -msgstr "s܂!" - -#: ../spell.c:8034 -#, c-format -msgid "E765: 'spellfile' does not have %<PRId64> entries" -msgstr "E765: 'spellfile' ɂ %<PRId64> ̃Gg͂܂" - -#: ../spell.c:8074 -#, c-format -msgid "Word '%.*s' removed from %s" -msgstr "P '%.*s' %s 폜܂" - -#: ../spell.c:8117 -#, c-format -msgid "Word '%.*s' added to %s" -msgstr "P '%.*s' %s ֒lj܂" - -#: ../spell.c:8381 -msgid "E763: Word characters differ between spell files" -msgstr "E763: P̕Xyt@CƈقȂ܂" - -#: ../spell.c:8684 -msgid "Sorry, no suggestions" -msgstr "cOł, C͂܂" - -#: ../spell.c:8687 -#, c-format -msgid "Sorry, only %<PRId64> suggestions" -msgstr "cOł, C %<PRId64> ܂" - -#. for when 'cmdheight' > 1 -#. avoid more prompt -#: ../spell.c:8704 -#, c-format -msgid "Change \"%.*s\" to:" -msgstr "\"%.*s\" ֕ϊ:" - -#: ../spell.c:8737 -#, c-format -msgid " < \"%.*s\"" -msgstr " < \"%.*s\"" - -#: ../spell.c:8882 -msgid "E752: No previous spell replacement" -msgstr "E752: Xyu܂sĂ܂" - -#: ../spell.c:8925 -#, c-format -msgid "E753: Not found: %s" -msgstr "E753: ܂: %s" - -#: ../spell.c:9276 -#, c-format -msgid "E778: This does not look like a .sug file: %s" -msgstr "E778: .sug t@Cł͂Ȃ悤ł: %s" - -#: ../spell.c:9282 -#, c-format -msgid "E779: Old .sug file, needs to be updated: %s" -msgstr "E779:  .sug t@CȂ̂, Abvf[gĂ: %s" - -#: ../spell.c:9286 -#, c-format -msgid "E780: .sug file is for newer version of Vim: %s" -msgstr "E780: Vo[W Vim p .sug t@Cł: %s" - -#: ../spell.c:9295 -#, c-format -msgid "E781: .sug file doesn't match .spl file: %s" -msgstr "E781: .sug t@C .spl t@Cƈv܂: %s" - -#: ../spell.c:9305 -#, c-format -msgid "E782: error while reading .sug file: %s" -msgstr "E782: .sug t@C̓ǍɃG[܂: %s" - -#. This should have been checked when generating the .spl -#. file. -#: ../spell.c:11575 -msgid "E783: duplicate char in MAP entry" -msgstr "E783: MAP Ggɏd݂܂" - -#: ../syntax.c:266 -msgid "No Syntax items defined for this buffer" -msgstr "̃obt@ɒ`ꂽ\\vf͂܂" - -#: ../syntax.c:3083 ../syntax.c:3104 ../syntax.c:3127 -#, c-format -msgid "E390: Illegal argument: %s" -msgstr "E390: sȈł: %s" - -msgid "syntax iskeyword " -msgstr "V^bNXp iskeyword " - -#: ../syntax.c:3299 -#, c-format -msgid "E391: No such syntax cluster: %s" -msgstr "E391: ̂悤ȍ\\NX^͂܂: %s" - -#: ../syntax.c:3433 -msgid "syncing on C-style comments" -msgstr "CꕗRg瓯" - -#: ../syntax.c:3439 -msgid "no syncing" -msgstr "" - -#: ../syntax.c:3441 -msgid "syncing starts " -msgstr "Jn " - -#: ../syntax.c:3443 ../syntax.c:3506 -msgid " lines before top line" -msgstr " sO(gbvs)" - -#: ../syntax.c:3448 -msgid "" -"\n" -"--- Syntax sync items ---" -msgstr "" -"\n" -"--- \\vf ---" - -#: ../syntax.c:3452 -msgid "" -"\n" -"syncing on items" -msgstr "" -"\n" -"vfœ" - -#: ../syntax.c:3457 -msgid "" -"\n" -"--- Syntax items ---" -msgstr "" -"\n" -"--- \\vf ---" - -#: ../syntax.c:3475 -#, c-format -msgid "E392: No such syntax cluster: %s" -msgstr "E392: ̂悤ȍ\\NX^͂܂: %s" - -#: ../syntax.c:3497 -msgid "minimal " -msgstr "minimal " - -#: ../syntax.c:3503 -msgid "maximal " -msgstr "maximal " - -#: ../syntax.c:3513 -msgid "; match " -msgstr "; Y " - -#: ../syntax.c:3515 -msgid " line breaks" -msgstr " ̉s" - -#: ../syntax.c:4076 -msgid "E395: contains argument not accepted here" -msgstr "E395: ̏ꏊł͈contains͋Ă܂" - -#: ../syntax.c:4096 -msgid "E844: invalid cchar value" -msgstr "E844: cchar̒lł" - -#: ../syntax.c:4107 -msgid "E393: group[t]here not accepted here" -msgstr "E393: ł̓O[v͋܂" - -#: ../syntax.c:4126 -#, c-format -msgid "E394: Didn't find region item for %s" -msgstr "E394: %s ͈̔͗vf܂" - -#: ../syntax.c:4188 -msgid "E397: Filename required" -msgstr "E397: t@CKvł" - -#: ../syntax.c:4221 -msgid "E847: Too many syntax includes" -msgstr "E847: \\̎荞(include)߂܂" - -#: ../syntax.c:4303 -#, c-format -msgid "E789: Missing ']': %s" -msgstr "E789: ']' ܂: %s" - -#, c-format -msgid "E890: trailing char after ']': %s]%s" -msgstr "E890: ']' ̌ɗ]ȕ܂: %s]%s" - -#: ../syntax.c:4531 -#, c-format -msgid "E398: Missing '=': %s" -msgstr "E398: '=' ܂: %s" - -#: ../syntax.c:4666 -#, c-format -msgid "E399: Not enough arguments: syntax region %s" -msgstr "E399: ܂: \\͈ %s" - -#: ../syntax.c:4870 -msgid "E848: Too many syntax clusters" -msgstr "E848: \\NX^߂܂" - -#: ../syntax.c:4954 -msgid "E400: No cluster specified" -msgstr "E400: NX^w肳Ă܂" - -#. end delimiter not found -#: ../syntax.c:4986 -#, c-format -msgid "E401: Pattern delimiter not found: %s" -msgstr "E401: p^[肪܂: %s" - -#: ../syntax.c:5049 -#, c-format -msgid "E402: Garbage after pattern: %s" -msgstr "E402: p^[̂ƂɃS~܂: %s" - -#: ../syntax.c:5120 -msgid "E403: syntax sync: line continuations pattern specified twice" -msgstr "E403: \\: Asp^[2xw肳܂" - -#: ../syntax.c:5169 -#, c-format -msgid "E404: Illegal arguments: %s" -msgstr "E404: sȈł: %s" - -#: ../syntax.c:5217 -#, c-format -msgid "E405: Missing equal sign: %s" -msgstr "E405: ܂: %s" - -#: ../syntax.c:5222 -#, c-format -msgid "E406: Empty argument: %s" -msgstr "E406: ̈: %s" - -#: ../syntax.c:5240 -#, c-format -msgid "E407: %s not allowed here" -msgstr "E407: %s ̓RRł͋Ă܂" - -#: ../syntax.c:5246 -#, c-format -msgid "E408: %s must be first in contains list" -msgstr "E408: %s ͓eXg̐擪łȂȂȂ" - -#: ../syntax.c:5304 -#, c-format -msgid "E409: Unknown group name: %s" -msgstr "E409: m̃O[v: %s" - -#: ../syntax.c:5512 -#, c-format -msgid "E410: Invalid :syntax subcommand: %s" -msgstr "E410: :syntax ̃TuR}h: %s" - -#: ../syntax.c:5854 -msgid "" -" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN" -msgstr "" -" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN" - -#: ../syntax.c:6146 -msgid "E679: recursive loop loading syncolor.vim" -msgstr "E679: syncolor.vim ̍ċAĂяoo܂" - -#: ../syntax.c:6256 -#, c-format -msgid "E411: highlight group not found: %s" -msgstr "E411: nCCgO[v܂: %s" - -#: ../syntax.c:6278 -#, c-format -msgid "E412: Not enough arguments: \":highlight link %s\"" -msgstr "E412: [ł͂Ȃ: \":highlight link %s\"" - -#: ../syntax.c:6284 -#, c-format -msgid "E413: Too many arguments: \":highlight link %s\"" -msgstr "E413: ߂܂: \":highlight link %s\"" - -#: ../syntax.c:6302 -msgid "E414: group has settings, highlight link ignored" -msgstr "E414: O[vݒ肳Ă̂ŃnCCgN͖܂" - -#: ../syntax.c:6367 -#, c-format -msgid "E415: unexpected equal sign: %s" -msgstr "E415: \\ʓł: %s" - -#: ../syntax.c:6395 -#, c-format -msgid "E416: missing equal sign: %s" -msgstr "E416: ܂: %s" - -#: ../syntax.c:6418 -#, c-format -msgid "E417: missing argument: %s" -msgstr "E417: ܂: %s" - -#: ../syntax.c:6446 -#, c-format -msgid "E418: Illegal value: %s" -msgstr "E418: sȒlł: %s" - -#: ../syntax.c:6496 -msgid "E419: FG color unknown" -msgstr "E419: m̑OiFł" - -#: ../syntax.c:6504 -msgid "E420: BG color unknown" -msgstr "E420: m̔wiFł" - -#: ../syntax.c:6564 -#, c-format -msgid "E421: Color name or number not recognized: %s" -msgstr "E421: J[ԍFł܂: %s" - -#: ../syntax.c:6714 -#, c-format -msgid "E422: terminal code too long: %s" -msgstr "E422: I[R[h߂܂: %s" - -#: ../syntax.c:6753 -#, c-format -msgid "E423: Illegal argument: %s" -msgstr "E423: sȈł: %s" - -#: ../syntax.c:6925 -msgid "E424: Too many different highlighting attributes in use" -msgstr "E424: ̈قȂnCCgg߂Ă܂" - -#: ../syntax.c:7427 -msgid "E669: Unprintable character in group name" -msgstr "E669: O[vɈs\\ȕ܂" - -#: ../syntax.c:7434 -msgid "W18: Invalid character in group name" -msgstr "W18: O[vɕsȕ܂" - -#: ../syntax.c:7448 -msgid "E849: Too many highlight and syntax groups" -msgstr "E849: nCCgƍ\\O[v߂܂" - -#: ../tag.c:104 -msgid "E555: at bottom of tag stack" -msgstr "E555: ^OX^bN̖ł" - -#: ../tag.c:105 -msgid "E556: at top of tag stack" -msgstr "E556: ^OX^bN̐擪ł" - -#: ../tag.c:380 -msgid "E425: Cannot go before first matching tag" -msgstr "E425: ŏ̊Y^OĖ߂邱Ƃ͂ł܂" - -#: ../tag.c:504 -#, c-format -msgid "E426: tag not found: %s" -msgstr "E426: ^O܂: %s" - -#: ../tag.c:528 -msgid " # pri kind tag" -msgstr " # pri kind tag" - -#: ../tag.c:531 -msgid "file\n" -msgstr "t@C\n" - -#: ../tag.c:829 -msgid "E427: There is only one matching tag" -msgstr "E427: Y^O1܂" - -#: ../tag.c:831 -msgid "E428: Cannot go beyond last matching tag" -msgstr "E428: ŌɊY^OĐiނƂ͂ł܂" - -#: ../tag.c:850 -#, c-format -msgid "File \"%s\" does not exist" -msgstr "t@C \"%s\" ܂" - -#. Give an indication of the number of matching tags -#: ../tag.c:859 -#, c-format -msgid "tag %d of %d%s" -msgstr "^O %d (S%d%s)" - -#: ../tag.c:862 -msgid " or more" -msgstr " ȏ" - -#: ../tag.c:864 -msgid " Using tag with different case!" -msgstr " ^OقȂcaseŎgp܂!" - -#: ../tag.c:909 -#, c-format -msgid "E429: File \"%s\" does not exist" -msgstr "E429: t@C \"%s\" ܂" - -#. Highlight title -#: ../tag.c:960 -msgid "" -"\n" -" # TO tag FROM line in file/text" -msgstr "" -"\n" -" # TO ^O FROM s in file/text" - -#: ../tag.c:1303 -#, c-format -msgid "Searching tags file %s" -msgstr "^Ot@C %s " - -#: ../tag.c:1545 -msgid "Ignoring long line in tags file" -msgstr "^Ot@C̒s܂" - -#: ../tag.c:1915 -#, c-format -msgid "E431: Format error in tags file \"%s\"" -msgstr "E431: ^Ot@C \"%s\" ̃tH[}bgɃG[܂" - -#: ../tag.c:1917 -#, c-format -msgid "Before byte %<PRId64>" -msgstr "O %<PRId64> oCg" - -#: ../tag.c:1929 -#, c-format -msgid "E432: Tags file not sorted: %s" -msgstr "E432: ^Ot@C\\[gĂ܂: %s" - -#. never opened any tags file -#: ../tag.c:1960 -msgid "E433: No tags file" -msgstr "E433: ^Ot@C܂" - -#: ../tag.c:2536 -msgid "E434: Can't find tag pattern" -msgstr "E434: ^Op^[܂" - -#: ../tag.c:2544 -msgid "E435: Couldn't find tag, just guessing!" -msgstr "E435: ^OȂ̂ŒPɐ܂!" - -#: ../tag.c:2797 -#, c-format -msgid "Duplicate field name: %s" -msgstr "dtB[h: %s" - -#: ../term.c:1442 -msgid "' not known. Available builtin terminals are:" -msgstr "' ͖mł. s̑gݍݒ[͎̂Ƃł:" - -#: ../term.c:1463 -msgid "defaulting to '" -msgstr "ȗl̂悤ɐݒ肵܂ '" - -#: ../term.c:1731 -msgid "E557: Cannot open termcap file" -msgstr "E557: termcapt@CJ܂" - -#: ../term.c:1735 -msgid "E558: Terminal entry not found in terminfo" -msgstr "E558: terminfoɒ[Gg܂" - -#: ../term.c:1737 -msgid "E559: Terminal entry not found in termcap" -msgstr "E559: termcapɒ[Gg܂" - -#: ../term.c:1878 -#, c-format -msgid "E436: No \"%s\" entry in termcap" -msgstr "E436: termcap \"%s\" ̃Gg܂" - -#: ../term.c:2249 -msgid "E437: terminal capability \"cm\" required" -msgstr "E437: [ \"cm\" @\\Kvł" - -#. Highlight title -#: ../term.c:4376 -msgid "" -"\n" -"--- Terminal keys ---" -msgstr "" -"\n" -"--- [L[ ---" - -#: ../ui.c:481 -msgid "Vim: Error reading input, exiting...\n" -msgstr "Vim: ͂Ǎݒ̃G[ɂI܂...\n" - -#. This happens when the FileChangedRO autocommand changes the -#. * file in a way it becomes shorter. -#: ../undo.c:379 -msgid "E881: Line count changed unexpectedly" -msgstr "E881: \\sJEgς܂" - -#: ../undo.c:627 -#, c-format -msgid "E828: Cannot open undo file for writing: %s" -msgstr "E828: ݗpɃAhDt@CJ܂: %s" - -#: ../undo.c:717 -#, c-format -msgid "E825: Corrupted undo file (%s): %s" -msgstr "E825: AhDt@CĂ܂ (%s): %s" - -#: ../undo.c:1039 -msgid "Cannot write undo file in any directory in 'undodir'" -msgstr "'undodir'̃fBNgɃAhDt@C߂܂" - -#: ../undo.c:1074 -#, c-format -msgid "Will not overwrite with undo file, cannot read: %s" -msgstr "AhDt@CƂēǂݍ߂Ȃ̂ŏ㏑܂: %s" - -#: ../undo.c:1092 -#, c-format -msgid "Will not overwrite, this is not an undo file: %s" -msgstr "AhDt@Cł͂Ȃ̂ŏ㏑܂: %s" - -#: ../undo.c:1108 -msgid "Skipping undo file write, nothing to undo" -msgstr "ΏۂȂ̂ŃAhDt@C݂̏XLbv܂" - -#: ../undo.c:1121 -#, c-format -msgid "Writing undo file: %s" -msgstr "AhDt@Cݒ: %s" - -#: ../undo.c:1213 -#, c-format -msgid "E829: write error in undo file: %s" -msgstr "E829: AhDt@C̏݃G[ł: %s" - -#: ../undo.c:1280 -#, c-format -msgid "Not reading undo file, owner differs: %s" -msgstr "I[i[قȂ̂ŃAhDt@Cǂݍ݂܂: %s" - -#: ../undo.c:1292 -#, c-format -msgid "Reading undo file: %s" -msgstr "AhDt@CǍ: %s" - -#: ../undo.c:1299 -#, c-format -msgid "E822: Cannot open undo file for reading: %s" -msgstr "E822: AhDt@CǍpƂĊJ܂: %s" - -#: ../undo.c:1308 -#, c-format -msgid "E823: Not an undo file: %s" -msgstr "E823: AhDt@Cł͂܂: %s" - -#: ../undo.c:1313 -#, c-format -msgid "E824: Incompatible undo file: %s" -msgstr "E824: ̖݊AhDt@Cł: %s" - -#: ../undo.c:1328 -msgid "File contents changed, cannot use undo info" -msgstr "t@C̓eςĂ邽߁AAhD𗘗pł܂" - -#: ../undo.c:1497 -#, c-format -msgid "Finished reading undo file %s" -msgstr "AhDt@C %s ̎捞" - -#: ../undo.c:1586 ../undo.c:1812 -msgid "Already at oldest change" -msgstr "ɈԌÂύXł" - -#: ../undo.c:1597 ../undo.c:1814 -msgid "Already at newest change" -msgstr "ɈԐVύXł" - -#: ../undo.c:1806 -#, c-format -msgid "E830: Undo number %<PRId64> not found" -msgstr "E830: AhDԍ %<PRId64> ͌܂" - -#: ../undo.c:1979 -msgid "E438: u_undo: line numbers wrong" -msgstr "E438: u_undo: sԍԈĂ܂" - -#: ../undo.c:2183 -msgid "more line" -msgstr "s lj܂" - -#: ../undo.c:2185 -msgid "more lines" -msgstr "s lj܂" - -#: ../undo.c:2187 -msgid "line less" -msgstr "s 폜܂" - -#: ../undo.c:2189 -msgid "fewer lines" -msgstr "s 폜܂" - -#: ../undo.c:2193 -msgid "change" -msgstr "ӏύX܂" - -#: ../undo.c:2195 -msgid "changes" -msgstr "ӏύX܂" - -#: ../undo.c:2225 -#, c-format -msgid "%<PRId64> %s; %s #%<PRId64> %s" -msgstr "%<PRId64> %s; %s #%<PRId64> %s" - -#: ../undo.c:2228 -msgid "before" -msgstr "O" - -#: ../undo.c:2228 -msgid "after" -msgstr "" - -#: ../undo.c:2325 -msgid "Nothing to undo" -msgstr "AhDΏۂ܂" - -#: ../undo.c:2330 -msgid "number changes when saved" -msgstr "ʔ ύX ύX ۑ" - -#: ../undo.c:2360 -#, c-format -msgid "%<PRId64> seconds ago" -msgstr "%<PRId64> bo߂Ă܂" - -#: ../undo.c:2372 -msgid "E790: undojoin is not allowed after undo" -msgstr "E790: undo ̒ undojoin ͂ł܂" - -#: ../undo.c:2466 -msgid "E439: undo list corrupt" -msgstr "E439: AhDXgĂ܂" - -#: ../undo.c:2495 -msgid "E440: undo line missing" -msgstr "E440: AhDs܂" - -#: ../version.c:600 -msgid "" -"\n" -"Included patches: " -msgstr "" -"\n" -"Kpσpb`: " - -#: ../version.c:627 -msgid "" -"\n" -"Extra patches: " -msgstr "" -"\n" -"ljgpb`: " - -#: ../version.c:639 ../version.c:864 -msgid "Modified by " -msgstr "Modified by " - -#: ../version.c:646 -msgid "" -"\n" -"Compiled " -msgstr "" -"\n" -"Compiled " - -#: ../version.c:649 -msgid "by " -msgstr "by " - -#: ../version.c:660 -msgid "" -"\n" -"Huge version " -msgstr "" -"\n" -"Huge " - -#: ../version.c:661 -msgid "without GUI." -msgstr "without GUI." - -#: ../version.c:662 -msgid " Features included (+) or not (-):\n" -msgstr " @\\̈ꗗ L(+)/(-)\n" - -#: ../version.c:667 -msgid " system vimrc file: \"" -msgstr " VXe vimrc: \"" - -#: ../version.c:672 -msgid " user vimrc file: \"" -msgstr " [U[ vimrc: \"" - -#: ../version.c:677 -msgid " 2nd user vimrc file: \"" -msgstr " 2[U[ vimrc: \"" - -#: ../version.c:682 -msgid " 3rd user vimrc file: \"" -msgstr " 3[U[ vimrc: \"" - -#: ../version.c:687 -msgid " user exrc file: \"" -msgstr " [U[ exrc: \"" - -#: ../version.c:692 -msgid " 2nd user exrc file: \"" -msgstr " 2[U[ exrc: \"" - -#: ../version.c:699 -msgid " fall-back for $VIM: \"" -msgstr " ȗ $VIM: \"" - -#: ../version.c:705 -msgid " f-b for $VIMRUNTIME: \"" -msgstr "ȗ $VIMRUNTIME: \"" - -#: ../version.c:709 -msgid "Compilation: " -msgstr "RpC: " - -#: ../version.c:712 -msgid "Linking: " -msgstr "N: " - -#: ../version.c:717 -msgid " DEBUG BUILD" -msgstr "fobOrh" - -#: ../version.c:767 -msgid "VIM - Vi IMproved" -msgstr "VIM - Vi IMproved" - -#: ../version.c:769 -msgid "version " -msgstr "version " - -#: ../version.c:770 -msgid "by Bram Moolenaar et al." -msgstr "by Bram Moolenaar ." - -#: ../version.c:774 -msgid "Vim is open source and freely distributable" -msgstr "Vim ̓I[v\\[Xł莩Rɔzz\\ł" - -#: ../version.c:776 -msgid "Help poor children in Uganda!" -msgstr "EK_̌b܂Ȃqɉ!" - -#: ../version.c:777 -msgid "type :help iccf<Enter> for information " -msgstr "ڍׂȏ :help iccf<Enter> " - -#: ../version.c:779 -msgid "type :q<Enter> to exit " -msgstr "Iɂ :q<Enter> " - -#: ../version.c:780 -msgid "type :help<Enter> or <F1> for on-line help" -msgstr "ICwv :help<Enter> <F1> " - -#: ../version.c:781 -msgid "type :help version7<Enter> for version info" -msgstr "o[W :help version7<Enter> " - -#: ../version.c:784 -msgid "Running in Vi compatible mode" -msgstr "Vi݊[hœ쒆" - -#: ../version.c:785 -msgid "type :set nocp<Enter> for Vim defaults" -msgstr "Vimlɂɂ :set nocp<Enter> " - -#: ../version.c:786 -msgid "type :help cp-default<Enter> for info on this" -msgstr "ڍׂȏ :help cp-default<Enter>" - -#: ../version.c:827 -msgid "Sponsor Vim development!" -msgstr "Vim̊JĂ!" - -#: ../version.c:828 -msgid "Become a registered Vim user!" -msgstr "Vim̓o^[U[ɂȂĂ!" - -#: ../version.c:831 -msgid "type :help sponsor<Enter> for information " -msgstr "ڍׂȏ :help sponsor<Enter> " - -#: ../version.c:832 -msgid "type :help register<Enter> for information " -msgstr "ڍׂȏ :help register<Enter> " - -#: ../version.c:834 -msgid "menu Help->Sponsor/Register for information " -msgstr "ڍׂ̓j[ wv->X|T[/o^ QƂĉ" - -#: ../window.c:119 -msgid "Already only one window" -msgstr "ɃEBhE1܂" - -#: ../window.c:224 -msgid "E441: There is no preview window" -msgstr "E441: vr[EBhE܂" - -#: ../window.c:559 -msgid "E442: Can't split topleft and botright at the same time" -msgstr "E442: ƉEɕ邱Ƃ͂ł܂" - -#: ../window.c:1228 -msgid "E443: Cannot rotate when another window is split" -msgstr "E443: ̃EBhEĂ鎞ɂ͏ł܂" - -#: ../window.c:1803 -msgid "E444: Cannot close last window" -msgstr "E444: Ō̃EBhE邱Ƃ͂ł܂" - -#: ../window.c:1810 -msgid "E813: Cannot close autocmd window" -msgstr "E813: autocmdEBhE͕܂" - -#: ../window.c:1814 -msgid "E814: Cannot close window, only autocmd window would remain" -msgstr "E814: autocmdEBhEcȂ߁AEBhE͕܂" - -#: ../window.c:2717 -msgid "E445: Other window contains changes" -msgstr "E445: ̃EBhEɂ͕ύX܂" - -#: ../window.c:4805 -msgid "E446: No file name under cursor" -msgstr "E446: J[\\̉Ƀt@C܂" - -msgid "List or number required" -msgstr "XglKvł" - -#~ msgid "E831: bf_key_init() called with empty password" -#~ msgstr "E831: bf_key_init() pX[hŌĂяo܂" - -#~ msgid "E820: sizeof(uint32_t) != 4" -#~ msgstr "E820: sizeof(uint32_t) != 4" - -#~ msgid "E817: Blowfish big/little endian use wrong" -#~ msgstr "E817: BlowfishÍ̃rbO/gGfBAԈĂ܂" - -#~ msgid "E818: sha256 test failed" -#~ msgstr "E818: sha256̃eXgɎs܂" - -#~ msgid "E819: Blowfish test failed" -#~ msgstr "E819: BlowfishÍ̃eXgɎs܂" - -#~ msgid "Patch file" -#~ msgstr "pb`t@C" - -#~ msgid "" -#~ "&OK\n" -#~ "&Cancel" -#~ msgstr "" -#~ "(&O)\n" -#~ "LZ(&C)" - -#~ msgid "E240: No connection to Vim server" -#~ msgstr "E240: Vim T[oւ̐ڑ܂" - -#~ msgid "E241: Unable to send to %s" -#~ msgstr "E241: %s ֑邱Ƃł܂" - -#~ msgid "E277: Unable to read a server reply" -#~ msgstr "E277: T[ỏ܂" - -#~ msgid "E258: Unable to send to client" -#~ msgstr "E258: NCAg֑邱Ƃł܂" - -#~ msgid "Save As" -#~ msgstr "ʖŕۑ" - -#~ msgid "Edit File" -#~ msgstr "t@CҏW" - -# Added at 27-Jan-2004. -#~ msgid " (NOT FOUND)" -#~ msgstr " (܂)" - -#~ msgid "Source Vim script" -#~ msgstr "VimXNvg̎捞" - -#~ msgid "unknown" -#~ msgstr "s" - -#~ msgid "Edit File in new window" -#~ msgstr "VEBhEŃt@CҏW܂" - -#~ msgid "Append File" -#~ msgstr "ljt@C" - -#~ msgid "Window position: X %d, Y %d" -#~ msgstr "EBhEʒu: X %d, Y %d" - -#~ msgid "Save Redirection" -#~ msgstr "_CNgۑ܂" - -#~ msgid "Save View" -#~ msgstr "r[ۑ܂" - -#~ msgid "Save Session" -#~ msgstr "ZbVۑ܂" - -#~ msgid "Save Setup" -#~ msgstr "ݒۑ܂" - -#~ msgid "E809: #< is not available without the +eval feature" -#~ msgstr "E809: #< +eval @\\Ɨpł܂" - -#~ msgid "E196: No digraphs in this version" -#~ msgstr "E196: ̃o[Wɍ͂܂" - -#~ msgid "is a device (disabled with 'opendevice' option)" -#~ msgstr " ̓foCXł ('opendevice' IvVʼnł܂)" - -#~ msgid "Reading from stdin..." -#~ msgstr "W͂Ǎݒ..." - -#~ msgid "[blowfish]" -#~ msgstr "[blowfishÍ]" - -#~ msgid "[crypted]" -#~ msgstr "[Í]" - -#~ msgid "E821: File is encrypted with unknown method" -#~ msgstr "E821: t@Cm̕@ňÍĂ܂" - -# Added at 19-Jan-2004. -#~ msgid "NetBeans disallows writes of unmodified buffers" -#~ msgstr "NetBeans͖ύX̃obt@㏑邱Ƃ͋Ă܂" - -#~ msgid "Partial writes disallowed for NetBeans buffers" -#~ msgstr "NetBeansobt@̈ꕔoƂ͂ł܂" - -#~ msgid "writing to device disabled with 'opendevice' option" -#~ msgstr "'opendevice' IvVɂfoCXւ݂̏͂ł܂" - -#~ msgid "E460: The resource fork would be lost (add ! to override)" -#~ msgstr "E460: \\[XtH[N邩܂ (! ljŋ)" - -#~ msgid "E851: Failed to create a new process for the GUI" -#~ msgstr "E851: GUIp̃vZX̋NɎs܂" - -#~ msgid "E852: The child process failed to start the GUI" -#~ msgstr "E852: qvZXGUI̋NɎs܂" - -#~ msgid "E229: Cannot start the GUI" -#~ msgstr "E229: GUIJnł܂" - -#~ msgid "E230: Cannot read from \"%s\"" -#~ msgstr "E230: \"%s\"ǍނƂł܂" - -#~ msgid "E665: Cannot start GUI, no valid font found" -#~ msgstr "E665: LȃtHgȂ̂, GUIJnł܂" - -#~ msgid "E231: 'guifontwide' invalid" -#~ msgstr "E231: 'guifontwide' ł" - -#~ msgid "E599: Value of 'imactivatekey' is invalid" -#~ msgstr "E599: 'imactivatekey' ɐݒ肳ꂽlł" - -#~ msgid "E254: Cannot allocate color %s" -#~ msgstr "E254: %s ̐F蓖Ă܂" - -#~ msgid "No match at cursor, finding next" -#~ msgstr "J[\\̈ʒuɃ}b`͂܂, Ă܂" - -#~ msgid "<cannot open> " -#~ msgstr "<J܂> " - -#~ msgid "E616: vim_SelFile: can't get font %s" -#~ msgstr "E616: vim_SelFile: tHg %s 擾ł܂" - -#~ msgid "E614: vim_SelFile: can't return to current directory" -#~ msgstr "E614: vim_SelFile: ݂̃fBNgɖ߂܂" - -#~ msgid "Pathname:" -#~ msgstr "pX:" - -#~ msgid "E615: vim_SelFile: can't get current directory" -#~ msgstr "E615: vim_SelFile: ݂̃fBNg擾ł܂" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Cancel" -#~ msgstr "LZ" - -#~ msgid "Scrollbar Widget: Could not get geometry of thumb pixmap." -#~ msgstr "XN[o[: 摜擾ł܂ł." - -#~ msgid "Vim dialog" -#~ msgstr "Vim _CAO" - -#~ msgid "E232: Cannot create BalloonEval with both message and callback" -#~ msgstr "E232: bZ[WƃR[obN̂ BalloonEval 쐬ł܂" - -#~ msgid "Input _Methods" -#~ msgstr "Cvbg\\bh" - -#~ msgid "VIM - Search and Replace..." -#~ msgstr "VIM - ƒu..." - -#~ msgid "VIM - Search..." -#~ msgstr "VIM - ..." - -#~ msgid "Find what:" -#~ msgstr ":" - -#~ msgid "Replace with:" -#~ msgstr "u:" - -#~ msgid "Match whole word only" -#~ msgstr "mɊŶ" - -#~ msgid "Match case" -#~ msgstr "啶/ʂ" - -#~ msgid "Direction" -#~ msgstr "" - -#~ msgid "Up" -#~ msgstr "" - -#~ msgid "Down" -#~ msgstr "" - -#~ msgid "Find Next" -#~ msgstr "" - -#~ msgid "Replace" -#~ msgstr "u" - -#~ msgid "Replace All" -#~ msgstr "SĒu" - -#~ msgid "Vim: Received \"die\" request from session manager\n" -#~ msgstr "Vim: ZbV}l[W \"die\" v܂\n" - -#~ msgid "Close" -#~ msgstr "" - -#~ msgid "New tab" -#~ msgstr "VK^uy[W" - -#~ msgid "Open Tab..." -#~ msgstr "^uy[WJ..." - -#~ msgid "Vim: Main window unexpectedly destroyed\n" -#~ msgstr "Vim: CEBhEsӂɔj܂\n" - -#~ msgid "&Filter" -#~ msgstr "tB^(&F)" - -#~ msgid "&Cancel" -#~ msgstr "LZ(&C)" - -#~ msgid "Directories" -#~ msgstr "fBNg" - -#~ msgid "Filter" -#~ msgstr "tB^" - -#~ msgid "&Help" -#~ msgstr "wv(&H)" - -#~ msgid "Files" -#~ msgstr "t@C" - -#~ msgid "&OK" -#~ msgstr "&OK" - -#~ msgid "Selection" -#~ msgstr "I" - -#~ msgid "Find &Next" -#~ msgstr "(&N)" - -#~ msgid "&Replace" -#~ msgstr "u(&R)" - -#~ msgid "Replace &All" -#~ msgstr "SĒu(&A)" - -#~ msgid "&Undo" -#~ msgstr "AhD(&U)" - -#~ msgid "E671: Cannot find window title \"%s\"" -#~ msgstr "E671: ^Cg \"%s\" ̃EBhE͌܂" - -#~ msgid "E243: Argument not supported: \"-%s\"; Use the OLE version." -#~ msgstr "E243: ̓T|[g܂: \"-%s\"; OLEłgpĂ." - -#~ msgid "E672: Unable to open window inside MDI application" -#~ msgstr "E672: MDIAv̒ł̓EBhEJ܂" - -#~ msgid "Close tab" -#~ msgstr "^uy[W" - -#~ msgid "Open tab..." -#~ msgstr "^uy[WJ" - -#~ msgid "Find string (use '\\\\' to find a '\\')" -#~ msgstr " ('\\' ɂ '\\\\')" - -#~ msgid "Find & Replace (use '\\\\' to find a '\\')" -#~ msgstr "Eu ('\\' ɂ '\\\\')" - -#~ msgid "Not Used" -#~ msgstr "g܂" - -#~ msgid "Directory\t*.nothing\n" -#~ msgstr "fBNg\t*.nothing\n" - -#~ msgid "" -#~ "Vim E458: Cannot allocate colormap entry, some colors may be incorrect" -#~ msgstr "Vim E458: Fw肪Ȃ̂ŃGg蓖Ă܂" - -#~ msgid "E250: Fonts for the following charsets are missing in fontset %s:" -#~ msgstr "E250: ȉ̕Zbg̃tHg܂ %s:" - -#~ msgid "E252: Fontset name: %s" -#~ msgstr "E252: tHgZbg: %s" - -#~ msgid "Font '%s' is not fixed-width" -#~ msgstr "tHg '%s' ͌Œ蕝ł͂܂" - -#~ msgid "E253: Fontset name: %s" -#~ msgstr "E253: tHgZbg: %s" - -#~ msgid "Font0: %s" -#~ msgstr "tHg0: %s" - -#~ msgid "Font1: %s" -#~ msgstr "tHg1: %s" - -#~ msgid "Font%<PRId64> width is not twice that of font0" -#~ msgstr "tHg%<PRId64> ̕tHg02{ł͂܂" - -#~ msgid "Font0 width: %<PRId64>" -#~ msgstr "tHg0̕: %<PRId64>" - -#~ msgid "Font1 width: %<PRId64>" -#~ msgstr "tHg1̕: %<PRId64>" - -#~ msgid "Invalid font specification" -#~ msgstr "ȃtHgwł" - -#~ msgid "&Dismiss" -#~ msgstr "p(&D)" - -#~ msgid "no specific match" -#~ msgstr "}b`̂܂" - -#~ msgid "Vim - Font Selector" -#~ msgstr "Vim - tHgI" - -#~ msgid "Name:" -#~ msgstr "O:" - -#~ msgid "Show size in Points" -#~ msgstr "TCY|Cgŕ\\" - -#~ msgid "Encoding:" -#~ msgstr "GR[h:" - -#~ msgid "Font:" -#~ msgstr "tHg:" - -#~ msgid "Style:" -#~ msgstr "X^C:" - -#~ msgid "Size:" -#~ msgstr "TCY:" - -#~ msgid "E256: Hangul automata ERROR" -#~ msgstr "E256: nOI[g}gG[" - -#~ msgid "E563: stat error" -#~ msgstr "E563: stat G[" - -#~ msgid "E625: cannot open cscope database: %s" -#~ msgstr "E625: cscopef[^x[X: %s JƂł܂" - -#~ msgid "E626: cannot get cscope database information" -#~ msgstr "E626: cscopef[^x[X̏擾ł܂" - -#~ msgid "Lua library cannot be loaded." -#~ msgstr "LuaCu[hł܂." - -#~ msgid "cannot save undo information" -#~ msgstr "AhDۑł܂" - -#~ msgid "" -#~ "E815: Sorry, this command is disabled, the MzScheme libraries could not " -#~ "be loaded." -#~ msgstr "" -#~ "E815: ̃R}h͖ł. MzScheme Cu[hł܂." - -#~ msgid "invalid expression" -#~ msgstr "Ȏł" - -#~ msgid "expressions disabled at compile time" -#~ msgstr "̓RpCɖɂĂ܂" - -#~ msgid "hidden option" -#~ msgstr "BIvV" - -#~ msgid "unknown option" -#~ msgstr "m̃IvVł" - -#~ msgid "window index is out of range" -#~ msgstr "͈͊ÕEBhEԍł" - -#~ msgid "couldn't open buffer" -#~ msgstr "obt@J܂" - -#~ msgid "cannot delete line" -#~ msgstr "s܂" - -#~ msgid "cannot replace line" -#~ msgstr "suł܂" - -#~ msgid "cannot insert line" -#~ msgstr "s}ł܂" - -#~ msgid "string cannot contain newlines" -#~ msgstr "ɂ͉s܂߂܂" - -#~ msgid "error converting Scheme values to Vim" -#~ msgstr "SchemelVimւ̕ϊG[" - -#~ msgid "Vim error: ~a" -#~ msgstr "Vim G[: ~a" - -#~ msgid "Vim error" -#~ msgstr "Vim G[" - -#~ msgid "buffer is invalid" -#~ msgstr "obt@͖ł" - -#~ msgid "window is invalid" -#~ msgstr "EBhE͖ł" - -#~ msgid "linenr out of range" -#~ msgstr "͈͊O̍sԍł" - -#~ msgid "not allowed in the Vim sandbox" -#~ msgstr "Th{bNXł͋܂" - -#~ msgid "E370: Could not load library %s" -#~ msgstr "E370: Cu %s [hł܂ł" - -#~ msgid "" -#~ "Sorry, this command is disabled: the Perl library could not be loaded." -#~ msgstr "" -#~ "̃R}h͖ł, ߂Ȃ: PerlCu[hł܂ł" -#~ "." - -#~ msgid "E299: Perl evaluation forbidden in sandbox without the Safe module" -#~ msgstr "" -#~ "E299: Th{bNXł Safe W[gpȂPerlXNvg͋ւ" -#~ "Ă܂" - -#~ msgid "E836: This Vim cannot execute :python after using :py3" -#~ msgstr "E836: Vimł :py3 g :python g܂" - -#~ msgid "" -#~ "E263: Sorry, this command is disabled, the Python library could not be " -#~ "loaded." -#~ msgstr "" -#~ "E263: ̃R}h͖ł,߂Ȃ: PythonCu[hł" -#~ "ł." - -# Added at 07-Feb-2004. -#~ msgid "E659: Cannot invoke Python recursively" -#~ msgstr "E659: Python ċAIɎs邱Ƃ͂ł܂" - -#~ msgid "E837: This Vim cannot execute :py3 after using :python" -#~ msgstr "E837: Vimł :python g :py3 g܂" - -#~ msgid "E265: $_ must be an instance of String" -#~ msgstr "E265: $_ ͕̃CX^XłȂȂ܂" - -#~ msgid "" -#~ "E266: Sorry, this command is disabled, the Ruby library could not be " -#~ "loaded." -#~ msgstr "" -#~ "E266: ̃R}h͖ł,߂Ȃ: RubyCu[hł܂" -#~ "ł." - -#~ msgid "E267: unexpected return" -#~ msgstr "E267: \\ return ł" - -#~ msgid "E268: unexpected next" -#~ msgstr "E268: \\ next ł" - -#~ msgid "E269: unexpected break" -#~ msgstr "E269: \\ break ł" - -#~ msgid "E270: unexpected redo" -#~ msgstr "E270: \\ redo ł" - -#~ msgid "E271: retry outside of rescue clause" -#~ msgstr "E271: rescue ̊O retry ł" - -#~ msgid "E272: unhandled exception" -#~ msgstr "E272: 舵ȂO܂" - -#~ msgid "E273: unknown longjmp status %d" -#~ msgstr "E273: mlongjmp: %d" - -#~ msgid "Toggle implementation/definition" -#~ msgstr "ƒ`ւ" - -#~ msgid "Show base class of" -#~ msgstr "̃NX̊\\" - -#~ msgid "Show overridden member function" -#~ msgstr "I[o[Chꂽo\\" - -#~ msgid "Retrieve from file" -#~ msgstr "t@C" - -#~ msgid "Retrieve from project" -#~ msgstr "vWFNg" - -#~ msgid "Retrieve from all projects" -#~ msgstr "SẴvWFNg" - -#~ msgid "Retrieve" -#~ msgstr "" - -#~ msgid "Show source of" -#~ msgstr "̃\\[X\\" - -#~ msgid "Find symbol" -#~ msgstr "V{" - -#~ msgid "Browse class" -#~ msgstr "NXQ" - -#~ msgid "Show class in hierarchy" -#~ msgstr "KwŃNX\\" - -#~ msgid "Show class in restricted hierarchy" -#~ msgstr "肳ꂽKwŃNX\\" - -#~ msgid "Xref refers to" -#~ msgstr "Xref ̎QƐ" - -#~ msgid "Xref referred by" -#~ msgstr "Xref QƂ" - -#~ msgid "Xref has a" -#~ msgstr "Xref ̂̂Ă܂" - -#~ msgid "Xref used by" -#~ msgstr "Xref gp" - -#~ msgid "Show docu of" -#~ msgstr "͂̕\\" - -#~ msgid "Generate docu for" -#~ msgstr "͂̕" - -#~ msgid "" -#~ "Cannot connect to SNiFF+. Check environment (sniffemacs must be found in " -#~ "$PATH).\n" -#~ msgstr "" -#~ "SNiFF+ɐڑł܂. `FbNĂ(sniffemacs $PATH " -#~ "ȂȂ܂).\n" - -#~ msgid "E274: Sniff: Error during read. Disconnected" -#~ msgstr "E274: Sniff: ǍɃG[܂. ؒf܂" - -#~ msgid "SNiFF+ is currently " -#~ msgstr "SNiFF+ ̏Ԃ́u" - -#~ msgid "not " -#~ msgstr "" - -#~ msgid "connected" -#~ msgstr "ڑvł" - -#~ msgid "E275: Unknown SNiFF+ request: %s" -#~ msgstr "E275: m SNiFF+ NGXgł: %s" - -#~ msgid "E276: Error connecting to SNiFF+" -#~ msgstr "E276: SNiFF+ ւ̐ڑ̃G[ł" - -#~ msgid "E278: SNiFF+ not connected" -#~ msgstr "E278: SNiFF+ ɐڑĂ܂" - -#~ msgid "E279: Not a SNiFF+ buffer" -#~ msgstr "E279: SNiFF+ obt@܂" - -#~ msgid "Sniff: Error during write. Disconnected" -#~ msgstr "Sniff: ݒɃG[̂Őؒf܂" - -#~ msgid "invalid buffer number" -#~ msgstr "ȃobt@ԍł" - -#~ msgid "not implemented yet" -#~ msgstr "܂Ă܂" - -#~ msgid "cannot set line(s)" -#~ msgstr "sݒł܂" - -#~ msgid "invalid mark name" -#~ msgstr "ȃ}[Nł" - -#~ msgid "mark not set" -#~ msgstr "}[N͐ݒ肳Ă܂" - -#~ msgid "row %d column %d" -#~ msgstr "s %d %d" - -#~ msgid "cannot insert/append line" -#~ msgstr "s̑}/ljł܂" - -#~ msgid "line number out of range" -#~ msgstr "͈͊O̍sԍł" - -#~ msgid "unknown flag: " -#~ msgstr "m̃tO: " - -#~ msgid "unknown vimOption" -#~ msgstr "m vimOption ł" - -#~ msgid "keyboard interrupt" -#~ msgstr "L[{[h" - -#~ msgid "vim error" -#~ msgstr "vim G[" - -#~ msgid "cannot create buffer/window command: object is being deleted" -#~ msgstr "" -#~ "obt@/EBhE쐬R}h쐬ł܂: IuWFNg" -#~ "܂" - -#~ msgid "" -#~ "cannot register callback command: buffer/window is already being deleted" -#~ msgstr "" -#~ "R[obNR}ho^ł܂: obt@/EBhEɏ" -#~ "" - -#~ msgid "" -#~ "E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-" -#~ "dev@vim.org" -#~ msgstr "" -#~ "E280: TCL vIG[: reflist !? vim-dev@vim.org ɕĂ" - -#~ msgid "cannot register callback command: buffer/window reference not found" -#~ msgstr "" -#~ "R[obNR}ho^ł܂: obt@/EBhE̎QƂ" -#~ "܂" - -#~ msgid "" -#~ "E571: Sorry, this command is disabled: the Tcl library could not be " -#~ "loaded." -#~ msgstr "" -#~ "E571: ̃R}h͖ł,߂Ȃ: TclCu[hł܂" -#~ "ł." - -#~ msgid "E572: exit code %d" -#~ msgstr "E572: IR[h %d" - -#~ msgid "cannot get line" -#~ msgstr "s擾ł܂" - -#~ msgid "Unable to register a command server name" -#~ msgstr "߃T[o̖Oo^ł܂" - -#~ msgid "E248: Failed to send command to the destination program" -#~ msgstr "E248: ړĨvOւ̃R}hMɎs܂" - -#~ msgid "E573: Invalid server id used: %s" -#~ msgstr "E573: ȃT[oIDg܂: %s" - -#~ msgid "E251: VIM instance registry property is badly formed. Deleted!" -#~ msgstr "E251: VIM ̂̓o^vpeBsł. ܂!" - -#~ msgid "netbeans is not supported with this GUI\n" -#~ msgstr "netbeans ͂GUIł͗pł܂\n" - -#~ msgid "This Vim was not compiled with the diff feature." -#~ msgstr "Vimɂdiff@\\܂(RpCݒ)." - -#~ msgid "'-nb' cannot be used: not enabled at compile time\n" -#~ msgstr "'-nb' gps\\ł: RpCɖɂĂ܂\n" - -#~ msgid "Vim: Error: Failure to start gvim from NetBeans\n" -#~ msgstr "Vim: G[: NetBeansgvimX^[gł܂\n" - -#~ msgid "" -#~ "\n" -#~ "Where case is ignored prepend / to make flag upper case" -#~ msgstr "" -#~ "\n" -#~ "召ꍇ͑啶ɂ邽߂ / OuĂ" - -#~ msgid "-register\t\tRegister this gvim for OLE" -#~ msgstr "-register\t\tgvimOLEƂēo^" - -#~ msgid "-unregister\t\tUnregister gvim for OLE" -#~ msgstr "-unregister\t\tgvimOLEo^" - -#~ msgid "-g\t\t\tRun using GUI (like \"gvim\")" -#~ msgstr "-g\t\t\tGUIŋN (\"gvim\" Ɠ)" - -#~ msgid "-f or --nofork\tForeground: Don't fork when starting GUI" -#~ msgstr "-f or --nofork\ttHAOEh: GUIn߂ƂforkȂ" - -#~ msgid "-f\t\t\tDon't use newcli to open window" -#~ msgstr "-f\t\t\tEBhEĴ newcli gpȂ" - -#~ msgid "-dev <device>\t\tUse <device> for I/O" -#~ msgstr "-dev <device>\t\tI/O <device> gp" - -#~ msgid "-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc" -#~ msgstr "-U <gvimrc>\t\t.gvimrc̑ <gvimrc> g" - -#~ msgid "-x\t\t\tEdit encrypted files" -#~ msgstr "-x\t\t\tÍꂽt@CҏW" - -#~ msgid "-display <display>\tConnect vim to this particular X-server" -#~ msgstr "-display <display>\tvimw肵 X T[oɐڑ" - -#~ msgid "-X\t\t\tDo not connect to X server" -#~ msgstr "-X\t\t\tXT[oɐڑȂ" - -#~ msgid "--remote <files>\tEdit <files> in a Vim server if possible" -#~ msgstr "--remote <files>\t\\ȂVimT[o <files> ҏW" - -#~ msgid "--remote-silent <files> Same, don't complain if there is no server" -#~ msgstr "--remote-silent <files> , T[oĂxo͂Ȃ" - -#~ msgid "" -#~ "--remote-wait <files> As --remote but wait for files to have been edited" -#~ msgstr "--remote-wait <files>\t--remote t@C̕ҏWÎ҂" - -#~ msgid "" -#~ "--remote-wait-silent <files> Same, don't complain if there is no server" -#~ msgstr "" -#~ "--remote-wait-silent <files> , T[oĂxo͂Ȃ" - -#~ msgid "" -#~ "--remote-tab[-wait][-silent] <files> As --remote but use tab page per " -#~ "file" -#~ msgstr "" -#~ "--remote-tab[-wait][-silent] <files> --remoteŃt@C1ɂ1̃^u" -#~ "y[WJ" - -#~ msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit" -#~ msgstr "--remote-send <keys>\tVimT[o <keys> 𑗐MďI" - -#~ msgid "" -#~ "--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result" -#~ msgstr "--remote-expr <expr>\tT[o <expr> sČʂ\\" - -#~ msgid "--serverlist\t\tList available Vim server names and exit" -#~ msgstr "--serverlist\t\tVimT[öꗗ\\ďI" - -#~ msgid "--servername <name>\tSend to/become the Vim server <name>" -#~ msgstr "--servername <name>\tVimT[o <name> ɑM/Oݒ肷" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Motif version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvimɂĉ߂(Motifo[W):\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (neXtaw version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvimɂĉ߂(neXtawo[W):\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Athena version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvimɂĉ߂(Athenao[W):\n" - -#~ msgid "-display <display>\tRun vim on <display>" -#~ msgstr "-display <display>\t<display> vims" - -#~ msgid "-iconic\t\tStart vim iconified" -#~ msgstr "-iconic\t\tŏԂvimN" - -#~ msgid "-background <color>\tUse <color> for the background (also: -bg)" -#~ msgstr "-background <color>\twiF <color> g(`: -bg)" - -#~ msgid "-foreground <color>\tUse <color> for normal text (also: -fg)" -#~ msgstr "-foreground <color>\tOiF <color> g(`: -fg)" - -#~ msgid "-font <font>\t\tUse <font> for normal text (also: -fn)" -#~ msgstr "-font <font>\t\teLXg\\ <font> g(`: -fn)" - -#~ msgid "-boldfont <font>\tUse <font> for bold text" -#~ msgstr "-boldfont <font>\t <font> g" - -#~ msgid "-italicfont <font>\tUse <font> for italic text" -#~ msgstr "-italicfont <for>\tΑ̎ <font> g" - -#~ msgid "-geometry <geom>\tUse <geom> for initial geometry (also: -geom)" -#~ msgstr "-geometry <geom>\tzu <geom> g(`: -geom)" - -#~ msgid "-borderwidth <width>\tUse a border width of <width> (also: -bw)" -#~ msgstr "-borderwidth <width>\tE̕ <width> ɂ(`: -bw)" - -#~ msgid "" -#~ "-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)" -#~ msgstr "" -#~ "-scrollbarwidth <width> XN[o[̕ <width> ɂ(`: -sw)" - -#~ msgid "-menuheight <height>\tUse a menu bar height of <height> (also: -mh)" -#~ msgstr "" -#~ "-menuheight <height>\tj[o[̍ <height> ɂ(`: -mh)" - -#~ msgid "-reverse\t\tUse reverse video (also: -rv)" -#~ msgstr "-reverse\t\t]fgp(`: -rv)" - -#~ msgid "+reverse\t\tDon't use reverse video (also: +rv)" -#~ msgstr "+reverse\t\t]fgpȂ(`: +rv)" - -#~ msgid "-xrm <resource>\tSet the specified resource" -#~ msgstr "-xrm <resource>\t̃\\[Xgp" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (GTK+ version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvimɂĉ߂(GTK+o[W):\n" - -#~ msgid "-display <display>\tRun vim on <display> (also: --display)" -#~ msgstr "-display <display>\t<display> vims(`: --display)" - -#~ msgid "--role <role>\tSet a unique role to identify the main window" -#~ msgstr "--role <role>\tCEBhEʂӂȖ(role)ݒ肷" - -#~ msgid "--socketid <xid>\tOpen Vim inside another GTK widget" -#~ msgstr "--socketid <xid>\tقȂGTK widgetVimJ" - -#~ msgid "--echo-wid\t\tMake gvim echo the Window ID on stdout" -#~ msgstr "--echo-wid\t\tEBhEIDWo͂ɏo͂" - -#~ msgid "-P <parent title>\tOpen Vim inside parent application" -#~ msgstr "-P <ẽ^Cg>\tVimeAvP[V̒ŋN" - -#~ msgid "--windowid <HWND>\tOpen Vim inside another win32 widget" -#~ msgstr "--windowid <HWND>\tقȂWin32 widget̓VimJ" - -#~ msgid "No display" -#~ msgstr "fBXvC܂" - -#~ msgid ": Send failed.\n" -#~ msgstr ": MɎs܂.\n" - -#~ msgid ": Send failed. Trying to execute locally\n" -#~ msgstr ": MɎs܂. [Jł̎s݂Ă܂\n" - -#~ msgid "%d of %d edited" -#~ msgstr "%d (%d ) ̃t@CҏW܂" - -#~ msgid "No display: Send expression failed.\n" -#~ msgstr "fBXvC܂: ̑MɎs܂.\n" - -#~ msgid ": Send expression failed.\n" -#~ msgstr ": ̑MɎs܂.\n" - -#~ msgid "E543: Not a valid codepage" -#~ msgstr "E543: ȃR[hy[Wł" - -#~ msgid "E284: Cannot set IC values" -#~ msgstr "E284: IC̒lݒł܂" - -#~ msgid "E285: Failed to create input context" -#~ msgstr "E285: CvbgReLXg̍쐬Ɏs܂" - -#~ msgid "E286: Failed to open input method" -#~ msgstr "E286: Cvbg\\bh̃I[vɎs܂" - -#~ msgid "E287: Warning: Could not set destroy callback to IM" -#~ msgstr "E287: x: IM̔jR[obNݒł܂ł" - -#~ msgid "E288: input method doesn't support any style" -#~ msgstr "E288: Cvbg\\bh͂ǂȃX^CT|[g܂" - -#~ msgid "E289: input method doesn't support my preedit type" -#~ msgstr "E289: Cvbg\\bh my preedit type T|[g܂" - -#~ msgid "E843: Error while updating swap file crypt" -#~ msgstr "E843: Xbvt@C̈ÍXVɃG[܂" - -#~ msgid "" -#~ "E833: %s is encrypted and this version of Vim does not support encryption" -#~ msgstr "" -#~ "E833: %s ͂̃o[WVimŃT|[gĂȂ`ňÍĂ܂" - -#~ msgid "Swap file is encrypted: \"%s\"" -#~ msgstr "Xbvt@C͈ÍĂ܂: \"%s\"" - -#~ msgid "" -#~ "\n" -#~ "If you entered a new crypt key but did not write the text file," -#~ msgstr "" -#~ "\n" -#~ "VÍL[͂ƂɃeLXgt@CۑĂȂꍇ," - -#~ msgid "" -#~ "\n" -#~ "enter the new crypt key." -#~ msgstr "" -#~ "\n" -#~ "VÍL[͂Ă." - -#~ msgid "" -#~ "\n" -#~ "If you wrote the text file after changing the crypt key press enter" -#~ msgstr "" -#~ "\n" -#~ "ÍL[ςƂɃeLXgt@Cۑꍇ, eLXgt@C" - -#~ msgid "" -#~ "\n" -#~ "to use the same key for text file and swap file" -#~ msgstr "" -#~ "\n" -#~ "Xbvt@CɓÍL[g߂enterĂ." - -#~ msgid "Using crypt key from swap file for the text file.\n" -#~ msgstr "Xbvt@C擾ÍL[eLXgt@CɎg܂.\n" - -#~ msgid "" -#~ "\n" -#~ " [not usable with this version of Vim]" -#~ msgstr "" -#~ "\n" -#~ " [Vimo[Wł͎gpł܂]" - -#~ msgid "Tear off this menu" -#~ msgstr "̃j[" - -#~ msgid "Select Directory dialog" -#~ msgstr "fBNgI_CAO" - -#~ msgid "Save File dialog" -#~ msgstr "t@Cۑ_CAO" - -#~ msgid "Open File dialog" -#~ msgstr "t@CǍ_CAO" - -#~ msgid "E338: Sorry, no file browser in console mode" -#~ msgstr "" -#~ "E338: R\\[[hł̓t@CuEUg܂, ߂Ȃ" - -#~ msgid "Vim: preserving files...\n" -#~ msgstr "Vim: t@Cۑ...\n" - -#~ msgid "Vim: Finished.\n" -#~ msgstr "Vim: I܂.\n" - -#~ msgid "ERROR: " -#~ msgstr "G[: " - -#~ msgid "" -#~ "\n" -#~ "[bytes] total alloc-freed %<PRIu64>-%<PRIu64>, in use %<PRIu64>, peak use " -#~ "%<PRIu64>\n" -#~ msgstr "" -#~ "\n" -#~ "[(oCg)] - %<PRIu64>-%<PRIu64>, gp %<PRIu64>, s[" -#~ "N %<PRIu64>\n" - -#~ msgid "" -#~ "[calls] total re/malloc()'s %<PRIu64>, total free()'s %<PRIu64>\n" -#~ "\n" -#~ msgstr "" -#~ "[ďo] re/malloc() %<PRIu64>, free() %<PRIu64>\n" -#~ "\n" - -#~ msgid "E340: Line is becoming too long" -#~ msgstr "E340: sȂ߂܂" - -#~ msgid "E341: Internal error: lalloc(%<PRId64>, )" -#~ msgstr "E341: G[: lalloc(%<PRId64>,)" - -#~ msgid "E547: Illegal mouseshape" -#~ msgstr "E547: s 'mouseshape' ł" - -#~ msgid "Enter encryption key: " -#~ msgstr "Íp̃L[͂Ă: " - -#~ msgid "Enter same key again: " -#~ msgstr "xL[͂Ă: " - -#~ msgid "Keys don't match!" -#~ msgstr "L[v܂" - -#~ msgid "Cannot connect to Netbeans #2" -#~ msgstr "Netbeans #2 ɐڑł܂" - -#~ msgid "Cannot connect to Netbeans" -#~ msgstr "Netbeans ɐڑł܂" - -#~ msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\"" -#~ msgstr "" -#~ "E668: NetBeans̐ڑt@C̃ANZX[hɖ肪܂: \"%s\"" - -#~ msgid "read from Netbeans socket" -#~ msgstr "Netbeans ̃\\PbgǍ" - -#~ msgid "E658: NetBeans connection lost for buffer %<PRId64>" -#~ msgstr "E658: obt@ %<PRId64> NetBeans ڑ܂" - -#~ msgid "E838: netbeans is not supported with this GUI" -#~ msgstr "E838: NetBeans͂GUIɂ͑ΉĂ܂" - -#~ msgid "E511: netbeans already connected" -#~ msgstr "E511: NetBeans͊ɐڑĂ܂" - -#~ msgid "E505: %s is read-only (add ! to override)" -#~ msgstr "E505: %s ͓Ǎpł (ɂ ! lj)" - -#~ msgid "E775: Eval feature not available" -#~ msgstr "E775: ]@\\ɂȂĂ܂" - -#~ msgid "freeing %<PRId64> lines" -#~ msgstr "%<PRId64> s" - -#~ msgid "E530: Cannot change term in GUI" -#~ msgstr "E530: GUIł 'term' ύXł܂" - -#~ msgid "E531: Use \":gui\" to start the GUI" -#~ msgstr "E531: GUIX^[gɂ \":gui\" gpĂ" - -#~ msgid "E617: Cannot be changed in the GTK+ 2 GUI" -#~ msgstr "E617: GTK+2 GUIł͕ύXł܂" - -#~ msgid "E596: Invalid font(s)" -#~ msgstr "E596: ȃtHgł" - -#~ msgid "E597: can't select fontset" -#~ msgstr "E597: tHgZbgIł܂" - -#~ msgid "E598: Invalid fontset" -#~ msgstr "E598: ȃtHgZbgł" - -#~ msgid "E533: can't select wide font" -#~ msgstr "E533: ChtHgIł܂" - -#~ msgid "E534: Invalid wide font" -#~ msgstr "E534: ȃChtHgł" - -#~ msgid "E538: No mouse support" -#~ msgstr "E538: }EX̓T|[g܂" - -#~ msgid "cannot open " -#~ msgstr "J܂ " - -#~ msgid "VIM: Can't open window!\n" -#~ msgstr "VIM: EBhEJ܂!\n" - -#~ msgid "Need Amigados version 2.04 or later\n" -#~ msgstr "Amigados̃o[W 2.04ȍ~Kvł\n" - -#~ msgid "Need %s version %<PRId64>\n" -#~ msgstr "%s ̃o[W %<PRId64> Kvł\n" - -#~ msgid "Cannot open NIL:\n" -#~ msgstr "NILJ܂:\n" - -#~ msgid "Cannot create " -#~ msgstr "쐬ł܂ " - -#~ msgid "Vim exiting with %d\n" -#~ msgstr "Vim %d ŏI܂\n" - -#~ msgid "cannot change console mode ?!\n" -#~ msgstr "R\\[[hύXł܂?!\n" - -#~ msgid "mch_get_shellsize: not a console??\n" -#~ msgstr "mch_get_shellsize: R\\[ł͂Ȃ??\n" - -#~ msgid "E360: Cannot execute shell with -f option" -#~ msgstr "E360: -f IvVŃVFsł܂" - -#~ msgid "Cannot execute " -#~ msgstr "sł܂ " - -#~ msgid "shell " -#~ msgstr "VF " - -#~ msgid " returned\n" -#~ msgstr " ߂܂\n" - -#~ msgid "ANCHOR_BUF_SIZE too small." -#~ msgstr "ANCHOR_BUF_SIZE ߂܂." - -#~ msgid "I/O ERROR" -#~ msgstr "o̓G[" - -#~ msgid "Message" -#~ msgstr "bZ[W" - -#~ msgid "'columns' is not 80, cannot execute external commands" -#~ msgstr "'columns' 80ł͂Ȃ, OR}hsł܂" - -#~ msgid "E237: Printer selection failed" -#~ msgstr "E237: v^̑IɎs܂" - -#~ msgid "to %s on %s" -#~ msgstr "%s (%s )" - -#~ msgid "E613: Unknown printer font: %s" -#~ msgstr "E613: m̃v^IvVł: %s" - -#~ msgid "E238: Print error: %s" -#~ msgstr "E238: G[: %s" - -#~ msgid "Printing '%s'" -#~ msgstr "Ă܂: '%s'" - -#~ msgid "E244: Illegal charset name \"%s\" in font name \"%s\"" -#~ msgstr "E244: Zbg \"%s\" ͕sł (tHg \"%s\")" - -#~ msgid "E245: Illegal char '%c' in font name \"%s\"" -#~ msgstr "E245: '%c' ͕sȕł (tHg \"%s\")" - -#~ msgid "Vim: Double signal, exiting\n" -#~ msgstr "Vim: 2d̃VOî, I܂\n" - -#~ msgid "Vim: Caught deadly signal %s\n" -#~ msgstr "Vim: vIVOi %s m܂\n" - -#~ msgid "Vim: Caught deadly signal\n" -#~ msgstr "Vim: vIVOim܂\n" - -#~ msgid "Opening the X display took %<PRId64> msec" -#~ msgstr "XT[oւ̐ڑ %<PRId64> ~b܂" - -#~ msgid "" -#~ "\n" -#~ "Vim: Got X error\n" -#~ msgstr "" -#~ "\n" -#~ "Vim: X ̃G[o܂r\n" - -#~ msgid "Testing the X display failed" -#~ msgstr "X display ̃`FbNɎs܂" - -#~ msgid "Opening the X display timed out" -#~ msgstr "X display open ^CAEg܂" - -#~ msgid "" -#~ "\n" -#~ "Cannot execute shell sh\n" -#~ msgstr "" -#~ "\n" -#~ "sh VFsł܂\n" - -#~ msgid "" -#~ "\n" -#~ "Cannot create pipes\n" -#~ msgstr "" -#~ "\n" -#~ "pCv쐬ł܂\n" - -#~ msgid "" -#~ "\n" -#~ "Cannot fork\n" -#~ msgstr "" -#~ "\n" -#~ "fork ł܂\n" - -#~ msgid "" -#~ "\n" -#~ "Command terminated\n" -#~ msgstr "" -#~ "\n" -#~ "R}h𒆒f܂\n" - -#~ msgid "XSMP lost ICE connection" -#~ msgstr "XSMP ICEڑ܂" - -#~ msgid "Opening the X display failed" -#~ msgstr "X display open Ɏs܂" - -#~ msgid "XSMP handling save-yourself request" -#~ msgstr "XSMP save-yourselfvĂ܂" - -#~ msgid "XSMP opening connection" -#~ msgstr "XSMP ڑJnĂ܂" - -#~ msgid "XSMP ICE connection watch failed" -#~ msgstr "XSMP ICEڑs悤ł" - -#~ msgid "XSMP SmcOpenConnection failed: %s" -#~ msgstr "XSMP SmcOpenConnections܂: %s" - -#~ msgid "At line" -#~ msgstr "s" - -#~ msgid "Could not load vim32.dll!" -#~ msgstr "vim32.dll [hł܂ł" - -#~ msgid "VIM Error" -#~ msgstr "VIMG[" - -#~ msgid "Could not fix up function pointers to the DLL!" -#~ msgstr "DLL|C^擾ł܂ł" - -#~ msgid "shell returned %d" -#~ msgstr "VFR[h %d ŏI܂" - -#~ msgid "Vim: Caught %s event\n" -#~ msgstr "Vim: Cxg %s m\n" - -#~ msgid "close" -#~ msgstr "" - -#~ msgid "logoff" -#~ msgstr "OIt" - -#~ msgid "shutdown" -#~ msgstr "Vbg_E" - -#~ msgid "E371: Command not found" -#~ msgstr "E371: R}h܂" - -#~ msgid "" -#~ "VIMRUN.EXE not found in your $PATH.\n" -#~ "External commands will not pause after completion.\n" -#~ "See :help win32-vimrun for more information." -#~ msgstr "" -#~ "VIMRUN.EXE $PATH ̒Ɍ܂.\n" -#~ "OR}h̏IɈꎞ~܂.\n" -#~ "ڍׂ :help win32-vimrun QƂĂ." - -#~ msgid "Vim Warning" -#~ msgstr "Vim̌x" - -#~ msgid "Error file" -#~ msgstr "G[t@C" - -#~ msgid "E868: Error building NFA with equivalence class!" -#~ msgstr "E868: NX܂NFA\\zɎs܂!" - -#~ msgid "E878: (NFA) Could not allocate memory for branch traversal!" -#~ msgstr "E878: (NFA) ݉f̃u`ɏ\\ȃ蓖Ă܂!" - -#~ msgid "Warning: Cannot find word list \"%s_%s.spl\" or \"%s_ascii.spl\"" -#~ msgstr "" -#~ "x: PꃊXg \"%s_%s.spl\" \"%s_ascii.spl\" ͌܂" - -#~ msgid "Conversion in %s not supported" -#~ msgstr "%s ̕ϊ̓T|[gĂ܂" - -#~ msgid "E845: Insufficient memory, word list will be incomplete" -#~ msgstr "E845: Ȃ̂ŁAPꃊXg͕sSł" - -#~ msgid "E430: Tag file path truncated for %s\n" -#~ msgstr "E430: ^Ot@C̃pX %s ɐ̂Ă܂\n" - -#~ msgid "new shell started\n" -#~ msgstr "VVFN܂\n" - -#~ msgid "Used CUT_BUFFER0 instead of empty selection" -#~ msgstr "̑Ï̂CUT_BUFFER0gp܂" - -#~ msgid "No undo possible; continue anyway" -#~ msgstr "\\ȃAhD͂܂: Ƃ肠܂" - -#~ msgid "E832: Non-encrypted file has encrypted undo file: %s" -#~ msgstr "" -#~ "E832: Ít@CÍꂽAhDt@CgĂ܂: %s" - -#~ msgid "E826: Undo file decryption failed: %s" -#~ msgstr "E826: ÍꂽAhDt@C̉ǂɎs܂: %s" - -#~ msgid "E827: Undo file is encrypted: %s" -#~ msgstr "E827: AhDt@CÍĂ܂: %s" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16/32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 16/32 rbg GUI " - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 64-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 64 rbg GUI " - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 32 rbg GUI " - -#~ msgid " in Win32s mode" -#~ msgstr " in Win32s [h" - -#~ msgid " with OLE support" -#~ msgstr " with OLE T|[g" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 64-bit console version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 64 rbg R\\[ " - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit console version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 32 rbg R\\[ " - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16-bit version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 16 rbg " - -#~ msgid "" -#~ "\n" -#~ "32-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ "32 rbg MS-DOS " - -#~ msgid "" -#~ "\n" -#~ "16-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ "16 rbg MS-DOS " - -#~ msgid "" -#~ "\n" -#~ "MacOS X (unix) version" -#~ msgstr "" -#~ "\n" -#~ "MacOS X (unix) " - -#~ msgid "" -#~ "\n" -#~ "MacOS X version" -#~ msgstr "" -#~ "\n" -#~ "MacOS X " - -#~ msgid "" -#~ "\n" -#~ "MacOS version" -#~ msgstr "" -#~ "\n" -#~ "MacOS " - -#~ msgid "" -#~ "\n" -#~ "OpenVMS version" -#~ msgstr "" -#~ "\n" -#~ "OpenVMS " - -#~ msgid "" -#~ "\n" -#~ "Big version " -#~ msgstr "" -#~ "\n" -#~ "Big " - -#~ msgid "" -#~ "\n" -#~ "Normal version " -#~ msgstr "" -#~ "\n" -#~ "ʏ " - -#~ msgid "" -#~ "\n" -#~ "Small version " -#~ msgstr "" -#~ "\n" -#~ "Small " - -#~ msgid "" -#~ "\n" -#~ "Tiny version " -#~ msgstr "" -#~ "\n" -#~ "Tiny " - -#~ msgid "with GTK2-GNOME GUI." -#~ msgstr "with GTK2-GNOME GUI." - -#~ msgid "with GTK2 GUI." -#~ msgstr "with GTK2 GUI." - -#~ msgid "with X11-Motif GUI." -#~ msgstr "with X11-Motif GUI." - -#~ msgid "with X11-neXtaw GUI." -#~ msgstr "with X11-neXtaw GUI." - -#~ msgid "with X11-Athena GUI." -#~ msgstr "with X11-Athena GUI." - -#~ msgid "with Photon GUI." -#~ msgstr "with Photon GUI." - -#~ msgid "with GUI." -#~ msgstr "with GUI." - -#~ msgid "with Carbon GUI." -#~ msgstr "with Carbon GUI." - -#~ msgid "with Cocoa GUI." -#~ msgstr "with Cocoa GUI." - -#~ msgid "with (classic) GUI." -#~ msgstr "with (NVbN) GUI." - -#~ msgid " system gvimrc file: \"" -#~ msgstr " VXe gvimrc: \"" - -#~ msgid " user gvimrc file: \"" -#~ msgstr " [U gvimrc: \"" - -#~ msgid "2nd user gvimrc file: \"" -#~ msgstr " 2[U gvimrc: \"" - -#~ msgid "3rd user gvimrc file: \"" -#~ msgstr " 3[U gvimrc: \"" - -#~ msgid " system menu file: \"" -#~ msgstr " VXej[: \"" - -#~ msgid "Compiler: " -#~ msgstr "RpC: " - -#~ msgid "menu Help->Orphans for information " -#~ msgstr "ڍׂ̓j[ wvǎ QƂĉ " - -#~ msgid "Running modeless, typed text is inserted" -#~ msgstr "[hŎs, ^Cv}܂" - -#~ msgid "menu Edit->Global Settings->Toggle Insert Mode " -#~ msgstr "j[ ҏWS̐ݒ聨}(S)[hؑ " - -#~ msgid " for two modes " -#~ msgstr " Ń[hL " - -#~ msgid "menu Edit->Global Settings->Toggle Vi Compatible" -#~ msgstr "j[ ҏWS̐ݒ聨Vi݊[hؑ " - -#~ msgid " for Vim defaults " -#~ msgstr " VimƂē " - -#~ msgid "WARNING: Windows 95/98/ME detected" -#~ msgstr " x: Windows 95/98/Me o " - -#~ msgid "type :help windows95<Enter> for info on this" -#~ msgstr " ڍׂȏ :help windows95<Enter> " - -#~ msgid "Edit with &multiple Vims" -#~ msgstr "VimŕҏW (&M)" - -#~ msgid "Edit with single &Vim" -#~ msgstr "1VimŕҏW (&V)" - -#~ msgid "Diff with Vim" -#~ msgstr "Vimō\\" - -#~ msgid "Edit with &Vim" -#~ msgstr "VimŕҏW (&V)" - -#~ msgid "Edit with existing Vim - " -#~ msgstr "NςVimŕҏW - " - -#~ msgid "Edits the selected file(s) with Vim" -#~ msgstr "It@CVimŕҏW" - -#~ msgid "Error creating process: Check if gvim is in your path!" -#~ msgstr "vZX̍쐬Ɏs: gvimϐPATHɂ邩mFĂ!" - -#~ msgid "gvimext.dll error" -#~ msgstr "gvimext.dll G[" - -#~ msgid "Path length too long!" -#~ msgstr "pX܂!" - -#~ msgid "E234: Unknown fontset: %s" -#~ msgstr "E234: m̃tHgZbg: %s" - -#~ msgid "E235: Unknown font: %s" -#~ msgstr "E235: m̃tHg: %s" - -#~ msgid "E236: Font \"%s\" is not fixed-width" -#~ msgstr "E236: tHg \"%s\" ͌Œ蕝ł͂܂" - -#~ msgid "E448: Could not load library function %s" -#~ msgstr "E448: Ců %s [hł܂ł" - -#~ msgid "E26: Hebrew cannot be used: Not enabled at compile time\n" -#~ msgstr "E26: wuC͎gps\\ł: RpCɖɂĂ܂\n" - -#~ msgid "E27: Farsi cannot be used: Not enabled at compile time\n" -#~ msgstr "E27: yVA͎gps\\ł: RpCɖɂĂ܂\n" - -#~ msgid "E800: Arabic cannot be used: Not enabled at compile time\n" -#~ msgstr "" -#~ "E800: ArA͎gps\\ł: RpCɖɂĂ܂\n" - -#~ msgid "E247: no registered server named \"%s\"" -#~ msgstr "E247: %s ƂO̓o^ꂽT[o͂܂" - -#~ msgid "E233: cannot open display" -#~ msgstr "E233: fBXvCJ܂" - -#~ msgid "E449: Invalid expression received" -#~ msgstr "E449: Ȏ܂" - -#~ msgid "E463: Region is guarded, cannot modify" -#~ msgstr "E463: ̈悪ی삳Ă̂, ύXł܂" - -#~ msgid "E744: NetBeans does not allow changes in read-only files" -#~ msgstr "E744: NetBeans ͓Ǎpt@CύX邱Ƃ܂" - -#~ msgid "Need encryption key for \"%s\"" -#~ msgstr "ÍL[Kvł: \"%s\"" - -#~ msgid "empty keys are not allowed" -#~ msgstr "̃L[͋Ă܂" - -#~ msgid "dictionary is locked" -#~ msgstr "̓bNĂ܂" - -#~ msgid "list is locked" -#~ msgstr "Xg̓bNĂ܂" - -#~ msgid "failed to add key '%s' to dictionary" -#~ msgstr "ɃL[ '%s' lĵɎs܂" - -#~ msgid "index must be int or slice, not %s" -#~ msgstr "CfbNX %s ł͂ȂXCXɂĂ" - -#~ msgid "expected str() or unicode() instance, but got %s" -#~ msgstr "" -#~ "str() unicode() ̃CX^X҂Ă̂ %s ł" - -#~ msgid "expected bytes() or str() instance, but got %s" -#~ msgstr "bytes() str() ̃CX^X҂Ă̂ %s ł" - -#~ msgid "" -#~ "expected int(), long() or something supporting coercing to long(), but " -#~ "got %s" -#~ msgstr "long() ֕ϊ\\Ȃ̂҂Ă̂ %s ł" - -#~ msgid "expected int() or something supporting coercing to int(), but got %s" -#~ msgstr "int() ֕ϊ\\Ȃ̂҂Ă̂ %s ł" - -#~ msgid "value is too large to fit into C int type" -#~ msgstr "C int ^ƂĂ͒l傫߂܂" - -#~ msgid "value is too small to fit into C int type" -#~ msgstr "C int ^ƂĂ͒l߂܂" - -#~ msgid "number must be greater then zero" -#~ msgstr "l 0 傫ȂȂ܂" - -#~ msgid "number must be greater or equal to zero" -#~ msgstr "l 0 ȏłȂȂ܂" - -#~ msgid "can't delete OutputObject attributes" -#~ msgstr "OutputObject܂" - -#~ msgid "invalid attribute: %s" -#~ msgstr "ȑł: %s" - -#~ msgid "E264: Python: Error initialising I/O objects" -#~ msgstr "E264: Python: I/OIuWFNg̏G[" - -#~ msgid "failed to change directory" -#~ msgstr "̕ύXɎs܂" - -#~ msgid "expected 3-tuple as imp.find_module() result, but got %s" -#~ msgstr "imp.find_module() %s Ԃ܂ (Ғl: 2 vf̃^v)" - -#~ msgid "" -#~ "expected 3-tuple as imp.find_module() result, but got tuple of size %d" -#~ msgstr "impl.find_module() %d vf̃^vԂ܂ (Ғl: 2)" - -#~ msgid "internal error: imp.find_module returned tuple with NULL" -#~ msgstr "G[: imp.find_module NULL ܂ރ^vԂ܂" - -#~ msgid "cannot delete vim.Dictionary attributes" -#~ msgstr "vim.Dictionary͏܂" - -#~ msgid "cannot modify fixed dictionary" -#~ msgstr "Œ肳ꂽ͕ύXł܂" - -#~ msgid "cannot set attribute %s" -#~ msgstr " %s ͐ݒł܂" - -#~ msgid "hashtab changed during iteration" -#~ msgstr "Ce[V hashtab ύX܂" - -#~ msgid "expected sequence element of size 2, but got sequence of size %d" -#~ msgstr "V[PX̗vfɂ 2 ҂Ă܂ %d ł" - -#~ msgid "list constructor does not accept keyword arguments" -#~ msgstr "Xg̃RXgN^̓L[[ht܂" - -#~ msgid "list index out of range" -#~ msgstr "Xg͈͊ÕCfbNXł" - -#~ msgid "internal error: failed to get vim list item %d" -#~ msgstr "G[: vim̃Xgvf %d ̎擾Ɏs܂" - -#~ msgid "failed to add item to list" -#~ msgstr "Xgւ̗vfljɎs܂" - -#~ msgid "internal error: no vim list item %d" -#~ msgstr "G[: vim̃Xgvf %d ͂܂" - -#~ msgid "internal error: failed to add item to list" -#~ msgstr "G[: Xgւ̗vfljɎs܂" - -#~ msgid "cannot delete vim.List attributes" -#~ msgstr "vim.List ͏܂" - -#~ msgid "cannot modify fixed list" -#~ msgstr "Œ肳ꂽXg͕ύXł܂" - -#~ msgid "unnamed function %s does not exist" -#~ msgstr " %s ݂͑܂" - -#~ msgid "function %s does not exist" -#~ msgstr " %s ܂" - -#~ msgid "function constructor does not accept keyword arguments" -#~ msgstr "̃RXgN^̓L[[ht܂" - -#~ msgid "failed to run function %s" -#~ msgstr " %s ̎sɎs܂" - -#~ msgid "problem while switching windows" -#~ msgstr "EBhE؊ɖ肪܂" - -#~ msgid "unable to unset global option %s" -#~ msgstr "O[oIvV %s ̐ݒ͂ł܂" - -#~ msgid "unable to unset option %s which does not have global value" -#~ msgstr "O[oȒl̖IvV %s ̐ݒ͂ł܂" - -#~ msgid "attempt to refer to deleted tab page" -#~ msgstr "폜ꂽ^uQƂ悤Ƃ܂" - -#~ msgid "no such tab page" -#~ msgstr "̂悤ȃ^uy[W͂܂" - -#~ msgid "attempt to refer to deleted window" -#~ msgstr "폜ꂽEBhEQƂ悤Ƃ܂" - -#~ msgid "readonly attribute: buffer" -#~ msgstr "Ǎp: obt@[" - -#~ msgid "cursor position outside buffer" -#~ msgstr "J[\\ʒuobt@̊Oł" - -#~ msgid "no such window" -#~ msgstr "̂悤ȃEBhE͂܂" - -#~ msgid "attempt to refer to deleted buffer" -#~ msgstr "폜ꂽobt@QƂ悤Ƃ܂" - -#~ msgid "failed to rename buffer" -#~ msgstr "obt@̕ύXɎs܂" - -#~ msgid "mark name must be a single character" -#~ msgstr "}[N1̃At@xbgłȂȂ܂" - -#~ msgid "expected vim.Buffer object, but got %s" -#~ msgstr "vim.BufferIuWFNg҂Ă̂ %s ł" - -#~ msgid "failed to switch to buffer %d" -#~ msgstr "w肳ꂽobt@ %d ւ̐ւɎs܂" - -#~ msgid "expected vim.Window object, but got %s" -#~ msgstr "vim.WindowIuWFNg҂Ă̂ %s ł" - -#~ msgid "failed to find window in the current tab page" -#~ msgstr "݂̃^uɂ͎w肳ꂽEBhE܂ł" - -#~ msgid "did not switch to the specified window" -#~ msgstr "w肳ꂽEBhEɐւ܂ł" - -#~ msgid "expected vim.TabPage object, but got %s" -#~ msgstr "vim.TabPageIuWFNg҂Ă̂ %s ł" - -#~ msgid "did not switch to the specified tab page" -#~ msgstr "w肳ꂽ^uy[Wɐւ܂ł" - -#~ msgid "failed to run the code" -#~ msgstr "R[h̎sɎs܂" - -#~ msgid "E858: Eval did not return a valid python object" -#~ msgstr "E858: ]͗LpythonIuWFNgԂ܂ł" - -#~ msgid "E859: Failed to convert returned python object to vim value" -#~ msgstr "E859: ԂꂽpythonIuWFNgvim̒lɕϊł܂ł" - -#~ msgid "unable to convert %s to vim dictionary" -#~ msgstr "%s vim̎^ɕϊł܂" - -#~ msgid "unable to convert %s to vim structure" -#~ msgstr "%s vim̍\\̂ɕϊł܂" - -#~ msgid "internal error: NULL reference passed" -#~ msgstr "G[: NULLQƂn܂" - -#~ msgid "internal error: invalid value type" -#~ msgstr "G[: Ȓl^ł" - -#~ msgid "" -#~ "Failed to set path hook: sys.path_hooks is not a list\n" -#~ "You should now do the following:\n" -#~ "- append vim.path_hook to sys.path_hooks\n" -#~ "- append vim.VIM_SPECIAL_PATH to sys.path\n" -#~ msgstr "" -#~ "pXtbN̐ݒɎs܂: sys.path_hooks Xgł͂܂\n" -#~ "ɉL{Ă:\n" -#~ "- vim.path_hooks sys.path_hooks ֒lj\n" -#~ "- vim.VIM_SPECIAL_PATH sys.path ֒lj\n" - -#~ msgid "" -#~ "Failed to set path: sys.path is not a list\n" -#~ "You should now append vim.VIM_SPECIAL_PATH to sys.path" -#~ msgstr "" -#~ "pX̐ݒɎs܂: sys.path Xgł͂܂\n" -#~ " vim.VIM_SPECIAL_PATH sys.path ɒljĂ" diff --git a/src/nvim/po/ko.UTF-8.po b/src/nvim/po/ko.UTF-8.po index 3ed659208b..7afa507edb 100644 --- a/src/nvim/po/ko.UTF-8.po +++ b/src/nvim/po/ko.UTF-8.po @@ -2648,11 +2648,6 @@ msgstr "E49: 스크롤 크기가 잘못되었습니다" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/ko.po b/src/nvim/po/ko.po deleted file mode 100644 index e97e90642c..0000000000 --- a/src/nvim/po/ko.po +++ /dev/null @@ -1,7854 +0,0 @@ -# Korean translation for Vim -# -# FIRST AUTHOR SungHyun Nam <goweol@gmail.com>, 2000-2011 -# -# Generated from ko.UTF-8, DO NOT EDIT. -# -msgid "" -msgstr "" -"Project-Id-Version: vim 7.3\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-26 14:21+0200\n" -"PO-Revision-Date: 2010-02-18 09:49+0900\n" -"Last-Translator: SungHyun Nam <goweol@gmail.com>\n" -"Language-Team: GTP Korean <gnome-kr-translation@gnome.or.kr>\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=euc-kr\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../api/private/helpers.c:201 -#, fuzzy -msgid "Unable to get option value" -msgstr "ɼ ڿ " - -#: ../api/private/helpers.c:204 -msgid "internal error: unknown option type" -msgstr "" - -#: ../buffer.c:92 -msgid "[Location List]" -msgstr "[ġ ]" - -#: ../buffer.c:93 -msgid "[Quickfix List]" -msgstr "[Quickfix ]" - -#: ../buffer.c:94 -#, fuzzy -msgid "E855: Autocommands caused command to abort" -msgstr "E812: Autocommand ۳ ̸ ٲپϴ" - -#: ../buffer.c:135 -msgid "E82: Cannot allocate any buffer, exiting..." -msgstr "E82: ۸ Ҵ ϴ..." - -#: ../buffer.c:138 -msgid "E83: Cannot allocate buffer, using other one..." -msgstr "E83: ۸ Ҵ ٸ մϴ..." - -#: ../buffer.c:763 -msgid "E515: No buffers were unloaded" -msgstr "E515: ۰ ϴ" - -#: ../buffer.c:765 -msgid "E516: No buffers were deleted" -msgstr "E516: ۰ ϴ" - -#: ../buffer.c:767 -msgid "E517: No buffers were wiped out" -msgstr "E517: ۰ ϴ" - -#: ../buffer.c:772 -msgid "1 buffer unloaded" -msgstr " ϴ" - -#: ../buffer.c:774 -#, c-format -msgid "%d buffers unloaded" -msgstr " %d ϴ" - -#: ../buffer.c:777 -msgid "1 buffer deleted" -msgstr " ϴ" - -#: ../buffer.c:779 -#, c-format -msgid "%d buffers deleted" -msgstr " %d ϴ" - -#: ../buffer.c:782 -msgid "1 buffer wiped out" -msgstr " ϴ" - -#: ../buffer.c:784 -#, c-format -msgid "%d buffers wiped out" -msgstr " %d ϴ" - -#: ../buffer.c:806 -msgid "E90: Cannot unload last buffer" -msgstr "E90: ۸ ϴ" - -#: ../buffer.c:874 -msgid "E84: No modified buffer found" -msgstr "E84: ٲ ۸ ã ϴ" - -#. back where we started, didn't find anything. -#: ../buffer.c:903 -msgid "E85: There is no listed buffer" -msgstr "E85: ۰ ϴ" - -#: ../buffer.c:913 -#, c-format -msgid "E86: Buffer %<PRId64> does not exist" -msgstr "E86: %<PRId64>() ʽϴ" - -#: ../buffer.c:915 -msgid "E87: Cannot go beyond last buffer" -msgstr "E87: Դϴ" - -#: ../buffer.c:917 -msgid "E88: Cannot go before first buffer" -msgstr "E88: ù ° Դϴ" - -#: ../buffer.c:945 -#, c-format -msgid "" -"E89: No write since last change for buffer %<PRId64> (add ! to override)" -msgstr "" -"E89: %<PRId64>() ģ ʾҽϴ (" -" ! ϱ)" - -#. wrap around (may cause duplicates) -#: ../buffer.c:1423 -msgid "W14: Warning: List of file names overflow" -msgstr "W14: : ̸ ƽϴ" - -#: ../buffer.c:1555 ../quickfix.c:3361 -#, c-format -msgid "E92: Buffer %<PRId64> not found" -msgstr "E92: %<PRId64>() ã ϴ" - -#: ../buffer.c:1798 -#, c-format -msgid "E93: More than one match for %s" -msgstr "E93: %s() ϳ ̻ ãҽϴ" - -#: ../buffer.c:1800 -#, c-format -msgid "E94: No matching buffer for %s" -msgstr "E94: %s ´ ۰ ϴ" - -#: ../buffer.c:2161 -#, c-format -msgid "line %<PRId64>" -msgstr "%<PRId64> " - -#: ../buffer.c:2233 -msgid "E95: Buffer with this name already exists" -msgstr "E95: ̸ ۰ ̹ ֽϴ" - -#: ../buffer.c:2498 -msgid " [Modified]" -msgstr " [ٲ]" - -#: ../buffer.c:2501 -msgid "[Not edited]" -msgstr "[ġ ʾ]" - -#: ../buffer.c:2504 -msgid "[New file]" -msgstr "[ ]" - -#: ../buffer.c:2505 -msgid "[Read errors]" -msgstr "[б ]" - -#: ../buffer.c:2506 ../buffer.c:3217 ../fileio.c:1807 ../screen.c:4895 -msgid "[RO]" -msgstr "[б ]" - -#: ../buffer.c:2507 ../fileio.c:1807 -msgid "[readonly]" -msgstr "[б ]" - -#: ../buffer.c:2524 -#, c-format -msgid "1 line --%d%%--" -msgstr "1 --%d%%--" - -#: ../buffer.c:2526 -#, c-format -msgid "%<PRId64> lines --%d%%--" -msgstr "%<PRId64> --%d%%--" - -#: ../buffer.c:2530 -#, c-format -msgid "line %<PRId64> of %<PRId64> --%d%%-- col " -msgstr "%<PRId64> / %<PRId64> --%d%%-- ĭ " - -#: ../buffer.c:2632 ../buffer.c:4292 ../memline.c:1554 -msgid "[No Name]" -msgstr "[̸ ]" - -#. must be a help buffer -#: ../buffer.c:2667 -msgid "help" -msgstr "" - -#: ../buffer.c:3225 ../screen.c:4883 -msgid "[Help]" -msgstr "[]" - -#: ../buffer.c:3254 ../screen.c:4887 -msgid "[Preview]" -msgstr "[̸ ]" - -#: ../buffer.c:3528 -msgid "All" -msgstr "" - -#: ../buffer.c:3528 -msgid "Bot" -msgstr "ٴ" - -#: ../buffer.c:3531 -msgid "Top" -msgstr "" - -#: ../buffer.c:4244 -msgid "" -"\n" -"# Buffer list:\n" -msgstr "" -"\n" -"# :\n" - -#: ../buffer.c:4289 -msgid "[Scratch]" -msgstr "[Scratch]" - -#: ../buffer.c:4529 -msgid "" -"\n" -"--- Signs ---" -msgstr "" -"\n" -"--- ȣ ---" - -#: ../buffer.c:4538 -#, c-format -msgid "Signs for %s:" -msgstr "%s ȣ:" - -#: ../buffer.c:4543 -#, c-format -msgid " line=%<PRId64> id=%d name=%s" -msgstr " =%<PRId64> id=%d ̸=%s" - -#: ../cursor_shape.c:68 -msgid "E545: Missing colon" -msgstr "E545: ݷ ϴ" - -#: ../cursor_shape.c:70 ../cursor_shape.c:94 -msgid "E546: Illegal mode" -msgstr "E546: ̻ " - -#: ../cursor_shape.c:134 -msgid "E548: digit expected" -msgstr "E548: ڰ ʿմϴ" - -#: ../cursor_shape.c:138 -msgid "E549: Illegal percentage" -msgstr "E549: ̻ " - -#: ../diff.c:146 -#, c-format -msgid "E96: Can not diff more than %<PRId64> buffers" -msgstr "E96: %<PRId64> ̻ ۿ ؼ diff ϴ" - -#: ../diff.c:753 -msgid "E810: Cannot read or write temp files" -msgstr "E810: ӽ аų ϴ" - -#: ../diff.c:755 -msgid "E97: Cannot create diffs" -msgstr "E97: diff ϴ" - -#: ../diff.c:966 -msgid "E816: Cannot read patch output" -msgstr "E816: patch ϴ" - -#: ../diff.c:1220 -msgid "E98: Cannot read diff output" -msgstr "E98: diff ϴ" - -#: ../diff.c:2081 -msgid "E99: Current buffer is not in diff mode" -msgstr "E99: ۴ diff ° ƴմϴ" - -#: ../diff.c:2100 -msgid "E793: No other buffer in diff mode is modifiable" -msgstr "E793: diff ۴ ϴ" - -#: ../diff.c:2102 -msgid "E100: No other buffer in diff mode" -msgstr "E100: ٸ ߿ diff ϴ" - -#: ../diff.c:2112 -msgid "E101: More than two buffers in diff mode, don't know which one to use" -msgstr "" -"E101: ΰ ̻ ۰ diff ¿ ϴ" - -#: ../diff.c:2141 -#, c-format -msgid "E102: Can't find buffer \"%s\"" -msgstr "E102: \"%s\" ۸ ã ϴ" - -#: ../diff.c:2152 -#, c-format -msgid "E103: Buffer \"%s\" is not in diff mode" -msgstr "E103: \"%s\" ۴ diff ° ƴմϴ" - -#: ../diff.c:2193 -msgid "E787: Buffer changed unexpectedly" -msgstr "E787: ۰ ̿ ٲϴ" - -#: ../digraph.c:1598 -msgid "E104: Escape not allowed in digraph" -msgstr "E104: digraph Escape ϴ" - -#: ../digraph.c:1760 -msgid "E544: Keymap file not found" -msgstr "E544: Ű ã ϴ" - -#: ../digraph.c:1785 -msgid "E105: Using :loadkeymap not in a sourced file" -msgstr "E105: ҷ Ͽ :loadkeymap ʾҽϴ" - -#: ../digraph.c:1821 -msgid "E791: Empty keymap entry" -msgstr "E791: Ű Ʈ " - -#: ../edit.c:82 -msgid " Keyword completion (^N^P)" -msgstr " ϼ (^N^P)" - -#. ctrl_x_mode == 0, ^P/^N compl. -#: ../edit.c:83 -msgid " ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" -msgstr " ^X (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" - -#: ../edit.c:85 -msgid " Whole line completion (^L^N^P)" -msgstr " ü ϼ (^L^N^P)" - -#: ../edit.c:86 -msgid " File name completion (^F^N^P)" -msgstr " ̸ ϼ (^F^N^P)" - -#: ../edit.c:87 -msgid " Tag completion (^]^N^P)" -msgstr " ± ϼ (^]^N^P)" - -#: ../edit.c:88 -msgid " Path pattern completion (^N^P)" -msgstr " ϼ (^N^P)" - -#: ../edit.c:89 -msgid " Definition completion (^D^N^P)" -msgstr " ϼ (^D^N^P)" - -#: ../edit.c:91 -msgid " Dictionary completion (^K^N^P)" -msgstr " Dictionary ϼ (^K^N^P)" - -#: ../edit.c:92 -msgid " Thesaurus completion (^T^N^P)" -msgstr " ϼ (^T^N^P)" - -#: ../edit.c:93 -msgid " Command-line completion (^V^N^P)" -msgstr " ϼ (^V^N^P)" - -#: ../edit.c:94 -msgid " User defined completion (^U^N^P)" -msgstr " ϼ (^U^N^P)" - -#: ../edit.c:95 -msgid " Omni completion (^O^N^P)" -msgstr " Omni ϼ (^O^N^P)" - -#: ../edit.c:96 -msgid " Spelling suggestion (s^N^P)" -msgstr " ܾ (s^N^P)" - -#: ../edit.c:97 -msgid " Keyword Local completion (^N^P)" -msgstr " ϼ (^N^P)" - -#: ../edit.c:100 -msgid "Hit end of paragraph" -msgstr "ܶ " - -#: ../edit.c:101 -msgid "E839: Completion function changed window" -msgstr "E839: Completion â ٲپϴ" - -#: ../edit.c:102 -msgid "E840: Completion function deleted text" -msgstr "E840: Completion ڿ ϴ" - -#: ../edit.c:1847 -msgid "'dictionary' option is empty" -msgstr "'dictionary' ɼ ϴ" - -#: ../edit.c:1848 -msgid "'thesaurus' option is empty" -msgstr "'thesaurus' ɼ ϴ" - -#: ../edit.c:2655 -#, c-format -msgid "Scanning dictionary: %s" -msgstr " ã : %s" - -#: ../edit.c:3079 -msgid " (insert) Scroll (^E/^Y)" -msgstr " (ֱ) ũ (^E/^Y)" - -#: ../edit.c:3081 -msgid " (replace) Scroll (^E/^Y)" -msgstr " (ٲ) ũ (^E/^Y)" - -#: ../edit.c:3587 -#, c-format -msgid "Scanning: %s" -msgstr "ã : %s" - -#: ../edit.c:3614 -msgid "Scanning tags." -msgstr "± ã ." - -#: ../edit.c:4519 -msgid " Adding" -msgstr " ϱ" - -#. showmode might reset the internal line pointers, so it must -#. * be called before line = ml_get(), or when this address is no -#. * longer needed. -- Acevedo. -#. -#: ../edit.c:4562 -msgid "-- Searching..." -msgstr "-- ã ..." - -#: ../edit.c:4618 -msgid "Back at original" -msgstr " " - -#: ../edit.c:4621 -msgid "Word from other line" -msgstr "ٸ ٿ " - -#: ../edit.c:4624 -msgid "The only match" -msgstr "The only match" - -#: ../edit.c:4680 -#, c-format -msgid "match %d of %d" -msgstr "match %d of %d" - -#: ../edit.c:4684 -#, c-format -msgid "match %d" -msgstr "match %d" - -#: ../eval.c:137 -msgid "E18: Unexpected characters in :let" -msgstr "E18: ':let' " - -#: ../eval.c:138 -#, c-format -msgid "E684: list index out of range: %<PRId64>" -msgstr "E684: ȣ : %<PRId64>" - -#: ../eval.c:139 -#, c-format -msgid "E121: Undefined variable: %s" -msgstr "E121: : %s" - -#: ../eval.c:140 -msgid "E111: Missing ']'" -msgstr "E111: ']' ϴ" - -#: ../eval.c:141 -#, c-format -msgid "E686: Argument of %s must be a List" -msgstr "E686: %s ڴ List̾ մϴ" - -#: ../eval.c:143 -#, c-format -msgid "E712: Argument of %s must be a List or Dictionary" -msgstr "E712: %s ڴ List Ȥ Dictionary մϴ" - -#: ../eval.c:144 -msgid "E713: Cannot use empty key for Dictionary" -msgstr "E713: Dictionary Ű ϴ" - -#: ../eval.c:145 -msgid "E714: List required" -msgstr "E714: List ʿմϴ" - -#: ../eval.c:146 -msgid "E715: Dictionary required" -msgstr "E715: Dictionary ʿմϴ" - -#: ../eval.c:147 -#, c-format -msgid "E118: Too many arguments for function: %s" -msgstr "E118: Լ ʹ ѱ: %s" - -#: ../eval.c:148 -#, c-format -msgid "E716: Key not present in Dictionary: %s" -msgstr "E716: Dictionary Ű : %s" - -#: ../eval.c:150 -#, c-format -msgid "E122: Function %s already exists, add ! to replace it" -msgstr "E122: Լ %s() ̹ ֽϴ, ٲٷ ! ϼ" - -#: ../eval.c:151 -msgid "E717: Dictionary entry already exists" -msgstr "E717: ̹ Dictionary ֽϴ" - -#: ../eval.c:152 -msgid "E718: Funcref required" -msgstr "E718: Funcref ʿմϴ" - -#: ../eval.c:153 -msgid "E719: Cannot use [:] with a Dictionary" -msgstr "E719: Dictionary [:] ϴ" - -#: ../eval.c:154 -#, c-format -msgid "E734: Wrong variable type for %s=" -msgstr "E734: %s= ߸ " - -#: ../eval.c:155 -#, c-format -msgid "E130: Unknown function: %s" -msgstr "E130: Լ: %s" - -#: ../eval.c:156 -#, c-format -msgid "E461: Illegal variable name: %s" -msgstr "E461: : %s" - -#: ../eval.c:157 -msgid "E806: using Float as a String" -msgstr "E806: Float String " - -#: ../eval.c:1830 -msgid "E687: Less targets than List items" -msgstr "E687: List " - -#: ../eval.c:1834 -msgid "E688: More targets than List items" -msgstr "E688: List " - -#: ../eval.c:1906 -msgid "Double ; in list of variables" -msgstr " Ͽ ߺ ;" - -#: ../eval.c:2078 -#, c-format -msgid "E738: Can't list variables for %s" -msgstr "E738: %s ϴ" - -#: ../eval.c:2391 -msgid "E689: Can only index a List or Dictionary" -msgstr "E689: List Dictionary ֽϴ" - -#: ../eval.c:2396 -msgid "E708: [:] must come last" -msgstr "E708: [:] ġؾ մϴ" - -#: ../eval.c:2439 -msgid "E709: [:] requires a List value" -msgstr "E709: [:] List ʿմϴ" - -#: ../eval.c:2674 -msgid "E710: List value has more items than target" -msgstr "E710: List ֽϴ" - -#: ../eval.c:2678 -msgid "E711: List value has not enough items" -msgstr "E711: List ʽϴ" - -#: ../eval.c:2867 -msgid "E690: Missing \"in\" after :for" -msgstr "E690: :for ڿ \"in\" ϴ" - -#: ../eval.c:3063 -#, c-format -msgid "E107: Missing parentheses: %s" -msgstr "E107: ȣ : %s" - -#: ../eval.c:3263 -#, c-format -msgid "E108: No such variable: \"%s\"" -msgstr "E108: ̷ : \"%s\"" - -#: ../eval.c:3333 -msgid "E743: variable nested too deep for (un)lock" -msgstr "E743: ()ϱ ʹ øǾϴ" - -#: ../eval.c:3630 -msgid "E109: Missing ':' after '?'" -msgstr "E109: '?' ڿ ':' ϴ" - -#: ../eval.c:3893 -msgid "E691: Can only compare List with List" -msgstr "E691: List List ֽϴ" - -#: ../eval.c:3895 -msgid "E692: Invalid operation for Lists" -msgstr "E692: List ߸ " - -#: ../eval.c:3915 -msgid "E735: Can only compare Dictionary with Dictionary" -msgstr "E735: Dictionary Dictionary ֽϴ" - -#: ../eval.c:3917 -msgid "E736: Invalid operation for Dictionary" -msgstr "E736: Dictionary ߸ " - -#: ../eval.c:3932 -msgid "E693: Can only compare Funcref with Funcref" -msgstr "E693: Funcref Funcref ֽϴ" - -#: ../eval.c:3934 -msgid "E694: Invalid operation for Funcrefs" -msgstr "E694: Funcrefs ߸ " - -#: ../eval.c:4277 -msgid "E804: Cannot use '%' with Float" -msgstr "E804: Float '%' ϴ" - -#: ../eval.c:4478 -msgid "E110: Missing ')'" -msgstr "E110: ')' ϴ" - -#: ../eval.c:4609 -msgid "E695: Cannot index a Funcref" -msgstr "E695: Funcref ϴ" - -#: ../eval.c:4839 -#, c-format -msgid "E112: Option name missing: %s" -msgstr "E112: ɼ ̸ : %s" - -#: ../eval.c:4855 -#, c-format -msgid "E113: Unknown option: %s" -msgstr "E113: ɼ: %s" - -#: ../eval.c:4904 -#, c-format -msgid "E114: Missing quote: %s" -msgstr "E114: ǥ : %s" - -#: ../eval.c:5020 -#, c-format -msgid "E115: Missing quote: %s" -msgstr "E115: ǥ : %s" - -#: ../eval.c:5084 -#, c-format -msgid "E696: Missing comma in List: %s" -msgstr "E696: List : %s" - -#: ../eval.c:5091 -#, c-format -msgid "E697: Missing end of List ']': %s" -msgstr "E697: List ']' : %s" - -#: ../eval.c:6475 -#, c-format -msgid "E720: Missing colon in Dictionary: %s" -msgstr "E720: Dictionary ݷ : %s" - -#: ../eval.c:6499 -#, c-format -msgid "E721: Duplicate key in Dictionary: \"%s\"" -msgstr "E721: Dictionary ߺ Ű: \"%s\"" - -#: ../eval.c:6517 -#, c-format -msgid "E722: Missing comma in Dictionary: %s" -msgstr "E722: Dictionary : %s" - -#: ../eval.c:6524 -#, c-format -msgid "E723: Missing end of Dictionary '}': %s" -msgstr "E723: Dictionary '}' : %s" - -#: ../eval.c:6555 -msgid "E724: variable nested too deep for displaying" -msgstr "E724: ǥϱ ʹ øǾϴ" - -#: ../eval.c:7188 -#, c-format -msgid "E740: Too many arguments for function %s" -msgstr "E740: Լ %s ʹ ڰ Ǿϴ" - -#: ../eval.c:7190 -#, c-format -msgid "E116: Invalid arguments for function %s" -msgstr "E116: Լ %s() ߸ ڰ Ѱϴ" - -#: ../eval.c:7377 -#, c-format -msgid "E117: Unknown function: %s" -msgstr "E117: Լ: %s" - -#: ../eval.c:7383 -#, c-format -msgid "E119: Not enough arguments for function: %s" -msgstr "E119: Լ ѱ: %s" - -#: ../eval.c:7387 -#, c-format -msgid "E120: Using <SID> not in a script context: %s" -msgstr "E120: ũƮ ؽƮ ۿ <SID> : %s" - -#: ../eval.c:7391 -#, c-format -msgid "E725: Calling dict function without Dictionary: %s" -msgstr "E725: Dictionary Լ ҷ: %s" - -#: ../eval.c:7453 -msgid "E808: Number or Float required" -msgstr "E808: Number Ȥ Float ʿմϴ" - -#: ../eval.c:7503 -#, fuzzy -msgid "add() argument" -msgstr "-c " - -#: ../eval.c:7907 -msgid "E699: Too many arguments" -msgstr "E699: ʹ " - -#: ../eval.c:8073 -msgid "E785: complete() can only be used in Insert mode" -msgstr "E785: complete() Է 忡 ֽϴ" - -#: ../eval.c:8156 -msgid "&Ok" -msgstr "Ȯ(&O)" - -#: ../eval.c:8676 -#, c-format -msgid "E737: Key already exists: %s" -msgstr "E737: Ű ̹ : %s" - -#: ../eval.c:8692 -#, fuzzy -msgid "extend() argument" -msgstr "--cmd " - -#: ../eval.c:8915 -#, fuzzy -msgid "map() argument" -msgstr "-c " - -#: ../eval.c:8916 -#, fuzzy -msgid "filter() argument" -msgstr "-c " - -#: ../eval.c:9229 -#, c-format -msgid "+-%s%3ld lines: " -msgstr "+-%s%3ld : " - -#: ../eval.c:9291 -#, c-format -msgid "E700: Unknown function: %s" -msgstr "E700: Լ: %s" - -#: ../eval.c:10729 -msgid "called inputrestore() more often than inputsave()" -msgstr "inputrestore() inputsave() ҷϴ" - -#: ../eval.c:10771 -#, fuzzy -msgid "insert() argument" -msgstr "-c " - -#: ../eval.c:10841 -msgid "E786: Range not allowed" -msgstr "E786: ʽϴ" - -#: ../eval.c:11140 -msgid "E701: Invalid type for len()" -msgstr "E701: len() ߸ " - -#: ../eval.c:11980 -msgid "E726: Stride is zero" -msgstr "E726: Stride 0" - -#: ../eval.c:11982 -msgid "E727: Start past end" -msgstr "E727: ġ ħ" - -#: ../eval.c:12024 ../eval.c:15297 -msgid "<empty>" -msgstr "<>" - -#: ../eval.c:12282 -#, fuzzy -msgid "remove() argument" -msgstr "--cmd " - -#: ../eval.c:12466 -msgid "E655: Too many symbolic links (cycle?)" -msgstr "E655: ʹ ɺ ũ (ݺȯ?)" - -#: ../eval.c:12593 -#, fuzzy -msgid "reverse() argument" -msgstr "-c " - -#: ../eval.c:13721 -#, fuzzy -msgid "sort() argument" -msgstr "-c " - -#: ../eval.c:13721 -#, fuzzy -msgid "uniq() argument" -msgstr "-c " - -#: ../eval.c:13776 -msgid "E702: Sort compare function failed" -msgstr "E702: ߽ϴ" - -#: ../eval.c:13806 -#, fuzzy -msgid "E882: Uniq compare function failed" -msgstr "E702: ߽ϴ" - -#: ../eval.c:14085 -msgid "(Invalid)" -msgstr "(߸Ǿϴ)" - -#: ../eval.c:14590 -msgid "E677: Error writing temp file" -msgstr "E677: ӽ " - -#: ../eval.c:16159 -msgid "E805: Using a Float as a Number" -msgstr "E805: Float Number " - -#: ../eval.c:16162 -msgid "E703: Using a Funcref as a Number" -msgstr "E703: Funcref Number " - -#: ../eval.c:16170 -msgid "E745: Using a List as a Number" -msgstr "E745: List Number " - -#: ../eval.c:16173 -msgid "E728: Using a Dictionary as a Number" -msgstr "E728: Dictionary Number " - -#: ../eval.c:16259 -msgid "E729: using Funcref as a String" -msgstr "E729: Funcref String " - -#: ../eval.c:16262 -msgid "E730: using List as a String" -msgstr "E730: List String " - -#: ../eval.c:16265 -msgid "E731: using Dictionary as a String" -msgstr "E731: Dictionary String " - -#: ../eval.c:16619 -#, c-format -msgid "E706: Variable type mismatch for: %s" -msgstr "E706: ٸ: %s" - -#: ../eval.c:16705 -#, c-format -msgid "E795: Cannot delete variable %s" -msgstr "E795: %s ϴ" - -#: ../eval.c:16724 -#, c-format -msgid "E704: Funcref variable name must start with a capital: %s" -msgstr "E704: Funcref 빮ڷ ؾ : %s" - -#: ../eval.c:16732 -#, c-format -msgid "E705: Variable name conflicts with existing function: %s" -msgstr "E705: ̹ ִ Լ 浹: %s" - -#: ../eval.c:16763 -#, c-format -msgid "E741: Value is locked: %s" -msgstr "E741: : %s" - -#: ../eval.c:16764 ../eval.c:16769 ../message.c:1839 -msgid "Unknown" -msgstr "" - -#: ../eval.c:16768 -#, c-format -msgid "E742: Cannot change value of %s" -msgstr "E742: %s ٲ ϴ" - -#: ../eval.c:16838 -msgid "E698: variable nested too deep for making a copy" -msgstr "E698: ϱ ʹ øǾϴ" - -#: ../eval.c:17249 -#, c-format -msgid "E123: Undefined function: %s" -msgstr "E123: Լ: %s" - -#: ../eval.c:17260 -#, c-format -msgid "E124: Missing '(': %s" -msgstr "E124: '(' : %s" - -#: ../eval.c:17293 -#, fuzzy -msgid "E862: Cannot use g: here" -msgstr "E284: IC ϴ" - -#: ../eval.c:17312 -#, c-format -msgid "E125: Illegal argument: %s" -msgstr "E125: ߸ : %s" - -#: ../eval.c:17323 -#, fuzzy, c-format -msgid "E853: Duplicate argument name: %s" -msgstr "ߺ ʵ : %s" - -#: ../eval.c:17416 -msgid "E126: Missing :endfunction" -msgstr "E126: :endfunction ϴ" - -#: ../eval.c:17537 -#, c-format -msgid "E707: Function name conflicts with variable: %s" -msgstr "E707: Լ 浹: %s" - -#: ../eval.c:17549 -#, c-format -msgid "E127: Cannot redefine function %s: It is in use" -msgstr "E127: Լ %s() ٽ ϴ: Դϴ" - -#: ../eval.c:17604 -#, c-format -msgid "E746: Function name does not match script file name: %s" -msgstr "E746: Լ ũƮ ϸ ٸ: %s" - -#: ../eval.c:17716 -msgid "E129: Function name required" -msgstr "E129: Լ ̸ ʿմϴ" - -#: ../eval.c:17824 -#, fuzzy, c-format -msgid "E128: Function name must start with a capital or \"s:\": %s" -msgstr "E128: Լ ̸ 빮ڷ ϰų ݷ ؾ : %s" - -#: ../eval.c:17833 -#, fuzzy, c-format -msgid "E884: Function name cannot contain a colon: %s" -msgstr "E128: Լ ̸ 빮ڷ ϰų ݷ ؾ : %s" - -#: ../eval.c:18336 -#, c-format -msgid "E131: Cannot delete function %s: It is in use" -msgstr "E131: Լ %s() ϴ: Դϴ" - -#: ../eval.c:18441 -msgid "E132: Function call depth is higher than 'maxfuncdepth'" -msgstr "E132: Լ θ ̰ 'maxfuncdepth' Ůϴ" - -#: ../eval.c:18568 -#, c-format -msgid "calling %s" -msgstr "%s θ " - -#: ../eval.c:18651 -#, c-format -msgid "%s aborted" -msgstr "%s() Ǿϴ" - -#: ../eval.c:18653 -#, c-format -msgid "%s returning #%<PRId64>" -msgstr "%s() #%<PRId64>() ־ϴ" - -#: ../eval.c:18670 -#, c-format -msgid "%s returning %s" -msgstr "%s() %s() ־ϴ" - -#: ../eval.c:18691 ../ex_cmds2.c:2695 -#, c-format -msgid "continuing in %s" -msgstr "%s " - -#: ../eval.c:18795 -msgid "E133: :return not inside a function" -msgstr "E133: :return Լ ȿ ʽϴ" - -#: ../eval.c:19159 -msgid "" -"\n" -"# global variables:\n" -msgstr "" -"\n" -"# :\n" - -#: ../eval.c:19254 -msgid "" -"\n" -"\tLast set from " -msgstr "" -"\n" -"\tLast set from " - -#: ../eval.c:19272 -msgid "No old files" -msgstr "old ϴ" - -#: ../ex_cmds.c:122 -#, c-format -msgid "<%s>%s%s %d, Hex %02x, Octal %03o" -msgstr "<%s>%s%s %d, %02x, %03o" - -#: ../ex_cmds.c:145 -#, c-format -msgid "> %d, Hex %04x, Octal %o" -msgstr "> %d, %04x, %o" - -#: ../ex_cmds.c:146 -#, c-format -msgid "> %d, Hex %08x, Octal %o" -msgstr "> %d, %08x, %o" - -#: ../ex_cmds.c:684 -msgid "E134: Move lines into themselves" -msgstr "E134: ڽ ̵Ϸ ߽ϴ" - -#: ../ex_cmds.c:747 -msgid "1 line moved" -msgstr "1 Űϴ" - -#: ../ex_cmds.c:749 -#, c-format -msgid "%<PRId64> lines moved" -msgstr "%<PRId64> Űϴ" - -#: ../ex_cmds.c:1175 -#, c-format -msgid "%<PRId64> lines filtered" -msgstr "%<PRId64> ɷϴ" - -#: ../ex_cmds.c:1194 -msgid "E135: *Filter* Autocommands must not change current buffer" -msgstr "E135: *Filter* ڵ ۸ ٲپ ˴ϴ" - -#: ../ex_cmds.c:1244 -msgid "[No write since last change]\n" -msgstr "[ ģ ]\n" - -#: ../ex_cmds.c:1424 -#, c-format -msgid "%sviminfo: %s in line: " -msgstr "%sviminfo: ٿ %s: " - -#: ../ex_cmds.c:1431 -msgid "E136: viminfo: Too many errors, skipping rest of file" -msgstr "E136: viminfo: ʹ , dzʶ" - -#: ../ex_cmds.c:1458 -#, c-format -msgid "Reading viminfo file \"%s\"%s%s%s" -msgstr "viminfo \"%s\"%s%s%s() д " - -#: ../ex_cmds.c:1460 -msgid " info" -msgstr " " - -#: ../ex_cmds.c:1461 -msgid " marks" -msgstr " ũ" - -#: ../ex_cmds.c:1462 -msgid " oldfiles" -msgstr "" - -#: ../ex_cmds.c:1463 -msgid " FAILED" -msgstr " " - -#. avoid a wait_return for this message, it's annoying -#: ../ex_cmds.c:1541 -#, c-format -msgid "E137: Viminfo file is not writable: %s" -msgstr "E137: Viminfo ϴ: %s" - -#: ../ex_cmds.c:1626 -#, c-format -msgid "E138: Can't write viminfo file %s!" -msgstr "E138: Viminfo %s() ϴ!" - -#: ../ex_cmds.c:1635 -#, c-format -msgid "Writing viminfo file \"%s\"" -msgstr "Viminfo \"%s\"() " - -#. Write the info: -#: ../ex_cmds.c:1720 -#, c-format -msgid "# This viminfo file was generated by Vim %s.\n" -msgstr "# viminfo Դϴ Vim %s.\n" - -#: ../ex_cmds.c:1722 -msgid "" -"# You may edit it if you're careful!\n" -"\n" -msgstr "" -"# ɸ Ѵٸ ĥ ֽϴ!\n" -"\n" - -#: ../ex_cmds.c:1723 -msgid "# Value of 'encoding' when this file was written\n" -msgstr "# Ǿ 'encoding' \n" - -#: ../ex_cmds.c:1800 -msgid "Illegal starting char" -msgstr "̻ " - -#: ../ex_cmds.c:2162 -msgid "Write partial file?" -msgstr " Ϻθ ұ?" - -#: ../ex_cmds.c:2166 -msgid "E140: Use ! to write partial buffer" -msgstr "E140: Ϻθ ! Ͻʽÿ" - -#: ../ex_cmds.c:2281 -#, c-format -msgid "Overwrite existing file \"%s\"?" -msgstr "̹ ִ \"%s\" ?" - -#: ../ex_cmds.c:2317 -#, c-format -msgid "Swap file \"%s\" exists, overwrite anyway?" -msgstr " \"%s\" ֽϴ, ?" - -#: ../ex_cmds.c:2326 -#, c-format -msgid "E768: Swap file exists: %s (:silent! overrides)" -msgstr "E768: : %s ( :silent! )" - -#: ../ex_cmds.c:2381 -#, c-format -msgid "E141: No file name for buffer %<PRId64>" -msgstr "E141: %<PRId64> ̸ ϴ" - -#: ../ex_cmds.c:2412 -msgid "E142: File not written: Writing is disabled by 'write' option" -msgstr "E142: : 'write' ɼǿ ϴ" - -#: ../ex_cmds.c:2434 -#, c-format -msgid "" -"'readonly' option is set for \"%s\".\n" -"Do you wish to write anyway?" -msgstr "" -"'readonly' ɼ \"%s\" Ǿ ֽϴ.\n" -" ⸦ Ͻʴϱ?" - -#: ../ex_cmds.c:2439 -#, c-format -msgid "" -"File permissions of \"%s\" are read-only.\n" -"It may still be possible to write it.\n" -"Do you wish to try?" -msgstr "" -" \"%s\" бԴϴ.\n" -" Ⱑ ϴ.\n" -" ?" - -#: ../ex_cmds.c:2451 -#, c-format -msgid "E505: \"%s\" is read-only (add ! to override)" -msgstr "E505: \"%s\" б Դϴ ( ! ϱ)" - -#: ../ex_cmds.c:3120 -#, c-format -msgid "E143: Autocommands unexpectedly deleted new buffer %s" -msgstr "E143: Autocommand ۿ %s() ϴ" - -#: ../ex_cmds.c:3313 -msgid "E144: non-numeric argument to :z" -msgstr "E144: ڰ ƴ ڰ :z ־ϴ" - -#: ../ex_cmds.c:3404 -msgid "E145: Shell commands not allowed in rvim" -msgstr "E145: rvim ϴ" - -#: ../ex_cmds.c:3498 -msgid "E146: Regular expressions can't be delimited by letters" -msgstr "E146: ǥ ڷ е ϴ" - -#: ../ex_cmds.c:3964 -#, c-format -msgid "replace with %s (y/n/a/q/l/^E/^Y)?" -msgstr "%s() ٲ (y/n/a/q/l/^E/^Y)?" - -#: ../ex_cmds.c:4379 -msgid "(Interrupted) " -msgstr "(ߴܵǾϴ) " - -#: ../ex_cmds.c:4384 -msgid "1 match" -msgstr "1 ã" - -#: ../ex_cmds.c:4384 -msgid "1 substitution" -msgstr "1 ٲ" - -#: ../ex_cmds.c:4387 -#, c-format -msgid "%<PRId64> matches" -msgstr "%<PRId64> ã" - -#: ../ex_cmds.c:4388 -#, c-format -msgid "%<PRId64> substitutions" -msgstr "%<PRId64> ٲ" - -#: ../ex_cmds.c:4392 -msgid " on 1 line" -msgstr " ٿ" - -#: ../ex_cmds.c:4395 -#, c-format -msgid " on %<PRId64> lines" -msgstr " %<PRId64> ٿ" - -#: ../ex_cmds.c:4438 -msgid "E147: Cannot do :global recursive" -msgstr "E147: :global ȣ ϴ" - -#: ../ex_cmds.c:4467 -msgid "E148: Regular expression missing from global" -msgstr "E148: global ǥ ϴ" - -#: ../ex_cmds.c:4508 -#, c-format -msgid "Pattern found in every line: %s" -msgstr " ٿ ãҽϴ: %s" - -#: ../ex_cmds.c:4510 -#, fuzzy, c-format -msgid "Pattern not found: %s" -msgstr " ã ϴ" - -#: ../ex_cmds.c:4587 -msgid "" -"\n" -"# Last Substitute String:\n" -"$" -msgstr "" -"\n" -"# ٲ ڿ:\n" -"$" - -#: ../ex_cmds.c:4679 -msgid "E478: Don't panic!" -msgstr "E478: Ȳ ʽÿ!" - -#: ../ex_cmds.c:4717 -#, c-format -msgid "E661: Sorry, no '%s' help for %s" -msgstr "E661: ̾մϴ, '%s'() %s ϴ" - -#: ../ex_cmds.c:4719 -#, c-format -msgid "E149: Sorry, no help for %s" -msgstr "E149: ̾մϴ, %s ϴ" - -#: ../ex_cmds.c:4751 -#, c-format -msgid "Sorry, help file \"%s\" not found" -msgstr "̾մϴ, \"%s\"() ã ϴ" - -#: ../ex_cmds.c:5323 -#, c-format -msgid "E150: Not a directory: %s" -msgstr "E150: 丮 ƴ: %s" - -#: ../ex_cmds.c:5446 -#, c-format -msgid "E152: Cannot open %s for writing" -msgstr "E152: %s() ϴ" - -#: ../ex_cmds.c:5471 -#, c-format -msgid "E153: Unable to open %s for reading" -msgstr "E153: б %s() ϴ" - -#: ../ex_cmds.c:5500 -#, c-format -msgid "E670: Mix of help file encodings within a language: %s" -msgstr "E670: ڵ : %s" - -#: ../ex_cmds.c:5565 -#, c-format -msgid "E154: Duplicate tag \"%s\" in file %s/%s" -msgstr "E154: \"%s\" ±װ %s/%s Ͽ ߺǾϴ" - -#: ../ex_cmds.c:5687 -#, c-format -msgid "E160: Unknown sign command: %s" -msgstr "E160: sign : %s" - -#: ../ex_cmds.c:5704 -msgid "E156: Missing sign name" -msgstr "E156: sign ̸ ϴ" - -#: ../ex_cmds.c:5746 -msgid "E612: Too many signs defined" -msgstr "E612: ʹ sign ǵǾ ֽϴ" - -#: ../ex_cmds.c:5813 -#, c-format -msgid "E239: Invalid sign text: %s" -msgstr "E239: ߸ sign ؽƮ: %s" - -#: ../ex_cmds.c:5844 ../ex_cmds.c:6035 -#, c-format -msgid "E155: Unknown sign: %s" -msgstr "E155: sign: %s" - -#: ../ex_cmds.c:5877 -msgid "E159: Missing sign number" -msgstr "E159: sign ȣ ϴ" - -#: ../ex_cmds.c:5971 -#, c-format -msgid "E158: Invalid buffer name: %s" -msgstr "E158: ߸ ̸: %s" - -#: ../ex_cmds.c:6008 -#, c-format -msgid "E157: Invalid sign ID: %<PRId64>" -msgstr "E157: ߸ sign ID: %<PRId64>" - -#: ../ex_cmds.c:6066 -msgid " (not supported)" -msgstr " ( )" - -#: ../ex_cmds.c:6169 -msgid "[Deleted]" -msgstr "[ϴ]" - -#: ../ex_cmds2.c:139 -msgid "Entering Debug mode. Type \"cont\" to continue." -msgstr " · . Ϸ \"cont\" ԷϽʽÿ." - -#: ../ex_cmds2.c:143 ../ex_docmd.c:759 -#, c-format -msgid "line %<PRId64>: %s" -msgstr "%<PRId64> : %s" - -#: ../ex_cmds2.c:145 -#, c-format -msgid "cmd: %s" -msgstr ": %s" - -#: ../ex_cmds2.c:322 -#, c-format -msgid "Breakpoint in \"%s%s\" line %<PRId64>" -msgstr ": \"%s%s\" %<PRId64> " - -#: ../ex_cmds2.c:581 -#, c-format -msgid "E161: Breakpoint not found: %s" -msgstr "E161: ã ϴ: %s" - -#: ../ex_cmds2.c:611 -msgid "No breakpoints defined" -msgstr " ǵǾ ʽϴ" - -#: ../ex_cmds2.c:617 -#, c-format -msgid "%3d %s %s line %<PRId64>" -msgstr "%3d %s %s %<PRId64> " - -#: ../ex_cmds2.c:942 -msgid "E750: First use \":profile start {fname}\"" -msgstr "E750: \":profile start {fname}\" ϼ" - -#: ../ex_cmds2.c:1269 -#, c-format -msgid "Save changes to \"%s\"?" -msgstr "\"%s\" ٲ ұ?" - -#: ../ex_cmds2.c:1271 ../ex_docmd.c:8851 -msgid "Untitled" -msgstr " " - -#: ../ex_cmds2.c:1421 -#, c-format -msgid "E162: No write since last change for buffer \"%s\"" -msgstr "E162: \"%s\" ߿ ٲ ʾҽϴ" - -#: ../ex_cmds2.c:1480 -msgid "Warning: Entered other buffer unexpectedly (check autocommands)" -msgstr ": ۿ ٸ ۷ ϴ (autocommand ȮϽʽÿ)" - -#: ../ex_cmds2.c:1826 -msgid "E163: There is only one file to edit" -msgstr "E163: ĥ ϳ ۿ ϴ" - -#: ../ex_cmds2.c:1828 -msgid "E164: Cannot go before first file" -msgstr "E164: ù ° δ ϴ" - -#: ../ex_cmds2.c:1830 -msgid "E165: Cannot go beyond last file" -msgstr "E165: ڷδ ϴ" - -#: ../ex_cmds2.c:2175 -#, c-format -msgid "E666: compiler not supported: %s" -msgstr "E666: Ϸ : %s" - -#: ../ex_cmds2.c:2257 -#, c-format -msgid "Searching for \"%s\" in \"%s\"" -msgstr "\"%s\"() \"%s\" ã " - -#: ../ex_cmds2.c:2284 -#, c-format -msgid "Searching for \"%s\"" -msgstr "\"%s\"() ã " - -#: ../ex_cmds2.c:2307 -#, c-format -msgid "not found in 'runtimepath': \"%s\"" -msgstr "'runtimepath' ã : \"%s\"" - -#: ../ex_cmds2.c:2472 -#, c-format -msgid "Cannot source a directory: \"%s\"" -msgstr "丮 source : \"%s\"" - -#: ../ex_cmds2.c:2518 -#, c-format -msgid "could not source \"%s\"" -msgstr "\"%s\"() ҷ ϴ" - -#: ../ex_cmds2.c:2520 -#, c-format -msgid "line %<PRId64>: could not source \"%s\"" -msgstr "%<PRId64> : \"%s\"() ҷ ϴ" - -#: ../ex_cmds2.c:2535 -#, c-format -msgid "sourcing \"%s\"" -msgstr "\"%s\"() ҷ̴ " - -#: ../ex_cmds2.c:2537 -#, c-format -msgid "line %<PRId64>: sourcing \"%s\"" -msgstr "%<PRId64> : \"%s\" ҷ̴ " - -#: ../ex_cmds2.c:2693 -#, c-format -msgid "finished sourcing %s" -msgstr "%s ҷ̱ " - -#: ../ex_cmds2.c:2765 -msgid "modeline" -msgstr "" - -#: ../ex_cmds2.c:2767 -msgid "--cmd argument" -msgstr "--cmd " - -#: ../ex_cmds2.c:2769 -msgid "-c argument" -msgstr "-c " - -#: ../ex_cmds2.c:2771 -msgid "environment variable" -msgstr "ȯ " - -#: ../ex_cmds2.c:2773 -msgid "error handler" -msgstr " ڵ鷯" - -#: ../ex_cmds2.c:3020 -msgid "W15: Warning: Wrong line separator, ^M may be missing" -msgstr "W15: : ߸ . ^M ϴ" - -#: ../ex_cmds2.c:3139 -msgid "E167: :scriptencoding used outside of a sourced file" -msgstr "E167: :scriptencoding ҷ ۿ Ǿϴ" - -#: ../ex_cmds2.c:3166 -msgid "E168: :finish used outside of a sourced file" -msgstr "E168: :finish ҷ ۿ Ǿϴ" - -#: ../ex_cmds2.c:3389 -#, c-format -msgid "Current %slanguage: \"%s\"" -msgstr " %s: \"%s\"" - -#: ../ex_cmds2.c:3404 -#, c-format -msgid "E197: Cannot set language to \"%s\"" -msgstr "E197: \"%s\"() ϴ" - -#. don't redisplay the window -#. don't wait for return -#: ../ex_docmd.c:387 -msgid "Entering Ex mode. Type \"visual\" to go to Normal mode." -msgstr "Ex · ȯ. Normal · \"visual\" ԷϽʽÿ." - -#: ../ex_docmd.c:428 -msgid "E501: At end-of-file" -msgstr "E501: Դϴ" - -#: ../ex_docmd.c:513 -msgid "E169: Command too recursive" -msgstr "E169: ʹ ٽ ݺǾϴ" - -#: ../ex_docmd.c:1006 -#, c-format -msgid "E605: Exception not caught: %s" -msgstr "E605: ܰ ʾҽϴ: %s" - -#: ../ex_docmd.c:1085 -msgid "End of sourced file" -msgstr "ҷ " - -#: ../ex_docmd.c:1086 -msgid "End of function" -msgstr "Լ " - -#: ../ex_docmd.c:1628 -msgid "E464: Ambiguous use of user-defined command" -msgstr "E464: ȣϰ ϰ ֽϴ" - -#: ../ex_docmd.c:1638 -msgid "E492: Not an editor command" -msgstr "E492: ƴմϴ" - -#: ../ex_docmd.c:1729 -msgid "E493: Backwards range given" -msgstr "E493: ݴ ־ϴ" - -#: ../ex_docmd.c:1733 -msgid "Backwards range given, OK to swap" -msgstr "ݴ ־ϴ, " - -#. append -#. typed wrong -#: ../ex_docmd.c:1787 -msgid "E494: Use w or w>>" -msgstr "E494: w w>> Ͻʽÿ" - -#: ../ex_docmd.c:3454 -msgid "E319: The command is not available in this version" -msgstr "E319: ̾մϴ, ǿ ϴ" - -#: ../ex_docmd.c:3752 -msgid "E172: Only one file name allowed" -msgstr "E172: ϳ ̸ մϴ" - -#: ../ex_docmd.c:4238 -msgid "1 more file to edit. Quit anyway?" -msgstr "ĥ ֽϴ. ?" - -#: ../ex_docmd.c:4242 -#, c-format -msgid "%d more files to edit. Quit anyway?" -msgstr "ĥ %d ֽϴ. ?" - -#: ../ex_docmd.c:4248 -msgid "E173: 1 more file to edit" -msgstr "E173: ĥ ֽϴ" - -#: ../ex_docmd.c:4250 -#, c-format -msgid "E173: %<PRId64> more files to edit" -msgstr "E173: ĥ %<PRId64> ֽϴ" - -#: ../ex_docmd.c:4320 -msgid "E174: Command already exists: add ! to replace it" -msgstr "E174: ̹ մϴ: ٲٷ ! ϼ" - -#: ../ex_docmd.c:4432 -msgid "" -"\n" -" Name Args Range Complete Definition" -msgstr "" -"\n" -" ̸ ϼ " - -#: ../ex_docmd.c:4516 -msgid "No user-defined commands found" -msgstr " ã ϴ" - -#: ../ex_docmd.c:4538 -msgid "E175: No attribute specified" -msgstr "E175: õ Ӽ ϴ" - -#: ../ex_docmd.c:4583 -msgid "E176: Invalid number of arguments" -msgstr "E176: ߸ " - -#: ../ex_docmd.c:4594 -msgid "E177: Count cannot be specified twice" -msgstr "E177: īƮ ̻ õ ϴ" - -#: ../ex_docmd.c:4603 -msgid "E178: Invalid default value for count" -msgstr "E178: ߸ ⺻ īƮ " - -#: ../ex_docmd.c:4625 -msgid "E179: argument required for -complete" -msgstr "E179: -complete ڰ ʿմϴ" - -#: ../ex_docmd.c:4635 -#, c-format -msgid "E181: Invalid attribute: %s" -msgstr "E181: ߸ Ӽ: %s" - -#: ../ex_docmd.c:4678 -msgid "E182: Invalid command name" -msgstr "E182: ߸ ̸" - -#: ../ex_docmd.c:4691 -msgid "E183: User defined commands must start with an uppercase letter" -msgstr "E183: 빮ڷ ؾ մϴ" - -#: ../ex_docmd.c:4696 -msgid "E841: Reserved name, cannot be used for user defined command" -msgstr "E841: ̸, ϴ" - -#: ../ex_docmd.c:4751 -#, c-format -msgid "E184: No such user-defined command: %s" -msgstr "E184: : %s" - -#: ../ex_docmd.c:5219 -#, c-format -msgid "E180: Invalid complete value: %s" -msgstr "E180: ߸ : %s" - -#: ../ex_docmd.c:5225 -msgid "E468: Completion argument only allowed for custom completion" -msgstr "E468: ϼ ڴ ϼ ˴ϴ" - -#: ../ex_docmd.c:5231 -msgid "E467: Custom completion requires a function argument" -msgstr "E467: ϼ Լ ڰ ʿմϴ" - -#: ../ex_docmd.c:5257 -#, fuzzy, c-format -msgid "E185: Cannot find color scheme '%s'" -msgstr "E185: Ŵ %s() ã ϴ" - -#: ../ex_docmd.c:5263 -msgid "Greetings, Vim user!" -msgstr " ڴ, ȯմϴ!" - -#: ../ex_docmd.c:5431 -msgid "E784: Cannot close last tab page" -msgstr "E784: ϴ" - -#: ../ex_docmd.c:5462 -msgid "Already only one tab page" -msgstr "̹ ϳ Ǹ ֽϴ" - -#: ../ex_docmd.c:6004 -#, c-format -msgid "Tab page %d" -msgstr " %d" - -#: ../ex_docmd.c:6295 -msgid "No swap file" -msgstr " ϴ" - -#: ../ex_docmd.c:6478 -msgid "E747: Cannot change directory, buffer is modified (add ! to override)" -msgstr "E747: 丮 ٲ , ۴ ( ! ϱ)" - -#: ../ex_docmd.c:6485 -msgid "E186: No previous directory" -msgstr "E186: 丮 ϴ" - -#: ../ex_docmd.c:6530 -msgid "E187: Unknown" -msgstr "E187: " - -#: ../ex_docmd.c:6610 -msgid "E465: :winsize requires two number arguments" -msgstr "E465: :winsize ΰ ڰ ʿմϴ" - -#: ../ex_docmd.c:6655 -msgid "E188: Obtaining window position not implemented for this platform" -msgstr "E188: ÷ â ġ ʾҽϴ" - -#: ../ex_docmd.c:6662 -msgid "E466: :winpos requires two number arguments" -msgstr "E466: :winpos ΰ ڰ ʿմϴ" - -#: ../ex_docmd.c:7241 -#, c-format -msgid "E739: Cannot create directory: %s" -msgstr "E739: 丮 : %s" - -#: ../ex_docmd.c:7268 -#, c-format -msgid "E189: \"%s\" exists (add ! to override)" -msgstr "E189: \"%s\"() մϴ ( ! ϱ)" - -#: ../ex_docmd.c:7273 -#, c-format -msgid "E190: Cannot open \"%s\" for writing" -msgstr "E190: \"%s\"() ϴ" - -#. set mark -#: ../ex_docmd.c:7294 -msgid "E191: Argument must be a letter or forward/backward quote" -msgstr "E191: ڴ ڳ / ο ȣ մϴ" - -#: ../ex_docmd.c:7333 -msgid "E192: Recursive use of :normal too deep" -msgstr "E192: :normal ȣ ʹ ϴ" - -#: ../ex_docmd.c:7807 -msgid "E194: No alternate file name to substitute for '#'" -msgstr "E194: '#' ġȯ ü ̸ ϴ" - -#: ../ex_docmd.c:7841 -msgid "E495: no autocommand file name to substitute for \"<afile>\"" -msgstr "E495: \"<afile>\" ġȯ ڵ ̸ ϴ" - -#: ../ex_docmd.c:7850 -msgid "E496: no autocommand buffer number to substitute for \"<abuf>\"" -msgstr "E496: \"<abuf>\" ġȯ ڵ ȣ ϴ" - -#: ../ex_docmd.c:7861 -msgid "E497: no autocommand match name to substitute for \"<amatch>\"" -msgstr "E497: \"<amatch>\" ġȯ ڵ ġ ̸ ϴ" - -#: ../ex_docmd.c:7870 -msgid "E498: no :source file name to substitute for \"<sfile>\"" -msgstr "E498: \"<sfile>\" ġȯ :source ̸ ϴ" - -#: ../ex_docmd.c:7876 -msgid "E842: no line number to use for \"<slnum>\"" -msgstr "E842: \"<slnum>\" ȣ ϴ" - -#: ../ex_docmd.c:7903 -#, fuzzy, c-format -msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" -msgstr "E499: '%' '#' ̸, \":p:h\" մϴ" - -#: ../ex_docmd.c:7905 -msgid "E500: Evaluates to an empty string" -msgstr "E500: ڿ Ϸ մϴ" - -#: ../ex_docmd.c:8838 -msgid "E195: Cannot open viminfo file for reading" -msgstr "E195: viminfo ϴ" - -#: ../ex_eval.c:464 -msgid "E608: Cannot :throw exceptions with 'Vim' prefix" -msgstr "E608: 'Vim' λ ܸ :throw ϴ" - -#. always scroll up, don't overwrite -#: ../ex_eval.c:496 -#, c-format -msgid "Exception thrown: %s" -msgstr " thrown: %s" - -#: ../ex_eval.c:545 -#, c-format -msgid "Exception finished: %s" -msgstr " : %s" - -#: ../ex_eval.c:546 -#, c-format -msgid "Exception discarded: %s" -msgstr " : %s" - -#: ../ex_eval.c:588 ../ex_eval.c:634 -#, c-format -msgid "%s, line %<PRId64>" -msgstr "%s, %<PRId64> " - -#. always scroll up, don't overwrite -#: ../ex_eval.c:608 -#, c-format -msgid "Exception caught: %s" -msgstr " : %s" - -#: ../ex_eval.c:676 -#, c-format -msgid "%s made pending" -msgstr "%s() pending Ǿϴ" - -#: ../ex_eval.c:679 -#, c-format -msgid "%s resumed" -msgstr "%s() 簳 Ǿϴ" - -#: ../ex_eval.c:683 -#, c-format -msgid "%s discarded" -msgstr "%s() ϴ" - -#: ../ex_eval.c:708 -msgid "Exception" -msgstr "" - -#: ../ex_eval.c:713 -msgid "Error and interrupt" -msgstr " ͷƮ" - -#: ../ex_eval.c:715 -msgid "Error" -msgstr "" - -#. if (pending & CSTP_INTERRUPT) -#: ../ex_eval.c:717 -msgid "Interrupt" -msgstr "ͷƮ" - -#: ../ex_eval.c:795 -msgid "E579: :if nesting too deep" -msgstr "E579: :if ʹ øǾϴ" - -#: ../ex_eval.c:830 -msgid "E580: :endif without :if" -msgstr "E580: :if :endif ֽϴ" - -#: ../ex_eval.c:873 -msgid "E581: :else without :if" -msgstr "E581: :if :else ֽϴ" - -#: ../ex_eval.c:876 -msgid "E582: :elseif without :if" -msgstr "E582: :if :elseif ֽϴ" - -#: ../ex_eval.c:880 -msgid "E583: multiple :else" -msgstr "E583: :else ֽϴ" - -#: ../ex_eval.c:883 -msgid "E584: :elseif after :else" -msgstr "E584: :else ڿ :elseif ֽϴ" - -#: ../ex_eval.c:941 -msgid "E585: :while/:for nesting too deep" -msgstr "E585: :while/:for ʹ øǾϴ" - -#: ../ex_eval.c:1028 -msgid "E586: :continue without :while or :for" -msgstr "E586: :while Ȥ :for :continue ֽϴ" - -#: ../ex_eval.c:1061 -msgid "E587: :break without :while or :for" -msgstr "E587: :while Ȥ :for :break ֽϴ" - -#: ../ex_eval.c:1102 -msgid "E732: Using :endfor with :while" -msgstr "E732: :while :endfor Ǿϴ" - -#: ../ex_eval.c:1104 -msgid "E733: Using :endwhile with :for" -msgstr "E733: :for :endwhile Ǿϴ" - -#: ../ex_eval.c:1247 -msgid "E601: :try nesting too deep" -msgstr "E601: :try ʹ øǾϴ" - -#: ../ex_eval.c:1317 -msgid "E603: :catch without :try" -msgstr "E603: :try :catch ֽϴ" - -#. Give up for a ":catch" after ":finally" and ignore it. -#. * Just parse. -#: ../ex_eval.c:1332 -msgid "E604: :catch after :finally" -msgstr "E604: :finally ڿ :catch ֽϴ" - -#: ../ex_eval.c:1451 -msgid "E606: :finally without :try" -msgstr "E606: :try :finally ֽϴ" - -#. Give up for a multiple ":finally" and ignore it. -#: ../ex_eval.c:1467 -msgid "E607: multiple :finally" -msgstr "E607: :finally ֽϴ" - -#: ../ex_eval.c:1571 -msgid "E602: :endtry without :try" -msgstr "E602: :try :endtry ֽϴ" - -#: ../ex_eval.c:2026 -msgid "E193: :endfunction not inside a function" -msgstr "E193: :endfunction function ϴ" - -#: ../ex_getln.c:1643 -msgid "E788: Not allowed to edit another buffer now" -msgstr "E788: ٸ ۸ ϴ" - -#: ../ex_getln.c:1656 -msgid "E811: Not allowed to change buffer information now" -msgstr "E811: ٲ ϴ" - -#: ../ex_getln.c:3178 -msgid "tagname" -msgstr "±̸" - -#: ../ex_getln.c:3181 -msgid " kind file\n" -msgstr " kind file\n" - -#: ../ex_getln.c:4799 -msgid "'history' option is zero" -msgstr "'history' ɼ 0Դϴ" - -#: ../ex_getln.c:5046 -#, c-format -msgid "" -"\n" -"# %s History (newest to oldest):\n" -msgstr "" -"\n" -"# %s 丮 (ͺ ):\n" - -#: ../ex_getln.c:5047 -msgid "Command Line" -msgstr " " - -#: ../ex_getln.c:5048 -msgid "Search String" -msgstr "ã ڿ" - -#: ../ex_getln.c:5049 -msgid "Expression" -msgstr "ǥ" - -#: ../ex_getln.c:5050 -msgid "Input Line" -msgstr "Է " - -#: ../ex_getln.c:5117 -msgid "E198: cmd_pchar beyond the command length" -msgstr "E198: cmd_pchar ̸ ϴ" - -#: ../ex_getln.c:5279 -msgid "E199: Active window or buffer deleted" -msgstr "E199: Ȱ â̳ ۰ ϴ" - -#: ../file_search.c:203 -msgid "E854: path too long for completion" -msgstr "" - -#: ../file_search.c:446 -#, c-format -msgid "" -"E343: Invalid path: '**[number]' must be at the end of the path or be " -"followed by '%s'." -msgstr "" -"E343: ߸ : '**[ȣ]' ġϰų '%s' ڿ ־ " -"մϴ." - -#: ../file_search.c:1505 -#, c-format -msgid "E344: Can't find directory \"%s\" in cdpath" -msgstr "E344: cdpath \"%s\" 丮 ã ϴ" - -#: ../file_search.c:1508 -#, c-format -msgid "E345: Can't find file \"%s\" in path" -msgstr "E345: path \"%s\" ã ϴ" - -#: ../file_search.c:1512 -#, c-format -msgid "E346: No more directory \"%s\" found in cdpath" -msgstr "E346: cdpath ̻ \"%s\" 丮 ã ϴ" - -#: ../file_search.c:1515 -#, c-format -msgid "E347: No more file \"%s\" found in path" -msgstr "E347: path ̻ \"%s\" ã ϴ" - -#: ../fileio.c:137 -msgid "E812: Autocommands changed buffer or buffer name" -msgstr "E812: Autocommand ۳ ̸ ٲپϴ" - -#: ../fileio.c:368 -msgid "Illegal file name" -msgstr "߸ ̸" - -#: ../fileio.c:395 ../fileio.c:476 ../fileio.c:2543 ../fileio.c:2578 -msgid "is a directory" -msgstr "() 丮Դϴ" - -#: ../fileio.c:397 -msgid "is not a file" -msgstr "() ƴմϴ" - -#: ../fileio.c:508 ../fileio.c:3522 -msgid "[New File]" -msgstr "[ ]" - -#: ../fileio.c:511 -msgid "[New DIRECTORY]" -msgstr "[ 丮]" - -#: ../fileio.c:529 ../fileio.c:532 -msgid "[File too big]" -msgstr "[ ʹ ŭ]" - -#: ../fileio.c:534 -msgid "[Permission Denied]" -msgstr "[ ˴ϴ]" - -#: ../fileio.c:653 -msgid "E200: *ReadPre autocommands made the file unreadable" -msgstr "E200: *ReadPre ڵ ϰ ϴ" - -#: ../fileio.c:655 -msgid "E201: *ReadPre autocommands must not change current buffer" -msgstr "E201: *ReadPre ڵ ۸ ٲٸ ˴ϴ" - -#: ../fileio.c:672 -msgid "Nvim: Reading from stdin...\n" -msgstr ": ǥԷ¿ д ...\n" - -#. Re-opening the original file failed! -#: ../fileio.c:909 -msgid "E202: Conversion made file unreadable!" -msgstr "E202: ȯ ϴ!" - -#. fifo or socket -#: ../fileio.c:1782 -msgid "[fifo/socket]" -msgstr "[/]" - -#. fifo -#: ../fileio.c:1788 -msgid "[fifo]" -msgstr "[]" - -#. or socket -#: ../fileio.c:1794 -msgid "[socket]" -msgstr "[]" - -#. or character special -#: ../fileio.c:1801 -msgid "[character special]" -msgstr "" - -#: ../fileio.c:1815 -msgid "[CR missing]" -msgstr "[CR ]" - -#: ../fileio.c:1819 -msgid "[long lines split]" -msgstr "[ ߸]" - -#: ../fileio.c:1823 ../fileio.c:3512 -msgid "[NOT converted]" -msgstr "[ȯ ˴ϴ]" - -#: ../fileio.c:1826 ../fileio.c:3515 -msgid "[converted]" -msgstr "[ȯ Ǿϴ]" - -#: ../fileio.c:1831 -#, c-format -msgid "[CONVERSION ERROR in line %<PRId64>]" -msgstr "[%<PRId64> ٿ ȯ ]" - -#: ../fileio.c:1835 -#, c-format -msgid "[ILLEGAL BYTE in line %<PRId64>]" -msgstr "[%<PRId64> ٿ ߸ Ʈ]" - -#: ../fileio.c:1838 -msgid "[READ ERRORS]" -msgstr "[б ]" - -#: ../fileio.c:2104 -msgid "Can't find temp file for conversion" -msgstr "ȯϱ ӽ ã ϴ" - -#: ../fileio.c:2110 -msgid "Conversion with 'charconvert' failed" -msgstr "'charconvert' ȯ ߽ϴ" - -#: ../fileio.c:2113 -msgid "can't read output of 'charconvert'" -msgstr "'charconvert' ° ϴ" - -#: ../fileio.c:2437 -msgid "E676: No matching autocommands for acwrite buffer" -msgstr "E676: acwrite ۿ autocommand ã ϴ" - -#: ../fileio.c:2466 -msgid "E203: Autocommands deleted or unloaded buffer to be written" -msgstr "E203: ۸ ڵ ų ݾҽϴ" - -#: ../fileio.c:2486 -msgid "E204: Autocommand changed number of lines in unexpected way" -msgstr "E204: Autocommand ߸ ٲپϴ" - -#: ../fileio.c:2548 ../fileio.c:2565 -msgid "is not a file or writable device" -msgstr " Ȥ ִ ġ ƴմϴ" - -#: ../fileio.c:2601 -msgid "is read-only (add ! to override)" -msgstr "б Դϴ ( ! ϱ)" - -#: ../fileio.c:2886 -msgid "E506: Can't write to backup file (add ! to override)" -msgstr "E506: ϴ ( ! ϱ)" - -#: ../fileio.c:2898 -msgid "E507: Close error for backup file (add ! to override)" -msgstr "E507: ݱ ( ! ϱ)" - -#: ../fileio.c:2901 -msgid "E508: Can't read file for backup (add ! to override)" -msgstr "E508: ϴ ( ! ϱ)" - -#: ../fileio.c:2923 -msgid "E509: Cannot create backup file (add ! to override)" -msgstr "E509: ϴ ( ! ϱ)" - -#: ../fileio.c:3008 -msgid "E510: Can't make backup file (add ! to override)" -msgstr "E510: ϴ ( ! ϱ)" - -#. Can't write without a tempfile! -#: ../fileio.c:3121 -msgid "E214: Can't find temp file for writing" -msgstr "E214: ӽ ã ϴ" - -#: ../fileio.c:3134 -msgid "E213: Cannot convert (add ! to write without conversion)" -msgstr "E213: ȯ ϴ (ȯ Ϸ ! ϱ)" - -#: ../fileio.c:3169 -msgid "E166: Can't open linked file for writing" -msgstr "E166: ϴ" - -#: ../fileio.c:3173 -msgid "E212: Can't open file for writing" -msgstr "E212: ϴ" - -#: ../fileio.c:3363 -msgid "E667: Fsync failed" -msgstr "E667: Fsync ߽ϴ" - -#: ../fileio.c:3398 -msgid "E512: Close failed" -msgstr "E512: ݱⰡ ߽ϴ" - -#: ../fileio.c:3436 -msgid "E513: write error, conversion failed (make 'fenc' empty to override)" -msgstr "E513: , ȯ (Ϸ 'fenc' )" - -#: ../fileio.c:3441 -#, c-format -msgid "" -"E513: write error, conversion failed in line %<PRId64> (make 'fenc' empty to " -"override)" -msgstr "" -"E513: , %<PRId64> ٿ ȯ (Ϸ 'fenc' )" - -#: ../fileio.c:3448 -msgid "E514: write error (file system full?)" -msgstr "E514: ( ý á?)" - -#: ../fileio.c:3506 -msgid " CONVERSION ERROR" -msgstr " ȯ " - -#: ../fileio.c:3509 -#, c-format -msgid " in line %<PRId64>;" -msgstr "%<PRId64> ٿ;" - -#: ../fileio.c:3519 -msgid "[Device]" -msgstr "[ġ]" - -#: ../fileio.c:3522 -msgid "[New]" -msgstr "[ο]" - -#: ../fileio.c:3535 -msgid " [a]" -msgstr " [a]" - -#: ../fileio.c:3535 -msgid " appended" -msgstr " ߽ϴ" - -#: ../fileio.c:3537 -msgid " [w]" -msgstr " [w]" - -#: ../fileio.c:3537 -msgid " written" -msgstr " ߽ϴ" - -#: ../fileio.c:3579 -msgid "E205: Patchmode: can't save original file" -msgstr "E205: ġ : ϴ" - -#: ../fileio.c:3602 -msgid "E206: patchmode: can't touch empty original file" -msgstr "E206: ġ : ϴ" - -#: ../fileio.c:3616 -msgid "E207: Can't delete backup file" -msgstr "E207: ϴ" - -#: ../fileio.c:3672 -msgid "" -"\n" -"WARNING: Original file may be lost or damaged\n" -msgstr "" -"\n" -": ų ֽϴ\n" - -#: ../fileio.c:3675 -msgid "don't quit the editor until the file is successfully written!" -msgstr " ⸦ ʽÿ!" - -#: ../fileio.c:3795 -msgid "[dos]" -msgstr "[]" - -#: ../fileio.c:3795 -msgid "[dos format]" -msgstr "[ ]" - -#: ../fileio.c:3801 -msgid "[mac]" -msgstr "[]" - -#: ../fileio.c:3801 -msgid "[mac format]" -msgstr "[ ]" - -#: ../fileio.c:3807 -msgid "[unix]" -msgstr "[н]" - -#: ../fileio.c:3807 -msgid "[unix format]" -msgstr "[н ]" - -#: ../fileio.c:3831 -msgid "1 line, " -msgstr "1 , " - -#: ../fileio.c:3833 -#, c-format -msgid "%<PRId64> lines, " -msgstr "%<PRId64> , " - -#: ../fileio.c:3836 -msgid "1 character" -msgstr "1 " - -#: ../fileio.c:3838 -#, c-format -msgid "%<PRId64> characters" -msgstr "%<PRId64> " - -#: ../fileio.c:3849 -msgid "[noeol]" -msgstr "[noeol]" - -#: ../fileio.c:3849 -msgid "[Incomplete last line]" -msgstr "[ҿ ]" - -#. don't overwrite messages here -#. must give this prompt -#. don't use emsg() here, don't want to flush the buffers -#: ../fileio.c:3865 -msgid "WARNING: The file has been changed since reading it!!!" -msgstr ": ڿ ٲϴ!!!" - -#: ../fileio.c:3867 -msgid "Do you really want to write to it" -msgstr " ⸦ Ͻʴϱ" - -#: ../fileio.c:4648 -#, c-format -msgid "E208: Error writing to \"%s\"" -msgstr "E208: \"%s\" " - -#: ../fileio.c:4655 -#, c-format -msgid "E209: Error closing \"%s\"" -msgstr "E209: \"%s\" ݱ " - -#: ../fileio.c:4657 -#, c-format -msgid "E210: Error reading \"%s\"" -msgstr "E210: \"%s\" б " - -#: ../fileio.c:4883 -msgid "E246: FileChangedShell autocommand deleted buffer" -msgstr "E246: FileChangedShell ڵ ۸ ϴ" - -#: ../fileio.c:4894 -#, c-format -msgid "E211: File \"%s\" no longer available" -msgstr "E211: \"%s\"() ̻ ϴ" - -#: ../fileio.c:4906 -#, c-format -msgid "" -"W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as " -"well" -msgstr "" -"W12: : \"%s\"() ٲ ۵ ٲϴ" - -#: ../fileio.c:4907 -msgid "See \":help W12\" for more info." -msgstr " \":help W12\" Էϼ." - -#: ../fileio.c:4910 -#, c-format -msgid "W11: Warning: File \"%s\" has changed since editing started" -msgstr "W11: : \"%s\"() ġ ڿ ٲϴ" - -#: ../fileio.c:4911 -msgid "See \":help W11\" for more info." -msgstr " \":help W11\" Էϼ." - -#: ../fileio.c:4914 -#, c-format -msgid "W16: Warning: Mode of file \"%s\" has changed since editing started" -msgstr "W16: : \"%s\" ° ġ ڿ ٲϴ" - -#: ../fileio.c:4915 -msgid "See \":help W16\" for more info." -msgstr " \":help W16\" Էϼ." - -#: ../fileio.c:4927 -#, c-format -msgid "W13: Warning: File \"%s\" has been created after editing started" -msgstr "W13: : \"%s\"() ġ ڿ ϴ" - -#: ../fileio.c:4947 -msgid "Warning" -msgstr "" - -#: ../fileio.c:4948 -msgid "" -"&OK\n" -"&Load File" -msgstr "" -"Ȯ(&O)\n" -" ҷ(&L)" - -#: ../fileio.c:5065 -#, c-format -msgid "E462: Could not prepare for reloading \"%s\"" -msgstr "E462: \"%s\" ε带 غ ϴ" - -#: ../fileio.c:5078 -#, c-format -msgid "E321: Could not reload \"%s\"" -msgstr "E321: \"%s\"() ٽ ε ϴ" - -#: ../fileio.c:5601 -msgid "--Deleted--" -msgstr "----" - -#: ../fileio.c:5732 -#, c-format -msgid "auto-removing autocommand: %s <buffer=%d>" -msgstr "autocommand ڵ: %s <buffer=%d>" - -#. the group doesn't exist -#: ../fileio.c:5772 -#, c-format -msgid "E367: No such group: \"%s\"" -msgstr "E367: ̷ : \"%s\"" - -#: ../fileio.c:5897 -#, c-format -msgid "E215: Illegal character after *: %s" -msgstr "E215: * ڿ ̻ : %s" - -#: ../fileio.c:5905 -#, c-format -msgid "E216: No such event: %s" -msgstr "E216: ̺Ʈ : %s" - -#: ../fileio.c:5907 -#, c-format -msgid "E216: No such group or event: %s" -msgstr "E216: ̳ ̺Ʈ : %s" - -#. Highlight title -#: ../fileio.c:6090 -msgid "" -"\n" -"--- Auto-Commands ---" -msgstr "" -"\n" -"--- ڵ- ---" - -#: ../fileio.c:6293 -#, c-format -msgid "E680: <buffer=%d>: invalid buffer number " -msgstr "E680: <buffer=%d>: ߸ ȣ" - -#: ../fileio.c:6370 -msgid "E217: Can't execute autocommands for ALL events" -msgstr "E217: ALL ̺Ʈ ڵ ϴ" - -#: ../fileio.c:6393 -msgid "No matching autocommands" -msgstr "´ ڵ ϴ" - -#: ../fileio.c:6831 -msgid "E218: autocommand nesting too deep" -msgstr "E218: ڵ ʹ øǾϴ" - -#: ../fileio.c:7143 -#, c-format -msgid "%s Auto commands for \"%s\"" -msgstr "" - -#: ../fileio.c:7149 -#, c-format -msgid "Executing %s" -msgstr "%s " - -#: ../fileio.c:7211 -#, c-format -msgid "autocommand %s" -msgstr "ڵ %s" - -#: ../fileio.c:7795 -msgid "E219: Missing {." -msgstr "E219: { ϴ." - -#: ../fileio.c:7797 -msgid "E220: Missing }." -msgstr "E220: } ϴ." - -#: ../fold.c:93 -msgid "E490: No fold found" -msgstr "E490: fold ϴ" - -#: ../fold.c:544 -msgid "E350: Cannot create fold with current 'foldmethod'" -msgstr "E350: 'foldmethod' ⸦ ϴ" - -#: ../fold.c:546 -msgid "E351: Cannot delete fold with current 'foldmethod'" -msgstr "E351: 'foldmethod' ⸦ ϴ" - -#: ../fold.c:1784 -#, c-format -msgid "+--%3ld lines folded " -msgstr "+--%3ld " - -#. buffer has already been read -#: ../getchar.c:273 -msgid "E222: Add to read buffer" -msgstr "E222: ۿ ϱ" - -#: ../getchar.c:2040 -msgid "E223: recursive mapping" -msgstr "E223: " - -#: ../getchar.c:2849 -#, c-format -msgid "E224: global abbreviation already exists for %s" -msgstr "E224: %s ̹ մϴ" - -#: ../getchar.c:2852 -#, c-format -msgid "E225: global mapping already exists for %s" -msgstr "E225: %s ̹ մϴ" - -#: ../getchar.c:2952 -#, c-format -msgid "E226: abbreviation already exists for %s" -msgstr "E226: %s ̹ մϴ" - -#: ../getchar.c:2955 -#, c-format -msgid "E227: mapping already exists for %s" -msgstr "E227: %s ̹ մϴ" - -#: ../getchar.c:3008 -msgid "No abbreviation found" -msgstr " ã ϴ" - -#: ../getchar.c:3010 -msgid "No mapping found" -msgstr " ã ϴ" - -#: ../getchar.c:3974 -msgid "E228: makemap: Illegal mode" -msgstr "E228: makemap: ̻ " - -#. key value of 'cedit' option -#. type of cmdline window or 0 -#. result of cmdline window or 0 -#: ../globals.h:924 -msgid "--No lines in buffer--" -msgstr "--ۿ --" - -#. -#. * The error messages that can be shared are included here. -#. * Excluded are errors that are only used once and debugging messages. -#. -#: ../globals.h:996 -msgid "E470: Command aborted" -msgstr "E470: Ǿϴ" - -#: ../globals.h:997 -msgid "E471: Argument required" -msgstr "E471: ڰ ʿմϴ" - -#: ../globals.h:998 -msgid "E10: \\ should be followed by /, ? or &" -msgstr "E10: /, ? Ȥ & \\ ڿ ; մϴ" - -#: ../globals.h:1000 -msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits" -msgstr "E11: â ߸; <CR> , CTRL-C " - -#: ../globals.h:1002 -msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search" -msgstr "" -"E12: 丮 Ǵ ± ã exrc/vimrc ˴ϴ" - -#: ../globals.h:1003 -msgid "E171: Missing :endif" -msgstr "E171: :endif ϴ" - -#: ../globals.h:1004 -msgid "E600: Missing :endtry" -msgstr "E600: :endtry ϴ" - -#: ../globals.h:1005 -msgid "E170: Missing :endwhile" -msgstr "E170: :endwhile ϴ" - -#: ../globals.h:1006 -msgid "E170: Missing :endfor" -msgstr "E170: :endfor " - -#: ../globals.h:1007 -msgid "E588: :endwhile without :while" -msgstr "E588: :while :endwhile ֽϴ" - -#: ../globals.h:1008 -msgid "E588: :endfor without :for" -msgstr "E588: :for :endfor" - -#: ../globals.h:1009 -msgid "E13: File exists (add ! to override)" -msgstr "E13: ֽϴ ( ! )" - -#: ../globals.h:1010 -msgid "E472: Command failed" -msgstr "E472: ߽ϴ" - -#: ../globals.h:1011 -msgid "E473: Internal error" -msgstr "E473: " - -#: ../globals.h:1012 -msgid "Interrupted" -msgstr "ߴܵǾϴ" - -#: ../globals.h:1013 -msgid "E14: Invalid address" -msgstr "E14: ߸ ּ" - -#: ../globals.h:1014 -msgid "E474: Invalid argument" -msgstr "E474: ߸ " - -#: ../globals.h:1015 -#, c-format -msgid "E475: Invalid argument: %s" -msgstr "E475: ߸ : %s" - -#: ../globals.h:1016 -#, c-format -msgid "E15: Invalid expression: %s" -msgstr "E15: ߸ ǥ: %s" - -#: ../globals.h:1017 -msgid "E16: Invalid range" -msgstr "E16: ߸ " - -#: ../globals.h:1018 -msgid "E476: Invalid command" -msgstr "E476: ߸ " - -#: ../globals.h:1019 -#, c-format -msgid "E17: \"%s\" is a directory" -msgstr "E17: \"%s\"() 丮Դϴ" - -#: ../globals.h:1020 -#, fuzzy -msgid "E900: Invalid job id" -msgstr "E49: ũ ũⰡ ߸Ǿϴ" - -#: ../globals.h:1021 -msgid "E901: Job table is full" -msgstr "" - -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - -#: ../globals.h:1024 -#, c-format -msgid "E364: Library call failed for \"%s()\"" -msgstr "E364: ̺귯 \"%s()\" θ " - -#: ../globals.h:1026 -msgid "E19: Mark has invalid line number" -msgstr "E19: ũ ߸ ȣ ֽϴ" - -#: ../globals.h:1027 -msgid "E20: Mark not set" -msgstr "E20: ũ Ǿ ʽϴ" - -#: ../globals.h:1029 -msgid "E21: Cannot make changes, 'modifiable' is off" -msgstr "E21: ٲ , 'modifiable' ֽϴ" - -#: ../globals.h:1030 -msgid "E22: Scripts nested too deep" -msgstr "E22: ũƮ ʹ øǾϴ" - -#: ../globals.h:1031 -msgid "E23: No alternate file" -msgstr "E23: ٸ ϴ" - -#: ../globals.h:1032 -msgid "E24: No such abbreviation" -msgstr "E24: ϴ" - -#: ../globals.h:1033 -msgid "E477: No ! allowed" -msgstr "E477: ! ʽϴ" - -#: ../globals.h:1035 -msgid "E25: Nvim does not have a built-in GUI" -msgstr "E25: GUI ϴ: Ե ʾҽϴ" - -#: ../globals.h:1036 -#, c-format -msgid "E28: No such highlight group name: %s" -msgstr "E28: ̷ ̶Ʈ ̸ ϴ: %s" - -#: ../globals.h:1037 -msgid "E29: No inserted text yet" -msgstr "E29: Էµ ؽƮ ϴ" - -#: ../globals.h:1038 -msgid "E30: No previous command line" -msgstr "E30: ϴ" - -#: ../globals.h:1039 -msgid "E31: No such mapping" -msgstr "E31: ϴ" - -#: ../globals.h:1040 -msgid "E479: No match" -msgstr "E479: ʽϴ" - -#: ../globals.h:1041 -#, c-format -msgid "E480: No match: %s" -msgstr "E480: : %s" - -#: ../globals.h:1042 -msgid "E32: No file name" -msgstr "E32: ̸ ϴ" - -#: ../globals.h:1044 -msgid "E33: No previous substitute regular expression" -msgstr "E33: ٲٱ ǥ ϴ" - -#: ../globals.h:1045 -msgid "E34: No previous command" -msgstr "E34: ϴ" - -#: ../globals.h:1046 -msgid "E35: No previous regular expression" -msgstr "E35: ǥ ϴ" - -#: ../globals.h:1047 -msgid "E481: No range allowed" -msgstr "E481: ʽϴ" - -#: ../globals.h:1048 -msgid "E36: Not enough room" -msgstr "E36: ʽϴ" - -#: ../globals.h:1049 -#, c-format -msgid "E482: Can't create file %s" -msgstr "E482: %s ϴ" - -#: ../globals.h:1050 -msgid "E483: Can't get temp file name" -msgstr "E483: ӽ ̸ ϴ" - -#: ../globals.h:1051 -#, c-format -msgid "E484: Can't open file %s" -msgstr "E484: %s ϴ" - -#: ../globals.h:1052 -#, c-format -msgid "E485: Can't read file %s" -msgstr "E485: %s ϴ" - -#: ../globals.h:1054 -msgid "E37: No write since last change (add ! to override)" -msgstr "E37: ģ ʾҽϴ (Ϸ ! ϱ)" - -#: ../globals.h:1055 -#, fuzzy -msgid "E37: No write since last change" -msgstr "[ ģ ]\n" - -#: ../globals.h:1056 -msgid "E38: Null argument" -msgstr "E38: " - -#: ../globals.h:1057 -msgid "E39: Number expected" -msgstr "E39: ڰ ʿմϴ" - -#: ../globals.h:1058 -#, c-format -msgid "E40: Can't open errorfile %s" -msgstr "E40: %s() ϴ" - -#: ../globals.h:1059 -msgid "E41: Out of memory!" -msgstr "E41: ٴڳϴ!" - -#: ../globals.h:1060 -msgid "Pattern not found" -msgstr " ã ϴ" - -#: ../globals.h:1061 -#, c-format -msgid "E486: Pattern not found: %s" -msgstr "E486: ã ϴ: %s" - -#: ../globals.h:1062 -msgid "E487: Argument must be positive" -msgstr "E487: ڴ ̾ մϴ" - -#: ../globals.h:1064 -msgid "E459: Cannot go back to previous directory" -msgstr "E459: 丮 ϴ" - -#: ../globals.h:1066 -msgid "E42: No Errors" -msgstr "E42: " - -#: ../globals.h:1067 -msgid "E776: No location list" -msgstr "E776: ġ " - -#: ../globals.h:1068 -msgid "E43: Damaged match string" -msgstr "E43: ´ ڿ" - -#: ../globals.h:1069 -msgid "E44: Corrupted regexp program" -msgstr "E44: ǥ α" - -#: ../globals.h:1071 -msgid "E45: 'readonly' option is set (add ! to override)" -msgstr "E45: 'readonly' ɼ Ǿ ֽϴ ( ! ϱ)" - -#: ../globals.h:1073 -#, c-format -msgid "E46: Cannot change read-only variable \"%s\"" -msgstr "E46: б \"%s\"() ٲ ϴ" - -#: ../globals.h:1075 -#, c-format -msgid "E794: Cannot set variable in the sandbox: \"%s\"" -msgstr "E794: sandbox ȿ : \"%s\"" - -#: ../globals.h:1076 -msgid "E47: Error while reading errorfile" -msgstr "E47: д ߿ " - -#: ../globals.h:1078 -msgid "E48: Not allowed in sandbox" -msgstr "E48: sandbox ʽϴ" - -#: ../globals.h:1080 -msgid "E523: Not allowed here" -msgstr "E523: ʽϴ" - -#: ../globals.h:1082 -msgid "E359: Screen mode setting not supported" -msgstr "E359: ũ ʽϴ" - -#: ../globals.h:1083 -msgid "E49: Invalid scroll size" -msgstr "E49: ũ ũⰡ ߸Ǿϴ" - -#: ../globals.h:1084 -msgid "E91: 'shell' option is empty" -msgstr "E91: 'shell' ɼ ϴ" - -#: ../globals.h:1085 -msgid "E255: Couldn't read in sign data!" -msgstr "E255: sign ڷḦ ϴ" - -#: ../globals.h:1086 -msgid "E72: Close error on swap file" -msgstr "E72: ϴ" - -#: ../globals.h:1087 -msgid "E73: tag stack empty" -msgstr "E73: ± ϴ" - -#: ../globals.h:1088 -msgid "E74: Command too complex" -msgstr "E74: ʹ մϴ" - -#: ../globals.h:1089 -msgid "E75: Name too long" -msgstr "E75: ̸ ʹ ϴ" - -#: ../globals.h:1090 -msgid "E76: Too many [" -msgstr "E76: [ ʹ ϴ" - -#: ../globals.h:1091 -msgid "E77: Too many file names" -msgstr "E77: ̸ ʹ ϴ" - -#: ../globals.h:1092 -msgid "E488: Trailing characters" -msgstr "E488: ڰ ֽϴ" - -#: ../globals.h:1093 -msgid "E78: Unknown mark" -msgstr "E78: ũ" - -#: ../globals.h:1094 -msgid "E79: Cannot expand wildcards" -msgstr "E79: ڸ Ȯ ϴ" - -#: ../globals.h:1096 -msgid "E591: 'winheight' cannot be smaller than 'winminheight'" -msgstr "E591: 'winheight' 'winminheight' Ŀ մϴ" - -#: ../globals.h:1098 -msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'" -msgstr "E592: 'winwidth' 'winminwidth' Ŀ մϴ" - -#: ../globals.h:1099 -msgid "E80: Error while writing" -msgstr "E80: ߿ " - -#: ../globals.h:1100 -msgid "Zero count" -msgstr "Zero count" - -#: ../globals.h:1101 -msgid "E81: Using <SID> not in a script context" -msgstr "E81: ũƮ ؽƮ ۿ <SID> " - -#: ../globals.h:1102 -#, c-format -msgid "E685: Internal error: %s" -msgstr "E685: : %s" - -#: ../globals.h:1104 -msgid "E363: pattern uses more memory than 'maxmempattern'" -msgstr "E363: 'maxmempattern' մϴ" - -#: ../globals.h:1105 -msgid "E749: empty buffer" -msgstr "E749: " - -#: ../globals.h:1108 -msgid "E682: Invalid search pattern or delimiter" -msgstr "E682: ߸ ã Ȥ " - -#: ../globals.h:1109 -msgid "E139: File is loaded in another buffer" -msgstr "E139: ٸ ۿ εǾ ֽϴ" - -#: ../globals.h:1110 -#, c-format -msgid "E764: Option '%s' is not set" -msgstr "E764: ɼ '%s'() Ǿ ʽϴ" - -#: ../globals.h:1111 -#, fuzzy -msgid "E850: Invalid register name" -msgstr "E354: ߸ ̸: '%s'" - -#: ../globals.h:1114 -msgid "search hit TOP, continuing at BOTTOM" -msgstr "ó ã, " - -#: ../globals.h:1115 -msgid "search hit BOTTOM, continuing at TOP" -msgstr " ã, ó " - -#: ../hardcopy.c:240 -msgid "E550: Missing colon" -msgstr "E550: ݷ ϴ" - -#: ../hardcopy.c:252 -msgid "E551: Illegal component" -msgstr "E551: ̻ Ʈ" - -#: ../hardcopy.c:259 -msgid "E552: digit expected" -msgstr "E552: ڰ ʿմϴ" - -#: ../hardcopy.c:473 -#, c-format -msgid "Page %d" -msgstr " %d" - -#: ../hardcopy.c:597 -msgid "No text to be printed" -msgstr "μ ؽƮ ϴ" - -#: ../hardcopy.c:668 -#, c-format -msgid "Printing page %d (%d%%)" -msgstr " %d μ (%d%%)" - -#: ../hardcopy.c:680 -#, c-format -msgid " Copy %d of %d" -msgstr " %d / %d" - -#: ../hardcopy.c:733 -#, c-format -msgid "Printed: %s" -msgstr "μ: %s" - -#: ../hardcopy.c:740 -msgid "Printing aborted" -msgstr "μⰡ ҵǾϴ." - -#: ../hardcopy.c:1365 -msgid "E455: Error writing to PostScript output file" -msgstr "E455: ƮũƮ Ͽ ϴ." - -#: ../hardcopy.c:1747 -#, c-format -msgid "E624: Can't open file \"%s\"" -msgstr "E624: \"%s\" ϴ" - -#: ../hardcopy.c:1756 ../hardcopy.c:2470 -#, c-format -msgid "E457: Can't read PostScript resource file \"%s\"" -msgstr "E457: ƮũƮ ҽ \"%s\"() ϴ" - -#: ../hardcopy.c:1772 -#, c-format -msgid "E618: file \"%s\" is not a PostScript resource file" -msgstr "E618: \"%s\"() ƮũƮ ҽ ƴմϴ" - -#: ../hardcopy.c:1788 ../hardcopy.c:1805 ../hardcopy.c:1844 -#, c-format -msgid "E619: file \"%s\" is not a supported PostScript resource file" -msgstr "E619: \"%s\"() Ǵ ƮũƮ ҽ ƴմϴ" - -#: ../hardcopy.c:1856 -#, c-format -msgid "E621: \"%s\" resource file has wrong version" -msgstr "E621: \"%s\" ҽ ߸Ǿϴ" - -#: ../hardcopy.c:2225 -msgid "E673: Incompatible multi-byte encoding and character set." -msgstr "E673: ȣȯ ʴ ߹ ڵ ڼ." - -#: ../hardcopy.c:2238 -msgid "E674: printmbcharset cannot be empty with multi-byte encoding." -msgstr "E674: printmbcharset ߹ ڵ ݵ Ǿ մϴ." - -#: ../hardcopy.c:2254 -msgid "E675: No default font specified for multi-byte printing." -msgstr "E675: ߹ μ⸦ ۲ Ǿ ʽϴ" - -#: ../hardcopy.c:2426 -msgid "E324: Can't open PostScript output file" -msgstr "E324: ƮũƮ ϴ" - -#: ../hardcopy.c:2458 -#, c-format -msgid "E456: Can't open file \"%s\"" -msgstr "E456: \"%s\" ϴ" - -#: ../hardcopy.c:2583 -msgid "E456: Can't find PostScript resource file \"prolog.ps\"" -msgstr "E456: ƮũƮ ҽ \"prolog.ps\" ã ϴ" - -#: ../hardcopy.c:2593 -msgid "E456: Can't find PostScript resource file \"cidfont.ps\"" -msgstr "E456: ƮũƮ ҽ \"cidfont.ps\" ã ϴ" - -#: ../hardcopy.c:2622 ../hardcopy.c:2639 ../hardcopy.c:2665 -#, c-format -msgid "E456: Can't find PostScript resource file \"%s.ps\"" -msgstr "E456: ƮũƮ ҽ \"%s.ps\" ã ϴ" - -#: ../hardcopy.c:2654 -#, c-format -msgid "E620: Unable to convert to print encoding \"%s\"" -msgstr "E620: \"%s\" μ ڵ ȯ ϴ" - -#: ../hardcopy.c:2877 -msgid "Sending to printer..." -msgstr "ͷ ..." - -#: ../hardcopy.c:2881 -msgid "E365: Failed to print PostScript file" -msgstr "E365: ƮũƮ μ ϴ" - -#: ../hardcopy.c:2883 -msgid "Print job sent." -msgstr "μ۾ ϴ." - -#: ../if_cscope.c:85 -msgid "Add a new database" -msgstr " ͺ̽ ϱ" - -#: ../if_cscope.c:87 -msgid "Query for a pattern" -msgstr "" - -#: ../if_cscope.c:89 -msgid "Show this message" -msgstr " ̱" - -#: ../if_cscope.c:91 -msgid "Kill a connection" -msgstr " " - -#: ../if_cscope.c:93 -msgid "Reinit all connections" -msgstr " ٽ ʱȭ" - -#: ../if_cscope.c:95 -msgid "Show connections" -msgstr " ֱ" - -#: ../if_cscope.c:101 -#, c-format -msgid "E560: Usage: cs[cope] %s" -msgstr "E560: : cs[cope] %s" - -#: ../if_cscope.c:225 -msgid "This cscope command does not support splitting the window.\n" -msgstr " cscope â ⸦ ʽϴ.\n" - -#: ../if_cscope.c:266 -msgid "E562: Usage: cstag <ident>" -msgstr "E562: : cstag <ident>" - -#: ../if_cscope.c:313 -msgid "E257: cstag: tag not found" -msgstr "E257: cstag: ± ã ϴ" - -#: ../if_cscope.c:461 -#, c-format -msgid "E563: stat(%s) error: %d" -msgstr "E563: stat(%s) : %d" - -#: ../if_cscope.c:551 -#, c-format -msgid "E564: %s is not a directory or a valid cscope database" -msgstr "E564: %s() 丮 Ȥ cscope ͺ̽ ƴմϴ" - -#: ../if_cscope.c:566 -#, c-format -msgid "Added cscope database %s" -msgstr "cscope ͺ̽ %s ߽ϴ." - -#: ../if_cscope.c:616 -#, c-format -msgid "E262: error reading cscope connection %<PRId64>" -msgstr "E262: cscope %<PRId64> б " - -#: ../if_cscope.c:711 -msgid "E561: unknown cscope search type" -msgstr "E561: cscope ã " - -#: ../if_cscope.c:752 ../if_cscope.c:789 -msgid "E566: Could not create cscope pipes" -msgstr "E566: cscope ϴ" - -#: ../if_cscope.c:767 -msgid "E622: Could not fork for cscope" -msgstr "E622: cscope fork ϴ" - -#: ../if_cscope.c:849 -#, fuzzy -msgid "cs_create_connection setpgid failed" -msgstr "cs_create_connection ߽ϴ" - -#: ../if_cscope.c:853 ../if_cscope.c:889 -msgid "cs_create_connection exec failed" -msgstr "cs_create_connection ߽ϴ" - -#: ../if_cscope.c:863 ../if_cscope.c:902 -msgid "cs_create_connection: fdopen for to_fp failed" -msgstr "cs_create_connection: to_fp fdopen " - -#: ../if_cscope.c:865 ../if_cscope.c:906 -msgid "cs_create_connection: fdopen for fr_fp failed" -msgstr "cs_create_connection: fr_fp fdopen " - -#: ../if_cscope.c:890 -msgid "E623: Could not spawn cscope process" -msgstr "E623: cscope μ spawn ϴ" - -#: ../if_cscope.c:932 -msgid "E567: no cscope connections" -msgstr "E567: cscope ϴ" - -#: ../if_cscope.c:1009 -#, c-format -msgid "E469: invalid cscopequickfix flag %c for %c" -msgstr "" - -#: ../if_cscope.c:1058 -#, c-format -msgid "E259: no matches found for cscope query %s of %s" -msgstr "" - -#: ../if_cscope.c:1142 -msgid "cscope commands:\n" -msgstr "cscope :\n" - -#: ../if_cscope.c:1150 -#, c-format -msgid "%-5s: %s%*s (Usage: %s)" -msgstr "%-5s: %s%*s (: %s)" - -#: ../if_cscope.c:1155 -msgid "" -"\n" -" c: Find functions calling this function\n" -" d: Find functions called by this function\n" -" e: Find this egrep pattern\n" -" f: Find this file\n" -" g: Find this definition\n" -" i: Find files #including this file\n" -" s: Find this C symbol\n" -" t: Find this text string\n" -msgstr "" -"\n" -" c: Լ θ Լ ã\n" -" d: Լ ҷ Լ ã\n" -" e: egrep ã\n" -" f: ã\n" -" g: ã\n" -" i: ϴ ϵ ã\n" -" s: C ɺ ã\n" -" t: ڿ ã\n" - -#: ../if_cscope.c:1226 -msgid "E568: duplicate cscope database not added" -msgstr "E568: ߺ cscope ͺ̽ ʾҽϴ" - -#: ../if_cscope.c:1335 -#, c-format -msgid "E261: cscope connection %s not found" -msgstr "E261: cscope %s() ã ϴ" - -#: ../if_cscope.c:1364 -#, c-format -msgid "cscope connection %s closed" -msgstr "cscope %s() ϴ" - -#. should not reach here -#: ../if_cscope.c:1486 -msgid "E570: fatal error in cs_manage_matches" -msgstr "E570: cs_manage_matches ɰ " - -#: ../if_cscope.c:1693 -#, c-format -msgid "Cscope tag: %s" -msgstr "Cscope ±: %s" - -#: ../if_cscope.c:1711 -msgid "" -"\n" -" # line" -msgstr "" -"\n" -" # " - -#: ../if_cscope.c:1713 -msgid "filename / context / line\n" -msgstr " ̸ / ؽƮ / \n" - -#: ../if_cscope.c:1809 -#, c-format -msgid "E609: Cscope error: %s" -msgstr "E609: Cscope : %s" - -#: ../if_cscope.c:2053 -msgid "All cscope databases reset" -msgstr " cscope ͺ̽ " - -#: ../if_cscope.c:2123 -msgid "no cscope connections\n" -msgstr "cscope ϴ\n" - -#: ../if_cscope.c:2126 -msgid " # pid database name prepend path\n" -msgstr " # pid ͺ̽ ̸ prepend path\n" - -#: ../main.c:144 -msgid "Unknown option argument" -msgstr " ɼ " - -#: ../main.c:146 -msgid "Too many edit arguments" -msgstr "ʹ " - -#: ../main.c:148 -msgid "Argument missing after" -msgstr "ڿ ڰ " - -#: ../main.c:150 -msgid "Garbage after option argument" -msgstr "ɼ ڿ " - -#: ../main.c:152 -msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments" -msgstr "ʹ \"+command\" \"-c command\" Ȥ \"--cmd command\" " - -#: ../main.c:154 -msgid "Invalid argument for" -msgstr "" - -#: ../main.c:294 -#, c-format -msgid "%d files to edit\n" -msgstr "%d ġ\n" - -#: ../main.c:1342 -msgid "Attempt to open script file again: \"" -msgstr "ũƮ ٽ õ: \"" - -#: ../main.c:1350 -msgid "Cannot open for reading: \"" -msgstr "б : \"" - -#: ../main.c:1393 -msgid "Cannot open for script output: \"" -msgstr "ũƮ : \"" - -#: ../main.c:1622 -msgid "Vim: Warning: Output is not to a terminal\n" -msgstr ": : ̳η ϴ\n" - -#: ../main.c:1624 -msgid "Vim: Warning: Input is not from a terminal\n" -msgstr ": : ̳η Է¹ ϴ\n" - -#. just in case.. -#: ../main.c:1891 -msgid "pre-vimrc command line" -msgstr "pre-vimrc " - -#: ../main.c:1964 -#, c-format -msgid "E282: Cannot read from \"%s\"" -msgstr "E282: \"%s\" ϴ" - -#: ../main.c:2149 -msgid "" -"\n" -"More info with: \"vim -h\"\n" -msgstr "" -"\n" -" Ͻø: \"vim -h\"\n" - -#: ../main.c:2178 -msgid "[file ..] edit specified file(s)" -msgstr "[ ..] ־ ġ" - -#: ../main.c:2179 -msgid "- read text from stdin" -msgstr "- ǥԷ¿ ؽƮ б" - -#: ../main.c:2180 -msgid "-t tag edit file where tag is defined" -msgstr "-t tag ±װ ǵ ġ ġ" - -#: ../main.c:2181 -msgid "-q [errorfile] edit file with first error" -msgstr "-q [] ù ° ġ" - -#: ../main.c:2187 -msgid "" -"\n" -"\n" -"usage:" -msgstr "" -"\n" -"\n" -":" - -#: ../main.c:2189 -msgid " vim [arguments] " -msgstr " vim [] " - -#: ../main.c:2193 -msgid "" -"\n" -" or:" -msgstr "" -"\n" -" Ȥ:" - -#: ../main.c:2196 -msgid "" -"\n" -"\n" -"Arguments:\n" -msgstr "" -"\n" -"\n" -":\n" - -#: ../main.c:2197 -msgid "--\t\t\tOnly file names after this" -msgstr "--\t\t\t ڿ ̸" - -#: ../main.c:2199 -msgid "--literal\t\tDon't expand wildcards" -msgstr "--literal\t\tϵī带 Ȯ " - -#: ../main.c:2201 -msgid "-v\t\t\tVi mode (like \"vi\")" -msgstr "-v\t\t\tVi (\"vi\" )" - -#: ../main.c:2202 -msgid "-e\t\t\tEx mode (like \"ex\")" -msgstr "-e\t\t\tEx (\"ex\" )" - -#: ../main.c:2203 -msgid "-E\t\t\tImproved Ex mode" -msgstr "" - -#: ../main.c:2204 -msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")" -msgstr "-s\t\t\t (ġ) (\"ex\")" - -#: ../main.c:2205 -msgid "-d\t\t\tDiff mode (like \"vimdiff\")" -msgstr "-d\t\t\tDiff (\"vimdiff\" )" - -#: ../main.c:2206 -msgid "-y\t\t\tEasy mode (like \"evim\", modeless)" -msgstr "-y\t\t\t (\"evim\" , modeless)" - -#: ../main.c:2207 -msgid "-R\t\t\tReadonly mode (like \"view\")" -msgstr "-R\t\t\tб (\"view\" )" - -#: ../main.c:2208 -msgid "-Z\t\t\tRestricted mode (like \"rvim\")" -msgstr "-Z\t\t\tѵ (\"rvim\" )" - -#: ../main.c:2209 -msgid "-m\t\t\tModifications (writing files) not allowed" -msgstr "-m\t\t\t( ) " - -#: ../main.c:2210 -msgid "-M\t\t\tModifications in text not allowed" -msgstr "-M\t\t\tؽƮ " - -#: ../main.c:2211 -msgid "-b\t\t\tBinary mode" -msgstr "-b\t\t\t " - -#: ../main.c:2212 -msgid "-l\t\t\tLisp mode" -msgstr "-l\t\t\t " - -#: ../main.c:2213 -msgid "-C\t\t\tCompatible with Vi: 'compatible'" -msgstr "-C\t\t\tVi ȣȯ: 'compatible'" - -#: ../main.c:2214 -msgid "-N\t\t\tNot fully Vi compatible: 'nocompatible'" -msgstr "-N\t\t\tVi ȣȯ : 'nocompatible'" - -#: ../main.c:2215 -msgid "-V[N][fname]\t\tBe verbose [level N] [log messages to fname]" -msgstr "" - -#: ../main.c:2216 -msgid "-D\t\t\tDebugging mode" -msgstr "-D\t\t\t " - -#: ../main.c:2217 -msgid "-n\t\t\tNo swap file, use memory only" -msgstr "-n\t\t\t " - -#: ../main.c:2218 -msgid "-r\t\t\tList swap files and exit" -msgstr "-r\t\t\t ǥ " - -#: ../main.c:2219 -msgid "-r (with file name)\tRecover crashed session" -msgstr "-r ( ̸ Բ)\tļյǾ " - -#: ../main.c:2220 -msgid "-L\t\t\tSame as -r" -msgstr "-L\t\t\t-r " - -#: ../main.c:2221 -msgid "-A\t\t\tstart in Arabic mode" -msgstr "-A\t\t\tArabic " - -#: ../main.c:2222 -msgid "-H\t\t\tStart in Hebrew mode" -msgstr "-H\t\t\tHebrew " - -#: ../main.c:2223 -msgid "-F\t\t\tStart in Farsi mode" -msgstr "-F\t\t\tFarsi " - -#: ../main.c:2224 -msgid "-T <terminal>\tSet terminal type to <terminal>" -msgstr "-T <terminal>\t̳ <terminal> " - -#: ../main.c:2225 -msgid "-u <vimrc>\t\tUse <vimrc> instead of any .vimrc" -msgstr "-u <vimrc>\t\t.vimrc <vimrc> " - -#: ../main.c:2226 -msgid "--noplugin\t\tDon't load plugin scripts" -msgstr "--noplugin\t\t÷ ũƮ ҷ " - -#: ../main.c:2227 -msgid "-p[N]\t\tOpen N tab pages (default: one for each file)" -msgstr "-p[N]\t\tN (⺻: Ϻ ϳ)" - -#: ../main.c:2228 -msgid "-o[N]\t\tOpen N windows (default: one for each file)" -msgstr "-o[N]\t\tN â (⺻: Ϻ ϳ)" - -#: ../main.c:2229 -msgid "-O[N]\t\tLike -o but split vertically" -msgstr "-O[N]\t\t-o â " - -#: ../main.c:2230 -msgid "+\t\t\tStart at end of file" -msgstr "+\t\t\t " - -#: ../main.c:2231 -msgid "+<lnum>\t\tStart at line <lnum>" -msgstr "+<lnum>\t\t<lnum> ٿ " - -#: ../main.c:2232 -msgid "--cmd <command>\tExecute <command> before loading any vimrc file" -msgstr "--cmd <>\tvimrc б <> " - -#: ../main.c:2233 -msgid "-c <command>\t\tExecute <command> after loading the first file" -msgstr "-c <>\t\tù° <> " - -#: ../main.c:2235 -msgid "-S <session>\t\tSource file <session> after loading the first file" -msgstr "-S <>\t\tù° <> ҷ ̱" - -#: ../main.c:2236 -msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>" -msgstr "-s <scriptin>\t<scriptin> Ͽ Normal б" - -#: ../main.c:2237 -msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>" -msgstr "-w <scriptout>\t Էµ <scriptout> Ͽ ߰" - -#: ../main.c:2238 -msgid "-W <scriptout>\tWrite all typed commands to file <scriptout>" -msgstr "-W <scriptout>\t Էµ <scriptout> Ͽ " - -#: ../main.c:2240 -msgid "--startuptime <file>\tWrite startup timing messages to <file>" -msgstr "--startuptime <file>\tstartup timing <file> " - -#: ../main.c:2242 -msgid "-i <viminfo>\t\tUse <viminfo> instead of .viminfo" -msgstr "-i <viminfo>\t\t.viminfo <viminfo> " - -#: ../main.c:2243 -msgid "-h or --help\tPrint Help (this message) and exit" -msgstr "-h Ȥ --help\t( ) " - -#: ../main.c:2244 -msgid "--version\t\tPrint version information and exit" -msgstr "--version\t\t " - -#: ../mark.c:676 -msgid "No marks set" -msgstr " ũ ϴ" - -#: ../mark.c:678 -#, c-format -msgid "E283: No marks matching \"%s\"" -msgstr "E283: \"%s\" ´ ũ ϴ" - -#. Highlight title -#: ../mark.c:687 -msgid "" -"\n" -"mark line col file/text" -msgstr "" -"\n" -"ũ col /ؽƮ" - -#. Highlight title -#: ../mark.c:789 -msgid "" -"\n" -" jump line col file/text" -msgstr "" -"\n" -" col /ؽƮ" - -#. Highlight title -#: ../mark.c:831 -msgid "" -"\n" -"change line col text" -msgstr "" - -#: ../mark.c:1238 -msgid "" -"\n" -"# File marks:\n" -msgstr "" -"\n" -"# ũ:\n" - -#. Write the jumplist with -' -#: ../mark.c:1271 -msgid "" -"\n" -"# Jumplist (newest first):\n" -msgstr "" -"\n" -"# ( ):\n" - -#: ../mark.c:1352 -msgid "" -"\n" -"# History of marks within files (newest to oldest):\n" -msgstr "" -"\n" -"# ϳ ũ 丮 (ͺ ):\n" - -#: ../mark.c:1431 -msgid "Missing '>'" -msgstr "'>' ϴ" - -#: ../memfile.c:426 -msgid "E293: block was not locked" -msgstr "E293: ʾҽϴ" - -#: ../memfile.c:799 -msgid "E294: Seek error in swap file read" -msgstr "E294: б Ư ġ ϴ" - -#: ../memfile.c:803 -msgid "E295: Read error in swap file" -msgstr "E295: ϴ" - -#: ../memfile.c:849 -msgid "E296: Seek error in swap file write" -msgstr "E296: Ư ġ ϴ" - -#: ../memfile.c:865 -msgid "E297: Write error in swap file" -msgstr "E297: ϴ" - -#: ../memfile.c:1036 -msgid "E300: Swap file already exists (symlink attack?)" -msgstr "E300: ̹ մϴ (symlink ?)" - -#: ../memline.c:318 -msgid "E298: Didn't get block nr 0?" -msgstr "E298: ȣ 0 ߳?" - -#: ../memline.c:361 -msgid "E298: Didn't get block nr 1?" -msgstr "E298: ȣ 1 ߳?" - -#: ../memline.c:377 -msgid "E298: Didn't get block nr 2?" -msgstr "E298: ȣ 2 ߳?" - -#. could not (re)open the swap file, what can we do???? -#: ../memline.c:465 -msgid "E301: Oops, lost the swap file!!!" -msgstr "E301: , ҾȽϴ!!!" - -#: ../memline.c:477 -msgid "E302: Could not rename swap file" -msgstr "E302: ̸ ٲ ϴ" - -#: ../memline.c:554 -#, c-format -msgid "E303: Unable to open swap file for \"%s\", recovery impossible" -msgstr "E303: \"%s\" Ұմϴ" - -#: ../memline.c:666 -msgid "E304: ml_upd_block0(): Didn't get block 0??" -msgstr "E304: ml_upd_block0(): 0 ߳??" - -#. no swap files found -#: ../memline.c:830 -#, c-format -msgid "E305: No swap file found for %s" -msgstr "E305: %s ã ϴ" - -#: ../memline.c:839 -msgid "Enter number of swap file to use (0 to quit): " -msgstr " ȣ ԷϽʽÿ (0 ): " - -#: ../memline.c:879 -#, c-format -msgid "E306: Cannot open %s" -msgstr "E306: %s() ϴ" - -#: ../memline.c:897 -msgid "Unable to read block 0 from " -msgstr "Unable to read block 0 from " - -#: ../memline.c:900 -msgid "" -"\n" -"Maybe no changes were made or Vim did not update the swap file." -msgstr "" -"\n" -" ų ϴ." - -#: ../memline.c:909 -msgid " cannot be used with this version of Vim.\n" -msgstr " cannot be used with this version of Vim.\n" - -#: ../memline.c:911 -msgid "Use Vim version 3.0.\n" -msgstr " 3.0 Ͻʽÿ.\n" - -#: ../memline.c:916 -#, c-format -msgid "E307: %s does not look like a Vim swap file" -msgstr "E307: %s() ƴ ϴ" - -#: ../memline.c:922 -msgid " cannot be used on this computer.\n" -msgstr " ǻͿ ϴ.\n" - -#: ../memline.c:924 -msgid "The file was created on " -msgstr "" - -#: ../memline.c:928 -msgid "" -",\n" -"or the file has been damaged." -msgstr "" - -#: ../memline.c:945 -msgid " has been damaged (page size is smaller than minimum value).\n" -msgstr "" - -#: ../memline.c:974 -#, c-format -msgid "Using swap file \"%s\"" -msgstr " \"%s\"() մϴ" - -#: ../memline.c:980 -#, c-format -msgid "Original file \"%s\"" -msgstr " \"%s\"" - -#: ../memline.c:995 -msgid "E308: Warning: Original file may have been changed" -msgstr "E308: : ٲϴ" - -#: ../memline.c:1061 -#, c-format -msgid "E309: Unable to read block 1 from %s" -msgstr "E309: %s 1 ϴ" - -#: ../memline.c:1065 -msgid "???MANY LINES MISSING" -msgstr "??? Ҿ" - -#: ../memline.c:1076 -msgid "???LINE COUNT WRONG" -msgstr "??? ȣ ߸Ǿϴ" - -#: ../memline.c:1082 -msgid "???EMPTY BLOCK" -msgstr "??? " - -#: ../memline.c:1103 -msgid "???LINES MISSING" -msgstr "??? Ҿ" - -#: ../memline.c:1128 -#, c-format -msgid "E310: Block 1 ID wrong (%s not a .swp file?)" -msgstr "E310: 1 ID ߸Ǿϴ (%s() .swp ƴѰ?)" - -#: ../memline.c:1133 -msgid "???BLOCK MISSING" -msgstr "??? Ҿ" - -#: ../memline.c:1147 -msgid "??? from here until ???END lines may be messed up" -msgstr "??? ??? ϴ" - -#: ../memline.c:1164 -msgid "??? from here until ???END lines may have been inserted/deleted" -msgstr "??? ??? ų ϴ" - -#: ../memline.c:1181 -msgid "???END" -msgstr "???" - -#: ../memline.c:1238 -msgid "E311: Recovery Interrupted" -msgstr "E311: ߴܵǾϴ" - -#: ../memline.c:1243 -msgid "" -"E312: Errors detected while recovering; look for lines starting with ???" -msgstr "E312: ϴ; ??? ϴ ãƺʽÿ" - -#: ../memline.c:1245 -msgid "See \":help E312\" for more information." -msgstr " \":help E312\" Էϼ." - -#: ../memline.c:1249 -msgid "Recovery completed. You should check if everything is OK." -msgstr " ϴ. Ȯ ž߸ մϴ." - -#: ../memline.c:1251 -msgid "" -"\n" -"(You might want to write out this file under another name\n" -msgstr "" -"\n" -"(¼ ٸ ̸ ϰ ڽϴ\n" - -#: ../memline.c:1252 -msgid "and run diff with the original file to check for changes)" -msgstr " ٲ ȮϷ Ͽ diff ϼ)" - -#: ../memline.c:1254 -msgid "Recovery completed. Buffer contents equals file contents." -msgstr " ϴ. ϴ." - -#: ../memline.c:1255 -msgid "" -"\n" -"You may want to delete the .swp file now.\n" -"\n" -msgstr "" -"\n" -" .swp ŵ ˴ϴ.\n" -"\n" - -#. use msg() to start the scrolling properly -#: ../memline.c:1327 -msgid "Swap files found:" -msgstr " ã:" - -#: ../memline.c:1446 -msgid " In current directory:\n" -msgstr " 丮:\n" - -#: ../memline.c:1448 -msgid " Using specified name:\n" -msgstr " õ ̸ :\n" - -#: ../memline.c:1450 -msgid " In directory " -msgstr " In directory " - -#: ../memline.c:1465 -msgid " -- none --\n" -msgstr " -- --\n" - -#: ../memline.c:1527 -msgid " owned by: " -msgstr " : " - -#: ../memline.c:1529 -msgid " dated: " -msgstr " ¥: " - -#: ../memline.c:1532 ../memline.c:3231 -msgid " dated: " -msgstr " ¥: " - -#: ../memline.c:1548 -msgid " [from Vim version 3.0]" -msgstr " [ 3.0 ]" - -#: ../memline.c:1550 -msgid " [does not look like a Vim swap file]" -msgstr " [ Ϸ ʽϴ]" - -#: ../memline.c:1552 -msgid " file name: " -msgstr " ̸: " - -#: ../memline.c:1558 -msgid "" -"\n" -" modified: " -msgstr "" -"\n" -" : " - -#: ../memline.c:1559 -msgid "YES" -msgstr "" - -#: ../memline.c:1559 -msgid "no" -msgstr "ƴϿ" - -#: ../memline.c:1562 -msgid "" -"\n" -" user name: " -msgstr "" -"\n" -" ̸: " - -#: ../memline.c:1568 -msgid " host name: " -msgstr " ȣƮ ̸: " - -#: ../memline.c:1570 -msgid "" -"\n" -" host name: " -msgstr "" -"\n" -" ȣƮ ̸: " - -#: ../memline.c:1575 -msgid "" -"\n" -" process ID: " -msgstr "" -"\n" -" μ ID: " - -#: ../memline.c:1579 -msgid " (still running)" -msgstr " ( )" - -#: ../memline.c:1586 -msgid "" -"\n" -" [not usable on this computer]" -msgstr "" -"\n" -" [ ǻͿ ]" - -#: ../memline.c:1590 -msgid " [cannot be read]" -msgstr " [ ]" - -#: ../memline.c:1593 -msgid " [cannot be opened]" -msgstr " [ ]" - -#: ../memline.c:1698 -msgid "E313: Cannot preserve, there is no swap file" -msgstr "E313: ϴ, ϴ" - -#: ../memline.c:1747 -msgid "File preserved" -msgstr " Ǿϴ" - -#: ../memline.c:1749 -msgid "E314: Preserve failed" -msgstr "E314: ߽ϴ" - -#: ../memline.c:1819 -#, c-format -msgid "E315: ml_get: invalid lnum: %<PRId64>" -msgstr "E315: ml_get: ߸ lnum: %<PRId64>" - -#: ../memline.c:1851 -#, c-format -msgid "E316: ml_get: cannot find line %<PRId64>" -msgstr "E316: ml_get: %<PRId64> ã ϴ" - -#: ../memline.c:2236 -msgid "E317: pointer block id wrong 3" -msgstr "E317: ߸ id 3" - -#: ../memline.c:2311 -msgid "stack_idx should be 0" -msgstr "stack_idx 0߸ մϴ" - -#: ../memline.c:2369 -msgid "E318: Updated too many blocks?" -msgstr "E318: ʹ ŵǾ?" - -#: ../memline.c:2511 -msgid "E317: pointer block id wrong 4" -msgstr "E317: ߸ id 4" - -#: ../memline.c:2536 -msgid "deleted block 1?" -msgstr " 1 ?" - -#: ../memline.c:2707 -#, c-format -msgid "E320: Cannot find line %<PRId64>" -msgstr "E320: %<PRId64> ã ϴ" - -#: ../memline.c:2916 -msgid "E317: pointer block id wrong" -msgstr "E317: ߸ id" - -#: ../memline.c:2930 -msgid "pe_line_count is zero" -msgstr "pe_line_count 0Դϴ" - -#: ../memline.c:2955 -#, c-format -msgid "E322: line number out of range: %<PRId64> past the end" -msgstr "E322: ȣ ϴ: %<PRId64> ŭ" - -#: ../memline.c:2959 -#, c-format -msgid "E323: line count wrong in block %<PRId64>" -msgstr "E323: %<PRId64> ƲȽϴ" - -#: ../memline.c:2999 -msgid "Stack size increases" -msgstr " ũ " - -#: ../memline.c:3038 -msgid "E317: pointer block id wrong 2" -msgstr "E317: ߸ id 2" - -#: ../memline.c:3070 -#, c-format -msgid "E773: Symlink loop for \"%s\"" -msgstr "" - -#: ../memline.c:3221 -msgid "E325: ATTENTION" -msgstr "E325: ָ" - -#: ../memline.c:3222 -msgid "" -"\n" -"Found a swap file by the name \"" -msgstr "" -"\n" -"Found a swap file by the name \"" - -#: ../memline.c:3226 -msgid "While opening file \"" -msgstr "While opening file \"" - -#: ../memline.c:3239 -msgid " NEWER than swap file!\n" -msgstr " NEWER than swap file!\n" - -#: ../memline.c:3244 -#, fuzzy -msgid "" -"\n" -"(1) Another program may be editing the same file. If this is the case,\n" -" be careful not to end up with two different instances of the same\n" -" file when making changes." -msgstr "" -"\n" -"(1) ٸ α ġ ִ ֽϴ.\n" -" ٸ α ġ\n" -" ʵ Ͻñ ٶϴ.\n" - -#: ../memline.c:3245 -#, fuzzy -msgid " Quit, or continue with caution.\n" -msgstr " ų Ͻ÷ Ͻʽÿ.\n" - -#: ../memline.c:3246 -#, fuzzy -msgid "(2) An edit session for this file crashed.\n" -msgstr "" -"\n" -"(2) ġٰ ϴ.\n" - -#: ../memline.c:3247 -msgid " If this is the case, use \":recover\" or \"vim -r " -msgstr " ٸ \":recover\" Ȥ \"vim -r " - -#: ../memline.c:3249 -msgid "" -"\"\n" -" to recover the changes (see \":help recovery\").\n" -msgstr "" -"\"\n" -" Ͽ Ͻʽÿ (\":help recovery\" ).\n" - -#: ../memline.c:3250 -msgid " If you did this already, delete the swap file \"" -msgstr " ̹ ϼ̾ٸ \"" - -#: ../memline.c:3252 -msgid "" -"\"\n" -" to avoid this message.\n" -msgstr "" -"\"\n" -" () ž ϴ.\n" - -#: ../memline.c:3450 ../memline.c:3452 -msgid "Swap file \"" -msgstr " \"" - -#: ../memline.c:3451 ../memline.c:3455 -msgid "\" already exists!" -msgstr "\" ̹ մϴ!" - -#: ../memline.c:3457 -msgid "VIM - ATTENTION" -msgstr " - ָ" - -#: ../memline.c:3459 -msgid "Swap file already exists!" -msgstr " ̹ մϴ!" - -#: ../memline.c:3464 -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Quit\n" -"&Abort" -msgstr "" -"б (&O)\n" -"׳ ġ(&E)\n" -"(&R)\n" -"(&Q)\n" -"(&A)" - -#: ../memline.c:3467 -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Delete it\n" -"&Quit\n" -"&Abort" -msgstr "" -"б (&O)\n" -" (&E)\n" -"(&R)\n" -"(&D)\n" -"(&Q)\n" -"(&A)" - -#. -#. * Change the ".swp" extension to find another file that can be used. -#. * First decrement the last char: ".swo", ".swn", etc. -#. * If that still isn't enough decrement the last but one char: ".svz" -#. * Can happen when editing many "No Name" buffers. -#. -#. ".s?a" -#. ".saa": tried enough, give up -#: ../memline.c:3528 -msgid "E326: Too many swap files found" -msgstr "E326: ʹ ߰ߵǾϴ" - -#: ../memory.c:227 -#, c-format -msgid "E342: Out of memory! (allocating %<PRIu64> bytes)" -msgstr "E342: ! (%<PRIu64> Ʈ Ҵ)" - -#: ../menu.c:62 -msgid "E327: Part of menu-item path is not sub-menu" -msgstr "E327: κ ƴմϴ" - -#: ../menu.c:63 -msgid "E328: Menu only exists in another mode" -msgstr "E328: ٸ 忡 մϴ" - -#: ../menu.c:64 -#, c-format -msgid "E329: No menu \"%s\"" -msgstr "E329: \"%s\" " - -#. Only a mnemonic or accelerator is not valid. -#: ../menu.c:329 -msgid "E792: Empty menu name" -msgstr "E792: ̸ " - -#: ../menu.c:340 -msgid "E330: Menu path must not lead to a sub-menu" -msgstr "E330: տ ΰ ϴ" - -#: ../menu.c:365 -msgid "E331: Must not add menu items directly to menu bar" -msgstr "E331: ٿ ٷ ϴ" - -#: ../menu.c:370 -msgid "E332: Separator cannot be part of a menu path" -msgstr "E332: ڴ κ ϴ" - -#. Now we have found the matching menu, and we list the mappings -#. Highlight title -#: ../menu.c:762 -msgid "" -"\n" -"--- Menus ---" -msgstr "" -"\n" -"--- ---" - -#: ../menu.c:1313 -msgid "E333: Menu path must lead to a menu item" -msgstr "E333: տ ΰ ־ մϴ" - -#: ../menu.c:1330 -#, c-format -msgid "E334: Menu not found: %s" -msgstr "E334: ã ϴ: %s" - -#: ../menu.c:1396 -#, c-format -msgid "E335: Menu not defined for %s mode" -msgstr "E335: %s 忡 ǵǾ ʽϴ" - -#: ../menu.c:1426 -msgid "E336: Menu path must lead to a sub-menu" -msgstr "E336: տ ΰ ־ մϴ" - -#: ../menu.c:1447 -msgid "E337: Menu not found - check menu names" -msgstr "E337: ã - ̸ ȮϽʽÿ" - -#: ../message.c:423 -#, c-format -msgid "Error detected while processing %s:" -msgstr "%s ߰:" - -#: ../message.c:445 -#, c-format -msgid "line %4ld:" -msgstr "%4ld :" - -#: ../message.c:617 -#, c-format -msgid "E354: Invalid register name: '%s'" -msgstr "E354: ߸ ̸: '%s'" - -#: ../message.c:986 -msgid "Interrupt: " -msgstr "ߴ: " - -#: ../message.c:988 -msgid "Press ENTER or type command to continue" -msgstr "Ϸ Ȥ ԷϽʽÿ" - -#: ../message.c:1843 -#, c-format -msgid "%s line %<PRId64>" -msgstr "%s %<PRId64>" - -#: ../message.c:2392 -msgid "-- More --" -msgstr "-- --" - -#: ../message.c:2398 -msgid " SPACE/d/j: screen/page/line down, b/u/k: up, q: quit " -msgstr " SPACE/d/j: ȭ// Ʒ, b/u/k: , q: " - -#: ../message.c:3021 ../message.c:3031 -msgid "Question" -msgstr "" - -#: ../message.c:3023 -msgid "" -"&Yes\n" -"&No" -msgstr "" -"(&Y)\n" -"ƴϿ(&N)" - -#: ../message.c:3033 -msgid "" -"&Yes\n" -"&No\n" -"&Cancel" -msgstr "" -"(&Y)\n" -"ƴϿ(&N)\n" -"(&C)" - -#: ../message.c:3045 -msgid "" -"&Yes\n" -"&No\n" -"Save &All\n" -"&Discard All\n" -"&Cancel" -msgstr "" -"(&Y)\n" -"ƴϿ(&N)\n" -" (&A)\n" -" (&D)\n" -"(&C)" - -#: ../message.c:3058 -msgid "E766: Insufficient arguments for printf()" -msgstr "E766: printf() Ѿ " - -#: ../message.c:3119 -msgid "E807: Expected Float argument for printf()" -msgstr "E807: printf() Float " - -#: ../message.c:3873 -msgid "E767: Too many arguments to printf()" -msgstr "E767: printf() ʹ Ѿ" - -#: ../misc1.c:2256 -msgid "W10: Warning: Changing a readonly file" -msgstr "W10: : б ġ ֽϴ" - -#: ../misc1.c:2537 -msgid "Type number and <Enter> or click with mouse (empty cancels): " -msgstr " Է <> 콺 Ŭ (ھ ): " - -#: ../misc1.c:2539 -msgid "Type number and <Enter> (empty cancels): " -msgstr " Է <> (ھ ): " - -#: ../misc1.c:2585 -msgid "1 more line" -msgstr " ̻" - -#: ../misc1.c:2588 -msgid "1 line less" -msgstr " " - -#: ../misc1.c:2593 -#, c-format -msgid "%<PRId64> more lines" -msgstr "%<PRId64> " - -#: ../misc1.c:2596 -#, c-format -msgid "%<PRId64> fewer lines" -msgstr "%<PRId64> " - -#: ../misc1.c:2599 -msgid " (Interrupted)" -msgstr " (ߴܵǾϴ)" - -#: ../misc1.c:2635 -msgid "Beep!" -msgstr "!" - -#: ../misc2.c:738 -#, c-format -msgid "Calling shell to execute: \"%s\"" -msgstr "Ϸ θ: \"%s\"" - -#: ../normal.c:183 -msgid "E349: No identifier under cursor" -msgstr "E349: Ŀ ؿ ĺڰ ϴ" - -#: ../normal.c:1866 -msgid "E774: 'operatorfunc' is empty" -msgstr "E774: 'operatorfunc' ֽϴ" - -#: ../normal.c:2637 -msgid "Warning: terminal cannot highlight" -msgstr ": ̳ ¸ ǥ ϴ" - -#: ../normal.c:2807 -msgid "E348: No string under cursor" -msgstr "E348: Ŀ ؿ ڿ ϴ" - -#: ../normal.c:3937 -msgid "E352: Cannot erase folds with current 'foldmethod'" -msgstr "E352: 'foldmethod' ⸦ ϴ" - -#: ../normal.c:5897 -msgid "E664: changelist is empty" -msgstr "E664: changelist ϴ" - -#: ../normal.c:5899 -msgid "E662: At start of changelist" -msgstr "" - -#: ../normal.c:5901 -msgid "E663: At end of changelist" -msgstr "" - -#: ../normal.c:7053 -msgid "Type :quit<Enter> to exit Nvim" -msgstr "VIM ġ :quit<Enter> Է" - -#: ../ops.c:248 -#, c-format -msgid "1 line %sed 1 time" -msgstr "1 line %sed 1 time" - -#: ../ops.c:250 -#, c-format -msgid "1 line %sed %d times" -msgstr "1 line %sed %d times" - -#: ../ops.c:253 -#, c-format -msgid "%<PRId64> lines %sed 1 time" -msgstr "%<PRId64> lines %sed 1 time" - -#: ../ops.c:256 -#, c-format -msgid "%<PRId64> lines %sed %d times" -msgstr "%<PRId64> lines %sed %d times" - -#: ../ops.c:592 -#, c-format -msgid "%<PRId64> lines to indent... " -msgstr "%<PRId64> lines to indent... " - -#: ../ops.c:634 -msgid "1 line indented " -msgstr "1 line indented " - -#: ../ops.c:636 -#, c-format -msgid "%<PRId64> lines indented " -msgstr "%<PRId64> lines indented " - -#: ../ops.c:938 -msgid "E748: No previously used register" -msgstr "" - -#. must display the prompt -#: ../ops.c:1433 -msgid "cannot yank; delete anyway" -msgstr "cannot yank; delete anyway" - -#: ../ops.c:1929 -msgid "1 line changed" -msgstr "1 line changed" - -#: ../ops.c:1931 -#, c-format -msgid "%<PRId64> lines changed" -msgstr "%<PRId64> lines changed" - -#: ../ops.c:2521 -msgid "block of 1 line yanked" -msgstr "block of 1 line yanked" - -#: ../ops.c:2523 -msgid "1 line yanked" -msgstr "1 line yanked" - -#: ../ops.c:2525 -#, c-format -msgid "block of %<PRId64> lines yanked" -msgstr "block of %<PRId64> lines yanked" - -#: ../ops.c:2528 -#, c-format -msgid "%<PRId64> lines yanked" -msgstr "%<PRId64> lines yanked" - -#: ../ops.c:2710 -#, c-format -msgid "E353: Nothing in register %s" -msgstr "E353: %s Ϳ ƹ ͵ ϴ" - -#. Highlight title -#: ../ops.c:3185 -msgid "" -"\n" -"--- Registers ---" -msgstr "" -"\n" -"--- ---" - -#: ../ops.c:4455 -msgid "Illegal register name" -msgstr "̻ ̸" - -#: ../ops.c:4533 -msgid "" -"\n" -"# Registers:\n" -msgstr "" -"\n" -"# :\n" - -#: ../ops.c:4575 -#, c-format -msgid "E574: Unknown register type %d" -msgstr "E574: %d" - -#: ../ops.c:5089 -#, c-format -msgid "%<PRId64> Cols; " -msgstr "%<PRId64> ; " - -#: ../ops.c:5097 -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Bytes" -msgstr "" -"Selected %s%<PRId64> of %<PRId64> ; %<PRId64> of %<PRId64> ܾ; " -"%<PRId64> of %<PRId64> Ʈ" - -#: ../ops.c:5105 -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Chars; %<PRId64> of %<PRId64> Bytes" -msgstr "" -"Selected %s%<PRId64> of %<PRId64> ; %<PRId64> of %<PRId64> ܾ; " -"%<PRId64> of %<PRId64> ; %<PRId64> of %<PRId64> Ʈ" - -#: ../ops.c:5123 -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Byte " -"%<PRId64> of %<PRId64>" -msgstr "" -"Col %s of %s; %<PRId64> of %<PRId64>; ܾ %<PRId64> of %<PRId64>; " -"Ʈ %<PRId64> of %<PRId64>" - -#: ../ops.c:5133 -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Char " -"%<PRId64> of %<PRId64>; Byte %<PRId64> of %<PRId64>" -msgstr "" -"Col %s of %s; %<PRId64> of %<PRId64>; ܾ %<PRId64> of %<PRId64>; " -"%<PRId64> of %<PRId64>; Ʈ %<PRId64> of %<PRId64>" - -#: ../ops.c:5146 -#, c-format -msgid "(+%<PRId64> for BOM)" -msgstr "(+%<PRId64> for BOM)" - -#: ../option.c:1238 -msgid "%<%f%h%m%=Page %N" -msgstr "%<%f%h%m%= %N" - -#: ../option.c:1574 -msgid "Thanks for flying Vim" -msgstr " ּż ϴ" - -#. found a mismatch: skip -#: ../option.c:2698 -msgid "E518: Unknown option" -msgstr "E518: ɼ" - -#: ../option.c:2709 -msgid "E519: Option not supported" -msgstr "E519: ʴ ɼԴϴ" - -#: ../option.c:2740 -msgid "E520: Not allowed in a modeline" -msgstr "E520: ο ϴ" - -#: ../option.c:2815 -msgid "E846: Key code not set" -msgstr "" - -#: ../option.c:2924 -msgid "E521: Number required after =" -msgstr "E521: = ڿ ڰ ʿմϴ" - -#: ../option.c:3226 ../option.c:3864 -msgid "E522: Not found in termcap" -msgstr "E522: termcap ã ϴ" - -#: ../option.c:3335 -#, c-format -msgid "E539: Illegal character <%s>" -msgstr "E539: ̻ <%s>" - -#: ../option.c:3862 -msgid "E529: Cannot set 'term' to empty string" -msgstr "E529: 'term' ڿ ϴ" - -#: ../option.c:3885 -msgid "E589: 'backupext' and 'patchmode' are equal" -msgstr "E589: 'backupext' 'patchmode' մϴ" - -#: ../option.c:3964 -msgid "E834: Conflicts with value of 'listchars'" -msgstr "E834: 'listchars' 浹 մϴ" - -#: ../option.c:3966 -msgid "E835: Conflicts with value of 'fillchars'" -msgstr "E835: 'fillchars' 浹 մϴ" - -#: ../option.c:4163 -msgid "E524: Missing colon" -msgstr "E524: ݷ ϴ" - -#: ../option.c:4165 -msgid "E525: Zero length string" -msgstr "E525: ڿԴϴ" - -#: ../option.c:4220 -#, c-format -msgid "E526: Missing number after <%s>" -msgstr "E526: <%s> ڿ ڰ ϴ" - -#: ../option.c:4232 -msgid "E527: Missing comma" -msgstr "E527: ϴ" - -#: ../option.c:4239 -msgid "E528: Must specify a ' value" -msgstr "E528: ' ּž մϴ" - -#: ../option.c:4271 -msgid "E595: contains unprintable or wide character" -msgstr "E595: , Ȥ ̵ ڸ ϰ ֽϴ" - -#: ../option.c:4469 -#, c-format -msgid "E535: Illegal character after <%c>" -msgstr "E535: <%c> ڿ ̻ " - -#: ../option.c:4534 -msgid "E536: comma required" -msgstr "E536: ʿմϴ" - -#: ../option.c:4543 -#, c-format -msgid "E537: 'commentstring' must be empty or contain %s" -msgstr "E537: 'commentstring' ų %s() ؾ մϴ" - -#: ../option.c:4928 -msgid "E540: Unclosed expression sequence" -msgstr "E540: ǥ 迭" - -#: ../option.c:4932 -msgid "E541: too many items" -msgstr "E541: ʹ " - -#: ../option.c:4934 -msgid "E542: unbalanced groups" -msgstr "E542: " - -#: ../option.c:5148 -msgid "E590: A preview window already exists" -msgstr "E590: ̸ â ̹ մϴ" - -#: ../option.c:5311 -msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'" -msgstr "W17: Arabic UTF-8 ڵ ʿ, ':set encoding=utf-8' ϼ" - -#: ../option.c:5623 -#, c-format -msgid "E593: Need at least %d lines" -msgstr "E593: %d ʿմϴ" - -#: ../option.c:5631 -#, c-format -msgid "E594: Need at least %d columns" -msgstr "E594: %d ĭ ʿմϴ" - -#: ../option.c:6011 -#, c-format -msgid "E355: Unknown option: %s" -msgstr "E355: ɼ: %s" - -#. There's another character after zeros or the string -#. * is empty. In both cases, we are trying to set a -#. * num option using a string. -#: ../option.c:6037 -#, c-format -msgid "E521: Number required: &%s = '%s'" -msgstr "E521: ڰ ʿ: &%s = '%s'" - -#: ../option.c:6149 -msgid "" -"\n" -"--- Terminal codes ---" -msgstr "" -"\n" -"--- ̳ ڵ ---" - -#: ../option.c:6151 -msgid "" -"\n" -"--- Global option values ---" -msgstr "" -"\n" -"--- ɼ ---" - -#: ../option.c:6153 -msgid "" -"\n" -"--- Local option values ---" -msgstr "" -"\n" -"--- ɼ ---" - -#: ../option.c:6155 -msgid "" -"\n" -"--- Options ---" -msgstr "" -"\n" -"--- ɼ ---" - -#: ../option.c:6816 -msgid "E356: get_varp ERROR" -msgstr "E356: get_varp " - -#: ../option.c:7696 -#, c-format -msgid "E357: 'langmap': Matching character missing for %s" -msgstr "E357: 'langmap': %s ´ ڰ ϴ" - -#: ../option.c:7715 -#, c-format -msgid "E358: 'langmap': Extra characters after semicolon: %s" -msgstr "E358: 'langmap': ݷ ڿ ڰ : %s" - -#: ../os/shell.c:194 -msgid "" -"\n" -"Cannot execute shell " -msgstr "" -"\n" -"Cannot execute shell " - -#: ../os/shell.c:439 -msgid "" -"\n" -"shell returned " -msgstr "" -"\n" -"shell returned " - -#: ../os_unix.c:465 ../os_unix.c:471 -msgid "" -"\n" -"Could not get security context for " -msgstr "" -"\n" -"Could not get security context for " - -#: ../os_unix.c:479 -msgid "" -"\n" -"Could not set security context for " -msgstr "" -"\n" -"Could not set security context for " - -#: ../os_unix.c:1558 ../os_unix.c:1647 -#, c-format -msgid "dlerror = \"%s\"" -msgstr "dlerror = \"%s\"" - -#: ../path.c:1449 -#, c-format -msgid "E447: Can't find file \"%s\" in path" -msgstr "E447: path \"%s\" ã ϴ" - -#: ../quickfix.c:359 -#, c-format -msgid "E372: Too many %%%c in format string" -msgstr "E372: ڿ %%%c() ʹ ϴ" - -#: ../quickfix.c:371 -#, c-format -msgid "E373: Unexpected %%%c in format string" -msgstr "E373: ڿ %%%c() ߸Ǿϴ" - -#: ../quickfix.c:420 -msgid "E374: Missing ] in format string" -msgstr "E374: ڿ ] ϴ" - -#: ../quickfix.c:431 -#, c-format -msgid "E375: Unsupported %%%c in format string" -msgstr "E375: ڿ ʴ %%%c() ֽϴ" - -#: ../quickfix.c:448 -#, c-format -msgid "E376: Invalid %%%c in format string prefix" -msgstr "E376: ڿ ο ߸ %%%c() ֽϴ" - -#: ../quickfix.c:454 -#, c-format -msgid "E377: Invalid %%%c in format string" -msgstr "E377: ڿ ߸ %%%c() ֽϴ" - -#. nothing found -#: ../quickfix.c:477 -msgid "E378: 'errorformat' contains no pattern" -msgstr "E378: 'errorformat' ϵ ϰ ʽϴ" - -#: ../quickfix.c:695 -msgid "E379: Missing or empty directory name" -msgstr "E379: ų 丮 ̸" - -#: ../quickfix.c:1305 -msgid "E553: No more items" -msgstr "E553: ̻ ϴ" - -#: ../quickfix.c:1674 -#, c-format -msgid "(%d of %d)%s%s: " -msgstr "(%d of %d)%s%s: " - -#: ../quickfix.c:1676 -msgid " (line deleted)" -msgstr " ( )" - -#: ../quickfix.c:1863 -msgid "E380: At bottom of quickfix stack" -msgstr "E380: Ƚ ٴԴϴ" - -#: ../quickfix.c:1869 -msgid "E381: At top of quickfix stack" -msgstr "E381: Ƚ Դϴ" - -#: ../quickfix.c:1880 -#, c-format -msgid "error list %d of %d; %d errors" -msgstr "error list %d of %d; %d errors" - -#: ../quickfix.c:2427 -msgid "E382: Cannot write, 'buftype' option is set" -msgstr "E382: , 'buftype' ɼ Ǿ ֽϴ" - -#: ../quickfix.c:2812 -msgid "E683: File name missing or invalid pattern" -msgstr "E683: ϸ Ȥ ߸ " - -#: ../quickfix.c:2911 -#, c-format -msgid "Cannot open file \"%s\"" -msgstr "\"%s\" ϴ" - -#: ../quickfix.c:3429 -msgid "E681: Buffer is not loaded" -msgstr "E681: ۰ ε ʾҽϴ" - -#: ../quickfix.c:3487 -msgid "E777: String or List expected" -msgstr "E777: String̳ List ־ " - -#: ../regexp.c:359 -#, c-format -msgid "E369: invalid item in %s%%[]" -msgstr "E369: %s%%[] ߸ " - -#: ../regexp.c:374 -#, c-format -msgid "E769: Missing ] after %s[" -msgstr "E769: %s[ ڿ ] ϴ" - -#: ../regexp.c:375 -#, c-format -msgid "E53: Unmatched %s%%(" -msgstr "E53: ʴ %s%%(" - -#: ../regexp.c:376 -#, c-format -msgid "E54: Unmatched %s(" -msgstr "E54: ʴ %s(" - -#: ../regexp.c:377 -#, c-format -msgid "E55: Unmatched %s)" -msgstr "E55: ʴ %s)" - -#: ../regexp.c:378 -msgid "E66: \\z( not allowed here" -msgstr "E66: \\z( ʽϴ" - -#: ../regexp.c:379 -msgid "E67: \\z1 et al. not allowed here" -msgstr "E67: \\z1 ʽϴ" - -#: ../regexp.c:380 -#, c-format -msgid "E69: Missing ] after %s%%[" -msgstr "E69: %s%%[ ڿ ] ϴ" - -#: ../regexp.c:381 -#, c-format -msgid "E70: Empty %s%%[]" -msgstr "E70: %s%%[]" - -#: ../regexp.c:1209 ../regexp.c:1224 -msgid "E339: Pattern too long" -msgstr "E339: ʹ ϴ" - -#: ../regexp.c:1371 -msgid "E50: Too many \\z(" -msgstr "E50: \\z( ʹ ϴ" - -#: ../regexp.c:1378 -#, c-format -msgid "E51: Too many %s(" -msgstr "E51: %s( ʹ ϴ" - -#: ../regexp.c:1427 -msgid "E52: Unmatched \\z(" -msgstr "E52: ʴ \\z(" - -#: ../regexp.c:1637 -#, c-format -msgid "E59: invalid character after %s@" -msgstr "E59: %s@ ڿ ߸ " - -#: ../regexp.c:1672 -#, c-format -msgid "E60: Too many complex %s{...}s" -msgstr "E60: %s{...}s ʹ " - -#: ../regexp.c:1687 -#, c-format -msgid "E61: Nested %s*" -msgstr "E61: Nested %s*" - -#: ../regexp.c:1690 -#, c-format -msgid "E62: Nested %s%c" -msgstr "E62: Nested %s%c" - -#: ../regexp.c:1800 -msgid "E63: invalid use of \\_" -msgstr "E63: \\_ " - -#: ../regexp.c:1850 -#, c-format -msgid "E64: %s%c follows nothing" -msgstr "E64: %s%c ڿ ƹ͵ ϴ" - -#: ../regexp.c:1902 -msgid "E65: Illegal back reference" -msgstr "E65: ̻ " - -#: ../regexp.c:1943 -msgid "E68: Invalid character after \\z" -msgstr "E68: \\z ڿ ̻ " - -#: ../regexp.c:2049 ../regexp_nfa.c:1296 -#, c-format -msgid "E678: Invalid character after %s%%[dxouU]" -msgstr "E678: %s%%[dxouU] ڿ ̻ " - -#: ../regexp.c:2107 -#, c-format -msgid "E71: Invalid character after %s%%" -msgstr "E71: %s%% ڿ ̻ " - -#: ../regexp.c:3017 -#, c-format -msgid "E554: Syntax error in %s{...}" -msgstr "E554: %s{...} " - -#: ../regexp.c:3805 -msgid "External submatches:\n" -msgstr "ܺ submatches:\n" - -#: ../regexp.c:7022 -msgid "" -"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be " -"used " -msgstr "" - -#: ../regexp_nfa.c:239 -msgid "E865: (NFA) Regexp end encountered prematurely" -msgstr "" - -#: ../regexp_nfa.c:240 -#, c-format -msgid "E866: (NFA regexp) Misplaced %c" -msgstr "" - -#: ../regexp_nfa.c:242 -#, c-format -msgid "E877: (NFA regexp) Invalid character class: %<PRId64>" -msgstr "" - -#: ../regexp_nfa.c:1261 -#, c-format -msgid "E867: (NFA) Unknown operator '\\z%c'" -msgstr "" - -#: ../regexp_nfa.c:1387 -#, c-format -msgid "E867: (NFA) Unknown operator '\\%%%c'" -msgstr "" - -#: ../regexp_nfa.c:1802 -#, c-format -msgid "E869: (NFA) Unknown operator '\\@%c'" -msgstr "" - -#: ../regexp_nfa.c:1831 -msgid "E870: (NFA regexp) Error reading repetition limits" -msgstr "" - -#. Can't have a multi follow a multi. -#: ../regexp_nfa.c:1895 -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" -msgstr "" - -#. Too many `(' -#: ../regexp_nfa.c:2037 -msgid "E872: (NFA regexp) Too many '('" -msgstr "" - -#: ../regexp_nfa.c:2042 -#, fuzzy -msgid "E879: (NFA regexp) Too many \\z(" -msgstr "E50: \\z( ʹ ϴ" - -#: ../regexp_nfa.c:2066 -msgid "E873: (NFA regexp) proper termination error" -msgstr "" - -#: ../regexp_nfa.c:2599 -msgid "E874: (NFA) Could not pop the stack !" -msgstr "" - -#: ../regexp_nfa.c:3298 -msgid "" -"E875: (NFA regexp) (While converting from postfix to NFA), too many states " -"left on stack" -msgstr "" - -#: ../regexp_nfa.c:3302 -msgid "E876: (NFA regexp) Not enough space to store the whole NFA " -msgstr "" - -#: ../regexp_nfa.c:4571 ../regexp_nfa.c:4869 -msgid "" -"Could not open temporary log file for writing, displaying on stderr ... " -msgstr "" - -#: ../regexp_nfa.c:4840 -#, c-format -msgid "(NFA) COULD NOT OPEN %s !" -msgstr "" - -#: ../regexp_nfa.c:6049 -#, fuzzy -msgid "Could not open temporary log file for writing " -msgstr "E828: undo ϴ: %s" - -#: ../screen.c:7435 -msgid " VREPLACE" -msgstr " ġȯ" - -#: ../screen.c:7437 -msgid " REPLACE" -msgstr " ٲٱ" - -#: ../screen.c:7440 -msgid " REVERSE" -msgstr " ݴ" - -#: ../screen.c:7441 -msgid " INSERT" -msgstr " ֱ" - -#: ../screen.c:7443 -msgid " (insert)" -msgstr " (ֱ)" - -#: ../screen.c:7445 -msgid " (replace)" -msgstr " (ٲٱ)" - -#: ../screen.c:7447 -msgid " (vreplace)" -msgstr " (ġȯ)" - -#: ../screen.c:7449 -msgid " Hebrew" -msgstr " " - -#: ../screen.c:7454 -msgid " Arabic" -msgstr " ƶ" - -#: ../screen.c:7456 -msgid " (lang)" -msgstr " ()" - -#: ../screen.c:7459 -msgid " (paste)" -msgstr " (̱)" - -#: ../screen.c:7469 -msgid " VISUAL" -msgstr " ־" - -#: ../screen.c:7470 -msgid " VISUAL LINE" -msgstr " ־ " - -#: ../screen.c:7471 -msgid " VISUAL BLOCK" -msgstr " ־ " - -#: ../screen.c:7472 -msgid " SELECT" -msgstr " " - -#: ../screen.c:7473 -msgid " SELECT LINE" -msgstr " " - -#: ../screen.c:7474 -msgid " SELECT BLOCK" -msgstr " " - -#: ../screen.c:7486 ../screen.c:7541 -msgid "recording" -msgstr "" - -#: ../search.c:487 -#, c-format -msgid "E383: Invalid search string: %s" -msgstr "E383: ߸ ã ڿ: %s" - -#: ../search.c:832 -#, c-format -msgid "E384: search hit TOP without match for: %s" -msgstr "E384: ó ´ ڿ ϴ: %s" - -#: ../search.c:835 -#, c-format -msgid "E385: search hit BOTTOM without match for: %s" -msgstr "E385: ´ ڿ ϴ: %s" - -#: ../search.c:1200 -msgid "E386: Expected '?' or '/' after ';'" -msgstr "E386: ';' ڿ '?' '/' ; մϴ" - -#: ../search.c:4085 -msgid " (includes previously listed match)" -msgstr " ( ¾Ҵ )" - -#. cursor at status line -#: ../search.c:4104 -msgid "--- Included files " -msgstr "--- Included files " - -#: ../search.c:4106 -msgid "not found " -msgstr "not found " - -#: ../search.c:4107 -msgid "in path ---\n" -msgstr "in path ---\n" - -#: ../search.c:4168 -msgid " (Already listed)" -msgstr " (Already listed)" - -#: ../search.c:4170 -msgid " NOT FOUND" -msgstr " ã" - -#: ../search.c:4211 -#, c-format -msgid "Scanning included file: %s" -msgstr "Ե ã : %s" - -#: ../search.c:4216 -#, c-format -msgid "Searching included file %s" -msgstr "Ե %s ã " - -#: ../search.c:4405 -msgid "E387: Match is on current line" -msgstr "E387: ´ ٿ ֽϴ" - -#: ../search.c:4517 -msgid "All included files were found" -msgstr " Ե ãҽϴ" - -#: ../search.c:4519 -msgid "No included files" -msgstr "Ե ϴ" - -#: ../search.c:4527 -msgid "E388: Couldn't find definition" -msgstr "E388: Ǹ ã ϴ" - -#: ../search.c:4529 -msgid "E389: Couldn't find pattern" -msgstr "E389: ã ϴ" - -#: ../search.c:4668 -msgid "Substitute " -msgstr "Substitute " - -#: ../search.c:4681 -#, c-format -msgid "" -"\n" -"# Last %sSearch Pattern:\n" -"~" -msgstr "" -"\n" -"# Last %sSearch Pattern:\n" -"~" - -#: ../spell.c:951 -msgid "E759: Format error in spell file" -msgstr "E759: spell " - -#: ../spell.c:952 -msgid "E758: Truncated spell file" -msgstr "E758: ߸ spell " - -#: ../spell.c:953 -#, c-format -msgid "Trailing text in %s line %d: %s" -msgstr "Trailing text in %s line %d: %s" - -#: ../spell.c:954 -#, c-format -msgid "Affix name too long in %s line %d: %s" -msgstr "Affix name too long in %s line %d: %s" - -#: ../spell.c:955 -msgid "E761: Format error in affix file FOL, LOW or UPP" -msgstr "E761: affix FOL, LOW Ȥ UPP " - -#: ../spell.c:957 -msgid "E762: Character in FOL, LOW or UPP is out of range" -msgstr "E762: FOL, LOW Ȥ UPP ڰ " - -#: ../spell.c:958 -msgid "Compressing word tree..." -msgstr "ܾ Ʈ ..." - -#: ../spell.c:1951 -msgid "E756: Spell checking is not enabled" -msgstr "E756: ˻簡 ȰȭǾ ʽϴ" - -#: ../spell.c:2249 -#, c-format -msgid "Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\"" -msgstr ": ܾ \"%s.%s.spl\" Ȥ \"%s.ascii.spl\" ã ϴ" - -#: ../spell.c:2473 -#, c-format -msgid "Reading spell file \"%s\"" -msgstr "spell \"%s\"() а ֽϴ" - -#: ../spell.c:2496 -msgid "E757: This does not look like a spell file" -msgstr "E757: spell ƴ ϴ" - -#: ../spell.c:2501 -msgid "E771: Old spell file, needs to be updated" -msgstr "E771: spell , ʿմϴ" - -#: ../spell.c:2504 -msgid "E772: Spell file is for newer version of Vim" -msgstr "E772: Spell VimԴϴ" - -#: ../spell.c:2602 -msgid "E770: Unsupported section in spell file" -msgstr "E770: spell Ͽ ʴ " - -#: ../spell.c:3762 -#, c-format -msgid "Warning: region %s not supported" -msgstr ": %s ʽϴ" - -#: ../spell.c:4550 -#, c-format -msgid "Reading affix file %s ..." -msgstr "affix %s д " - -#: ../spell.c:4589 ../spell.c:5635 ../spell.c:6140 -#, c-format -msgid "Conversion failure for word in %s line %d: %s" -msgstr "%s %d ִ ܾ ȯ : %s" - -#: ../spell.c:4630 ../spell.c:6170 -#, c-format -msgid "Conversion in %s not supported: from %s to %s" -msgstr "%s ȯ ʽϴ: %s %s" - -#: ../spell.c:4642 -#, c-format -msgid "Invalid value for FLAG in %s line %d: %s" -msgstr "%s %d FLAG ߸ : %s" - -#: ../spell.c:4655 -#, c-format -msgid "FLAG after using flags in %s line %d: %s" -msgstr "%s %d ÷װ FLAG: %s" - -#: ../spell.c:4723 -#, c-format -msgid "" -"Defining COMPOUNDFORBIDFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" -"%s %d PFX ڿ COMPOUNDFORBIDFLAG ߸ ʷ " -" ֽϴ" - -#: ../spell.c:4731 -#, c-format -msgid "" -"Defining COMPOUNDPERMITFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" -"%s %d PFX ڿ COMPOUNDPERMITFLAG ߸ ʷ " -" ֽϴ" - -#: ../spell.c:4747 -#, c-format -msgid "Wrong COMPOUNDRULES value in %s line %d: %s" -msgstr "%s %d ߸ COMPOUNDRULES : %s" - -#: ../spell.c:4771 -#, c-format -msgid "Wrong COMPOUNDWORDMAX value in %s line %d: %s" -msgstr "%s %d ߸ COMPOUNDWORDMAX : %s" - -#: ../spell.c:4777 -#, c-format -msgid "Wrong COMPOUNDMIN value in %s line %d: %s" -msgstr "%s %d ߸ COMPOUNDMIN : %s" - -#: ../spell.c:4783 -#, c-format -msgid "Wrong COMPOUNDSYLMAX value in %s line %d: %s" -msgstr "%s %d ߸ COMPOUNDSYLMAX : %s" - -#: ../spell.c:4795 -#, c-format -msgid "Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s" -msgstr "%s %d ߸ CHECKCOMPOUNDPATTERN : %s" - -#: ../spell.c:4847 -#, c-format -msgid "Different combining flag in continued affix block in %s line %d: %s" -msgstr "%s %d ӵ affix Ͽ ٸ ÷: %s" - -#: ../spell.c:4850 -#, c-format -msgid "Duplicate affix in %s line %d: %s" -msgstr "%s %d ߺ affix: %s" - -#: ../spell.c:4871 -#, c-format -msgid "" -"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s " -"line %d: %s" -msgstr "" -"%s %d BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST ؼ " -"affix : %s" - -#: ../spell.c:4893 -#, c-format -msgid "Expected Y or N in %s line %d: %s" -msgstr "%s %d Y N : %s" - -#: ../spell.c:4968 -#, c-format -msgid "Broken condition in %s line %d: %s" -msgstr "%s %d : %s" - -#: ../spell.c:5091 -#, c-format -msgid "Expected REP(SAL) count in %s line %d" -msgstr "%s %d REP(SAL) īƮ " - -#: ../spell.c:5120 -#, c-format -msgid "Expected MAP count in %s line %d" -msgstr "%s %d MAP īƮ " - -#: ../spell.c:5132 -#, c-format -msgid "Duplicate character in MAP in %s line %d" -msgstr "%s %d MAP ߺ " - -#: ../spell.c:5176 -#, c-format -msgid "Unrecognized or duplicate item in %s line %d: %s" -msgstr "%s %d Ȥ ߺ : %s" - -#: ../spell.c:5197 -#, c-format -msgid "Missing FOL/LOW/UPP line in %s" -msgstr "%s FOL/LOW/UPP " - -#: ../spell.c:5220 -msgid "COMPOUNDSYLMAX used without SYLLABLE" -msgstr "COMPOUNDSYLMAX SYLLABLE " - -#: ../spell.c:5236 -msgid "Too many postponed prefixes" -msgstr "postponed λ簡 ʹ ϴ" - -#: ../spell.c:5238 -msgid "Too many compound flags" -msgstr "compound ÷װ ʹ ϴ" - -#: ../spell.c:5240 -msgid "Too many postponed prefixes and/or compound flags" -msgstr "postponed λ() compound ÷װ ʹ ϴ" - -#: ../spell.c:5250 -#, c-format -msgid "Missing SOFO%s line in %s" -msgstr "SOFO%s %s ֽϴ" - -#: ../spell.c:5253 -#, c-format -msgid "Both SAL and SOFO lines in %s" -msgstr "%s SAL SOFO ֽϴ" - -#: ../spell.c:5331 -#, c-format -msgid "Flag is not a number in %s line %d: %s" -msgstr "%s %d ڰ ƴ ÷: %s" - -#: ../spell.c:5334 -#, c-format -msgid "Illegal flag in %s line %d: %s" -msgstr "%s %d ߸ ÷: %s" - -#: ../spell.c:5493 ../spell.c:5501 -#, c-format -msgid "%s value differs from what is used in another .aff file" -msgstr "%s ٸ .aff Ͽ Ͱ ٸϴ" - -#: ../spell.c:5602 -#, c-format -msgid "Reading dictionary file %s ..." -msgstr " %s д ..." - -#: ../spell.c:5611 -#, c-format -msgid "E760: No word count in %s" -msgstr "E760: %s ܾ īƮ ϴ" - -#: ../spell.c:5669 -#, c-format -msgid "line %6d, word %6d - %s" -msgstr " %6d, ܾ %6d - %s" - -#: ../spell.c:5691 -#, c-format -msgid "Duplicate word in %s line %d: %s" -msgstr "%s %d ߺ ܾ: %s" - -#: ../spell.c:5694 -#, c-format -msgid "First duplicate word in %s line %d: %s" -msgstr "%s %d ó ߺ ܾ: %s" - -#: ../spell.c:5746 -#, c-format -msgid "%d duplicate word(s) in %s" -msgstr "%d ߺ ܾ %s ֽϴ" - -#: ../spell.c:5748 -#, c-format -msgid "Ignored %d word(s) with non-ASCII characters in %s" -msgstr "õ %d ƽŰڿ ƴ ܾ %s ֽϴ" - -#: ../spell.c:6115 -#, c-format -msgid "Reading word file %s ..." -msgstr "ܾ %s д ..." - -#: ../spell.c:6155 -#, c-format -msgid "Duplicate /encoding= line ignored in %s line %d: %s" -msgstr "%s %d ߺ /encoding= õ: %s" - -#: ../spell.c:6159 -#, c-format -msgid "/encoding= line after word ignored in %s line %d: %s" -msgstr "%s %d ܾ /encoding= õ: %s" - -#: ../spell.c:6180 -#, c-format -msgid "Duplicate /regions= line ignored in %s line %d: %s" -msgstr "%s %d ߺ /regions= õ: %s" - -#: ../spell.c:6185 -#, c-format -msgid "Too many regions in %s line %d: %s" -msgstr "%s %d ʹ : %s" - -#: ../spell.c:6198 -#, c-format -msgid "/ line ignored in %s line %d: %s" -msgstr "%s %d / õ: %s" - -#: ../spell.c:6224 -#, c-format -msgid "Invalid region nr in %s line %d: %s" -msgstr "%s %d ߸ ȣ: %s" - -#: ../spell.c:6230 -#, c-format -msgid "Unrecognized flags in %s line %d: %s" -msgstr "%s %d ÷: %s" - -#: ../spell.c:6257 -#, c-format -msgid "Ignored %d words with non-ASCII characters" -msgstr "ƽŰ ڿ ƴ %d ܾ õǾϴ" - -#: ../spell.c:6656 -#, c-format -msgid "Compressed %d of %d nodes; %d (%d%%) remaining" -msgstr "%d/%d 尡 ; %d (%d%%) " - -#: ../spell.c:7340 -msgid "Reading back spell file..." -msgstr " д ..." - -#. Go through the trie of good words, soundfold each word and add it to -#. the soundfold trie. -#: ../spell.c:7357 -msgid "Performing soundfolding..." -msgstr "soundfold ..." - -#: ../spell.c:7368 -#, c-format -msgid "Number of words after soundfolding: %<PRId64>" -msgstr "soundfold ܾ : %<PRId64>" - -#: ../spell.c:7476 -#, c-format -msgid "Total number of words: %d" -msgstr " ܾ : %d" - -#: ../spell.c:7655 -#, c-format -msgid "Writing suggestion file %s ..." -msgstr "%s ..." - -#: ../spell.c:7707 ../spell.c:7927 -#, c-format -msgid "Estimated runtime memory use: %d bytes" -msgstr " Ÿ 뷮: %d Ʈ" - -#: ../spell.c:7820 -msgid "E751: Output file name must not have region name" -msgstr "E751: ϸ ̸ մϴ" - -#: ../spell.c:7822 -msgid "E754: Only up to 8 regions supported" -msgstr "E754: ִ 8 ˴ϴ" - -#: ../spell.c:7846 -#, c-format -msgid "E755: Invalid region in %s" -msgstr "E755: %s ߸ " - -#: ../spell.c:7907 -msgid "Warning: both compounding and NOBREAK specified" -msgstr ": compound NOBREAK õ" - -#: ../spell.c:7920 -#, c-format -msgid "Writing spell file %s ..." -msgstr "spell %s ..." - -#: ../spell.c:7925 -msgid "Done!" -msgstr "!" - -#: ../spell.c:8034 -#, c-format -msgid "E765: 'spellfile' does not have %<PRId64> entries" -msgstr "E765: 'spellfile' %<PRId64> ϴ" - -#: ../spell.c:8074 -#, fuzzy, c-format -msgid "Word '%.*s' removed from %s" -msgstr "%s ܾ " - -#: ../spell.c:8117 -#, fuzzy, c-format -msgid "Word '%.*s' added to %s" -msgstr "%s ܾ ߰" - -#: ../spell.c:8381 -msgid "E763: Word characters differ between spell files" -msgstr "E763: ܾ spell ٸϴ" - -#: ../spell.c:8684 -msgid "Sorry, no suggestions" -msgstr "˼, ϴ" - -#: ../spell.c:8687 -#, c-format -msgid "Sorry, only %<PRId64> suggestions" -msgstr "˼, %<PRId64> " - -#. for when 'cmdheight' > 1 -#. avoid more prompt -#: ../spell.c:8704 -#, c-format -msgid "Change \"%.*s\" to:" -msgstr "Change \"%.*s\" to:" - -#: ../spell.c:8737 -#, c-format -msgid " < \"%.*s\"" -msgstr " < \"%.*s\"" - -#: ../spell.c:8882 -msgid "E752: No previous spell replacement" -msgstr "E752: öڰ ٲ ϴ" - -#: ../spell.c:8925 -#, c-format -msgid "E753: Not found: %s" -msgstr "E753: ã : %s" - -#: ../spell.c:9276 -#, c-format -msgid "E778: This does not look like a .sug file: %s" -msgstr "E778: .sug ƴ : %s" - -#: ../spell.c:9282 -#, c-format -msgid "E779: Old .sug file, needs to be updated: %s" -msgstr "E779: .sug , ʿ: %s" - -#: ../spell.c:9286 -#, c-format -msgid "E780: .sug file is for newer version of Vim: %s" -msgstr "E780: .sug Vim: %s" - -#: ../spell.c:9295 -#, c-format -msgid "E781: .sug file doesn't match .spl file: %s" -msgstr "E781: .sug .spl ϰ : %s" - -#: ../spell.c:9305 -#, c-format -msgid "E782: error while reading .sug file: %s" -msgstr "E782: .sug б : %s" - -#. This should have been checked when generating the .spl -#. file. -#: ../spell.c:11575 -msgid "E783: duplicate char in MAP entry" -msgstr "E783: MAP ߺ " - -#: ../syntax.c:266 -msgid "No Syntax items defined for this buffer" -msgstr " ۿ ǵ ϴ" - -#: ../syntax.c:3083 ../syntax.c:3104 ../syntax.c:3127 -#, c-format -msgid "E390: Illegal argument: %s" -msgstr "E390: ߸ : %s" - -#: ../syntax.c:3299 -#, c-format -msgid "E391: No such syntax cluster: %s" -msgstr "E391: ̷ Ŭʹ ϴ: %s" - -#: ../syntax.c:3433 -msgid "syncing on C-style comments" -msgstr "C- ּ " - -#: ../syntax.c:3439 -msgid "no syncing" -msgstr " " - -#: ../syntax.c:3441 -msgid "syncing starts " -msgstr "syncing starts " - -#: ../syntax.c:3443 ../syntax.c:3506 -msgid " lines before top line" -msgstr " lines before top line" - -#: ../syntax.c:3448 -msgid "" -"\n" -"--- Syntax sync items ---" -msgstr "" -"\n" -"--- Syntax sync ---" - -#: ../syntax.c:3452 -msgid "" -"\n" -"syncing on items" -msgstr "" -"\n" -"syncing on items" - -#: ../syntax.c:3457 -msgid "" -"\n" -"--- Syntax items ---" -msgstr "" -"\n" -"--- Syntax ---" - -#: ../syntax.c:3475 -#, c-format -msgid "E392: No such syntax cluster: %s" -msgstr "E392: ̷ Ŭʹ ϴ: %s" - -#: ../syntax.c:3497 -msgid "minimal " -msgstr "minimal " - -#: ../syntax.c:3503 -msgid "maximal " -msgstr "maximal " - -#: ../syntax.c:3513 -msgid "; match " -msgstr "; match " - -#: ../syntax.c:3515 -msgid " line breaks" -msgstr " line breaks" - -#: ../syntax.c:4076 -msgid "E395: contains argument not accepted here" -msgstr "E395: contains ڴ ϴ" - -#: ../syntax.c:4096 -msgid "E844: invalid cchar value" -msgstr "E844: ߸ cchar " - -#: ../syntax.c:4107 -msgid "E393: group[t]here not accepted here" -msgstr "E393: group[t]here ϴ" - -#: ../syntax.c:4126 -#, c-format -msgid "E394: Didn't find region item for %s" -msgstr "E394: %s region ã ߽ϴ" - -#: ../syntax.c:4188 -msgid "E397: Filename required" -msgstr "E397: ̸ ʿմϴ" - -#: ../syntax.c:4221 -#, fuzzy -msgid "E847: Too many syntax includes" -msgstr "E77: ̸ ʹ ϴ" - -#: ../syntax.c:4303 -#, c-format -msgid "E789: Missing ']': %s" -msgstr "E789: ']' : %s" - -#: ../syntax.c:4531 -#, c-format -msgid "E398: Missing '=': %s" -msgstr "E398: '=' : %s" - -#: ../syntax.c:4666 -#, c-format -msgid "E399: Not enough arguments: syntax region %s" -msgstr "E399: ġ : %s" - -#: ../syntax.c:4870 -#, fuzzy -msgid "E848: Too many syntax clusters" -msgstr "E391: ̷ Ŭʹ ϴ: %s" - -#: ../syntax.c:4954 -msgid "E400: No cluster specified" -msgstr "E400: ŬͰ õ ʾҽϴ" - -#. end delimiter not found -#: ../syntax.c:4986 -#, c-format -msgid "E401: Pattern delimiter not found: %s" -msgstr "E401: ڸ ã ϴ: %s" - -#: ../syntax.c:5049 -#, c-format -msgid "E402: Garbage after pattern: %s" -msgstr "E402: ڿ : %s" - -#: ../syntax.c:5120 -msgid "E403: syntax sync: line continuations pattern specified twice" -msgstr "E403: syntax sync: Ǿϴ" - -#: ../syntax.c:5169 -#, c-format -msgid "E404: Illegal arguments: %s" -msgstr "E404: : %s" - -#: ../syntax.c:5217 -#, c-format -msgid "E405: Missing equal sign: %s" -msgstr "E405: ȣ : %s" - -#: ../syntax.c:5222 -#, c-format -msgid "E406: Empty argument: %s" -msgstr "E406: : %s" - -#: ../syntax.c:5240 -#, c-format -msgid "E407: %s not allowed here" -msgstr "E407: %s() ʽϴ" - -#: ../syntax.c:5246 -#, c-format -msgid "E408: %s must be first in contains list" -msgstr "E408: %s() contains ù ° մϴ" - -#: ../syntax.c:5304 -#, c-format -msgid "E409: Unknown group name: %s" -msgstr "E409: ̸: %s" - -#: ../syntax.c:5512 -#, c-format -msgid "E410: Invalid :syntax subcommand: %s" -msgstr "E410: ߸ :syntax : %s" - -#: ../syntax.c:5854 -msgid "" -" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN" -msgstr "" - -#: ../syntax.c:6146 -msgid "E679: recursive loop loading syncolor.vim" -msgstr "E679: syncolor.vim ݺ ε" - -#: ../syntax.c:6256 -#, c-format -msgid "E411: highlight group not found: %s" -msgstr "E411: ̶Ʈ ã ϴ: %s" - -#: ../syntax.c:6278 -#, c-format -msgid "E412: Not enough arguments: \":highlight link %s\"" -msgstr "E412: ġ : \":highlight link %s\"" - -#: ../syntax.c:6284 -#, c-format -msgid "E413: Too many arguments: \":highlight link %s\"" -msgstr "E413: ʹ : \":highlight link %s\"" - -#: ../syntax.c:6302 -msgid "E414: group has settings, highlight link ignored" -msgstr "E414: group ֽϴ, highlight link õ" - -#: ../syntax.c:6367 -#, c-format -msgid "E415: unexpected equal sign: %s" -msgstr "E415: ȣ: %s" - -#: ../syntax.c:6395 -#, c-format -msgid "E416: missing equal sign: %s" -msgstr "E416: ȣ : %s" - -#: ../syntax.c:6418 -#, c-format -msgid "E417: missing argument: %s" -msgstr "E417: ڰ : %s" - -#: ../syntax.c:6446 -#, c-format -msgid "E418: Illegal value: %s" -msgstr "E418: : %s" - -#: ../syntax.c:6496 -msgid "E419: FG color unknown" -msgstr "E419: FG " - -#: ../syntax.c:6504 -msgid "E420: BG color unknown" -msgstr "E420: BG " - -#: ../syntax.c:6564 -#, c-format -msgid "E421: Color name or number not recognized: %s" -msgstr "E421: ̸̳ ڸ ν : %s" - -#: ../syntax.c:6714 -#, c-format -msgid "E422: terminal code too long: %s" -msgstr "E422: ̳ ڵ尡 ʹ : %s" - -#: ../syntax.c:6753 -#, c-format -msgid "E423: Illegal argument: %s" -msgstr "E423: ߸ : %s" - -#: ../syntax.c:6925 -msgid "E424: Too many different highlighting attributes in use" -msgstr "E424: ʹ ٸ ̶Ʈ Ӽ ǰ ֽϴ" - -#: ../syntax.c:7427 -msgid "E669: Unprintable character in group name" -msgstr "E669: ̸ ڰ ֽϴ" - -#: ../syntax.c:7434 -msgid "W18: Invalid character in group name" -msgstr "W18: ̸ ̻ " - -#: ../syntax.c:7448 -msgid "E849: Too many highlight and syntax groups" -msgstr "" - -#: ../tag.c:104 -msgid "E555: at bottom of tag stack" -msgstr "E555: ± Դϴ" - -#: ../tag.c:105 -msgid "E556: at top of tag stack" -msgstr "E556: ± óԴϴ" - -#: ../tag.c:380 -msgid "E425: Cannot go before first matching tag" -msgstr "E425: ù ° ´ ± δ ϴ" - -#: ../tag.c:504 -#, c-format -msgid "E426: tag not found: %s" -msgstr "E426: ± ã : %s" - -#: ../tag.c:528 -msgid " # pri kind tag" -msgstr " # pri kind tag" - -#: ../tag.c:531 -msgid "file\n" -msgstr "\n" - -#: ../tag.c:829 -msgid "E427: There is only one matching tag" -msgstr "E427: ´ ±װ ϳ ۿ ϴ" - -#: ../tag.c:831 -msgid "E428: Cannot go beyond last matching tag" -msgstr "E428: ´ ± ڷδ ϴ" - -#: ../tag.c:850 -#, c-format -msgid "File \"%s\" does not exist" -msgstr " \"%s\"() ʽϴ" - -#. Give an indication of the number of matching tags -#: ../tag.c:859 -#, c-format -msgid "tag %d of %d%s" -msgstr "tag %d of %d%s" - -#: ../tag.c:862 -msgid " or more" -msgstr " or more" - -#: ../tag.c:864 -msgid " Using tag with different case!" -msgstr " Using tag with different case!" - -#: ../tag.c:909 -#, c-format -msgid "E429: File \"%s\" does not exist" -msgstr "E429: \"%s\"() ʽϴ" - -#. Highlight title -#: ../tag.c:960 -msgid "" -"\n" -" # TO tag FROM line in file/text" -msgstr "" -"\n" -" # TO tag FROM line in file/text" - -#: ../tag.c:1303 -#, c-format -msgid "Searching tags file %s" -msgstr "± %s ã " - -#: ../tag.c:1545 -msgid "Ignoring long line in tags file" -msgstr "± ʹ մϴ" - -#: ../tag.c:1915 -#, c-format -msgid "E431: Format error in tags file \"%s\"" -msgstr "E431: ± \"%s\" ֽϴ" - -#: ../tag.c:1917 -#, c-format -msgid "Before byte %<PRId64>" -msgstr "Before byte %<PRId64>" - -#: ../tag.c:1929 -#, c-format -msgid "E432: Tags file not sorted: %s" -msgstr "E432: ± ĵǾ : %s" - -#. never opened any tags file -#: ../tag.c:1960 -msgid "E433: No tags file" -msgstr "E433: ± ϴ" - -#: ../tag.c:2536 -msgid "E434: Can't find tag pattern" -msgstr "E434: ± ã ϴ" - -#: ../tag.c:2544 -msgid "E435: Couldn't find tag, just guessing!" -msgstr "E435: ± ã ̰ ϴ!" - -#: ../tag.c:2797 -#, c-format -msgid "Duplicate field name: %s" -msgstr "ߺ ʵ : %s" - -#: ../term.c:1442 -msgid "' not known. Available builtin terminals are:" -msgstr "' not known. Available builtin terminals are:" - -#: ../term.c:1463 -msgid "defaulting to '" -msgstr "defaulting to '" - -#: ../term.c:1731 -msgid "E557: Cannot open termcap file" -msgstr "E557: termcap ϴ" - -#: ../term.c:1735 -msgid "E558: Terminal entry not found in terminfo" -msgstr "E558: ̳ terminfo ã ϴ" - -#: ../term.c:1737 -msgid "E559: Terminal entry not found in termcap" -msgstr "E559: ̳ termcap ã ϴ" - -#: ../term.c:1878 -#, c-format -msgid "E436: No \"%s\" entry in termcap" -msgstr "E436: termcap \"%s\" ϴ" - -#: ../term.c:2249 -msgid "E437: terminal capability \"cm\" required" -msgstr "E437: ̳ \"cm\" ؾ մϴ" - -#. Highlight title -#: ../term.c:4376 -msgid "" -"\n" -"--- Terminal keys ---" -msgstr "" -"\n" -"--- ̳ Ű ---" - -#: ../ui.c:481 -msgid "Vim: Error reading input, exiting...\n" -msgstr ": Է д , ...\n" - -#. This happens when the FileChangedRO autocommand changes the -#. * file in a way it becomes shorter. -#: ../undo.c:379 -#, fuzzy -msgid "E881: Line count changed unexpectedly" -msgstr "E834: ̿ ٲϴ" - -#: ../undo.c:627 -#, c-format -msgid "E828: Cannot open undo file for writing: %s" -msgstr "E828: undo ϴ: %s" - -#: ../undo.c:717 -#, c-format -msgid "E825: Corrupted undo file (%s): %s" -msgstr "E825: undo (%s): %s" - -#: ../undo.c:1039 -msgid "Cannot write undo file in any directory in 'undodir'" -msgstr "'undodir' ִ 丮 undo ϴ" - -#: ../undo.c:1074 -#, c-format -msgid "Will not overwrite with undo file, cannot read: %s" -msgstr " undo Ͽ ϴ: %s" - -#: ../undo.c:1092 -#, c-format -msgid "Will not overwrite, this is not an undo file: %s" -msgstr "undo ƴϾ ϴ: %s" - -#: ../undo.c:1108 -msgid "Skipping undo file write, nothing to undo" -msgstr "undo undo dzʶݴϴ" - -#: ../undo.c:1121 -#, c-format -msgid "Writing undo file: %s" -msgstr "undo : %s" - -#: ../undo.c:1213 -#, c-format -msgid "E829: write error in undo file: %s" -msgstr "E829: undo : %s" - -#: ../undo.c:1280 -#, c-format -msgid "Not reading undo file, owner differs: %s" -msgstr "ڰ undo ʽϴ: %s" - -#: ../undo.c:1292 -#, c-format -msgid "Reading undo file: %s" -msgstr "undo д : %s" - -#: ../undo.c:1299 -#, c-format -msgid "E822: Cannot open undo file for reading: %s" -msgstr "E822: б undo ϴ: %s" - -#: ../undo.c:1308 -#, c-format -msgid "E823: Not an undo file: %s" -msgstr "E823: undo ƴմϴ: %s" - -#: ../undo.c:1313 -#, c-format -msgid "E824: Incompatible undo file: %s" -msgstr "E824: ȣȯ ʴ undo : %s" - -#: ../undo.c:1328 -msgid "File contents changed, cannot use undo info" -msgstr " ٲ, undo ϴ" - -#: ../undo.c:1497 -#, c-format -msgid "Finished reading undo file %s" -msgstr "undo %s() о鿴ϴ" - -#: ../undo.c:1586 ../undo.c:1812 -msgid "Already at oldest change" -msgstr " ̻ ϴ" - -#: ../undo.c:1597 ../undo.c:1814 -msgid "Already at newest change" -msgstr " ̻ ϴ" - -#: ../undo.c:1806 -#, c-format -msgid "E830: Undo number %<PRId64> not found" -msgstr "E830: Undo ȣ %<PRId64> ã ϴ" - -#: ../undo.c:1979 -msgid "E438: u_undo: line numbers wrong" -msgstr "E438: u_undo: ߸ ȣ" - -#: ../undo.c:2183 -msgid "more line" -msgstr "more line" - -#: ../undo.c:2185 -msgid "more lines" -msgstr "more lines" - -#: ../undo.c:2187 -msgid "line less" -msgstr "line less" - -#: ../undo.c:2189 -msgid "fewer lines" -msgstr "fewer lines" - -#: ../undo.c:2193 -msgid "change" -msgstr "change" - -#: ../undo.c:2195 -msgid "changes" -msgstr "changes" - -#: ../undo.c:2225 -#, c-format -msgid "%<PRId64> %s; %s #%<PRId64> %s" -msgstr "%<PRId64> %s; %s #%<PRId64> %s" - -#: ../undo.c:2228 -msgid "before" -msgstr "before" - -#: ../undo.c:2228 -msgid "after" -msgstr "after" - -#: ../undo.c:2325 -msgid "Nothing to undo" -msgstr " ϴ" - -#: ../undo.c:2330 -msgid "number changes when saved" -msgstr "" - -#: ../undo.c:2360 -#, c-format -msgid "%<PRId64> seconds ago" -msgstr "%<PRId64> seconds ago" - -#: ../undo.c:2372 -msgid "E790: undojoin is not allowed after undo" -msgstr "E790: undo ڿ undojoin ϴ" - -#: ../undo.c:2466 -msgid "E439: undo list corrupt" -msgstr "E439: undo ϴ" - -#: ../undo.c:2495 -msgid "E440: undo line missing" -msgstr "E440: undo ϴ" - -#: ../version.c:600 -msgid "" -"\n" -"Included patches: " -msgstr "" -"\n" -"Ե ġ: " - -#: ../version.c:627 -msgid "" -"\n" -"Extra patches: " -msgstr "" -"\n" -" ġ: " - -#: ../version.c:639 ../version.c:864 -msgid "Modified by " -msgstr "Modified by " - -#: ../version.c:646 -msgid "" -"\n" -"Compiled " -msgstr "" -"\n" -"Compiled " - -#: ../version.c:649 -msgid "by " -msgstr "by " - -#: ../version.c:660 -msgid "" -"\n" -"Huge version " -msgstr "" -"\n" -"Huge " - -#: ../version.c:661 -msgid "without GUI." -msgstr "GUI ." - -#: ../version.c:662 -msgid " Features included (+) or not (-):\n" -msgstr " (+: Ե, -: ):\n" - -#: ../version.c:667 -msgid " system vimrc file: \"" -msgstr " ý vimrc : \"" - -#: ../version.c:672 -msgid " user vimrc file: \"" -msgstr " vimrc : \"" - -#: ../version.c:677 -msgid " 2nd user vimrc file: \"" -msgstr " ° vimrc : \"" - -#: ../version.c:682 -msgid " 3rd user vimrc file: \"" -msgstr " ° vimrc : \"" - -#: ../version.c:687 -msgid " user exrc file: \"" -msgstr " exrc : \"" - -#: ../version.c:692 -msgid " 2nd user exrc file: \"" -msgstr " ° exrc : \"" - -#: ../version.c:699 -msgid " fall-back for $VIM: \"" -msgstr " fall-back for $VIM: \"" - -#: ../version.c:705 -msgid " f-b for $VIMRUNTIME: \"" -msgstr " f-b for $VIMRUNTIME: \"" - -#: ../version.c:709 -msgid "Compilation: " -msgstr ": " - -#: ../version.c:712 -msgid "Linking: " -msgstr "ũ: " - -#: ../version.c:717 -msgid " DEBUG BUILD" -msgstr " " - -#: ../version.c:767 -msgid "VIM - Vi IMproved" -msgstr " - Vi" - -#: ../version.c:769 -msgid "version " -msgstr " " - -#: ../version.c:770 -msgid "by Bram Moolenaar et al." -msgstr "by Bram Moolenaar et al." - -#: ../version.c:774 -msgid "Vim is open source and freely distributable" -msgstr " ҽ ְ ¥ ˴ϴ" - -#: ../version.c:776 -msgid "Help poor children in Uganda!" -msgstr "찣ٿ ̸ ּ!" - -#: ../version.c:777 -msgid "type :help iccf<Enter> for information " -msgstr "̿ :help iccf<> Է" - -#: ../version.c:779 -msgid "type :q<Enter> to exit " -msgstr " :q<> Է" - -#: ../version.c:780 -msgid "type :help<Enter> or <F1> for on-line help" -msgstr "¶ :help<> Ǵ <F1> Է" - -#: ../version.c:781 -msgid "type :help version7<Enter> for version info" -msgstr " :help version7<> Է" - -#: ../version.c:784 -msgid "Running in Vi compatible mode" -msgstr "Vi ȣȯ · Դϴ" - -#: ../version.c:785 -msgid "type :set nocp<Enter> for Vim defaults" -msgstr " ⺻ Ϸ :set nocp<> Է" - -#: ../version.c:786 -msgid "type :help cp-default<Enter> for info on this" -msgstr "̿ :help cp-default<> Է" - -#: ../version.c:827 -msgid "Sponsor Vim development!" -msgstr " Ŀ ּ!" - -#: ../version.c:828 -msgid "Become a registered Vim user!" -msgstr " ڷ ϼ!" - -#: ../version.c:831 -msgid "type :help sponsor<Enter> for information " -msgstr "̿ :help sponsor<> Է" - -#: ../version.c:832 -msgid "type :help register<Enter> for information " -msgstr "̿ :help register<> Է" - -#: ../version.c:834 -msgid "menu Help->Sponsor/Register for information " -msgstr "̿ ->Sponsor/Register" - -#: ../window.c:119 -msgid "Already only one window" -msgstr "̹ ϳ â ֽϴ" - -#: ../window.c:224 -msgid "E441: There is no preview window" -msgstr "E441: ̸ â ϴ" - -#: ../window.c:559 -msgid "E442: Can't split topleft and botright at the same time" -msgstr "E442: ʰ Ʒ ÿ ϴ" - -#: ../window.c:1228 -msgid "E443: Cannot rotate when another window is split" -msgstr "E443: ٸ â ȸ ϴ" - -#: ../window.c:1803 -msgid "E444: Cannot close last window" -msgstr "E444: â ϴ" - -#: ../window.c:1810 -msgid "E813: Cannot close autocmd window" -msgstr "E813: autocmd â ϴ" - -#: ../window.c:1814 -msgid "E814: Cannot close window, only autocmd window would remain" -msgstr "E814: â , autocmd â " - -#: ../window.c:2717 -msgid "E445: Other window contains changes" -msgstr "E445: ٸ â ٲϴ" - -#: ../window.c:4805 -msgid "E446: No file name under cursor" -msgstr "E446: Ŀ ؿ ̸ ϴ" - -#~ msgid "E831: bf_key_init() called with empty password" -#~ msgstr "E831: йȣ bf_key_init() Լ ҷϴ" - -#~ msgid "E820: sizeof(uint32_t) != 4" -#~ msgstr "E820: sizeof(uint32_t) != 4" - -#~ msgid "E817: Blowfish big/little endian use wrong" -#~ msgstr "E817: Blowfish big/little endian use wrong" - -#~ msgid "E818: sha256 test failed" -#~ msgstr "E818: sha256 ߽ϴ." - -#~ msgid "E819: Blowfish test failed" -#~ msgstr "E819: Blowfish ߽ϴ." - -#~ msgid "Patch file" -#~ msgstr "Ű " - -#~ msgid "" -#~ "&OK\n" -#~ "&Cancel" -#~ msgstr "" -#~ "Ȯ(&O)\n" -#~ "(&C)" - -#~ msgid "E240: No connection to Vim server" -#~ msgstr "E240: Vim Ǿ ʽϴ" - -#~ msgid "E241: Unable to send to %s" -#~ msgstr "E241: %s() ϴ" - -#~ msgid "E277: Unable to read a server reply" -#~ msgstr "E277: ϴ" - -#~ msgid "E258: Unable to send to client" -#~ msgstr "E258: Ŭ̾Ʈ ϴ" - -#~ msgid "Save As" -#~ msgstr "ٸ ̸ " - -#~ msgid "Edit File" -#~ msgstr " ġ" - -#~ msgid " (NOT FOUND)" -#~ msgstr " ( ã)" - -#~ msgid "Source Vim script" -#~ msgstr " ũƮ ε" - -#~ msgid "unknown" -#~ msgstr "" - -#~ msgid "Edit File in new window" -#~ msgstr " â ġ" - -#~ msgid "Append File" -#~ msgstr " ߰" - -#~ msgid "Window position: X %d, Y %d" -#~ msgstr "â ġ: X %d, Y %d" - -#~ msgid "Save Redirection" -#~ msgstr " " - -#~ msgid "Save View" -#~ msgstr " " - -#~ msgid "Save Session" -#~ msgstr " " - -#~ msgid "Save Setup" -#~ msgstr " " - -#~ msgid "E809: #< is not available without the +eval feature" -#~ msgstr "E809: #< +eval ԵǾ ֽϴ" - -#~ msgid "E196: No digraphs in this version" -#~ msgstr "E196: ǿ digraph ϴ" - -#~ msgid "is a device (disabled with 'opendevice' option)" -#~ msgstr "() ġ ƴմϴ ('opendevice' ɼ )" - -#~ msgid "Reading from stdin..." -#~ msgstr "ǥԷ¿ д ..." - -#~ msgid "[crypted]" -#~ msgstr "[ȣȭ Ǿϴ]" - -#~ msgid "E821: File is encrypted with unknown method" -#~ msgstr "E821: ȣȭǾ ֽϴ" - -#~ msgid "NetBeans disallows writes of unmodified buffers" -#~ msgstr "NetBeans ٲ ۸ ϴ" - -#~ msgid "Partial writes disallowed for NetBeans buffers" -#~ msgstr "NetBeans ۿ ؼ κ ϴ" - -#~ msgid "writing to device disabled with 'opendevice' option" -#~ msgstr "ġ Ⱑ 'opendevice' ɼ " - -#~ msgid "E460: The resource fork would be lost (add ! to override)" -#~ msgstr "E460: The resource fork will be lost ( ! ϱ)" - -#~ msgid "E229: Cannot start the GUI" -#~ msgstr "E229: GUI ϴ" - -#~ msgid "E230: Cannot read from \"%s\"" -#~ msgstr "E230: \"%s\" ϴ" - -#~ msgid "E665: Cannot start GUI, no valid font found" -#~ msgstr "E665: ۲ ã GUI ϴ" - -#~ msgid "E231: 'guifontwide' invalid" -#~ msgstr "E231: 'guifontwide' ̻մϴ" - -#~ msgid "E599: Value of 'imactivatekey' is invalid" -#~ msgstr "E599: 'imactivatekey' ̻մϴ" - -#~ msgid "E254: Cannot allocate color %s" -#~ msgstr "E254: %s() Ҵ ϴ" - -#~ msgid "<cannot open> " -#~ msgstr "< > " - -#~ msgid "E616: vim_SelFile: can't get font %s" -#~ msgstr "E616: vim_SelFile: ۲ %s() ϴ" - -#~ msgid "E614: vim_SelFile: can't return to current directory" -#~ msgstr "E614: vim_SelFile: 丮 ư ϴ" - -#~ msgid "Pathname:" -#~ msgstr " ̸:" - -#~ msgid "E615: vim_SelFile: can't get current directory" -#~ msgstr "E615: vim_SelFile: 丮 ϴ" - -#~ msgid "OK" -#~ msgstr "Ȯ" - -#~ msgid "Cancel" -#~ msgstr "" - -#~ msgid "Scrollbar Widget: Could not get geometry of thumb pixmap." -#~ msgstr "ũѹ : Ƚ Ʈ ϴ." - -#~ msgid "Vim dialog" -#~ msgstr " ȭ" - -#~ msgid "E232: Cannot create BalloonEval with both message and callback" -#~ msgstr "" -#~ "E232: ݹ θ ؼ BalloonEval ϴ" - -#~ msgid "Input _Methods" -#~ msgstr "Է (_M)" - -#~ msgid "VIM - Search and Replace..." -#~ msgstr " - ãƼ ٲٱ..." - -#~ msgid "VIM - Search..." -#~ msgstr " - ã..." - -#~ msgid "Find what:" -#~ msgstr " ã:" - -#~ msgid "Replace with:" -#~ msgstr "ٲ ڿ:" - -#~ msgid "Match whole word only" -#~ msgstr "Ȱ " - -#~ msgid "Direction" -#~ msgstr "" - -#~ msgid "Up" -#~ msgstr "" - -#~ msgid "Down" -#~ msgstr "Ʒ" - -#~ msgid "Find Next" -#~ msgstr " ã" - -#~ msgid "Replace" -#~ msgstr "ٲٱ" - -#~ msgid "Replace All" -#~ msgstr " ٲٱ" - -#~ msgid "Vim: Received \"die\" request from session manager\n" -#~ msgstr ": ڷκ \"die\" û ҽϴ\n" - -#~ msgid "Close" -#~ msgstr "ݱ" - -#~ msgid "New tab" -#~ msgstr " " - -#~ msgid "Open Tab..." -#~ msgstr " ..." - -#~ msgid "Vim: Main window unexpectedly destroyed\n" -#~ msgstr ": â װ Դϴ\n" - -#~ msgid "&Filter" -#~ msgstr "Ÿ(&F)" - -#~ msgid "&Cancel" -#~ msgstr "(&C)" - -#~ msgid "Directories" -#~ msgstr "丮" - -#~ msgid "Filter" -#~ msgstr "Ÿ" - -#~ msgid "&Help" -#~ msgstr "(&H)" - -#~ msgid "Files" -#~ msgstr "" - -#~ msgid "&OK" -#~ msgstr "Ȯ(&O)" - -#~ msgid "Selection" -#~ msgstr "" - -#~ msgid "Find &Next" -#~ msgstr " ã(&N)" - -#~ msgid "&Replace" -#~ msgstr "ٲٱ(&R)" - -#~ msgid "Replace &All" -#~ msgstr " ٲٱ(&A)" - -#~ msgid "&Undo" -#~ msgstr "(&U)" - -#~ msgid "E671: Cannot find window title \"%s\"" -#~ msgstr "E671: â \"%s\"() ã ϴ" - -#~ msgid "E243: Argument not supported: \"-%s\"; Use the OLE version." -#~ msgstr "E243: ʴ : \"-%s\": OLE Ͻʽÿ." - -#~ msgid "E672: Unable to open window inside MDI application" -#~ msgstr "E672: MDI α ȿ â ϴ" - -#~ msgid "Close tab" -#~ msgstr " ݱ" - -#~ msgid "Open tab..." -#~ msgstr " ..." - -#~ msgid "Find string (use '\\\\' to find a '\\')" -#~ msgstr "ڿ ã ('\\' ã '\\\\' )" - -#~ msgid "Find & Replace (use '\\\\' to find a '\\')" -#~ msgstr "ڿ ã ٲٱ ('\\' ã '\\\\' )" - -#~ msgid "Not Used" -#~ msgstr " ʵ" - -#~ msgid "Directory\t*.nothing\n" -#~ msgstr "丮\t*.nothing\n" - -#~ msgid "" -#~ "Vim E458: Cannot allocate colormap entry, some colors may be incorrect" -#~ msgstr "" -#~ " E458: Ʈ Ҵ ϴ, ߸ ֽϴ" - -#~ msgid "E250: Fonts for the following charsets are missing in fontset %s:" -#~ msgstr "E250: ڼ ۲ ۲ü %s ϴ:" - -#~ msgid "E252: Fontset name: %s" -#~ msgstr "E252: ۲ü ̸: %s" - -#~ msgid "Font '%s' is not fixed-width" -#~ msgstr "۲ '%s'() ̰ ƴմϴ" - -#~ msgid "E253: Fontset name: %s\n" -#~ msgstr "E253: ۲ü ̸: %s\n" - -#~ msgid "Font0: %s\n" -#~ msgstr "۲0: %s\n" - -#~ msgid "Font1: %s\n" -#~ msgstr "۲1: %s\n" - -#~ msgid "Font%<PRId64> width is not twice that of font0\n" -#~ msgstr "۲%<PRId64> ʺ ۲0 ι谡 ƴմϴ\n" - -#~ msgid "Font0 width: %<PRId64>\n" -#~ msgstr "۲0 ʺ: %<PRId64>\n" - -#~ msgid "" -#~ "Font1 width: %<PRId64>\n" -#~ "\n" -#~ msgstr "" -#~ "۲1 ʺ: %<PRId64>\n" -#~ "\n" - -#~ msgid "Vim - Font Selector" -#~ msgstr "Vim - ۲ ñ" - -#~ msgid "Name:" -#~ msgstr "̸:" - -#~ msgid "Encoding:" -#~ msgstr "ڵ:" - -#~ msgid "Font:" -#~ msgstr "۲:" - -#~ msgid "Style:" -#~ msgstr "Ÿ:" - -#~ msgid "Size:" -#~ msgstr "ũ:" - -#~ msgid "E256: Hangul automata ERROR" -#~ msgstr "E256: ѱ 丶Ÿ " - -#~ msgid "E563: stat error" -#~ msgstr "E563: stat " - -#~ msgid "E625: cannot open cscope database: %s" -#~ msgstr "E625: cscope ͺ̽ : %s" - -#~ msgid "E626: cannot get cscope database information" -#~ msgstr "E626: cscope ͺ̽ ϴ" - -#~ msgid "cannot save undo information" -#~ msgstr "undo ϴ" - -#~ msgid "" -#~ "E815: Sorry, this command is disabled, the MzScheme libraries could not " -#~ "be loaded." -#~ msgstr "" -#~ "E815: ̾մϴ, ϴ, MzScheme ̺귯 ε" -#~ " ϴ." - -#~ msgid "invalid expression" -#~ msgstr "߸ ǥ" - -#~ msgid "expressions disabled at compile time" -#~ msgstr "ǥ ʵ Ǿϴ" - -#~ msgid "unknown option" -#~ msgstr " ɼ" - -#~ msgid "window index is out of range" -#~ msgstr "â ȣ ϴ" - -#~ msgid "couldn't open buffer" -#~ msgstr "۸ ϴ" - -#~ msgid "cannot delete line" -#~ msgstr " ϴ" - -#~ msgid "cannot replace line" -#~ msgstr " ٲ ϴ" - -#~ msgid "cannot insert line" -#~ msgstr " ϴ" - -#~ msgid "string cannot contain newlines" -#~ msgstr "ڿ newline ϴ" - -#~ msgid "Vim error: ~a" -#~ msgstr "Vim : ~a" - -#~ msgid "Vim error" -#~ msgstr "Vim " - -#~ msgid "buffer is invalid" -#~ msgstr "۰ ̻մϴ" - -#~ msgid "window is invalid" -#~ msgstr "â ̻մϴ" - -#~ msgid "linenr out of range" -#~ msgstr " ȣ ϴ" - -#~ msgid "not allowed in the Vim sandbox" -#~ msgstr "Vim sandbox ʽϴ" - -#~ msgid "E836: This Vim cannot execute :python after using :py3" -#~ msgstr "E836: Vim :py3 Ŀ :python ϴ" - -#~ msgid "" -#~ "E263: Sorry, this command is disabled, the Python library could not be " -#~ "loaded." -#~ msgstr "" -#~ "E263: ̾մϴ, ϴ, ̽ ̺귯 ε" -#~ " ϴ." - -#~ msgid "E659: Cannot invoke Python recursively" -#~ msgstr "E659: Python ȣ ϴ" - -#~ msgid "can't delete OutputObject attributes" -#~ msgstr "OutputObject Ӽ ϴ" - -#~ msgid "softspace must be an integer" -#~ msgstr "softspace ߸ մϴ" - -#~ msgid "invalid attribute" -#~ msgstr "߸ Ӽ" - -#~ msgid "<buffer object (deleted) at %p>" -#~ msgstr "<%p ü ()>" - -#~ msgid "E837: This Vim cannot execute :py3 after using :python" -#~ msgstr "E837: Vim :python Ŀ :py3 ϴ" - -#~ msgid "" -#~ "E266: Sorry, this command is disabled, the Ruby library could not be " -#~ "loaded." -#~ msgstr "" -#~ "E266: ̾մϴ, ϴ, ̺귯 ε " -#~ " ϴ." - -#~ msgid "E267: unexpected return" -#~ msgstr "E267: return" - -#~ msgid "E268: unexpected next" -#~ msgstr "E268: next" - -#~ msgid "E269: unexpected break" -#~ msgstr "E269: break" - -#~ msgid "E270: unexpected redo" -#~ msgstr "E270: redo" - -#~ msgid "E272: unhandled exception" -#~ msgstr "E272: óʵ " - -#~ msgid "E273: unknown longjmp status %d" -#~ msgstr "E273: longjmp %d" - -#~ msgid "Toggle implementation/definition" -#~ msgstr " /" - -#~ msgid "Show base class of" -#~ msgstr "... ⺻ Ŭ ֱ" - -#~ msgid "" -#~ "Cannot connect to SNiFF+. Check environment (sniffemacs must be found in " -#~ "$PATH).\n" -#~ msgstr "" -#~ "SNiFF+ ϴ. ȯ ȮϽʽÿ (sniffemacs $PATH " -#~ "ã մϴ).\n" - -#~ msgid "E274: Sniff: Error during read. Disconnected" -#~ msgstr "E274: Sniff: д . " - -#~ msgid "SNiFF+ is currently " -#~ msgstr "SNiFF+ is currently " - -#~ msgid "not " -#~ msgstr "not " - -#~ msgid "connected" -#~ msgstr "connected" - -#~ msgid "E275: Unknown SNiFF+ request: %s" -#~ msgstr "E275: SNiFF+ û: %s" - -#~ msgid "E276: Error connecting to SNiFF+" -#~ msgstr "E276: SNiFF+ " - -#~ msgid "E278: SNiFF+ not connected" -#~ msgstr "E278: SniFF+ ʾҽϴ" - -#~ msgid "E279: Not a SNiFF+ buffer" -#~ msgstr "E279: SniFF+ ۰ ƴմϴ" - -#~ msgid "Sniff: Error during write. Disconnected" -#~ msgstr "Sniff: . ϴ" - -#~ msgid "invalid buffer number" -#~ msgstr "߸ ȣ" - -#~ msgid "not implemented yet" -#~ msgstr " ʾҽϴ" - -#~ msgid "cannot set line(s)" -#~ msgstr " ϴ" - -#~ msgid "invalid mark name" -#~ msgstr "߸ ũ ̸" - -#~ msgid "mark not set" -#~ msgstr "ũ ʾҽϴ" - -#~ msgid "row %d column %d" -#~ msgstr " %d %d" - -#~ msgid "cannot insert/append line" -#~ msgstr " ְų ϴ" - -#~ msgid "line number out of range" -#~ msgstr " ȣ ϴ" - -#~ msgid "unknown flag: " -#~ msgstr " ÷: " - -#~ msgid "unknown vimOption" -#~ msgstr " ɼ" - -#~ msgid "keyboard interrupt" -#~ msgstr "Ű ͷƮ" - -#~ msgid "vim error" -#~ msgstr " " - -#~ msgid "cannot create buffer/window command: object is being deleted" -#~ msgstr "/â ϴ: ü ϴ" - -#~ msgid "" -#~ "cannot register callback command: buffer/window is already being deleted" -#~ msgstr "ݹ ϴ: /â ̹ ϴ" - -#~ msgid "" -#~ "E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-" -#~ "dev@vim.org" -#~ msgstr "" -#~ "E280: TCL ɰ : reflist !? vim-dev@vim.org ˷" -#~ "ֽʽÿ" - -#~ msgid "cannot register callback command: buffer/window reference not found" -#~ msgstr "ݹ ϴ: /â ã ϴ" - -#~ msgid "" -#~ "E571: Sorry, this command is disabled: the Tcl library could not be " -#~ "loaded." -#~ msgstr "" -#~ "E571: ̾մϴ, ϴ, Tcl ̺귯 ε " -#~ " ϴ." - -#~ msgid "" -#~ "E281: TCL ERROR: exit code is not int!? Please report this to vim-dev@vim." -#~ "org" -#~ msgstr "" -#~ "E281: TCL : ڵ尡 ƴѰ!? vim-dev@vim.org " -#~ "˷ֽʽÿ" - -#~ msgid "E572: exit code %d" -#~ msgstr "E572: ڵ %d" - -#~ msgid "cannot get line" -#~ msgstr " ϴ" - -#~ msgid "Unable to register a command server name" -#~ msgstr " ̸ ϴ" - -#~ msgid "E248: Failed to send command to the destination program" -#~ msgstr "E248: α Ⱑ ߽ϴ" - -#~ msgid "E573: Invalid server id used: %s" -#~ msgstr "E573: ߸ id : %s" - -#~ msgid "E251: VIM instance registry property is badly formed. Deleted!" -#~ msgstr "E251: νϽ Ʈ Ӽ ߸Ǿ ֽϴ. ϴ!" - -#~ msgid "netbeans is not supported with this GUI\n" -#~ msgstr " GUI netbeans ʽϴ\n" - -#~ msgid "This Vim was not compiled with the diff feature." -#~ msgstr " diff Ǿϴ." - -#~ msgid "'-nb' cannot be used: not enabled at compile time\n" -#~ msgstr "'-nb' : Ե \n" - -#~ msgid "Vim: Error: Failure to start gvim from NetBeans\n" -#~ msgstr "Vim: : NetBeans gvim \n" - -#~ msgid "-register\t\tRegister this gvim for OLE" -#~ msgstr "-register\t\t gvim OLE " - -#~ msgid "-unregister\t\tUnregister gvim for OLE" -#~ msgstr "-unregister\t\tgvim OLE " - -#~ msgid "-g\t\t\tRun using GUI (like \"gvim\")" -#~ msgstr "-g\t\t\tGUI (\"gvim\" )" - -#~ msgid "-f or --nofork\tForeground: Don't fork when starting GUI" -#~ msgstr "-f Ȥ --nofork\t: GUI fork " - -#~ msgid "-f\t\t\tDon't use newcli to open window" -#~ msgstr "-f\t\t\tâ newcli " - -#~ msgid "-dev <device>\t\tUse <device> for I/O" -#~ msgstr "-dev <ġ>\t\tI/O <ġ> " - -#~ msgid "-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc" -#~ msgstr "-U <gvimrc>\t\t.gvimrc <gvimrc> " - -#~ msgid "-x\t\t\tEdit encrypted files" -#~ msgstr "-x\t\t\tȣȭ ġ" - -#~ msgid "-display <display>\tConnect vim to this particular X-server" -#~ msgstr "-display <display>\t Ư X- " - -#~ msgid "-X\t\t\tDo not connect to X server" -#~ msgstr "-X\t\t\tX " - -#~ msgid "--remote <files>\tEdit <files> in a Vim server if possible" -#~ msgstr "--remote <files>\tϸ <files> " - -#~ msgid "--remote-silent <files> Same, don't complain if there is no server" -#~ msgstr "--remote-silent <files> , ٰ " - -#~ msgid "" -#~ "--remote-wait <files> As --remote but wait for files to have been edited" -#~ msgstr "--remote-wait <files> --remote ĥ ٸϴ" - -#~ msgid "" -#~ "--remote-wait-silent <files> Same, don't complain if there is no server" -#~ msgstr "--remote-wait-silent <files> , ٰ " - -#~ msgid "" -#~ "--remote-tab[-wait][-silent] <files> As --remote but use tab page per " -#~ "file" -#~ msgstr "" -#~ "--remote-tab[-wait][-silent] <files> --remote Ϻ " -#~ " " - -#~ msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit" -#~ msgstr "--remote-send <keys>\t <keys> " - -#~ msgid "" -#~ "--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result" -#~ msgstr "--remote-expr <expr>\t <expr> ϰ " - -#~ msgid "--serverlist\t\tList available Vim server names and exit" -#~ msgstr "--serverlist\t\t ̸ ǥϰ " - -#~ msgid "--servername <name>\tSend to/become the Vim server <name>" -#~ msgstr "--servername <name>\t <name> ǰų " - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Motif version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim ˰ ִ (Ƽ ):\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (neXtaw version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim ˰ ִ (neXtaw ):\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Athena version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim ˰ ִ (׳ ):\n" - -#~ msgid "-display <display>\tRun vim on <display>" -#~ msgstr "-display <display>\t <display> " - -#~ msgid "-iconic\t\tStart vim iconified" -#~ msgstr "-iconic\t\t · " - -#~ msgid "-background <color>\tUse <color> for the background (also: -bg)" -#~ msgstr "-background <color>\t <color> (also: -bg)" - -#~ msgid "-foreground <color>\tUse <color> for normal text (also: -fg)" -#~ msgstr "-foreground <color>\tϹ <color> (also: -fg)" - -#~ msgid "-font <font>\t\tUse <font> for normal text (also: -fn)" -#~ msgstr "-font <font>\t\tϹ ؽƮ <font> (also: -fn)" - -#~ msgid "-boldfont <font>\tUse <font> for bold text" -#~ msgstr "-boldfont <font>\t ؽƮ <font> " - -#~ msgid "-italicfont <font>\tUse <font> for italic text" -#~ msgstr "-italicfont <font>\t ؽƮ <font> " - -#~ msgid "-geometry <geom>\tUse <geom> for initial geometry (also: -geom)" -#~ msgstr "-geometry <geom>\tʱ Ʈ <geom> (also: -geom)" - -#~ msgid "-borderwidth <width>\tUse a border width of <width> (also: -bw)" -#~ msgstr "-borderwidth <width>\tڸ ̿ <width> (also: -bw)" - -#~ msgid "" -#~ "-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)" -#~ msgstr "-scrollbarwidth <width> ũѹ ̿ <width> (also: -sw)" - -#~ msgid "-menuheight <height>\tUse a menu bar height of <height> (also: -mh)" -#~ msgstr "-menuheight <height>\t ̿ <height> (also: -mh)" - -#~ msgid "-reverse\t\tUse reverse video (also: -rv)" -#~ msgstr "-reverse\t\t (also: -rv)" - -#~ msgid "+reverse\t\tDon't use reverse video (also: +rv)" -#~ msgstr "+reverse\t\t (also: +rv)" - -#~ msgid "-xrm <resource>\tSet the specified resource" -#~ msgstr "-xrm <resource>\tõ ҽ " - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (RISC OS version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim ˰ִ (RISC OS ):\n" - -#~ msgid "--columns <number>\tInitial width of window in columns" -#~ msgstr "--columns <>\tĭ â ʱ ʺ" - -#~ msgid "--rows <number>\tInitial height of window in rows" -#~ msgstr "--rows <>\tٿ â ʱ " - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (GTK+ version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim ˰ִ (GTK+ ):\n" - -#~ msgid "-display <display>\tRun vim on <display> (also: --display)" -#~ msgstr "-display <display>\t <display> (also: --display)" - -#~ msgid "--role <role>\tSet a unique role to identify the main window" -#~ msgstr "--role <role>\t â " - -#~ msgid "--socketid <xid>\tOpen Vim inside another GTK widget" -#~ msgstr "--socketid <xid>\t ٸ GTK ȿ " - -#~ msgid "-P <parent title>\tOpen Vim inside parent application" -#~ msgstr "-P <parent title>\tVim θ α " - -#~ msgid "--windowid <HWND>\tOpen Vim inside another win32 widget" -#~ msgstr "--windowid <HWND>\tٸ win32 ȿ Vim " - -#~ msgid "No display" -#~ msgstr "÷̰ ϴ" - -#~ msgid ": Send failed.\n" -#~ msgstr ": Ⱑ Ͽϴ.\n" - -#~ msgid ": Send failed. Trying to execute locally\n" -#~ msgstr ": . ÿ ˴ϴ\n" - -#~ msgid "No display: Send expression failed.\n" -#~ msgstr "÷ : ǥ Ⱑ ߽ϴ.\n" - -#~ msgid ": Send expression failed.\n" -#~ msgstr ": ǥ Ⱑ ߽ϴ.\n" - -#~ msgid "E543: Not a valid codepage" -#~ msgstr "E543: ڵ ƴմϴ" - -#~ msgid "E285: Failed to create input context" -#~ msgstr "E285: Է ؽƮ ϴ" - -#~ msgid "E286: Failed to open input method" -#~ msgstr "E286: Է ٰ ߽ϴ" - -#~ msgid "E287: Warning: Could not set destroy callback to IM" -#~ msgstr "E287: : IM ı ݹ ϴ" - -#~ msgid "E288: input method doesn't support any style" -#~ msgstr "E288: Է ĵ ʽϴ" - -#~ msgid "E289: input method doesn't support my preedit type" -#~ msgstr "E289: Է preedit ʽϴ" - -#~ msgid "E843: Error while updating swap file crypt" -#~ msgstr "E843: ȣȭ ϴ" - -#~ msgid "" -#~ "E833: %s is encrypted and this version of Vim does not support encryption" -#~ msgstr "" -#~ "E833: %s() ȣȭǾ ִ , Vim ȣȭ ʽϴ" - -#~ msgid "Swap file is encrypted: \"%s\"" -#~ msgstr " ȣȭ: \"%s\"" - -#~ msgid "" -#~ "\n" -#~ "If you entered a new crypt key but did not write the text file," -#~ msgstr "" -#~ "\n" -#~ "ο ȣ Ű Էߴ , ʾҾٸ," - -#~ msgid "" -#~ "\n" -#~ "enter the new crypt key." -#~ msgstr "" -#~ "\n" -#~ "ο ȣ Ű Էϼ." - -#~ msgid "" -#~ "\n" -#~ "If you wrote the text file after changing the crypt key press enter" -#~ msgstr "" -#~ "\n" -#~ "ȣ Ű ٲ Ŀ ߾ٸ Ű ؽƮ ϰ" - -#~ msgid "" -#~ "\n" -#~ "to use the same key for text file and swap file" -#~ msgstr "" -#~ "\n" -#~ " Ϸ " - -#~ msgid "Using crypt key from swap file for the text file.\n" -#~ msgstr "ؽƮ Ͽ Ͽ ȣ Ű մϴ.\n" - -#~ msgid "" -#~ "\n" -#~ " [not usable with this version of Vim]" -#~ msgstr "" -#~ "\n" -#~ " [ ̹ ǿ ]" - -#~ msgid "Tear off this menu" -#~ msgstr " " - -#~ msgid "Select Directory dialog" -#~ msgstr "丮 ȭ" - -#~ msgid "Save File dialog" -#~ msgstr " ȭ" - -#~ msgid "Open File dialog" -#~ msgstr " ȭ" - -#~ msgid "E338: Sorry, no file browser in console mode" -#~ msgstr "E338: ̾մϴ, ܼ ¿ ϴ" - -#~ msgid "Vim: preserving files...\n" -#~ msgstr ": ...\n" - -#~ msgid "Vim: Finished.\n" -#~ msgstr ": ϴ.\n" - -#~ msgid "ERROR: " -#~ msgstr ": " - -#~ msgid "E340: Line is becoming too long" -#~ msgstr "E340: ʹ ϴ" - -#~ msgid "E341: Internal error: lalloc(%<PRId64>, )" -#~ msgstr "E341: : lalloc(%<PRId64>, )" - -#~ msgid "E547: Illegal mouseshape" -#~ msgstr "E547: ̻ 콺" - -#~ msgid "Enter encryption key: " -#~ msgstr "ȣ Ű Է: " - -#~ msgid "Enter same key again: " -#~ msgstr " Ű ٽ Է: " - -#~ msgid "Keys don't match!" -#~ msgstr "Ű ʽϴ!" - -#~ msgid "Cannot connect to Netbeans #2" -#~ msgstr "Netbeans #2 ϴ" - -#~ msgid "Cannot connect to Netbeans" -#~ msgstr "Netbeans ϴ" - -#~ msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\"" -#~ msgstr "E668: NetBeans 尡 ߸: \"%s\"" - -#~ msgid "read from Netbeans socket" -#~ msgstr "Netbeans Ͽ б" - -#~ msgid "E658: NetBeans connection lost for buffer %<PRId64>" -#~ msgstr "E658: %<PRId64> NetBeans ҾȽϴ" - -#~ msgid "E838: netbeans is not supported with this GUI" -#~ msgstr "E838: GUI netbeans ʽϴ" - -#~ msgid "E511: netbeans already connected" -#~ msgstr "E511: netbeans ̹ Ǿ ֽϴ" - -#~ msgid "E505: " -#~ msgstr "E505: " - -#~ msgid "E775: Eval feature not available" -#~ msgstr "E775: Eval ֽϴ" - -#~ msgid "freeing %<PRId64> lines" -#~ msgstr "freeing %<PRId64> lines" - -#~ msgid "E530: Cannot change term in GUI" -#~ msgstr "E530: GUI term ٲ ϴ" - -#~ msgid "E531: Use \":gui\" to start the GUI" -#~ msgstr "E531: GUI Ϸ \":gui\" Ͻʽÿ" - -#~ msgid "E617: Cannot be changed in the GTK+ 2 GUI" -#~ msgstr "E617: GTK+ 2 GUI ٲ ϴ" - -#~ msgid "E596: Invalid font(s)" -#~ msgstr "E596: ߸ ۲()" - -#~ msgid "E597: can't select fontset" -#~ msgstr "E597: ۲ü ϴ" - -#~ msgid "E598: Invalid fontset" -#~ msgstr "E598: ߸ ۲ü" - -#~ msgid "E533: can't select wide font" -#~ msgstr "E533: ̵ ۲ ϴ" - -#~ msgid "E534: Invalid wide font" -#~ msgstr "E534: ߸ ̵ ۲" - -#~ msgid "E538: No mouse support" -#~ msgstr "E538: 콺 ʽϴ" - -#~ msgid "cannot open " -#~ msgstr "cannot open " - -#~ msgid "VIM: Can't open window!\n" -#~ msgstr ": â ϴ!\n" - -#~ msgid "Need Amigados version 2.04 or later\n" -#~ msgstr "ƹ̰ 2.04 ʿմϴ\n" - -#~ msgid "Need %s version %<PRId64>\n" -#~ msgstr "Need %s version %<PRId64>\n" - -#~ msgid "Cannot open NIL:\n" -#~ msgstr "NIL :\n" - -#~ msgid "Cannot create " -#~ msgstr "Cannot create " - -#~ msgid "Vim exiting with %d\n" -#~ msgstr " %d ϴ\n" - -#~ msgid "cannot change console mode ?!\n" -#~ msgstr "ܼ ¸ ٲ ϴ ?!\n" - -#~ msgid "mch_get_shellsize: not a console??\n" -#~ msgstr "mch_get_shellsize: ܼ ƴѰ??\n" - -#~ msgid "E360: Cannot execute shell with -f option" -#~ msgstr "E360: -f ɼ ϴ" - -#~ msgid "Cannot execute " -#~ msgstr "Cannot execute " - -#~ msgid "shell " -#~ msgstr "shell " - -#~ msgid " returned\n" -#~ msgstr " returned\n" - -#~ msgid "ANCHOR_BUF_SIZE too small." -#~ msgstr "ANCHOR_BUF_SIZE ʹ ۽ϴ." - -#~ msgid "I/O ERROR" -#~ msgstr "I/O " - -#~ msgid "Message" -#~ msgstr "" - -#~ msgid "'columns' is not 80, cannot execute external commands" -#~ msgstr "'columns' 80 ƴϾ, ܺ ϴ" - -#~ msgid "E237: Printer selection failed" -#~ msgstr "E237: ߽ϴ" - -#~ msgid "to %s on %s" -#~ msgstr "to %s on %s" - -#~ msgid "E613: Unknown printer font: %s" -#~ msgstr "E613: ۲: %s" - -#~ msgid "E238: Print error: %s" -#~ msgstr "E238: μ : %s" - -#~ msgid "Printing '%s'" -#~ msgstr "'%s' μ" - -#~ msgid "E244: Illegal charset name \"%s\" in font name \"%s\"" -#~ msgstr "E244: ߸ ڼ ̸ \"%s\"() ۲ ̸ \"%s\" ֽϴ" - -#~ msgid "E245: Illegal char '%c' in font name \"%s\"" -#~ msgstr "E245: ߸ '%c'() ۲ ̸ \"%s\" ֽϴ" - -#~ msgid "Vim: Double signal, exiting\n" -#~ msgstr ": ñ׳ , ϴ\n" - -#~ msgid "Vim: Caught deadly signal %s\n" -#~ msgstr ": %s ñ׳ ҽϴ\n" - -#~ msgid "Vim: Caught deadly signal\n" -#~ msgstr ": ñ׳ ҽϴ\n" - -#~ msgid "Opening the X display took %<PRId64> msec" -#~ msgstr "X ÷̸ %<PRId64> msec ɷȽϴ" - -#~ msgid "" -#~ "\n" -#~ "Vim: Got X error\n" -#~ msgstr "" -#~ "\n" -#~ ": X ϴ\n" - -#~ msgid "Testing the X display failed" -#~ msgstr "X ÷ ߽ϴ" - -#~ msgid "Opening the X display timed out" -#~ msgstr "X ÷̸ ٰ ð ʰǾϴ" - -#~ msgid "" -#~ "\n" -#~ "Cannot execute shell sh\n" -#~ msgstr "" -#~ "\n" -#~ " sh ϴ\n" - -#~ msgid "" -#~ "\n" -#~ "Cannot create pipes\n" -#~ msgstr "" -#~ "\n" -#~ " ϴ\n" - -#~ msgid "" -#~ "\n" -#~ "Cannot fork\n" -#~ msgstr "" -#~ "\n" -#~ "ڽ μ ϴ\n" - -#~ msgid "" -#~ "\n" -#~ "Command terminated\n" -#~ msgstr "" -#~ "\n" -#~ " ϴ\n" - -#~ msgid "XSMP lost ICE connection" -#~ msgstr "XSMP ICE ҾȽϴ" - -#~ msgid "Opening the X display failed" -#~ msgstr "X ÷ Ⱑ ߽ϴ" - -#~ msgid "XSMP handling save-yourself request" -#~ msgstr "XSMP save-yourself û ϰ ֽϴ" - -#~ msgid "XSMP opening connection" -#~ msgstr "XSMP Դϴ" - -#~ msgid "XSMP ICE connection watch failed" -#~ msgstr "XSMP ICE ø ߽ϴ" - -#~ msgid "XSMP SmcOpenConnection failed: %s" -#~ msgstr "XSMP SmcOpenConnection : %s" - -#~ msgid "At line" -#~ msgstr "At line" - -#~ msgid "Could not load vim32.dll!" -#~ msgstr "vim32.dll ҷ ϴ!" - -#~ msgid "VIM Error" -#~ msgstr " " - -#~ msgid "Could not fix up function pointers to the DLL!" -#~ msgstr "Լ DLL ٲ ϴ!" - -#~ msgid "shell returned %d" -#~ msgstr " %d() ־ϴ" - -#~ msgid "Vim: Caught %s event\n" -#~ msgstr ": %s ̺Ʈ ҽϴ\n" - -#~ msgid "close" -#~ msgstr "ݱ" - -#~ msgid "logoff" -#~ msgstr "αƿ" - -#~ msgid "shutdown" -#~ msgstr "˴ٿ" - -#~ msgid "E371: Command not found" -#~ msgstr "E371: ã ϴ" - -#~ msgid "" -#~ "VIMRUN.EXE not found in your $PATH.\n" -#~ "External commands will not pause after completion.\n" -#~ "See :help win32-vimrun for more information." -#~ msgstr "" -#~ "VIMRUN.EXE $PATH ã ϴ.\n" -#~ "ܺ ϴ.\n" -#~ " ÷ :help win32-vimrun ʽÿ." - -#~ msgid "Vim Warning" -#~ msgstr " " - -#~ msgid "Error file" -#~ msgstr " " - -#~ msgid "Warning: Cannot find word list \"%s_%s.spl\" or \"%s_ascii.spl\"" -#~ msgstr "" -#~ ": ܾ \"%s_%s.spl\" Ȥ \"%s_ascii.spl\" ã ϴ" - -#~ msgid "Conversion in %s not supported" -#~ msgstr "%s ȯ ʽϴ" - -#~ msgid "E430: Tag file path truncated for %s\n" -#~ msgstr "E430: %s ± ΰ ߷Ƚϴ\n" - -#~ msgid "new shell started\n" -#~ msgstr " ۵Ǿϴ\n" - -#~ msgid "Used CUT_BUFFER0 instead of empty selection" -#~ msgstr " CUT_BUFFER0 ߽ϴ" - -#~ msgid "No undo possible; continue anyway" -#~ msgstr " Ұ; · մϴ" - -#~ msgid "E832: Non-encrypted file has encrypted undo file: %s" -#~ msgstr "" -#~ "E832: ȣȭ ȣȭ undo ֽϴ: %s" - -#~ msgid "E826: Undo file decryption failed: %s" -#~ msgstr "E826: Undo ص ϴ: %s" - -#~ msgid "E827: Undo file is encrypted: %s" -#~ msgstr "E827: Undo ȣȭǾϴ: %s" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16/32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 16/32 Ʈ GUI " - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 64-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 64Ʈ GUI " - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 32Ʈ GUI " - -#~ msgid " in Win32s mode" -#~ msgstr " Win32s " - -#~ msgid " with OLE support" -#~ msgstr " OLE " - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 64-bit console version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 64Ʈ ܼ " - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit console version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 32Ʈ ܼ " - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16-bit version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 16Ʈ " - -#~ msgid "" -#~ "\n" -#~ "32-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ "32Ʈ MS-DOS " - -#~ msgid "" -#~ "\n" -#~ "16-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ "16Ʈ MS-DOS " - -#~ msgid "" -#~ "\n" -#~ "MacOS X (unix) version" -#~ msgstr "" -#~ "\n" -#~ "MacOS X (н) " - -#~ msgid "" -#~ "\n" -#~ "MacOS X version" -#~ msgstr "" -#~ "\n" -#~ "MacOS X " - -#~ msgid "" -#~ "\n" -#~ "MacOS version" -#~ msgstr "" -#~ "\n" -#~ "MacOS " - -#~ msgid "" -#~ "\n" -#~ "RISC OS version" -#~ msgstr "" -#~ "\n" -#~ "RISC OS " - -#~ msgid "" -#~ "\n" -#~ "OpenVMS version" -#~ msgstr "" -#~ "\n" -#~ "OpenVMS " - -#~ msgid "" -#~ "\n" -#~ "Big version " -#~ msgstr "" -#~ "\n" -#~ "Big " - -#~ msgid "" -#~ "\n" -#~ "Normal version " -#~ msgstr "" -#~ "\n" -#~ "Normal " - -#~ msgid "" -#~ "\n" -#~ "Small version " -#~ msgstr "" -#~ "\n" -#~ "Small " - -#~ msgid "" -#~ "\n" -#~ "Tiny version " -#~ msgstr "" -#~ "\n" -#~ "Tiny " - -#~ msgid "with GTK2-GNOME GUI." -#~ msgstr "GTK2-GNOME GUI." - -#~ msgid "with GTK2 GUI." -#~ msgstr "GTK2 GUI." - -#~ msgid "with X11-Motif GUI." -#~ msgstr "X11-Motif GUI." - -#~ msgid "with X11-neXtaw GUI." -#~ msgstr "X11-neXtaw GUI." - -#~ msgid "with X11-Athena GUI." -#~ msgstr "X11-Athena GUI." - -#~ msgid "with Photon GUI." -#~ msgstr "Photon GUI." - -#~ msgid "with GUI." -#~ msgstr "GUI." - -#~ msgid "with Carbon GUI." -#~ msgstr "Carbon GUI." - -#~ msgid "with Cocoa GUI." -#~ msgstr "Cocoa GUI." - -#~ msgid "with (classic) GUI." -#~ msgstr "(Ŭ) GUI." - -#~ msgid " system gvimrc file: \"" -#~ msgstr " ý gvimrc : \"" - -#~ msgid " user gvimrc file: \"" -#~ msgstr " gvimrc : \"" - -#~ msgid "2nd user gvimrc file: \"" -#~ msgstr " ° gvimrc : \"" - -#~ msgid "3rd user gvimrc file: \"" -#~ msgstr " ° gvimrc : \"" - -#~ msgid " system menu file: \"" -#~ msgstr " ý : \"" - -#~ msgid "Compiler: " -#~ msgstr "Ϸ: " - -#~ msgid "menu Help->Orphans for information " -#~ msgstr "̿ -> " - -#~ msgid "Running modeless, typed text is inserted" -#~ msgstr " ̸, Էµ ڴ Ե˴ϴ" - -#~ msgid "menu Edit->Global Settings->Toggle Insert Mode " -#~ msgstr " -> -> Ͻø " - -#~ msgid " for two modes " -#~ msgstr " 带 ֽϴ " - -#~ msgid "menu Edit->Global Settings->Toggle Vi Compatible" -#~ msgstr " -> ->Vi ȣȯ Ͻø " - -#~ msgid " for Vim defaults " -#~ msgstr " Vim ⺻ մϴ " - -#~ msgid "WARNING: Windows 95/98/ME detected" -#~ msgstr ": 95/98/ME ã" - -#~ msgid "type :help windows95<Enter> for info on this" -#~ msgstr "̿ :help windows95<> Է" - -#~ msgid "E370: Could not load library %s" -#~ msgstr "E370: %s ̺귯 ε ϴ" - -#~ msgid "" -#~ "Sorry, this command is disabled: the Perl library could not be loaded." -#~ msgstr "" -#~ "̾մϴ, ϴ, Perl ̺귯 ε " -#~ "ϴ." - -#~ msgid "E299: Perl evaluation forbidden in sandbox without the Safe module" -#~ msgstr "E299: Safe ̴ sandbox Perl evaluation ѵ˴ϴ" - -#~ msgid "Edit with &multiple Vims" -#~ msgstr " (&M)" - -#~ msgid "Edit with single &Vim" -#~ msgstr "ϳ θ (&V)" - -#~ msgid "Diff with Vim" -#~ msgstr " Diff" - -#~ msgid "Edit with &Vim" -#~ msgstr " (&V)" - -#~ msgid "Edit with existing Vim - " -#~ msgstr "ϳ θ - " - -#~ msgid "Edits the selected file(s) with Vim" -#~ msgstr "õ () " - -#~ msgid "Error creating process: Check if gvim is in your path!" -#~ msgstr "μ : gvim path ִ Ȯϼ!" - -#~ msgid "gvimext.dll error" -#~ msgstr "gvimext.dll " - -#~ msgid "Path length too long!" -#~ msgstr "ΰ ʹ ϴ" - -#~ msgid "E234: Unknown fontset: %s" -#~ msgstr "E234: ۲ü: %s" - -#~ msgid "E235: Unknown font: %s" -#~ msgstr "E235: ۲: %s" - -#~ msgid "E236: Font \"%s\" is not fixed-width" -#~ msgstr "E236: ۲ \"%s\"() ̰ ƴմϴ" - -#~ msgid "E448: Could not load library function %s" -#~ msgstr "E448: %s ̺귯 Լ ε ϴ" - -#~ msgid "E26: Hebrew cannot be used: Not enabled at compile time\n" -#~ msgstr "E26: Hebrew ϴ: Ե ʾҽϴ\n" - -#~ msgid "E27: Farsi cannot be used: Not enabled at compile time\n" -#~ msgstr "E27: Farsi ϴ: Ե ʾҽϴ\n" - -#~ msgid "E800: Arabic cannot be used: Not enabled at compile time\n" -#~ msgstr "E800: Arabic ϴ: Ե ʾҽϴ\n" - -#~ msgid "E247: no registered server named \"%s\"" -#~ msgstr "E247: \"%s\"() ϵ ƴմϴ" - -#~ msgid "E233: cannot open display" -#~ msgstr "E233: ÷̸ ϴ" - -#~ msgid "E449: Invalid expression received" -#~ msgstr "E449: ߸ ǥ ϴ" - -#~ msgid "E463: Region is guarded, cannot modify" -#~ msgstr "E463: ȣǰ ־ ϴ" - -#~ msgid "E744: NetBeans does not allow changes in read-only files" -#~ msgstr "E744: NetBeans б ٲ ϴ" - -#~ msgid "Need encryption key for \"%s\"" -#~ msgstr "\"%s\" ȣ Ű ʿմϴ" - -#~ msgid "writelines() requires list of strings" -#~ msgstr "writelines() ڿ ʿմϴ" - -#~ msgid "E264: Python: Error initialising I/O objects" -#~ msgstr "E264: ̽: I/O ü ʱȭ ϴ" - -#~ msgid "no such buffer" -#~ msgstr " ۴ ϴ" - -#~ msgid "attempt to refer to deleted window" -#~ msgstr " â Ϸ Ͽϴ" - -#~ msgid "readonly attribute" -#~ msgstr "б Ӽ" - -#~ msgid "cursor position outside buffer" -#~ msgstr "ۼ ġ ۿ ֽϴ" - -#~ msgid "<window object (deleted) at %p>" -#~ msgstr "<%p â ü ()>" - -#~ msgid "<window object (unknown) at %p>" -#~ msgstr "<%p â ü ()>" - -#~ msgid "<window %d>" -#~ msgstr "<â %d>" - -#~ msgid "no such window" -#~ msgstr " â ϴ" - -#~ msgid "attempt to refer to deleted buffer" -#~ msgstr " ۸ Ϸ Ͽϴ" diff --git a/src/nvim/po/nb.po b/src/nvim/po/nb.po index 76e42ddcd6..fefcf20b69 100644 --- a/src/nvim/po/nb.po +++ b/src/nvim/po/nb.po @@ -2699,11 +2699,6 @@ msgstr "E49: Ugyldig \"scroll\"-verdi" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/nl.po b/src/nvim/po/nl.po index 6013b847cb..f2877903f2 100644 --- a/src/nvim/po/nl.po +++ b/src/nvim/po/nl.po @@ -2685,11 +2685,6 @@ msgstr "E49: ongeldige scroll-grootte" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/no.po b/src/nvim/po/no.po index 76e42ddcd6..fefcf20b69 100644 --- a/src/nvim/po/no.po +++ b/src/nvim/po/no.po @@ -2699,11 +2699,6 @@ msgstr "E49: Ugyldig \"scroll\"-verdi" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/pl.UTF-8.po b/src/nvim/po/pl.UTF-8.po index 2536efb422..0757afd3ae 100644 --- a/src/nvim/po/pl.UTF-8.po +++ b/src/nvim/po/pl.UTF-8.po @@ -2658,11 +2658,6 @@ msgstr "E49: Niewłaściwa wielkość przewinięcia" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/pl.cp1250.po b/src/nvim/po/pl.cp1250.po deleted file mode 100644 index 30835637d0..0000000000 --- a/src/nvim/po/pl.cp1250.po +++ /dev/null @@ -1,8260 +0,0 @@ -# translation of pl.po to Polish -# Polish Translation for Vim -# -# updated 2013 for vim-7.4 -# -# FIRST AUTHOR Marcin Dalecki <martin@dalecki.de>, 2000. -# Mikolaj Machowski <mikmach@wp.pl>, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2013. -msgid "" -msgstr "" -"Project-Id-Version: pl\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-26 14:21+0200\n" -"PO-Revision-Date: 2010-08-10 18:15+0200\n" -"Last-Translator: Mikolaj Machowski <mikmach@wp.pl>\n" -"Language: pl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=cp1250\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.0\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" - -#: ../api/private/helpers.c:201 -#, fuzzy -msgid "Unable to get option value" -msgstr "nie mog pobra wartoci opcji" - -#: ../api/private/helpers.c:204 -msgid "internal error: unknown option type" -msgstr "bd wewntrzny: nieznany typ opcji" - -#: ../buffer.c:92 -msgid "[Location List]" -msgstr "[Lista lokacji]" - -#: ../buffer.c:93 -msgid "[Quickfix List]" -msgstr "[Lista quickfix]" - -#: ../buffer.c:94 -msgid "E855: Autocommands caused command to abort" -msgstr "E855: Autokomendy spowodoway porzucenie komendy" - -#: ../buffer.c:135 -msgid "E82: Cannot allocate any buffer, exiting..." -msgstr "E82: Nie mog zarezerwowa bufora; zakoczenie..." - -#: ../buffer.c:138 -msgid "E83: Cannot allocate buffer, using other one..." -msgstr "E83: Nie mog zarezerwowa bufora; uywam innego..." - -#: ../buffer.c:763 -msgid "E515: No buffers were unloaded" -msgstr "E515: Nie wyadowano adnego bufora" - -#: ../buffer.c:765 -msgid "E516: No buffers were deleted" -msgstr "E516: Nie skasowano adnego bufora" - -#: ../buffer.c:767 -msgid "E517: No buffers were wiped out" -msgstr "E517: Nie wyrzucono adnego bufora" - -#: ../buffer.c:772 -msgid "1 buffer unloaded" -msgstr "1 bufor wyadowany" - -#: ../buffer.c:774 -#, c-format -msgid "%d buffers unloaded" -msgstr "wyadowano %d buforw" - -#: ../buffer.c:777 -msgid "1 buffer deleted" -msgstr "1 bufor skasowany" - -#: ../buffer.c:779 -#, c-format -msgid "%d buffers deleted" -msgstr "%d buforw skasowano" - -#: ../buffer.c:782 -msgid "1 buffer wiped out" -msgstr "wyrzucono 1 bufor " - -#: ../buffer.c:784 -#, c-format -msgid "%d buffers wiped out" -msgstr "wyrzucono %d buforw" - -#: ../buffer.c:806 -msgid "E90: Cannot unload last buffer" -msgstr "E90: Nie mog wyadowa ostatniego bufora" - -#: ../buffer.c:874 -msgid "E84: No modified buffer found" -msgstr "E84: Nie znaleziono zmienionych buforw" - -#. back where we started, didn't find anything. -#: ../buffer.c:903 -msgid "E85: There is no listed buffer" -msgstr "E85: Nie ma wylistowanych buforw" - -#: ../buffer.c:913 -#, c-format -msgid "E86: Buffer %<PRId64> does not exist" -msgstr "E86: Bufor \"%<PRId64>\" nie istnieje" - -#: ../buffer.c:915 -msgid "E87: Cannot go beyond last buffer" -msgstr "E87: Nie mog przej poza ostatni bufor" - -#: ../buffer.c:917 -msgid "E88: Cannot go before first buffer" -msgstr "E88: Nie mog przej przed pierwszy bufor" - -#: ../buffer.c:945 -#, c-format -msgid "" -"E89: No write since last change for buffer %<PRId64> (add ! to override)" -msgstr "E89: Nie zapisano zmian w buforze %<PRId64> (wymu przez !)" - -#. wrap around (may cause duplicates) -#: ../buffer.c:1423 -msgid "W14: Warning: List of file names overflow" -msgstr "W14: OSTRZEENIE: Przepenienie listy nazw plikw" - -#: ../buffer.c:1555 ../quickfix.c:3361 -#, c-format -msgid "E92: Buffer %<PRId64> not found" -msgstr "E92: Nie znaleziono bufora %<PRId64>" - -#: ../buffer.c:1798 -#, c-format -msgid "E93: More than one match for %s" -msgstr "E93: Wielokrotne dopasowania dla %s" - -#: ../buffer.c:1800 -#, c-format -msgid "E94: No matching buffer for %s" -msgstr "E94: aden bufor nie pasuje do %s" - -#: ../buffer.c:2161 -#, c-format -msgid "line %<PRId64>" -msgstr "wiersz %<PRId64>" - -#: ../buffer.c:2233 -msgid "E95: Buffer with this name already exists" -msgstr "E95: Bufor o tej nazwie ju istnieje" - -#: ../buffer.c:2498 -msgid " [Modified]" -msgstr " [Zmieniony]" - -#: ../buffer.c:2501 -msgid "[Not edited]" -msgstr "[Nie edytowany]" - -#: ../buffer.c:2504 -msgid "[New file]" -msgstr "[Nowy Plik]" - -#: ../buffer.c:2505 -msgid "[Read errors]" -msgstr "[Bd odczytu]" - -#: ../buffer.c:2506 ../buffer.c:3217 ../fileio.c:1807 ../screen.c:4895 -msgid "[RO]" -msgstr "[RO]" - -#: ../buffer.c:2507 ../fileio.c:1807 -msgid "[readonly]" -msgstr "[tylko odczyt]" - -#: ../buffer.c:2524 -#, c-format -msgid "1 line --%d%%--" -msgstr "1 wiersz --%d%%--" - -#: ../buffer.c:2526 -#, c-format -msgid "%<PRId64> lines --%d%%--" -msgstr "%<PRId64> wiersze --%d%%--" - -#: ../buffer.c:2530 -#, c-format -msgid "line %<PRId64> of %<PRId64> --%d%%-- col " -msgstr "wiersz %<PRId64> z %<PRId64> --%d%%-- kol " - -#: ../buffer.c:2632 ../buffer.c:4292 ../memline.c:1554 -msgid "[No Name]" -msgstr "[Bez nazwy]" - -#. must be a help buffer -#: ../buffer.c:2667 -msgid "help" -msgstr "pomoc" - -#: ../buffer.c:3225 ../screen.c:4883 -msgid "[Help]" -msgstr "[Pomoc]" - -#: ../buffer.c:3254 ../screen.c:4887 -msgid "[Preview]" -msgstr "[Podgld]" - -#: ../buffer.c:3528 -msgid "All" -msgstr "Wszystko" - -#: ../buffer.c:3528 -msgid "Bot" -msgstr "D" - -#: ../buffer.c:3531 -msgid "Top" -msgstr "Gra" - -#: ../buffer.c:4244 -msgid "" -"\n" -"# Buffer list:\n" -msgstr "" -"\n" -"# Lista buforw:\n" - -#: ../buffer.c:4289 -msgid "[Scratch]" -msgstr "[Notka]" - -#: ../buffer.c:4529 -msgid "" -"\n" -"--- Signs ---" -msgstr "" -"\n" -"--- Znaki ---" - -#: ../buffer.c:4538 -#, c-format -msgid "Signs for %s:" -msgstr "Znaki dla %s:" - -#: ../buffer.c:4543 -#, c-format -msgid " line=%<PRId64> id=%d name=%s" -msgstr " wiersz=%<PRId64> id=%d nazwa=%s" - -#: ../cursor_shape.c:68 -msgid "E545: Missing colon" -msgstr "E545: Brak dwukropka" - -#: ../cursor_shape.c:70 ../cursor_shape.c:94 -msgid "E546: Illegal mode" -msgstr "E546: Niedozwolony tryb" - -#: ../cursor_shape.c:134 -msgid "E548: digit expected" -msgstr "E548: oczekiwaem na cyfr" - -#: ../cursor_shape.c:138 -msgid "E549: Illegal percentage" -msgstr "E549: Niedozwolony procent" - -#: ../diff.c:146 -#, c-format -msgid "E96: Can not diff more than %<PRId64> buffers" -msgstr "E96: Nie mog zrnicowa wicej ni %<PRId64> buforw" - -#: ../diff.c:753 -msgid "E810: Cannot read or write temp files" -msgstr "E810: Nie mog otworzy lub zapisa plikw tymczasowych" - -#: ../diff.c:755 -msgid "E97: Cannot create diffs" -msgstr "E97: Nie mog stworzy rnic" - -#: ../diff.c:966 -msgid "E816: Cannot read patch output" -msgstr "E816: Nie mog odczyta wyjcia pliku aty" - -#: ../diff.c:1220 -msgid "E98: Cannot read diff output" -msgstr "E98: Nie mog wczyta wyjcia rnicy" - -#: ../diff.c:2081 -msgid "E99: Current buffer is not in diff mode" -msgstr "E99: Biecy bufor nie jest w trybie rnic" - -#: ../diff.c:2100 -msgid "E793: No other buffer in diff mode is modifiable" -msgstr "E793: aden inny bufor w trybie diff nie jest modyfikowalny" - -#: ../diff.c:2102 -msgid "E100: No other buffer in diff mode" -msgstr "E100: Brak innego bufora w trybie rnic" - -#: ../diff.c:2112 -msgid "E101: More than two buffers in diff mode, don't know which one to use" -msgstr "" -"E101: Wicej ni jeden bufor w trybie rnicowania, nie wiem ktrego uy" - -#: ../diff.c:2141 -#, c-format -msgid "E102: Can't find buffer \"%s\"" -msgstr "E102: Nie mog znale bufora \"%s\"" - -#: ../diff.c:2152 -#, c-format -msgid "E103: Buffer \"%s\" is not in diff mode" -msgstr "E103: Bufor \"%s\" nie jest w trybie rnicowania" - -#: ../diff.c:2193 -msgid "E787: Buffer changed unexpectedly" -msgstr "E787: Nieoczekiwana zmiana bufora" - -#: ../digraph.c:1598 -msgid "E104: Escape not allowed in digraph" -msgstr "E104: Escape jest niedozwolone w dwugrafie" - -#: ../digraph.c:1760 -msgid "E544: Keymap file not found" -msgstr "E544: Nie znaleziono pliku rozkadu klawiszy" - -#: ../digraph.c:1785 -msgid "E105: Using :loadkeymap not in a sourced file" -msgstr "E105: Zastosowano :loadkeymap w niewczytanym pliku" - -#: ../digraph.c:1821 -msgid "E791: Empty keymap entry" -msgstr "E791: Pusty wpis keymap" - -#: ../edit.c:82 -msgid " Keyword completion (^N^P)" -msgstr " Dopenianie sw kluczowych (^N^P)" - -#. ctrl_x_mode == 0, ^P/^N compl. -#: ../edit.c:83 -msgid " ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" -msgstr " ^X tryb (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" - -#: ../edit.c:85 -msgid " Whole line completion (^L^N^P)" -msgstr " Dopenianie penych wierszy (^L^N^P)" - -#: ../edit.c:86 -msgid " File name completion (^F^N^P)" -msgstr " Dopenianie nazw plikw (^F^N^P)" - -#: ../edit.c:87 -msgid " Tag completion (^]^N^P)" -msgstr " Dopenianie znacznikw (^]^N^P)" - -#: ../edit.c:88 -msgid " Path pattern completion (^N^P)" -msgstr " Dopenianie wzorcw tropw (^N^P)" - -#: ../edit.c:89 -msgid " Definition completion (^D^N^P)" -msgstr " Dopenianie definicji (^D^N^P)" - -#: ../edit.c:91 -msgid " Dictionary completion (^K^N^P)" -msgstr " Dopenianie ze sownikw (^K^N^P)" - -#: ../edit.c:92 -msgid " Thesaurus completion (^T^N^P)" -msgstr " Dopenianie z tezaurusa (^T^N^P)" - -#: ../edit.c:93 -msgid " Command-line completion (^V^N^P)" -msgstr " Dopenianie wiersza polece (^V^N^P)" - -#: ../edit.c:94 -msgid " User defined completion (^U^N^P)" -msgstr "Dopenianie zdefiniowane przez uytkownika (^U^N^P)" - -#: ../edit.c:95 -msgid " Omni completion (^O^N^P)" -msgstr " Omni uzupenianie (^O^N^P)" - -#: ../edit.c:96 -msgid " Spelling suggestion (s^N^P)" -msgstr "Propozycja pisowni (^L^N^P)" - -#: ../edit.c:97 -msgid " Keyword Local completion (^N^P)" -msgstr " Lokalne dopenianie sw kluczowych (^N^P)" - -#: ../edit.c:100 -msgid "Hit end of paragraph" -msgstr "Dobiem do koca akapitu" - -#: ../edit.c:101 -msgid "E839: Completion function changed window" -msgstr "E839: Funkcja uzupeniania zmienia okno" - -#: ../edit.c:102 -msgid "E840: Completion function deleted text" -msgstr "E840: Funkcja uzupenania usuna tekst" - -#: ../edit.c:1847 -msgid "'dictionary' option is empty" -msgstr "opcja 'dictionary' jest pusta" - -#: ../edit.c:1848 -msgid "'thesaurus' option is empty" -msgstr "opcja 'thesaurus' jest pusta" - -#: ../edit.c:2655 -#, c-format -msgid "Scanning dictionary: %s" -msgstr "Przegldam sownik: %s" - -#: ../edit.c:3079 -msgid " (insert) Scroll (^E/^Y)" -msgstr " (wprowadzanie) Przewijanie (^E/^Y)" - -#: ../edit.c:3081 -msgid " (replace) Scroll (^E/^Y)" -msgstr " (zamiana) Przewijanie (^E/^Y)" - -#: ../edit.c:3587 -#, c-format -msgid "Scanning: %s" -msgstr "Przegldam: %s" - -#: ../edit.c:3614 -msgid "Scanning tags." -msgstr "Przegldam znaczniki." - -#: ../edit.c:4519 -msgid " Adding" -msgstr " Dodaj" - -#. showmode might reset the internal line pointers, so it must -#. * be called before line = ml_get(), or when this address is no -#. * longer needed. -- Acevedo. -#. -#: ../edit.c:4562 -msgid "-- Searching..." -msgstr "-- Szukam..." - -#: ../edit.c:4618 -msgid "Back at original" -msgstr "Z powrotem na pierwotnym" - -#: ../edit.c:4621 -msgid "Word from other line" -msgstr "Wyraz z innego wiersza" - -#: ../edit.c:4624 -msgid "The only match" -msgstr "Jedyne dopasowanie" - -#: ../edit.c:4680 -#, c-format -msgid "match %d of %d" -msgstr "pasuje %d z %d" - -#: ../edit.c:4684 -#, c-format -msgid "match %d" -msgstr "pasuje %d" - -#: ../eval.c:137 -msgid "E18: Unexpected characters in :let" -msgstr "E18: Nieoczekiwane znaki w :let" - -#: ../eval.c:138 -#, c-format -msgid "E684: list index out of range: %<PRId64>" -msgstr "E684: Indeks listy poza zakresem: %<PRId64>" - -#: ../eval.c:139 -#, c-format -msgid "E121: Undefined variable: %s" -msgstr "E121: Nieokrelona zmienna: %s" - -#: ../eval.c:140 -msgid "E111: Missing ']'" -msgstr "E111: Brak ']'" - -#: ../eval.c:141 -#, c-format -msgid "E686: Argument of %s must be a List" -msgstr "E686: Argument %s musi by List" - -#: ../eval.c:143 -#, c-format -msgid "E712: Argument of %s must be a List or Dictionary" -msgstr "E712: Argument %s musi by List lub Sownikiem" - -#: ../eval.c:144 -msgid "E713: Cannot use empty key for Dictionary" -msgstr "E713: Nie mona uy pustego klucza dla Sownika" - -#: ../eval.c:145 -msgid "E714: List required" -msgstr "E714: wymagana Lista" - -#: ../eval.c:146 -msgid "E715: Dictionary required" -msgstr "E715: wymagany Sownik" - -#: ../eval.c:147 -#, c-format -msgid "E118: Too many arguments for function: %s" -msgstr "E118: Zbyt wiele argumentw dla funkcji: %s" - -#: ../eval.c:148 -#, c-format -msgid "E716: Key not present in Dictionary: %s" -msgstr "E716: Klucz nie istnieje w Sowniku: %s" - -#: ../eval.c:150 -#, c-format -msgid "E122: Function %s already exists, add ! to replace it" -msgstr "E122: Funkcja %s ju istnieje; aby j zamieni uyj !" - -#: ../eval.c:151 -msgid "E717: Dictionary entry already exists" -msgstr "E717: istnieje ju taki element Sownika" - -#: ../eval.c:152 -msgid "E718: Funcref required" -msgstr "E718: wymagana Funcref" - -#: ../eval.c:153 -msgid "E719: Cannot use [:] with a Dictionary" -msgstr "E719: Nie mona uy [:] przy Sowniku" - -#: ../eval.c:154 -#, c-format -msgid "E734: Wrong variable type for %s=" -msgstr "E734: Zy typ zmiennej dla %s=" - -#: ../eval.c:155 -#, c-format -msgid "E130: Unknown function: %s" -msgstr "E130: Nieznana funkcja: %s" - -#: ../eval.c:156 -#, c-format -msgid "E461: Illegal variable name: %s" -msgstr "E461: Niedozwolona nazwa zmiennej: %s" - -#: ../eval.c:157 -msgid "E806: using Float as a String" -msgstr "E806: Uycie Zmiennoprzecinkowej jako acucha" - -#: ../eval.c:1830 -msgid "E687: Less targets than List items" -msgstr "E687: Mniej celw ni elementw Listy" - -#: ../eval.c:1834 -msgid "E688: More targets than List items" -msgstr "E688: Wicej celw ni elementw Listy" - -#: ../eval.c:1906 -msgid "Double ; in list of variables" -msgstr "Podwjny ; w licie zmiennych" - -#: ../eval.c:2078 -#, c-format -msgid "E738: Can't list variables for %s" -msgstr "E738: Nie mog wypisa zmiennych dla %s" - -#: ../eval.c:2391 -msgid "E689: Can only index a List or Dictionary" -msgstr "E689: Indeks moe istnie tylko dla Listy lub Sownika" - -#: ../eval.c:2396 -msgid "E708: [:] must come last" -msgstr "E708: [:] musi by ostatnie" - -#: ../eval.c:2439 -msgid "E709: [:] requires a List value" -msgstr "E709: [:] wymaga wartoci listy" - -#: ../eval.c:2674 -msgid "E710: List value has more items than target" -msgstr "E710: Lista ma wicej elementw ni cel" - -#: ../eval.c:2678 -msgid "E711: List value has not enough items" -msgstr "E711: Lista nie ma wystarczajcej iloci elementw" - -#: ../eval.c:2867 -msgid "E690: Missing \"in\" after :for" -msgstr "E690: Brak \"in\" po :for" - -#: ../eval.c:3063 -#, c-format -msgid "E107: Missing parentheses: %s" -msgstr "E107: Brak nawiasw: %s" - -#: ../eval.c:3263 -#, c-format -msgid "E108: No such variable: \"%s\"" -msgstr "E108: Nie istnieje zmienna: \"%s\"" - -#: ../eval.c:3333 -msgid "E743: variable nested too deep for (un)lock" -msgstr "E743: zmienna zagniedona zbyt gboko dla (un)lock" - -#: ../eval.c:3630 -msgid "E109: Missing ':' after '?'" -msgstr "E109: Brak ':' po '?'" - -#: ../eval.c:3893 -msgid "E691: Can only compare List with List" -msgstr "E691: List mog porwna tylko z List" - -#: ../eval.c:3895 -msgid "E692: Invalid operation for Lists" -msgstr "E692: Nieprawidowa operacja dla Listy" - -#: ../eval.c:3915 -msgid "E735: Can only compare Dictionary with Dictionary" -msgstr "E735: Sownik mog porwna tylko ze Sownikiem" - -#: ../eval.c:3917 -msgid "E736: Invalid operation for Dictionary" -msgstr "E736: Nieprawidowa operacja dla Sownika" - -#: ../eval.c:3932 -msgid "E693: Can only compare Funcref with Funcref" -msgstr "E693: Funcref mog porwna tylko z Funcref" - -#: ../eval.c:3934 -msgid "E694: Invalid operation for Funcrefs" -msgstr "E694: Nieprawidowa operacja dla Funcref" - -#: ../eval.c:4277 -msgid "E804: Cannot use '%' with Float" -msgstr "E804: Nie mog uy '%' w Zmiennoprzecinkowej" - -#: ../eval.c:4478 -msgid "E110: Missing ')'" -msgstr "E110: Brak ')'" - -#: ../eval.c:4609 -msgid "E695: Cannot index a Funcref" -msgstr "E695: Nie mona zindeksowa Funcref" - -#: ../eval.c:4839 -#, c-format -msgid "E112: Option name missing: %s" -msgstr "E112: Brak nazwy opcji: %s" - -#: ../eval.c:4855 -#, c-format -msgid "E113: Unknown option: %s" -msgstr "E113: Nieznana opcja: %s" - -#: ../eval.c:4904 -#, c-format -msgid "E114: Missing quote: %s" -msgstr "E114: Brak cudzysowu: %s" - -#: ../eval.c:5020 -#, c-format -msgid "E115: Missing quote: %s" -msgstr "E115: Brak cudzysowu: %s" - -#: ../eval.c:5084 -#, c-format -msgid "E696: Missing comma in List: %s" -msgstr "E696: Brakujcy przecinek w Licie: '%s" - -#: ../eval.c:5091 -#, c-format -msgid "E697: Missing end of List ']': %s" -msgstr "E697: Brak zakoczenia Listy ']': %s" - -#: ../eval.c:6475 -#, c-format -msgid "E720: Missing colon in Dictionary: %s" -msgstr "E720: Brak dwukropka w Sowniku: %s" - -#: ../eval.c:6499 -#, c-format -msgid "E721: Duplicate key in Dictionary: \"%s\"" -msgstr "E721: Powtrzony klucz w Sowniku: \"%s\"" - -#: ../eval.c:6517 -#, c-format -msgid "E722: Missing comma in Dictionary: %s" -msgstr "E722: Brakujcy przecinek w Sowniku: %s" - -#: ../eval.c:6524 -#, c-format -msgid "E723: Missing end of Dictionary '}': %s" -msgstr "E723: Brak koca w Sowniku '}': %s" - -#: ../eval.c:6555 -msgid "E724: variable nested too deep for displaying" -msgstr "E724: Zmienna zagniedona zbyt gboko by pokaza" - -#: ../eval.c:7188 -#, c-format -msgid "E740: Too many arguments for function %s" -msgstr "E740: Zbyt wiele argumentw dla funkcji %s" - -#: ../eval.c:7190 -#, c-format -msgid "E116: Invalid arguments for function %s" -msgstr "E116: Zbyt wiele argumentw dla funkcji %s" - -#: ../eval.c:7377 -#, c-format -msgid "E117: Unknown function: %s" -msgstr "E117: Nieznana funkcja: %s" - -#: ../eval.c:7383 -#, c-format -msgid "E119: Not enough arguments for function: %s" -msgstr "E119: Za mao argumentw dla funkcji: %s" - -#: ../eval.c:7387 -#, c-format -msgid "E120: Using <SID> not in a script context: %s" -msgstr "E120: Uycie <SID> poza kontekstem skryptu: %s" - -#: ../eval.c:7391 -#, c-format -msgid "E725: Calling dict function without Dictionary: %s" -msgstr "E725: Wywoanie funkcji \"dict\" bez Sownika: %s" - -#: ../eval.c:7453 -msgid "E808: Number or Float required" -msgstr "E808: Wymagana Liczba lub Zmiennoprzecinkowa" - -#: ../eval.c:7503 -msgid "add() argument" -msgstr "argument add()" - -#: ../eval.c:7907 -msgid "E699: Too many arguments" -msgstr "E699: Za duo argumentw" - -#: ../eval.c:8073 -msgid "E785: complete() can only be used in Insert mode" -msgstr "E785: complete() moe by uyte tylko w trybie Wprowadzania" - -#: ../eval.c:8156 -msgid "&Ok" -msgstr "&Ok" - -#: ../eval.c:8676 -#, c-format -msgid "E737: Key already exists: %s" -msgstr "E737: Klucz ju istnieje: %s" - -#: ../eval.c:8692 -msgid "extend() argument" -msgstr "argument extend()" - -#: ../eval.c:8915 -msgid "map() argument" -msgstr "argument map()" - -#: ../eval.c:8916 -msgid "filter() argument" -msgstr "argument filter()" - -#: ../eval.c:9229 -#, c-format -msgid "+-%s%3ld lines: " -msgstr "+-%s%3ld wierszy: " - -#: ../eval.c:9291 -#, c-format -msgid "E700: Unknown function: %s" -msgstr "E700: Nieznana funkcja: %s" - -#: ../eval.c:10729 -msgid "called inputrestore() more often than inputsave()" -msgstr "wywoano inputrestore() wicej razy ni inputsave()" - -#: ../eval.c:10771 -msgid "insert() argument" -msgstr "argument insert()" - -#: ../eval.c:10841 -msgid "E786: Range not allowed" -msgstr "E786: Zakres niedozwolony" - -#: ../eval.c:11140 -msgid "E701: Invalid type for len()" -msgstr "E701: Nieprawidowy typ dla len()" - -#: ../eval.c:11980 -msgid "E726: Stride is zero" -msgstr "E726: Skok to zero" - -#: ../eval.c:11982 -msgid "E727: Start past end" -msgstr "E727: Pocztek po kocu" - -#: ../eval.c:12024 ../eval.c:15297 -msgid "<empty>" -msgstr "<pusty>" - -#: ../eval.c:12282 -msgid "remove() argument" -msgstr "argument remove()" - -#: ../eval.c:12466 -msgid "E655: Too many symbolic links (cycle?)" -msgstr "E655: Za duo dowiza symbolicznych (ptla?)" - -#: ../eval.c:12593 -msgid "reverse() argument" -msgstr "argument reverse()" - -#: ../eval.c:13721 -msgid "sort() argument" -msgstr "argument sort()" - -#: ../eval.c:13721 -#, fuzzy -msgid "uniq() argument" -msgstr "argument add()" - -#: ../eval.c:13776 -msgid "E702: Sort compare function failed" -msgstr "E702: Funkcja porwnywania w sort nie powioda si" - -#: ../eval.c:13806 -#, fuzzy -msgid "E882: Uniq compare function failed" -msgstr "E702: Funkcja porwnywania w sort nie powioda si" - -#: ../eval.c:14085 -msgid "(Invalid)" -msgstr "(Niewaciwe)" - -#: ../eval.c:14590 -msgid "E677: Error writing temp file" -msgstr "E677: Bd zapisywania pliku tymczasowego" - -#: ../eval.c:16159 -msgid "E805: Using a Float as a Number" -msgstr "E805: Uycie Zmiennoprzecinkowej jako Liczby" - -#: ../eval.c:16162 -msgid "E703: Using a Funcref as a Number" -msgstr "E703: Uycie Funcref jako Liczby" - -#: ../eval.c:16170 -msgid "E745: Using a List as a Number" -msgstr "E745: Uycie Listy jako Liczby" - -#: ../eval.c:16173 -msgid "E728: Using a Dictionary as a Number" -msgstr "E728: Uycie Sownika jako Liczby" - -#: ../eval.c:16259 -msgid "E729: using Funcref as a String" -msgstr "E729: Uycie Funcref jako acucha" - -#: ../eval.c:16262 -msgid "E730: using List as a String" -msgstr "E730: Uycie Listy jako acucha" - -#: ../eval.c:16265 -msgid "E731: using Dictionary as a String" -msgstr "E731: Uycie Sownika jako acucha" - -#: ../eval.c:16619 -#, c-format -msgid "E706: Variable type mismatch for: %s" -msgstr "E706: Nieprawidowy typ zmiennej dla: %s" - -#: ../eval.c:16705 -#, c-format -msgid "E795: Cannot delete variable %s" -msgstr "E795: Nie mog usun zmiennej %s" - -#: ../eval.c:16724 -#, c-format -msgid "E704: Funcref variable name must start with a capital: %s" -msgstr "E704: Nazwa Funcref musi si zaczyna wielk liter: %s" - -#: ../eval.c:16732 -#, c-format -msgid "E705: Variable name conflicts with existing function: %s" -msgstr "E705: Nazwa zmiennej jest w konflikcie z istniejc funkcj: %s" - -#: ../eval.c:16763 -#, c-format -msgid "E741: Value is locked: %s" -msgstr "E741: Warto jest zablokowana: %s" - -#: ../eval.c:16764 ../eval.c:16769 ../message.c:1839 -msgid "Unknown" -msgstr "Nieznane" - -#: ../eval.c:16768 -#, c-format -msgid "E742: Cannot change value of %s" -msgstr "E742: Nie mog zmieni wartoci %s" - -#: ../eval.c:16838 -msgid "E698: variable nested too deep for making a copy" -msgstr "E698: Zmienna zagniedona zbyt gboko by zrobi kopi" - -#: ../eval.c:17249 -#, c-format -msgid "E123: Undefined function: %s" -msgstr "E123: Nieznana funkcja: %s" - -#: ../eval.c:17260 -#, c-format -msgid "E124: Missing '(': %s" -msgstr "E124: Brak '(': %s" - -#: ../eval.c:17293 -msgid "E862: Cannot use g: here" -msgstr "E862: Nie mona tutaj uy g:" - -#: ../eval.c:17312 -#, c-format -msgid "E125: Illegal argument: %s" -msgstr "E125: Niedozwolony argument: %s" - -#: ../eval.c:17323 -#, c-format -msgid "E853: Duplicate argument name: %s" -msgstr "E853: Powtrzona nazwa argumentu: %s" - -#: ../eval.c:17416 -msgid "E126: Missing :endfunction" -msgstr "E126: Brak :endfunction" - -#: ../eval.c:17537 -#, c-format -msgid "E707: Function name conflicts with variable: %s" -msgstr "E707: Nazwa funkcji jest w konflikcie ze zmienn: %s" - -#: ../eval.c:17549 -#, c-format -msgid "E127: Cannot redefine function %s: It is in use" -msgstr "E127: Nie mog redefiniowa funkcji %s: jest w uyciu" - -#: ../eval.c:17604 -#, c-format -msgid "E746: Function name does not match script file name: %s" -msgstr "E746: Nazwa funkcji nie pasuje do nazwy skryptu: %s" - -#: ../eval.c:17716 -msgid "E129: Function name required" -msgstr "E129: Wymagana jest nazwa funkcji" - -#: ../eval.c:17824 -#, fuzzy, c-format -msgid "E128: Function name must start with a capital or \"s:\": %s" -msgstr "" -"E128: Nazwa funkcji musi rozpoczyna si wielk liter lub zawiera " -"dwukropek: %s" - -#: ../eval.c:17833 -#, fuzzy, c-format -msgid "E884: Function name cannot contain a colon: %s" -msgstr "" -"E128: Nazwa funkcji musi rozpoczyna si wielk liter lub zawiera " -"dwukropek: %s" - -#: ../eval.c:18336 -#, c-format -msgid "E131: Cannot delete function %s: It is in use" -msgstr "E131: Nie mog skasowa funkcji %s: jest w uyciu" - -#: ../eval.c:18441 -msgid "E132: Function call depth is higher than 'maxfuncdepth'" -msgstr "E132: Zagniedenie wywoa funkcji ponad 'maxfuncdepth'" - -#: ../eval.c:18568 -#, c-format -msgid "calling %s" -msgstr "wywouj %s" - -#: ../eval.c:18651 -#, c-format -msgid "%s aborted" -msgstr "porzucono %s" - -#: ../eval.c:18653 -#, c-format -msgid "%s returning #%<PRId64>" -msgstr "%s zwraca #%<PRId64>" - -#: ../eval.c:18670 -#, c-format -msgid "%s returning %s" -msgstr "%s zwraca %s" - -#: ../eval.c:18691 ../ex_cmds2.c:2695 -#, c-format -msgid "continuing in %s" -msgstr "kontynuacja w %s" - -#: ../eval.c:18795 -msgid "E133: :return not inside a function" -msgstr "E133: :return poza funkcj" - -#: ../eval.c:19159 -msgid "" -"\n" -"# global variables:\n" -msgstr "" -"\n" -"# zmienne globalne:\n" - -#: ../eval.c:19254 -msgid "" -"\n" -"\tLast set from " -msgstr "" -"\n" -"\tOstatnie ustawienie przez " - -#: ../eval.c:19272 -msgid "No old files" -msgstr "Brak starych plikw" - -#: ../ex_cmds.c:122 -#, c-format -msgid "<%s>%s%s %d, Hex %02x, Octal %03o" -msgstr "<%s>%s%s %d, Hex %02x, Oktal %03o" - -#: ../ex_cmds.c:145 -#, c-format -msgid "> %d, Hex %04x, Octal %o" -msgstr "> %d, Hex %04x, Oktal %o" - -#: ../ex_cmds.c:146 -#, c-format -msgid "> %d, Hex %08x, Octal %o" -msgstr "> %d, Hex %08x, Oktal %o" - -#: ../ex_cmds.c:684 -msgid "E134: Move lines into themselves" -msgstr "E134: Przeniesienie wierszy na siebie samych" - -#: ../ex_cmds.c:747 -msgid "1 line moved" -msgstr "1 wiersz przeniesiony" - -#: ../ex_cmds.c:749 -#, c-format -msgid "%<PRId64> lines moved" -msgstr "%<PRId64> wiersze przeniesione" - -#: ../ex_cmds.c:1175 -#, c-format -msgid "%<PRId64> lines filtered" -msgstr "%<PRId64> wierszy przefiltrowanych" - -#: ../ex_cmds.c:1194 -msgid "E135: *Filter* Autocommands must not change current buffer" -msgstr "E135: Autokomendy *Filter* nie mog zmienia biecego bufora" - -#: ../ex_cmds.c:1244 -msgid "[No write since last change]\n" -msgstr "[Brak zapisu od czasu ostatniej zmiany]\n" - -#: ../ex_cmds.c:1424 -#, c-format -msgid "%sviminfo: %s in line: " -msgstr "%sviminfo: %s w wierszu: " - -#: ../ex_cmds.c:1431 -msgid "E136: viminfo: Too many errors, skipping rest of file" -msgstr "E136: viminfo: Zbyt wiele bdw; pomijam reszt pliku" - -#: ../ex_cmds.c:1458 -#, c-format -msgid "Reading viminfo file \"%s\"%s%s%s" -msgstr "Wczytuj plik viminfo \"%s\"%s%s%s" - -#: ../ex_cmds.c:1460 -msgid " info" -msgstr " informacja" - -#: ../ex_cmds.c:1461 -msgid " marks" -msgstr " zakadki" - -#: ../ex_cmds.c:1462 -msgid " oldfiles" -msgstr " stare pliki" - -#: ../ex_cmds.c:1463 -msgid " FAILED" -msgstr " NIE POWIODO SI" - -#. avoid a wait_return for this message, it's annoying -#: ../ex_cmds.c:1541 -#, c-format -msgid "E137: Viminfo file is not writable: %s" -msgstr "E137: Plik viminfo jest niezapisywalny: %s" - -#: ../ex_cmds.c:1626 -#, c-format -msgid "E138: Can't write viminfo file %s!" -msgstr "E138: Nie mog zapisa pliku viminfo %s!" - -#: ../ex_cmds.c:1635 -#, c-format -msgid "Writing viminfo file \"%s\"" -msgstr "Zapisuj plik viminfo \"%s\"" - -#. Write the info: -#: ../ex_cmds.c:1720 -#, c-format -msgid "# This viminfo file was generated by Vim %s.\n" -msgstr "# Ten plik viminfo zosta wygenerowany przez Vima %s.\n" - -#: ../ex_cmds.c:1722 -msgid "" -"# You may edit it if you're careful!\n" -"\n" -msgstr "" -"# Moesz go ostronie edytowa!\n" -"\n" - -#: ../ex_cmds.c:1723 -msgid "# Value of 'encoding' when this file was written\n" -msgstr "# Warto 'encoding' w czasie zapisu tego pliku\n" - -#: ../ex_cmds.c:1800 -msgid "Illegal starting char" -msgstr "Niedopuszczalny pocztkowy znak" - -#: ../ex_cmds.c:2162 -msgid "Write partial file?" -msgstr "Zapisa czciowo plik?" - -#: ../ex_cmds.c:2166 -msgid "E140: Use ! to write partial buffer" -msgstr "E140: Stosuj ! do zapisania czciowo bufora" - -#: ../ex_cmds.c:2281 -#, c-format -msgid "Overwrite existing file \"%s\"?" -msgstr "Nadpisa istniejcy plik \"%s\"?" - -#: ../ex_cmds.c:2317 -#, c-format -msgid "Swap file \"%s\" exists, overwrite anyway?" -msgstr "Plik wymiany \"%s\" istnieje, czy go nadpisa?" - -#: ../ex_cmds.c:2326 -#, c-format -msgid "E768: Swap file exists: %s (:silent! overrides)" -msgstr "E768: Plik wymiany istnieje: %s (wymu poprzez :silent!)" - -#: ../ex_cmds.c:2381 -#, c-format -msgid "E141: No file name for buffer %<PRId64>" -msgstr "E141: Brak nazwy pliku dla bufora %<PRId64>" - -#: ../ex_cmds.c:2412 -msgid "E142: File not written: Writing is disabled by 'write' option" -msgstr "E142: Plik niezapisany: Zapis jest wyczony opcj 'write'" - -#: ../ex_cmds.c:2434 -#, c-format -msgid "" -"'readonly' option is set for \"%s\".\n" -"Do you wish to write anyway?" -msgstr "" -"opcja 'readonly' nastawiona dla \"%s\".\n" -"Czy chcesz go pomimo tego zapisa?" - -#: ../ex_cmds.c:2439 -#, c-format -msgid "" -"File permissions of \"%s\" are read-only.\n" -"It may still be possible to write it.\n" -"Do you wish to try?" -msgstr "" -"Prawa pliku \"%s\" s tylko do odczytu.\n" -"Mimo to by moe uda si zmieni ten plik.\n" -"Chcesz sprbowa?" - -#: ../ex_cmds.c:2451 -#, c-format -msgid "E505: \"%s\" is read-only (add ! to override)" -msgstr "E505: \"%s\" jest tylko do odczytu (dodaj ! aby wymusi)" - -#: ../ex_cmds.c:3120 -#, c-format -msgid "E143: Autocommands unexpectedly deleted new buffer %s" -msgstr "E143: Autokomendy nieoczekiwanie skasoway nowy bufor %s" - -#: ../ex_cmds.c:3313 -msgid "E144: non-numeric argument to :z" -msgstr "E144: nienumeryczny argument dla :z" - -#: ../ex_cmds.c:3404 -msgid "E145: Shell commands not allowed in rvim" -msgstr "E145: Komendy powoki s niedozwolone w rvim" - -#: ../ex_cmds.c:3498 -msgid "E146: Regular expressions can't be delimited by letters" -msgstr "E146: Wzorce regularne nie mog by rozgraniczane literami" - -#: ../ex_cmds.c:3964 -#, c-format -msgid "replace with %s (y/n/a/q/l/^E/^Y)?" -msgstr "zamie na %s (y/n/a/q/l/^E/^Y)?" - -#: ../ex_cmds.c:4379 -msgid "(Interrupted) " -msgstr "(Przerwane) " - -#: ../ex_cmds.c:4384 -msgid "1 match" -msgstr "1 pasuje" - -#: ../ex_cmds.c:4384 -msgid "1 substitution" -msgstr "1 podstawienie " - -#: ../ex_cmds.c:4387 -#, c-format -msgid "%<PRId64> matches" -msgstr "%<PRId64> dopasowa" - -#: ../ex_cmds.c:4388 -#, c-format -msgid "%<PRId64> substitutions" -msgstr "%<PRId64> podstawie" - -#: ../ex_cmds.c:4392 -msgid " on 1 line" -msgstr " w 1 wierszu" - -#: ../ex_cmds.c:4395 -#, c-format -msgid " on %<PRId64> lines" -msgstr " w %<PRId64> wierszach" - -#: ../ex_cmds.c:4438 -msgid "E147: Cannot do :global recursive" -msgstr "E147: Nie mog wykona :global rekursywnie" - -#: ../ex_cmds.c:4467 -msgid "E148: Regular expression missing from global" -msgstr "E148: Brak wzorca regularnego w :global" - -# c-format -#: ../ex_cmds.c:4508 -#, c-format -msgid "Pattern found in every line: %s" -msgstr "Wzorzec znaleziono w kadym wierszu: %s" - -#: ../ex_cmds.c:4510 -#, c-format -msgid "Pattern not found: %s" -msgstr "Nie znaleziono wzorca: %s" - -#: ../ex_cmds.c:4587 -msgid "" -"\n" -"# Last Substitute String:\n" -"$" -msgstr "" -"\n" -"# Ostatni podstawiany cig:\n" -"$" - -#: ../ex_cmds.c:4679 -msgid "E478: Don't panic!" -msgstr "E478: Nie panikuj!" - -#: ../ex_cmds.c:4717 -#, c-format -msgid "E661: Sorry, no '%s' help for %s" -msgstr "E661: Przykro mi, brak '%s' pomocy dla %s" - -#: ../ex_cmds.c:4719 -#, c-format -msgid "E149: Sorry, no help for %s" -msgstr "E149: Przykro mi, ale brak pomocy o %s" - -#: ../ex_cmds.c:4751 -#, c-format -msgid "Sorry, help file \"%s\" not found" -msgstr "Przykro mi, nie ma pliku pomocy \"%s\"" - -#: ../ex_cmds.c:5323 -#, c-format -msgid "E150: Not a directory: %s" -msgstr "E150: Nie jest katalogiem: %s" - -#: ../ex_cmds.c:5446 -#, c-format -msgid "E152: Cannot open %s for writing" -msgstr "E152: Nie mog otworzy %s do zapisu" - -#: ../ex_cmds.c:5471 -#, c-format -msgid "E153: Unable to open %s for reading" -msgstr "E153: Nie mog otworzy %s do odczytu" - -#: ../ex_cmds.c:5500 -#, c-format -msgid "E670: Mix of help file encodings within a language: %s" -msgstr "E670: Mieszanka kodowa w pliku pomocy w ramach jzyka: %s" - -#: ../ex_cmds.c:5565 -#, c-format -msgid "E154: Duplicate tag \"%s\" in file %s/%s" -msgstr "E154: Powtrzony znacznik \"%s\" w pliku %s/%s" - -#: ../ex_cmds.c:5687 -#, c-format -msgid "E160: Unknown sign command: %s" -msgstr "E160: Nieznana komenda znaku: %s" - -#: ../ex_cmds.c:5704 -msgid "E156: Missing sign name" -msgstr "E156: Brak nazwy znaku" - -#: ../ex_cmds.c:5746 -msgid "E612: Too many signs defined" -msgstr "E612: Zbyt wiele nazw znakw" - -#: ../ex_cmds.c:5813 -#, c-format -msgid "E239: Invalid sign text: %s" -msgstr "E239: Niewaciwy tekst znaku: %s" - -#: ../ex_cmds.c:5844 ../ex_cmds.c:6035 -#, c-format -msgid "E155: Unknown sign: %s" -msgstr "E155: Nieznany znak: %s" - -#: ../ex_cmds.c:5877 -msgid "E159: Missing sign number" -msgstr "E159: Brak numeru znaku" - -#: ../ex_cmds.c:5971 -#, c-format -msgid "E158: Invalid buffer name: %s" -msgstr "E158: Niewaciwa nazwa bufora: %s" - -#: ../ex_cmds.c:6008 -#, c-format -msgid "E157: Invalid sign ID: %<PRId64>" -msgstr "E157: Niewaciwe ID znaku: %<PRId64>" - -#: ../ex_cmds.c:6066 -msgid " (not supported)" -msgstr "(nie wspomagane)" - -#: ../ex_cmds.c:6169 -msgid "[Deleted]" -msgstr "[Skasowano]" - -#: ../ex_cmds2.c:139 -msgid "Entering Debug mode. Type \"cont\" to continue." -msgstr "Wchodz w tryb odpluskwiania. Wprowad \"cont\" aby kontynuowa." - -#: ../ex_cmds2.c:143 ../ex_docmd.c:759 -#, c-format -msgid "line %<PRId64>: %s" -msgstr "wiersz %<PRId64>: %s" - -#: ../ex_cmds2.c:145 -#, c-format -msgid "cmd: %s" -msgstr "cmd: %s" - -#: ../ex_cmds2.c:322 -#, c-format -msgid "Breakpoint in \"%s%s\" line %<PRId64>" -msgstr "Punkt kontrolny w \"%s%s\" wiersz %<PRId64>" - -#: ../ex_cmds2.c:581 -#, c-format -msgid "E161: Breakpoint not found: %s" -msgstr "E161: Nie znaleziono punktu kontrolnego: %s" - -#: ../ex_cmds2.c:611 -msgid "No breakpoints defined" -msgstr "Nie okrelono adnych punktw kontrolnych" - -#: ../ex_cmds2.c:617 -#, c-format -msgid "%3d %s %s line %<PRId64>" -msgstr "%3d %s %s wiersz %<PRId64>" - -#: ../ex_cmds2.c:942 -msgid "E750: First use \":profile start {fname}\"" -msgstr "E750: Pierwsze uycie \":profile start {fname}\"" - -#: ../ex_cmds2.c:1269 -#, c-format -msgid "Save changes to \"%s\"?" -msgstr "Zachowa zmiany w \"%s\"?" - -#: ../ex_cmds2.c:1271 ../ex_docmd.c:8851 -msgid "Untitled" -msgstr "Bez Tytuu" - -#: ../ex_cmds2.c:1421 -#, c-format -msgid "E162: No write since last change for buffer \"%s\"" -msgstr "E162: Nie zapisano zmian w buforze \"%s\"" - -#: ../ex_cmds2.c:1480 -msgid "Warning: Entered other buffer unexpectedly (check autocommands)" -msgstr "OSTRZEENIE: Nieoczekiwane wejcie w inny bufor (sprawd autokomendy)" - -#: ../ex_cmds2.c:1826 -msgid "E163: There is only one file to edit" -msgstr "E163: Tylko jeden plik w edycji" - -#: ../ex_cmds2.c:1828 -msgid "E164: Cannot go before first file" -msgstr "E164: Nie mona przej przed pierwszy plik" - -#: ../ex_cmds2.c:1830 -msgid "E165: Cannot go beyond last file" -msgstr "E165: Nie mona przej za ostatni plik" - -#: ../ex_cmds2.c:2175 -#, c-format -msgid "E666: compiler not supported: %s" -msgstr "E666: nie wspierany kompilator: %s" - -#: ../ex_cmds2.c:2257 -#, c-format -msgid "Searching for \"%s\" in \"%s\"" -msgstr "Szukanie \"%s\" w \"%s\"" - -#: ../ex_cmds2.c:2284 -#, c-format -msgid "Searching for \"%s\"" -msgstr "Szukanie \"%s\"" - -#: ../ex_cmds2.c:2307 -#, c-format -msgid "not found in 'runtimepath': \"%s\"" -msgstr "nie znaleziono w 'runtimepath': \"%s\"" - -#: ../ex_cmds2.c:2472 -#, c-format -msgid "Cannot source a directory: \"%s\"" -msgstr "Nie mona wczyta katalogu: \"%s\"" - -#: ../ex_cmds2.c:2518 -#, c-format -msgid "could not source \"%s\"" -msgstr "nie mogem wczyta \"%s\"" - -#: ../ex_cmds2.c:2520 -#, c-format -msgid "line %<PRId64>: could not source \"%s\"" -msgstr "wiersz: %<PRId64> nie mogem wczyta \"%s\"" - -#: ../ex_cmds2.c:2535 -#, c-format -msgid "sourcing \"%s\"" -msgstr "wczytywanie \"%s\"" - -#: ../ex_cmds2.c:2537 -#, c-format -msgid "line %<PRId64>: sourcing \"%s\"" -msgstr "wiersz %<PRId64>: wczytywanie \"%s\"" - -#: ../ex_cmds2.c:2693 -#, c-format -msgid "finished sourcing %s" -msgstr "skoczono wczytywanie %s" - -#: ../ex_cmds2.c:2765 -msgid "modeline" -msgstr "modeline" - -#: ../ex_cmds2.c:2767 -msgid "--cmd argument" -msgstr "--cmd argument" - -#: ../ex_cmds2.c:2769 -msgid "-c argument" -msgstr "-c argument" - -#: ../ex_cmds2.c:2771 -msgid "environment variable" -msgstr "zmienna rodowiskowa" - -#: ../ex_cmds2.c:2773 -msgid "error handler" -msgstr "obsuga bdu" - -#: ../ex_cmds2.c:3020 -msgid "W15: Warning: Wrong line separator, ^M may be missing" -msgstr "W15: OSTRZEENIE: Niewaciwy separator wierszy, pewnie brak ^M" - -#: ../ex_cmds2.c:3139 -msgid "E167: :scriptencoding used outside of a sourced file" -msgstr "E167: uyto :scriptencoding poza wczytywanym plikiem" - -#: ../ex_cmds2.c:3166 -msgid "E168: :finish used outside of a sourced file" -msgstr "E168: uyto :finish poza wczytywanym plikiem" - -#: ../ex_cmds2.c:3389 -#, c-format -msgid "Current %slanguage: \"%s\"" -msgstr "Biecy %sjzyk: \"%s\"" - -#: ../ex_cmds2.c:3404 -#, c-format -msgid "E197: Cannot set language to \"%s\"" -msgstr "E197: Nie mog ustawi jzyka na \"%s\"" - -#. don't redisplay the window -#. don't wait for return -#: ../ex_docmd.c:387 -msgid "Entering Ex mode. Type \"visual\" to go to Normal mode." -msgstr "Wchodz w tryb Ex. Wprowad \"visual\" aby przej do trybu Normal." - -#: ../ex_docmd.c:428 -msgid "E501: At end-of-file" -msgstr "E501: Na kocu pliku" - -#: ../ex_docmd.c:513 -msgid "E169: Command too recursive" -msgstr "E169: Komenda zbyt rekursywna" - -#: ../ex_docmd.c:1006 -#, c-format -msgid "E605: Exception not caught: %s" -msgstr "E605: Nie znaleziono wyjtku: %s" - -#: ../ex_docmd.c:1085 -msgid "End of sourced file" -msgstr "Koniec wczytywanego pliku" - -#: ../ex_docmd.c:1086 -msgid "End of function" -msgstr "Koniec funkcji" - -#: ../ex_docmd.c:1628 -msgid "E464: Ambiguous use of user-defined command" -msgstr "" -"E464: Niejednoznaczne zastosowanie komendy zdefiniowanej przez uytkownika" - -#: ../ex_docmd.c:1638 -msgid "E492: Not an editor command" -msgstr "E492: Nie jest komend edytora" - -#: ../ex_docmd.c:1729 -msgid "E493: Backwards range given" -msgstr "E493: Dano wsteczny zakres" - -#: ../ex_docmd.c:1733 -msgid "Backwards range given, OK to swap" -msgstr "Dano wsteczny zakres; zamiana jest moliwa" - -#. append -#. typed wrong -#: ../ex_docmd.c:1787 -msgid "E494: Use w or w>>" -msgstr "E494: Stosuj w lub w>>" - -#: ../ex_docmd.c:3454 -msgid "E319: The command is not available in this version" -msgstr "E319: Przykro mi, ale ta komenda nie jest dostpna w tej wersji" - -#: ../ex_docmd.c:3752 -msgid "E172: Only one file name allowed" -msgstr "E172: Tylko pojedyncza nazwa pliku dozwolona" - -#: ../ex_docmd.c:4238 -msgid "1 more file to edit. Quit anyway?" -msgstr "1 wicej plik do edycji. Mimo to wyj?" - -#: ../ex_docmd.c:4242 -#, c-format -msgid "%d more files to edit. Quit anyway?" -msgstr "jeszcze %d plikw do edycji. Mimo to wyj?" - -#: ../ex_docmd.c:4248 -msgid "E173: 1 more file to edit" -msgstr "E173: 1 wicej plik do edycji" - -#: ../ex_docmd.c:4250 -#, c-format -msgid "E173: %<PRId64> more files to edit" -msgstr "E173: jeszcze %<PRId64> plikw do edycji" - -#: ../ex_docmd.c:4320 -msgid "E174: Command already exists: add ! to replace it" -msgstr "E174: Komenda ju istnieje; aby j przedefiniowa stosuj !" - -#: ../ex_docmd.c:4432 -msgid "" -"\n" -" Name Args Range Complete Definition" -msgstr "" -"\n" -" Nazwa Arg. Zak. Gotowo Definicja" - -#: ../ex_docmd.c:4516 -msgid "No user-defined commands found" -msgstr "Nie znaleziono komend zdefiniowanych przez uytkownika" - -#: ../ex_docmd.c:4538 -msgid "E175: No attribute specified" -msgstr "E175: Nie okrelono atrybutu" - -#: ../ex_docmd.c:4583 -msgid "E176: Invalid number of arguments" -msgstr "E176: Niewaciwa ilo argumentw" - -#: ../ex_docmd.c:4594 -msgid "E177: Count cannot be specified twice" -msgstr "E177: Mnonik nie moe by podany dwukrotnie" - -#: ../ex_docmd.c:4603 -msgid "E178: Invalid default value for count" -msgstr "E178: Niewaciwa domylna warto mnonika" - -#: ../ex_docmd.c:4625 -msgid "E179: argument required for -complete" -msgstr "E179: -complete wymaga argumentu" - -#: ../ex_docmd.c:4635 -#, c-format -msgid "E181: Invalid attribute: %s" -msgstr "E181: Niewaciwy atrybut: %s" - -#: ../ex_docmd.c:4678 -msgid "E182: Invalid command name" -msgstr "E182: Niewaciwa nazwa komendy" - -#: ../ex_docmd.c:4691 -msgid "E183: User defined commands must start with an uppercase letter" -msgstr "" -"E183: Komendy zdefiniowane przez uytkownika musz rozpoczyna si du " -"liter" - -#: ../ex_docmd.c:4696 -msgid "E841: Reserved name, cannot be used for user defined command" -msgstr "E841: Nazwa zastrzeona, nie mona jej uy w komendzie uytkownika" - -#: ../ex_docmd.c:4751 -#, c-format -msgid "E184: No such user-defined command: %s" -msgstr "E184: Nie ma takiej komendy uytkownika: %s" - -#: ../ex_docmd.c:5219 -#, c-format -msgid "E180: Invalid complete value: %s" -msgstr "E180: Niewaciwa warto dopeniania: %s" - -#: ../ex_docmd.c:5225 -msgid "E468: Completion argument only allowed for custom completion" -msgstr "" -"E468: Argument depeniania dozwolony wycznie dla dopeniania uytkownika" - -#: ../ex_docmd.c:5231 -msgid "E467: Custom completion requires a function argument" -msgstr "E467: Dopenianie uytkownika wymaga funkcji jako argumentu" - -#: ../ex_docmd.c:5257 -#, c-format -msgid "E185: Cannot find color scheme '%s'" -msgstr "E185: Nie mog znale zestawu kolorw '%s'" - -#: ../ex_docmd.c:5263 -msgid "Greetings, Vim user!" -msgstr "Witaj uytkowniku Vima!" - -#: ../ex_docmd.c:5431 -msgid "E784: Cannot close last tab page" -msgstr "E784: Nie mog zamkn ostatniej karty" - -#: ../ex_docmd.c:5462 -msgid "Already only one tab page" -msgstr "Jest ju tylko jedna karta" - -#: ../ex_docmd.c:6004 -#, c-format -msgid "Tab page %d" -msgstr "Karta %d" - -#: ../ex_docmd.c:6295 -msgid "No swap file" -msgstr "Brak pliku wymiany" - -#: ../ex_docmd.c:6478 -msgid "E747: Cannot change directory, buffer is modified (add ! to override)" -msgstr "" -"E747: Nie mog zmieni katalogu, bufor zosta zmodyfikowany (dodaj ! aby " -"wymusi)" - -#: ../ex_docmd.c:6485 -msgid "E186: No previous directory" -msgstr "E186: Nie ma poprzedniego katalogu" - -#: ../ex_docmd.c:6530 -msgid "E187: Unknown" -msgstr "E187: Nieznany" - -#: ../ex_docmd.c:6610 -msgid "E465: :winsize requires two number arguments" -msgstr "E465: :winsize wymaga dwch argumentw numerycznych" - -#: ../ex_docmd.c:6655 -msgid "E188: Obtaining window position not implemented for this platform" -msgstr "" -"E188: Pozyskiwanie pozycji okna nie jest zaimplementowane dla tego systemu" - -#: ../ex_docmd.c:6662 -msgid "E466: :winpos requires two number arguments" -msgstr "E466: :winpos wymaga dwch argumentw numerycznych" - -#: ../ex_docmd.c:7241 -#, c-format -msgid "E739: Cannot create directory: %s" -msgstr "E739: Nie mog utworzy katalogu: %s" - -#: ../ex_docmd.c:7268 -#, c-format -msgid "E189: \"%s\" exists (add ! to override)" -msgstr "E189: \"%s\" istnieje (wymu poprzez !)" - -#: ../ex_docmd.c:7273 -#, c-format -msgid "E190: Cannot open \"%s\" for writing" -msgstr "E190: Nie mog otworzy \"%s\" do zapisu" - -#. set mark -#: ../ex_docmd.c:7294 -msgid "E191: Argument must be a letter or forward/backward quote" -msgstr "E191: Argument musi by liter albo cudzysowem w przd/ty" - -#: ../ex_docmd.c:7333 -msgid "E192: Recursive use of :normal too deep" -msgstr "E192: Rekursywne zastosowanie :normal za gbokie" - -#: ../ex_docmd.c:7807 -msgid "E194: No alternate file name to substitute for '#'" -msgstr "E194: Brak nazwy zamiennego pliku do podstawienia pod '#'" - -#: ../ex_docmd.c:7841 -msgid "E495: no autocommand file name to substitute for \"<afile>\"" -msgstr "E495: brak nazwy pliku autokomend do podstawienia pod \"<afile>\"" - -#: ../ex_docmd.c:7850 -msgid "E496: no autocommand buffer number to substitute for \"<abuf>\"" -msgstr "E496: brak numeru bufora autokomend do podstawienia pod \"<abuf>\"" - -#: ../ex_docmd.c:7861 -msgid "E497: no autocommand match name to substitute for \"<amatch>\"" -msgstr "E497: brak nazwy dopasowania autokomend pod \"<amatch>\"" - -#: ../ex_docmd.c:7870 -msgid "E498: no :source file name to substitute for \"<sfile>\"" -msgstr "E498: brak nazwy pliku :source do postawienia pod \"<sfile>\"" - -#: ../ex_docmd.c:7876 -msgid "E842: no line number to use for \"<slnum>\"" -msgstr "E842: brak numeru linii by uy z \"<slnum>\"" - -#: ../ex_docmd.c:7903 -#, fuzzy, c-format -msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" -msgstr "E499: Pusta nazwa pliku dla '%' lub '#', dziaa tylko z \":p:h\"" - -#: ../ex_docmd.c:7905 -msgid "E500: Evaluates to an empty string" -msgstr "E500: Wynikiem jest pusty cig" - -#: ../ex_docmd.c:8838 -msgid "E195: Cannot open viminfo file for reading" -msgstr "E195: Nie mog otworzy pliku viminfo do odczytu" - -#: ../ex_eval.c:464 -msgid "E608: Cannot :throw exceptions with 'Vim' prefix" -msgstr "E608: Nie mona ':throw' wyjtkw z prefiksem 'Vim'" - -#. always scroll up, don't overwrite -#: ../ex_eval.c:496 -#, c-format -msgid "Exception thrown: %s" -msgstr "Wyjtek: %s" - -#: ../ex_eval.c:545 -#, c-format -msgid "Exception finished: %s" -msgstr "Wyjtek zakoczony: %s" - -#: ../ex_eval.c:546 -#, c-format -msgid "Exception discarded: %s" -msgstr "Wyjtek odrzucony: %s" - -#: ../ex_eval.c:588 ../ex_eval.c:634 -#, c-format -msgid "%s, line %<PRId64>" -msgstr "%s, wiersz %<PRId64>" - -#. always scroll up, don't overwrite -#: ../ex_eval.c:608 -#, c-format -msgid "Exception caught: %s" -msgstr "Wyjtek przechwycony: %s" - -#: ../ex_eval.c:676 -#, c-format -msgid "%s made pending" -msgstr "%s zosta zawieszony" - -#: ../ex_eval.c:679 -#, c-format -msgid "%s resumed" -msgstr "%s przywrcony" - -#: ../ex_eval.c:683 -#, c-format -msgid "%s discarded" -msgstr "%s odrzucony" - -#: ../ex_eval.c:708 -msgid "Exception" -msgstr "Wyjtek" - -#: ../ex_eval.c:713 -msgid "Error and interrupt" -msgstr "Bd i przerwanie" - -#: ../ex_eval.c:715 -msgid "Error" -msgstr "Bd" - -#. if (pending & CSTP_INTERRUPT) -#: ../ex_eval.c:717 -msgid "Interrupt" -msgstr "Przerwanie" - -#: ../ex_eval.c:795 -msgid "E579: :if nesting too deep" -msgstr "E579: zbyt gbokie zagniedenie :if" - -#: ../ex_eval.c:830 -msgid "E580: :endif without :if" -msgstr "E580: :endif bez :if" - -#: ../ex_eval.c:873 -msgid "E581: :else without :if" -msgstr "E581: :else bez :if" - -#: ../ex_eval.c:876 -msgid "E582: :elseif without :if" -msgstr "E582: :elseif bez :if" - -#: ../ex_eval.c:880 -msgid "E583: multiple :else" -msgstr "E583: wielokrotne :else" - -#: ../ex_eval.c:883 -msgid "E584: :elseif after :else" -msgstr "E584: :elseif po :else" - -#: ../ex_eval.c:941 -msgid "E585: :while/:for nesting too deep" -msgstr "E585: zbyt gbokie zagniedenie :while/:for" - -#: ../ex_eval.c:1028 -msgid "E586: :continue without :while or :for" -msgstr "E586: :continue bez :while lub :for" - -#: ../ex_eval.c:1061 -msgid "E587: :break without :while or :for" -msgstr "E587: :break bez :while lub :for" - -#: ../ex_eval.c:1102 -msgid "E732: Using :endfor with :while" -msgstr "E732: Uycie :endfor z :while" - -#: ../ex_eval.c:1104 -msgid "E733: Using :endwhile with :for" -msgstr "E733: Uycie :endwhile z :for" - -#: ../ex_eval.c:1247 -msgid "E601: :try nesting too deep" -msgstr "E601: zbyt gbokie zagniedenie :try" - -#: ../ex_eval.c:1317 -msgid "E603: :catch without :try" -msgstr "E603: :catch bez :try" - -#. Give up for a ":catch" after ":finally" and ignore it. -#. * Just parse. -#: ../ex_eval.c:1332 -msgid "E604: :catch after :finally" -msgstr "E604: :catch za :finally" - -#: ../ex_eval.c:1451 -msgid "E606: :finally without :try" -msgstr "E606: :finally bez :try" - -#. Give up for a multiple ":finally" and ignore it. -#: ../ex_eval.c:1467 -msgid "E607: multiple :finally" -msgstr "E607: wielokrotne :finally" - -#: ../ex_eval.c:1571 -msgid "E602: :endtry without :try" -msgstr "E602: :endtry bez :try" - -#: ../ex_eval.c:2026 -msgid "E193: :endfunction not inside a function" -msgstr "E193: :endfunction poza funkcj" - -#: ../ex_getln.c:1643 -msgid "E788: Not allowed to edit another buffer now" -msgstr "E788: Nie mona teraz edytowa innego bufora" - -#: ../ex_getln.c:1656 -msgid "E811: Not allowed to change buffer information now" -msgstr "E811: Nie mona teraz zmienia informacji o buforze" - -#: ../ex_getln.c:3178 -msgid "tagname" -msgstr "nazwa znacznika" - -#: ../ex_getln.c:3181 -msgid " kind file\n" -msgstr " pokrewny plik\n" - -#: ../ex_getln.c:4799 -msgid "'history' option is zero" -msgstr "opcja 'history' jest zerowa" - -#: ../ex_getln.c:5046 -#, c-format -msgid "" -"\n" -"# %s History (newest to oldest):\n" -msgstr "" -"\n" -"# %s Historia (od najnowszych po najstarsze):\n" - -#: ../ex_getln.c:5047 -msgid "Command Line" -msgstr "Wiersz polece" - -#: ../ex_getln.c:5048 -msgid "Search String" -msgstr "Szukany cig" - -#: ../ex_getln.c:5049 -msgid "Expression" -msgstr "Wyraenie" - -#: ../ex_getln.c:5050 -msgid "Input Line" -msgstr "Wiersz wprowadze" - -#: ../ex_getln.c:5117 -msgid "E198: cmd_pchar beyond the command length" -msgstr "E198: cmd_pchar przekracza dugo polecenia" - -#: ../ex_getln.c:5279 -msgid "E199: Active window or buffer deleted" -msgstr "E199: Aktywny widok lub bufor skasowany" - -#: ../file_search.c:203 -msgid "E854: path too long for completion" -msgstr "E854: cieka za duga by uzupeni" - -#: ../file_search.c:446 -#, c-format -msgid "" -"E343: Invalid path: '**[number]' must be at the end of the path or be " -"followed by '%s'." -msgstr "" -"E343: Niewaciwy trop: '**[numer]' musi by na kocu tropu lub po nim musi " -"by '%s'." - -#: ../file_search.c:1505 -#, c-format -msgid "E344: Can't find directory \"%s\" in cdpath" -msgstr "E344: Nie mog znale katalogu \"%s\" w cdpath" - -#: ../file_search.c:1508 -#, c-format -msgid "E345: Can't find file \"%s\" in path" -msgstr "E345: Nie mog znale pliku \"%s\" w tropie" - -#: ../file_search.c:1512 -#, c-format -msgid "E346: No more directory \"%s\" found in cdpath" -msgstr "E346: Katalogu \"%s\" nie ma wicej w cdpath" - -#: ../file_search.c:1515 -#, c-format -msgid "E347: No more file \"%s\" found in path" -msgstr "E347: Pliku \"%s\" nie ma wicej w tropie" - -#: ../fileio.c:137 -msgid "E812: Autocommands changed buffer or buffer name" -msgstr "E812: Autokomendy zmieniy bufor lub jego nazw" - -#: ../fileio.c:368 -msgid "Illegal file name" -msgstr "Niedopuszczalna nazwa pliku" - -#: ../fileio.c:395 ../fileio.c:476 ../fileio.c:2543 ../fileio.c:2578 -msgid "is a directory" -msgstr "jest katalogiem" - -#: ../fileio.c:397 -msgid "is not a file" -msgstr "nie jest plikiem" - -#: ../fileio.c:508 ../fileio.c:3522 -msgid "[New File]" -msgstr "[Nowy Plik]" - -#: ../fileio.c:511 -msgid "[New DIRECTORY]" -msgstr "[Nowy KATALOG]" - -#: ../fileio.c:529 ../fileio.c:532 -msgid "[File too big]" -msgstr "[Za duy plik]" - -#: ../fileio.c:534 -msgid "[Permission Denied]" -msgstr "[Nie dozwolono]" - -#: ../fileio.c:653 -msgid "E200: *ReadPre autocommands made the file unreadable" -msgstr "E200: Autokomendy *ReadPre zrobiy plik nieodczytywalnym" - -#: ../fileio.c:655 -msgid "E201: *ReadPre autocommands must not change current buffer" -msgstr "E201: Autokomendy *ReadPre nie mog zmienia biecego bufora" - -#: ../fileio.c:672 -msgid "Nvim: Reading from stdin...\n" -msgstr "Vim: Wczytywanie ze stdin...\n" - -#. Re-opening the original file failed! -#: ../fileio.c:909 -msgid "E202: Conversion made file unreadable!" -msgstr "E202: Nie mona otworzy pliku utworzonego przez przemian!" - -#. fifo or socket -#: ../fileio.c:1782 -msgid "[fifo/socket]" -msgstr "[fifo/socket]" - -#. fifo -#: ../fileio.c:1788 -msgid "[fifo]" -msgstr "[fifo]" - -#. or socket -#: ../fileio.c:1794 -msgid "[socket]" -msgstr "[socket]" - -#. or character special -#: ../fileio.c:1801 -msgid "[character special]" -msgstr "[specjalny znak]" - -#: ../fileio.c:1815 -msgid "[CR missing]" -msgstr "[brak CR]'" - -#: ../fileio.c:1819 -msgid "[long lines split]" -msgstr "[dugie wiersze rozdzielane]" - -#: ../fileio.c:1823 ../fileio.c:3512 -msgid "[NOT converted]" -msgstr "[NIE przemienione]" - -#: ../fileio.c:1826 ../fileio.c:3515 -msgid "[converted]" -msgstr "[przemienione]" - -#: ../fileio.c:1831 -#, c-format -msgid "[CONVERSION ERROR in line %<PRId64>]" -msgstr "[BD W PRZEMIANIE w linii %<PRId64>]" - -#: ../fileio.c:1835 -#, c-format -msgid "[ILLEGAL BYTE in line %<PRId64>]" -msgstr "[NIEDOZWOLONY BAJT w wierszu %<PRId64>]" - -#: ../fileio.c:1838 -msgid "[READ ERRORS]" -msgstr "[BDY W ODCZYCIE]" - -#: ../fileio.c:2104 -msgid "Can't find temp file for conversion" -msgstr "Nie mog znale pliku tymczasowego w celu przemiany" - -#: ../fileio.c:2110 -msgid "Conversion with 'charconvert' failed" -msgstr "Nieudana przemiana z 'charconvert'" - -#: ../fileio.c:2113 -msgid "can't read output of 'charconvert'" -msgstr "nie mog odczyta wyjcia z 'charconvert'" - -#: ../fileio.c:2437 -msgid "E676: No matching autocommands for acwrite buffer" -msgstr "E676: Brak pasujcych autokomend dla bufora acwrite" - -#: ../fileio.c:2466 -msgid "E203: Autocommands deleted or unloaded buffer to be written" -msgstr "" -"E203: Autokomendy skasoway lub wyadoway bufor przeznaczony do zapisu" - -#: ../fileio.c:2486 -msgid "E204: Autocommand changed number of lines in unexpected way" -msgstr "E204: Autokomenda zmienia liczb wierszy w nieoczekiwany sposb" - -#: ../fileio.c:2548 ../fileio.c:2565 -msgid "is not a file or writable device" -msgstr "nie jest plikiem lub zapisywalnym przyrzdem" - -#: ../fileio.c:2601 -msgid "is read-only (add ! to override)" -msgstr "jest tylko do odczytu (wymu poprzez !)" - -#: ../fileio.c:2886 -msgid "E506: Can't write to backup file (add ! to override)" -msgstr "E506: Nie mog zapisa do pliku zabezpieczenia (wymu przez !)" - -#: ../fileio.c:2898 -msgid "E507: Close error for backup file (add ! to override)" -msgstr "E507: Bd podczas zamykania pliku zabezpieczenia (wymu przez !)" - -#: ../fileio.c:2901 -msgid "E508: Can't read file for backup (add ! to override)" -msgstr "E508: Nie mog odczyta pliku w celu zabezpieczenia (wymu przez !)" - -#: ../fileio.c:2923 -msgid "E509: Cannot create backup file (add ! to override)" -msgstr "E509: Nie mog stworzy pliku zabezpieczenia (wymu przez !)" - -#: ../fileio.c:3008 -msgid "E510: Can't make backup file (add ! to override)" -msgstr "E510: Nie mog zrobi pliku zabezpieczenia (wymu przez !)" - -#. Can't write without a tempfile! -#: ../fileio.c:3121 -msgid "E214: Can't find temp file for writing" -msgstr "E214: Nie mog znale pliku tymczasowego do zapisania" - -#: ../fileio.c:3134 -msgid "E213: Cannot convert (add ! to write without conversion)" -msgstr "E213: Nie mog przemieni (uyj ! by zapisa bez przemiany)" - -#: ../fileio.c:3169 -msgid "E166: Can't open linked file for writing" -msgstr "E166: Nie mog otworzy podczonego pliku do zapisu" - -#: ../fileio.c:3173 -msgid "E212: Can't open file for writing" -msgstr "E212: Nie mog otworzy pliku do zapisu" - -#: ../fileio.c:3363 -msgid "E667: Fsync failed" -msgstr "E667: Fsync nie powid si" - -#: ../fileio.c:3398 -msgid "E512: Close failed" -msgstr "E512: Zamknicie si nie powiodo" - -#: ../fileio.c:3436 -msgid "E513: write error, conversion failed (make 'fenc' empty to override)" -msgstr "" -"E513: Bd zapisu, przemiana si nie powioda (oprnij 'fenc' aby wymusi)" - -#: ../fileio.c:3441 -#, c-format -msgid "" -"E513: write error, conversion failed in line %<PRId64> (make 'fenc' empty to " -"override)" -msgstr "" -"E513: Bd zapisu, przemiana si nie powioda w wierszu %<PRId64> (oprnij " -"'fenc' by wymusi)" - -#: ../fileio.c:3448 -msgid "E514: write error (file system full?)" -msgstr "E514: bd w zapisie (moe system plikw jest przepeniony?)" - -#: ../fileio.c:3506 -msgid " CONVERSION ERROR" -msgstr " BD W PRZEMIANIE" - -#: ../fileio.c:3509 -#, c-format -msgid " in line %<PRId64>;" -msgstr " w wierszu %<PRId64>;" - -#: ../fileio.c:3519 -msgid "[Device]" -msgstr "[Urzdzenie]" - -#: ../fileio.c:3522 -msgid "[New]" -msgstr "[Nowy]" - -#: ../fileio.c:3535 -msgid " [a]" -msgstr " [a]" - -#: ../fileio.c:3535 -msgid " appended" -msgstr " doczono" - -#: ../fileio.c:3537 -msgid " [w]" -msgstr " [w]" - -#: ../fileio.c:3537 -msgid " written" -msgstr " zapisano" - -#: ../fileio.c:3579 -msgid "E205: Patchmode: can't save original file" -msgstr "E205: Patchmode: nie mog zapisa oryginalnego pliku" - -#: ../fileio.c:3602 -msgid "E206: patchmode: can't touch empty original file" -msgstr "E206: patchmode: nie mog stworzy pustego oryginalnego pliku" - -#: ../fileio.c:3616 -msgid "E207: Can't delete backup file" -msgstr "E207: Nie mog skasowa pliku zabezpieczenia" - -#: ../fileio.c:3672 -msgid "" -"\n" -"WARNING: Original file may be lost or damaged\n" -msgstr "" -"\n" -"OSTRZEENIE: Oryginalny plik moe zosta utracony lub uszkodzony\n" - -#: ../fileio.c:3675 -msgid "don't quit the editor until the file is successfully written!" -msgstr "nie wychod edytora, dopki plik nie zosta poprawnie zapisany!" - -#: ../fileio.c:3795 -msgid "[dos]" -msgstr "[dos]" - -#: ../fileio.c:3795 -msgid "[dos format]" -msgstr "[format dos-a]" - -#: ../fileio.c:3801 -msgid "[mac]" -msgstr "[mac]" - -#: ../fileio.c:3801 -msgid "[mac format]" -msgstr "[format maca]" - -#: ../fileio.c:3807 -msgid "[unix]" -msgstr "[unix]" - -#: ../fileio.c:3807 -msgid "[unix format]" -msgstr "[format unixa]" - -#: ../fileio.c:3831 -msgid "1 line, " -msgstr "1 wiersz, " - -#: ../fileio.c:3833 -#, c-format -msgid "%<PRId64> lines, " -msgstr "%<PRId64> wierszy, " - -#: ../fileio.c:3836 -msgid "1 character" -msgstr "1 znak" - -#: ../fileio.c:3838 -#, c-format -msgid "%<PRId64> characters" -msgstr "%<PRId64> znakw" - -#: ../fileio.c:3849 -msgid "[noeol]" -msgstr "[noeol]" - -#: ../fileio.c:3849 -msgid "[Incomplete last line]" -msgstr "[Niekompletny ostatni wiersz]" - -#. don't overwrite messages here -#. must give this prompt -#. don't use emsg() here, don't want to flush the buffers -#: ../fileio.c:3865 -msgid "WARNING: The file has been changed since reading it!!!" -msgstr "OSTRZEENIE: Plik zmieni si od czasu ostatniego odczytu!!!" - -#: ../fileio.c:3867 -msgid "Do you really want to write to it" -msgstr "Czy naprawd chcesz go zapisa" - -#: ../fileio.c:4648 -#, c-format -msgid "E208: Error writing to \"%s\"" -msgstr "E208: Bd zapisywania do \"%s\"" - -#: ../fileio.c:4655 -#, c-format -msgid "E209: Error closing \"%s\"" -msgstr "E209: Bd w trakcie zamykania \"%s\"" - -#: ../fileio.c:4657 -#, c-format -msgid "E210: Error reading \"%s\"" -msgstr "E210: Bd odczytu \"%s\"" - -#: ../fileio.c:4883 -msgid "E246: FileChangedShell autocommand deleted buffer" -msgstr "E246: Autokomenda FileChangedShell skasowaa bufor" - -#: ../fileio.c:4894 -#, c-format -msgid "E211: File \"%s\" no longer available" -msgstr "E211: Plik \"%s\" nie jest duej dostpny" - -#: ../fileio.c:4906 -#, c-format -msgid "" -"W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as " -"well" -msgstr "" -"W12: OSTRZEENIE: Plik \"%s\" zmieni si od czasu rozpoczcia edycji, bufor " -"w Vimie rwnie zosta zmieniony" - -#: ../fileio.c:4907 -msgid "See \":help W12\" for more info." -msgstr "Zobacz \":help W12\" dla dalszych informacji." - -#: ../fileio.c:4910 -#, c-format -msgid "W11: Warning: File \"%s\" has changed since editing started" -msgstr "W11: OSTRZEENIE: Plik \"%s\" zmieni si od czasu rozpoczcia edycji" - -#: ../fileio.c:4911 -msgid "See \":help W11\" for more info." -msgstr "Zobacz \":help W11\" dla dalszych informacji." - -#: ../fileio.c:4914 -#, c-format -msgid "W16: Warning: Mode of file \"%s\" has changed since editing started" -msgstr "" -"W16: OSTRZEENIE: Tryb pliku \"%s\" zmieni si od czasu rozpoczcia edycji" - -#: ../fileio.c:4915 -msgid "See \":help W16\" for more info." -msgstr "Zobacz \":help W16\" dla dalszych informacji." - -#: ../fileio.c:4927 -#, c-format -msgid "W13: Warning: File \"%s\" has been created after editing started" -msgstr "W13: OSTRZEENIE: Plik \"%s\" zosta stworzony po rozpoczciu edycji" - -#: ../fileio.c:4947 -msgid "Warning" -msgstr "OSTRZEENIE" - -#: ../fileio.c:4948 -msgid "" -"&OK\n" -"&Load File" -msgstr "" -"&OK\n" -"&Zaaduj Plik" - -#: ../fileio.c:5065 -#, c-format -msgid "E462: Could not prepare for reloading \"%s\"" -msgstr "E462: Nie mona przygotowa przeadowania \"%s\"" - -#: ../fileio.c:5078 -#, c-format -msgid "E321: Could not reload \"%s\"" -msgstr "E321: Nie mona przeadowa \"%s\"" - -#: ../fileio.c:5601 -msgid "--Deleted--" -msgstr "--Skasowano--" - -#: ../fileio.c:5732 -#, c-format -msgid "auto-removing autocommand: %s <buffer=%d>" -msgstr "auto-usuwanie autokomendy: %s <buffer=%d>" - -#. the group doesn't exist -#: ../fileio.c:5772 -#, c-format -msgid "E367: No such group: \"%s\"" -msgstr "E367: Nie ma takiej grupy: \"%s\"" - -#: ../fileio.c:5897 -#, c-format -msgid "E215: Illegal character after *: %s" -msgstr "E215: Niedopuszczalny znak po *: %s" - -#: ../fileio.c:5905 -#, c-format -msgid "E216: No such event: %s" -msgstr "E216: Nie ma takiego wydarzenia: %s" - -#: ../fileio.c:5907 -#, c-format -msgid "E216: No such group or event: %s" -msgstr "E216: Nie ma takiej grupy lub wydarzenia: %s" - -#. Highlight title -#: ../fileio.c:6090 -msgid "" -"\n" -"--- Auto-Commands ---" -msgstr "" -"\n" -"--- Autokomendy ---" - -#: ../fileio.c:6293 -#, c-format -msgid "E680: <buffer=%d>: invalid buffer number " -msgstr "E680: <buffer=%d>: niewaciwy numer bufora" - -#: ../fileio.c:6370 -msgid "E217: Can't execute autocommands for ALL events" -msgstr "E217: Nie mona wykonywa autokomend dla wydarze ALL" - -#: ../fileio.c:6393 -msgid "No matching autocommands" -msgstr "Brak pasujcych autokomend" - -#: ../fileio.c:6831 -msgid "E218: autocommand nesting too deep" -msgstr "E218: zbyt gbokie zagniedenie autokomend" - -#: ../fileio.c:7143 -#, c-format -msgid "%s Auto commands for \"%s\"" -msgstr "%s Autokomend dla \"%s\"" - -#: ../fileio.c:7149 -#, c-format -msgid "Executing %s" -msgstr "Wykonuj %s" - -#: ../fileio.c:7211 -#, c-format -msgid "autocommand %s" -msgstr "autokomenda %s" - -#: ../fileio.c:7795 -msgid "E219: Missing {." -msgstr "E219: Brak {." - -#: ../fileio.c:7797 -msgid "E220: Missing }." -msgstr "E220: Brak }." - -#: ../fold.c:93 -msgid "E490: No fold found" -msgstr "E490: Nie znaleziono zwinicia" - -#: ../fold.c:544 -msgid "E350: Cannot create fold with current 'foldmethod'" -msgstr "E350: Nie mona utworzy zwinicia przy biecej 'foldmethod'" - -#: ../fold.c:546 -msgid "E351: Cannot delete fold with current 'foldmethod'" -msgstr "E351: Nie mona skasowa zwinicia przy biecej 'foldmethod'" - -#: ../fold.c:1784 -#, c-format -msgid "+--%3ld lines folded " -msgstr "+--%3ld wierszy zwinito " - -#. buffer has already been read -#: ../getchar.c:273 -msgid "E222: Add to read buffer" -msgstr "E222: Dodaj do bufora odczytu" - -#: ../getchar.c:2040 -msgid "E223: recursive mapping" -msgstr "E223: rekursywne przyporzdkowanie" - -#: ../getchar.c:2849 -#, c-format -msgid "E224: global abbreviation already exists for %s" -msgstr "E224: istnieje ju globalny skrt dla %s" - -#: ../getchar.c:2852 -#, c-format -msgid "E225: global mapping already exists for %s" -msgstr "E225: istnieje ju globalne przyporzdkowanie dla %s" - -#: ../getchar.c:2952 -#, c-format -msgid "E226: abbreviation already exists for %s" -msgstr "E226: istnieje ju skrt dla %s" - -#: ../getchar.c:2955 -#, c-format -msgid "E227: mapping already exists for %s" -msgstr "E227: istnieje ju przyporzdkowanie dla %s" - -#: ../getchar.c:3008 -msgid "No abbreviation found" -msgstr "Nie znaleziono skrtu" - -#: ../getchar.c:3010 -msgid "No mapping found" -msgstr "Nie znaleziono przyporzdkowania" - -#: ../getchar.c:3974 -msgid "E228: makemap: Illegal mode" -msgstr "E228: makemap: Niedopuszczalny tryb" - -#. key value of 'cedit' option -#. type of cmdline window or 0 -#. result of cmdline window or 0 -#: ../globals.h:924 -msgid "--No lines in buffer--" -msgstr "--Brak wierszy w buforze--" - -#. -#. * The error messages that can be shared are included here. -#. * Excluded are errors that are only used once and debugging messages. -#. -#: ../globals.h:996 -msgid "E470: Command aborted" -msgstr "E470: Przerwanie komendy" - -#: ../globals.h:997 -msgid "E471: Argument required" -msgstr "E471: wymagany argument" - -#: ../globals.h:998 -msgid "E10: \\ should be followed by /, ? or &" -msgstr "E10: po \\ powinno by /, ? lub &" - -#: ../globals.h:1000 -msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits" -msgstr "" -"E11: Niedozwolone w oknie wiersza polece; <CR> wykonuje, CTRL-C opuszcza" - -#: ../globals.h:1002 -msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search" -msgstr "" -"E12: Komenda niedozwolona z exrc/vimrc w biecym szukaniu katalogu lub " -"znacznika" - -#: ../globals.h:1003 -msgid "E171: Missing :endif" -msgstr "E171: Brak :endif" - -#: ../globals.h:1004 -msgid "E600: Missing :endtry" -msgstr "E600: Brak :endtry" - -#: ../globals.h:1005 -msgid "E170: Missing :endwhile" -msgstr "E170: Brak :endwhile" - -#: ../globals.h:1006 -msgid "E170: Missing :endfor" -msgstr "E170: Brak :endfor" - -#: ../globals.h:1007 -msgid "E588: :endwhile without :while" -msgstr "E588: :endwhile bez :while" - -#: ../globals.h:1008 -msgid "E588: :endfor without :for" -msgstr "E588: :endfor bez :for" - -#: ../globals.h:1009 -msgid "E13: File exists (add ! to override)" -msgstr "E13: Plik istnieje (wymu poprzez !)" - -#: ../globals.h:1010 -msgid "E472: Command failed" -msgstr "E472: Komenda nie powioda si" - -#: ../globals.h:1011 -msgid "E473: Internal error" -msgstr "E473: Bd wewntrzny" - -#: ../globals.h:1012 -msgid "Interrupted" -msgstr "Przerwane" - -#: ../globals.h:1013 -msgid "E14: Invalid address" -msgstr "E14: Niewaciwy adres" - -#: ../globals.h:1014 -msgid "E474: Invalid argument" -msgstr "E474: Niewaciwy argument" - -#: ../globals.h:1015 -#, c-format -msgid "E475: Invalid argument: %s" -msgstr "E475: Niewaciwy argument: %s" - -#: ../globals.h:1016 -#, c-format -msgid "E15: Invalid expression: %s" -msgstr "E15: Niewaciwe wyraenie: %s" - -#: ../globals.h:1017 -msgid "E16: Invalid range" -msgstr "E16: Niewaciwy zakres" - -#: ../globals.h:1018 -msgid "E476: Invalid command" -msgstr "E476: Niewaciwa komenda" - -#: ../globals.h:1019 -#, c-format -msgid "E17: \"%s\" is a directory" -msgstr "E17: \"%s\" jest katalogiem" - -#: ../globals.h:1020 -#, fuzzy -msgid "E900: Invalid job id" -msgstr "E49: Niewaciwa wielko przewinicia" - -#: ../globals.h:1021 -msgid "E901: Job table is full" -msgstr "" - -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - -#: ../globals.h:1024 -#, c-format -msgid "E364: Library call failed for \"%s()\"" -msgstr "E364: Wywoanie z biblioteki nie powiodo si dla \"%s()\"" - -#: ../globals.h:1026 -msgid "E19: Mark has invalid line number" -msgstr "E19: Zakadka ma niewaciwy numer wiersza" - -#: ../globals.h:1027 -msgid "E20: Mark not set" -msgstr "E20: Zakadka nienastawiona" - -#: ../globals.h:1029 -msgid "E21: Cannot make changes, 'modifiable' is off" -msgstr "E21: Nie mog wykona zmian, 'modifiable' jest wyczone" - -#: ../globals.h:1030 -msgid "E22: Scripts nested too deep" -msgstr "E22: Zbyt gbokie zagniedenie skryptw" - -#: ../globals.h:1031 -msgid "E23: No alternate file" -msgstr "E23: Brak pliku zamiany" - -#: ../globals.h:1032 -msgid "E24: No such abbreviation" -msgstr "E24: Nie ma takiego skrtu" - -#: ../globals.h:1033 -msgid "E477: No ! allowed" -msgstr "E477: Niedozwolone !" - -#: ../globals.h:1035 -msgid "E25: Nvim does not have a built-in GUI" -msgstr "E25: GUI nie moe by uyte: Nie wczono podczas kompilacji" - -#: ../globals.h:1036 -#, c-format -msgid "E28: No such highlight group name: %s" -msgstr "E28: Brak takiej nazwy grupy podwietlania: %s" - -#: ../globals.h:1037 -msgid "E29: No inserted text yet" -msgstr "E29: Nie wprowadzono jeszcze adnego tekstu" - -#: ../globals.h:1038 -msgid "E30: No previous command line" -msgstr "E30: Nie ma poprzedniego wiersza polece" - -#: ../globals.h:1039 -msgid "E31: No such mapping" -msgstr "E31: Nie ma takiego przyporzdkowania" - -#: ../globals.h:1040 -msgid "E479: No match" -msgstr "E479: Brak dopasowa" - -#: ../globals.h:1041 -#, c-format -msgid "E480: No match: %s" -msgstr "E480: Brak dopasowa: %s" - -#: ../globals.h:1042 -msgid "E32: No file name" -msgstr "E32: Brak nazwy pliku" - -#: ../globals.h:1044 -msgid "E33: No previous substitute regular expression" -msgstr "E33: Brak poprzedniego podstawieniowego wyraenia regularnego" - -#: ../globals.h:1045 -msgid "E34: No previous command" -msgstr "E34: Brak poprzedniej komendy" - -#: ../globals.h:1046 -msgid "E35: No previous regular expression" -msgstr "E35: Brak poprzedniego wyraenia regularnego" - -#: ../globals.h:1047 -msgid "E481: No range allowed" -msgstr "E481: Zakres niedozwolony" - -#: ../globals.h:1048 -msgid "E36: Not enough room" -msgstr "E36: Brak miejsca" - -#: ../globals.h:1049 -#, c-format -msgid "E482: Can't create file %s" -msgstr "E482: Nie mog stworzy pliku %s" - -#: ../globals.h:1050 -msgid "E483: Can't get temp file name" -msgstr "E483: Nie mog pobra nazwy pliku tymczasowego" - -#: ../globals.h:1051 -#, c-format -msgid "E484: Can't open file %s" -msgstr "E484: Nie mog otworzy pliku %s" - -#: ../globals.h:1052 -#, c-format -msgid "E485: Can't read file %s" -msgstr "E485: Nie mog odczyta pliku %s" - -#: ../globals.h:1054 -msgid "E37: No write since last change (add ! to override)" -msgstr "E37: Nie zapisano od ostatniej zmiany (wymu przez !)" - -#: ../globals.h:1055 -#, fuzzy -msgid "E37: No write since last change" -msgstr "[Brak zapisu od czasu ostatniej zmiany]\n" - -#: ../globals.h:1056 -msgid "E38: Null argument" -msgstr "E38: Zerowy argument" - -#: ../globals.h:1057 -msgid "E39: Number expected" -msgstr "E39: Oczekuj liczby" - -#: ../globals.h:1058 -#, c-format -msgid "E40: Can't open errorfile %s" -msgstr "E40: Nie mog otworzy pliku bdw %s" - -#: ../globals.h:1059 -msgid "E41: Out of memory!" -msgstr "E41: Pami wyczerpana!" - -#: ../globals.h:1060 -msgid "Pattern not found" -msgstr "Nie znaleziono wzorca" - -#: ../globals.h:1061 -#, c-format -msgid "E486: Pattern not found: %s" -msgstr "E486: Nie znaleziono wzorca: %s" - -#: ../globals.h:1062 -msgid "E487: Argument must be positive" -msgstr "E487: Argument musi by dodatni" - -#: ../globals.h:1064 -msgid "E459: Cannot go back to previous directory" -msgstr "E459: Nie mona przej do poprzedniego katalogu" - -#: ../globals.h:1066 -msgid "E42: No Errors" -msgstr "E42: Brak Bdw" - -#: ../globals.h:1067 -msgid "E776: No location list" -msgstr "E776: Brak listy lokacji" - -#: ../globals.h:1068 -msgid "E43: Damaged match string" -msgstr "E43: Popsuty cig wzorca" - -#: ../globals.h:1069 -msgid "E44: Corrupted regexp program" -msgstr "E44: Zepsuty program wyrae regularnych" - -#: ../globals.h:1071 -msgid "E45: 'readonly' option is set (add ! to override)" -msgstr "E45: opcja 'readonly' jest ustawiona (wymu poprzez !)" - -#: ../globals.h:1073 -#, c-format -msgid "E46: Cannot change read-only variable \"%s\"" -msgstr "E46: Nie mog zmieni zmiennej tylko do odczytu \"%s\"" - -#: ../globals.h:1075 -#, c-format -msgid "E794: Cannot set variable in the sandbox: \"%s\"" -msgstr "E794: Nie mog ustawi zmiennej w piaskownicy: \"%s\"" - -#: ../globals.h:1076 -msgid "E47: Error while reading errorfile" -msgstr "E47: Bd w trakcie czytania pliku bdw" - -#: ../globals.h:1078 -msgid "E48: Not allowed in sandbox" -msgstr "E48: Niedozwolone w piaskownicy" - -#: ../globals.h:1080 -msgid "E523: Not allowed here" -msgstr "E523: Niedozwolone w tym miejscu" - -#: ../globals.h:1082 -msgid "E359: Screen mode setting not supported" -msgstr "E359: Ustawianie trybu ekranu niewspomagane" - -#: ../globals.h:1083 -msgid "E49: Invalid scroll size" -msgstr "E49: Niewaciwa wielko przewinicia" - -#: ../globals.h:1084 -msgid "E91: 'shell' option is empty" -msgstr "E91: opcja 'shell' jest pusta" - -#: ../globals.h:1085 -msgid "E255: Couldn't read in sign data!" -msgstr "E255: Nie mogem wczyta danych znaku!" - -#: ../globals.h:1086 -msgid "E72: Close error on swap file" -msgstr "E72: Bd podczas zamykania pliku wymiany" - -#: ../globals.h:1087 -msgid "E73: tag stack empty" -msgstr "E73: stos znacznikw jest pusty" - -#: ../globals.h:1088 -msgid "E74: Command too complex" -msgstr "E74: Komenda jest zbyt skomplikowana" - -#: ../globals.h:1089 -msgid "E75: Name too long" -msgstr "E75: Zbyt duga nazwa" - -#: ../globals.h:1090 -msgid "E76: Too many [" -msgstr "E76: Zbyt wiele [" - -#: ../globals.h:1091 -msgid "E77: Too many file names" -msgstr "E77: Zbyt wiele nazw plikw" - -#: ../globals.h:1092 -msgid "E488: Trailing characters" -msgstr "E488: Nadstpne znaczki" - -#: ../globals.h:1093 -msgid "E78: Unknown mark" -msgstr "E78: Nieznana zakadka" - -#: ../globals.h:1094 -msgid "E79: Cannot expand wildcards" -msgstr "E79: Nie mog rozwin znakw wieloznacznych" - -#: ../globals.h:1096 -msgid "E591: 'winheight' cannot be smaller than 'winminheight'" -msgstr "E591: 'winheight' nie moe by mniejsze ni 'winminheight'" - -#: ../globals.h:1098 -msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'" -msgstr "E592: 'winwidth' nie moe by mniejsze ni 'winminwidth'" - -#: ../globals.h:1099 -msgid "E80: Error while writing" -msgstr "E80: Bd w trakcie zapisu" - -#: ../globals.h:1100 -msgid "Zero count" -msgstr "Zerowy licznik" - -#: ../globals.h:1101 -msgid "E81: Using <SID> not in a script context" -msgstr "E81: Uycie <SID> poza kontekstem skryptu" - -#: ../globals.h:1102 -#, c-format -msgid "E685: Internal error: %s" -msgstr "E685: Bd wewntrzny: %s" - -#: ../globals.h:1104 -msgid "E363: pattern uses more memory than 'maxmempattern'" -msgstr "E363: Wzorzec uywa wicej pamici ni 'maxmempattern'" - -#: ../globals.h:1105 -msgid "E749: empty buffer" -msgstr "E749: pusty bufor" - -#: ../globals.h:1108 -msgid "E682: Invalid search pattern or delimiter" -msgstr "E682: Niewaciwy wzorzec wyszukiwania lub delimiter" - -#: ../globals.h:1109 -msgid "E139: File is loaded in another buffer" -msgstr "E139: Plik jest zaadowany w innym buforze" - -#: ../globals.h:1110 -#, c-format -msgid "E764: Option '%s' is not set" -msgstr "E764: Nie ustawiono opcji '%s'" - -#: ../globals.h:1111 -msgid "E850: Invalid register name" -msgstr "E850: Niewaciwa nazwa rejestru" - -#: ../globals.h:1114 -msgid "search hit TOP, continuing at BOTTOM" -msgstr "szukanie dobio GRY; kontynuacja od KOCA" - -#: ../globals.h:1115 -msgid "search hit BOTTOM, continuing at TOP" -msgstr "szukanie dobio KOCA; kontynuacja od GRY" - -#: ../hardcopy.c:240 -msgid "E550: Missing colon" -msgstr "E550: Brak dwukropka" - -#: ../hardcopy.c:252 -msgid "E551: Illegal component" -msgstr "E551: Niedozwolona cz" - -#: ../hardcopy.c:259 -msgid "E552: digit expected" -msgstr "E552: oczekiwaem na cyfr" - -#: ../hardcopy.c:473 -#, c-format -msgid "Page %d" -msgstr "Strona %d" - -#: ../hardcopy.c:597 -msgid "No text to be printed" -msgstr "Brak tekstu do drukowania" - -#: ../hardcopy.c:668 -#, c-format -msgid "Printing page %d (%d%%)" -msgstr "Drukuj stron %d (%d%%)" - -#: ../hardcopy.c:680 -#, c-format -msgid " Copy %d of %d" -msgstr " Kopia %d z %d" - -#: ../hardcopy.c:733 -#, c-format -msgid "Printed: %s" -msgstr "Wydrukowano: %s" - -#: ../hardcopy.c:740 -msgid "Printing aborted" -msgstr "Drukowanie odwoane" - -#: ../hardcopy.c:1365 -msgid "E455: Error writing to PostScript output file" -msgstr "E455: Nie mona zapisa do wyjciowego pliku PostScriptu" - -#: ../hardcopy.c:1747 -#, c-format -msgid "E624: Can't open file \"%s\"" -msgstr "E624: Nie mog otworzy pliku \"%s\"" - -#: ../hardcopy.c:1756 ../hardcopy.c:2470 -#, c-format -msgid "E457: Can't read PostScript resource file \"%s\"" -msgstr "E457: Nie mona odczyta pliku zasobw PostScriptu \"%s\"" - -#: ../hardcopy.c:1772 -#, c-format -msgid "E618: file \"%s\" is not a PostScript resource file" -msgstr "E618: plik \"%s\" nie jest plikiem zasobw PostScriptu" - -#: ../hardcopy.c:1788 ../hardcopy.c:1805 ../hardcopy.c:1844 -#, c-format -msgid "E619: file \"%s\" is not a supported PostScript resource file" -msgstr "E619: plik \"%s\" nie jest wspieranym plikiem zasobw PostScriptu" - -#: ../hardcopy.c:1856 -#, c-format -msgid "E621: \"%s\" resource file has wrong version" -msgstr "E621: \"%s\" nieprawidowa wersja pliku zasobw" - -#: ../hardcopy.c:2225 -msgid "E673: Incompatible multi-byte encoding and character set." -msgstr "E673: Niekompatybilne kodowanie wielobajtowe i zestaw znakw." - -#: ../hardcopy.c:2238 -msgid "E674: printmbcharset cannot be empty with multi-byte encoding." -msgstr "E674: printmbcharset nie moe by pusty przy kodowaniu wielobajtowym." - -#: ../hardcopy.c:2254 -msgid "E675: No default font specified for multi-byte printing." -msgstr "E675: Nie okrelono domylnej czcionki dla drukowania wielobajtowego." - -#: ../hardcopy.c:2426 -msgid "E324: Can't open PostScript output file" -msgstr "E324: Nie mona otworzy pliku PostScript do wyjcia" - -#: ../hardcopy.c:2458 -#, c-format -msgid "E456: Can't open file \"%s\"" -msgstr "E456: Nie mog otworzy pliku \"%s\"" - -#: ../hardcopy.c:2583 -msgid "E456: Can't find PostScript resource file \"prolog.ps\"" -msgstr "E456: Nie mona znale pliku zasobw PostScriptu \"prolog.ps\"" - -#: ../hardcopy.c:2593 -msgid "E456: Can't find PostScript resource file \"cidfont.ps\"" -msgstr "E456: Nie mona znale pliku zasobw PostScriptu \"cidfont.ps\"" - -#: ../hardcopy.c:2622 ../hardcopy.c:2639 ../hardcopy.c:2665 -#, c-format -msgid "E456: Can't find PostScript resource file \"%s.ps\"" -msgstr "E456: Nie mona znale pliku zasobw PostScriptu \"%s.ps\"" - -#: ../hardcopy.c:2654 -#, c-format -msgid "E620: Unable to convert to print encoding \"%s\"" -msgstr "E620: Nie mona przekonwertowa by drukowa kodowanie \"%s\"" - -#: ../hardcopy.c:2877 -msgid "Sending to printer..." -msgstr "Przesyam do drukarki..." - -#: ../hardcopy.c:2881 -msgid "E365: Failed to print PostScript file" -msgstr "E365: Drukowanie pliku PostScript nie powiodo si" - -#: ../hardcopy.c:2883 -msgid "Print job sent." -msgstr "Zadanie drukowanie przesane." - -#: ../if_cscope.c:85 -msgid "Add a new database" -msgstr "Dodaj now baz danych" - -#: ../if_cscope.c:87 -msgid "Query for a pattern" -msgstr "Zapytane o wzorzec" - -#: ../if_cscope.c:89 -msgid "Show this message" -msgstr "Poka ten komunikat" - -#: ../if_cscope.c:91 -msgid "Kill a connection" -msgstr "Zabij poczenie" - -#: ../if_cscope.c:93 -msgid "Reinit all connections" -msgstr "Ponw wszelkie poczenia" - -#: ../if_cscope.c:95 -msgid "Show connections" -msgstr "Poka poczenia" - -#: ../if_cscope.c:101 -#, c-format -msgid "E560: Usage: cs[cope] %s" -msgstr "E560: Zastosowanie: cs[cope] %s" - -#: ../if_cscope.c:225 -msgid "This cscope command does not support splitting the window.\n" -msgstr "Ta komenda cscope nie wspomaga podzielenia okna.\n" - -#: ../if_cscope.c:266 -msgid "E562: Usage: cstag <ident>" -msgstr "E562: Zastosowanie: cstag <ident>" - -#: ../if_cscope.c:313 -msgid "E257: cstag: tag not found" -msgstr "E257: cstag: nie znaleziono znacznika" - -#: ../if_cscope.c:461 -#, c-format -msgid "E563: stat(%s) error: %d" -msgstr "E563: stat(%s) bd: %d" - -#: ../if_cscope.c:551 -#, c-format -msgid "E564: %s is not a directory or a valid cscope database" -msgstr "E564: %s nie jest katalogiem lub poprawn baz danych cscope" - -#: ../if_cscope.c:566 -#, c-format -msgid "Added cscope database %s" -msgstr "Dodano baz danych cscope %s" - -#: ../if_cscope.c:616 -#, c-format -msgid "E262: error reading cscope connection %<PRId64>" -msgstr "E262: bd odczytu poczenia z cscope %<PRId64>" - -#: ../if_cscope.c:711 -msgid "E561: unknown cscope search type" -msgstr "E561: nieznany typ szukania cscope" - -#: ../if_cscope.c:752 ../if_cscope.c:789 -msgid "E566: Could not create cscope pipes" -msgstr "E566: Nie mogem stworzy potoku do cscope" - -#: ../if_cscope.c:767 -msgid "E622: Could not fork for cscope" -msgstr "E622: Nie mogem utworzy rozwidlenia dla cscope" - -#: ../if_cscope.c:849 -msgid "cs_create_connection setpgid failed" -msgstr "nie powiodo si setpgid cs_create_connection" - -#: ../if_cscope.c:853 ../if_cscope.c:889 -msgid "cs_create_connection exec failed" -msgstr "wykonanie cs_create_connection nie powiodo si" - -#: ../if_cscope.c:863 ../if_cscope.c:902 -msgid "cs_create_connection: fdopen for to_fp failed" -msgstr "cs_create_connection: fdopen dla to_fp nie powiodo si" - -#: ../if_cscope.c:865 ../if_cscope.c:906 -msgid "cs_create_connection: fdopen for fr_fp failed" -msgstr "cs_create_connection: fdopen dla fr_fp nie powiodo si" - -#: ../if_cscope.c:890 -msgid "E623: Could not spawn cscope process" -msgstr "E623: Nie mogem stworzy procesu cscope" - -#: ../if_cscope.c:932 -msgid "E567: no cscope connections" -msgstr "E567: brak poczenia z cscope" - -#: ../if_cscope.c:1009 -#, c-format -msgid "E469: invalid cscopequickfix flag %c for %c" -msgstr "E469: nieprawidowa flaga cscopequickfix %c dla %c" - -#: ../if_cscope.c:1058 -#, c-format -msgid "E259: no matches found for cscope query %s of %s" -msgstr "E259: brak dopasowa dla zapytania cscope %s o %s" - -#: ../if_cscope.c:1142 -msgid "cscope commands:\n" -msgstr "komendy cscope:\n" - -#: ../if_cscope.c:1150 -#, c-format -msgid "%-5s: %s%*s (Usage: %s)" -msgstr "%-5s: %s%*s (Uycie: %s)" - -#: ../if_cscope.c:1155 -msgid "" -"\n" -" c: Find functions calling this function\n" -" d: Find functions called by this function\n" -" e: Find this egrep pattern\n" -" f: Find this file\n" -" g: Find this definition\n" -" i: Find files #including this file\n" -" s: Find this C symbol\n" -" t: Find this text string\n" -msgstr "" -"\n" -" c: znajd funkcje wywoujce t funkcj\n" -" d: znajd funkcje wywoywane przez t funkcj\n" -" e: znajd ten wzorzec egrep\n" -" f: znajd ten plik\n" -" g: znajd t definicj\n" -" i: znajd pliki wczajce (#include) ten plik\n" -" s: znajd ten symbol C\n" -" t: znajd ten acuch znakw\n" - -#: ../if_cscope.c:1226 -msgid "E568: duplicate cscope database not added" -msgstr "E568: nie dodano duplikatu bazy danych cscope" - -#: ../if_cscope.c:1335 -#, c-format -msgid "E261: cscope connection %s not found" -msgstr "E261: nie ma poczenia %s z cscope" - -#: ../if_cscope.c:1364 -#, c-format -msgid "cscope connection %s closed" -msgstr "poczenie %s z cscope zostao zamknite" - -#. should not reach here -#: ../if_cscope.c:1486 -msgid "E570: fatal error in cs_manage_matches" -msgstr "E570: bd krytyczny w cs_manage_matches" - -#: ../if_cscope.c:1693 -#, c-format -msgid "Cscope tag: %s" -msgstr "Znacznik cscope: %s" - -#: ../if_cscope.c:1711 -msgid "" -"\n" -" # line" -msgstr "" -"\n" -" # wiersz" - -#: ../if_cscope.c:1713 -msgid "filename / context / line\n" -msgstr "nazwa pliku / kontekst / wiersz\n" - -#: ../if_cscope.c:1809 -#, c-format -msgid "E609: Cscope error: %s" -msgstr "E609: Bd cscope: %s" - -#: ../if_cscope.c:2053 -msgid "All cscope databases reset" -msgstr "Wszystkie bazy danych cscope przeadowano" - -#: ../if_cscope.c:2123 -msgid "no cscope connections\n" -msgstr "brak pocze z cscope\n" - -#: ../if_cscope.c:2126 -msgid " # pid database name prepend path\n" -msgstr " # pid nazwa bazy danych przedsionek tropu\n" - -#: ../main.c:144 -msgid "Unknown option argument" -msgstr "Nieznany argument opcji" - -#: ../main.c:146 -msgid "Too many edit arguments" -msgstr "Zbyt wiele argumentw" - -#: ../main.c:148 -msgid "Argument missing after" -msgstr "Brak argumentu po" - -#: ../main.c:150 -msgid "Garbage after option argument" -msgstr "miecie po argumencie opcji" - -#: ../main.c:152 -msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments" -msgstr "" -"Zbyt wiele argumentw \"+komenda\", \"-c komenda\" lub \"--cmd komenda\"" - -#: ../main.c:154 -msgid "Invalid argument for" -msgstr "Niewaciwy argument dla" - -#: ../main.c:294 -#, c-format -msgid "%d files to edit\n" -msgstr "%d plikw do edycji\n" - -#: ../main.c:1342 -msgid "Attempt to open script file again: \"" -msgstr "Prba ponownego otworzenia pliku skryptu: \"" - -#: ../main.c:1350 -msgid "Cannot open for reading: \"" -msgstr "Nie mog otworzy do odczytu: \"" - -#: ../main.c:1393 -msgid "Cannot open for script output: \"" -msgstr "Nie mog otworzy dla wyjcia skryptu: \"" - -#: ../main.c:1622 -msgid "Vim: Warning: Output is not to a terminal\n" -msgstr "Vim: OSTRZEENIE: Wyjcie nie jest terminalem\n" - -#: ../main.c:1624 -msgid "Vim: Warning: Input is not from a terminal\n" -msgstr "Vim: OSTRZEENIE: Wejcie nie pochodzi z terminala\n" - -#. just in case.. -#: ../main.c:1891 -msgid "pre-vimrc command line" -msgstr "linia polece pre-vimrc" - -#: ../main.c:1964 -#, c-format -msgid "E282: Cannot read from \"%s\"" -msgstr "E282: Nie mog czyta z \"%s\"" - -#: ../main.c:2149 -msgid "" -"\n" -"More info with: \"vim -h\"\n" -msgstr "" -"\n" -"Dalsze informacje poprzez: \"vim -h\"\n" - -#: ../main.c:2178 -msgid "[file ..] edit specified file(s)" -msgstr "[plik ..] edytuj zadane pliki" - -#: ../main.c:2179 -msgid "- read text from stdin" -msgstr "- czytaj tekst ze stdin" - -#: ../main.c:2180 -msgid "-t tag edit file where tag is defined" -msgstr "-t znacznik edytuj plik, w ktrym dany znacznik jest zdefiniowany" - -#: ../main.c:2181 -msgid "-q [errorfile] edit file with first error" -msgstr "-q [errorfile] edytuj plik, zawierajcy pierwszy bd" - -#: ../main.c:2187 -msgid "" -"\n" -"\n" -"usage:" -msgstr "" -"\n" -"\n" -"uycie:" - -#: ../main.c:2189 -msgid " vim [arguments] " -msgstr " vim [argumenty]" - -#: ../main.c:2193 -msgid "" -"\n" -" or:" -msgstr "" -"\n" -" lub:" - -#: ../main.c:2196 -msgid "" -"\n" -"\n" -"Arguments:\n" -msgstr "" -"\n" -"\n" -"Argumenty:\n" - -#: ../main.c:2197 -msgid "--\t\t\tOnly file names after this" -msgstr "--\t\t\tTylko nazwy plikw po tym" - -#: ../main.c:2199 -msgid "--literal\t\tDon't expand wildcards" -msgstr "--literal\t\tNie rozwijaj znakw specjalnych" - -#: ../main.c:2201 -msgid "-v\t\t\tVi mode (like \"vi\")" -msgstr "-v\t\t\tTryb vi (jak \"vi\")" - -#: ../main.c:2202 -msgid "-e\t\t\tEx mode (like \"ex\")" -msgstr "-e\t\t\tTryb ex (jak \"ex\")" - -#: ../main.c:2203 -msgid "-E\t\t\tImproved Ex mode" -msgstr "-E\t\t\tUsprawniony tryb Ex" - -#: ../main.c:2204 -msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")" -msgstr "-s\t\t\tCichy tryb (ta) (tylko dla \"ex\")" - -#: ../main.c:2205 -msgid "-d\t\t\tDiff mode (like \"vimdiff\")" -msgstr "-d\t\t\tTryb rnic (jak \"vimdiff\")" - -#: ../main.c:2206 -msgid "-y\t\t\tEasy mode (like \"evim\", modeless)" -msgstr "-y\t\t\tTryb atwy (jak \"evim\", bez trybw)" - -#: ../main.c:2207 -msgid "-R\t\t\tReadonly mode (like \"view\")" -msgstr "-R\t\t\tTryb wycznie do odczytu (jak \"view\")" - -#: ../main.c:2208 -msgid "-Z\t\t\tRestricted mode (like \"rvim\")" -msgstr "-Z\t\t\tTryb ograniczenia (jak \"rvim\")" - -#: ../main.c:2209 -msgid "-m\t\t\tModifications (writing files) not allowed" -msgstr "-m\t\t\tModyfikacje (zapisywanie plikw) niedozwolone" - -#: ../main.c:2210 -msgid "-M\t\t\tModifications in text not allowed" -msgstr "-M\t\t\tZakaz modyfikacji tekstu" - -#: ../main.c:2211 -msgid "-b\t\t\tBinary mode" -msgstr "-b\t\t\tTryb binarny" - -#: ../main.c:2212 -msgid "-l\t\t\tLisp mode" -msgstr "-l\t\t\tTryb lisp" - -#: ../main.c:2213 -msgid "-C\t\t\tCompatible with Vi: 'compatible'" -msgstr "-C\t\t\tBd zgodny z Vi: 'compatible'" - -#: ../main.c:2214 -msgid "-N\t\t\tNot fully Vi compatible: 'nocompatible'" -msgstr "-N\t\t\tBd niezupenie zgodny z Vi: 'nocompatible'" - -#: ../main.c:2215 -msgid "-V[N][fname]\t\tBe verbose [level N] [log messages to fname]" -msgstr "-V[N][nazwap]\t\tGadatliwy [poziom N] [zapisuj wiadomoci do nazwap]" - -#: ../main.c:2216 -msgid "-D\t\t\tDebugging mode" -msgstr "-D\t\t\tTryb odpluskwiania" - -#: ../main.c:2217 -msgid "-n\t\t\tNo swap file, use memory only" -msgstr "-n\t\t\tZamiast pliku wymiany, uywaj tylko pamici" - -#: ../main.c:2218 -msgid "-r\t\t\tList swap files and exit" -msgstr "-r\t\t\tWylicz pliki wymiany i zakocz" - -#: ../main.c:2219 -msgid "-r (with file name)\tRecover crashed session" -msgstr "-r (z nazw pliku)\tOdtwrz zaaman sesj" - -#: ../main.c:2220 -msgid "-L\t\t\tSame as -r" -msgstr "-L\t\t\tTosame z -r" - -#: ../main.c:2221 -msgid "-A\t\t\tstart in Arabic mode" -msgstr "-A\t\t\trozpocznij w trybie arabskim" - -#: ../main.c:2222 -msgid "-H\t\t\tStart in Hebrew mode" -msgstr "-H\t\t\trozpocznij w trybie hebrajskim" - -#: ../main.c:2223 -msgid "-F\t\t\tStart in Farsi mode" -msgstr "-F\t\t\trozpocznij w trybie farsi" - -#: ../main.c:2224 -msgid "-T <terminal>\tSet terminal type to <terminal>" -msgstr "-T <terminal>\tUstaw typ terminala na <terminal>" - -#: ../main.c:2225 -msgid "-u <vimrc>\t\tUse <vimrc> instead of any .vimrc" -msgstr "-u <vimrc>\t\tUyj <vimrc> zamiast jakiegokolwiek .vimrc" - -#: ../main.c:2226 -msgid "--noplugin\t\tDon't load plugin scripts" -msgstr "--noplugin\t\tNie aduj skryptw wtyczek" - -#: ../main.c:2227 -msgid "-p[N]\t\tOpen N tab pages (default: one for each file)" -msgstr "-p[N]\t\tOtwrz N kart (domylnie: po jednej dla kadego pliku)" - -#: ../main.c:2228 -msgid "-o[N]\t\tOpen N windows (default: one for each file)" -msgstr "-o[N]\t\tOtwrz N okien (domylnie: po jednym dla kadego pliku)" - -#: ../main.c:2229 -msgid "-O[N]\t\tLike -o but split vertically" -msgstr "-O[N]\t\ttak samo jak -o tylko dziel okno pionowo" - -#: ../main.c:2230 -msgid "+\t\t\tStart at end of file" -msgstr "+\t\t\tZacznij na kocu pliku" - -#: ../main.c:2231 -msgid "+<lnum>\t\tStart at line <lnum>" -msgstr "+<lnum>\t\tZacznij w wierszu <lnum>" - -#: ../main.c:2232 -msgid "--cmd <command>\tExecute <command> before loading any vimrc file" -msgstr "" -"-cmd <command>\t\tWykonaj komend <command> przed zaadowaniem " -"jakiegokolwiek pliku vimrc" - -#: ../main.c:2233 -msgid "-c <command>\t\tExecute <command> after loading the first file" -msgstr "" -"-c <command>\t\tWykonaj komend <command> po zaadowaniu pierwszego pliku" - -#: ../main.c:2235 -msgid "-S <session>\t\tSource file <session> after loading the first file" -msgstr "-S <sesja>\t\tWczytaj plik <sesja> po zaadowaniu pierwszego pliku" - -#: ../main.c:2236 -msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>" -msgstr "-s <scriptin>\tWczytuj komendy trybu normalnego z pliku <scriptin>" - -#: ../main.c:2237 -msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>" -msgstr "" -"-w <scriptout>\tDocz wszystkie wprowadzane komendy do pliku <scriptout>" - -#: ../main.c:2238 -msgid "-W <scriptout>\tWrite all typed commands to file <scriptout>" -msgstr "" -"-W <scriptout>\tZapisuj wszystkie wprowadzane komendy do pliku <scriptout>" - -#: ../main.c:2240 -msgid "--startuptime <file>\tWrite startup timing messages to <file>" -msgstr "" -"--startuptime <plik>\n" -"Zapisz wiadomoci o dugoci startu do <plik>" - -#: ../main.c:2242 -msgid "-i <viminfo>\t\tUse <viminfo> instead of .viminfo" -msgstr "-i <viminfo>\t\tUywaj <viminfo> zamiast .viminfo" - -#: ../main.c:2243 -msgid "-h or --help\tPrint Help (this message) and exit" -msgstr "-h lub --help\twywietl Pomoc (czyli t wiadomo) i zakocz" - -#: ../main.c:2244 -msgid "--version\t\tPrint version information and exit" -msgstr "--version\t\twywietl informacj o wersji i zakocz" - -#: ../mark.c:676 -msgid "No marks set" -msgstr "Brak zakadek" - -#: ../mark.c:678 -#, c-format -msgid "E283: No marks matching \"%s\"" -msgstr "E283: adna zakadka nie pasuje do \"%s\"" - -#. Highlight title -#: ../mark.c:687 -msgid "" -"\n" -"mark line col file/text" -msgstr "" -"\n" -"zak. wiersz kol plik/tekst" - -#. Highlight title -#: ../mark.c:789 -msgid "" -"\n" -" jump line col file/text" -msgstr "" -"\n" -" skok wiersz kol plik/tekst" - -#. Highlight title -#: ../mark.c:831 -msgid "" -"\n" -"change line col text" -msgstr "" -"\n" -"zmie wrsz. kol tekst" - -#: ../mark.c:1238 -msgid "" -"\n" -"# File marks:\n" -msgstr "" -"\n" -"# Zakadki w plikach:\n" - -#. Write the jumplist with -' -#: ../mark.c:1271 -msgid "" -"\n" -"# Jumplist (newest first):\n" -msgstr "" -"\n" -"# Lista odniesie (poczwszy od najnowszych):\n" - -#: ../mark.c:1352 -msgid "" -"\n" -"# History of marks within files (newest to oldest):\n" -msgstr "" -"\n" -"# Historia zakadek w plikach (od najnowszych po najstarsze):\n" - -#: ../mark.c:1431 -msgid "Missing '>'" -msgstr "Brak '>'" - -#: ../memfile.c:426 -msgid "E293: block was not locked" -msgstr "E293: blok nie by zablokowany" - -#: ../memfile.c:799 -msgid "E294: Seek error in swap file read" -msgstr "E294: Bd w trakcie czytania pliku wymiany" - -#: ../memfile.c:803 -msgid "E295: Read error in swap file" -msgstr "E295: Bd odczytu pliku wymiany" - -#: ../memfile.c:849 -msgid "E296: Seek error in swap file write" -msgstr "E296: Bd szukania w pliku wymiany" - -#: ../memfile.c:865 -msgid "E297: Write error in swap file" -msgstr "E297: Bd zapisu w pliku wymiany" - -#: ../memfile.c:1036 -msgid "E300: Swap file already exists (symlink attack?)" -msgstr "E300: Plik wymiany ju istnieje (atak symlink?)" - -#: ../memline.c:318 -msgid "E298: Didn't get block nr 0?" -msgstr "E298: Nie otrzymaem bloku nr 0?" - -#: ../memline.c:361 -msgid "E298: Didn't get block nr 1?" -msgstr "E298: Nie otrzymaem bloku nr 1?" - -#: ../memline.c:377 -msgid "E298: Didn't get block nr 2?" -msgstr "E298: Nie otrzymaem bloku nr 2?" - -#. could not (re)open the swap file, what can we do???? -#: ../memline.c:465 -msgid "E301: Oops, lost the swap file!!!" -msgstr "E301: Ojej, zgubiem plik wymiany!!!" - -#: ../memline.c:477 -msgid "E302: Could not rename swap file" -msgstr "E302: Nie mogem zmieni nazwy pliku wymiany" - -#: ../memline.c:554 -#, c-format -msgid "E303: Unable to open swap file for \"%s\", recovery impossible" -msgstr "" -"E303: Nie mog otworzy pliku wymiany dla \"%s\"; odtworzenie niemoliwe" - -#: ../memline.c:666 -msgid "E304: ml_upd_block0(): Didn't get block 0??" -msgstr "E304: ml_upd_block(): Nie otrzymaem bloku 0??" - -#. no swap files found -#: ../memline.c:830 -#, c-format -msgid "E305: No swap file found for %s" -msgstr "E305: Nie znaleziono pliku wymiany dla %s" - -#: ../memline.c:839 -msgid "Enter number of swap file to use (0 to quit): " -msgstr "Wprowad numer pliku wymiany, ktrego uy (0 by wyj): " - -#: ../memline.c:879 -#, c-format -msgid "E306: Cannot open %s" -msgstr "E306: Nie mog otworzy %s" - -#: ../memline.c:897 -msgid "Unable to read block 0 from " -msgstr "Nie mog odczyta bloku 0 z " - -#: ../memline.c:900 -msgid "" -"\n" -"Maybe no changes were made or Vim did not update the swap file." -msgstr "" -"\n" -"Moe nie wykonano zmian albo Vim nie zaktualizowa pliku wymiany." - -#: ../memline.c:909 -msgid " cannot be used with this version of Vim.\n" -msgstr " nie moe by stosowany z t wersj Vima.\n" - -#: ../memline.c:911 -msgid "Use Vim version 3.0.\n" -msgstr "Uyj Vima w wersji 3.0.\n" - -#: ../memline.c:916 -#, c-format -msgid "E307: %s does not look like a Vim swap file" -msgstr "E307: %s nie wyglda na plik wymiany Vima" - -#: ../memline.c:922 -msgid " cannot be used on this computer.\n" -msgstr " nie moe by stosowany na tym komputerze.\n" - -#: ../memline.c:924 -msgid "The file was created on " -msgstr "Ten plik zosta stworzony na " - -#: ../memline.c:928 -msgid "" -",\n" -"or the file has been damaged." -msgstr "" -",\n" -"lub plik zosta uszkodzony." - -#: ../memline.c:945 -msgid " has been damaged (page size is smaller than minimum value).\n" -msgstr "" -" zosta uszkodzony (wielko strony jest mniejsza ni najmniejsza warto).\n" - -#: ../memline.c:974 -#, c-format -msgid "Using swap file \"%s\"" -msgstr "Uywam pliku wymiany \"%s\"" - -#: ../memline.c:980 -#, c-format -msgid "Original file \"%s\"" -msgstr "Oryginalny plik \"%s\"" - -#: ../memline.c:995 -msgid "E308: Warning: Original file may have been changed" -msgstr "E308: OSTRZEENIE: Oryginalny plik mg by zmieniony" - -#: ../memline.c:1061 -#, c-format -msgid "E309: Unable to read block 1 from %s" -msgstr "E309: Nie mog odczyta bloku 1 z %s" - -#: ../memline.c:1065 -msgid "???MANY LINES MISSING" -msgstr "???BRAKUJE WIELU WIERSZY" - -#: ../memline.c:1076 -msgid "???LINE COUNT WRONG" -msgstr "???LICZNIK WIERSZY NIEZGODNY" - -#: ../memline.c:1082 -msgid "???EMPTY BLOCK" -msgstr "???PUSTY BLOK" - -#: ../memline.c:1103 -msgid "???LINES MISSING" -msgstr "???BRAKUJE WIERSZY" - -#: ../memline.c:1128 -#, c-format -msgid "E310: Block 1 ID wrong (%s not a .swp file?)" -msgstr "E310: Niewaciwe ID bloku 1 (moe %s nie jest plikiem .swp?)" - -#: ../memline.c:1133 -msgid "???BLOCK MISSING" -msgstr "???BRAK BLOKU" - -#: ../memline.c:1147 -msgid "??? from here until ???END lines may be messed up" -msgstr "??? od tego miejsca po ???KONIEC wiersze mog by pomieszane" - -#: ../memline.c:1164 -msgid "??? from here until ???END lines may have been inserted/deleted" -msgstr "??? od tego miejsca po ???KONIEC wiersze mog by woone/skasowane" - -#: ../memline.c:1181 -msgid "???END" -msgstr "???KONIEC" - -#: ../memline.c:1238 -msgid "E311: Recovery Interrupted" -msgstr "E311: Przerwanie odtwarzania" - -#: ../memline.c:1243 -msgid "" -"E312: Errors detected while recovering; look for lines starting with ???" -msgstr "E312: Wykryto bdy podczas odtwarzania; od ktrych wierszy zacz ???" - -#: ../memline.c:1245 -msgid "See \":help E312\" for more information." -msgstr "Zobacz \":help E312\" dla dalszych informacji." - -#: ../memline.c:1249 -msgid "Recovery completed. You should check if everything is OK." -msgstr "" -"Odtwarzanie zakoczono. Powiniene sprawdzi czy wszystko jest w porzdku." - -#: ../memline.c:1251 -msgid "" -"\n" -"(You might want to write out this file under another name\n" -msgstr "" -"\n" -"(Moesz chcie zapisa ten plik pod inn nazw\n" - -#: ../memline.c:1252 -msgid "and run diff with the original file to check for changes)" -msgstr "i wykona diff z oryginalnym plikiem aby sprawdzi zmiany)" - -#: ../memline.c:1254 -msgid "Recovery completed. Buffer contents equals file contents." -msgstr "Odzyskiwanie zakoczone. Zawarto bufora jest rwna zawartoci pliku." - -#: ../memline.c:1255 -msgid "" -"\n" -"You may want to delete the .swp file now.\n" -"\n" -msgstr "" -"\n" -"Moesz teraz chcie usun plik .swp.\n" -"\n" - -#. use msg() to start the scrolling properly -#: ../memline.c:1327 -msgid "Swap files found:" -msgstr "Znalezione pliki wymiany:" - -#: ../memline.c:1446 -msgid " In current directory:\n" -msgstr " W biecym katalogu:\n" - -#: ../memline.c:1448 -msgid " Using specified name:\n" -msgstr " Uywam podanej nazwy:\n" - -#: ../memline.c:1450 -msgid " In directory " -msgstr " W katalogu " - -#: ../memline.c:1465 -msgid " -- none --\n" -msgstr " -- aden --\n" - -#: ../memline.c:1527 -msgid " owned by: " -msgstr " posiadany przez: " - -#: ../memline.c:1529 -msgid " dated: " -msgstr " data: " - -#: ../memline.c:1532 ../memline.c:3231 -msgid " dated: " -msgstr " data: " - -#: ../memline.c:1548 -msgid " [from Vim version 3.0]" -msgstr " [po Vimie wersja 3.0]" - -#: ../memline.c:1550 -msgid " [does not look like a Vim swap file]" -msgstr " [nie wyglda na plik wymiany Vima]" - -#: ../memline.c:1552 -msgid " file name: " -msgstr " nazwa pliku: " - -#: ../memline.c:1558 -msgid "" -"\n" -" modified: " -msgstr "" -"\n" -" zmieniono: " - -#: ../memline.c:1559 -msgid "YES" -msgstr "TAK" - -#: ../memline.c:1559 -msgid "no" -msgstr "nie" - -#: ../memline.c:1562 -msgid "" -"\n" -" user name: " -msgstr "" -"\n" -" uytkownik: " - -#: ../memline.c:1568 -msgid " host name: " -msgstr " nazwa hosta: " - -#: ../memline.c:1570 -msgid "" -"\n" -" host name: " -msgstr "" -"\n" -" nazwa hosta: " - -#: ../memline.c:1575 -msgid "" -"\n" -" process ID: " -msgstr "" -"\n" -" ID procesu: " - -#: ../memline.c:1579 -msgid " (still running)" -msgstr " (dalej dziaa)" - -#: ../memline.c:1586 -msgid "" -"\n" -" [not usable on this computer]" -msgstr "" -"\n" -" [nie do uytku na tym komputerze]" - -#: ../memline.c:1590 -msgid " [cannot be read]" -msgstr " [nieodczytywalny]" - -#: ../memline.c:1593 -msgid " [cannot be opened]" -msgstr " [nieotwieralny]" - -#: ../memline.c:1698 -msgid "E313: Cannot preserve, there is no swap file" -msgstr "E313: Nie mog zabezpieczy, bo brak pliku wymiany" - -#: ../memline.c:1747 -msgid "File preserved" -msgstr "Plik zabezpieczono" - -#: ../memline.c:1749 -msgid "E314: Preserve failed" -msgstr "E314: Nieudane zabezpieczenie" - -#: ../memline.c:1819 -#, c-format -msgid "E315: ml_get: invalid lnum: %<PRId64>" -msgstr "E315: ml_get: niewaciwy lnum: %<PRId64>" - -#: ../memline.c:1851 -#, c-format -msgid "E316: ml_get: cannot find line %<PRId64>" -msgstr "E316: ml_get: nie znaleziono wiersza %<PRId64>" - -#: ../memline.c:2236 -msgid "E317: pointer block id wrong 3" -msgstr "E317: niepoprawne id wskanika bloku 3" - -#: ../memline.c:2311 -msgid "stack_idx should be 0" -msgstr "stack_idx powinien by 0" - -#: ../memline.c:2369 -msgid "E318: Updated too many blocks?" -msgstr "E318: Zaktualizowano zbyt wiele blokw?" - -#: ../memline.c:2511 -msgid "E317: pointer block id wrong 4" -msgstr "E317: niepoprawne id wskanika bloku 4" - -#: ../memline.c:2536 -msgid "deleted block 1?" -msgstr "blok nr 1 skasowany?" - -#: ../memline.c:2707 -#, c-format -msgid "E320: Cannot find line %<PRId64>" -msgstr "E320: Nie mog znale wiersza %<PRId64>" - -#: ../memline.c:2916 -msgid "E317: pointer block id wrong" -msgstr "E317: niepoprawne id bloku odniesienia" - -#: ../memline.c:2930 -msgid "pe_line_count is zero" -msgstr "pe_line_count wynosi zero" - -#: ../memline.c:2955 -#, c-format -msgid "E322: line number out of range: %<PRId64> past the end" -msgstr "E322: numer wiersza poza zakresem: %<PRId64> jest poza kocem" - -#: ../memline.c:2959 -#, c-format -msgid "E323: line count wrong in block %<PRId64>" -msgstr "E323: liczba wierszy niepoprawna w bloku %<PRId64>" - -#: ../memline.c:2999 -msgid "Stack size increases" -msgstr "Wielko stosu wzrasta" - -#: ../memline.c:3038 -msgid "E317: pointer block id wrong 2" -msgstr "E317: niepoprawne id bloku odniesienia 2" - -#: ../memline.c:3070 -#, c-format -msgid "E773: Symlink loop for \"%s\"" -msgstr "E773: Ptla dowiza dla \"%s\"" - -#: ../memline.c:3221 -msgid "E325: ATTENTION" -msgstr "E325: UWAGA" - -#: ../memline.c:3222 -msgid "" -"\n" -"Found a swap file by the name \"" -msgstr "" -"\n" -"Znalazem plik wymiany o nazwie \"" - -#: ../memline.c:3226 -msgid "While opening file \"" -msgstr "Podczas otwierania pliku \"" - -#: ../memline.c:3239 -msgid " NEWER than swap file!\n" -msgstr " NOWSZE od pliku wymiany!\n" - -#: ../memline.c:3244 -#, fuzzy -msgid "" -"\n" -"(1) Another program may be editing the same file. If this is the case,\n" -" be careful not to end up with two different instances of the same\n" -" file when making changes." -msgstr "" -"\n" -"(1) Pewnie inny program obrabia ten sam plik.\n" -" Jeli tak, bd ostrony, aby nie skoczy z dwoma\n" -" rnymi wersjami tego samego pliku po zmianach.\n" - -#: ../memline.c:3245 -msgid " Quit, or continue with caution.\n" -msgstr " Zakocz lub ostronie kontynuuj.\n" - -#: ../memline.c:3246 -msgid "(2) An edit session for this file crashed.\n" -msgstr "(2) Sesja edycji dla pliku zaamaa si.\n" - -#: ../memline.c:3247 -msgid " If this is the case, use \":recover\" or \"vim -r " -msgstr " Jeli tak, to uyj \":recover\" lub \"vim -r " - -#: ../memline.c:3249 -msgid "" -"\"\n" -" to recover the changes (see \":help recovery\").\n" -msgstr "" -"\"\n" -" aby odzyska zmiany (zobacz \":help recovery)\").\n" - -#: ../memline.c:3250 -msgid " If you did this already, delete the swap file \"" -msgstr " Jeli ju to zrobie, usu plik wymiany \"" - -#: ../memline.c:3252 -msgid "" -"\"\n" -" to avoid this message.\n" -msgstr "" -"\"\n" -" aby unikn tej wiadomoci.\n" - -#: ../memline.c:3450 ../memline.c:3452 -msgid "Swap file \"" -msgstr "Plik wymiany \"" - -#: ../memline.c:3451 ../memline.c:3455 -msgid "\" already exists!" -msgstr "\" ju istnieje!" - -#: ../memline.c:3457 -msgid "VIM - ATTENTION" -msgstr "VIM - UWAGA" - -#: ../memline.c:3459 -msgid "Swap file already exists!" -msgstr "Plik wymiany ju istnieje!" - -#: ../memline.c:3464 -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Quit\n" -"&Abort" -msgstr "" -"&Otwrz Read-Only\n" -"&Edytuj pomimo\n" -"O&dtwrz\n" -"&Zakocz\n" -"&Porzu" - -#: ../memline.c:3467 -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Delete it\n" -"&Quit\n" -"&Abort" -msgstr "" -"&Otwrz Read-Only\n" -"&Edytuj pomimo\n" -"O&dtwrz\n" -"&Usu\n" -"&Zakocz\n" -"&Porzu" - -#. -#. * Change the ".swp" extension to find another file that can be used. -#. * First decrement the last char: ".swo", ".swn", etc. -#. * If that still isn't enough decrement the last but one char: ".svz" -#. * Can happen when editing many "No Name" buffers. -#. -#. ".s?a" -#. ".saa": tried enough, give up -#: ../memline.c:3528 -msgid "E326: Too many swap files found" -msgstr "E326: Znaleziono zbyt wiele plikw wymiany" - -#: ../memory.c:227 -#, c-format -msgid "E342: Out of memory! (allocating %<PRIu64> bytes)" -msgstr "E342: Brak pamici! (rezerwacja %<PRIu64> bajtw)" - -#: ../menu.c:62 -msgid "E327: Part of menu-item path is not sub-menu" -msgstr "E327: Cz tropu punktu menu nie okrela podmenu" - -#: ../menu.c:63 -msgid "E328: Menu only exists in another mode" -msgstr "E328: Menu istnieje tylko w innym trybie" - -#: ../menu.c:64 -#, c-format -msgid "E329: No menu \"%s\"" -msgstr "E329: Nie ma menu \"%s\"" - -#. Only a mnemonic or accelerator is not valid. -#: ../menu.c:329 -msgid "E792: Empty menu name" -msgstr "E792: Pusta nazwa menu" - -#: ../menu.c:340 -msgid "E330: Menu path must not lead to a sub-menu" -msgstr "E330: Trop menu nie moe prowadzi do podmenu" - -#: ../menu.c:365 -msgid "E331: Must not add menu items directly to menu bar" -msgstr "E331: Nie wolno dodawa punktw menu wprost do paska menu" - -#: ../menu.c:370 -msgid "E332: Separator cannot be part of a menu path" -msgstr "E332: Separator nie moe by czci tropu menu" - -#. Now we have found the matching menu, and we list the mappings -#. Highlight title -#: ../menu.c:762 -msgid "" -"\n" -"--- Menus ---" -msgstr "" -"\n" -"--- Menu ---" - -#: ../menu.c:1313 -msgid "E333: Menu path must lead to a menu item" -msgstr "E333: Trop menu musi prowadzi do punktu menu" - -#: ../menu.c:1330 -#, c-format -msgid "E334: Menu not found: %s" -msgstr "E334: Nie znaleziono menu: %s" - -#: ../menu.c:1396 -#, c-format -msgid "E335: Menu not defined for %s mode" -msgstr "E335: Menu nie jest zdefiniowane dla trybu %s" - -#: ../menu.c:1426 -msgid "E336: Menu path must lead to a sub-menu" -msgstr "E336: Trop menu musi prowadzi do podmenu" - -#: ../menu.c:1447 -msgid "E337: Menu not found - check menu names" -msgstr "E337: Nie znaleziono menu - sprawd nazwy menu" - -#: ../message.c:423 -#, c-format -msgid "Error detected while processing %s:" -msgstr "Wykryto bd podczas przetwarzania %s:" - -#: ../message.c:445 -#, c-format -msgid "line %4ld:" -msgstr "wiersz %4ld:" - -#: ../message.c:617 -#, c-format -msgid "E354: Invalid register name: '%s'" -msgstr "E354: Niewaciwa nazwa rejestru: '%s'" - -#: ../message.c:986 -msgid "Interrupt: " -msgstr "Przerwanie: " - -#: ../message.c:988 -msgid "Press ENTER or type command to continue" -msgstr "Nacinij ENTER lub wprowad komend aby kontynuowa" - -#: ../message.c:1843 -#, c-format -msgid "%s line %<PRId64>" -msgstr "%s wiersz %<PRId64>" - -#: ../message.c:2392 -msgid "-- More --" -msgstr "-- Wicej --" - -#: ../message.c:2398 -msgid " SPACE/d/j: screen/page/line down, b/u/k: up, q: quit " -msgstr " SPACE/d/j: ekran/strona/wiersz w d, b/u/k: do gry, q: zakocz" - -#: ../message.c:3021 ../message.c:3031 -msgid "Question" -msgstr "Pytanie" - -#: ../message.c:3023 -msgid "" -"&Yes\n" -"&No" -msgstr "" -"&Tak\n" -"&Nie" - -#: ../message.c:3033 -msgid "" -"&Yes\n" -"&No\n" -"&Cancel" -msgstr "" -"&Tak\n" -"&Nie\n" -"&Zakocz" - -#: ../message.c:3045 -msgid "" -"&Yes\n" -"&No\n" -"Save &All\n" -"&Discard All\n" -"&Cancel" -msgstr "" -"&Tak\n" -"&Nie\n" -"Zapisz &wszystkie\n" -"&Odrzu wszystkie\n" -"&Zakocz" - -#: ../message.c:3058 -msgid "E766: Insufficient arguments for printf()" -msgstr "E766: Za mao argumentw dla printf()" - -#: ../message.c:3119 -msgid "E807: Expected Float argument for printf()" -msgstr "E807: Spodziewany argument Zmiennoprzecinkowy w printf()" - -#: ../message.c:3873 -msgid "E767: Too many arguments to printf()" -msgstr "E767: Za duo argumentw dla printf()" - -#: ../misc1.c:2256 -msgid "W10: Warning: Changing a readonly file" -msgstr "W10: OSTRZEENIE: Zmiany w pliku tylko do odczytu" - -#: ../misc1.c:2537 -msgid "Type number and <Enter> or click with mouse (empty cancels): " -msgstr "Wpisz numer i <Enter> lub wybierz mysz (pusta warto anuluje): " - -#: ../misc1.c:2539 -msgid "Type number and <Enter> (empty cancels): " -msgstr "Wpisz numer i <Enter> (puste anuluje): " - -#: ../misc1.c:2585 -msgid "1 more line" -msgstr "1 wiersz wicej" - -#: ../misc1.c:2588 -msgid "1 line less" -msgstr "1 wiersz mniej" - -#: ../misc1.c:2593 -#, c-format -msgid "%<PRId64> more lines" -msgstr "dodano %<PRId64> wierszy" - -#: ../misc1.c:2596 -#, c-format -msgid "%<PRId64> fewer lines" -msgstr "usunito %<PRId64> wierszy" - -#: ../misc1.c:2599 -msgid " (Interrupted)" -msgstr " (Przerwane)" - -#: ../misc1.c:2635 -msgid "Beep!" -msgstr "Biiip!" - -#: ../misc2.c:738 -#, c-format -msgid "Calling shell to execute: \"%s\"" -msgstr "Wywouj powok do wykonania: \"%s\"" - -#: ../normal.c:183 -msgid "E349: No identifier under cursor" -msgstr "E349: Brak identyfikatora pod kursorem" - -#: ../normal.c:1866 -msgid "E774: 'operatorfunc' is empty" -msgstr "E774: 'operatorfunc' jest pusta" - -#: ../normal.c:2637 -msgid "Warning: terminal cannot highlight" -msgstr "OSTRZEENIE: terminal nie wykonuje podwietlania" - -#: ../normal.c:2807 -msgid "E348: No string under cursor" -msgstr "E348: Brak cigu pod kursorem" - -#: ../normal.c:3937 -msgid "E352: Cannot erase folds with current 'foldmethod'" -msgstr "E352: Nie mog skasowa zwinicia z biec 'foldmethod'" - -#: ../normal.c:5897 -msgid "E664: changelist is empty" -msgstr "E664: lista zmian (changelist) jest pusta" - -#: ../normal.c:5899 -msgid "E662: At start of changelist" -msgstr "E662: Na pocztku listy zmian" - -#: ../normal.c:5901 -msgid "E663: At end of changelist" -msgstr "E663: Na kocu listy zmian" - -#: ../normal.c:7053 -msgid "Type :quit<Enter> to exit Nvim" -msgstr "wprowad :quit<Enter> zakoczenie programu" - -#: ../ops.c:248 -#, c-format -msgid "1 line %sed 1 time" -msgstr "1 wiersz %sed 1 raz" - -#: ../ops.c:250 -#, c-format -msgid "1 line %sed %d times" -msgstr "1 wiersz %sed %d razy" - -#: ../ops.c:253 -#, c-format -msgid "%<PRId64> lines %sed 1 time" -msgstr "%<PRId64> wierszy %sed 1 raz" - -#: ../ops.c:256 -#, c-format -msgid "%<PRId64> lines %sed %d times" -msgstr "%<PRId64> wierszy %sed %d razy" - -#: ../ops.c:592 -#, c-format -msgid "%<PRId64> lines to indent... " -msgstr "%<PRId64> wierszy do wcicia... " - -#: ../ops.c:634 -msgid "1 line indented " -msgstr "1 wiersz wcity " - -#: ../ops.c:636 -#, c-format -msgid "%<PRId64> lines indented " -msgstr "%<PRId64> wierszy wcitych " - -#: ../ops.c:938 -msgid "E748: No previously used register" -msgstr "E748: Brak poprzednio uytego rejestru" - -#. must display the prompt -#: ../ops.c:1433 -msgid "cannot yank; delete anyway" -msgstr "nie mog skopiowa, mimo to kasuj" - -#: ../ops.c:1929 -msgid "1 line changed" -msgstr "1 wiersz zmieniono" - -#: ../ops.c:1931 -#, c-format -msgid "%<PRId64> lines changed" -msgstr "%<PRId64> wierszy zmieniono" - -#: ../ops.c:2521 -msgid "block of 1 line yanked" -msgstr "skopiowano blok 1 wiersza" - -#: ../ops.c:2523 -msgid "1 line yanked" -msgstr "1 wiersz skopiowano" - -#: ../ops.c:2525 -#, c-format -msgid "block of %<PRId64> lines yanked" -msgstr "%<PRId64> wierszy skopiowanych" - -#: ../ops.c:2528 -#, c-format -msgid "%<PRId64> lines yanked" -msgstr "%<PRId64> wierszy skopiowanych" - -#: ../ops.c:2710 -#, c-format -msgid "E353: Nothing in register %s" -msgstr "E353: Pusty rejestr %s" - -#. Highlight title -#: ../ops.c:3185 -msgid "" -"\n" -"--- Registers ---" -msgstr "" -"\n" -"--- Rejestry ---" - -#: ../ops.c:4455 -msgid "Illegal register name" -msgstr "Niedozwolona nazwa rejestru" - -#: ../ops.c:4533 -msgid "" -"\n" -"# Registers:\n" -msgstr "" -"\n" -"# Rejestry:\n" - -#: ../ops.c:4575 -#, c-format -msgid "E574: Unknown register type %d" -msgstr "E574: Nieznany typ rejestru %d" - -#: ../ops.c:5089 -#, c-format -msgid "%<PRId64> Cols; " -msgstr "%<PRId64> Kolumn; " - -#: ../ops.c:5097 -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Bytes" -msgstr "" -"Wybrano %s%<PRId64> z %<PRId64> Wierszy; %<PRId64> z %<PRId64> Sw; " -"%<PRId64> z %<PRId64> Bajtw" - -#: ../ops.c:5105 -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Chars; %<PRId64> of %<PRId64> Bytes" -msgstr "" -"Wybrano %s%<PRId64> z %<PRId64> Wierszy; %<PRId64> z %<PRId64> Sw; " -"%<PRId64> z %<PRId64> Znakw; %<PRId64> z %<PRId64> Bajtw" - -#: ../ops.c:5123 -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Byte " -"%<PRId64> of %<PRId64>" -msgstr "" -"Kol %s z %s; Wiersz %<PRId64> z %<PRId64>; Sowo %<PRId64> z %<PRId64>; Bajt " -"%<PRId64> z %<PRId64>" - -#: ../ops.c:5133 -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Char " -"%<PRId64> of %<PRId64>; Byte %<PRId64> of %<PRId64>" -msgstr "" -"Kol %s z %s; Wiersz %<PRId64> z %<PRId64>; Sowo %<PRId64> z %<PRId64>; Znak " -"%<PRId64> z %<PRId64>; Bajt %<PRId64> z %<PRId64>" - -#: ../ops.c:5146 -#, c-format -msgid "(+%<PRId64> for BOM)" -msgstr "(+%<PRId64> dla BOM)" - -#: ../option.c:1238 -msgid "%<%f%h%m%=Page %N" -msgstr "%<%f%h%m%=Strona %N" - -#: ../option.c:1574 -msgid "Thanks for flying Vim" -msgstr "Dziki za lot Vimem" - -#. found a mismatch: skip -#: ../option.c:2698 -msgid "E518: Unknown option" -msgstr "E518: Nieznana opcja" - -#: ../option.c:2709 -msgid "E519: Option not supported" -msgstr "E519: Opcja nie jest wspomagana" - -#: ../option.c:2740 -msgid "E520: Not allowed in a modeline" -msgstr "E520: Niedozwolone w modeline" - -#: ../option.c:2815 -msgid "E846: Key code not set" -msgstr "E846: Kod klucza nie jest ustawiony" - -#: ../option.c:2924 -msgid "E521: Number required after =" -msgstr "E521: Po = wymagany jest numer" - -#: ../option.c:3226 ../option.c:3864 -msgid "E522: Not found in termcap" -msgstr "E522: Nie znaleziono w termcap" - -#: ../option.c:3335 -#, c-format -msgid "E539: Illegal character <%s>" -msgstr "E539: Niedozwolony znak <%s>" - -#: ../option.c:3862 -msgid "E529: Cannot set 'term' to empty string" -msgstr "E529: Nie mog ustawi 'term' na pusty cig" - -#: ../option.c:3885 -msgid "E589: 'backupext' and 'patchmode' are equal" -msgstr "E589: 'backupext' i 'patchmode' s tosame" - -#: ../option.c:3964 -msgid "E834: Conflicts with value of 'listchars'" -msgstr "E834: Konflikty wartoci 'listchars'" - -#: ../option.c:3966 -msgid "E835: Conflicts with value of 'fillchars'" -msgstr "E835: Konflikty wartoci 'fillchars'" - -#: ../option.c:4163 -msgid "E524: Missing colon" -msgstr "E524: Brak dwukropka" - -#: ../option.c:4165 -msgid "E525: Zero length string" -msgstr "E525: Cig o zerowej dugoci" - -#: ../option.c:4220 -#, c-format -msgid "E526: Missing number after <%s>" -msgstr "E526: Brak numeru po <%s>" - -#: ../option.c:4232 -msgid "E527: Missing comma" -msgstr "E527: Brak przecinka" - -#: ../option.c:4239 -msgid "E528: Must specify a ' value" -msgstr "E528: Musi okrela warto '" - -#: ../option.c:4271 -msgid "E595: contains unprintable or wide character" -msgstr "E595: zawiera niewywietlalny lub szeroki znak" - -#: ../option.c:4469 -#, c-format -msgid "E535: Illegal character after <%c>" -msgstr "E535: Niedozwolony znak po <%c>" - -#: ../option.c:4534 -msgid "E536: comma required" -msgstr "E536: wymagany przecinek" - -#: ../option.c:4543 -#, c-format -msgid "E537: 'commentstring' must be empty or contain %s" -msgstr "E537: 'commentstring' musi by pusty lub zawiera %s" - -#: ../option.c:4928 -msgid "E540: Unclosed expression sequence" -msgstr "E540: Niedomknity cig wyrae" - -#: ../option.c:4932 -msgid "E541: too many items" -msgstr "E541: zbyt wiele elementw" - -#: ../option.c:4934 -msgid "E542: unbalanced groups" -msgstr "E542: niezbalansowane grupy" - -#: ../option.c:5148 -msgid "E590: A preview window already exists" -msgstr "E590: okno podgldu ju istnieje" - -#: ../option.c:5311 -msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'" -msgstr "W17: Arabski wymaga UTF-8, zrb ':set encoding=utf-8'" - -#: ../option.c:5623 -#, c-format -msgid "E593: Need at least %d lines" -msgstr "E593: Potrzebuj przynajmniej %d wierszy" - -#: ../option.c:5631 -#, c-format -msgid "E594: Need at least %d columns" -msgstr "E594: Potrzebuj przynajmniej %d kolumn" - -#: ../option.c:6011 -#, c-format -msgid "E355: Unknown option: %s" -msgstr "E355: Nieznana opcja: %s" - -#. There's another character after zeros or the string -#. * is empty. In both cases, we are trying to set a -#. * num option using a string. -#: ../option.c:6037 -#, c-format -msgid "E521: Number required: &%s = '%s'" -msgstr "E521: Wymagana Liczba: &%s = '%s'" - -#: ../option.c:6149 -msgid "" -"\n" -"--- Terminal codes ---" -msgstr "" -"\n" -"--- Kody terminala ---" - -#: ../option.c:6151 -msgid "" -"\n" -"--- Global option values ---" -msgstr "" -"\n" -"--- Globalne wartoci opcji ---" - -#: ../option.c:6153 -msgid "" -"\n" -"--- Local option values ---" -msgstr "" -"\n" -"--- Lokalne wartoci opcji ---" - -#: ../option.c:6155 -msgid "" -"\n" -"--- Options ---" -msgstr "" -"\n" -"--- Opcje ---" - -#: ../option.c:6816 -msgid "E356: get_varp ERROR" -msgstr "E356: BD get_varp" - -#: ../option.c:7696 -#, c-format -msgid "E357: 'langmap': Matching character missing for %s" -msgstr "E357: 'langmap': Brak pasujcego znaku dla %s" - -#: ../option.c:7715 -#, c-format -msgid "E358: 'langmap': Extra characters after semicolon: %s" -msgstr "E358: 'langmap': Dodatkowe znaki po redniku: %s" - -#: ../os/shell.c:194 -msgid "" -"\n" -"Cannot execute shell " -msgstr "" -"\n" -"Nie mog wykona powoki " - -#: ../os/shell.c:439 -msgid "" -"\n" -"shell returned " -msgstr "" -"\n" -"powoka zwrcia " - -#: ../os_unix.c:465 ../os_unix.c:471 -msgid "" -"\n" -"Could not get security context for " -msgstr "" -"\n" -"Nie mog uzyska kontekstu bezpieczestwa dla" - -#: ../os_unix.c:479 -msgid "" -"\n" -"Could not set security context for " -msgstr "" -"\n" -"Nie mona uzyska kontekstu bezpieczestwa dla" - -#: ../os_unix.c:1558 ../os_unix.c:1647 -#, c-format -msgid "dlerror = \"%s\"" -msgstr "dlerror = \"%s\"" - -#: ../path.c:1449 -#, c-format -msgid "E447: Can't find file \"%s\" in path" -msgstr "E447: Nie mog znale pliku \"%s\" w tropie" - -#: ../quickfix.c:359 -#, c-format -msgid "E372: Too many %%%c in format string" -msgstr "E372: Zbyt wiele %%%c w cigu formatujcym" - -#: ../quickfix.c:371 -#, c-format -msgid "E373: Unexpected %%%c in format string" -msgstr "E373: Nieoczekiwane %%%c w cigu formatujcym" - -#: ../quickfix.c:420 -msgid "E374: Missing ] in format string" -msgstr "E374: Brak ] w cigu formatujcym" - -#: ../quickfix.c:431 -#, c-format -msgid "E375: Unsupported %%%c in format string" -msgstr "E375: Niewspomagane %%%c w cigu formatujcym" - -#: ../quickfix.c:448 -#, c-format -msgid "E376: Invalid %%%c in format string prefix" -msgstr "E376: Niepoprawne %%%c w prefiksie cigu formatujcego" - -#: ../quickfix.c:454 -#, c-format -msgid "E377: Invalid %%%c in format string" -msgstr "E377: Niepoprawne %%%c w cigu formatujcym" - -#. nothing found -#: ../quickfix.c:477 -msgid "E378: 'errorformat' contains no pattern" -msgstr "E378: 'errorformat' nie zawiera wzorca" - -#: ../quickfix.c:695 -msgid "E379: Missing or empty directory name" -msgstr "E379: Pusta nazwa katalogu lub jej brak" - -#: ../quickfix.c:1305 -msgid "E553: No more items" -msgstr "E553: Nie ma wicej elementw" - -#: ../quickfix.c:1674 -#, c-format -msgid "(%d of %d)%s%s: " -msgstr "(%d z %d)%s%s: " - -#: ../quickfix.c:1676 -msgid " (line deleted)" -msgstr " (wiersz skasowany)" - -#: ../quickfix.c:1863 -msgid "E380: At bottom of quickfix stack" -msgstr "E380: Na dole stosu quickfix" - -#: ../quickfix.c:1869 -msgid "E381: At top of quickfix stack" -msgstr "E381: Na grze stosu quickfix" - -#: ../quickfix.c:1880 -#, c-format -msgid "error list %d of %d; %d errors" -msgstr "lista bdw %d z %d; %d bdw" - -#: ../quickfix.c:2427 -msgid "E382: Cannot write, 'buftype' option is set" -msgstr "E382: Nie mog zapisa, opcja 'buftype' jest ustawiona" - -#: ../quickfix.c:2812 -msgid "E683: File name missing or invalid pattern" -msgstr "E683: Brak nazwy pliku lub niewaciwa cieka" - -#: ../quickfix.c:2911 -#, c-format -msgid "Cannot open file \"%s\"" -msgstr "Nie mog otworzy pliku \"%s\"" - -#: ../quickfix.c:3429 -msgid "E681: Buffer is not loaded" -msgstr "E681: Bufor nie jest zaadowany" - -#: ../quickfix.c:3487 -msgid "E777: String or List expected" -msgstr "E777: Oczekiwaem na acuch lub list" - -#: ../regexp.c:359 -#, c-format -msgid "E369: invalid item in %s%%[]" -msgstr "E369: Niewaciwy element w %s%%[]" - -#: ../regexp.c:374 -#, c-format -msgid "E769: Missing ] after %s[" -msgstr "E769: Brak ] po %s[" - -#: ../regexp.c:375 -#, c-format -msgid "E53: Unmatched %s%%(" -msgstr "E53: Niesparowany %s%%(" - -#: ../regexp.c:376 -#, c-format -msgid "E54: Unmatched %s(" -msgstr "E54: Niesparowany %s(" - -#: ../regexp.c:377 -#, c-format -msgid "E55: Unmatched %s)" -msgstr "E55: Niesparowany %s)" - -#: ../regexp.c:378 -msgid "E66: \\z( not allowed here" -msgstr "E66: \\z( jest niedozwolone w tym miejscu" - -#: ../regexp.c:379 -msgid "E67: \\z1 et al. not allowed here" -msgstr "E67: \\z1 i podobne s niedozwolone w tym miejscu" - -#: ../regexp.c:380 -#, c-format -msgid "E69: Missing ] after %s%%[" -msgstr "E69: Brak ] po %s%%[" - -#: ../regexp.c:381 -#, c-format -msgid "E70: Empty %s%%[]" -msgstr "E70: Pusty %s%%[]" - -#: ../regexp.c:1209 ../regexp.c:1224 -msgid "E339: Pattern too long" -msgstr "E339: Zbyt dugi wzorzec" - -#: ../regexp.c:1371 -msgid "E50: Too many \\z(" -msgstr "E50: Zbyt wiele \\z(" - -#: ../regexp.c:1378 -#, c-format -msgid "E51: Too many %s(" -msgstr "E51: Zbyt wiele %s(" - -#: ../regexp.c:1427 -msgid "E52: Unmatched \\z(" -msgstr "E52: Niesparowany \\z(" - -#: ../regexp.c:1637 -#, c-format -msgid "E59: invalid character after %s@" -msgstr "E59: niedozwolony znak po %s@" - -#: ../regexp.c:1672 -#, c-format -msgid "E60: Too many complex %s{...}s" -msgstr "E60: Zbyt wiele zoonych %s{...}" - -#: ../regexp.c:1687 -#, c-format -msgid "E61: Nested %s*" -msgstr "E61: Zagniedone %s*" - -#: ../regexp.c:1690 -#, c-format -msgid "E62: Nested %s%c" -msgstr "E62: Zagniedone %s%c" - -#: ../regexp.c:1800 -msgid "E63: invalid use of \\_" -msgstr "E63: Niedozwolone uycie \\_" - -#: ../regexp.c:1850 -#, c-format -msgid "E64: %s%c follows nothing" -msgstr "E64: %s%c po niczym" - -#: ../regexp.c:1902 -msgid "E65: Illegal back reference" -msgstr "E65: Niewaciwe odwoanie wsteczne" - -#: ../regexp.c:1943 -msgid "E68: Invalid character after \\z" -msgstr "E68: niedopuszczalny znak po \\z" - -#: ../regexp.c:2049 ../regexp_nfa.c:1296 -#, c-format -msgid "E678: Invalid character after %s%%[dxouU]" -msgstr "E678: Niedozwolony znak po %s%%[dxouU]" - -#: ../regexp.c:2107 -#, c-format -msgid "E71: Invalid character after %s%%" -msgstr "E71: Niedozwolony znak po %s%%" - -#: ../regexp.c:3017 -#, c-format -msgid "E554: Syntax error in %s{...}" -msgstr "E554: Bd skadni w %s{...}" - -#: ../regexp.c:3805 -msgid "External submatches:\n" -msgstr "Zewntrzne poddopasowania:\n" - -#: ../regexp.c:7022 -msgid "" -"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be " -"used " -msgstr "" -"E:864: \\%#= moe by tylko przed 0, 1 lub 2. Zostanie uyty silnik " -"automatyczny" - -#: ../regexp_nfa.c:239 -msgid "E865: (NFA) Regexp end encountered prematurely" -msgstr "E865: (NFA) przedwczesny koniec wyraenia regularnego" - -#: ../regexp_nfa.c:240 -#, c-format -msgid "E866: (NFA regexp) Misplaced %c" -msgstr "E866: (wyraenie regularne NFA) Niepoprawnie umieszczone %c" - -#: ../regexp_nfa.c:242 -#, c-format -msgid "E877: (NFA regexp) Invalid character class: %<PRId64>" -msgstr "" - -#: ../regexp_nfa.c:1261 -#, c-format -msgid "E867: (NFA) Unknown operator '\\z%c'" -msgstr "E867: (NFA) Nieznany operator '\\z%c'" - -#: ../regexp_nfa.c:1387 -#, c-format -msgid "E867: (NFA) Unknown operator '\\%%%c'" -msgstr "E867: (NFA) Nieznany operator '\\%%%c'" - -#: ../regexp_nfa.c:1802 -#, c-format -msgid "E869: (NFA) Unknown operator '\\@%c'" -msgstr "E869: (NFA) Nieznany operator '\\@%c'" - -#: ../regexp_nfa.c:1831 -msgid "E870: (NFA regexp) Error reading repetition limits" -msgstr "" -"E870: (wyraenie regularne NFA) Bd przy odczytywaniu limitw powtrze" - -#. Can't have a multi follow a multi. -#: ../regexp_nfa.c:1895 -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" -msgstr "" -"E871: (wyraenie regularne NFA) wielokrotne nie moe by po wielokrotnym!" - -#. Too many `(' -#: ../regexp_nfa.c:2037 -msgid "E872: (NFA regexp) Too many '('" -msgstr "E872: (wyraenie regularne NFA) Zbyt duo '('" - -#: ../regexp_nfa.c:2042 -msgid "E879: (NFA regexp) Too many \\z(" -msgstr "E879: (wyraenie regularne NFA) Za duo \\z(" - -#: ../regexp_nfa.c:2066 -msgid "E873: (NFA regexp) proper termination error" -msgstr "E873: (wyraenie regularne NFA) bd poprawnego zakoczenia" - -#: ../regexp_nfa.c:2599 -msgid "E874: (NFA) Could not pop the stack !" -msgstr "E874: (NFA) Nie mona zdj elementu ze stosu!" - -#: ../regexp_nfa.c:3298 -msgid "" -"E875: (NFA regexp) (While converting from postfix to NFA), too many states " -"left on stack" -msgstr "" -"E875: (wyraenie regularne NFA) (w trakcie konwersji postfix do NFA), za " -"wiele stanw na stosie" - -#: ../regexp_nfa.c:3302 -msgid "E876: (NFA regexp) Not enough space to store the whole NFA " -msgstr "E876: (wyraenie regularne NFA) Nie ma miejsca na cae NFA " - -#: ../regexp_nfa.c:4571 ../regexp_nfa.c:4869 -msgid "" -"Could not open temporary log file for writing, displaying on stderr ... " -msgstr "" -"Nie mona otworzy do zapisu tymczasowego pliku, pokazuj na stderr... " - -#: ../regexp_nfa.c:4840 -#, c-format -msgid "(NFA) COULD NOT OPEN %s !" -msgstr "(NFA) NIE MONA OTWORZY %s !" - -#: ../regexp_nfa.c:6049 -msgid "Could not open temporary log file for writing " -msgstr "Nie mona otworzy do zapisu tymczasowego pliku logowania" - -#: ../screen.c:7435 -msgid " VREPLACE" -msgstr " V-ZAMIANA" - -#: ../screen.c:7437 -msgid " REPLACE" -msgstr " ZAMIANA" - -#: ../screen.c:7440 -msgid " REVERSE" -msgstr " NEGATYW" - -#: ../screen.c:7441 -msgid " INSERT" -msgstr " WPROWADZANIE" - -#: ../screen.c:7443 -msgid " (insert)" -msgstr " (wprowadzanie)" - -#: ../screen.c:7445 -msgid " (replace)" -msgstr " (zamiana)" - -#: ../screen.c:7447 -msgid " (vreplace)" -msgstr " (v-zamiana)" - -#: ../screen.c:7449 -msgid " Hebrew" -msgstr " Hebrajski" - -#: ../screen.c:7454 -msgid " Arabic" -msgstr " Arabski" - -#: ../screen.c:7456 -msgid " (lang)" -msgstr " (jzyk)" - -#: ../screen.c:7459 -msgid " (paste)" -msgstr " (wklejanie)" - -#: ../screen.c:7469 -msgid " VISUAL" -msgstr " WIZUALNY" - -#: ../screen.c:7470 -msgid " VISUAL LINE" -msgstr " WIZUALNY LINIOWY" - -#: ../screen.c:7471 -msgid " VISUAL BLOCK" -msgstr " WIZUALNY BLOKOWY" - -#: ../screen.c:7472 -msgid " SELECT" -msgstr " ZAZNACZANIE" - -#: ../screen.c:7473 -msgid " SELECT LINE" -msgstr " ZAZNACZANIE LINIOWE" - -#: ../screen.c:7474 -msgid " SELECT BLOCK" -msgstr " ZAZNACZANIE BLOKOWE" - -#: ../screen.c:7486 ../screen.c:7541 -msgid "recording" -msgstr "zapis" - -#: ../search.c:487 -#, c-format -msgid "E383: Invalid search string: %s" -msgstr "E383: Niewaciwy cig do szukania: %s" - -#: ../search.c:832 -#, c-format -msgid "E384: search hit TOP without match for: %s" -msgstr "E384: szukanie dobio GRY bez znalezienia: %s" - -#: ../search.c:835 -#, c-format -msgid "E385: search hit BOTTOM without match for: %s" -msgstr "E385: szukanie dobio KOCA bez znalezienia : %s" - -#: ../search.c:1200 -msgid "E386: Expected '?' or '/' after ';'" -msgstr "E386: Oczekuj '?' lub '/' po ';'" - -#: ../search.c:4085 -msgid " (includes previously listed match)" -msgstr " (zawiera poprzednio wymienione dopasowanie)" - -#. cursor at status line -#: ../search.c:4104 -msgid "--- Included files " -msgstr "--- Zawarte pliki " - -#: ../search.c:4106 -msgid "not found " -msgstr "nie znaleziono" - -#: ../search.c:4107 -msgid "in path ---\n" -msgstr "w tropie ---\n" - -#: ../search.c:4168 -msgid " (Already listed)" -msgstr " (Ju wymienione)" - -#: ../search.c:4170 -msgid " NOT FOUND" -msgstr " NIE ZNALEZIONO" - -#: ../search.c:4211 -#, c-format -msgid "Scanning included file: %s" -msgstr "Przegld wczonego pliku: %s" - -#: ../search.c:4216 -#, c-format -msgid "Searching included file %s" -msgstr "Przeszukiwanie wczonego pliku %s" - -#: ../search.c:4405 -msgid "E387: Match is on current line" -msgstr "E387: Wzorzec pasuje w biecym wierszu" - -#: ../search.c:4517 -msgid "All included files were found" -msgstr "Wszelkie wczane pliki odnaleziono" - -#: ../search.c:4519 -msgid "No included files" -msgstr "Brak wczanych plikw" - -#: ../search.c:4527 -msgid "E388: Couldn't find definition" -msgstr "E388: Nie znalazem definicji" - -#: ../search.c:4529 -msgid "E389: Couldn't find pattern" -msgstr "E389: Nie znalazem wzorca" - -#: ../search.c:4668 -msgid "Substitute " -msgstr "Podstawienie " - -#: ../search.c:4681 -#, c-format -msgid "" -"\n" -"# Last %sSearch Pattern:\n" -"~" -msgstr "" -"\n" -"# Ostatni %sWyszukiwany wzorzec:\n" -"~" - -#: ../spell.c:951 -msgid "E759: Format error in spell file" -msgstr "E759: Nieprawidowy format pliku sprawdzania pisowni" - -#: ../spell.c:952 -msgid "E758: Truncated spell file" -msgstr "E758: Obcity plik sprawdzania pisowni" - -#: ../spell.c:953 -#, c-format -msgid "Trailing text in %s line %d: %s" -msgstr "Zbdny tekst w %s wiersz %d: %s" - -#: ../spell.c:954 -#, c-format -msgid "Affix name too long in %s line %d: %s" -msgstr "Za duga nazwa afiksu w %s wiersz %d: %s" - -#: ../spell.c:955 -msgid "E761: Format error in affix file FOL, LOW or UPP" -msgstr "E761: Bd formatu w pliku afiksw FOL, LOW lub UPP" - -#: ../spell.c:957 -msgid "E762: Character in FOL, LOW or UPP is out of range" -msgstr "E762: Znak w FOL, LOW lub UPP jest poza zasigiem" - -#: ../spell.c:958 -msgid "Compressing word tree..." -msgstr "Kompresja drzewa sw..." - -#: ../spell.c:1951 -msgid "E756: Spell checking is not enabled" -msgstr "E756: Sprawdzanie pisowni nie jest wczone" - -#: ../spell.c:2249 -#, c-format -msgid "Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\"" -msgstr "" -"Ostrzeenie: Nie mog znale listy sw \"%s.%s.spl\" lub \"%s.ascii.spl\"" - -#: ../spell.c:2473 -#, c-format -msgid "Reading spell file \"%s\"" -msgstr "Odczytuj plik sprawdzania pisowni \"%s\"" - -#: ../spell.c:2496 -msgid "E757: This does not look like a spell file" -msgstr "E757: To nie wyglda na plik sprawdzania pisowni" - -#: ../spell.c:2501 -msgid "E771: Old spell file, needs to be updated" -msgstr "E771: Stary plik sprawdzania pisowni, wymagane uaktualnienie" - -#: ../spell.c:2504 -msgid "E772: Spell file is for newer version of Vim" -msgstr "E772: Plik sprawdzania pisowni dla nowszej wersji Vima" - -#: ../spell.c:2602 -msgid "E770: Unsupported section in spell file" -msgstr "E770: Niewspierana sekcja w pliku sprawdzania pisowni" - -#: ../spell.c:3762 -#, c-format -msgid "Warning: region %s not supported" -msgstr "Ostrzeenie: region %s nie jest wspierany" - -#: ../spell.c:4550 -#, c-format -msgid "Reading affix file %s ..." -msgstr "Czytam plik afiksw %s ..." - -#: ../spell.c:4589 ../spell.c:5635 ../spell.c:6140 -#, c-format -msgid "Conversion failure for word in %s line %d: %s" -msgstr "Konwersja nie powioda si dla wyrazu w %s wierszu %d: %s" - -#: ../spell.c:4630 ../spell.c:6170 -#, c-format -msgid "Conversion in %s not supported: from %s to %s" -msgstr "Konwersja w %s nie jest wspierana: od %s do %s" - -#: ../spell.c:4642 -#, c-format -msgid "Invalid value for FLAG in %s line %d: %s" -msgstr "Nieprawidowa warto FLAG w %s wierz %d: %s" - -#: ../spell.c:4655 -#, c-format -msgid "FLAG after using flags in %s line %d: %s" -msgstr "FLAG po uyciu flag w %s wiersz %d: %s" - -#: ../spell.c:4723 -#, c-format -msgid "" -"Defining COMPOUNDFORBIDFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" -"Definiowanie COMPOUNDFORBIDFLAG po PFX moe skutkowa zym wynikiem w %s " -"wiersz %d" - -#: ../spell.c:4731 -#, c-format -msgid "" -"Defining COMPOUNDPERMITFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" -"Definiowanie COMPOUNDPERMITFLAG po PFX moe skutkowa zym wynikiem w %s " -"wiersz %d" - -#: ../spell.c:4747 -#, c-format -msgid "Wrong COMPOUNDRULES value in %s line %d: %s" -msgstr "Za warto COMPOUNDRULES w %s wiersz %d: %s" - -#: ../spell.c:4771 -#, c-format -msgid "Wrong COMPOUNDWORDMAX value in %s line %d: %s" -msgstr "Za warto COMPOUNDWORDMAX w %s wiersz %d: %s" - -#: ../spell.c:4777 -#, c-format -msgid "Wrong COMPOUNDMIN value in %s line %d: %s" -msgstr "Za warto COMPOUNDMIM w %s wiersz %d: %s" - -#: ../spell.c:4783 -#, c-format -msgid "Wrong COMPOUNDSYLMAX value in %s line %d: %s" -msgstr "Za warto COMPOUNDSYLMAX w %s wiersz %d: %s" - -#: ../spell.c:4795 -#, c-format -msgid "Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s" -msgstr "Za warto CHECKCOMPOUNDPATTERN w %s wiersz %d: %s" - -#: ../spell.c:4847 -#, c-format -msgid "Different combining flag in continued affix block in %s line %d: %s" -msgstr "Rne flagi zoe w kontynuowanym bloku afiksu w %s wiersz %d: %s" - -#: ../spell.c:4850 -#, c-format -msgid "Duplicate affix in %s line %d: %s" -msgstr "Powtrzony afiks w %s wiersz %d: %s" - -#: ../spell.c:4871 -#, c-format -msgid "" -"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s " -"line %d: %s" -msgstr "" -"Afiks uyty take dla BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST w " -"%s wiersz %d: %s" - -#: ../spell.c:4893 -#, c-format -msgid "Expected Y or N in %s line %d: %s" -msgstr "Oczekiwano Y lub N w %s wierszu %d: %s" - -#: ../spell.c:4968 -#, c-format -msgid "Broken condition in %s line %d: %s" -msgstr "Bdny warunek w %s wiersz %d: %s" - -#: ../spell.c:5091 -#, c-format -msgid "Expected REP(SAL) count in %s line %d" -msgstr "Oczekiwano iloci REP(SAL) w %s wierszu %d" - -#: ../spell.c:5120 -#, c-format -msgid "Expected MAP count in %s line %d" -msgstr "Oczekiwano iloci MAP w %s wierszu %d" - -#: ../spell.c:5132 -#, c-format -msgid "Duplicate character in MAP in %s line %d" -msgstr "Powtrzony znak w MAP w %s wierszu %d" - -#: ../spell.c:5176 -#, c-format -msgid "Unrecognized or duplicate item in %s line %d: %s" -msgstr "Nieznany lub powtrzony element w %s wierszu %d: %s" - -#: ../spell.c:5197 -#, c-format -msgid "Missing FOL/LOW/UPP line in %s" -msgstr "Brak wiersza FOL/LOW/UPP w %s" - -#: ../spell.c:5220 -msgid "COMPOUNDSYLMAX used without SYLLABLE" -msgstr "COMPOUNDSYLMAX uyty bez SYLLABLE" - -#: ../spell.c:5236 -msgid "Too many postponed prefixes" -msgstr "Zbyt wiele opnionych prefiksw" - -#: ../spell.c:5238 -msgid "Too many compound flags" -msgstr "Zbyt wiele flag zoe" - -#: ../spell.c:5240 -msgid "Too many postponed prefixes and/or compound flags" -msgstr "Zbyt wiele opnionych prefiksw i/lub flag zoe" - -#: ../spell.c:5250 -#, c-format -msgid "Missing SOFO%s line in %s" -msgstr "Brak wiersza SOFO%s wiersz w %s" - -#: ../spell.c:5253 -#, c-format -msgid "Both SAL and SOFO lines in %s" -msgstr "Wiersze SAL i SOFO w %s" - -#: ../spell.c:5331 -#, c-format -msgid "Flag is not a number in %s line %d: %s" -msgstr "Flaga nie jest liczb w %s wiersz %d: %s" - -#: ../spell.c:5334 -#, c-format -msgid "Illegal flag in %s line %d: %s" -msgstr "Nieprawidowa flaga w %s wiersz %d: %s" - -#: ../spell.c:5493 ../spell.c:5501 -#, c-format -msgid "%s value differs from what is used in another .aff file" -msgstr "Warto %s rni si od tej uytej w innym pliku .aff" - -#: ../spell.c:5602 -#, c-format -msgid "Reading dictionary file %s ..." -msgstr "Czytam plik sownika %s ..." - -#: ../spell.c:5611 -#, c-format -msgid "E760: No word count in %s" -msgstr "E760: Brak iloci sw w %s" - -#: ../spell.c:5669 -#, c-format -msgid "line %6d, word %6d - %s" -msgstr "wiersz %6d, sowo %6d - %s" - -# c-format -#: ../spell.c:5691 -#, c-format -msgid "Duplicate word in %s line %d: %s" -msgstr "Powtrzony wyraz w %s wierszu %d: %s" - -# c-format -#: ../spell.c:5694 -#, c-format -msgid "First duplicate word in %s line %d: %s" -msgstr "Pierwszy powtrzony wyraz w %s wiersz %d: %s" - -# c-format -#: ../spell.c:5746 -#, c-format -msgid "%d duplicate word(s) in %s" -msgstr "%d powtrzony(ch) wyraz(w) w %s" - -#: ../spell.c:5748 -#, c-format -msgid "Ignored %d word(s) with non-ASCII characters in %s" -msgstr "Zignorowaem %d sw ze znakami nie ASCII w %s" - -#: ../spell.c:6115 -#, c-format -msgid "Reading word file %s ..." -msgstr "Odczytuj plik wyrazw %s ..." - -#: ../spell.c:6155 -#, c-format -msgid "Duplicate /encoding= line ignored in %s line %d: %s" -msgstr "Zignorowano powtrzony wiersz /encoding= w %s wierszu %d: %s" - -#: ../spell.c:6159 -#, c-format -msgid "/encoding= line after word ignored in %s line %d: %s" -msgstr "Zignorowano wiersz /encoding= po wyrazie w %s wierszu %d: %s" - -#: ../spell.c:6180 -#, c-format -msgid "Duplicate /regions= line ignored in %s line %d: %s" -msgstr "Powtrzony wiersz /regions= zignorowano w %s wierszu %d: %s" - -#: ../spell.c:6185 -#, c-format -msgid "Too many regions in %s line %d: %s" -msgstr "Za duo regionw w %s wiersz %d: %s" - -#: ../spell.c:6198 -#, c-format -msgid "/ line ignored in %s line %d: %s" -msgstr "wiersz / zignorowano w %s wierszu %d: %s" - -#: ../spell.c:6224 -#, c-format -msgid "Invalid region nr in %s line %d: %s" -msgstr "Nieprawidowy numer regionu w %s wierszu %d: %s" - -#: ../spell.c:6230 -#, c-format -msgid "Unrecognized flags in %s line %d: %s" -msgstr "Nieznane flagi w %s wiersz %d: %s" - -#: ../spell.c:6257 -#, c-format -msgid "Ignored %d words with non-ASCII characters" -msgstr "Zignorowaem %d sw ze znakami nie ASCII" - -#: ../spell.c:6656 -#, c-format -msgid "Compressed %d of %d nodes; %d (%d%%) remaining" -msgstr "Skompresowano %d z %d wzw; pozostaje %d (%d%%)" - -#: ../spell.c:7340 -msgid "Reading back spell file..." -msgstr "Odczytuj plik sprawdzania pisowni..." - -#. Go through the trie of good words, soundfold each word and add it to -#. the soundfold trie. -#: ../spell.c:7357 -msgid "Performing soundfolding..." -msgstr "Wykonuj kompresj dwikow..." - -#: ../spell.c:7368 -#, c-format -msgid "Number of words after soundfolding: %<PRId64>" -msgstr "Liczba sw po kompresji dwikowej: %<PRId64>" - -#: ../spell.c:7476 -#, c-format -msgid "Total number of words: %d" -msgstr "Cakowita liczba sw: %d" - -#: ../spell.c:7655 -#, c-format -msgid "Writing suggestion file %s ..." -msgstr "Zapisuj plik sugestii %s ..." - -#: ../spell.c:7707 ../spell.c:7927 -#, c-format -msgid "Estimated runtime memory use: %d bytes" -msgstr "Oczekiwane zuycie pamici: %d bajtw" - -#: ../spell.c:7820 -msgid "E751: Output file name must not have region name" -msgstr "E751: Nazwa pliku wynikowego nie moe by nazw regionu" - -#: ../spell.c:7822 -msgid "E754: Only up to 8 regions supported" -msgstr "E754: Wspieram tylko 8 regionw" - -#: ../spell.c:7846 -#, c-format -msgid "E755: Invalid region in %s" -msgstr "E755: Nieprawidowy region w %s" - -#: ../spell.c:7907 -msgid "Warning: both compounding and NOBREAK specified" -msgstr "Ostrzeenie: okrelono zarwno zoenia jak i NOBREAK" - -#: ../spell.c:7920 -#, c-format -msgid "Writing spell file %s ..." -msgstr "Zapisuj plik sprawdzania pisowni %s ..." - -#: ../spell.c:7925 -msgid "Done!" -msgstr "Zrobione!" - -#: ../spell.c:8034 -#, c-format -msgid "E765: 'spellfile' does not have %<PRId64> entries" -msgstr "E765: 'spellfile' nie posiada wpisw %<PRId64>" - -#: ../spell.c:8074 -#, fuzzy, c-format -msgid "Word '%.*s' removed from %s" -msgstr "Usunito sowo z %s" - -#: ../spell.c:8117 -#, fuzzy, c-format -msgid "Word '%.*s' added to %s" -msgstr "Dodano sowo do %s" - -#: ../spell.c:8381 -msgid "E763: Word characters differ between spell files" -msgstr "E763: Znaki wyrazw rni si midzy plikami sprawdzania pisowni" - -#: ../spell.c:8684 -msgid "Sorry, no suggestions" -msgstr "Przykro mi, brak podpowiedzi" - -#: ../spell.c:8687 -#, c-format -msgid "Sorry, only %<PRId64> suggestions" -msgstr "Przykro mi, tylko %<PRId64> podpowiedzi" - -#. for when 'cmdheight' > 1 -#. avoid more prompt -#: ../spell.c:8704 -#, c-format -msgid "Change \"%.*s\" to:" -msgstr "Zmie \"%.*s\" na:" - -#: ../spell.c:8737 -#, c-format -msgid " < \"%.*s\"" -msgstr " < \"%.*s\"" - -#: ../spell.c:8882 -msgid "E752: No previous spell replacement" -msgstr "E752: Brak poprzednich podmian sprawdzania pisowni" - -#: ../spell.c:8925 -#, c-format -msgid "E753: Not found: %s" -msgstr "E753: Nie znaleziono: %s" - -#: ../spell.c:9276 -#, c-format -msgid "E778: This does not look like a .sug file: %s" -msgstr "E778: Ten plik nie wyglda na plik .sug: %s" - -#: ../spell.c:9282 -#, c-format -msgid "E779: Old .sug file, needs to be updated: %s" -msgstr "E779: Stary plik .sug, konieczne jest uaktualnienie: %s" - -#: ../spell.c:9286 -#, c-format -msgid "E780: .sug file is for newer version of Vim: %s" -msgstr "E780: Plik .sug dla nowszej wersji Vima: %s" - -#: ../spell.c:9295 -#, c-format -msgid "E781: .sug file doesn't match .spl file: %s" -msgstr "E781: Plik .sug nie pasuje do pliku .spl: %s" - -#: ../spell.c:9305 -#, c-format -msgid "E782: error while reading .sug file: %s" -msgstr "E782: Bd w czasie odczytu pliku .sug: %s" - -#. This should have been checked when generating the .spl -#. file. -#: ../spell.c:11575 -msgid "E783: duplicate char in MAP entry" -msgstr "E783: Podwojony znak we wpisie MAP" - -#: ../syntax.c:266 -msgid "No Syntax items defined for this buffer" -msgstr "Brak elementw skadni okrelonych dla tego bufora" - -#: ../syntax.c:3083 ../syntax.c:3104 ../syntax.c:3127 -#, c-format -msgid "E390: Illegal argument: %s" -msgstr "E390: Niedozwolony argument: %s" - -#: ../syntax.c:3299 -#, c-format -msgid "E391: No such syntax cluster: %s" -msgstr "E391: Nie ma takiego klastra skadni: %s" - -#: ../syntax.c:3433 -msgid "syncing on C-style comments" -msgstr "synchronizacja komentarzy w stylu C" - -#: ../syntax.c:3439 -msgid "no syncing" -msgstr "brak synchronizacji" - -#: ../syntax.c:3441 -msgid "syncing starts " -msgstr "pocztek synchronizacji" - -#: ../syntax.c:3443 ../syntax.c:3506 -msgid " lines before top line" -msgstr " wierszy przed grn lini" - -#: ../syntax.c:3448 -msgid "" -"\n" -"--- Syntax sync items ---" -msgstr "" -"\n" -"--- Elementy synchronizacji skadni ---" - -#: ../syntax.c:3452 -msgid "" -"\n" -"syncing on items" -msgstr "" -"\n" -"synchronizuj na elementach" - -#: ../syntax.c:3457 -msgid "" -"\n" -"--- Syntax items ---" -msgstr "" -"\n" -"--- Elementy skadni ---" - -#: ../syntax.c:3475 -#, c-format -msgid "E392: No such syntax cluster: %s" -msgstr "E392: Nie ma takiego klastra skadni: %s" - -#: ../syntax.c:3497 -msgid "minimal " -msgstr "minimalnie " - -#: ../syntax.c:3503 -msgid "maximal " -msgstr "maksymalnie " - -#: ../syntax.c:3513 -msgid "; match " -msgstr "; pasuje " - -#: ../syntax.c:3515 -msgid " line breaks" -msgstr "znakw nowego wiersza" - -#: ../syntax.c:4076 -msgid "E395: contains argument not accepted here" -msgstr "E395: argument contains niedozwolony w tym miejscu" - -#: ../syntax.c:4096 -msgid "E844: invalid cchar value" -msgstr "E844: Niewaciwa warto cchar" - -#: ../syntax.c:4107 -msgid "E393: group[t]here not accepted here" -msgstr "E393: group[t]here niedozwolone w tym miejscu" - -#: ../syntax.c:4126 -#, c-format -msgid "E394: Didn't find region item for %s" -msgstr "E394: Nie znalazem elementw regionu dla %s" - -#: ../syntax.c:4188 -msgid "E397: Filename required" -msgstr "E397: Wymagana nazwa pliku" - -#: ../syntax.c:4221 -msgid "E847: Too many syntax includes" -msgstr "E847: Za duo wczonych skadni" - -#: ../syntax.c:4303 -#, c-format -msgid "E789: Missing ']': %s" -msgstr "E789: Brak ']': %s" - -#: ../syntax.c:4531 -#, c-format -msgid "E398: Missing '=': %s" -msgstr "E398: Brak '=': %s" - -#: ../syntax.c:4666 -#, c-format -msgid "E399: Not enough arguments: syntax region %s" -msgstr "E399: Za mao argumentw: syntax region %s" - -#: ../syntax.c:4870 -msgid "E848: Too many syntax clusters" -msgstr "E848: Za duo klastrw skadni" - -#: ../syntax.c:4954 -msgid "E400: No cluster specified" -msgstr "E400: Brak specyfikacji klastra" - -#. end delimiter not found -#: ../syntax.c:4986 -#, c-format -msgid "E401: Pattern delimiter not found: %s" -msgstr "E401: Brak ogranicznika wzorca: %s" - -#: ../syntax.c:5049 -#, c-format -msgid "E402: Garbage after pattern: %s" -msgstr "E402: mieci po wzorcu: %s" - -#: ../syntax.c:5120 -msgid "E403: syntax sync: line continuations pattern specified twice" -msgstr "E403: syntax sync: wielokrotnie podane wzorce kontynuacji wiersza" - -#: ../syntax.c:5169 -#, c-format -msgid "E404: Illegal arguments: %s" -msgstr "E404: Niedozwolone argumenty: %s" - -#: ../syntax.c:5217 -#, c-format -msgid "E405: Missing equal sign: %s" -msgstr "E405: Brak znaku rwnoci: %s" - -#: ../syntax.c:5222 -#, c-format -msgid "E406: Empty argument: %s" -msgstr "E406: Pusty argument: %s" - -#: ../syntax.c:5240 -#, c-format -msgid "E407: %s not allowed here" -msgstr "E407: %s jest niedozwolone w tym miejscu" - -#: ../syntax.c:5246 -#, c-format -msgid "E408: %s must be first in contains list" -msgstr "E408: %s musi by pierwsze w licie contains" - -#: ../syntax.c:5304 -#, c-format -msgid "E409: Unknown group name: %s" -msgstr "E409: Nieznana nazwa grupy: %s" - -#: ../syntax.c:5512 -#, c-format -msgid "E410: Invalid :syntax subcommand: %s" -msgstr "E410: Niewaciwa podkomenda :syntax : %s" - -#: ../syntax.c:5854 -msgid "" -" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN" -msgstr "" -" WSZYTKO ILO PASUJE NAJWOLN. REDNIO NAZWA WZORZEC" - -#: ../syntax.c:6146 -msgid "E679: recursive loop loading syncolor.vim" -msgstr "E679: rekursywna ptla wczytujca syncolor.vim" - -#: ../syntax.c:6256 -#, c-format -msgid "E411: highlight group not found: %s" -msgstr "E411: nie znaleziono grupy podwietlania: %s" - -#: ../syntax.c:6278 -#, c-format -msgid "E412: Not enough arguments: \":highlight link %s\"" -msgstr "E412: Zbyt mao argumentw: \":highlight link %s\"" - -#: ../syntax.c:6284 -#, c-format -msgid "E413: Too many arguments: \":highlight link %s\"" -msgstr "E413: Zbyt wiele argumentw: \":highlight link %s\"" - -#: ../syntax.c:6302 -msgid "E414: group has settings, highlight link ignored" -msgstr "E414: grupa ma ustawienia; zignorowane podczenie podwietlania" - -#: ../syntax.c:6367 -#, c-format -msgid "E415: unexpected equal sign: %s" -msgstr "E415: nieoczekiwany znak rwnoci: %s" - -#: ../syntax.c:6395 -#, c-format -msgid "E416: missing equal sign: %s" -msgstr "E416: brak znaku rwnoci: %s" - -#: ../syntax.c:6418 -#, c-format -msgid "E417: missing argument: %s" -msgstr "E417: brak argumentu: %s" - -#: ../syntax.c:6446 -#, c-format -msgid "E418: Illegal value: %s" -msgstr "E418: Niedozwolona warto: %s" - -#: ../syntax.c:6496 -msgid "E419: FG color unknown" -msgstr "E419: Kolor FG nieznany" - -#: ../syntax.c:6504 -msgid "E420: BG color unknown" -msgstr "E420: Kolor BG nieznany" - -#: ../syntax.c:6564 -#, c-format -msgid "E421: Color name or number not recognized: %s" -msgstr "E421: Nazwa lub liczba koloru nierozpoznana: %s" - -#: ../syntax.c:6714 -#, c-format -msgid "E422: terminal code too long: %s" -msgstr "E422: za dugi kod terminala: %s" - -#: ../syntax.c:6753 -#, c-format -msgid "E423: Illegal argument: %s" -msgstr "E423: Niedozwolony argument: %s" - -#: ../syntax.c:6925 -msgid "E424: Too many different highlighting attributes in use" -msgstr "E424: Zbyt wiele rnych atrybutw podkrelania w uyciu" - -#: ../syntax.c:7427 -msgid "E669: Unprintable character in group name" -msgstr "E669: Niedrukowalny znak w nazwie grupy" - -#: ../syntax.c:7434 -msgid "W18: Invalid character in group name" -msgstr "W18: nieprawidowy znak w nazwie grupy" - -#: ../syntax.c:7448 -msgid "E849: Too many highlight and syntax groups" -msgstr "E849: Za duo grup podwietlania i skadni" - -#: ../tag.c:104 -msgid "E555: at bottom of tag stack" -msgstr "E555: na dole stosu znacznikw" - -#: ../tag.c:105 -msgid "E556: at top of tag stack" -msgstr "E556: na grze stosu znacznikw" - -#: ../tag.c:380 -msgid "E425: Cannot go before first matching tag" -msgstr "E425: Nie mona przej przed pierwszy pasujcy znacznik" - -#: ../tag.c:504 -#, c-format -msgid "E426: tag not found: %s" -msgstr "E426: nie znaleziono znacznika: %s" - -#: ../tag.c:528 -msgid " # pri kind tag" -msgstr " # pri rodzaj znacznik" - -#: ../tag.c:531 -msgid "file\n" -msgstr "plik\n" - -#: ../tag.c:829 -msgid "E427: There is only one matching tag" -msgstr "E427: Pasuje tylko jeden znacznik" - -#: ../tag.c:831 -msgid "E428: Cannot go beyond last matching tag" -msgstr "E428: Nie mona przej za ostatni pasujcy znacznik" - -#: ../tag.c:850 -#, c-format -msgid "File \"%s\" does not exist" -msgstr "Plik \"%s\" nie istnieje" - -#. Give an indication of the number of matching tags -#: ../tag.c:859 -#, c-format -msgid "tag %d of %d%s" -msgstr "znacznik %d z %d%s" - -#: ../tag.c:862 -msgid " or more" -msgstr " lub wicej" - -#: ../tag.c:864 -msgid " Using tag with different case!" -msgstr " Uywam znacznika o odmiennej wielkoci liter!" - -#: ../tag.c:909 -#, c-format -msgid "E429: File \"%s\" does not exist" -msgstr "E429: Plik \"%s\" nie istnieje" - -#. Highlight title -#: ../tag.c:960 -msgid "" -"\n" -" # TO tag FROM line in file/text" -msgstr "" -"\n" -" # DO znacznik OD wiersza w pliku/tekcie" - -#: ../tag.c:1303 -#, c-format -msgid "Searching tags file %s" -msgstr "Szukam w pliku znacznikw %s" - -#: ../tag.c:1545 -msgid "Ignoring long line in tags file" -msgstr "Ignoruj dugie wiersze w pliku znacznikw" - -#: ../tag.c:1915 -#, c-format -msgid "E431: Format error in tags file \"%s\"" -msgstr "E431: Bd formatu w pliku znacznikw \"%s\"" - -#: ../tag.c:1917 -#, c-format -msgid "Before byte %<PRId64>" -msgstr "Przed bajtem %<PRId64>" - -#: ../tag.c:1929 -#, c-format -msgid "E432: Tags file not sorted: %s" -msgstr "E432: Plik znacznikw nieuporzdkowany: %s" - -#. never opened any tags file -#: ../tag.c:1960 -msgid "E433: No tags file" -msgstr "E433: Brak pliku znacznikw" - -#: ../tag.c:2536 -msgid "E434: Can't find tag pattern" -msgstr "E434: Nie mog znale wzorca znacznika" - -#: ../tag.c:2544 -msgid "E435: Couldn't find tag, just guessing!" -msgstr "E435: Nie znalazem znacznika - tylko zgaduj!" - -#: ../tag.c:2797 -#, c-format -msgid "Duplicate field name: %s" -msgstr "Powtrzona nazwa pola: %s" - -#: ../term.c:1442 -msgid "' not known. Available builtin terminals are:" -msgstr "' nieznany. Moliwe typy wbudowanych terminali:" - -#: ../term.c:1463 -msgid "defaulting to '" -msgstr "domylnie jest '" - -#: ../term.c:1731 -msgid "E557: Cannot open termcap file" -msgstr "E557: Nie mog otworzy pliku termcap" - -#: ../term.c:1735 -msgid "E558: Terminal entry not found in terminfo" -msgstr "E558: Nie ma opisu takiego terminala w terminfo" - -#: ../term.c:1737 -msgid "E559: Terminal entry not found in termcap" -msgstr "E559: Nie ma opisu takiego terminala w termcap" - -#: ../term.c:1878 -#, c-format -msgid "E436: No \"%s\" entry in termcap" -msgstr "E436: Brak opisu \"%s\" w termcap" - -#: ../term.c:2249 -msgid "E437: terminal capability \"cm\" required" -msgstr "E437: wymagana zdolno \"cm\" terminala" - -#. Highlight title -#: ../term.c:4376 -msgid "" -"\n" -"--- Terminal keys ---" -msgstr "" -"\n" -"--- Klawisze terminala ---" - -#: ../ui.c:481 -msgid "Vim: Error reading input, exiting...\n" -msgstr "Vim: Bd podczas wczytywania wejcia, kocz...\n" - -#. This happens when the FileChangedRO autocommand changes the -#. * file in a way it becomes shorter. -#: ../undo.c:379 -#, fuzzy -msgid "E881: Line count changed unexpectedly" -msgstr "E834: Niespodziewana zmiana iloci linii" - -#: ../undo.c:627 -#, c-format -msgid "E828: Cannot open undo file for writing: %s" -msgstr "E828: Nie mog otworzy do zapisu pliku undo: %s" - -#: ../undo.c:717 -#, c-format -msgid "E825: Corrupted undo file (%s): %s" -msgstr "E825: Uszkodzony plik undo (%s): %s" - -#: ../undo.c:1039 -msgid "Cannot write undo file in any directory in 'undodir'" -msgstr "Nie mona zapisa pliku undo w adnym katalogu z 'undodir'" - -#: ../undo.c:1074 -#, c-format -msgid "Will not overwrite with undo file, cannot read: %s" -msgstr "Nie nadpisz plikiem undo, nie mog odczyta: %s" - -#: ../undo.c:1092 -#, c-format -msgid "Will not overwrite, this is not an undo file: %s" -msgstr "Nie nadpisz, to nie jest plik undo: %s" - -#: ../undo.c:1108 -msgid "Skipping undo file write, nothing to undo" -msgstr "Pomijam zapis pliku undo, nic do cofnicia" - -#: ../undo.c:1121 -#, c-format -msgid "Writing undo file: %s" -msgstr "Zapisuj plik undo: %s" - -#: ../undo.c:1213 -#, c-format -msgid "E829: write error in undo file: %s" -msgstr "E829: Bd zapisu w pliku undo: %s" - -#: ../undo.c:1280 -#, c-format -msgid "Not reading undo file, owner differs: %s" -msgstr "Nie wczytuj pliku undo, inny waciciel: %s" - -#: ../undo.c:1292 -#, c-format -msgid "Reading undo file: %s" -msgstr "Wczytuj plik undo: %s" - -#: ../undo.c:1299 -#, c-format -msgid "E822: Cannot open undo file for reading: %s" -msgstr "E822: Nie mog otworzy pliku undo do odczytu: %s" - -#: ../undo.c:1308 -#, c-format -msgid "E823: Not an undo file: %s" -msgstr "E823: To nie jest plik undo: %s" - -#: ../undo.c:1313 -#, c-format -msgid "E824: Incompatible undo file: %s" -msgstr "E824: Niekompatybilny plik undo: %s" - -#: ../undo.c:1328 -msgid "File contents changed, cannot use undo info" -msgstr "Zawarto pliku si zmienia, nie mog uy pliku undo" - -#: ../undo.c:1497 -#, c-format -msgid "Finished reading undo file %s" -msgstr "Skoczono wczytywanie pliku undo %s" - -#: ../undo.c:1586 ../undo.c:1812 -msgid "Already at oldest change" -msgstr "Ju w miejscu ostatniej zmiany" - -#: ../undo.c:1597 ../undo.c:1814 -msgid "Already at newest change" -msgstr "Ju w miejscu najnowszej zmiany" - -#: ../undo.c:1806 -#, c-format -msgid "E830: Undo number %<PRId64> not found" -msgstr "E830: Nie znaleziono numeru cofnicia %<PRId64>" - -#: ../undo.c:1979 -msgid "E438: u_undo: line numbers wrong" -msgstr "E438: u_undo: niewaciwe numery wierszy" - -#: ../undo.c:2183 -msgid "more line" -msgstr "1 wiersz wicej" - -#: ../undo.c:2185 -msgid "more lines" -msgstr "wicej wierszy" - -#: ../undo.c:2187 -msgid "line less" -msgstr "1 wiersz mniej" - -#: ../undo.c:2189 -msgid "fewer lines" -msgstr "mniej wierszy" - -#: ../undo.c:2193 -msgid "change" -msgstr "1 zmiana" - -#: ../undo.c:2195 -msgid "changes" -msgstr "zmiany" - -#: ../undo.c:2225 -#, c-format -msgid "%<PRId64> %s; %s #%<PRId64> %s" -msgstr "%<PRId64> %s; %s #%<PRId64> %s" - -#: ../undo.c:2228 -msgid "before" -msgstr "przed" - -#: ../undo.c:2228 -msgid "after" -msgstr "za" - -#: ../undo.c:2325 -msgid "Nothing to undo" -msgstr "Nie ma zmian do cofnicia" - -#: ../undo.c:2330 -msgid "number changes when saved" -msgstr "liczba zmiany kiedy zapisano" - -#: ../undo.c:2360 -#, c-format -msgid "%<PRId64> seconds ago" -msgstr "%<PRId64> sekund temu" - -#: ../undo.c:2372 -msgid "E790: undojoin is not allowed after undo" -msgstr "E790: undojoin nie jest dozwolone po undo" - -#: ../undo.c:2466 -msgid "E439: undo list corrupt" -msgstr "E439: uszkodzona lista cofania" - -#: ../undo.c:2495 -msgid "E440: undo line missing" -msgstr "E440: brak wiersza cofania" - -#: ../version.c:600 -msgid "" -"\n" -"Included patches: " -msgstr "" -"\n" -"Zadane aty: " - -#: ../version.c:627 -msgid "" -"\n" -"Extra patches: " -msgstr "" -"\n" -"Ekstra aty: " - -#: ../version.c:639 ../version.c:864 -msgid "Modified by " -msgstr "Zmieniony przez " - -#: ../version.c:646 -msgid "" -"\n" -"Compiled " -msgstr "" -"\n" -"Skompilowany " - -#: ../version.c:649 -msgid "by " -msgstr "przez " - -#: ../version.c:660 -msgid "" -"\n" -"Huge version " -msgstr "" -"\n" -"Olbrzymia wersja " - -#: ../version.c:661 -msgid "without GUI." -msgstr "bez GUI." - -#: ../version.c:662 -msgid " Features included (+) or not (-):\n" -msgstr " Opcje wczone (+) lub nie (-):\n" - -#: ../version.c:667 -msgid " system vimrc file: \"" -msgstr " vimrc systemu: \"" - -#: ../version.c:672 -msgid " user vimrc file: \"" -msgstr " vimrc uytkownika: \"" - -#: ../version.c:677 -msgid " 2nd user vimrc file: \"" -msgstr " 2-gi plik vimrc uytkownika: \"" - -#: ../version.c:682 -msgid " 3rd user vimrc file: \"" -msgstr " 3-ci plik vimrc uytkownika: \"" - -#: ../version.c:687 -msgid " user exrc file: \"" -msgstr " exrc uytkownika: \"" - -#: ../version.c:692 -msgid " 2nd user exrc file: \"" -msgstr " 2-gi plik exrc uytkownika: \"" - -#: ../version.c:699 -msgid " fall-back for $VIM: \"" -msgstr " odwet dla $VIM-a: \"" - -#: ../version.c:705 -msgid " f-b for $VIMRUNTIME: \"" -msgstr "f-b dla $VIMRUNTIME: \"" - -#: ../version.c:709 -msgid "Compilation: " -msgstr "Kompilacja: " - -#: ../version.c:712 -msgid "Linking: " -msgstr "Konsolidacja: " - -#: ../version.c:717 -msgid " DEBUG BUILD" -msgstr " KOMPILACJA DEBUG" - -#: ../version.c:767 -msgid "VIM - Vi IMproved" -msgstr "VIM - Vi rozbudowany" - -#: ../version.c:769 -msgid "version " -msgstr "wersja " - -#: ../version.c:770 -msgid "by Bram Moolenaar et al." -msgstr "Autor: Bram Moolenaar i Inni." - -#: ../version.c:774 -msgid "Vim is open source and freely distributable" -msgstr "Vim jest open source i rozprowadzany darmowo" - -#: ../version.c:776 -msgid "Help poor children in Uganda!" -msgstr "Pom biednym dzieciom w Ugandzie!" - -#: ../version.c:777 -msgid "type :help iccf<Enter> for information " -msgstr "wprowad :help iccf<Enter> dla informacji o tym " - -#: ../version.c:779 -msgid "type :q<Enter> to exit " -msgstr "wprowad :q<Enter> zakoczenie programu " - -#: ../version.c:780 -msgid "type :help<Enter> or <F1> for on-line help" -msgstr "wprowad :help<Enter> lub <F1> pomoc na bieco " - -#: ../version.c:781 -msgid "type :help version7<Enter> for version info" -msgstr "wprowad :help version7<Enter> dla informacji o wersji" - -#: ../version.c:784 -msgid "Running in Vi compatible mode" -msgstr "Dziaam w trybie zgodnoci z Vi" - -#: ../version.c:785 -msgid "type :set nocp<Enter> for Vim defaults" -msgstr "wprowad :set nocp<Enter> wartoci domylne Vim-a" - -#: ../version.c:786 -msgid "type :help cp-default<Enter> for info on this" -msgstr "wprowad :help cp-default<Enter> dla informacji to tym " - -#: ../version.c:827 -msgid "Sponsor Vim development!" -msgstr "Sponsoruj rozwj Vima!" - -#: ../version.c:828 -msgid "Become a registered Vim user!" -msgstr "Zosta zarejestrowanym uytkownikiem Vima!" - -#: ../version.c:831 -msgid "type :help sponsor<Enter> for information " -msgstr "wprowad :help sponsor<Enter> dla informacji" - -#: ../version.c:832 -msgid "type :help register<Enter> for information " -msgstr "wprowad :help register<Enter> dla informacji" - -#: ../version.c:834 -msgid "menu Help->Sponsor/Register for information " -msgstr "menu Pomoc->Sponsoruj/Zarejestruj si dla informacji" - -#: ../window.c:119 -msgid "Already only one window" -msgstr "Ju jest tylko jeden widok" - -#: ../window.c:224 -msgid "E441: There is no preview window" -msgstr "E441: Nie ma okna podgldu" - -#: ../window.c:559 -msgid "E442: Can't split topleft and botright at the same time" -msgstr "E442: Nie mog rozdzieli lewo-grnego i prawo-dolnego jednoczenie" - -#: ../window.c:1228 -msgid "E443: Cannot rotate when another window is split" -msgstr "E443: Nie mog przekrci, gdy inne okno jest rozdzielone" - -#: ../window.c:1803 -msgid "E444: Cannot close last window" -msgstr "E444: Nie mog zamkn ostatniego okna" - -#: ../window.c:1810 -msgid "E813: Cannot close autocmd window" -msgstr "E813: Nie mona zamkn okna autocmd" - -#: ../window.c:1814 -msgid "E814: Cannot close window, only autocmd window would remain" -msgstr "E814: Nie mona zamkn okna, zostaoby tylko okno autocmd" - -#: ../window.c:2717 -msgid "E445: Other window contains changes" -msgstr "E445: Inne okno zawiera zmiany" - -#: ../window.c:4805 -msgid "E446: No file name under cursor" -msgstr "E446: Brak nazwy pliku pod kursorem" - -#~ msgid "E831: bf_key_init() called with empty password" -#~ msgstr "E831: bf_key_init() wywoany z pustym hasem" - -#~ msgid "E820: sizeof(uint32_t) != 4" -#~ msgstr "E820: sizeof(uint32_t) != 4" - -#~ msgid "E817: Blowfish big/little endian use wrong" -#~ msgstr "E817: Blowfish uywa bdnej kolejnoci bajtw" - -#~ msgid "E818: sha256 test failed" -#~ msgstr "E818: test sha256 nie powid si" - -#~ msgid "E819: Blowfish test failed" -#~ msgstr "E819: test Blowfisha nie powid si" - -#~ msgid "Patch file" -#~ msgstr "Plik ata" - -#~ msgid "" -#~ "&OK\n" -#~ "&Cancel" -#~ msgstr "" -#~ "&OK\n" -#~ "&Zakocz" - -#~ msgid "E240: No connection to Vim server" -#~ msgstr "E240: Brak poczenia z serwerem Vim" - -#~ msgid "E241: Unable to send to %s" -#~ msgstr "E241: Nie mog wysa do %s" - -#~ msgid "E277: Unable to read a server reply" -#~ msgstr "E277: Nie mog czyta odpowiedzi serwera" - -#~ msgid "E258: Unable to send to client" -#~ msgstr "E258: Nie mog wysa do klienta" - -#~ msgid "Save As" -#~ msgstr "Zapisz jako" - -#~ msgid "Source Vim script" -#~ msgstr "Wczytaj skrypt Vima" - -#~ msgid "Edit File" -#~ msgstr "Edytuj Plik" - -#~ msgid " (NOT FOUND)" -#~ msgstr " (NIE ZNALEZIONO)" - -#~ msgid "unknown" -#~ msgstr "nieznany" - -#~ msgid "Edit File in new window" -#~ msgstr "Edytuj plik w nowym oknie" - -#~ msgid "Append File" -#~ msgstr "Docz plik" - -#~ msgid "Window position: X %d, Y %d" -#~ msgstr "Pozycja okna: X %d, Y %d" - -#~ msgid "Save Redirection" -#~ msgstr "Zapisz przekierowanie" - -#~ msgid "Save View" -#~ msgstr "Zapisz widok" - -#~ msgid "Save Session" -#~ msgstr "Zapisz sesj" - -#~ msgid "Save Setup" -#~ msgstr "Zapisz ustawienia" - -#~ msgid "E809: #< is not available without the +eval feature" -#~ msgstr "E809: #< nie jest dostpne bez waciwoci +eval" - -#~ msgid "E196: No digraphs in this version" -#~ msgstr "E196: Brak dwugrafw w tej wersji" - -#~ msgid "is a device (disabled with 'opendevice' option)" -#~ msgstr "jest urzdzeniem (wyczonym w opcji 'opendevice')" - -#~ msgid "Reading from stdin..." -#~ msgstr "Wczytywanie ze stdin..." - -#~ msgid "[blowfish]" -#~ msgstr "[blowfish]" - -#~ msgid "[crypted]" -#~ msgstr "[zakodowane]" - -#~ msgid "E821: File is encrypted with unknown method" -#~ msgstr "E821: Plik zaszyfrowano w nieznany sposb" - -#~ msgid "NetBeans disallows writes of unmodified buffers" -#~ msgstr "NetBeans nie pozwala na zapis niezmodyfikowanych buforw" - -#~ msgid "Partial writes disallowed for NetBeans buffers" -#~ msgstr "Czciowy zapis niemoliwy dla buforw NetBeans" - -#~ msgid "writing to device disabled with 'opendevice' option" -#~ msgstr "zapisywanie do urzdzenia wyczone w opcji 'opendevice'" - -#~ msgid "E460: The resource fork would be lost (add ! to override)" -#~ msgstr "E460: Rozdzia zasobw zostanie utracony (wymu przez !)" - -#~ msgid "<cannot open> " -#~ msgstr "<nie mog otworzy> " - -#~ msgid "E616: vim_SelFile: can't get font %s" -#~ msgstr "E616: vim_SelFile: nie mog otrzyma czcionki %s" - -#~ msgid "E614: vim_SelFile: can't return to current directory" -#~ msgstr "E614: vim_SelFile: nie mog powrci do biecego katalogu" - -#~ msgid "Pathname:" -#~ msgstr "Trop:" - -#~ msgid "E615: vim_SelFile: can't get current directory" -#~ msgstr "E615: vim_SelFile: nie mog otrzyma biecego katalogu" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Cancel" -#~ msgstr "Zakocz" - -#~ msgid "Vim dialog" -#~ msgstr "VIM - Dialog" - -#~ msgid "Scrollbar Widget: Could not get geometry of thumb pixmap." -#~ msgstr "" -#~ "Scrollbar Widget: Nie mogem otrzyma rozmiarw rysunku na przycisku." - -#~ msgid "E232: Cannot create BalloonEval with both message and callback" -#~ msgstr "E232: Nie mog stworzy BalloonEval z powiadomieniem i wywoaniem" - -#~ msgid "E851: Failed to create a new process for the GUI" -#~ msgstr "E851: Nie mogem stworzy nowego procesu dla GUI" - -#~ msgid "E852: The child process failed to start the GUI" -#~ msgstr "E852: Proces potomny nie mg uruchomi GUI" - -#~ msgid "E229: Cannot start the GUI" -#~ msgstr "E229: Nie mog odpali GUI" - -#~ msgid "E230: Cannot read from \"%s\"" -#~ msgstr "E230: Nie mog czyta z \"%s\"" - -#~ msgid "E665: Cannot start GUI, no valid font found" -#~ msgstr "E665: Nie mona uruchomi GUI, brak prawidowej czcionki" - -#~ msgid "E231: 'guifontwide' invalid" -#~ msgstr "E231: Niewaciwe 'guifontwide'" - -#~ msgid "E599: Value of 'imactivatekey' is invalid" -#~ msgstr "E599: Nieprawidowa warto 'imactivatekey'" - -#~ msgid "E254: Cannot allocate color %s" -#~ msgstr "E254: Nie mog zarezerwowa koloru %s" - -#~ msgid "No match at cursor, finding next" -#~ msgstr "Brak dopasowania przy kursorze, szukam dalej" - -#~ msgid "Input _Methods" -#~ msgstr "Input _Methods" - -#~ msgid "VIM - Search and Replace..." -#~ msgstr "VIM - Szukaj i Zamie..." - -#~ msgid "VIM - Search..." -#~ msgstr "VIM - Szukaj..." - -#~ msgid "Find what:" -#~ msgstr "Znajd:" - -#~ msgid "Replace with:" -#~ msgstr "Zamie na:" - -#~ msgid "Match whole word only" -#~ msgstr "Dopasuj tylko cae wyrazy" - -#~ msgid "Match case" -#~ msgstr "Dopasuj wielko liter" - -#~ msgid "Direction" -#~ msgstr "Kierunek" - -#~ msgid "Up" -#~ msgstr "W gr" - -#~ msgid "Down" -#~ msgstr "W d" - -#~ msgid "Find Next" -#~ msgstr "Znajd nastpne" - -#~ msgid "Replace" -#~ msgstr "Zamie" - -#~ msgid "Replace All" -#~ msgstr "Zamie wszystkie" - -#~ msgid "Vim: Received \"die\" request from session manager\n" -#~ msgstr "Vim: otrzymano danie \"die\" od menedera sesji\n" - -#~ msgid "Close" -#~ msgstr "Zamknij" - -#~ msgid "New tab" -#~ msgstr "Nowa karta" - -#~ msgid "Open Tab..." -#~ msgstr "Otwrz kart..." - -#~ msgid "Vim: Main window unexpectedly destroyed\n" -#~ msgstr "Vim: Gwne okno nieoczekiwanie zniszczone\n" - -#~ msgid "&Filter" -#~ msgstr "&Filtr" - -#~ msgid "&Cancel" -#~ msgstr "&Anuluj" - -#~ msgid "Directories" -#~ msgstr "Katalogi" - -#~ msgid "Filter" -#~ msgstr "Filtr" - -#~ msgid "&Help" -#~ msgstr "&Pomoc" - -#~ msgid "Files" -#~ msgstr "Pliki" - -#~ msgid "&OK" -#~ msgstr "&OK" - -#~ msgid "Selection" -#~ msgstr "Wybr" - -#~ msgid "Find &Next" -#~ msgstr "Znajd &nastpne" - -#~ msgid "&Replace" -#~ msgstr "&Zamie" - -#~ msgid "Replace &All" -#~ msgstr "Zamie &wszystko" - -#~ msgid "&Undo" -#~ msgstr "&Cofnij" - -#~ msgid "E671: Cannot find window title \"%s\"" -#~ msgstr "E671: Nie mog znale tytuu okna \"%s\"" - -#~ msgid "E243: Argument not supported: \"-%s\"; Use the OLE version." -#~ msgstr "E243: Argument nie jest wspomagany: \"-%s\"; Uywaj wersji OLE." - -#~ msgid "E672: Unable to open window inside MDI application" -#~ msgstr "E672: Nie mona otworzy okna wewntrz aplikacji MDI" - -#~ msgid "Close tab" -#~ msgstr "Zamknij kart" - -#~ msgid "Open tab..." -#~ msgstr "Otwrz kart..." - -#~ msgid "Find string (use '\\\\' to find a '\\')" -#~ msgstr "Znajd cig (uyj '\\\\' do szukania '\\')" - -#~ msgid "Find & Replace (use '\\\\' to find a '\\')" -#~ msgstr "Szukanie i Zamiana (uyj '\\\\' do szukania '\\')" - -#~ msgid "Not Used" -#~ msgstr "Nie uywany" - -#~ msgid "Directory\t*.nothing\n" -#~ msgstr "Katalog\t*.nic\n" - -#~ msgid "" -#~ "Vim E458: Cannot allocate colormap entry, some colors may be incorrect" -#~ msgstr "" -#~ "Vim E458: Nie mog zarezerwowa mapy kolorw, pewne kolory mog by " -#~ "nieprawidowe" - -#~ msgid "E250: Fonts for the following charsets are missing in fontset %s:" -#~ msgstr "" -#~ "E250: Brak czcionek dla nastpujcych zestaww znakw w zestawie czcionek " -#~ "%s:" - -#~ msgid "E252: Fontset name: %s" -#~ msgstr "E252: Nazwa zestawu czcionek: %s" - -#~ msgid "Font '%s' is not fixed-width" -#~ msgstr "Czcionka '%s' nie posiada znakw jednolitej szerokoci" - -#~ msgid "E253: Fontset name: %s" -#~ msgstr "E253: Nazwa zestawu czcionek: %s" - -#~ msgid "Font0: %s" -#~ msgstr "Font0: %s" - -#~ msgid "Font1: %s" -#~ msgstr "Font1: %s" - -#~ msgid "Font%<PRId64> width is not twice that of font0" -#~ msgstr "Szeroko font%<PRId64> nie jest podwjn szerokoci font0" - -#~ msgid "Font0 width: %<PRId64>" -#~ msgstr "Szeroko font0: %<PRId64>" - -#~ msgid "Font1 width: %<PRId64>" -#~ msgstr "Szeroko font1: %<PRId64>" - -#~ msgid "Invalid font specification" -#~ msgstr "Nieprawidowy opis czcionki" - -#~ msgid "&Dismiss" -#~ msgstr "&Anuluj" - -#~ msgid "no specific match" -#~ msgstr "brak okrelonego dopasowania" - -#~ msgid "Vim - Font Selector" -#~ msgstr "Vim - wybr czcionki" - -#~ msgid "Name:" -#~ msgstr "Nazwa:" - -#~ msgid "Show size in Points" -#~ msgstr "Poka wielko w punktach" - -#~ msgid "Encoding:" -#~ msgstr "Kodowanie:" - -#~ msgid "Font:" -#~ msgstr "Czcionka:" - -#~ msgid "Style:" -#~ msgstr "Styl:" - -#~ msgid "Size:" -#~ msgstr "Wielko:" - -#~ msgid "E256: Hangul automata ERROR" -#~ msgstr "E256: BD w automacie Hangul" - -#~ msgid "E563: stat error" -#~ msgstr "E563: bd stat" - -#~ msgid "E625: cannot open cscope database: %s" -#~ msgstr "E625: nie mog otworzy bazy danych cscope: %s" - -#~ msgid "E626: cannot get cscope database information" -#~ msgstr "E626: nie mog uzyska informacji z bazy danych cscope" - -#~ msgid "Lua library cannot be loaded." -#~ msgstr "Nie mona wczyta biblioteki Lua." - -#~ msgid "cannot save undo information" -#~ msgstr "nie mog zachowa informacji cofania" - -#~ msgid "" -#~ "E815: Sorry, this command is disabled, the MzScheme libraries could not " -#~ "be loaded." -#~ msgstr "" -#~ "E815: Przykro mi, ta komenda jest wyczona, biblioteka MzScheme nie moe " -#~ "by zaadowana." - -#~ msgid "invalid expression" -#~ msgstr "niepoprawne wyraenie" - -#~ msgid "expressions disabled at compile time" -#~ msgstr "wyraenia wyczone podczas kompilacji" - -#~ msgid "hidden option" -#~ msgstr "ukryta opcja" - -#~ msgid "unknown option" -#~ msgstr "nieznana opcja" - -#~ msgid "window index is out of range" -#~ msgstr "indeks okna poza zakresem" - -#~ msgid "couldn't open buffer" -#~ msgstr "nie mog otworzy bufora" - -#~ msgid "cannot delete line" -#~ msgstr "nie mog skasowa wiersza" - -#~ msgid "cannot replace line" -#~ msgstr "nie mog zamieni wiersza" - -#~ msgid "cannot insert line" -#~ msgstr "nie mog wprowadzi wiersza" - -#~ msgid "string cannot contain newlines" -#~ msgstr "cig nie moe zawiera znakw nowego wiersza" - -#~ msgid "error converting Scheme values to Vim" -#~ msgstr "bd przy konwersji wartoci Scheme do Vima" - -#~ msgid "Vim error: ~a" -#~ msgstr "Bd vima: ~a" - -#~ msgid "Vim error" -#~ msgstr "Bd Vima" - -#~ msgid "buffer is invalid" -#~ msgstr "bufor jest niewany" - -#~ msgid "window is invalid" -#~ msgstr "okno jest niewane" - -#~ msgid "linenr out of range" -#~ msgstr "numer wiersza poza zakresem" - -#~ msgid "not allowed in the Vim sandbox" -#~ msgstr "Niedozwolone w piaskownicy Vima" - -#~ msgid "E837: This Vim cannot execute :py3 after using :python" -#~ msgstr "E837: Python: nie mona uywa :py i :py3 w czasie jednej sesji" - -#~ msgid "" -#~ "E263: Sorry, this command is disabled, the Python library could not be " -#~ "loaded." -#~ msgstr "" -#~ "E263: Przykro mi, ta komenda jest wyczona, bo nie mona zaadowa " -#~ "biblioteki Pythona" - -#~ msgid "E836: This Vim cannot execute :python after using :py3" -#~ msgstr "E836: Python: nie mona uywa :py i :py3 w czasie jednej sesji" - -#~ msgid "E659: Cannot invoke Python recursively" -#~ msgstr "E659: Nie mona wywoa Pythona rekursywnie" - -#~ msgid "E265: $_ must be an instance of String" -#~ msgstr "E265: $_ musi by reprezentacj acucha" - -#~ msgid "" -#~ "E266: Sorry, this command is disabled, the Ruby library could not be " -#~ "loaded." -#~ msgstr "" -#~ "E266: Przykro mi, ta komenda jest wyczona, bo nie mona zaadowa " -#~ "biblioteki Ruby." - -#~ msgid "E267: unexpected return" -#~ msgstr "E267: nieoczekiwany return" - -#~ msgid "E268: unexpected next" -#~ msgstr "E268: nieoczekiwany next" - -#~ msgid "E269: unexpected break" -#~ msgstr "E269: nieoczekiwany break" - -#~ msgid "E270: unexpected redo" -#~ msgstr "E270: nieoczekiwane redo" - -#~ msgid "E271: retry outside of rescue clause" -#~ msgstr "E271: ponowna prba poza klauzul ratunku" - -#~ msgid "E272: unhandled exception" -#~ msgstr "E272: nieobsugiwany wyjtek" - -#~ msgid "E273: unknown longjmp status %d" -#~ msgstr "E273: Nieznany status longjmp %d" - -#~ msgid "Toggle implementation/definition" -#~ msgstr "Przecz midzy implementacj/okreleniem" - -#~ msgid "Show base class of" -#~ msgstr "Poka baz klasy" - -#~ msgid "Show overridden member function" -#~ msgstr "Poka przepisan funkcj czonow" - -#~ msgid "Retrieve from file" -#~ msgstr "Pobieraj z pliku" - -#~ msgid "Retrieve from project" -#~ msgstr "Pobieraj z projektu" - -#~ msgid "Retrieve from all projects" -#~ msgstr "Pobieraj z wszystkich projektw" - -#~ msgid "Retrieve" -#~ msgstr "Pobierz" - -#~ msgid "Show source of" -#~ msgstr "Poka rdo dla" - -#~ msgid "Find symbol" -#~ msgstr "Znajd symbol" - -#~ msgid "Browse class" -#~ msgstr "Przejrzyj klas" - -#~ msgid "Show class in hierarchy" -#~ msgstr "Poka klas w hierarchii" - -#~ msgid "Show class in restricted hierarchy" -#~ msgstr "Poka klas w ograniczonej hierarchii" - -#~ msgid "Xref refers to" -#~ msgstr "Xref odnosi si do" - -#~ msgid "Xref referred by" -#~ msgstr "Xref ma odniesienia od" - -#~ msgid "Xref has a" -#~ msgstr "Xref ma" - -#~ msgid "Xref used by" -#~ msgstr "Xref uyte przez" - -#~ msgid "Show docu of" -#~ msgstr "Poka dokumentacj dla" - -#~ msgid "Generate docu for" -#~ msgstr "Utwrz dokumentacj dla" - -#~ msgid "" -#~ "Cannot connect to SNiFF+. Check environment (sniffemacs must be found in " -#~ "$PATH).\n" -#~ msgstr "" -#~ "Nie mog podczy do SNiFF+. Sprawd rodowisko (sniffemacs musi by " -#~ "odnaleziony w $PATH).\n" - -#~ msgid "E274: Sniff: Error during read. Disconnected" -#~ msgstr "E274: Sniff: Bd podczas czytania. Rozczenie" - -#~ msgid "SNiFF+ is currently " -#~ msgstr "SNiFF+ jest obecnie " - -#~ msgid "not " -#~ msgstr "nie " - -#~ msgid "connected" -#~ msgstr "podczony" - -#~ msgid "E275: Unknown SNiFF+ request: %s" -#~ msgstr "E275: Nieznane zapytanie SNiFF+: %s" - -#~ msgid "E276: Error connecting to SNiFF+" -#~ msgstr "E276: Bd w trakcie podczania do SNiFF+" - -#~ msgid "E278: SNiFF+ not connected" -#~ msgstr "E278: SNiFF+ niepodczony" - -#~ msgid "E279: Not a SNiFF+ buffer" -#~ msgstr "E279: Nie jest buforem SNiFF+" - -#~ msgid "Sniff: Error during write. Disconnected" -#~ msgstr "Sniff: Bd w trakcie zapisu. Rozczony" - -#~ msgid "invalid buffer number" -#~ msgstr "niewaciwy numer bufora" - -#~ msgid "not implemented yet" -#~ msgstr "obecnie nie zaimplementowano" - -#~ msgid "cannot set line(s)" -#~ msgstr "nie mog ustawi wiersza(y)" - -#~ msgid "invalid mark name" -#~ msgstr "niepoprawna nazwa zakadki" - -#~ msgid "mark not set" -#~ msgstr "zakadka nie ustawiona" - -#~ msgid "row %d column %d" -#~ msgstr "wiersz %d kolumna %d" - -#~ msgid "cannot insert/append line" -#~ msgstr "nie mog wprowadzi/doczy wiersza" - -#~ msgid "line number out of range" -#~ msgstr "numer wiersza poza zakresem" - -#~ msgid "unknown flag: " -#~ msgstr "nieznana flaga: " - -#~ msgid "unknown vimOption" -#~ msgstr "nieznane vimOption" - -#~ msgid "keyboard interrupt" -#~ msgstr "przerwanie klawiatury" - -#~ msgid "vim error" -#~ msgstr "bd vima" - -#~ msgid "cannot create buffer/window command: object is being deleted" -#~ msgstr "nie mog stworzy bufora/okna komendy: obiekt jest kasowany" - -#~ msgid "" -#~ "cannot register callback command: buffer/window is already being deleted" -#~ msgstr "" -#~ "nie mog zarejestrowa wstecznego wywoania komendy: bufor/okno ju " -#~ "zostaa skasowana" - -#~ msgid "" -#~ "E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-" -#~ "dev@vim.org" -#~ msgstr "" -#~ "E280: TCL FATALNY BD: reflist zepsuta!? Prosz zoy raport o tym na " -#~ "vim-dev@vim.org" - -#~ msgid "cannot register callback command: buffer/window reference not found" -#~ msgstr "" -#~ "nie mog zarejestrowa wstecznego wywoania komendy: brak odniesienia do " -#~ "bufora/okna" - -#~ msgid "" -#~ "E571: Sorry, this command is disabled: the Tcl library could not be " -#~ "loaded." -#~ msgstr "" -#~ "E571: Przykro mi, ta komenda jest wyczona, bo nie mona zaadowa " -#~ "biblioteki Tcl." - -#~ msgid "E572: exit code %d" -#~ msgstr "E572: kod wyjcia %d" - -#~ msgid "cannot get line" -#~ msgstr "nie mog dosta wiersza" - -#~ msgid "Unable to register a command server name" -#~ msgstr "Nie mog zarejestrowa nazwy serwera komend" - -#~ msgid "E248: Failed to send command to the destination program" -#~ msgstr "E248: Wysanie komendy do programu docelowego nie powiodo si" - -#~ msgid "E573: Invalid server id used: %s" -#~ msgstr "E573: Uyto niewaciwego id serwera: %s" - -#~ msgid "E251: VIM instance registry property is badly formed. Deleted!" -#~ msgstr "" -#~ "E251: wcielenia instancji rejestru Vima jest le sformowane. Skasowano!" - -#~ msgid "netbeans is not supported with this GUI\n" -#~ msgstr "netbeans nie s obsugiwane przez to GUI\n" - -#~ msgid "This Vim was not compiled with the diff feature." -#~ msgstr "Ta wersja Vima nie bya skompilowanego z opcj rnic (diff)." - -#~ msgid "'-nb' cannot be used: not enabled at compile time\n" -#~ msgstr "'-nb' - nie moe by uyte: nie wczone przy kompilacji\n" - -#~ msgid "Vim: Error: Failure to start gvim from NetBeans\n" -#~ msgstr "Vim: Bd: Nie mona uruchomi gvim z NetBeans\n" - -#~ msgid "" -#~ "\n" -#~ "Where case is ignored prepend / to make flag upper case" -#~ msgstr "" -#~ "\n" -#~ "gdzie wielko znakw jest ignorowana dodaj na pocztku / by flaga bya " -#~ "wielk liter" - -#~ msgid "-register\t\tRegister this gvim for OLE" -#~ msgstr "-register\t\tZarejestruj tego gvima w OLE" - -#~ msgid "-unregister\t\tUnregister gvim for OLE" -#~ msgstr "-unregister\t\tWyrejestruj gvima z OLE" - -#~ msgid "-g\t\t\tRun using GUI (like \"gvim\")" -#~ msgstr "-g\t\t\tStartuj w GUI (tak jak \"gvim\")" - -#~ msgid "-f or --nofork\tForeground: Don't fork when starting GUI" -#~ msgstr "-f lub --nofork\tPierwszy plan: Nie wydzielaj przy odpalaniu GUI" - -#~ msgid "-f\t\t\tDon't use newcli to open window" -#~ msgstr "-f\t\t\tNie stosuj newcli do otwierania okien" - -#~ msgid "-dev <device>\t\tUse <device> for I/O" -#~ msgstr "-dev <device>\t\tUywaj <device> do I/O" - -#~ msgid "-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc" -#~ msgstr "-U <gvimrc>\t\tUyj <gvimrc> zamiast jakiegokolwiek .gvimrc" - -#~ msgid "-x\t\t\tEdit encrypted files" -#~ msgstr "-x\t\t\tEdytuj zakodowane pliki" - -#~ msgid "-display <display>\tConnect vim to this particular X-server" -#~ msgstr "-display <display>\tPodcz vima to danego X-serwera" - -#~ msgid "-X\t\t\tDo not connect to X server" -#~ msgstr "-X\t\t\tNie cz z serwerem X" - -#~ msgid "--remote <files>\tEdit <files> in a Vim server if possible" -#~ msgstr "--remote <pliki>\tEdytuj pliki w serwerze Vima jeli moliwe" - -#~ msgid "--remote-silent <files> Same, don't complain if there is no server" -#~ msgstr "--remote-silent <pliki> To samo, nie narzekaj jeli nie ma serwera" - -#~ msgid "" -#~ "--remote-wait <files> As --remote but wait for files to have been edited" -#~ msgstr "" -#~ "--remote-wait <pliki>\tTak jak --remote, lecz czekaj na pliki przed edycj" - -#~ msgid "" -#~ "--remote-wait-silent <files> Same, don't complain if there is no server" -#~ msgstr "" -#~ "--remote-wait-silent <pliki> To samo, nie narzekaj jeli nie ma serwera" - -#~ msgid "" -#~ "--remote-tab[-wait][-silent] <files> As --remote but use tab page per " -#~ "file" -#~ msgstr "" -#~ "--remote-tab[-wait][-silent] <pliki> tak jak --remote ale uywa jednej " -#~ "karty na plik" - -#~ msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit" -#~ msgstr "" -#~ "--remote-send <klawisze>\tWylij <klawisze> do serwera Vima i zakocz" - -#~ msgid "" -#~ "--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result" -#~ msgstr "--remote-expr <wyr>\tWykonaj <wyraenie> w serwerze i wypisz wynik" - -#~ msgid "--serverlist\t\tList available Vim server names and exit" -#~ msgstr "--serverlist\t\tWymie nazwy dostpnych serwerw Vima i zakocz" - -#~ msgid "--servername <name>\tSend to/become the Vim server <name>" -#~ msgstr "--servername <nazwa>\t\tOdsyaj do/sta si serwerem Vim <nazwa>" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Motif version):\n" -#~ msgstr "" -#~ "\n" -#~ "Argumenty rozpoznawane przez gvim (wersja Motif):\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (neXtaw version):\n" -#~ msgstr "" -#~ "\n" -#~ "Argumenty rozpoznawane przez gvim (wersja neXtaw):\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Athena version):\n" -#~ msgstr "" -#~ "\n" -#~ "Argumenty rozpoznawane przez gvim (wersja Athena):\n" - -#~ msgid "-display <display>\tRun vim on <display>" -#~ msgstr "-display <display>\tZaaduj vim na <display>" - -#~ msgid "-iconic\t\tStart vim iconified" -#~ msgstr "-iconic\t\tZacznij Vim jako ikon" - -#~ msgid "-background <color>\tUse <color> for the background (also: -bg)" -#~ msgstr "-background <kolor>\tUywaj <kolor> dla ta (rwnie: -bg)" - -#~ msgid "-foreground <color>\tUse <color> for normal text (also: -fg)" -#~ msgstr "" -#~ "-foreground <kolor>\tUywaj <kolor> dla normalnego tekstu (rwnie: -fg)" - -#~ msgid "-font <font>\t\tUse <font> for normal text (also: -fn)" -#~ msgstr "-font <font>\t\tUywaj <font> dla normalnego tekstu (rwnie: -fn)" - -#~ msgid "-boldfont <font>\tUse <font> for bold text" -#~ msgstr "-boldfont <font>\tUywaj <font> dla wytuszczonego tekstu" - -#~ msgid "-italicfont <font>\tUse <font> for italic text" -#~ msgstr "-italicfont <font>\tUywaj <font> dla pochyego" - -#~ msgid "-geometry <geom>\tUse <geom> for initial geometry (also: -geom)" -#~ msgstr "" -#~ "-geometry <geom>\tUywaj <geom> dla pocztkowych rozmiarw (rwnie: -" -#~ "geom)" - -#~ msgid "-borderwidth <width>\tUse a border width of <width> (also: -bw)" -#~ msgstr "-borderwidth <szer>\tUyj ramki o gruboci <szer> (rwnie: -bw)" - -#~ msgid "" -#~ "-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)" -#~ msgstr "" -#~ "-scrollbarwidth <szer> Uywaj przewijacza o szerokoci <szer> (rwnie: -" -#~ "sw)" - -#~ msgid "-menuheight <height>\tUse a menu bar height of <height> (also: -mh)" -#~ msgstr "" -#~ "-menuheight <height>\tStosuj belk menu o wysokoci <height> (rwnie: -" -#~ "mh)" - -#~ msgid "-reverse\t\tUse reverse video (also: -rv)" -#~ msgstr "-reverse\t\tStosuj negatyw kolorw (rwnie: -rv)" - -#~ msgid "+reverse\t\tDon't use reverse video (also: +rv)" -#~ msgstr "+reverse\t\tNie stosuj negatywu kolorw (rwnie: +rv)" - -#~ msgid "-xrm <resource>\tSet the specified resource" -#~ msgstr "-xrm <resource>\tUstaw okrelony zasb" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (GTK+ version):\n" -#~ msgstr "" -#~ "\n" -#~ "Argumenty rozpoznawane przez gvim (wersja GTK+):\n" - -#~ msgid "-display <display>\tRun vim on <display> (also: --display)" -#~ msgstr "-display <display>\tZastartuj vim na <display> (rwnie: --display)" - -#~ msgid "--role <role>\tSet a unique role to identify the main window" -#~ msgstr "--role <role>\tUstaw unikatow rol do identyfikacji gwnego okna" - -#~ msgid "--socketid <xid>\tOpen Vim inside another GTK widget" -#~ msgstr "--socketid <xid>\tOtwrz Vim wewntrz innego widgetu GTK" - -#~ msgid "--echo-wid\t\tMake gvim echo the Window ID on stdout" -#~ msgstr "-echo-wid\t\tGvim wypisze Window ID na wyjcie standardowe" - -#~ msgid "-P <parent title>\tOpen Vim inside parent application" -#~ msgstr "-P <tytu rodzica>\tOtwrz Vima wewntrz rodzicielskiej aplikacji" - -#~ msgid "--windowid <HWND>\tOpen Vim inside another win32 widget" -#~ msgstr "--windowid <HWND>\tOtwrz Vima wewntrz innego elementu win32" - -#~ msgid "No display" -#~ msgstr "Brak display" - -#~ msgid ": Send failed.\n" -#~ msgstr ": Wysanie nie powiodo si.\n" - -#~ msgid ": Send failed. Trying to execute locally\n" -#~ msgstr ": Wysanie nie powiodo si. Prbuj wykona na miejscu\n" - -#~ msgid "%d of %d edited" -#~ msgstr "otworzono %d z %d" - -#~ msgid "No display: Send expression failed.\n" -#~ msgstr "Brak terminala: Wysanie wyraenia nie powiodo si.\n" - -#~ msgid ": Send expression failed.\n" -#~ msgstr ": Wysanie wyraenia nie powiodo si.\n" - -#~ msgid "E543: Not a valid codepage" -#~ msgstr "E543: To nie jest wana strona kodowa" - -#~ msgid "E284: Cannot set IC values" -#~ msgstr "E284: Nie mog nastawi wartoci IC" - -#~ msgid "E285: Failed to create input context" -#~ msgstr "E285: Nie mogem stworzy kontekstu wprowadze" - -#~ msgid "E286: Failed to open input method" -#~ msgstr "E286: Nie mogem otworzy sposobu wprowadze" - -#~ msgid "E287: Warning: Could not set destroy callback to IM" -#~ msgstr "E287: OSTRZEENIE: Nie mogem zlikwidowa wywoania dla IM" - -#~ msgid "E288: input method doesn't support any style" -#~ msgstr "E288: metoda wprowadze nie wspomaga adnego stylu" - -#~ msgid "E289: input method doesn't support my preedit type" -#~ msgstr "E289: metoda wprowadze nie wspomaga mojego typu preedit" - -#~ msgid "E843: Error while updating swap file crypt" -#~ msgstr "E843: Bd w czasie uaktualniania szyfrowania pliku wymiany" - -#~ msgid "" -#~ "E833: %s is encrypted and this version of Vim does not support encryption" -#~ msgstr "E833: %s jest zaszyfrowany a ta wersja Vima nie wspiera szyfrowania" - -#~ msgid "Swap file is encrypted: \"%s\"" -#~ msgstr "Zaszyfrowany plik wymiany: \"%s\"" - -#~ msgid "" -#~ "\n" -#~ "If you entered a new crypt key but did not write the text file," -#~ msgstr "" -#~ "\n" -#~ "Jeli podano nowy klucz szyfrujcy, ale nie zapisano pliku tekstowego," - -#~ msgid "" -#~ "\n" -#~ "enter the new crypt key." -#~ msgstr "" -#~ "\n" -#~ "wprowad nowy klucz szyfrujcy." - -#~ msgid "" -#~ "\n" -#~ "If you wrote the text file after changing the crypt key press enter" -#~ msgstr "" -#~ "\n" -#~ "Jeli zapisano plik tekstowy po zmianie klucza szyfrujcego wcinij Enter" - -#~ msgid "" -#~ "\n" -#~ "to use the same key for text file and swap file" -#~ msgstr "" -#~ "\n" -#~ "aby uy tego samego klucza dla pliku tekstowego i wymiany" - -#~ msgid "Using crypt key from swap file for the text file.\n" -#~ msgstr "Uywam klucza szyfrujcego z pliku wymiany do pliku tekstowego.\n" - -#~ msgid "" -#~ "\n" -#~ " [not usable with this version of Vim]" -#~ msgstr "" -#~ "\n" -#~ " [nie nadaje si dla tej wersji Vima]" - -#~ msgid "Tear off this menu" -#~ msgstr "Oderwij to menu" - -#~ msgid "Select Directory dialog" -#~ msgstr "Dialog wyboru katalogu" - -#~ msgid "Save File dialog" -#~ msgstr "Dialog zapisywania pliku" - -#~ msgid "Open File dialog" -#~ msgstr "Dialog otwierania pliku" - -#~ msgid "E338: Sorry, no file browser in console mode" -#~ msgstr "E338: Przykro mi, nie ma przegldarki plikw w trybie konsoli" - -#~ msgid "Vim: preserving files...\n" -#~ msgstr "Vim: zachowuj plik...\n" - -#~ msgid "Vim: Finished.\n" -#~ msgstr "Vim: Zakoczono.\n" - -#~ msgid "ERROR: " -#~ msgstr "BD: " - -#~ msgid "" -#~ "\n" -#~ "[bytes] total alloc-freed %<PRIu64>-%<PRIu64>, in use %<PRIu64>, peak use " -#~ "%<PRIu64>\n" -#~ msgstr "" -#~ "\n" -#~ "[bajtw] totalne alokacje-zwolnienia %<PRIu64>-%<PRIu64>, w uytku " -#~ "%<PRIu64>, maksymalne uycie %<PRIu64>\n" - -#~ msgid "" -#~ "[calls] total re/malloc()'s %<PRIu64>, total free()'s %<PRIu64>\n" -#~ "\n" -#~ msgstr "" -#~ "[wywoania] wszystkich re/malloc()-w %<PRIu64>, wszystkich free()-w " -#~ "%<PRIu64>\n" -#~ "\n" - -#~ msgid "E340: Line is becoming too long" -#~ msgstr "E340: Wiersz staje si zbyt dugi" - -#~ msgid "E341: Internal error: lalloc(%<PRId64>, )" -#~ msgstr "E341: Wewntrzny bd: lalloc(%<PRId64>, )" - -#~ msgid "E547: Illegal mouseshape" -#~ msgstr "E547: Niedozwolony obrys myszki" - -#~ msgid "Enter encryption key: " -#~ msgstr "Wprowad klucz do odkodowania: " - -#~ msgid "Enter same key again: " -#~ msgstr "Wprowad ponownie ten sam klucz: " - -#~ msgid "Keys don't match!" -#~ msgstr "Klucze nie pasuj do siebie!" - -#~ msgid "Cannot connect to Netbeans #2" -#~ msgstr "Nie mona poczy z Netbeans #2" - -#~ msgid "Cannot connect to Netbeans" -#~ msgstr "Nie mona poczy z Netbeans" - -#~ msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\"" -#~ msgstr "E668: Bdny tryb dostpu pliku info poczenia NetBeans: \"%s\"" - -#~ msgid "read from Netbeans socket" -#~ msgstr "odczyt z gniazda Netbeans" - -#~ msgid "E658: NetBeans connection lost for buffer %<PRId64>" -#~ msgstr "E658: Bufor %<PRId64> utraci poczenie z NetBeans" - -#~ msgid "E838: netbeans is not supported with this GUI" -#~ msgstr "E838: netbeans nie s obsugiwane przez to GUI" - -#~ msgid "E511: netbeans already connected" -#~ msgstr "E511: netbeans ju podczone" - -#~ msgid "E505: %s is read-only (add ! to override)" -#~ msgstr "E505: %s jest tylko do odczytu (dodaj ! aby wymusi)" - -#~ msgid "E775: Eval feature not available" -#~ msgstr "E775: Funkcjonalno eval nie jest dostpna" - -#~ msgid "freeing %<PRId64> lines" -#~ msgstr "zwalniam %<PRId64> wierszy" - -#~ msgid "E530: Cannot change term in GUI" -#~ msgstr "E530: Nie mog zmieni term w GUI" - -#~ msgid "E531: Use \":gui\" to start the GUI" -#~ msgstr "E531: Uyj \":gui\" do odpalenia GUI" - -#~ msgid "E617: Cannot be changed in the GTK+ 2 GUI" -#~ msgstr "E617: Nie mog zmieni w GTK+2 GUI" - -#~ msgid "E596: Invalid font(s)" -#~ msgstr "E596: Niedozwolona czcionka/ki" - -#~ msgid "E597: can't select fontset" -#~ msgstr "E597: nie mog wybra zestawu czcionek" - -#~ msgid "E598: Invalid fontset" -#~ msgstr "E598: Niedozwolony zestaw czcionek" - -#~ msgid "E533: can't select wide font" -#~ msgstr "E533: nie mog wybra szerokiej czcionki" - -#~ msgid "E534: Invalid wide font" -#~ msgstr "E534: Niedozwolona szeroka czcionka" - -#~ msgid "E538: No mouse support" -#~ msgstr "E538: Brak wspomagania myszki" - -#~ msgid "cannot open " -#~ msgstr "nie mog otworzy " - -#~ msgid "VIM: Can't open window!\n" -#~ msgstr "VIM: Nie mog otworzy okna!\n" - -#~ msgid "Need Amigados version 2.04 or later\n" -#~ msgstr "Potrzebuj Amigados w wersji 2.04 lub pniejsz\n" - -#~ msgid "Need %s version %<PRId64>\n" -#~ msgstr "Potrzebuj %s w wersji %<PRId64>\n" - -#~ msgid "Cannot open NIL:\n" -#~ msgstr "Nie mog otworzy NIL:\n" - -#~ msgid "Cannot create " -#~ msgstr "Nie mog stworzy " - -#~ msgid "Vim exiting with %d\n" -#~ msgstr "Vim koczy prac z %d\n" - -#~ msgid "cannot change console mode ?!\n" -#~ msgstr "nie mog zmieni trybu konsoli ?!\n" - -#~ msgid "mch_get_shellsize: not a console??\n" -#~ msgstr "mch_get_shellsize: nie jest konsol??\n" - -#~ msgid "E360: Cannot execute shell with -f option" -#~ msgstr "E360: Nie mog wykona powoki z opcj -f" - -#~ msgid "Cannot execute " -#~ msgstr "Nie mog wykona " - -#~ msgid "shell " -#~ msgstr "powoka " - -#~ msgid " returned\n" -#~ msgstr " zwrci\n" - -#~ msgid "ANCHOR_BUF_SIZE too small." -#~ msgstr "ANCHOR_BUF_SIZE zbyt niskie." - -#~ msgid "I/O ERROR" -#~ msgstr "BD I/O" - -#~ msgid "Message" -#~ msgstr "Wiadomo" - -#~ msgid "'columns' is not 80, cannot execute external commands" -#~ msgstr "'columns' nie wynosi 80, nie mog wykona zewntrznych komend" - -#~ msgid "E237: Printer selection failed" -#~ msgstr "E237: Wybr drukarki nie powid si" - -#~ msgid "to %s on %s" -#~ msgstr "do %s z %s" - -#~ msgid "E613: Unknown printer font: %s" -#~ msgstr "E613: Nieznana czcionka drukarki: %s" - -#~ msgid "E238: Print error: %s" -#~ msgstr "E238: Bd drukarki: %s" - -#~ msgid "Printing '%s'" -#~ msgstr "Wydrukowano '%s'" - -#~ msgid "E244: Illegal charset name \"%s\" in font name \"%s\"" -#~ msgstr "" -#~ "E244: Niedozwolona nazwa zestawu znakw \"%s\" w nazwie czcionki \"%s\"" - -#~ msgid "E245: Illegal char '%c' in font name \"%s\"" -#~ msgstr "E245: Niedozwolony znak '%c' w nazwie czcionki \"%s\"" - -#~ msgid "Vim: Double signal, exiting\n" -#~ msgstr "Vim: Podwjny sygna, wychodz\n" - -#~ msgid "Vim: Caught deadly signal %s\n" -#~ msgstr "Vim: Zaapa miertelny sygna %s\n" - -#~ msgid "Vim: Caught deadly signal\n" -#~ msgstr "Vim: Zaapa miertelny sygna\n" - -#~ msgid "Opening the X display took %<PRId64> msec" -#~ msgstr "Otwieranie ekranu X trwao %<PRId64> msec" - -#~ msgid "" -#~ "\n" -#~ "Vim: Got X error\n" -#~ msgstr "" -#~ "\n" -#~ "Vim: Dosta bd X\n" - -#~ msgid "Testing the X display failed" -#~ msgstr "Test ekranu X nie powid si" - -#~ msgid "Opening the X display timed out" -#~ msgstr "Prba otwarcia ekranu X trwaa zbyt dugo" - -#~ msgid "" -#~ "\n" -#~ "Cannot execute shell sh\n" -#~ msgstr "" -#~ "\n" -#~ "Nie mog wykona powoki sh\n" - -#~ msgid "" -#~ "\n" -#~ "Cannot create pipes\n" -#~ msgstr "" -#~ "\n" -#~ "Nie mog stworzy potokw\n" - -#~ msgid "" -#~ "\n" -#~ "Cannot fork\n" -#~ msgstr "" -#~ "\n" -#~ "Nie mog rozdzieli si\n" - -#~ msgid "" -#~ "\n" -#~ "Command terminated\n" -#~ msgstr "" -#~ "\n" -#~ "Komenda zakoczona\n" - -#~ msgid "XSMP lost ICE connection" -#~ msgstr "XSMP straci poczenie ICE" - -#~ msgid "Opening the X display failed" -#~ msgstr "Otwarcie ekranu X nie powiodo si" - -#~ msgid "XSMP handling save-yourself request" -#~ msgstr "XSMP obsuguje danie samozapisu" - -#~ msgid "XSMP opening connection" -#~ msgstr "XSMP otwiera poczenie" - -#~ msgid "XSMP ICE connection watch failed" -#~ msgstr "Obserwacja poczenia XSMP ICE nie powioda si" - -#~ msgid "XSMP SmcOpenConnection failed: %s" -#~ msgstr "XSMP SmcOpenConnection nie powiodo si: %s" - -#~ msgid "At line" -#~ msgstr "W wierszu" - -#~ msgid "Could not load vim32.dll!" -#~ msgstr "Nie mog zaadowa vim32.dll!" - -#~ msgid "VIM Error" -#~ msgstr "Bd VIM" - -#~ msgid "Could not fix up function pointers to the DLL!" -#~ msgstr "Nie zdoaem poprawi wskanikw funkcji w DLL!" - -#~ msgid "shell returned %d" -#~ msgstr "powoka zwrcia %d" - -#~ msgid "Vim: Caught %s event\n" -#~ msgstr "Vim: Zaapa wydarzenie %s\n" - -#~ msgid "close" -#~ msgstr "zamknij" - -#~ msgid "logoff" -#~ msgstr "wyloguj" - -#~ msgid "shutdown" -#~ msgstr "zakocz" - -#~ msgid "E371: Command not found" -#~ msgstr "E371: Nie znaleziono komendy" - -#~ msgid "" -#~ "VIMRUN.EXE not found in your $PATH.\n" -#~ "External commands will not pause after completion.\n" -#~ "See :help win32-vimrun for more information." -#~ msgstr "" -#~ "VIMRUN.EXE nie znaleziono w twoim $PATH.\n" -#~ "Zewntrzne komendy nie bd wstrzymane po wykonaniu.\n" -#~ "Zobacz :help wim32-vimrun aby otrzyma wicej informacji." - -#~ msgid "Vim Warning" -#~ msgstr "Vim Ostrzeenie" - -#~ msgid "Error file" -#~ msgstr "Plik bdu" - -#~ msgid "E868: Error building NFA with equivalence class!" -#~ msgstr "E868: Bd przy budowwaniu NFA z klas ekwiwalencji" - -#~ msgid "E878: (NFA) Could not allocate memory for branch traversal!" -#~ msgstr "" -#~ "E878: (NFA) Nie mona przydzieli pamici do przejcia przez gazie!" - -#~ msgid "Warning: Cannot find word list \"%s_%s.spl\" or \"%s_ascii.spl\"" -#~ msgstr "" -#~ "Ostrzeenie: Nie mog znale listy sw \"%s_%s.spl\" lub \"%s_ascii.spl" -#~ "\"" - -#~ msgid "Conversion in %s not supported" -#~ msgstr "Konwersja w %s nie jest wspierana" - -#~ msgid "E845: Insufficient memory, word list will be incomplete" -#~ msgstr "" -#~ "E845: Nie wystarczajca ilo pamici, lista sw bdzie niekompletna" - -#~ msgid "E430: Tag file path truncated for %s\n" -#~ msgstr "E430: Trop szukania pliku znacznikw obcity dla %s\n" - -#~ msgid "new shell started\n" -#~ msgstr "uruchomiono now powok\n" - -#~ msgid "Used CUT_BUFFER0 instead of empty selection" -#~ msgstr "Uywam CUT_BUFFER0 zamiast pustego wyboru" - -#~ msgid "No undo possible; continue anyway" -#~ msgstr "Cofnicie niemoliwe; mimo to kontynuuj" - -#~ msgid "E832: Non-encrypted file has encrypted undo file: %s" -#~ msgstr "E832: Nie zaszyfrowany plik ma zaszyfrowany plik undo: %s" - -#~ msgid "E826: Undo file decryption failed: %s" -#~ msgstr "E826: Nie powiodo si odszyfrowywanie pliku undo: %s" - -#~ msgid "E827: Undo file is encrypted: %s" -#~ msgstr "E827: Plik undo jest zaszyfrowany: %s" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16/32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "16/32-bit wersja GUI dla MS-Windows" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 64-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "64 bitowa wersja GUI dla MS-Windows" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "32 bitowa wersja GUI dla MS-Windows" - -#~ msgid " in Win32s mode" -#~ msgstr " w trybie Win32s" - -#~ msgid " with OLE support" -#~ msgstr " ze wspomaganiem OLE" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 64-bit console version" -#~ msgstr "" -#~ "\n" -#~ "32 bitowa wersja na konsol dla MS-Windows" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit console version" -#~ msgstr "" -#~ "\n" -#~ "32 bitowa wersja na konsol dla MS-Windows" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16-bit version" -#~ msgstr "" -#~ "\n" -#~ "16 bitowa wersja dla MS-Windows" - -#~ msgid "" -#~ "\n" -#~ "32-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ "32 bitowa wersja dla MS-DOS" - -#~ msgid "" -#~ "\n" -#~ "16-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ "16 bitowa wersja dla MS-DOS" - -#~ msgid "" -#~ "\n" -#~ "MacOS X (unix) version" -#~ msgstr "" -#~ "\n" -#~ "wersja dla MacOS X (unix)" - -#~ msgid "" -#~ "\n" -#~ "MacOS X version" -#~ msgstr "" -#~ "\n" -#~ "wersja dla MacOS X" - -#~ msgid "" -#~ "\n" -#~ "MacOS version" -#~ msgstr "" -#~ "\n" -#~ "wersja dla MacOS" - -#~ msgid "" -#~ "\n" -#~ "OpenVMS version" -#~ msgstr "" -#~ "\n" -#~ "wersja dla OpenVMS" - -#~ msgid "" -#~ "\n" -#~ "Big version " -#~ msgstr "" -#~ "\n" -#~ "Dua wersja " - -#~ msgid "" -#~ "\n" -#~ "Normal version " -#~ msgstr "" -#~ "\n" -#~ "Normalna wersja " - -#~ msgid "" -#~ "\n" -#~ "Small version " -#~ msgstr "" -#~ "\n" -#~ "Maa wersja " - -#~ msgid "" -#~ "\n" -#~ "Tiny version " -#~ msgstr "" -#~ "\n" -#~ "Malutka wersja " - -#~ msgid "with GTK2-GNOME GUI." -#~ msgstr "z GTK2-GNOME GUI." - -#~ msgid "with GTK2 GUI." -#~ msgstr "z GTK2 GUI." - -#~ msgid "with X11-Motif GUI." -#~ msgstr "z X11-Motif GUI." - -#~ msgid "with X11-neXtaw GUI." -#~ msgstr "z X11-neXtaw GUI." - -#~ msgid "with X11-Athena GUI." -#~ msgstr "z X11-Athena GUI." - -#~ msgid "with Photon GUI." -#~ msgstr "z Photon GUI." - -#~ msgid "with GUI." -#~ msgstr "z GUI." - -#~ msgid "with Carbon GUI." -#~ msgstr "z Carbon GUI." - -#~ msgid "with Cocoa GUI." -#~ msgstr "z Cocoa GUI." - -#~ msgid "with (classic) GUI." -#~ msgstr "z (klasycznym) GUI." - -#~ msgid " system gvimrc file: \"" -#~ msgstr " gvimrc systemu: \"" - -#~ msgid " user gvimrc file: \"" -#~ msgstr " gvimrc uytkownika: \"" - -#~ msgid "2nd user gvimrc file: \"" -#~ msgstr "2-gi plik gvimrc uytkownika: \"" - -#~ msgid "3rd user gvimrc file: \"" -#~ msgstr "3-ci plik gvimrc uytkownika: \"" - -#~ msgid " system menu file: \"" -#~ msgstr " systemowy plik menu: \"" - -#~ msgid "Compiler: " -#~ msgstr "Kompilator: " - -#~ msgid "menu Help->Orphans for information " -#~ msgstr "menu Pomoc->Sieroty dla informacji to tym " - -#~ msgid "Running modeless, typed text is inserted" -#~ msgstr "Uruchomiony bez trybw, wpisany tekst jest wprowadzany" - -#~ msgid "menu Edit->Global Settings->Toggle Insert Mode " -#~ msgstr "menu Edytuj->Ustawienia globalne->Tryb wstawiania" - -#~ msgid " for two modes " -#~ msgstr " dla dwch trybw " - -#~ msgid "menu Edit->Global Settings->Toggle Vi Compatible" -#~ msgstr "menu Edytuj->Ustawienia globalne->Kompatybilno z Vi" - -#~ msgid " for Vim defaults " -#~ msgstr " dla domylnych ustawie Vima " - -#~ msgid "WARNING: Windows 95/98/ME detected" -#~ msgstr "OSTRZEENIE: wykryto Windows 95/98/ME" - -#~ msgid "type :help windows95<Enter> for info on this" -#~ msgstr "wprowad :help windows95<Enter> dla informacji to tym " - -#~ msgid "E370: Could not load library %s" -#~ msgstr "E370: Nie mogem zaadowa biblioteki %s" - -#~ msgid "" -#~ "Sorry, this command is disabled: the Perl library could not be loaded." -#~ msgstr "" -#~ "Przykro mi, ta komenda jest wyczona: nie mogem zaadowa biblioteki " -#~ "Perla." - -#~ msgid "E299: Perl evaluation forbidden in sandbox without the Safe module" -#~ msgstr "E299: wyliczenie Perla zabronione w piaskownicy bez moduu Safe" - -#~ msgid "Edit with &multiple Vims" -#~ msgstr "Edytuj w &wielu Vimach" - -#~ msgid "Edit with single &Vim" -#~ msgstr "Edytuj w pojedynczym &Vimie" - -#~ msgid "Diff with Vim" -#~ msgstr "Diff z Vimem" - -#~ msgid "Edit with &Vim" -#~ msgstr "Edytuj w &Vimie" - -#~ msgid "Edit with existing Vim - " -#~ msgstr "Edytuj z istniejcym Vimem - " - -#~ msgid "Edits the selected file(s) with Vim" -#~ msgstr "Edytuj wybrane pliki w Vimie" - -#~ msgid "Error creating process: Check if gvim is in your path!" -#~ msgstr "Bd tworzenia procesu: Sprawd czy gvim jest w twojej ciece!" - -#~ msgid "gvimext.dll error" -#~ msgstr "bd gvimext.dll" - -#~ msgid "Path length too long!" -#~ msgstr "Za duga cieka!" - -#~ msgid "E234: Unknown fontset: %s" -#~ msgstr "E234: Nieznany zestaw czcionek: %s" - -#~ msgid "E235: Unknown font: %s" -#~ msgstr "E235: Nieznana czcionka: %s" - -#~ msgid "E236: Font \"%s\" is not fixed-width" -#~ msgstr "E236: Czcionka \"%s\" nie ma staej szerokoci znakw" - -#~ msgid "E448: Could not load library function %s" -#~ msgstr "E448: Nie mona zaadowa funkcji biblioteki %s" - -#~ msgid "E26: Hebrew cannot be used: Not enabled at compile time\n" -#~ msgstr "" -#~ "E26: Hebrajski nie moe by uyty: Nie wczono podczas kompilacji\n" - -#~ msgid "E27: Farsi cannot be used: Not enabled at compile time\n" -#~ msgstr "E27: Farsi nie moe by uyty: Nie wczono podczas kompilacji\n" - -#~ msgid "E800: Arabic cannot be used: Not enabled at compile time\n" -#~ msgstr "E800: Arabski nie moe by uyty: Nie wczono podczas kompilacji\n" - -#~ msgid "E247: no registered server named \"%s\"" -#~ msgstr "E247: brak zarejestrowanego serwera o nazwie \"%s\"" - -#~ msgid "E233: cannot open display" -#~ msgstr "E233: nie mog otworzy ekranu" - -#~ msgid "E449: Invalid expression received" -#~ msgstr "E449: Odebraem niewaciwe wyraenie" - -#~ msgid "E463: Region is guarded, cannot modify" -#~ msgstr "E463: Region jest chroniony, nie mog zmieni" - -#~ msgid "E744: NetBeans does not allow changes in read-only files" -#~ msgstr "E744: NetBeans nie zezwala na zmiany w plikach tylko do odczytu" - -#~ msgid "Need encryption key for \"%s\"" -#~ msgstr "Potrzebuj klucza szyfrowania dla \"%s\"" - -#~ msgid "empty keys are not allowed" -#~ msgstr "puste klucze nie s dozwolone" - -#~ msgid "dictionary is locked" -#~ msgstr "sownik jest zablokowany" - -#~ msgid "list is locked" -#~ msgstr "lista jest zablokowana" - -#~ msgid "failed to add key '%s' to dictionary" -#~ msgstr "nie powiodo si dodanie klucza '%s' do sownika" - -#~ msgid "index must be int or slice, not %s" -#~ msgstr "indeks musi by liczb lub wycinkiem, nie %s" - -#~ msgid "expected str() or unicode() instance, but got %s" -#~ msgstr "czekaem na str() lub unicode(), a dostaem %s" - -#~ msgid "expected bytes() or str() instance, but got %s" -#~ msgstr "czekaem na bytes() lub str(), a dostaem %s" - -#~ msgid "" -#~ "expected int(), long() or something supporting coercing to long(), but " -#~ "got %s" -#~ msgstr "" -#~ "czekaem na int(), long() lub co co mona zmieni na long(), ale " -#~ "dostaem %s" - -#~ msgid "expected int() or something supporting coercing to int(), but got %s" -#~ msgstr "" -#~ "czekaem na int() lub co co mona zmieni na int(), ale dostaem %s" - -#~ msgid "value is too large to fit into C int type" -#~ msgstr "warto zbyt dua by zmiecia si w typie int C" - -#~ msgid "value is too small to fit into C int type" -#~ msgstr "warto jest zbyt maa by zmiecia si w typie int C" - -#~ msgid "number must be greater then zero" -#~ msgstr "liczba musi by wiksza ni zero" - -#~ msgid "number must be greater or equal to zero" -#~ msgstr "liczba musi by wiksza lub mniejsza ni zero" - -#~ msgid "can't delete OutputObject attributes" -#~ msgstr "nie mog skasowa atrybutw OutputObject" - -#~ msgid "invalid attribute: %s" -#~ msgstr "niepoprawny atrybut: %s" - -#~ msgid "E264: Python: Error initialising I/O objects" -#~ msgstr "E264: Python: Bd w uruchomieniu obiektw I/O" - -#~ msgid "failed to change directory" -#~ msgstr "nie powioda si zmiana katalogu" - -#~ msgid "expected 3-tuple as imp.find_module() result, but got %s" -#~ msgstr "czekaem na 3-krotk jako wynik imp.find_module(), a dostaem %s" - -#~ msgid "" -#~ "expected 3-tuple as imp.find_module() result, but got tuple of size %d" -#~ msgstr "" -#~ "czekaem na 3-krotk jako wynik imp.find_module(), a dostaem krotk o " -#~ "wielkoci %d" - -#~ msgid "internal error: imp.find_module returned tuple with NULL" -#~ msgstr "wewntrzny bd: imp.find_module zwrci krotk z NULL" - -#~ msgid "cannot delete vim.Dictionary attributes" -#~ msgstr "nie mog usun atrybutw vim.Dictionary" - -#~ msgid "cannot modify fixed dictionary" -#~ msgstr "nie mog zmieni zablokowanego sownika" - -#~ msgid "cannot set attribute %s" -#~ msgstr "nie mog ustawi atrybutu %s" - -#~ msgid "hashtab changed during iteration" -#~ msgstr "hashtab zmieni si w czasie iteracji" - -#~ msgid "expected sequence element of size 2, but got sequence of size %d" -#~ msgstr "" -#~ "czekaem na element sekwencyjny od dugoci 2, a dostaem sekwencj o " -#~ "dugoci %d" - -#~ msgid "list constructor does not accept keyword arguments" -#~ msgstr "konstruktor listy nie akceptuje sw kluczowych jako argumentw" - -#~ msgid "list index out of range" -#~ msgstr "indeks listy poza zakresem" - -#~ msgid "internal error: failed to get vim list item %d" -#~ msgstr "bd wewntrzny: nie powiodo si pobranie z listy Vima elementu %d" - -#~ msgid "failed to add item to list" -#~ msgstr "nie powiodo si dodanie elementu do listy" - -#~ msgid "internal error: no vim list item %d" -#~ msgstr "bd wewntrzny: w licie Vima brak elementu %d" - -#~ msgid "internal error: failed to add item to list" -#~ msgstr "bd wewntrzny: nie powiodo si dodanie elementu do listy" - -#~ msgid "cannot delete vim.List attributes" -#~ msgstr "nie mog usun atrybutw vim.List" - -#~ msgid "cannot modify fixed list" -#~ msgstr "nie mog zmieni zablokowanej listy" - -#~ msgid "unnamed function %s does not exist" -#~ msgstr "nie nazwana funkcja %s nie istnieje" - -#~ msgid "function %s does not exist" -#~ msgstr "funkcja %s nie istnieje" - -#~ msgid "function constructor does not accept keyword arguments" -#~ msgstr "konstruktor funkcji nie akceptuje sw kluczowych jako argumentw" - -#~ msgid "failed to run function %s" -#~ msgstr "nie mog uruchomi funkcji %s" - -#~ msgid "problem while switching windows" -#~ msgstr "wystpi problem w czasie zmiany okien" - -#~ msgid "unable to unset global option %s" -#~ msgstr "nie mog wyzerowa opcji globalnej %s" - -#~ msgid "unable to unset option %s which does not have global value" -#~ msgstr "nie mog wyzerowa opcji %s, ktra nie ma wartoci globalnej" - -#~ msgid "attempt to refer to deleted tab page" -#~ msgstr "prba odniesienia do skasowanej karty" - -#~ msgid "no such tab page" -#~ msgstr "nie ma takiej karty" - -#~ msgid "attempt to refer to deleted window" -#~ msgstr "prba odniesienia do skasowanego okna" - -#~ msgid "readonly attribute: buffer" -#~ msgstr "atrybut tylko do odczytu: bufor" - -#~ msgid "cursor position outside buffer" -#~ msgstr "pozycja kursora poza buforem" - -#~ msgid "no such window" -#~ msgstr "nie ma takiego okna" - -#~ msgid "attempt to refer to deleted buffer" -#~ msgstr "prba odniesienia do skasowanego bufora" - -#~ msgid "failed to rename buffer" -#~ msgstr "nie powioda si zmiana nazwy bufora" - -#~ msgid "mark name must be a single character" -#~ msgstr "nazwa zakadki musi by pojedynczym znakiem" - -#~ msgid "expected vim.Buffer object, but got %s" -#~ msgstr "oczekiwaem na obiekt vim.Buffer, a dostaem %s" - -#~ msgid "failed to switch to buffer %d" -#~ msgstr "nie przeszedem do bufora %d" - -#~ msgid "expected vim.Window object, but got %s" -#~ msgstr "oczekiwaem na obiekt vim.Window, a dostaem %s" - -#~ msgid "failed to find window in the current tab page" -#~ msgstr "nie znaleziono okna na biecej karcie" - -#~ msgid "did not switch to the specified window" -#~ msgstr "nie przeszedem do okrelonego okna" - -#~ msgid "expected vim.TabPage object, but got %s" -#~ msgstr "oczekiwaem na obiekt vim.TabPage, a dostaem %s" - -#~ msgid "did not switch to the specified tab page" -#~ msgstr "nie przeszedem do okrelonej karty" - -#~ msgid "failed to run the code" -#~ msgstr "uruchomienie kodu si nie powiodo" - -#~ msgid "E858: Eval did not return a valid python object" -#~ msgstr "E858: eval nie zwrcio odpowiedniego obiektu pythona" - -#~ msgid "E859: Failed to convert returned python object to vim value" -#~ msgstr "E859: Nie powioda si konwersja obiektu pythona do wartoci Vima" - -#~ msgid "unable to convert %s to vim dictionary" -#~ msgstr "nie mona konwertowa %s do sownika Vima" - -#~ msgid "unable to convert %s to vim structure" -#~ msgstr "nie mona konwertowa %s do struktury Vima" - -#~ msgid "internal error: NULL reference passed" -#~ msgstr "bd wewntrzny: przekazano referencj NULL" - -#~ msgid "internal error: invalid value type" -#~ msgstr "bd wewntrzny: bdny typ wartoci" - -#~ msgid "" -#~ "Failed to set path hook: sys.path_hooks is not a list\n" -#~ "You should now do the following:\n" -#~ "- append vim.path_hook to sys.path_hooks\n" -#~ "- append vim.VIM_SPECIAL_PATH to sys.path\n" -#~ msgstr "" -#~ "Nie mog ustawi haka cieki: sys.path_hooks nie jest list\n" -#~ "Powiniene teraz wykona nastpujce czynnoci:\n" -#~ "- doda vim.path_hook do sys.path_hooks\n" -#~ "- doda vim.VIM_SPECIAL_PATH do sys.path\n" - -#~ msgid "" -#~ "Failed to set path: sys.path is not a list\n" -#~ "You should now append vim.VIM_SPECIAL_PATH to sys.path" -#~ msgstr "" -#~ "Nie mog ustawi cieki: sys.path nie jest list\n" -#~ "Powinno si teraz doda vim.VIM_SPECIAL_PATH do sys.path" - -#~ msgid "softspace must be an integer" -#~ msgstr "softspace musi by liczb cakowit" - -#~ msgid "<buffer object (deleted) at %p>" -#~ msgstr "<obiekt bufora (skasowany) w %p>" - -#~ msgid "" -#~ "E281: TCL ERROR: exit code is not int!? Please report this to vim-dev@vim." -#~ "org" -#~ msgstr "" -#~ "E281: BD TCL: kod zakoczeniowy nie jest cakowity!? Prosz zoy " -#~ "raport o tym na vim-dev@vim.org" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (RISC OS version):\n" -#~ msgstr "" -#~ "\n" -#~ "Argumenty rozpoznawane przez gvim (wersja RISC OS):\n" - -#~ msgid "--columns <number>\tInitial width of window in columns" -#~ msgstr "--columns <number>\tPocztkowa szeroko okna w kolumnach" - -#~ msgid "--rows <number>\tInitial height of window in rows" -#~ msgstr "--rows <number>\tPocztkowa wysoko okna w wierszach" - -#~ msgid "E505: " -#~ msgstr "E505: " - -#~ msgid "" -#~ "\n" -#~ "RISC OS version" -#~ msgstr "" -#~ "\n" -#~ "wersja dla RISC OS" - -#~ msgid "writelines() requires list of strings" -#~ msgstr "writelines() wymaga listy cigw" - -#~ msgid "<window object (deleted) at %p>" -#~ msgstr "<obiekt okna (skasowany) w %p>" - -#~ msgid "<window object (unknown) at %p>" -#~ msgstr "<obiekt okna (nieznany) w %p>" - -#~ msgid "<window %d>" -#~ msgstr "<okno %d>" - -#~ msgid "-name <name>\t\tUse resource as if vim was <name>" -#~ msgstr "-name <nazwa>\t\tUywaj zasobw tak jak by Vim by <nazwa>" - -#~ msgid "\t\t\t (Unimplemented)\n" -#~ msgstr "\t\t\t (Niezaimplementowane)\n" - -#~ msgid "E396: containedin argument not accepted here" -#~ msgstr "E396: argument containedin niedozwolony w tym miejscu" - -#~ msgid "Vim dialog..." -#~ msgstr "Dialog Vima..." - -#~ msgid "Font Selection" -#~ msgstr "Wybr czcionki" - -#~ msgid "E290: over-the-spot style requires fontset" -#~ msgstr "E290: styl nadpunktowy wymaga +fontset" - -#~ msgid "E291: Your GTK+ is older than 1.2.3. Status area disabled" -#~ msgstr "E291: Twj GTK+ jest starszy ni 1.2.3. Pole statusu wyczono" - -#~ msgid "E292: Input Method Server is not running" -#~ msgstr "E292: Serwer metod wprowadze nie jest uruchomiony" - -#~ msgid "with GTK-GNOME GUI." -#~ msgstr "z GTK-GNOME GUI." - -#~ msgid "with GTK GUI." -#~ msgstr "z GTK GUI." - -#~ msgid "[NL found]" -#~ msgstr "[znaleziono NL]" - -#~ msgid "E569: maximum number of cscope connections reached" -#~ msgstr "E569: wyczerpano maksymaln liczb pocze cscope" diff --git a/src/nvim/po/pl.po b/src/nvim/po/pl.po deleted file mode 100644 index c5734f0c49..0000000000 --- a/src/nvim/po/pl.po +++ /dev/null @@ -1,8260 +0,0 @@ -# translation of pl.po to Polish -# Polish Translation for Vim -# -# updated 2013 for vim-7.4 -# -# FIRST AUTHOR Marcin Dalecki <martin@dalecki.de>, 2000. -# Mikolaj Machowski <mikmach@wp.pl>, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2013. -msgid "" -msgstr "" -"Project-Id-Version: pl\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-26 14:21+0200\n" -"PO-Revision-Date: 2010-08-10 18:15+0200\n" -"Last-Translator: Mikolaj Machowski <mikmach@wp.pl>\n" -"Language: pl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ISO-8859-2\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.0\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" - -#: ../api/private/helpers.c:201 -#, fuzzy -msgid "Unable to get option value" -msgstr "nie mog pobra wartoci opcji" - -#: ../api/private/helpers.c:204 -msgid "internal error: unknown option type" -msgstr "bd wewntrzny: nieznany typ opcji" - -#: ../buffer.c:92 -msgid "[Location List]" -msgstr "[Lista lokacji]" - -#: ../buffer.c:93 -msgid "[Quickfix List]" -msgstr "[Lista quickfix]" - -#: ../buffer.c:94 -msgid "E855: Autocommands caused command to abort" -msgstr "E855: Autokomendy spowodoway porzucenie komendy" - -#: ../buffer.c:135 -msgid "E82: Cannot allocate any buffer, exiting..." -msgstr "E82: Nie mog zarezerwowa bufora; zakoczenie..." - -#: ../buffer.c:138 -msgid "E83: Cannot allocate buffer, using other one..." -msgstr "E83: Nie mog zarezerwowa bufora; uywam innego..." - -#: ../buffer.c:763 -msgid "E515: No buffers were unloaded" -msgstr "E515: Nie wyadowano adnego bufora" - -#: ../buffer.c:765 -msgid "E516: No buffers were deleted" -msgstr "E516: Nie skasowano adnego bufora" - -#: ../buffer.c:767 -msgid "E517: No buffers were wiped out" -msgstr "E517: Nie wyrzucono adnego bufora" - -#: ../buffer.c:772 -msgid "1 buffer unloaded" -msgstr "1 bufor wyadowany" - -#: ../buffer.c:774 -#, c-format -msgid "%d buffers unloaded" -msgstr "wyadowano %d buforw" - -#: ../buffer.c:777 -msgid "1 buffer deleted" -msgstr "1 bufor skasowany" - -#: ../buffer.c:779 -#, c-format -msgid "%d buffers deleted" -msgstr "%d buforw skasowano" - -#: ../buffer.c:782 -msgid "1 buffer wiped out" -msgstr "wyrzucono 1 bufor " - -#: ../buffer.c:784 -#, c-format -msgid "%d buffers wiped out" -msgstr "wyrzucono %d buforw" - -#: ../buffer.c:806 -msgid "E90: Cannot unload last buffer" -msgstr "E90: Nie mog wyadowa ostatniego bufora" - -#: ../buffer.c:874 -msgid "E84: No modified buffer found" -msgstr "E84: Nie znaleziono zmienionych buforw" - -#. back where we started, didn't find anything. -#: ../buffer.c:903 -msgid "E85: There is no listed buffer" -msgstr "E85: Nie ma wylistowanych buforw" - -#: ../buffer.c:913 -#, c-format -msgid "E86: Buffer %<PRId64> does not exist" -msgstr "E86: Bufor \"%<PRId64>\" nie istnieje" - -#: ../buffer.c:915 -msgid "E87: Cannot go beyond last buffer" -msgstr "E87: Nie mog przej poza ostatni bufor" - -#: ../buffer.c:917 -msgid "E88: Cannot go before first buffer" -msgstr "E88: Nie mog przej przed pierwszy bufor" - -#: ../buffer.c:945 -#, c-format -msgid "" -"E89: No write since last change for buffer %<PRId64> (add ! to override)" -msgstr "E89: Nie zapisano zmian w buforze %<PRId64> (wymu przez !)" - -#. wrap around (may cause duplicates) -#: ../buffer.c:1423 -msgid "W14: Warning: List of file names overflow" -msgstr "W14: OSTRZEENIE: Przepenienie listy nazw plikw" - -#: ../buffer.c:1555 ../quickfix.c:3361 -#, c-format -msgid "E92: Buffer %<PRId64> not found" -msgstr "E92: Nie znaleziono bufora %<PRId64>" - -#: ../buffer.c:1798 -#, c-format -msgid "E93: More than one match for %s" -msgstr "E93: Wielokrotne dopasowania dla %s" - -#: ../buffer.c:1800 -#, c-format -msgid "E94: No matching buffer for %s" -msgstr "E94: aden bufor nie pasuje do %s" - -#: ../buffer.c:2161 -#, c-format -msgid "line %<PRId64>" -msgstr "wiersz %<PRId64>" - -#: ../buffer.c:2233 -msgid "E95: Buffer with this name already exists" -msgstr "E95: Bufor o tej nazwie ju istnieje" - -#: ../buffer.c:2498 -msgid " [Modified]" -msgstr " [Zmieniony]" - -#: ../buffer.c:2501 -msgid "[Not edited]" -msgstr "[Nie edytowany]" - -#: ../buffer.c:2504 -msgid "[New file]" -msgstr "[Nowy Plik]" - -#: ../buffer.c:2505 -msgid "[Read errors]" -msgstr "[Bd odczytu]" - -#: ../buffer.c:2506 ../buffer.c:3217 ../fileio.c:1807 ../screen.c:4895 -msgid "[RO]" -msgstr "[RO]" - -#: ../buffer.c:2507 ../fileio.c:1807 -msgid "[readonly]" -msgstr "[tylko odczyt]" - -#: ../buffer.c:2524 -#, c-format -msgid "1 line --%d%%--" -msgstr "1 wiersz --%d%%--" - -#: ../buffer.c:2526 -#, c-format -msgid "%<PRId64> lines --%d%%--" -msgstr "%<PRId64> wiersze --%d%%--" - -#: ../buffer.c:2530 -#, c-format -msgid "line %<PRId64> of %<PRId64> --%d%%-- col " -msgstr "wiersz %<PRId64> z %<PRId64> --%d%%-- kol " - -#: ../buffer.c:2632 ../buffer.c:4292 ../memline.c:1554 -msgid "[No Name]" -msgstr "[Bez nazwy]" - -#. must be a help buffer -#: ../buffer.c:2667 -msgid "help" -msgstr "pomoc" - -#: ../buffer.c:3225 ../screen.c:4883 -msgid "[Help]" -msgstr "[Pomoc]" - -#: ../buffer.c:3254 ../screen.c:4887 -msgid "[Preview]" -msgstr "[Podgld]" - -#: ../buffer.c:3528 -msgid "All" -msgstr "Wszystko" - -#: ../buffer.c:3528 -msgid "Bot" -msgstr "D" - -#: ../buffer.c:3531 -msgid "Top" -msgstr "Gra" - -#: ../buffer.c:4244 -msgid "" -"\n" -"# Buffer list:\n" -msgstr "" -"\n" -"# Lista buforw:\n" - -#: ../buffer.c:4289 -msgid "[Scratch]" -msgstr "[Notka]" - -#: ../buffer.c:4529 -msgid "" -"\n" -"--- Signs ---" -msgstr "" -"\n" -"--- Znaki ---" - -#: ../buffer.c:4538 -#, c-format -msgid "Signs for %s:" -msgstr "Znaki dla %s:" - -#: ../buffer.c:4543 -#, c-format -msgid " line=%<PRId64> id=%d name=%s" -msgstr " wiersz=%<PRId64> id=%d nazwa=%s" - -#: ../cursor_shape.c:68 -msgid "E545: Missing colon" -msgstr "E545: Brak dwukropka" - -#: ../cursor_shape.c:70 ../cursor_shape.c:94 -msgid "E546: Illegal mode" -msgstr "E546: Niedozwolony tryb" - -#: ../cursor_shape.c:134 -msgid "E548: digit expected" -msgstr "E548: oczekiwaem na cyfr" - -#: ../cursor_shape.c:138 -msgid "E549: Illegal percentage" -msgstr "E549: Niedozwolony procent" - -#: ../diff.c:146 -#, c-format -msgid "E96: Can not diff more than %<PRId64> buffers" -msgstr "E96: Nie mog zrnicowa wicej ni %<PRId64> buforw" - -#: ../diff.c:753 -msgid "E810: Cannot read or write temp files" -msgstr "E810: Nie mog otworzy lub zapisa plikw tymczasowych" - -#: ../diff.c:755 -msgid "E97: Cannot create diffs" -msgstr "E97: Nie mog stworzy rnic" - -#: ../diff.c:966 -msgid "E816: Cannot read patch output" -msgstr "E816: Nie mog odczyta wyjcia pliku aty" - -#: ../diff.c:1220 -msgid "E98: Cannot read diff output" -msgstr "E98: Nie mog wczyta wyjcia rnicy" - -#: ../diff.c:2081 -msgid "E99: Current buffer is not in diff mode" -msgstr "E99: Biecy bufor nie jest w trybie rnic" - -#: ../diff.c:2100 -msgid "E793: No other buffer in diff mode is modifiable" -msgstr "E793: aden inny bufor w trybie diff nie jest modyfikowalny" - -#: ../diff.c:2102 -msgid "E100: No other buffer in diff mode" -msgstr "E100: Brak innego bufora w trybie rnic" - -#: ../diff.c:2112 -msgid "E101: More than two buffers in diff mode, don't know which one to use" -msgstr "" -"E101: Wicej ni jeden bufor w trybie rnicowania, nie wiem ktrego uy" - -#: ../diff.c:2141 -#, c-format -msgid "E102: Can't find buffer \"%s\"" -msgstr "E102: Nie mog znale bufora \"%s\"" - -#: ../diff.c:2152 -#, c-format -msgid "E103: Buffer \"%s\" is not in diff mode" -msgstr "E103: Bufor \"%s\" nie jest w trybie rnicowania" - -#: ../diff.c:2193 -msgid "E787: Buffer changed unexpectedly" -msgstr "E787: Nieoczekiwana zmiana bufora" - -#: ../digraph.c:1598 -msgid "E104: Escape not allowed in digraph" -msgstr "E104: Escape jest niedozwolone w dwugrafie" - -#: ../digraph.c:1760 -msgid "E544: Keymap file not found" -msgstr "E544: Nie znaleziono pliku rozkadu klawiszy" - -#: ../digraph.c:1785 -msgid "E105: Using :loadkeymap not in a sourced file" -msgstr "E105: Zastosowano :loadkeymap w niewczytanym pliku" - -#: ../digraph.c:1821 -msgid "E791: Empty keymap entry" -msgstr "E791: Pusty wpis keymap" - -#: ../edit.c:82 -msgid " Keyword completion (^N^P)" -msgstr " Dopenianie sw kluczowych (^N^P)" - -#. ctrl_x_mode == 0, ^P/^N compl. -#: ../edit.c:83 -msgid " ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" -msgstr " ^X tryb (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" - -#: ../edit.c:85 -msgid " Whole line completion (^L^N^P)" -msgstr " Dopenianie penych wierszy (^L^N^P)" - -#: ../edit.c:86 -msgid " File name completion (^F^N^P)" -msgstr " Dopenianie nazw plikw (^F^N^P)" - -#: ../edit.c:87 -msgid " Tag completion (^]^N^P)" -msgstr " Dopenianie znacznikw (^]^N^P)" - -#: ../edit.c:88 -msgid " Path pattern completion (^N^P)" -msgstr " Dopenianie wzorcw tropw (^N^P)" - -#: ../edit.c:89 -msgid " Definition completion (^D^N^P)" -msgstr " Dopenianie definicji (^D^N^P)" - -#: ../edit.c:91 -msgid " Dictionary completion (^K^N^P)" -msgstr " Dopenianie ze sownikw (^K^N^P)" - -#: ../edit.c:92 -msgid " Thesaurus completion (^T^N^P)" -msgstr " Dopenianie z tezaurusa (^T^N^P)" - -#: ../edit.c:93 -msgid " Command-line completion (^V^N^P)" -msgstr " Dopenianie wiersza polece (^V^N^P)" - -#: ../edit.c:94 -msgid " User defined completion (^U^N^P)" -msgstr "Dopenianie zdefiniowane przez uytkownika (^U^N^P)" - -#: ../edit.c:95 -msgid " Omni completion (^O^N^P)" -msgstr " Omni uzupenianie (^O^N^P)" - -#: ../edit.c:96 -msgid " Spelling suggestion (s^N^P)" -msgstr "Propozycja pisowni (^L^N^P)" - -#: ../edit.c:97 -msgid " Keyword Local completion (^N^P)" -msgstr " Lokalne dopenianie sw kluczowych (^N^P)" - -#: ../edit.c:100 -msgid "Hit end of paragraph" -msgstr "Dobiem do koca akapitu" - -#: ../edit.c:101 -msgid "E839: Completion function changed window" -msgstr "E839: Funkcja uzupeniania zmienia okno" - -#: ../edit.c:102 -msgid "E840: Completion function deleted text" -msgstr "E840: Funkcja uzupenania usuna tekst" - -#: ../edit.c:1847 -msgid "'dictionary' option is empty" -msgstr "opcja 'dictionary' jest pusta" - -#: ../edit.c:1848 -msgid "'thesaurus' option is empty" -msgstr "opcja 'thesaurus' jest pusta" - -#: ../edit.c:2655 -#, c-format -msgid "Scanning dictionary: %s" -msgstr "Przegldam sownik: %s" - -#: ../edit.c:3079 -msgid " (insert) Scroll (^E/^Y)" -msgstr " (wprowadzanie) Przewijanie (^E/^Y)" - -#: ../edit.c:3081 -msgid " (replace) Scroll (^E/^Y)" -msgstr " (zamiana) Przewijanie (^E/^Y)" - -#: ../edit.c:3587 -#, c-format -msgid "Scanning: %s" -msgstr "Przegldam: %s" - -#: ../edit.c:3614 -msgid "Scanning tags." -msgstr "Przegldam znaczniki." - -#: ../edit.c:4519 -msgid " Adding" -msgstr " Dodaj" - -#. showmode might reset the internal line pointers, so it must -#. * be called before line = ml_get(), or when this address is no -#. * longer needed. -- Acevedo. -#. -#: ../edit.c:4562 -msgid "-- Searching..." -msgstr "-- Szukam..." - -#: ../edit.c:4618 -msgid "Back at original" -msgstr "Z powrotem na pierwotnym" - -#: ../edit.c:4621 -msgid "Word from other line" -msgstr "Wyraz z innego wiersza" - -#: ../edit.c:4624 -msgid "The only match" -msgstr "Jedyne dopasowanie" - -#: ../edit.c:4680 -#, c-format -msgid "match %d of %d" -msgstr "pasuje %d z %d" - -#: ../edit.c:4684 -#, c-format -msgid "match %d" -msgstr "pasuje %d" - -#: ../eval.c:137 -msgid "E18: Unexpected characters in :let" -msgstr "E18: Nieoczekiwane znaki w :let" - -#: ../eval.c:138 -#, c-format -msgid "E684: list index out of range: %<PRId64>" -msgstr "E684: Indeks listy poza zakresem: %<PRId64>" - -#: ../eval.c:139 -#, c-format -msgid "E121: Undefined variable: %s" -msgstr "E121: Nieokrelona zmienna: %s" - -#: ../eval.c:140 -msgid "E111: Missing ']'" -msgstr "E111: Brak ']'" - -#: ../eval.c:141 -#, c-format -msgid "E686: Argument of %s must be a List" -msgstr "E686: Argument %s musi by List" - -#: ../eval.c:143 -#, c-format -msgid "E712: Argument of %s must be a List or Dictionary" -msgstr "E712: Argument %s musi by List lub Sownikiem" - -#: ../eval.c:144 -msgid "E713: Cannot use empty key for Dictionary" -msgstr "E713: Nie mona uy pustego klucza dla Sownika" - -#: ../eval.c:145 -msgid "E714: List required" -msgstr "E714: wymagana Lista" - -#: ../eval.c:146 -msgid "E715: Dictionary required" -msgstr "E715: wymagany Sownik" - -#: ../eval.c:147 -#, c-format -msgid "E118: Too many arguments for function: %s" -msgstr "E118: Zbyt wiele argumentw dla funkcji: %s" - -#: ../eval.c:148 -#, c-format -msgid "E716: Key not present in Dictionary: %s" -msgstr "E716: Klucz nie istnieje w Sowniku: %s" - -#: ../eval.c:150 -#, c-format -msgid "E122: Function %s already exists, add ! to replace it" -msgstr "E122: Funkcja %s ju istnieje; aby j zamieni uyj !" - -#: ../eval.c:151 -msgid "E717: Dictionary entry already exists" -msgstr "E717: istnieje ju taki element Sownika" - -#: ../eval.c:152 -msgid "E718: Funcref required" -msgstr "E718: wymagana Funcref" - -#: ../eval.c:153 -msgid "E719: Cannot use [:] with a Dictionary" -msgstr "E719: Nie mona uy [:] przy Sowniku" - -#: ../eval.c:154 -#, c-format -msgid "E734: Wrong variable type for %s=" -msgstr "E734: Zy typ zmiennej dla %s=" - -#: ../eval.c:155 -#, c-format -msgid "E130: Unknown function: %s" -msgstr "E130: Nieznana funkcja: %s" - -#: ../eval.c:156 -#, c-format -msgid "E461: Illegal variable name: %s" -msgstr "E461: Niedozwolona nazwa zmiennej: %s" - -#: ../eval.c:157 -msgid "E806: using Float as a String" -msgstr "E806: Uycie Zmiennoprzecinkowej jako acucha" - -#: ../eval.c:1830 -msgid "E687: Less targets than List items" -msgstr "E687: Mniej celw ni elementw Listy" - -#: ../eval.c:1834 -msgid "E688: More targets than List items" -msgstr "E688: Wicej celw ni elementw Listy" - -#: ../eval.c:1906 -msgid "Double ; in list of variables" -msgstr "Podwjny ; w licie zmiennych" - -#: ../eval.c:2078 -#, c-format -msgid "E738: Can't list variables for %s" -msgstr "E738: Nie mog wypisa zmiennych dla %s" - -#: ../eval.c:2391 -msgid "E689: Can only index a List or Dictionary" -msgstr "E689: Indeks moe istnie tylko dla Listy lub Sownika" - -#: ../eval.c:2396 -msgid "E708: [:] must come last" -msgstr "E708: [:] musi by ostatnie" - -#: ../eval.c:2439 -msgid "E709: [:] requires a List value" -msgstr "E709: [:] wymaga wartoci listy" - -#: ../eval.c:2674 -msgid "E710: List value has more items than target" -msgstr "E710: Lista ma wicej elementw ni cel" - -#: ../eval.c:2678 -msgid "E711: List value has not enough items" -msgstr "E711: Lista nie ma wystarczajcej iloci elementw" - -#: ../eval.c:2867 -msgid "E690: Missing \"in\" after :for" -msgstr "E690: Brak \"in\" po :for" - -#: ../eval.c:3063 -#, c-format -msgid "E107: Missing parentheses: %s" -msgstr "E107: Brak nawiasw: %s" - -#: ../eval.c:3263 -#, c-format -msgid "E108: No such variable: \"%s\"" -msgstr "E108: Nie istnieje zmienna: \"%s\"" - -#: ../eval.c:3333 -msgid "E743: variable nested too deep for (un)lock" -msgstr "E743: zmienna zagniedona zbyt gboko dla (un)lock" - -#: ../eval.c:3630 -msgid "E109: Missing ':' after '?'" -msgstr "E109: Brak ':' po '?'" - -#: ../eval.c:3893 -msgid "E691: Can only compare List with List" -msgstr "E691: List mog porwna tylko z List" - -#: ../eval.c:3895 -msgid "E692: Invalid operation for Lists" -msgstr "E692: Nieprawidowa operacja dla Listy" - -#: ../eval.c:3915 -msgid "E735: Can only compare Dictionary with Dictionary" -msgstr "E735: Sownik mog porwna tylko ze Sownikiem" - -#: ../eval.c:3917 -msgid "E736: Invalid operation for Dictionary" -msgstr "E736: Nieprawidowa operacja dla Sownika" - -#: ../eval.c:3932 -msgid "E693: Can only compare Funcref with Funcref" -msgstr "E693: Funcref mog porwna tylko z Funcref" - -#: ../eval.c:3934 -msgid "E694: Invalid operation for Funcrefs" -msgstr "E694: Nieprawidowa operacja dla Funcref" - -#: ../eval.c:4277 -msgid "E804: Cannot use '%' with Float" -msgstr "E804: Nie mog uy '%' w Zmiennoprzecinkowej" - -#: ../eval.c:4478 -msgid "E110: Missing ')'" -msgstr "E110: Brak ')'" - -#: ../eval.c:4609 -msgid "E695: Cannot index a Funcref" -msgstr "E695: Nie mona zindeksowa Funcref" - -#: ../eval.c:4839 -#, c-format -msgid "E112: Option name missing: %s" -msgstr "E112: Brak nazwy opcji: %s" - -#: ../eval.c:4855 -#, c-format -msgid "E113: Unknown option: %s" -msgstr "E113: Nieznana opcja: %s" - -#: ../eval.c:4904 -#, c-format -msgid "E114: Missing quote: %s" -msgstr "E114: Brak cudzysowu: %s" - -#: ../eval.c:5020 -#, c-format -msgid "E115: Missing quote: %s" -msgstr "E115: Brak cudzysowu: %s" - -#: ../eval.c:5084 -#, c-format -msgid "E696: Missing comma in List: %s" -msgstr "E696: Brakujcy przecinek w Licie: '%s" - -#: ../eval.c:5091 -#, c-format -msgid "E697: Missing end of List ']': %s" -msgstr "E697: Brak zakoczenia Listy ']': %s" - -#: ../eval.c:6475 -#, c-format -msgid "E720: Missing colon in Dictionary: %s" -msgstr "E720: Brak dwukropka w Sowniku: %s" - -#: ../eval.c:6499 -#, c-format -msgid "E721: Duplicate key in Dictionary: \"%s\"" -msgstr "E721: Powtrzony klucz w Sowniku: \"%s\"" - -#: ../eval.c:6517 -#, c-format -msgid "E722: Missing comma in Dictionary: %s" -msgstr "E722: Brakujcy przecinek w Sowniku: %s" - -#: ../eval.c:6524 -#, c-format -msgid "E723: Missing end of Dictionary '}': %s" -msgstr "E723: Brak koca w Sowniku '}': %s" - -#: ../eval.c:6555 -msgid "E724: variable nested too deep for displaying" -msgstr "E724: Zmienna zagniedona zbyt gboko by pokaza" - -#: ../eval.c:7188 -#, c-format -msgid "E740: Too many arguments for function %s" -msgstr "E740: Zbyt wiele argumentw dla funkcji %s" - -#: ../eval.c:7190 -#, c-format -msgid "E116: Invalid arguments for function %s" -msgstr "E116: Zbyt wiele argumentw dla funkcji %s" - -#: ../eval.c:7377 -#, c-format -msgid "E117: Unknown function: %s" -msgstr "E117: Nieznana funkcja: %s" - -#: ../eval.c:7383 -#, c-format -msgid "E119: Not enough arguments for function: %s" -msgstr "E119: Za mao argumentw dla funkcji: %s" - -#: ../eval.c:7387 -#, c-format -msgid "E120: Using <SID> not in a script context: %s" -msgstr "E120: Uycie <SID> poza kontekstem skryptu: %s" - -#: ../eval.c:7391 -#, c-format -msgid "E725: Calling dict function without Dictionary: %s" -msgstr "E725: Wywoanie funkcji \"dict\" bez Sownika: %s" - -#: ../eval.c:7453 -msgid "E808: Number or Float required" -msgstr "E808: Wymagana Liczba lub Zmiennoprzecinkowa" - -#: ../eval.c:7503 -msgid "add() argument" -msgstr "argument add()" - -#: ../eval.c:7907 -msgid "E699: Too many arguments" -msgstr "E699: Za duo argumentw" - -#: ../eval.c:8073 -msgid "E785: complete() can only be used in Insert mode" -msgstr "E785: complete() moe by uyte tylko w trybie Wprowadzania" - -#: ../eval.c:8156 -msgid "&Ok" -msgstr "&Ok" - -#: ../eval.c:8676 -#, c-format -msgid "E737: Key already exists: %s" -msgstr "E737: Klucz ju istnieje: %s" - -#: ../eval.c:8692 -msgid "extend() argument" -msgstr "argument extend()" - -#: ../eval.c:8915 -msgid "map() argument" -msgstr "argument map()" - -#: ../eval.c:8916 -msgid "filter() argument" -msgstr "argument filter()" - -#: ../eval.c:9229 -#, c-format -msgid "+-%s%3ld lines: " -msgstr "+-%s%3ld wierszy: " - -#: ../eval.c:9291 -#, c-format -msgid "E700: Unknown function: %s" -msgstr "E700: Nieznana funkcja: %s" - -#: ../eval.c:10729 -msgid "called inputrestore() more often than inputsave()" -msgstr "wywoano inputrestore() wicej razy ni inputsave()" - -#: ../eval.c:10771 -msgid "insert() argument" -msgstr "argument insert()" - -#: ../eval.c:10841 -msgid "E786: Range not allowed" -msgstr "E786: Zakres niedozwolony" - -#: ../eval.c:11140 -msgid "E701: Invalid type for len()" -msgstr "E701: Nieprawidowy typ dla len()" - -#: ../eval.c:11980 -msgid "E726: Stride is zero" -msgstr "E726: Skok to zero" - -#: ../eval.c:11982 -msgid "E727: Start past end" -msgstr "E727: Pocztek po kocu" - -#: ../eval.c:12024 ../eval.c:15297 -msgid "<empty>" -msgstr "<pusty>" - -#: ../eval.c:12282 -msgid "remove() argument" -msgstr "argument remove()" - -#: ../eval.c:12466 -msgid "E655: Too many symbolic links (cycle?)" -msgstr "E655: Za duo dowiza symbolicznych (ptla?)" - -#: ../eval.c:12593 -msgid "reverse() argument" -msgstr "argument reverse()" - -#: ../eval.c:13721 -msgid "sort() argument" -msgstr "argument sort()" - -#: ../eval.c:13721 -#, fuzzy -msgid "uniq() argument" -msgstr "argument add()" - -#: ../eval.c:13776 -msgid "E702: Sort compare function failed" -msgstr "E702: Funkcja porwnywania w sort nie powioda si" - -#: ../eval.c:13806 -#, fuzzy -msgid "E882: Uniq compare function failed" -msgstr "E702: Funkcja porwnywania w sort nie powioda si" - -#: ../eval.c:14085 -msgid "(Invalid)" -msgstr "(Niewaciwe)" - -#: ../eval.c:14590 -msgid "E677: Error writing temp file" -msgstr "E677: Bd zapisywania pliku tymczasowego" - -#: ../eval.c:16159 -msgid "E805: Using a Float as a Number" -msgstr "E805: Uycie Zmiennoprzecinkowej jako Liczby" - -#: ../eval.c:16162 -msgid "E703: Using a Funcref as a Number" -msgstr "E703: Uycie Funcref jako Liczby" - -#: ../eval.c:16170 -msgid "E745: Using a List as a Number" -msgstr "E745: Uycie Listy jako Liczby" - -#: ../eval.c:16173 -msgid "E728: Using a Dictionary as a Number" -msgstr "E728: Uycie Sownika jako Liczby" - -#: ../eval.c:16259 -msgid "E729: using Funcref as a String" -msgstr "E729: Uycie Funcref jako acucha" - -#: ../eval.c:16262 -msgid "E730: using List as a String" -msgstr "E730: Uycie Listy jako acucha" - -#: ../eval.c:16265 -msgid "E731: using Dictionary as a String" -msgstr "E731: Uycie Sownika jako acucha" - -#: ../eval.c:16619 -#, c-format -msgid "E706: Variable type mismatch for: %s" -msgstr "E706: Nieprawidowy typ zmiennej dla: %s" - -#: ../eval.c:16705 -#, c-format -msgid "E795: Cannot delete variable %s" -msgstr "E795: Nie mog usun zmiennej %s" - -#: ../eval.c:16724 -#, c-format -msgid "E704: Funcref variable name must start with a capital: %s" -msgstr "E704: Nazwa Funcref musi si zaczyna wielk liter: %s" - -#: ../eval.c:16732 -#, c-format -msgid "E705: Variable name conflicts with existing function: %s" -msgstr "E705: Nazwa zmiennej jest w konflikcie z istniejc funkcj: %s" - -#: ../eval.c:16763 -#, c-format -msgid "E741: Value is locked: %s" -msgstr "E741: Warto jest zablokowana: %s" - -#: ../eval.c:16764 ../eval.c:16769 ../message.c:1839 -msgid "Unknown" -msgstr "Nieznane" - -#: ../eval.c:16768 -#, c-format -msgid "E742: Cannot change value of %s" -msgstr "E742: Nie mog zmieni wartoci %s" - -#: ../eval.c:16838 -msgid "E698: variable nested too deep for making a copy" -msgstr "E698: Zmienna zagniedona zbyt gboko by zrobi kopi" - -#: ../eval.c:17249 -#, c-format -msgid "E123: Undefined function: %s" -msgstr "E123: Nieznana funkcja: %s" - -#: ../eval.c:17260 -#, c-format -msgid "E124: Missing '(': %s" -msgstr "E124: Brak '(': %s" - -#: ../eval.c:17293 -msgid "E862: Cannot use g: here" -msgstr "E862: Nie mona tutaj uy g:" - -#: ../eval.c:17312 -#, c-format -msgid "E125: Illegal argument: %s" -msgstr "E125: Niedozwolony argument: %s" - -#: ../eval.c:17323 -#, c-format -msgid "E853: Duplicate argument name: %s" -msgstr "E853: Powtrzona nazwa argumentu: %s" - -#: ../eval.c:17416 -msgid "E126: Missing :endfunction" -msgstr "E126: Brak :endfunction" - -#: ../eval.c:17537 -#, c-format -msgid "E707: Function name conflicts with variable: %s" -msgstr "E707: Nazwa funkcji jest w konflikcie ze zmienn: %s" - -#: ../eval.c:17549 -#, c-format -msgid "E127: Cannot redefine function %s: It is in use" -msgstr "E127: Nie mog redefiniowa funkcji %s: jest w uyciu" - -#: ../eval.c:17604 -#, c-format -msgid "E746: Function name does not match script file name: %s" -msgstr "E746: Nazwa funkcji nie pasuje do nazwy skryptu: %s" - -#: ../eval.c:17716 -msgid "E129: Function name required" -msgstr "E129: Wymagana jest nazwa funkcji" - -#: ../eval.c:17824 -#, fuzzy, c-format -msgid "E128: Function name must start with a capital or \"s:\": %s" -msgstr "" -"E128: Nazwa funkcji musi rozpoczyna si wielk liter lub zawiera " -"dwukropek: %s" - -#: ../eval.c:17833 -#, fuzzy, c-format -msgid "E884: Function name cannot contain a colon: %s" -msgstr "" -"E128: Nazwa funkcji musi rozpoczyna si wielk liter lub zawiera " -"dwukropek: %s" - -#: ../eval.c:18336 -#, c-format -msgid "E131: Cannot delete function %s: It is in use" -msgstr "E131: Nie mog skasowa funkcji %s: jest w uyciu" - -#: ../eval.c:18441 -msgid "E132: Function call depth is higher than 'maxfuncdepth'" -msgstr "E132: Zagniedenie wywoa funkcji ponad 'maxfuncdepth'" - -#: ../eval.c:18568 -#, c-format -msgid "calling %s" -msgstr "wywouj %s" - -#: ../eval.c:18651 -#, c-format -msgid "%s aborted" -msgstr "porzucono %s" - -#: ../eval.c:18653 -#, c-format -msgid "%s returning #%<PRId64>" -msgstr "%s zwraca #%<PRId64>" - -#: ../eval.c:18670 -#, c-format -msgid "%s returning %s" -msgstr "%s zwraca %s" - -#: ../eval.c:18691 ../ex_cmds2.c:2695 -#, c-format -msgid "continuing in %s" -msgstr "kontynuacja w %s" - -#: ../eval.c:18795 -msgid "E133: :return not inside a function" -msgstr "E133: :return poza funkcj" - -#: ../eval.c:19159 -msgid "" -"\n" -"# global variables:\n" -msgstr "" -"\n" -"# zmienne globalne:\n" - -#: ../eval.c:19254 -msgid "" -"\n" -"\tLast set from " -msgstr "" -"\n" -"\tOstatnie ustawienie przez " - -#: ../eval.c:19272 -msgid "No old files" -msgstr "Brak starych plikw" - -#: ../ex_cmds.c:122 -#, c-format -msgid "<%s>%s%s %d, Hex %02x, Octal %03o" -msgstr "<%s>%s%s %d, Hex %02x, Oktal %03o" - -#: ../ex_cmds.c:145 -#, c-format -msgid "> %d, Hex %04x, Octal %o" -msgstr "> %d, Hex %04x, Oktal %o" - -#: ../ex_cmds.c:146 -#, c-format -msgid "> %d, Hex %08x, Octal %o" -msgstr "> %d, Hex %08x, Oktal %o" - -#: ../ex_cmds.c:684 -msgid "E134: Move lines into themselves" -msgstr "E134: Przeniesienie wierszy na siebie samych" - -#: ../ex_cmds.c:747 -msgid "1 line moved" -msgstr "1 wiersz przeniesiony" - -#: ../ex_cmds.c:749 -#, c-format -msgid "%<PRId64> lines moved" -msgstr "%<PRId64> wiersze przeniesione" - -#: ../ex_cmds.c:1175 -#, c-format -msgid "%<PRId64> lines filtered" -msgstr "%<PRId64> wierszy przefiltrowanych" - -#: ../ex_cmds.c:1194 -msgid "E135: *Filter* Autocommands must not change current buffer" -msgstr "E135: Autokomendy *Filter* nie mog zmienia biecego bufora" - -#: ../ex_cmds.c:1244 -msgid "[No write since last change]\n" -msgstr "[Brak zapisu od czasu ostatniej zmiany]\n" - -#: ../ex_cmds.c:1424 -#, c-format -msgid "%sviminfo: %s in line: " -msgstr "%sviminfo: %s w wierszu: " - -#: ../ex_cmds.c:1431 -msgid "E136: viminfo: Too many errors, skipping rest of file" -msgstr "E136: viminfo: Zbyt wiele bdw; pomijam reszt pliku" - -#: ../ex_cmds.c:1458 -#, c-format -msgid "Reading viminfo file \"%s\"%s%s%s" -msgstr "Wczytuj plik viminfo \"%s\"%s%s%s" - -#: ../ex_cmds.c:1460 -msgid " info" -msgstr " informacja" - -#: ../ex_cmds.c:1461 -msgid " marks" -msgstr " zakadki" - -#: ../ex_cmds.c:1462 -msgid " oldfiles" -msgstr " stare pliki" - -#: ../ex_cmds.c:1463 -msgid " FAILED" -msgstr " NIE POWIODO SI" - -#. avoid a wait_return for this message, it's annoying -#: ../ex_cmds.c:1541 -#, c-format -msgid "E137: Viminfo file is not writable: %s" -msgstr "E137: Plik viminfo jest niezapisywalny: %s" - -#: ../ex_cmds.c:1626 -#, c-format -msgid "E138: Can't write viminfo file %s!" -msgstr "E138: Nie mog zapisa pliku viminfo %s!" - -#: ../ex_cmds.c:1635 -#, c-format -msgid "Writing viminfo file \"%s\"" -msgstr "Zapisuj plik viminfo \"%s\"" - -#. Write the info: -#: ../ex_cmds.c:1720 -#, c-format -msgid "# This viminfo file was generated by Vim %s.\n" -msgstr "# Ten plik viminfo zosta wygenerowany przez Vima %s.\n" - -#: ../ex_cmds.c:1722 -msgid "" -"# You may edit it if you're careful!\n" -"\n" -msgstr "" -"# Moesz go ostronie edytowa!\n" -"\n" - -#: ../ex_cmds.c:1723 -msgid "# Value of 'encoding' when this file was written\n" -msgstr "# Warto 'encoding' w czasie zapisu tego pliku\n" - -#: ../ex_cmds.c:1800 -msgid "Illegal starting char" -msgstr "Niedopuszczalny pocztkowy znak" - -#: ../ex_cmds.c:2162 -msgid "Write partial file?" -msgstr "Zapisa czciowo plik?" - -#: ../ex_cmds.c:2166 -msgid "E140: Use ! to write partial buffer" -msgstr "E140: Stosuj ! do zapisania czciowo bufora" - -#: ../ex_cmds.c:2281 -#, c-format -msgid "Overwrite existing file \"%s\"?" -msgstr "Nadpisa istniejcy plik \"%s\"?" - -#: ../ex_cmds.c:2317 -#, c-format -msgid "Swap file \"%s\" exists, overwrite anyway?" -msgstr "Plik wymiany \"%s\" istnieje, czy go nadpisa?" - -#: ../ex_cmds.c:2326 -#, c-format -msgid "E768: Swap file exists: %s (:silent! overrides)" -msgstr "E768: Plik wymiany istnieje: %s (wymu poprzez :silent!)" - -#: ../ex_cmds.c:2381 -#, c-format -msgid "E141: No file name for buffer %<PRId64>" -msgstr "E141: Brak nazwy pliku dla bufora %<PRId64>" - -#: ../ex_cmds.c:2412 -msgid "E142: File not written: Writing is disabled by 'write' option" -msgstr "E142: Plik niezapisany: Zapis jest wyczony opcj 'write'" - -#: ../ex_cmds.c:2434 -#, c-format -msgid "" -"'readonly' option is set for \"%s\".\n" -"Do you wish to write anyway?" -msgstr "" -"opcja 'readonly' nastawiona dla \"%s\".\n" -"Czy chcesz go pomimo tego zapisa?" - -#: ../ex_cmds.c:2439 -#, c-format -msgid "" -"File permissions of \"%s\" are read-only.\n" -"It may still be possible to write it.\n" -"Do you wish to try?" -msgstr "" -"Prawa pliku \"%s\" s tylko do odczytu.\n" -"Mimo to by moe uda si zmieni ten plik.\n" -"Chcesz sprbowa?" - -#: ../ex_cmds.c:2451 -#, c-format -msgid "E505: \"%s\" is read-only (add ! to override)" -msgstr "E505: \"%s\" jest tylko do odczytu (dodaj ! aby wymusi)" - -#: ../ex_cmds.c:3120 -#, c-format -msgid "E143: Autocommands unexpectedly deleted new buffer %s" -msgstr "E143: Autokomendy nieoczekiwanie skasoway nowy bufor %s" - -#: ../ex_cmds.c:3313 -msgid "E144: non-numeric argument to :z" -msgstr "E144: nienumeryczny argument dla :z" - -#: ../ex_cmds.c:3404 -msgid "E145: Shell commands not allowed in rvim" -msgstr "E145: Komendy powoki s niedozwolone w rvim" - -#: ../ex_cmds.c:3498 -msgid "E146: Regular expressions can't be delimited by letters" -msgstr "E146: Wzorce regularne nie mog by rozgraniczane literami" - -#: ../ex_cmds.c:3964 -#, c-format -msgid "replace with %s (y/n/a/q/l/^E/^Y)?" -msgstr "zamie na %s (y/n/a/q/l/^E/^Y)?" - -#: ../ex_cmds.c:4379 -msgid "(Interrupted) " -msgstr "(Przerwane) " - -#: ../ex_cmds.c:4384 -msgid "1 match" -msgstr "1 pasuje" - -#: ../ex_cmds.c:4384 -msgid "1 substitution" -msgstr "1 podstawienie " - -#: ../ex_cmds.c:4387 -#, c-format -msgid "%<PRId64> matches" -msgstr "%<PRId64> dopasowa" - -#: ../ex_cmds.c:4388 -#, c-format -msgid "%<PRId64> substitutions" -msgstr "%<PRId64> podstawie" - -#: ../ex_cmds.c:4392 -msgid " on 1 line" -msgstr " w 1 wierszu" - -#: ../ex_cmds.c:4395 -#, c-format -msgid " on %<PRId64> lines" -msgstr " w %<PRId64> wierszach" - -#: ../ex_cmds.c:4438 -msgid "E147: Cannot do :global recursive" -msgstr "E147: Nie mog wykona :global rekursywnie" - -#: ../ex_cmds.c:4467 -msgid "E148: Regular expression missing from global" -msgstr "E148: Brak wzorca regularnego w :global" - -# c-format -#: ../ex_cmds.c:4508 -#, c-format -msgid "Pattern found in every line: %s" -msgstr "Wzorzec znaleziono w kadym wierszu: %s" - -#: ../ex_cmds.c:4510 -#, c-format -msgid "Pattern not found: %s" -msgstr "Nie znaleziono wzorca: %s" - -#: ../ex_cmds.c:4587 -msgid "" -"\n" -"# Last Substitute String:\n" -"$" -msgstr "" -"\n" -"# Ostatni podstawiany cig:\n" -"$" - -#: ../ex_cmds.c:4679 -msgid "E478: Don't panic!" -msgstr "E478: Nie panikuj!" - -#: ../ex_cmds.c:4717 -#, c-format -msgid "E661: Sorry, no '%s' help for %s" -msgstr "E661: Przykro mi, brak '%s' pomocy dla %s" - -#: ../ex_cmds.c:4719 -#, c-format -msgid "E149: Sorry, no help for %s" -msgstr "E149: Przykro mi, ale brak pomocy o %s" - -#: ../ex_cmds.c:4751 -#, c-format -msgid "Sorry, help file \"%s\" not found" -msgstr "Przykro mi, nie ma pliku pomocy \"%s\"" - -#: ../ex_cmds.c:5323 -#, c-format -msgid "E150: Not a directory: %s" -msgstr "E150: Nie jest katalogiem: %s" - -#: ../ex_cmds.c:5446 -#, c-format -msgid "E152: Cannot open %s for writing" -msgstr "E152: Nie mog otworzy %s do zapisu" - -#: ../ex_cmds.c:5471 -#, c-format -msgid "E153: Unable to open %s for reading" -msgstr "E153: Nie mog otworzy %s do odczytu" - -#: ../ex_cmds.c:5500 -#, c-format -msgid "E670: Mix of help file encodings within a language: %s" -msgstr "E670: Mieszanka kodowa w pliku pomocy w ramach jzyka: %s" - -#: ../ex_cmds.c:5565 -#, c-format -msgid "E154: Duplicate tag \"%s\" in file %s/%s" -msgstr "E154: Powtrzony znacznik \"%s\" w pliku %s/%s" - -#: ../ex_cmds.c:5687 -#, c-format -msgid "E160: Unknown sign command: %s" -msgstr "E160: Nieznana komenda znaku: %s" - -#: ../ex_cmds.c:5704 -msgid "E156: Missing sign name" -msgstr "E156: Brak nazwy znaku" - -#: ../ex_cmds.c:5746 -msgid "E612: Too many signs defined" -msgstr "E612: Zbyt wiele nazw znakw" - -#: ../ex_cmds.c:5813 -#, c-format -msgid "E239: Invalid sign text: %s" -msgstr "E239: Niewaciwy tekst znaku: %s" - -#: ../ex_cmds.c:5844 ../ex_cmds.c:6035 -#, c-format -msgid "E155: Unknown sign: %s" -msgstr "E155: Nieznany znak: %s" - -#: ../ex_cmds.c:5877 -msgid "E159: Missing sign number" -msgstr "E159: Brak numeru znaku" - -#: ../ex_cmds.c:5971 -#, c-format -msgid "E158: Invalid buffer name: %s" -msgstr "E158: Niewaciwa nazwa bufora: %s" - -#: ../ex_cmds.c:6008 -#, c-format -msgid "E157: Invalid sign ID: %<PRId64>" -msgstr "E157: Niewaciwe ID znaku: %<PRId64>" - -#: ../ex_cmds.c:6066 -msgid " (not supported)" -msgstr "(nie wspomagane)" - -#: ../ex_cmds.c:6169 -msgid "[Deleted]" -msgstr "[Skasowano]" - -#: ../ex_cmds2.c:139 -msgid "Entering Debug mode. Type \"cont\" to continue." -msgstr "Wchodz w tryb odpluskwiania. Wprowad \"cont\" aby kontynuowa." - -#: ../ex_cmds2.c:143 ../ex_docmd.c:759 -#, c-format -msgid "line %<PRId64>: %s" -msgstr "wiersz %<PRId64>: %s" - -#: ../ex_cmds2.c:145 -#, c-format -msgid "cmd: %s" -msgstr "cmd: %s" - -#: ../ex_cmds2.c:322 -#, c-format -msgid "Breakpoint in \"%s%s\" line %<PRId64>" -msgstr "Punkt kontrolny w \"%s%s\" wiersz %<PRId64>" - -#: ../ex_cmds2.c:581 -#, c-format -msgid "E161: Breakpoint not found: %s" -msgstr "E161: Nie znaleziono punktu kontrolnego: %s" - -#: ../ex_cmds2.c:611 -msgid "No breakpoints defined" -msgstr "Nie okrelono adnych punktw kontrolnych" - -#: ../ex_cmds2.c:617 -#, c-format -msgid "%3d %s %s line %<PRId64>" -msgstr "%3d %s %s wiersz %<PRId64>" - -#: ../ex_cmds2.c:942 -msgid "E750: First use \":profile start {fname}\"" -msgstr "E750: Pierwsze uycie \":profile start {fname}\"" - -#: ../ex_cmds2.c:1269 -#, c-format -msgid "Save changes to \"%s\"?" -msgstr "Zachowa zmiany w \"%s\"?" - -#: ../ex_cmds2.c:1271 ../ex_docmd.c:8851 -msgid "Untitled" -msgstr "Bez Tytuu" - -#: ../ex_cmds2.c:1421 -#, c-format -msgid "E162: No write since last change for buffer \"%s\"" -msgstr "E162: Nie zapisano zmian w buforze \"%s\"" - -#: ../ex_cmds2.c:1480 -msgid "Warning: Entered other buffer unexpectedly (check autocommands)" -msgstr "OSTRZEENIE: Nieoczekiwane wejcie w inny bufor (sprawd autokomendy)" - -#: ../ex_cmds2.c:1826 -msgid "E163: There is only one file to edit" -msgstr "E163: Tylko jeden plik w edycji" - -#: ../ex_cmds2.c:1828 -msgid "E164: Cannot go before first file" -msgstr "E164: Nie mona przej przed pierwszy plik" - -#: ../ex_cmds2.c:1830 -msgid "E165: Cannot go beyond last file" -msgstr "E165: Nie mona przej za ostatni plik" - -#: ../ex_cmds2.c:2175 -#, c-format -msgid "E666: compiler not supported: %s" -msgstr "E666: nie wspierany kompilator: %s" - -#: ../ex_cmds2.c:2257 -#, c-format -msgid "Searching for \"%s\" in \"%s\"" -msgstr "Szukanie \"%s\" w \"%s\"" - -#: ../ex_cmds2.c:2284 -#, c-format -msgid "Searching for \"%s\"" -msgstr "Szukanie \"%s\"" - -#: ../ex_cmds2.c:2307 -#, c-format -msgid "not found in 'runtimepath': \"%s\"" -msgstr "nie znaleziono w 'runtimepath': \"%s\"" - -#: ../ex_cmds2.c:2472 -#, c-format -msgid "Cannot source a directory: \"%s\"" -msgstr "Nie mona wczyta katalogu: \"%s\"" - -#: ../ex_cmds2.c:2518 -#, c-format -msgid "could not source \"%s\"" -msgstr "nie mogem wczyta \"%s\"" - -#: ../ex_cmds2.c:2520 -#, c-format -msgid "line %<PRId64>: could not source \"%s\"" -msgstr "wiersz: %<PRId64> nie mogem wczyta \"%s\"" - -#: ../ex_cmds2.c:2535 -#, c-format -msgid "sourcing \"%s\"" -msgstr "wczytywanie \"%s\"" - -#: ../ex_cmds2.c:2537 -#, c-format -msgid "line %<PRId64>: sourcing \"%s\"" -msgstr "wiersz %<PRId64>: wczytywanie \"%s\"" - -#: ../ex_cmds2.c:2693 -#, c-format -msgid "finished sourcing %s" -msgstr "skoczono wczytywanie %s" - -#: ../ex_cmds2.c:2765 -msgid "modeline" -msgstr "modeline" - -#: ../ex_cmds2.c:2767 -msgid "--cmd argument" -msgstr "--cmd argument" - -#: ../ex_cmds2.c:2769 -msgid "-c argument" -msgstr "-c argument" - -#: ../ex_cmds2.c:2771 -msgid "environment variable" -msgstr "zmienna rodowiskowa" - -#: ../ex_cmds2.c:2773 -msgid "error handler" -msgstr "obsuga bdu" - -#: ../ex_cmds2.c:3020 -msgid "W15: Warning: Wrong line separator, ^M may be missing" -msgstr "W15: OSTRZEENIE: Niewaciwy separator wierszy, pewnie brak ^M" - -#: ../ex_cmds2.c:3139 -msgid "E167: :scriptencoding used outside of a sourced file" -msgstr "E167: uyto :scriptencoding poza wczytywanym plikiem" - -#: ../ex_cmds2.c:3166 -msgid "E168: :finish used outside of a sourced file" -msgstr "E168: uyto :finish poza wczytywanym plikiem" - -#: ../ex_cmds2.c:3389 -#, c-format -msgid "Current %slanguage: \"%s\"" -msgstr "Biecy %sjzyk: \"%s\"" - -#: ../ex_cmds2.c:3404 -#, c-format -msgid "E197: Cannot set language to \"%s\"" -msgstr "E197: Nie mog ustawi jzyka na \"%s\"" - -#. don't redisplay the window -#. don't wait for return -#: ../ex_docmd.c:387 -msgid "Entering Ex mode. Type \"visual\" to go to Normal mode." -msgstr "Wchodz w tryb Ex. Wprowad \"visual\" aby przej do trybu Normal." - -#: ../ex_docmd.c:428 -msgid "E501: At end-of-file" -msgstr "E501: Na kocu pliku" - -#: ../ex_docmd.c:513 -msgid "E169: Command too recursive" -msgstr "E169: Komenda zbyt rekursywna" - -#: ../ex_docmd.c:1006 -#, c-format -msgid "E605: Exception not caught: %s" -msgstr "E605: Nie znaleziono wyjtku: %s" - -#: ../ex_docmd.c:1085 -msgid "End of sourced file" -msgstr "Koniec wczytywanego pliku" - -#: ../ex_docmd.c:1086 -msgid "End of function" -msgstr "Koniec funkcji" - -#: ../ex_docmd.c:1628 -msgid "E464: Ambiguous use of user-defined command" -msgstr "" -"E464: Niejednoznaczne zastosowanie komendy zdefiniowanej przez uytkownika" - -#: ../ex_docmd.c:1638 -msgid "E492: Not an editor command" -msgstr "E492: Nie jest komend edytora" - -#: ../ex_docmd.c:1729 -msgid "E493: Backwards range given" -msgstr "E493: Dano wsteczny zakres" - -#: ../ex_docmd.c:1733 -msgid "Backwards range given, OK to swap" -msgstr "Dano wsteczny zakres; zamiana jest moliwa" - -#. append -#. typed wrong -#: ../ex_docmd.c:1787 -msgid "E494: Use w or w>>" -msgstr "E494: Stosuj w lub w>>" - -#: ../ex_docmd.c:3454 -msgid "E319: The command is not available in this version" -msgstr "E319: Przykro mi, ale ta komenda nie jest dostpna w tej wersji" - -#: ../ex_docmd.c:3752 -msgid "E172: Only one file name allowed" -msgstr "E172: Tylko pojedyncza nazwa pliku dozwolona" - -#: ../ex_docmd.c:4238 -msgid "1 more file to edit. Quit anyway?" -msgstr "1 wicej plik do edycji. Mimo to wyj?" - -#: ../ex_docmd.c:4242 -#, c-format -msgid "%d more files to edit. Quit anyway?" -msgstr "jeszcze %d plikw do edycji. Mimo to wyj?" - -#: ../ex_docmd.c:4248 -msgid "E173: 1 more file to edit" -msgstr "E173: 1 wicej plik do edycji" - -#: ../ex_docmd.c:4250 -#, c-format -msgid "E173: %<PRId64> more files to edit" -msgstr "E173: jeszcze %<PRId64> plikw do edycji" - -#: ../ex_docmd.c:4320 -msgid "E174: Command already exists: add ! to replace it" -msgstr "E174: Komenda ju istnieje; aby j przedefiniowa stosuj !" - -#: ../ex_docmd.c:4432 -msgid "" -"\n" -" Name Args Range Complete Definition" -msgstr "" -"\n" -" Nazwa Arg. Zak. Gotowo Definicja" - -#: ../ex_docmd.c:4516 -msgid "No user-defined commands found" -msgstr "Nie znaleziono komend zdefiniowanych przez uytkownika" - -#: ../ex_docmd.c:4538 -msgid "E175: No attribute specified" -msgstr "E175: Nie okrelono atrybutu" - -#: ../ex_docmd.c:4583 -msgid "E176: Invalid number of arguments" -msgstr "E176: Niewaciwa ilo argumentw" - -#: ../ex_docmd.c:4594 -msgid "E177: Count cannot be specified twice" -msgstr "E177: Mnonik nie moe by podany dwukrotnie" - -#: ../ex_docmd.c:4603 -msgid "E178: Invalid default value for count" -msgstr "E178: Niewaciwa domylna warto mnonika" - -#: ../ex_docmd.c:4625 -msgid "E179: argument required for -complete" -msgstr "E179: -complete wymaga argumentu" - -#: ../ex_docmd.c:4635 -#, c-format -msgid "E181: Invalid attribute: %s" -msgstr "E181: Niewaciwy atrybut: %s" - -#: ../ex_docmd.c:4678 -msgid "E182: Invalid command name" -msgstr "E182: Niewaciwa nazwa komendy" - -#: ../ex_docmd.c:4691 -msgid "E183: User defined commands must start with an uppercase letter" -msgstr "" -"E183: Komendy zdefiniowane przez uytkownika musz rozpoczyna si du " -"liter" - -#: ../ex_docmd.c:4696 -msgid "E841: Reserved name, cannot be used for user defined command" -msgstr "E841: Nazwa zastrzeona, nie mona jej uy w komendzie uytkownika" - -#: ../ex_docmd.c:4751 -#, c-format -msgid "E184: No such user-defined command: %s" -msgstr "E184: Nie ma takiej komendy uytkownika: %s" - -#: ../ex_docmd.c:5219 -#, c-format -msgid "E180: Invalid complete value: %s" -msgstr "E180: Niewaciwa warto dopeniania: %s" - -#: ../ex_docmd.c:5225 -msgid "E468: Completion argument only allowed for custom completion" -msgstr "" -"E468: Argument depeniania dozwolony wycznie dla dopeniania uytkownika" - -#: ../ex_docmd.c:5231 -msgid "E467: Custom completion requires a function argument" -msgstr "E467: Dopenianie uytkownika wymaga funkcji jako argumentu" - -#: ../ex_docmd.c:5257 -#, c-format -msgid "E185: Cannot find color scheme '%s'" -msgstr "E185: Nie mog znale zestawu kolorw '%s'" - -#: ../ex_docmd.c:5263 -msgid "Greetings, Vim user!" -msgstr "Witaj uytkowniku Vima!" - -#: ../ex_docmd.c:5431 -msgid "E784: Cannot close last tab page" -msgstr "E784: Nie mog zamkn ostatniej karty" - -#: ../ex_docmd.c:5462 -msgid "Already only one tab page" -msgstr "Jest ju tylko jedna karta" - -#: ../ex_docmd.c:6004 -#, c-format -msgid "Tab page %d" -msgstr "Karta %d" - -#: ../ex_docmd.c:6295 -msgid "No swap file" -msgstr "Brak pliku wymiany" - -#: ../ex_docmd.c:6478 -msgid "E747: Cannot change directory, buffer is modified (add ! to override)" -msgstr "" -"E747: Nie mog zmieni katalogu, bufor zosta zmodyfikowany (dodaj ! aby " -"wymusi)" - -#: ../ex_docmd.c:6485 -msgid "E186: No previous directory" -msgstr "E186: Nie ma poprzedniego katalogu" - -#: ../ex_docmd.c:6530 -msgid "E187: Unknown" -msgstr "E187: Nieznany" - -#: ../ex_docmd.c:6610 -msgid "E465: :winsize requires two number arguments" -msgstr "E465: :winsize wymaga dwch argumentw numerycznych" - -#: ../ex_docmd.c:6655 -msgid "E188: Obtaining window position not implemented for this platform" -msgstr "" -"E188: Pozyskiwanie pozycji okna nie jest zaimplementowane dla tego systemu" - -#: ../ex_docmd.c:6662 -msgid "E466: :winpos requires two number arguments" -msgstr "E466: :winpos wymaga dwch argumentw numerycznych" - -#: ../ex_docmd.c:7241 -#, c-format -msgid "E739: Cannot create directory: %s" -msgstr "E739: Nie mog utworzy katalogu: %s" - -#: ../ex_docmd.c:7268 -#, c-format -msgid "E189: \"%s\" exists (add ! to override)" -msgstr "E189: \"%s\" istnieje (wymu poprzez !)" - -#: ../ex_docmd.c:7273 -#, c-format -msgid "E190: Cannot open \"%s\" for writing" -msgstr "E190: Nie mog otworzy \"%s\" do zapisu" - -#. set mark -#: ../ex_docmd.c:7294 -msgid "E191: Argument must be a letter or forward/backward quote" -msgstr "E191: Argument musi by liter albo cudzysowem w przd/ty" - -#: ../ex_docmd.c:7333 -msgid "E192: Recursive use of :normal too deep" -msgstr "E192: Rekursywne zastosowanie :normal za gbokie" - -#: ../ex_docmd.c:7807 -msgid "E194: No alternate file name to substitute for '#'" -msgstr "E194: Brak nazwy zamiennego pliku do podstawienia pod '#'" - -#: ../ex_docmd.c:7841 -msgid "E495: no autocommand file name to substitute for \"<afile>\"" -msgstr "E495: brak nazwy pliku autokomend do podstawienia pod \"<afile>\"" - -#: ../ex_docmd.c:7850 -msgid "E496: no autocommand buffer number to substitute for \"<abuf>\"" -msgstr "E496: brak numeru bufora autokomend do podstawienia pod \"<abuf>\"" - -#: ../ex_docmd.c:7861 -msgid "E497: no autocommand match name to substitute for \"<amatch>\"" -msgstr "E497: brak nazwy dopasowania autokomend pod \"<amatch>\"" - -#: ../ex_docmd.c:7870 -msgid "E498: no :source file name to substitute for \"<sfile>\"" -msgstr "E498: brak nazwy pliku :source do postawienia pod \"<sfile>\"" - -#: ../ex_docmd.c:7876 -msgid "E842: no line number to use for \"<slnum>\"" -msgstr "E842: brak numeru linii by uy z \"<slnum>\"" - -#: ../ex_docmd.c:7903 -#, fuzzy, c-format -msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" -msgstr "E499: Pusta nazwa pliku dla '%' lub '#', dziaa tylko z \":p:h\"" - -#: ../ex_docmd.c:7905 -msgid "E500: Evaluates to an empty string" -msgstr "E500: Wynikiem jest pusty cig" - -#: ../ex_docmd.c:8838 -msgid "E195: Cannot open viminfo file for reading" -msgstr "E195: Nie mog otworzy pliku viminfo do odczytu" - -#: ../ex_eval.c:464 -msgid "E608: Cannot :throw exceptions with 'Vim' prefix" -msgstr "E608: Nie mona ':throw' wyjtkw z prefiksem 'Vim'" - -#. always scroll up, don't overwrite -#: ../ex_eval.c:496 -#, c-format -msgid "Exception thrown: %s" -msgstr "Wyjtek: %s" - -#: ../ex_eval.c:545 -#, c-format -msgid "Exception finished: %s" -msgstr "Wyjtek zakoczony: %s" - -#: ../ex_eval.c:546 -#, c-format -msgid "Exception discarded: %s" -msgstr "Wyjtek odrzucony: %s" - -#: ../ex_eval.c:588 ../ex_eval.c:634 -#, c-format -msgid "%s, line %<PRId64>" -msgstr "%s, wiersz %<PRId64>" - -#. always scroll up, don't overwrite -#: ../ex_eval.c:608 -#, c-format -msgid "Exception caught: %s" -msgstr "Wyjtek przechwycony: %s" - -#: ../ex_eval.c:676 -#, c-format -msgid "%s made pending" -msgstr "%s zosta zawieszony" - -#: ../ex_eval.c:679 -#, c-format -msgid "%s resumed" -msgstr "%s przywrcony" - -#: ../ex_eval.c:683 -#, c-format -msgid "%s discarded" -msgstr "%s odrzucony" - -#: ../ex_eval.c:708 -msgid "Exception" -msgstr "Wyjtek" - -#: ../ex_eval.c:713 -msgid "Error and interrupt" -msgstr "Bd i przerwanie" - -#: ../ex_eval.c:715 -msgid "Error" -msgstr "Bd" - -#. if (pending & CSTP_INTERRUPT) -#: ../ex_eval.c:717 -msgid "Interrupt" -msgstr "Przerwanie" - -#: ../ex_eval.c:795 -msgid "E579: :if nesting too deep" -msgstr "E579: zbyt gbokie zagniedenie :if" - -#: ../ex_eval.c:830 -msgid "E580: :endif without :if" -msgstr "E580: :endif bez :if" - -#: ../ex_eval.c:873 -msgid "E581: :else without :if" -msgstr "E581: :else bez :if" - -#: ../ex_eval.c:876 -msgid "E582: :elseif without :if" -msgstr "E582: :elseif bez :if" - -#: ../ex_eval.c:880 -msgid "E583: multiple :else" -msgstr "E583: wielokrotne :else" - -#: ../ex_eval.c:883 -msgid "E584: :elseif after :else" -msgstr "E584: :elseif po :else" - -#: ../ex_eval.c:941 -msgid "E585: :while/:for nesting too deep" -msgstr "E585: zbyt gbokie zagniedenie :while/:for" - -#: ../ex_eval.c:1028 -msgid "E586: :continue without :while or :for" -msgstr "E586: :continue bez :while lub :for" - -#: ../ex_eval.c:1061 -msgid "E587: :break without :while or :for" -msgstr "E587: :break bez :while lub :for" - -#: ../ex_eval.c:1102 -msgid "E732: Using :endfor with :while" -msgstr "E732: Uycie :endfor z :while" - -#: ../ex_eval.c:1104 -msgid "E733: Using :endwhile with :for" -msgstr "E733: Uycie :endwhile z :for" - -#: ../ex_eval.c:1247 -msgid "E601: :try nesting too deep" -msgstr "E601: zbyt gbokie zagniedenie :try" - -#: ../ex_eval.c:1317 -msgid "E603: :catch without :try" -msgstr "E603: :catch bez :try" - -#. Give up for a ":catch" after ":finally" and ignore it. -#. * Just parse. -#: ../ex_eval.c:1332 -msgid "E604: :catch after :finally" -msgstr "E604: :catch za :finally" - -#: ../ex_eval.c:1451 -msgid "E606: :finally without :try" -msgstr "E606: :finally bez :try" - -#. Give up for a multiple ":finally" and ignore it. -#: ../ex_eval.c:1467 -msgid "E607: multiple :finally" -msgstr "E607: wielokrotne :finally" - -#: ../ex_eval.c:1571 -msgid "E602: :endtry without :try" -msgstr "E602: :endtry bez :try" - -#: ../ex_eval.c:2026 -msgid "E193: :endfunction not inside a function" -msgstr "E193: :endfunction poza funkcj" - -#: ../ex_getln.c:1643 -msgid "E788: Not allowed to edit another buffer now" -msgstr "E788: Nie mona teraz edytowa innego bufora" - -#: ../ex_getln.c:1656 -msgid "E811: Not allowed to change buffer information now" -msgstr "E811: Nie mona teraz zmienia informacji o buforze" - -#: ../ex_getln.c:3178 -msgid "tagname" -msgstr "nazwa znacznika" - -#: ../ex_getln.c:3181 -msgid " kind file\n" -msgstr " pokrewny plik\n" - -#: ../ex_getln.c:4799 -msgid "'history' option is zero" -msgstr "opcja 'history' jest zerowa" - -#: ../ex_getln.c:5046 -#, c-format -msgid "" -"\n" -"# %s History (newest to oldest):\n" -msgstr "" -"\n" -"# %s Historia (od najnowszych po najstarsze):\n" - -#: ../ex_getln.c:5047 -msgid "Command Line" -msgstr "Wiersz polece" - -#: ../ex_getln.c:5048 -msgid "Search String" -msgstr "Szukany cig" - -#: ../ex_getln.c:5049 -msgid "Expression" -msgstr "Wyraenie" - -#: ../ex_getln.c:5050 -msgid "Input Line" -msgstr "Wiersz wprowadze" - -#: ../ex_getln.c:5117 -msgid "E198: cmd_pchar beyond the command length" -msgstr "E198: cmd_pchar przekracza dugo polecenia" - -#: ../ex_getln.c:5279 -msgid "E199: Active window or buffer deleted" -msgstr "E199: Aktywny widok lub bufor skasowany" - -#: ../file_search.c:203 -msgid "E854: path too long for completion" -msgstr "E854: cieka za duga by uzupeni" - -#: ../file_search.c:446 -#, c-format -msgid "" -"E343: Invalid path: '**[number]' must be at the end of the path or be " -"followed by '%s'." -msgstr "" -"E343: Niewaciwy trop: '**[numer]' musi by na kocu tropu lub po nim musi " -"by '%s'." - -#: ../file_search.c:1505 -#, c-format -msgid "E344: Can't find directory \"%s\" in cdpath" -msgstr "E344: Nie mog znale katalogu \"%s\" w cdpath" - -#: ../file_search.c:1508 -#, c-format -msgid "E345: Can't find file \"%s\" in path" -msgstr "E345: Nie mog znale pliku \"%s\" w tropie" - -#: ../file_search.c:1512 -#, c-format -msgid "E346: No more directory \"%s\" found in cdpath" -msgstr "E346: Katalogu \"%s\" nie ma wicej w cdpath" - -#: ../file_search.c:1515 -#, c-format -msgid "E347: No more file \"%s\" found in path" -msgstr "E347: Pliku \"%s\" nie ma wicej w tropie" - -#: ../fileio.c:137 -msgid "E812: Autocommands changed buffer or buffer name" -msgstr "E812: Autokomendy zmieniy bufor lub jego nazw" - -#: ../fileio.c:368 -msgid "Illegal file name" -msgstr "Niedopuszczalna nazwa pliku" - -#: ../fileio.c:395 ../fileio.c:476 ../fileio.c:2543 ../fileio.c:2578 -msgid "is a directory" -msgstr "jest katalogiem" - -#: ../fileio.c:397 -msgid "is not a file" -msgstr "nie jest plikiem" - -#: ../fileio.c:508 ../fileio.c:3522 -msgid "[New File]" -msgstr "[Nowy Plik]" - -#: ../fileio.c:511 -msgid "[New DIRECTORY]" -msgstr "[Nowy KATALOG]" - -#: ../fileio.c:529 ../fileio.c:532 -msgid "[File too big]" -msgstr "[Za duy plik]" - -#: ../fileio.c:534 -msgid "[Permission Denied]" -msgstr "[Nie dozwolono]" - -#: ../fileio.c:653 -msgid "E200: *ReadPre autocommands made the file unreadable" -msgstr "E200: Autokomendy *ReadPre zrobiy plik nieodczytywalnym" - -#: ../fileio.c:655 -msgid "E201: *ReadPre autocommands must not change current buffer" -msgstr "E201: Autokomendy *ReadPre nie mog zmienia biecego bufora" - -#: ../fileio.c:672 -msgid "Nvim: Reading from stdin...\n" -msgstr "Vim: Wczytywanie ze stdin...\n" - -#. Re-opening the original file failed! -#: ../fileio.c:909 -msgid "E202: Conversion made file unreadable!" -msgstr "E202: Nie mona otworzy pliku utworzonego przez przemian!" - -#. fifo or socket -#: ../fileio.c:1782 -msgid "[fifo/socket]" -msgstr "[fifo/socket]" - -#. fifo -#: ../fileio.c:1788 -msgid "[fifo]" -msgstr "[fifo]" - -#. or socket -#: ../fileio.c:1794 -msgid "[socket]" -msgstr "[socket]" - -#. or character special -#: ../fileio.c:1801 -msgid "[character special]" -msgstr "[specjalny znak]" - -#: ../fileio.c:1815 -msgid "[CR missing]" -msgstr "[brak CR]'" - -#: ../fileio.c:1819 -msgid "[long lines split]" -msgstr "[dugie wiersze rozdzielane]" - -#: ../fileio.c:1823 ../fileio.c:3512 -msgid "[NOT converted]" -msgstr "[NIE przemienione]" - -#: ../fileio.c:1826 ../fileio.c:3515 -msgid "[converted]" -msgstr "[przemienione]" - -#: ../fileio.c:1831 -#, c-format -msgid "[CONVERSION ERROR in line %<PRId64>]" -msgstr "[BD W PRZEMIANIE w linii %<PRId64>]" - -#: ../fileio.c:1835 -#, c-format -msgid "[ILLEGAL BYTE in line %<PRId64>]" -msgstr "[NIEDOZWOLONY BAJT w wierszu %<PRId64>]" - -#: ../fileio.c:1838 -msgid "[READ ERRORS]" -msgstr "[BDY W ODCZYCIE]" - -#: ../fileio.c:2104 -msgid "Can't find temp file for conversion" -msgstr "Nie mog znale pliku tymczasowego w celu przemiany" - -#: ../fileio.c:2110 -msgid "Conversion with 'charconvert' failed" -msgstr "Nieudana przemiana z 'charconvert'" - -#: ../fileio.c:2113 -msgid "can't read output of 'charconvert'" -msgstr "nie mog odczyta wyjcia z 'charconvert'" - -#: ../fileio.c:2437 -msgid "E676: No matching autocommands for acwrite buffer" -msgstr "E676: Brak pasujcych autokomend dla bufora acwrite" - -#: ../fileio.c:2466 -msgid "E203: Autocommands deleted or unloaded buffer to be written" -msgstr "" -"E203: Autokomendy skasoway lub wyadoway bufor przeznaczony do zapisu" - -#: ../fileio.c:2486 -msgid "E204: Autocommand changed number of lines in unexpected way" -msgstr "E204: Autokomenda zmienia liczb wierszy w nieoczekiwany sposb" - -#: ../fileio.c:2548 ../fileio.c:2565 -msgid "is not a file or writable device" -msgstr "nie jest plikiem lub zapisywalnym przyrzdem" - -#: ../fileio.c:2601 -msgid "is read-only (add ! to override)" -msgstr "jest tylko do odczytu (wymu poprzez !)" - -#: ../fileio.c:2886 -msgid "E506: Can't write to backup file (add ! to override)" -msgstr "E506: Nie mog zapisa do pliku zabezpieczenia (wymu przez !)" - -#: ../fileio.c:2898 -msgid "E507: Close error for backup file (add ! to override)" -msgstr "E507: Bd podczas zamykania pliku zabezpieczenia (wymu przez !)" - -#: ../fileio.c:2901 -msgid "E508: Can't read file for backup (add ! to override)" -msgstr "E508: Nie mog odczyta pliku w celu zabezpieczenia (wymu przez !)" - -#: ../fileio.c:2923 -msgid "E509: Cannot create backup file (add ! to override)" -msgstr "E509: Nie mog stworzy pliku zabezpieczenia (wymu przez !)" - -#: ../fileio.c:3008 -msgid "E510: Can't make backup file (add ! to override)" -msgstr "E510: Nie mog zrobi pliku zabezpieczenia (wymu przez !)" - -#. Can't write without a tempfile! -#: ../fileio.c:3121 -msgid "E214: Can't find temp file for writing" -msgstr "E214: Nie mog znale pliku tymczasowego do zapisania" - -#: ../fileio.c:3134 -msgid "E213: Cannot convert (add ! to write without conversion)" -msgstr "E213: Nie mog przemieni (uyj ! by zapisa bez przemiany)" - -#: ../fileio.c:3169 -msgid "E166: Can't open linked file for writing" -msgstr "E166: Nie mog otworzy podczonego pliku do zapisu" - -#: ../fileio.c:3173 -msgid "E212: Can't open file for writing" -msgstr "E212: Nie mog otworzy pliku do zapisu" - -#: ../fileio.c:3363 -msgid "E667: Fsync failed" -msgstr "E667: Fsync nie powid si" - -#: ../fileio.c:3398 -msgid "E512: Close failed" -msgstr "E512: Zamknicie si nie powiodo" - -#: ../fileio.c:3436 -msgid "E513: write error, conversion failed (make 'fenc' empty to override)" -msgstr "" -"E513: Bd zapisu, przemiana si nie powioda (oprnij 'fenc' aby wymusi)" - -#: ../fileio.c:3441 -#, c-format -msgid "" -"E513: write error, conversion failed in line %<PRId64> (make 'fenc' empty to " -"override)" -msgstr "" -"E513: Bd zapisu, przemiana si nie powioda w wierszu %<PRId64> (oprnij " -"'fenc' by wymusi)" - -#: ../fileio.c:3448 -msgid "E514: write error (file system full?)" -msgstr "E514: bd w zapisie (moe system plikw jest przepeniony?)" - -#: ../fileio.c:3506 -msgid " CONVERSION ERROR" -msgstr " BD W PRZEMIANIE" - -#: ../fileio.c:3509 -#, c-format -msgid " in line %<PRId64>;" -msgstr " w wierszu %<PRId64>;" - -#: ../fileio.c:3519 -msgid "[Device]" -msgstr "[Urzdzenie]" - -#: ../fileio.c:3522 -msgid "[New]" -msgstr "[Nowy]" - -#: ../fileio.c:3535 -msgid " [a]" -msgstr " [a]" - -#: ../fileio.c:3535 -msgid " appended" -msgstr " doczono" - -#: ../fileio.c:3537 -msgid " [w]" -msgstr " [w]" - -#: ../fileio.c:3537 -msgid " written" -msgstr " zapisano" - -#: ../fileio.c:3579 -msgid "E205: Patchmode: can't save original file" -msgstr "E205: Patchmode: nie mog zapisa oryginalnego pliku" - -#: ../fileio.c:3602 -msgid "E206: patchmode: can't touch empty original file" -msgstr "E206: patchmode: nie mog stworzy pustego oryginalnego pliku" - -#: ../fileio.c:3616 -msgid "E207: Can't delete backup file" -msgstr "E207: Nie mog skasowa pliku zabezpieczenia" - -#: ../fileio.c:3672 -msgid "" -"\n" -"WARNING: Original file may be lost or damaged\n" -msgstr "" -"\n" -"OSTRZEENIE: Oryginalny plik moe zosta utracony lub uszkodzony\n" - -#: ../fileio.c:3675 -msgid "don't quit the editor until the file is successfully written!" -msgstr "nie wychod edytora, dopki plik nie zosta poprawnie zapisany!" - -#: ../fileio.c:3795 -msgid "[dos]" -msgstr "[dos]" - -#: ../fileio.c:3795 -msgid "[dos format]" -msgstr "[format dos-a]" - -#: ../fileio.c:3801 -msgid "[mac]" -msgstr "[mac]" - -#: ../fileio.c:3801 -msgid "[mac format]" -msgstr "[format maca]" - -#: ../fileio.c:3807 -msgid "[unix]" -msgstr "[unix]" - -#: ../fileio.c:3807 -msgid "[unix format]" -msgstr "[format unixa]" - -#: ../fileio.c:3831 -msgid "1 line, " -msgstr "1 wiersz, " - -#: ../fileio.c:3833 -#, c-format -msgid "%<PRId64> lines, " -msgstr "%<PRId64> wierszy, " - -#: ../fileio.c:3836 -msgid "1 character" -msgstr "1 znak" - -#: ../fileio.c:3838 -#, c-format -msgid "%<PRId64> characters" -msgstr "%<PRId64> znakw" - -#: ../fileio.c:3849 -msgid "[noeol]" -msgstr "[noeol]" - -#: ../fileio.c:3849 -msgid "[Incomplete last line]" -msgstr "[Niekompletny ostatni wiersz]" - -#. don't overwrite messages here -#. must give this prompt -#. don't use emsg() here, don't want to flush the buffers -#: ../fileio.c:3865 -msgid "WARNING: The file has been changed since reading it!!!" -msgstr "OSTRZEENIE: Plik zmieni si od czasu ostatniego odczytu!!!" - -#: ../fileio.c:3867 -msgid "Do you really want to write to it" -msgstr "Czy naprawd chcesz go zapisa" - -#: ../fileio.c:4648 -#, c-format -msgid "E208: Error writing to \"%s\"" -msgstr "E208: Bd zapisywania do \"%s\"" - -#: ../fileio.c:4655 -#, c-format -msgid "E209: Error closing \"%s\"" -msgstr "E209: Bd w trakcie zamykania \"%s\"" - -#: ../fileio.c:4657 -#, c-format -msgid "E210: Error reading \"%s\"" -msgstr "E210: Bd odczytu \"%s\"" - -#: ../fileio.c:4883 -msgid "E246: FileChangedShell autocommand deleted buffer" -msgstr "E246: Autokomenda FileChangedShell skasowaa bufor" - -#: ../fileio.c:4894 -#, c-format -msgid "E211: File \"%s\" no longer available" -msgstr "E211: Plik \"%s\" nie jest duej dostpny" - -#: ../fileio.c:4906 -#, c-format -msgid "" -"W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as " -"well" -msgstr "" -"W12: OSTRZEENIE: Plik \"%s\" zmieni si od czasu rozpoczcia edycji, bufor " -"w Vimie rwnie zosta zmieniony" - -#: ../fileio.c:4907 -msgid "See \":help W12\" for more info." -msgstr "Zobacz \":help W12\" dla dalszych informacji." - -#: ../fileio.c:4910 -#, c-format -msgid "W11: Warning: File \"%s\" has changed since editing started" -msgstr "W11: OSTRZEENIE: Plik \"%s\" zmieni si od czasu rozpoczcia edycji" - -#: ../fileio.c:4911 -msgid "See \":help W11\" for more info." -msgstr "Zobacz \":help W11\" dla dalszych informacji." - -#: ../fileio.c:4914 -#, c-format -msgid "W16: Warning: Mode of file \"%s\" has changed since editing started" -msgstr "" -"W16: OSTRZEENIE: Tryb pliku \"%s\" zmieni si od czasu rozpoczcia edycji" - -#: ../fileio.c:4915 -msgid "See \":help W16\" for more info." -msgstr "Zobacz \":help W16\" dla dalszych informacji." - -#: ../fileio.c:4927 -#, c-format -msgid "W13: Warning: File \"%s\" has been created after editing started" -msgstr "W13: OSTRZEENIE: Plik \"%s\" zosta stworzony po rozpoczciu edycji" - -#: ../fileio.c:4947 -msgid "Warning" -msgstr "OSTRZEENIE" - -#: ../fileio.c:4948 -msgid "" -"&OK\n" -"&Load File" -msgstr "" -"&OK\n" -"&Zaaduj Plik" - -#: ../fileio.c:5065 -#, c-format -msgid "E462: Could not prepare for reloading \"%s\"" -msgstr "E462: Nie mona przygotowa przeadowania \"%s\"" - -#: ../fileio.c:5078 -#, c-format -msgid "E321: Could not reload \"%s\"" -msgstr "E321: Nie mona przeadowa \"%s\"" - -#: ../fileio.c:5601 -msgid "--Deleted--" -msgstr "--Skasowano--" - -#: ../fileio.c:5732 -#, c-format -msgid "auto-removing autocommand: %s <buffer=%d>" -msgstr "auto-usuwanie autokomendy: %s <buffer=%d>" - -#. the group doesn't exist -#: ../fileio.c:5772 -#, c-format -msgid "E367: No such group: \"%s\"" -msgstr "E367: Nie ma takiej grupy: \"%s\"" - -#: ../fileio.c:5897 -#, c-format -msgid "E215: Illegal character after *: %s" -msgstr "E215: Niedopuszczalny znak po *: %s" - -#: ../fileio.c:5905 -#, c-format -msgid "E216: No such event: %s" -msgstr "E216: Nie ma takiego wydarzenia: %s" - -#: ../fileio.c:5907 -#, c-format -msgid "E216: No such group or event: %s" -msgstr "E216: Nie ma takiej grupy lub wydarzenia: %s" - -#. Highlight title -#: ../fileio.c:6090 -msgid "" -"\n" -"--- Auto-Commands ---" -msgstr "" -"\n" -"--- Autokomendy ---" - -#: ../fileio.c:6293 -#, c-format -msgid "E680: <buffer=%d>: invalid buffer number " -msgstr "E680: <buffer=%d>: niewaciwy numer bufora" - -#: ../fileio.c:6370 -msgid "E217: Can't execute autocommands for ALL events" -msgstr "E217: Nie mona wykonywa autokomend dla wydarze ALL" - -#: ../fileio.c:6393 -msgid "No matching autocommands" -msgstr "Brak pasujcych autokomend" - -#: ../fileio.c:6831 -msgid "E218: autocommand nesting too deep" -msgstr "E218: zbyt gbokie zagniedenie autokomend" - -#: ../fileio.c:7143 -#, c-format -msgid "%s Auto commands for \"%s\"" -msgstr "%s Autokomend dla \"%s\"" - -#: ../fileio.c:7149 -#, c-format -msgid "Executing %s" -msgstr "Wykonuj %s" - -#: ../fileio.c:7211 -#, c-format -msgid "autocommand %s" -msgstr "autokomenda %s" - -#: ../fileio.c:7795 -msgid "E219: Missing {." -msgstr "E219: Brak {." - -#: ../fileio.c:7797 -msgid "E220: Missing }." -msgstr "E220: Brak }." - -#: ../fold.c:93 -msgid "E490: No fold found" -msgstr "E490: Nie znaleziono zwinicia" - -#: ../fold.c:544 -msgid "E350: Cannot create fold with current 'foldmethod'" -msgstr "E350: Nie mona utworzy zwinicia przy biecej 'foldmethod'" - -#: ../fold.c:546 -msgid "E351: Cannot delete fold with current 'foldmethod'" -msgstr "E351: Nie mona skasowa zwinicia przy biecej 'foldmethod'" - -#: ../fold.c:1784 -#, c-format -msgid "+--%3ld lines folded " -msgstr "+--%3ld wierszy zwinito " - -#. buffer has already been read -#: ../getchar.c:273 -msgid "E222: Add to read buffer" -msgstr "E222: Dodaj do bufora odczytu" - -#: ../getchar.c:2040 -msgid "E223: recursive mapping" -msgstr "E223: rekursywne przyporzdkowanie" - -#: ../getchar.c:2849 -#, c-format -msgid "E224: global abbreviation already exists for %s" -msgstr "E224: istnieje ju globalny skrt dla %s" - -#: ../getchar.c:2852 -#, c-format -msgid "E225: global mapping already exists for %s" -msgstr "E225: istnieje ju globalne przyporzdkowanie dla %s" - -#: ../getchar.c:2952 -#, c-format -msgid "E226: abbreviation already exists for %s" -msgstr "E226: istnieje ju skrt dla %s" - -#: ../getchar.c:2955 -#, c-format -msgid "E227: mapping already exists for %s" -msgstr "E227: istnieje ju przyporzdkowanie dla %s" - -#: ../getchar.c:3008 -msgid "No abbreviation found" -msgstr "Nie znaleziono skrtu" - -#: ../getchar.c:3010 -msgid "No mapping found" -msgstr "Nie znaleziono przyporzdkowania" - -#: ../getchar.c:3974 -msgid "E228: makemap: Illegal mode" -msgstr "E228: makemap: Niedopuszczalny tryb" - -#. key value of 'cedit' option -#. type of cmdline window or 0 -#. result of cmdline window or 0 -#: ../globals.h:924 -msgid "--No lines in buffer--" -msgstr "--Brak wierszy w buforze--" - -#. -#. * The error messages that can be shared are included here. -#. * Excluded are errors that are only used once and debugging messages. -#. -#: ../globals.h:996 -msgid "E470: Command aborted" -msgstr "E470: Przerwanie komendy" - -#: ../globals.h:997 -msgid "E471: Argument required" -msgstr "E471: wymagany argument" - -#: ../globals.h:998 -msgid "E10: \\ should be followed by /, ? or &" -msgstr "E10: po \\ powinno by /, ? lub &" - -#: ../globals.h:1000 -msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits" -msgstr "" -"E11: Niedozwolone w oknie wiersza polece; <CR> wykonuje, CTRL-C opuszcza" - -#: ../globals.h:1002 -msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search" -msgstr "" -"E12: Komenda niedozwolona z exrc/vimrc w biecym szukaniu katalogu lub " -"znacznika" - -#: ../globals.h:1003 -msgid "E171: Missing :endif" -msgstr "E171: Brak :endif" - -#: ../globals.h:1004 -msgid "E600: Missing :endtry" -msgstr "E600: Brak :endtry" - -#: ../globals.h:1005 -msgid "E170: Missing :endwhile" -msgstr "E170: Brak :endwhile" - -#: ../globals.h:1006 -msgid "E170: Missing :endfor" -msgstr "E170: Brak :endfor" - -#: ../globals.h:1007 -msgid "E588: :endwhile without :while" -msgstr "E588: :endwhile bez :while" - -#: ../globals.h:1008 -msgid "E588: :endfor without :for" -msgstr "E588: :endfor bez :for" - -#: ../globals.h:1009 -msgid "E13: File exists (add ! to override)" -msgstr "E13: Plik istnieje (wymu poprzez !)" - -#: ../globals.h:1010 -msgid "E472: Command failed" -msgstr "E472: Komenda nie powioda si" - -#: ../globals.h:1011 -msgid "E473: Internal error" -msgstr "E473: Bd wewntrzny" - -#: ../globals.h:1012 -msgid "Interrupted" -msgstr "Przerwane" - -#: ../globals.h:1013 -msgid "E14: Invalid address" -msgstr "E14: Niewaciwy adres" - -#: ../globals.h:1014 -msgid "E474: Invalid argument" -msgstr "E474: Niewaciwy argument" - -#: ../globals.h:1015 -#, c-format -msgid "E475: Invalid argument: %s" -msgstr "E475: Niewaciwy argument: %s" - -#: ../globals.h:1016 -#, c-format -msgid "E15: Invalid expression: %s" -msgstr "E15: Niewaciwe wyraenie: %s" - -#: ../globals.h:1017 -msgid "E16: Invalid range" -msgstr "E16: Niewaciwy zakres" - -#: ../globals.h:1018 -msgid "E476: Invalid command" -msgstr "E476: Niewaciwa komenda" - -#: ../globals.h:1019 -#, c-format -msgid "E17: \"%s\" is a directory" -msgstr "E17: \"%s\" jest katalogiem" - -#: ../globals.h:1020 -#, fuzzy -msgid "E900: Invalid job id" -msgstr "E49: Niewaciwa wielko przewinicia" - -#: ../globals.h:1021 -msgid "E901: Job table is full" -msgstr "" - -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - -#: ../globals.h:1024 -#, c-format -msgid "E364: Library call failed for \"%s()\"" -msgstr "E364: Wywoanie z biblioteki nie powiodo si dla \"%s()\"" - -#: ../globals.h:1026 -msgid "E19: Mark has invalid line number" -msgstr "E19: Zakadka ma niewaciwy numer wiersza" - -#: ../globals.h:1027 -msgid "E20: Mark not set" -msgstr "E20: Zakadka nienastawiona" - -#: ../globals.h:1029 -msgid "E21: Cannot make changes, 'modifiable' is off" -msgstr "E21: Nie mog wykona zmian, 'modifiable' jest wyczone" - -#: ../globals.h:1030 -msgid "E22: Scripts nested too deep" -msgstr "E22: Zbyt gbokie zagniedenie skryptw" - -#: ../globals.h:1031 -msgid "E23: No alternate file" -msgstr "E23: Brak pliku zamiany" - -#: ../globals.h:1032 -msgid "E24: No such abbreviation" -msgstr "E24: Nie ma takiego skrtu" - -#: ../globals.h:1033 -msgid "E477: No ! allowed" -msgstr "E477: Niedozwolone !" - -#: ../globals.h:1035 -msgid "E25: Nvim does not have a built-in GUI" -msgstr "E25: GUI nie moe by uyte: Nie wczono podczas kompilacji" - -#: ../globals.h:1036 -#, c-format -msgid "E28: No such highlight group name: %s" -msgstr "E28: Brak takiej nazwy grupy podwietlania: %s" - -#: ../globals.h:1037 -msgid "E29: No inserted text yet" -msgstr "E29: Nie wprowadzono jeszcze adnego tekstu" - -#: ../globals.h:1038 -msgid "E30: No previous command line" -msgstr "E30: Nie ma poprzedniego wiersza polece" - -#: ../globals.h:1039 -msgid "E31: No such mapping" -msgstr "E31: Nie ma takiego przyporzdkowania" - -#: ../globals.h:1040 -msgid "E479: No match" -msgstr "E479: Brak dopasowa" - -#: ../globals.h:1041 -#, c-format -msgid "E480: No match: %s" -msgstr "E480: Brak dopasowa: %s" - -#: ../globals.h:1042 -msgid "E32: No file name" -msgstr "E32: Brak nazwy pliku" - -#: ../globals.h:1044 -msgid "E33: No previous substitute regular expression" -msgstr "E33: Brak poprzedniego podstawieniowego wyraenia regularnego" - -#: ../globals.h:1045 -msgid "E34: No previous command" -msgstr "E34: Brak poprzedniej komendy" - -#: ../globals.h:1046 -msgid "E35: No previous regular expression" -msgstr "E35: Brak poprzedniego wyraenia regularnego" - -#: ../globals.h:1047 -msgid "E481: No range allowed" -msgstr "E481: Zakres niedozwolony" - -#: ../globals.h:1048 -msgid "E36: Not enough room" -msgstr "E36: Brak miejsca" - -#: ../globals.h:1049 -#, c-format -msgid "E482: Can't create file %s" -msgstr "E482: Nie mog stworzy pliku %s" - -#: ../globals.h:1050 -msgid "E483: Can't get temp file name" -msgstr "E483: Nie mog pobra nazwy pliku tymczasowego" - -#: ../globals.h:1051 -#, c-format -msgid "E484: Can't open file %s" -msgstr "E484: Nie mog otworzy pliku %s" - -#: ../globals.h:1052 -#, c-format -msgid "E485: Can't read file %s" -msgstr "E485: Nie mog odczyta pliku %s" - -#: ../globals.h:1054 -msgid "E37: No write since last change (add ! to override)" -msgstr "E37: Nie zapisano od ostatniej zmiany (wymu przez !)" - -#: ../globals.h:1055 -#, fuzzy -msgid "E37: No write since last change" -msgstr "[Brak zapisu od czasu ostatniej zmiany]\n" - -#: ../globals.h:1056 -msgid "E38: Null argument" -msgstr "E38: Zerowy argument" - -#: ../globals.h:1057 -msgid "E39: Number expected" -msgstr "E39: Oczekuj liczby" - -#: ../globals.h:1058 -#, c-format -msgid "E40: Can't open errorfile %s" -msgstr "E40: Nie mog otworzy pliku bdw %s" - -#: ../globals.h:1059 -msgid "E41: Out of memory!" -msgstr "E41: Pami wyczerpana!" - -#: ../globals.h:1060 -msgid "Pattern not found" -msgstr "Nie znaleziono wzorca" - -#: ../globals.h:1061 -#, c-format -msgid "E486: Pattern not found: %s" -msgstr "E486: Nie znaleziono wzorca: %s" - -#: ../globals.h:1062 -msgid "E487: Argument must be positive" -msgstr "E487: Argument musi by dodatni" - -#: ../globals.h:1064 -msgid "E459: Cannot go back to previous directory" -msgstr "E459: Nie mona przej do poprzedniego katalogu" - -#: ../globals.h:1066 -msgid "E42: No Errors" -msgstr "E42: Brak Bdw" - -#: ../globals.h:1067 -msgid "E776: No location list" -msgstr "E776: Brak listy lokacji" - -#: ../globals.h:1068 -msgid "E43: Damaged match string" -msgstr "E43: Popsuty cig wzorca" - -#: ../globals.h:1069 -msgid "E44: Corrupted regexp program" -msgstr "E44: Zepsuty program wyrae regularnych" - -#: ../globals.h:1071 -msgid "E45: 'readonly' option is set (add ! to override)" -msgstr "E45: opcja 'readonly' jest ustawiona (wymu poprzez !)" - -#: ../globals.h:1073 -#, c-format -msgid "E46: Cannot change read-only variable \"%s\"" -msgstr "E46: Nie mog zmieni zmiennej tylko do odczytu \"%s\"" - -#: ../globals.h:1075 -#, c-format -msgid "E794: Cannot set variable in the sandbox: \"%s\"" -msgstr "E794: Nie mog ustawi zmiennej w piaskownicy: \"%s\"" - -#: ../globals.h:1076 -msgid "E47: Error while reading errorfile" -msgstr "E47: Bd w trakcie czytania pliku bdw" - -#: ../globals.h:1078 -msgid "E48: Not allowed in sandbox" -msgstr "E48: Niedozwolone w piaskownicy" - -#: ../globals.h:1080 -msgid "E523: Not allowed here" -msgstr "E523: Niedozwolone w tym miejscu" - -#: ../globals.h:1082 -msgid "E359: Screen mode setting not supported" -msgstr "E359: Ustawianie trybu ekranu niewspomagane" - -#: ../globals.h:1083 -msgid "E49: Invalid scroll size" -msgstr "E49: Niewaciwa wielko przewinicia" - -#: ../globals.h:1084 -msgid "E91: 'shell' option is empty" -msgstr "E91: opcja 'shell' jest pusta" - -#: ../globals.h:1085 -msgid "E255: Couldn't read in sign data!" -msgstr "E255: Nie mogem wczyta danych znaku!" - -#: ../globals.h:1086 -msgid "E72: Close error on swap file" -msgstr "E72: Bd podczas zamykania pliku wymiany" - -#: ../globals.h:1087 -msgid "E73: tag stack empty" -msgstr "E73: stos znacznikw jest pusty" - -#: ../globals.h:1088 -msgid "E74: Command too complex" -msgstr "E74: Komenda jest zbyt skomplikowana" - -#: ../globals.h:1089 -msgid "E75: Name too long" -msgstr "E75: Zbyt duga nazwa" - -#: ../globals.h:1090 -msgid "E76: Too many [" -msgstr "E76: Zbyt wiele [" - -#: ../globals.h:1091 -msgid "E77: Too many file names" -msgstr "E77: Zbyt wiele nazw plikw" - -#: ../globals.h:1092 -msgid "E488: Trailing characters" -msgstr "E488: Nadstpne znaczki" - -#: ../globals.h:1093 -msgid "E78: Unknown mark" -msgstr "E78: Nieznana zakadka" - -#: ../globals.h:1094 -msgid "E79: Cannot expand wildcards" -msgstr "E79: Nie mog rozwin znakw wieloznacznych" - -#: ../globals.h:1096 -msgid "E591: 'winheight' cannot be smaller than 'winminheight'" -msgstr "E591: 'winheight' nie moe by mniejsze ni 'winminheight'" - -#: ../globals.h:1098 -msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'" -msgstr "E592: 'winwidth' nie moe by mniejsze ni 'winminwidth'" - -#: ../globals.h:1099 -msgid "E80: Error while writing" -msgstr "E80: Bd w trakcie zapisu" - -#: ../globals.h:1100 -msgid "Zero count" -msgstr "Zerowy licznik" - -#: ../globals.h:1101 -msgid "E81: Using <SID> not in a script context" -msgstr "E81: Uycie <SID> poza kontekstem skryptu" - -#: ../globals.h:1102 -#, c-format -msgid "E685: Internal error: %s" -msgstr "E685: Bd wewntrzny: %s" - -#: ../globals.h:1104 -msgid "E363: pattern uses more memory than 'maxmempattern'" -msgstr "E363: Wzorzec uywa wicej pamici ni 'maxmempattern'" - -#: ../globals.h:1105 -msgid "E749: empty buffer" -msgstr "E749: pusty bufor" - -#: ../globals.h:1108 -msgid "E682: Invalid search pattern or delimiter" -msgstr "E682: Niewaciwy wzorzec wyszukiwania lub delimiter" - -#: ../globals.h:1109 -msgid "E139: File is loaded in another buffer" -msgstr "E139: Plik jest zaadowany w innym buforze" - -#: ../globals.h:1110 -#, c-format -msgid "E764: Option '%s' is not set" -msgstr "E764: Nie ustawiono opcji '%s'" - -#: ../globals.h:1111 -msgid "E850: Invalid register name" -msgstr "E850: Niewaciwa nazwa rejestru" - -#: ../globals.h:1114 -msgid "search hit TOP, continuing at BOTTOM" -msgstr "szukanie dobio GRY; kontynuacja od KOCA" - -#: ../globals.h:1115 -msgid "search hit BOTTOM, continuing at TOP" -msgstr "szukanie dobio KOCA; kontynuacja od GRY" - -#: ../hardcopy.c:240 -msgid "E550: Missing colon" -msgstr "E550: Brak dwukropka" - -#: ../hardcopy.c:252 -msgid "E551: Illegal component" -msgstr "E551: Niedozwolona cz" - -#: ../hardcopy.c:259 -msgid "E552: digit expected" -msgstr "E552: oczekiwaem na cyfr" - -#: ../hardcopy.c:473 -#, c-format -msgid "Page %d" -msgstr "Strona %d" - -#: ../hardcopy.c:597 -msgid "No text to be printed" -msgstr "Brak tekstu do drukowania" - -#: ../hardcopy.c:668 -#, c-format -msgid "Printing page %d (%d%%)" -msgstr "Drukuj stron %d (%d%%)" - -#: ../hardcopy.c:680 -#, c-format -msgid " Copy %d of %d" -msgstr " Kopia %d z %d" - -#: ../hardcopy.c:733 -#, c-format -msgid "Printed: %s" -msgstr "Wydrukowano: %s" - -#: ../hardcopy.c:740 -msgid "Printing aborted" -msgstr "Drukowanie odwoane" - -#: ../hardcopy.c:1365 -msgid "E455: Error writing to PostScript output file" -msgstr "E455: Nie mona zapisa do wyjciowego pliku PostScriptu" - -#: ../hardcopy.c:1747 -#, c-format -msgid "E624: Can't open file \"%s\"" -msgstr "E624: Nie mog otworzy pliku \"%s\"" - -#: ../hardcopy.c:1756 ../hardcopy.c:2470 -#, c-format -msgid "E457: Can't read PostScript resource file \"%s\"" -msgstr "E457: Nie mona odczyta pliku zasobw PostScriptu \"%s\"" - -#: ../hardcopy.c:1772 -#, c-format -msgid "E618: file \"%s\" is not a PostScript resource file" -msgstr "E618: plik \"%s\" nie jest plikiem zasobw PostScriptu" - -#: ../hardcopy.c:1788 ../hardcopy.c:1805 ../hardcopy.c:1844 -#, c-format -msgid "E619: file \"%s\" is not a supported PostScript resource file" -msgstr "E619: plik \"%s\" nie jest wspieranym plikiem zasobw PostScriptu" - -#: ../hardcopy.c:1856 -#, c-format -msgid "E621: \"%s\" resource file has wrong version" -msgstr "E621: \"%s\" nieprawidowa wersja pliku zasobw" - -#: ../hardcopy.c:2225 -msgid "E673: Incompatible multi-byte encoding and character set." -msgstr "E673: Niekompatybilne kodowanie wielobajtowe i zestaw znakw." - -#: ../hardcopy.c:2238 -msgid "E674: printmbcharset cannot be empty with multi-byte encoding." -msgstr "E674: printmbcharset nie moe by pusty przy kodowaniu wielobajtowym." - -#: ../hardcopy.c:2254 -msgid "E675: No default font specified for multi-byte printing." -msgstr "E675: Nie okrelono domylnej czcionki dla drukowania wielobajtowego." - -#: ../hardcopy.c:2426 -msgid "E324: Can't open PostScript output file" -msgstr "E324: Nie mona otworzy pliku PostScript do wyjcia" - -#: ../hardcopy.c:2458 -#, c-format -msgid "E456: Can't open file \"%s\"" -msgstr "E456: Nie mog otworzy pliku \"%s\"" - -#: ../hardcopy.c:2583 -msgid "E456: Can't find PostScript resource file \"prolog.ps\"" -msgstr "E456: Nie mona znale pliku zasobw PostScriptu \"prolog.ps\"" - -#: ../hardcopy.c:2593 -msgid "E456: Can't find PostScript resource file \"cidfont.ps\"" -msgstr "E456: Nie mona znale pliku zasobw PostScriptu \"cidfont.ps\"" - -#: ../hardcopy.c:2622 ../hardcopy.c:2639 ../hardcopy.c:2665 -#, c-format -msgid "E456: Can't find PostScript resource file \"%s.ps\"" -msgstr "E456: Nie mona znale pliku zasobw PostScriptu \"%s.ps\"" - -#: ../hardcopy.c:2654 -#, c-format -msgid "E620: Unable to convert to print encoding \"%s\"" -msgstr "E620: Nie mona przekonwertowa by drukowa kodowanie \"%s\"" - -#: ../hardcopy.c:2877 -msgid "Sending to printer..." -msgstr "Przesyam do drukarki..." - -#: ../hardcopy.c:2881 -msgid "E365: Failed to print PostScript file" -msgstr "E365: Drukowanie pliku PostScript nie powiodo si" - -#: ../hardcopy.c:2883 -msgid "Print job sent." -msgstr "Zadanie drukowanie przesane." - -#: ../if_cscope.c:85 -msgid "Add a new database" -msgstr "Dodaj now baz danych" - -#: ../if_cscope.c:87 -msgid "Query for a pattern" -msgstr "Zapytane o wzorzec" - -#: ../if_cscope.c:89 -msgid "Show this message" -msgstr "Poka ten komunikat" - -#: ../if_cscope.c:91 -msgid "Kill a connection" -msgstr "Zabij poczenie" - -#: ../if_cscope.c:93 -msgid "Reinit all connections" -msgstr "Ponw wszelkie poczenia" - -#: ../if_cscope.c:95 -msgid "Show connections" -msgstr "Poka poczenia" - -#: ../if_cscope.c:101 -#, c-format -msgid "E560: Usage: cs[cope] %s" -msgstr "E560: Zastosowanie: cs[cope] %s" - -#: ../if_cscope.c:225 -msgid "This cscope command does not support splitting the window.\n" -msgstr "Ta komenda cscope nie wspomaga podzielenia okna.\n" - -#: ../if_cscope.c:266 -msgid "E562: Usage: cstag <ident>" -msgstr "E562: Zastosowanie: cstag <ident>" - -#: ../if_cscope.c:313 -msgid "E257: cstag: tag not found" -msgstr "E257: cstag: nie znaleziono znacznika" - -#: ../if_cscope.c:461 -#, c-format -msgid "E563: stat(%s) error: %d" -msgstr "E563: stat(%s) bd: %d" - -#: ../if_cscope.c:551 -#, c-format -msgid "E564: %s is not a directory or a valid cscope database" -msgstr "E564: %s nie jest katalogiem lub poprawn baz danych cscope" - -#: ../if_cscope.c:566 -#, c-format -msgid "Added cscope database %s" -msgstr "Dodano baz danych cscope %s" - -#: ../if_cscope.c:616 -#, c-format -msgid "E262: error reading cscope connection %<PRId64>" -msgstr "E262: bd odczytu poczenia z cscope %<PRId64>" - -#: ../if_cscope.c:711 -msgid "E561: unknown cscope search type" -msgstr "E561: nieznany typ szukania cscope" - -#: ../if_cscope.c:752 ../if_cscope.c:789 -msgid "E566: Could not create cscope pipes" -msgstr "E566: Nie mogem stworzy potoku do cscope" - -#: ../if_cscope.c:767 -msgid "E622: Could not fork for cscope" -msgstr "E622: Nie mogem utworzy rozwidlenia dla cscope" - -#: ../if_cscope.c:849 -msgid "cs_create_connection setpgid failed" -msgstr "nie powiodo si setpgid cs_create_connection" - -#: ../if_cscope.c:853 ../if_cscope.c:889 -msgid "cs_create_connection exec failed" -msgstr "wykonanie cs_create_connection nie powiodo si" - -#: ../if_cscope.c:863 ../if_cscope.c:902 -msgid "cs_create_connection: fdopen for to_fp failed" -msgstr "cs_create_connection: fdopen dla to_fp nie powiodo si" - -#: ../if_cscope.c:865 ../if_cscope.c:906 -msgid "cs_create_connection: fdopen for fr_fp failed" -msgstr "cs_create_connection: fdopen dla fr_fp nie powiodo si" - -#: ../if_cscope.c:890 -msgid "E623: Could not spawn cscope process" -msgstr "E623: Nie mogem stworzy procesu cscope" - -#: ../if_cscope.c:932 -msgid "E567: no cscope connections" -msgstr "E567: brak poczenia z cscope" - -#: ../if_cscope.c:1009 -#, c-format -msgid "E469: invalid cscopequickfix flag %c for %c" -msgstr "E469: nieprawidowa flaga cscopequickfix %c dla %c" - -#: ../if_cscope.c:1058 -#, c-format -msgid "E259: no matches found for cscope query %s of %s" -msgstr "E259: brak dopasowa dla zapytania cscope %s o %s" - -#: ../if_cscope.c:1142 -msgid "cscope commands:\n" -msgstr "komendy cscope:\n" - -#: ../if_cscope.c:1150 -#, c-format -msgid "%-5s: %s%*s (Usage: %s)" -msgstr "%-5s: %s%*s (Uycie: %s)" - -#: ../if_cscope.c:1155 -msgid "" -"\n" -" c: Find functions calling this function\n" -" d: Find functions called by this function\n" -" e: Find this egrep pattern\n" -" f: Find this file\n" -" g: Find this definition\n" -" i: Find files #including this file\n" -" s: Find this C symbol\n" -" t: Find this text string\n" -msgstr "" -"\n" -" c: znajd funkcje wywoujce t funkcj\n" -" d: znajd funkcje wywoywane przez t funkcj\n" -" e: znajd ten wzorzec egrep\n" -" f: znajd ten plik\n" -" g: znajd t definicj\n" -" i: znajd pliki wczajce (#include) ten plik\n" -" s: znajd ten symbol C\n" -" t: znajd ten acuch znakw\n" - -#: ../if_cscope.c:1226 -msgid "E568: duplicate cscope database not added" -msgstr "E568: nie dodano duplikatu bazy danych cscope" - -#: ../if_cscope.c:1335 -#, c-format -msgid "E261: cscope connection %s not found" -msgstr "E261: nie ma poczenia %s z cscope" - -#: ../if_cscope.c:1364 -#, c-format -msgid "cscope connection %s closed" -msgstr "poczenie %s z cscope zostao zamknite" - -#. should not reach here -#: ../if_cscope.c:1486 -msgid "E570: fatal error in cs_manage_matches" -msgstr "E570: bd krytyczny w cs_manage_matches" - -#: ../if_cscope.c:1693 -#, c-format -msgid "Cscope tag: %s" -msgstr "Znacznik cscope: %s" - -#: ../if_cscope.c:1711 -msgid "" -"\n" -" # line" -msgstr "" -"\n" -" # wiersz" - -#: ../if_cscope.c:1713 -msgid "filename / context / line\n" -msgstr "nazwa pliku / kontekst / wiersz\n" - -#: ../if_cscope.c:1809 -#, c-format -msgid "E609: Cscope error: %s" -msgstr "E609: Bd cscope: %s" - -#: ../if_cscope.c:2053 -msgid "All cscope databases reset" -msgstr "Wszystkie bazy danych cscope przeadowano" - -#: ../if_cscope.c:2123 -msgid "no cscope connections\n" -msgstr "brak pocze z cscope\n" - -#: ../if_cscope.c:2126 -msgid " # pid database name prepend path\n" -msgstr " # pid nazwa bazy danych przedsionek tropu\n" - -#: ../main.c:144 -msgid "Unknown option argument" -msgstr "Nieznany argument opcji" - -#: ../main.c:146 -msgid "Too many edit arguments" -msgstr "Zbyt wiele argumentw" - -#: ../main.c:148 -msgid "Argument missing after" -msgstr "Brak argumentu po" - -#: ../main.c:150 -msgid "Garbage after option argument" -msgstr "miecie po argumencie opcji" - -#: ../main.c:152 -msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments" -msgstr "" -"Zbyt wiele argumentw \"+komenda\", \"-c komenda\" lub \"--cmd komenda\"" - -#: ../main.c:154 -msgid "Invalid argument for" -msgstr "Niewaciwy argument dla" - -#: ../main.c:294 -#, c-format -msgid "%d files to edit\n" -msgstr "%d plikw do edycji\n" - -#: ../main.c:1342 -msgid "Attempt to open script file again: \"" -msgstr "Prba ponownego otworzenia pliku skryptu: \"" - -#: ../main.c:1350 -msgid "Cannot open for reading: \"" -msgstr "Nie mog otworzy do odczytu: \"" - -#: ../main.c:1393 -msgid "Cannot open for script output: \"" -msgstr "Nie mog otworzy dla wyjcia skryptu: \"" - -#: ../main.c:1622 -msgid "Vim: Warning: Output is not to a terminal\n" -msgstr "Vim: OSTRZEENIE: Wyjcie nie jest terminalem\n" - -#: ../main.c:1624 -msgid "Vim: Warning: Input is not from a terminal\n" -msgstr "Vim: OSTRZEENIE: Wejcie nie pochodzi z terminala\n" - -#. just in case.. -#: ../main.c:1891 -msgid "pre-vimrc command line" -msgstr "linia polece pre-vimrc" - -#: ../main.c:1964 -#, c-format -msgid "E282: Cannot read from \"%s\"" -msgstr "E282: Nie mog czyta z \"%s\"" - -#: ../main.c:2149 -msgid "" -"\n" -"More info with: \"vim -h\"\n" -msgstr "" -"\n" -"Dalsze informacje poprzez: \"vim -h\"\n" - -#: ../main.c:2178 -msgid "[file ..] edit specified file(s)" -msgstr "[plik ..] edytuj zadane pliki" - -#: ../main.c:2179 -msgid "- read text from stdin" -msgstr "- czytaj tekst ze stdin" - -#: ../main.c:2180 -msgid "-t tag edit file where tag is defined" -msgstr "-t znacznik edytuj plik, w ktrym dany znacznik jest zdefiniowany" - -#: ../main.c:2181 -msgid "-q [errorfile] edit file with first error" -msgstr "-q [errorfile] edytuj plik, zawierajcy pierwszy bd" - -#: ../main.c:2187 -msgid "" -"\n" -"\n" -"usage:" -msgstr "" -"\n" -"\n" -"uycie:" - -#: ../main.c:2189 -msgid " vim [arguments] " -msgstr " vim [argumenty]" - -#: ../main.c:2193 -msgid "" -"\n" -" or:" -msgstr "" -"\n" -" lub:" - -#: ../main.c:2196 -msgid "" -"\n" -"\n" -"Arguments:\n" -msgstr "" -"\n" -"\n" -"Argumenty:\n" - -#: ../main.c:2197 -msgid "--\t\t\tOnly file names after this" -msgstr "--\t\t\tTylko nazwy plikw po tym" - -#: ../main.c:2199 -msgid "--literal\t\tDon't expand wildcards" -msgstr "--literal\t\tNie rozwijaj znakw specjalnych" - -#: ../main.c:2201 -msgid "-v\t\t\tVi mode (like \"vi\")" -msgstr "-v\t\t\tTryb vi (jak \"vi\")" - -#: ../main.c:2202 -msgid "-e\t\t\tEx mode (like \"ex\")" -msgstr "-e\t\t\tTryb ex (jak \"ex\")" - -#: ../main.c:2203 -msgid "-E\t\t\tImproved Ex mode" -msgstr "-E\t\t\tUsprawniony tryb Ex" - -#: ../main.c:2204 -msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")" -msgstr "-s\t\t\tCichy tryb (ta) (tylko dla \"ex\")" - -#: ../main.c:2205 -msgid "-d\t\t\tDiff mode (like \"vimdiff\")" -msgstr "-d\t\t\tTryb rnic (jak \"vimdiff\")" - -#: ../main.c:2206 -msgid "-y\t\t\tEasy mode (like \"evim\", modeless)" -msgstr "-y\t\t\tTryb atwy (jak \"evim\", bez trybw)" - -#: ../main.c:2207 -msgid "-R\t\t\tReadonly mode (like \"view\")" -msgstr "-R\t\t\tTryb wycznie do odczytu (jak \"view\")" - -#: ../main.c:2208 -msgid "-Z\t\t\tRestricted mode (like \"rvim\")" -msgstr "-Z\t\t\tTryb ograniczenia (jak \"rvim\")" - -#: ../main.c:2209 -msgid "-m\t\t\tModifications (writing files) not allowed" -msgstr "-m\t\t\tModyfikacje (zapisywanie plikw) niedozwolone" - -#: ../main.c:2210 -msgid "-M\t\t\tModifications in text not allowed" -msgstr "-M\t\t\tZakaz modyfikacji tekstu" - -#: ../main.c:2211 -msgid "-b\t\t\tBinary mode" -msgstr "-b\t\t\tTryb binarny" - -#: ../main.c:2212 -msgid "-l\t\t\tLisp mode" -msgstr "-l\t\t\tTryb lisp" - -#: ../main.c:2213 -msgid "-C\t\t\tCompatible with Vi: 'compatible'" -msgstr "-C\t\t\tBd zgodny z Vi: 'compatible'" - -#: ../main.c:2214 -msgid "-N\t\t\tNot fully Vi compatible: 'nocompatible'" -msgstr "-N\t\t\tBd niezupenie zgodny z Vi: 'nocompatible'" - -#: ../main.c:2215 -msgid "-V[N][fname]\t\tBe verbose [level N] [log messages to fname]" -msgstr "-V[N][nazwap]\t\tGadatliwy [poziom N] [zapisuj wiadomoci do nazwap]" - -#: ../main.c:2216 -msgid "-D\t\t\tDebugging mode" -msgstr "-D\t\t\tTryb odpluskwiania" - -#: ../main.c:2217 -msgid "-n\t\t\tNo swap file, use memory only" -msgstr "-n\t\t\tZamiast pliku wymiany, uywaj tylko pamici" - -#: ../main.c:2218 -msgid "-r\t\t\tList swap files and exit" -msgstr "-r\t\t\tWylicz pliki wymiany i zakocz" - -#: ../main.c:2219 -msgid "-r (with file name)\tRecover crashed session" -msgstr "-r (z nazw pliku)\tOdtwrz zaaman sesj" - -#: ../main.c:2220 -msgid "-L\t\t\tSame as -r" -msgstr "-L\t\t\tTosame z -r" - -#: ../main.c:2221 -msgid "-A\t\t\tstart in Arabic mode" -msgstr "-A\t\t\trozpocznij w trybie arabskim" - -#: ../main.c:2222 -msgid "-H\t\t\tStart in Hebrew mode" -msgstr "-H\t\t\trozpocznij w trybie hebrajskim" - -#: ../main.c:2223 -msgid "-F\t\t\tStart in Farsi mode" -msgstr "-F\t\t\trozpocznij w trybie farsi" - -#: ../main.c:2224 -msgid "-T <terminal>\tSet terminal type to <terminal>" -msgstr "-T <terminal>\tUstaw typ terminala na <terminal>" - -#: ../main.c:2225 -msgid "-u <vimrc>\t\tUse <vimrc> instead of any .vimrc" -msgstr "-u <vimrc>\t\tUyj <vimrc> zamiast jakiegokolwiek .vimrc" - -#: ../main.c:2226 -msgid "--noplugin\t\tDon't load plugin scripts" -msgstr "--noplugin\t\tNie aduj skryptw wtyczek" - -#: ../main.c:2227 -msgid "-p[N]\t\tOpen N tab pages (default: one for each file)" -msgstr "-p[N]\t\tOtwrz N kart (domylnie: po jednej dla kadego pliku)" - -#: ../main.c:2228 -msgid "-o[N]\t\tOpen N windows (default: one for each file)" -msgstr "-o[N]\t\tOtwrz N okien (domylnie: po jednym dla kadego pliku)" - -#: ../main.c:2229 -msgid "-O[N]\t\tLike -o but split vertically" -msgstr "-O[N]\t\ttak samo jak -o tylko dziel okno pionowo" - -#: ../main.c:2230 -msgid "+\t\t\tStart at end of file" -msgstr "+\t\t\tZacznij na kocu pliku" - -#: ../main.c:2231 -msgid "+<lnum>\t\tStart at line <lnum>" -msgstr "+<lnum>\t\tZacznij w wierszu <lnum>" - -#: ../main.c:2232 -msgid "--cmd <command>\tExecute <command> before loading any vimrc file" -msgstr "" -"-cmd <command>\t\tWykonaj komend <command> przed zaadowaniem " -"jakiegokolwiek pliku vimrc" - -#: ../main.c:2233 -msgid "-c <command>\t\tExecute <command> after loading the first file" -msgstr "" -"-c <command>\t\tWykonaj komend <command> po zaadowaniu pierwszego pliku" - -#: ../main.c:2235 -msgid "-S <session>\t\tSource file <session> after loading the first file" -msgstr "-S <sesja>\t\tWczytaj plik <sesja> po zaadowaniu pierwszego pliku" - -#: ../main.c:2236 -msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>" -msgstr "-s <scriptin>\tWczytuj komendy trybu normalnego z pliku <scriptin>" - -#: ../main.c:2237 -msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>" -msgstr "" -"-w <scriptout>\tDocz wszystkie wprowadzane komendy do pliku <scriptout>" - -#: ../main.c:2238 -msgid "-W <scriptout>\tWrite all typed commands to file <scriptout>" -msgstr "" -"-W <scriptout>\tZapisuj wszystkie wprowadzane komendy do pliku <scriptout>" - -#: ../main.c:2240 -msgid "--startuptime <file>\tWrite startup timing messages to <file>" -msgstr "" -"--startuptime <plik>\n" -"Zapisz wiadomoci o dugoci startu do <plik>" - -#: ../main.c:2242 -msgid "-i <viminfo>\t\tUse <viminfo> instead of .viminfo" -msgstr "-i <viminfo>\t\tUywaj <viminfo> zamiast .viminfo" - -#: ../main.c:2243 -msgid "-h or --help\tPrint Help (this message) and exit" -msgstr "-h lub --help\twywietl Pomoc (czyli t wiadomo) i zakocz" - -#: ../main.c:2244 -msgid "--version\t\tPrint version information and exit" -msgstr "--version\t\twywietl informacj o wersji i zakocz" - -#: ../mark.c:676 -msgid "No marks set" -msgstr "Brak zakadek" - -#: ../mark.c:678 -#, c-format -msgid "E283: No marks matching \"%s\"" -msgstr "E283: adna zakadka nie pasuje do \"%s\"" - -#. Highlight title -#: ../mark.c:687 -msgid "" -"\n" -"mark line col file/text" -msgstr "" -"\n" -"zak. wiersz kol plik/tekst" - -#. Highlight title -#: ../mark.c:789 -msgid "" -"\n" -" jump line col file/text" -msgstr "" -"\n" -" skok wiersz kol plik/tekst" - -#. Highlight title -#: ../mark.c:831 -msgid "" -"\n" -"change line col text" -msgstr "" -"\n" -"zmie wrsz. kol tekst" - -#: ../mark.c:1238 -msgid "" -"\n" -"# File marks:\n" -msgstr "" -"\n" -"# Zakadki w plikach:\n" - -#. Write the jumplist with -' -#: ../mark.c:1271 -msgid "" -"\n" -"# Jumplist (newest first):\n" -msgstr "" -"\n" -"# Lista odniesie (poczwszy od najnowszych):\n" - -#: ../mark.c:1352 -msgid "" -"\n" -"# History of marks within files (newest to oldest):\n" -msgstr "" -"\n" -"# Historia zakadek w plikach (od najnowszych po najstarsze):\n" - -#: ../mark.c:1431 -msgid "Missing '>'" -msgstr "Brak '>'" - -#: ../memfile.c:426 -msgid "E293: block was not locked" -msgstr "E293: blok nie by zablokowany" - -#: ../memfile.c:799 -msgid "E294: Seek error in swap file read" -msgstr "E294: Bd w trakcie czytania pliku wymiany" - -#: ../memfile.c:803 -msgid "E295: Read error in swap file" -msgstr "E295: Bd odczytu pliku wymiany" - -#: ../memfile.c:849 -msgid "E296: Seek error in swap file write" -msgstr "E296: Bd szukania w pliku wymiany" - -#: ../memfile.c:865 -msgid "E297: Write error in swap file" -msgstr "E297: Bd zapisu w pliku wymiany" - -#: ../memfile.c:1036 -msgid "E300: Swap file already exists (symlink attack?)" -msgstr "E300: Plik wymiany ju istnieje (atak symlink?)" - -#: ../memline.c:318 -msgid "E298: Didn't get block nr 0?" -msgstr "E298: Nie otrzymaem bloku nr 0?" - -#: ../memline.c:361 -msgid "E298: Didn't get block nr 1?" -msgstr "E298: Nie otrzymaem bloku nr 1?" - -#: ../memline.c:377 -msgid "E298: Didn't get block nr 2?" -msgstr "E298: Nie otrzymaem bloku nr 2?" - -#. could not (re)open the swap file, what can we do???? -#: ../memline.c:465 -msgid "E301: Oops, lost the swap file!!!" -msgstr "E301: Ojej, zgubiem plik wymiany!!!" - -#: ../memline.c:477 -msgid "E302: Could not rename swap file" -msgstr "E302: Nie mogem zmieni nazwy pliku wymiany" - -#: ../memline.c:554 -#, c-format -msgid "E303: Unable to open swap file for \"%s\", recovery impossible" -msgstr "" -"E303: Nie mog otworzy pliku wymiany dla \"%s\"; odtworzenie niemoliwe" - -#: ../memline.c:666 -msgid "E304: ml_upd_block0(): Didn't get block 0??" -msgstr "E304: ml_upd_block(): Nie otrzymaem bloku 0??" - -#. no swap files found -#: ../memline.c:830 -#, c-format -msgid "E305: No swap file found for %s" -msgstr "E305: Nie znaleziono pliku wymiany dla %s" - -#: ../memline.c:839 -msgid "Enter number of swap file to use (0 to quit): " -msgstr "Wprowad numer pliku wymiany, ktrego uy (0 by wyj): " - -#: ../memline.c:879 -#, c-format -msgid "E306: Cannot open %s" -msgstr "E306: Nie mog otworzy %s" - -#: ../memline.c:897 -msgid "Unable to read block 0 from " -msgstr "Nie mog odczyta bloku 0 z " - -#: ../memline.c:900 -msgid "" -"\n" -"Maybe no changes were made or Vim did not update the swap file." -msgstr "" -"\n" -"Moe nie wykonano zmian albo Vim nie zaktualizowa pliku wymiany." - -#: ../memline.c:909 -msgid " cannot be used with this version of Vim.\n" -msgstr " nie moe by stosowany z t wersj Vima.\n" - -#: ../memline.c:911 -msgid "Use Vim version 3.0.\n" -msgstr "Uyj Vima w wersji 3.0.\n" - -#: ../memline.c:916 -#, c-format -msgid "E307: %s does not look like a Vim swap file" -msgstr "E307: %s nie wyglda na plik wymiany Vima" - -#: ../memline.c:922 -msgid " cannot be used on this computer.\n" -msgstr " nie moe by stosowany na tym komputerze.\n" - -#: ../memline.c:924 -msgid "The file was created on " -msgstr "Ten plik zosta stworzony na " - -#: ../memline.c:928 -msgid "" -",\n" -"or the file has been damaged." -msgstr "" -",\n" -"lub plik zosta uszkodzony." - -#: ../memline.c:945 -msgid " has been damaged (page size is smaller than minimum value).\n" -msgstr "" -" zosta uszkodzony (wielko strony jest mniejsza ni najmniejsza warto).\n" - -#: ../memline.c:974 -#, c-format -msgid "Using swap file \"%s\"" -msgstr "Uywam pliku wymiany \"%s\"" - -#: ../memline.c:980 -#, c-format -msgid "Original file \"%s\"" -msgstr "Oryginalny plik \"%s\"" - -#: ../memline.c:995 -msgid "E308: Warning: Original file may have been changed" -msgstr "E308: OSTRZEENIE: Oryginalny plik mg by zmieniony" - -#: ../memline.c:1061 -#, c-format -msgid "E309: Unable to read block 1 from %s" -msgstr "E309: Nie mog odczyta bloku 1 z %s" - -#: ../memline.c:1065 -msgid "???MANY LINES MISSING" -msgstr "???BRAKUJE WIELU WIERSZY" - -#: ../memline.c:1076 -msgid "???LINE COUNT WRONG" -msgstr "???LICZNIK WIERSZY NIEZGODNY" - -#: ../memline.c:1082 -msgid "???EMPTY BLOCK" -msgstr "???PUSTY BLOK" - -#: ../memline.c:1103 -msgid "???LINES MISSING" -msgstr "???BRAKUJE WIERSZY" - -#: ../memline.c:1128 -#, c-format -msgid "E310: Block 1 ID wrong (%s not a .swp file?)" -msgstr "E310: Niewaciwe ID bloku 1 (moe %s nie jest plikiem .swp?)" - -#: ../memline.c:1133 -msgid "???BLOCK MISSING" -msgstr "???BRAK BLOKU" - -#: ../memline.c:1147 -msgid "??? from here until ???END lines may be messed up" -msgstr "??? od tego miejsca po ???KONIEC wiersze mog by pomieszane" - -#: ../memline.c:1164 -msgid "??? from here until ???END lines may have been inserted/deleted" -msgstr "??? od tego miejsca po ???KONIEC wiersze mog by woone/skasowane" - -#: ../memline.c:1181 -msgid "???END" -msgstr "???KONIEC" - -#: ../memline.c:1238 -msgid "E311: Recovery Interrupted" -msgstr "E311: Przerwanie odtwarzania" - -#: ../memline.c:1243 -msgid "" -"E312: Errors detected while recovering; look for lines starting with ???" -msgstr "E312: Wykryto bdy podczas odtwarzania; od ktrych wierszy zacz ???" - -#: ../memline.c:1245 -msgid "See \":help E312\" for more information." -msgstr "Zobacz \":help E312\" dla dalszych informacji." - -#: ../memline.c:1249 -msgid "Recovery completed. You should check if everything is OK." -msgstr "" -"Odtwarzanie zakoczono. Powiniene sprawdzi czy wszystko jest w porzdku." - -#: ../memline.c:1251 -msgid "" -"\n" -"(You might want to write out this file under another name\n" -msgstr "" -"\n" -"(Moesz chcie zapisa ten plik pod inn nazw\n" - -#: ../memline.c:1252 -msgid "and run diff with the original file to check for changes)" -msgstr "i wykona diff z oryginalnym plikiem aby sprawdzi zmiany)" - -#: ../memline.c:1254 -msgid "Recovery completed. Buffer contents equals file contents." -msgstr "Odzyskiwanie zakoczone. Zawarto bufora jest rwna zawartoci pliku." - -#: ../memline.c:1255 -msgid "" -"\n" -"You may want to delete the .swp file now.\n" -"\n" -msgstr "" -"\n" -"Moesz teraz chcie usun plik .swp.\n" -"\n" - -#. use msg() to start the scrolling properly -#: ../memline.c:1327 -msgid "Swap files found:" -msgstr "Znalezione pliki wymiany:" - -#: ../memline.c:1446 -msgid " In current directory:\n" -msgstr " W biecym katalogu:\n" - -#: ../memline.c:1448 -msgid " Using specified name:\n" -msgstr " Uywam podanej nazwy:\n" - -#: ../memline.c:1450 -msgid " In directory " -msgstr " W katalogu " - -#: ../memline.c:1465 -msgid " -- none --\n" -msgstr " -- aden --\n" - -#: ../memline.c:1527 -msgid " owned by: " -msgstr " posiadany przez: " - -#: ../memline.c:1529 -msgid " dated: " -msgstr " data: " - -#: ../memline.c:1532 ../memline.c:3231 -msgid " dated: " -msgstr " data: " - -#: ../memline.c:1548 -msgid " [from Vim version 3.0]" -msgstr " [po Vimie wersja 3.0]" - -#: ../memline.c:1550 -msgid " [does not look like a Vim swap file]" -msgstr " [nie wyglda na plik wymiany Vima]" - -#: ../memline.c:1552 -msgid " file name: " -msgstr " nazwa pliku: " - -#: ../memline.c:1558 -msgid "" -"\n" -" modified: " -msgstr "" -"\n" -" zmieniono: " - -#: ../memline.c:1559 -msgid "YES" -msgstr "TAK" - -#: ../memline.c:1559 -msgid "no" -msgstr "nie" - -#: ../memline.c:1562 -msgid "" -"\n" -" user name: " -msgstr "" -"\n" -" uytkownik: " - -#: ../memline.c:1568 -msgid " host name: " -msgstr " nazwa hosta: " - -#: ../memline.c:1570 -msgid "" -"\n" -" host name: " -msgstr "" -"\n" -" nazwa hosta: " - -#: ../memline.c:1575 -msgid "" -"\n" -" process ID: " -msgstr "" -"\n" -" ID procesu: " - -#: ../memline.c:1579 -msgid " (still running)" -msgstr " (dalej dziaa)" - -#: ../memline.c:1586 -msgid "" -"\n" -" [not usable on this computer]" -msgstr "" -"\n" -" [nie do uytku na tym komputerze]" - -#: ../memline.c:1590 -msgid " [cannot be read]" -msgstr " [nieodczytywalny]" - -#: ../memline.c:1593 -msgid " [cannot be opened]" -msgstr " [nieotwieralny]" - -#: ../memline.c:1698 -msgid "E313: Cannot preserve, there is no swap file" -msgstr "E313: Nie mog zabezpieczy, bo brak pliku wymiany" - -#: ../memline.c:1747 -msgid "File preserved" -msgstr "Plik zabezpieczono" - -#: ../memline.c:1749 -msgid "E314: Preserve failed" -msgstr "E314: Nieudane zabezpieczenie" - -#: ../memline.c:1819 -#, c-format -msgid "E315: ml_get: invalid lnum: %<PRId64>" -msgstr "E315: ml_get: niewaciwy lnum: %<PRId64>" - -#: ../memline.c:1851 -#, c-format -msgid "E316: ml_get: cannot find line %<PRId64>" -msgstr "E316: ml_get: nie znaleziono wiersza %<PRId64>" - -#: ../memline.c:2236 -msgid "E317: pointer block id wrong 3" -msgstr "E317: niepoprawne id wskanika bloku 3" - -#: ../memline.c:2311 -msgid "stack_idx should be 0" -msgstr "stack_idx powinien by 0" - -#: ../memline.c:2369 -msgid "E318: Updated too many blocks?" -msgstr "E318: Zaktualizowano zbyt wiele blokw?" - -#: ../memline.c:2511 -msgid "E317: pointer block id wrong 4" -msgstr "E317: niepoprawne id wskanika bloku 4" - -#: ../memline.c:2536 -msgid "deleted block 1?" -msgstr "blok nr 1 skasowany?" - -#: ../memline.c:2707 -#, c-format -msgid "E320: Cannot find line %<PRId64>" -msgstr "E320: Nie mog znale wiersza %<PRId64>" - -#: ../memline.c:2916 -msgid "E317: pointer block id wrong" -msgstr "E317: niepoprawne id bloku odniesienia" - -#: ../memline.c:2930 -msgid "pe_line_count is zero" -msgstr "pe_line_count wynosi zero" - -#: ../memline.c:2955 -#, c-format -msgid "E322: line number out of range: %<PRId64> past the end" -msgstr "E322: numer wiersza poza zakresem: %<PRId64> jest poza kocem" - -#: ../memline.c:2959 -#, c-format -msgid "E323: line count wrong in block %<PRId64>" -msgstr "E323: liczba wierszy niepoprawna w bloku %<PRId64>" - -#: ../memline.c:2999 -msgid "Stack size increases" -msgstr "Wielko stosu wzrasta" - -#: ../memline.c:3038 -msgid "E317: pointer block id wrong 2" -msgstr "E317: niepoprawne id bloku odniesienia 2" - -#: ../memline.c:3070 -#, c-format -msgid "E773: Symlink loop for \"%s\"" -msgstr "E773: Ptla dowiza dla \"%s\"" - -#: ../memline.c:3221 -msgid "E325: ATTENTION" -msgstr "E325: UWAGA" - -#: ../memline.c:3222 -msgid "" -"\n" -"Found a swap file by the name \"" -msgstr "" -"\n" -"Znalazem plik wymiany o nazwie \"" - -#: ../memline.c:3226 -msgid "While opening file \"" -msgstr "Podczas otwierania pliku \"" - -#: ../memline.c:3239 -msgid " NEWER than swap file!\n" -msgstr " NOWSZE od pliku wymiany!\n" - -#: ../memline.c:3244 -#, fuzzy -msgid "" -"\n" -"(1) Another program may be editing the same file. If this is the case,\n" -" be careful not to end up with two different instances of the same\n" -" file when making changes." -msgstr "" -"\n" -"(1) Pewnie inny program obrabia ten sam plik.\n" -" Jeli tak, bd ostrony, aby nie skoczy z dwoma\n" -" rnymi wersjami tego samego pliku po zmianach.\n" - -#: ../memline.c:3245 -msgid " Quit, or continue with caution.\n" -msgstr " Zakocz lub ostronie kontynuuj.\n" - -#: ../memline.c:3246 -msgid "(2) An edit session for this file crashed.\n" -msgstr "(2) Sesja edycji dla pliku zaamaa si.\n" - -#: ../memline.c:3247 -msgid " If this is the case, use \":recover\" or \"vim -r " -msgstr " Jeli tak, to uyj \":recover\" lub \"vim -r " - -#: ../memline.c:3249 -msgid "" -"\"\n" -" to recover the changes (see \":help recovery\").\n" -msgstr "" -"\"\n" -" aby odzyska zmiany (zobacz \":help recovery)\").\n" - -#: ../memline.c:3250 -msgid " If you did this already, delete the swap file \"" -msgstr " Jeli ju to zrobie, usu plik wymiany \"" - -#: ../memline.c:3252 -msgid "" -"\"\n" -" to avoid this message.\n" -msgstr "" -"\"\n" -" aby unikn tej wiadomoci.\n" - -#: ../memline.c:3450 ../memline.c:3452 -msgid "Swap file \"" -msgstr "Plik wymiany \"" - -#: ../memline.c:3451 ../memline.c:3455 -msgid "\" already exists!" -msgstr "\" ju istnieje!" - -#: ../memline.c:3457 -msgid "VIM - ATTENTION" -msgstr "VIM - UWAGA" - -#: ../memline.c:3459 -msgid "Swap file already exists!" -msgstr "Plik wymiany ju istnieje!" - -#: ../memline.c:3464 -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Quit\n" -"&Abort" -msgstr "" -"&Otwrz Read-Only\n" -"&Edytuj pomimo\n" -"O&dtwrz\n" -"&Zakocz\n" -"&Porzu" - -#: ../memline.c:3467 -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Delete it\n" -"&Quit\n" -"&Abort" -msgstr "" -"&Otwrz Read-Only\n" -"&Edytuj pomimo\n" -"O&dtwrz\n" -"&Usu\n" -"&Zakocz\n" -"&Porzu" - -#. -#. * Change the ".swp" extension to find another file that can be used. -#. * First decrement the last char: ".swo", ".swn", etc. -#. * If that still isn't enough decrement the last but one char: ".svz" -#. * Can happen when editing many "No Name" buffers. -#. -#. ".s?a" -#. ".saa": tried enough, give up -#: ../memline.c:3528 -msgid "E326: Too many swap files found" -msgstr "E326: Znaleziono zbyt wiele plikw wymiany" - -#: ../memory.c:227 -#, c-format -msgid "E342: Out of memory! (allocating %<PRIu64> bytes)" -msgstr "E342: Brak pamici! (rezerwacja %<PRIu64> bajtw)" - -#: ../menu.c:62 -msgid "E327: Part of menu-item path is not sub-menu" -msgstr "E327: Cz tropu punktu menu nie okrela podmenu" - -#: ../menu.c:63 -msgid "E328: Menu only exists in another mode" -msgstr "E328: Menu istnieje tylko w innym trybie" - -#: ../menu.c:64 -#, c-format -msgid "E329: No menu \"%s\"" -msgstr "E329: Nie ma menu \"%s\"" - -#. Only a mnemonic or accelerator is not valid. -#: ../menu.c:329 -msgid "E792: Empty menu name" -msgstr "E792: Pusta nazwa menu" - -#: ../menu.c:340 -msgid "E330: Menu path must not lead to a sub-menu" -msgstr "E330: Trop menu nie moe prowadzi do podmenu" - -#: ../menu.c:365 -msgid "E331: Must not add menu items directly to menu bar" -msgstr "E331: Nie wolno dodawa punktw menu wprost do paska menu" - -#: ../menu.c:370 -msgid "E332: Separator cannot be part of a menu path" -msgstr "E332: Separator nie moe by czci tropu menu" - -#. Now we have found the matching menu, and we list the mappings -#. Highlight title -#: ../menu.c:762 -msgid "" -"\n" -"--- Menus ---" -msgstr "" -"\n" -"--- Menu ---" - -#: ../menu.c:1313 -msgid "E333: Menu path must lead to a menu item" -msgstr "E333: Trop menu musi prowadzi do punktu menu" - -#: ../menu.c:1330 -#, c-format -msgid "E334: Menu not found: %s" -msgstr "E334: Nie znaleziono menu: %s" - -#: ../menu.c:1396 -#, c-format -msgid "E335: Menu not defined for %s mode" -msgstr "E335: Menu nie jest zdefiniowane dla trybu %s" - -#: ../menu.c:1426 -msgid "E336: Menu path must lead to a sub-menu" -msgstr "E336: Trop menu musi prowadzi do podmenu" - -#: ../menu.c:1447 -msgid "E337: Menu not found - check menu names" -msgstr "E337: Nie znaleziono menu - sprawd nazwy menu" - -#: ../message.c:423 -#, c-format -msgid "Error detected while processing %s:" -msgstr "Wykryto bd podczas przetwarzania %s:" - -#: ../message.c:445 -#, c-format -msgid "line %4ld:" -msgstr "wiersz %4ld:" - -#: ../message.c:617 -#, c-format -msgid "E354: Invalid register name: '%s'" -msgstr "E354: Niewaciwa nazwa rejestru: '%s'" - -#: ../message.c:986 -msgid "Interrupt: " -msgstr "Przerwanie: " - -#: ../message.c:988 -msgid "Press ENTER or type command to continue" -msgstr "Nacinij ENTER lub wprowad komend aby kontynuowa" - -#: ../message.c:1843 -#, c-format -msgid "%s line %<PRId64>" -msgstr "%s wiersz %<PRId64>" - -#: ../message.c:2392 -msgid "-- More --" -msgstr "-- Wicej --" - -#: ../message.c:2398 -msgid " SPACE/d/j: screen/page/line down, b/u/k: up, q: quit " -msgstr " SPACE/d/j: ekran/strona/wiersz w d, b/u/k: do gry, q: zakocz" - -#: ../message.c:3021 ../message.c:3031 -msgid "Question" -msgstr "Pytanie" - -#: ../message.c:3023 -msgid "" -"&Yes\n" -"&No" -msgstr "" -"&Tak\n" -"&Nie" - -#: ../message.c:3033 -msgid "" -"&Yes\n" -"&No\n" -"&Cancel" -msgstr "" -"&Tak\n" -"&Nie\n" -"&Zakocz" - -#: ../message.c:3045 -msgid "" -"&Yes\n" -"&No\n" -"Save &All\n" -"&Discard All\n" -"&Cancel" -msgstr "" -"&Tak\n" -"&Nie\n" -"Zapisz &wszystkie\n" -"&Odrzu wszystkie\n" -"&Zakocz" - -#: ../message.c:3058 -msgid "E766: Insufficient arguments for printf()" -msgstr "E766: Za mao argumentw dla printf()" - -#: ../message.c:3119 -msgid "E807: Expected Float argument for printf()" -msgstr "E807: Spodziewany argument Zmiennoprzecinkowy w printf()" - -#: ../message.c:3873 -msgid "E767: Too many arguments to printf()" -msgstr "E767: Za duo argumentw dla printf()" - -#: ../misc1.c:2256 -msgid "W10: Warning: Changing a readonly file" -msgstr "W10: OSTRZEENIE: Zmiany w pliku tylko do odczytu" - -#: ../misc1.c:2537 -msgid "Type number and <Enter> or click with mouse (empty cancels): " -msgstr "Wpisz numer i <Enter> lub wybierz mysz (pusta warto anuluje): " - -#: ../misc1.c:2539 -msgid "Type number and <Enter> (empty cancels): " -msgstr "Wpisz numer i <Enter> (puste anuluje): " - -#: ../misc1.c:2585 -msgid "1 more line" -msgstr "1 wiersz wicej" - -#: ../misc1.c:2588 -msgid "1 line less" -msgstr "1 wiersz mniej" - -#: ../misc1.c:2593 -#, c-format -msgid "%<PRId64> more lines" -msgstr "dodano %<PRId64> wierszy" - -#: ../misc1.c:2596 -#, c-format -msgid "%<PRId64> fewer lines" -msgstr "usunito %<PRId64> wierszy" - -#: ../misc1.c:2599 -msgid " (Interrupted)" -msgstr " (Przerwane)" - -#: ../misc1.c:2635 -msgid "Beep!" -msgstr "Biiip!" - -#: ../misc2.c:738 -#, c-format -msgid "Calling shell to execute: \"%s\"" -msgstr "Wywouj powok do wykonania: \"%s\"" - -#: ../normal.c:183 -msgid "E349: No identifier under cursor" -msgstr "E349: Brak identyfikatora pod kursorem" - -#: ../normal.c:1866 -msgid "E774: 'operatorfunc' is empty" -msgstr "E774: 'operatorfunc' jest pusta" - -#: ../normal.c:2637 -msgid "Warning: terminal cannot highlight" -msgstr "OSTRZEENIE: terminal nie wykonuje podwietlania" - -#: ../normal.c:2807 -msgid "E348: No string under cursor" -msgstr "E348: Brak cigu pod kursorem" - -#: ../normal.c:3937 -msgid "E352: Cannot erase folds with current 'foldmethod'" -msgstr "E352: Nie mog skasowa zwinicia z biec 'foldmethod'" - -#: ../normal.c:5897 -msgid "E664: changelist is empty" -msgstr "E664: lista zmian (changelist) jest pusta" - -#: ../normal.c:5899 -msgid "E662: At start of changelist" -msgstr "E662: Na pocztku listy zmian" - -#: ../normal.c:5901 -msgid "E663: At end of changelist" -msgstr "E663: Na kocu listy zmian" - -#: ../normal.c:7053 -msgid "Type :quit<Enter> to exit Nvim" -msgstr "wprowad :quit<Enter> zakoczenie programu" - -#: ../ops.c:248 -#, c-format -msgid "1 line %sed 1 time" -msgstr "1 wiersz %sed 1 raz" - -#: ../ops.c:250 -#, c-format -msgid "1 line %sed %d times" -msgstr "1 wiersz %sed %d razy" - -#: ../ops.c:253 -#, c-format -msgid "%<PRId64> lines %sed 1 time" -msgstr "%<PRId64> wierszy %sed 1 raz" - -#: ../ops.c:256 -#, c-format -msgid "%<PRId64> lines %sed %d times" -msgstr "%<PRId64> wierszy %sed %d razy" - -#: ../ops.c:592 -#, c-format -msgid "%<PRId64> lines to indent... " -msgstr "%<PRId64> wierszy do wcicia... " - -#: ../ops.c:634 -msgid "1 line indented " -msgstr "1 wiersz wcity " - -#: ../ops.c:636 -#, c-format -msgid "%<PRId64> lines indented " -msgstr "%<PRId64> wierszy wcitych " - -#: ../ops.c:938 -msgid "E748: No previously used register" -msgstr "E748: Brak poprzednio uytego rejestru" - -#. must display the prompt -#: ../ops.c:1433 -msgid "cannot yank; delete anyway" -msgstr "nie mog skopiowa, mimo to kasuj" - -#: ../ops.c:1929 -msgid "1 line changed" -msgstr "1 wiersz zmieniono" - -#: ../ops.c:1931 -#, c-format -msgid "%<PRId64> lines changed" -msgstr "%<PRId64> wierszy zmieniono" - -#: ../ops.c:2521 -msgid "block of 1 line yanked" -msgstr "skopiowano blok 1 wiersza" - -#: ../ops.c:2523 -msgid "1 line yanked" -msgstr "1 wiersz skopiowano" - -#: ../ops.c:2525 -#, c-format -msgid "block of %<PRId64> lines yanked" -msgstr "%<PRId64> wierszy skopiowanych" - -#: ../ops.c:2528 -#, c-format -msgid "%<PRId64> lines yanked" -msgstr "%<PRId64> wierszy skopiowanych" - -#: ../ops.c:2710 -#, c-format -msgid "E353: Nothing in register %s" -msgstr "E353: Pusty rejestr %s" - -#. Highlight title -#: ../ops.c:3185 -msgid "" -"\n" -"--- Registers ---" -msgstr "" -"\n" -"--- Rejestry ---" - -#: ../ops.c:4455 -msgid "Illegal register name" -msgstr "Niedozwolona nazwa rejestru" - -#: ../ops.c:4533 -msgid "" -"\n" -"# Registers:\n" -msgstr "" -"\n" -"# Rejestry:\n" - -#: ../ops.c:4575 -#, c-format -msgid "E574: Unknown register type %d" -msgstr "E574: Nieznany typ rejestru %d" - -#: ../ops.c:5089 -#, c-format -msgid "%<PRId64> Cols; " -msgstr "%<PRId64> Kolumn; " - -#: ../ops.c:5097 -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Bytes" -msgstr "" -"Wybrano %s%<PRId64> z %<PRId64> Wierszy; %<PRId64> z %<PRId64> Sw; " -"%<PRId64> z %<PRId64> Bajtw" - -#: ../ops.c:5105 -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Chars; %<PRId64> of %<PRId64> Bytes" -msgstr "" -"Wybrano %s%<PRId64> z %<PRId64> Wierszy; %<PRId64> z %<PRId64> Sw; " -"%<PRId64> z %<PRId64> Znakw; %<PRId64> z %<PRId64> Bajtw" - -#: ../ops.c:5123 -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Byte " -"%<PRId64> of %<PRId64>" -msgstr "" -"Kol %s z %s; Wiersz %<PRId64> z %<PRId64>; Sowo %<PRId64> z %<PRId64>; Bajt " -"%<PRId64> z %<PRId64>" - -#: ../ops.c:5133 -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Char " -"%<PRId64> of %<PRId64>; Byte %<PRId64> of %<PRId64>" -msgstr "" -"Kol %s z %s; Wiersz %<PRId64> z %<PRId64>; Sowo %<PRId64> z %<PRId64>; Znak " -"%<PRId64> z %<PRId64>; Bajt %<PRId64> z %<PRId64>" - -#: ../ops.c:5146 -#, c-format -msgid "(+%<PRId64> for BOM)" -msgstr "(+%<PRId64> dla BOM)" - -#: ../option.c:1238 -msgid "%<%f%h%m%=Page %N" -msgstr "%<%f%h%m%=Strona %N" - -#: ../option.c:1574 -msgid "Thanks for flying Vim" -msgstr "Dziki za lot Vimem" - -#. found a mismatch: skip -#: ../option.c:2698 -msgid "E518: Unknown option" -msgstr "E518: Nieznana opcja" - -#: ../option.c:2709 -msgid "E519: Option not supported" -msgstr "E519: Opcja nie jest wspomagana" - -#: ../option.c:2740 -msgid "E520: Not allowed in a modeline" -msgstr "E520: Niedozwolone w modeline" - -#: ../option.c:2815 -msgid "E846: Key code not set" -msgstr "E846: Kod klucza nie jest ustawiony" - -#: ../option.c:2924 -msgid "E521: Number required after =" -msgstr "E521: Po = wymagany jest numer" - -#: ../option.c:3226 ../option.c:3864 -msgid "E522: Not found in termcap" -msgstr "E522: Nie znaleziono w termcap" - -#: ../option.c:3335 -#, c-format -msgid "E539: Illegal character <%s>" -msgstr "E539: Niedozwolony znak <%s>" - -#: ../option.c:3862 -msgid "E529: Cannot set 'term' to empty string" -msgstr "E529: Nie mog ustawi 'term' na pusty cig" - -#: ../option.c:3885 -msgid "E589: 'backupext' and 'patchmode' are equal" -msgstr "E589: 'backupext' i 'patchmode' s tosame" - -#: ../option.c:3964 -msgid "E834: Conflicts with value of 'listchars'" -msgstr "E834: Konflikty wartoci 'listchars'" - -#: ../option.c:3966 -msgid "E835: Conflicts with value of 'fillchars'" -msgstr "E835: Konflikty wartoci 'fillchars'" - -#: ../option.c:4163 -msgid "E524: Missing colon" -msgstr "E524: Brak dwukropka" - -#: ../option.c:4165 -msgid "E525: Zero length string" -msgstr "E525: Cig o zerowej dugoci" - -#: ../option.c:4220 -#, c-format -msgid "E526: Missing number after <%s>" -msgstr "E526: Brak numeru po <%s>" - -#: ../option.c:4232 -msgid "E527: Missing comma" -msgstr "E527: Brak przecinka" - -#: ../option.c:4239 -msgid "E528: Must specify a ' value" -msgstr "E528: Musi okrela warto '" - -#: ../option.c:4271 -msgid "E595: contains unprintable or wide character" -msgstr "E595: zawiera niewywietlalny lub szeroki znak" - -#: ../option.c:4469 -#, c-format -msgid "E535: Illegal character after <%c>" -msgstr "E535: Niedozwolony znak po <%c>" - -#: ../option.c:4534 -msgid "E536: comma required" -msgstr "E536: wymagany przecinek" - -#: ../option.c:4543 -#, c-format -msgid "E537: 'commentstring' must be empty or contain %s" -msgstr "E537: 'commentstring' musi by pusty lub zawiera %s" - -#: ../option.c:4928 -msgid "E540: Unclosed expression sequence" -msgstr "E540: Niedomknity cig wyrae" - -#: ../option.c:4932 -msgid "E541: too many items" -msgstr "E541: zbyt wiele elementw" - -#: ../option.c:4934 -msgid "E542: unbalanced groups" -msgstr "E542: niezbalansowane grupy" - -#: ../option.c:5148 -msgid "E590: A preview window already exists" -msgstr "E590: okno podgldu ju istnieje" - -#: ../option.c:5311 -msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'" -msgstr "W17: Arabski wymaga UTF-8, zrb ':set encoding=utf-8'" - -#: ../option.c:5623 -#, c-format -msgid "E593: Need at least %d lines" -msgstr "E593: Potrzebuj przynajmniej %d wierszy" - -#: ../option.c:5631 -#, c-format -msgid "E594: Need at least %d columns" -msgstr "E594: Potrzebuj przynajmniej %d kolumn" - -#: ../option.c:6011 -#, c-format -msgid "E355: Unknown option: %s" -msgstr "E355: Nieznana opcja: %s" - -#. There's another character after zeros or the string -#. * is empty. In both cases, we are trying to set a -#. * num option using a string. -#: ../option.c:6037 -#, c-format -msgid "E521: Number required: &%s = '%s'" -msgstr "E521: Wymagana Liczba: &%s = '%s'" - -#: ../option.c:6149 -msgid "" -"\n" -"--- Terminal codes ---" -msgstr "" -"\n" -"--- Kody terminala ---" - -#: ../option.c:6151 -msgid "" -"\n" -"--- Global option values ---" -msgstr "" -"\n" -"--- Globalne wartoci opcji ---" - -#: ../option.c:6153 -msgid "" -"\n" -"--- Local option values ---" -msgstr "" -"\n" -"--- Lokalne wartoci opcji ---" - -#: ../option.c:6155 -msgid "" -"\n" -"--- Options ---" -msgstr "" -"\n" -"--- Opcje ---" - -#: ../option.c:6816 -msgid "E356: get_varp ERROR" -msgstr "E356: BD get_varp" - -#: ../option.c:7696 -#, c-format -msgid "E357: 'langmap': Matching character missing for %s" -msgstr "E357: 'langmap': Brak pasujcego znaku dla %s" - -#: ../option.c:7715 -#, c-format -msgid "E358: 'langmap': Extra characters after semicolon: %s" -msgstr "E358: 'langmap': Dodatkowe znaki po redniku: %s" - -#: ../os/shell.c:194 -msgid "" -"\n" -"Cannot execute shell " -msgstr "" -"\n" -"Nie mog wykona powoki " - -#: ../os/shell.c:439 -msgid "" -"\n" -"shell returned " -msgstr "" -"\n" -"powoka zwrcia " - -#: ../os_unix.c:465 ../os_unix.c:471 -msgid "" -"\n" -"Could not get security context for " -msgstr "" -"\n" -"Nie mog uzyska kontekstu bezpieczestwa dla" - -#: ../os_unix.c:479 -msgid "" -"\n" -"Could not set security context for " -msgstr "" -"\n" -"Nie mona uzyska kontekstu bezpieczestwa dla" - -#: ../os_unix.c:1558 ../os_unix.c:1647 -#, c-format -msgid "dlerror = \"%s\"" -msgstr "dlerror = \"%s\"" - -#: ../path.c:1449 -#, c-format -msgid "E447: Can't find file \"%s\" in path" -msgstr "E447: Nie mog znale pliku \"%s\" w tropie" - -#: ../quickfix.c:359 -#, c-format -msgid "E372: Too many %%%c in format string" -msgstr "E372: Zbyt wiele %%%c w cigu formatujcym" - -#: ../quickfix.c:371 -#, c-format -msgid "E373: Unexpected %%%c in format string" -msgstr "E373: Nieoczekiwane %%%c w cigu formatujcym" - -#: ../quickfix.c:420 -msgid "E374: Missing ] in format string" -msgstr "E374: Brak ] w cigu formatujcym" - -#: ../quickfix.c:431 -#, c-format -msgid "E375: Unsupported %%%c in format string" -msgstr "E375: Niewspomagane %%%c w cigu formatujcym" - -#: ../quickfix.c:448 -#, c-format -msgid "E376: Invalid %%%c in format string prefix" -msgstr "E376: Niepoprawne %%%c w prefiksie cigu formatujcego" - -#: ../quickfix.c:454 -#, c-format -msgid "E377: Invalid %%%c in format string" -msgstr "E377: Niepoprawne %%%c w cigu formatujcym" - -#. nothing found -#: ../quickfix.c:477 -msgid "E378: 'errorformat' contains no pattern" -msgstr "E378: 'errorformat' nie zawiera wzorca" - -#: ../quickfix.c:695 -msgid "E379: Missing or empty directory name" -msgstr "E379: Pusta nazwa katalogu lub jej brak" - -#: ../quickfix.c:1305 -msgid "E553: No more items" -msgstr "E553: Nie ma wicej elementw" - -#: ../quickfix.c:1674 -#, c-format -msgid "(%d of %d)%s%s: " -msgstr "(%d z %d)%s%s: " - -#: ../quickfix.c:1676 -msgid " (line deleted)" -msgstr " (wiersz skasowany)" - -#: ../quickfix.c:1863 -msgid "E380: At bottom of quickfix stack" -msgstr "E380: Na dole stosu quickfix" - -#: ../quickfix.c:1869 -msgid "E381: At top of quickfix stack" -msgstr "E381: Na grze stosu quickfix" - -#: ../quickfix.c:1880 -#, c-format -msgid "error list %d of %d; %d errors" -msgstr "lista bdw %d z %d; %d bdw" - -#: ../quickfix.c:2427 -msgid "E382: Cannot write, 'buftype' option is set" -msgstr "E382: Nie mog zapisa, opcja 'buftype' jest ustawiona" - -#: ../quickfix.c:2812 -msgid "E683: File name missing or invalid pattern" -msgstr "E683: Brak nazwy pliku lub niewaciwa cieka" - -#: ../quickfix.c:2911 -#, c-format -msgid "Cannot open file \"%s\"" -msgstr "Nie mog otworzy pliku \"%s\"" - -#: ../quickfix.c:3429 -msgid "E681: Buffer is not loaded" -msgstr "E681: Bufor nie jest zaadowany" - -#: ../quickfix.c:3487 -msgid "E777: String or List expected" -msgstr "E777: Oczekiwaem na acuch lub list" - -#: ../regexp.c:359 -#, c-format -msgid "E369: invalid item in %s%%[]" -msgstr "E369: Niewaciwy element w %s%%[]" - -#: ../regexp.c:374 -#, c-format -msgid "E769: Missing ] after %s[" -msgstr "E769: Brak ] po %s[" - -#: ../regexp.c:375 -#, c-format -msgid "E53: Unmatched %s%%(" -msgstr "E53: Niesparowany %s%%(" - -#: ../regexp.c:376 -#, c-format -msgid "E54: Unmatched %s(" -msgstr "E54: Niesparowany %s(" - -#: ../regexp.c:377 -#, c-format -msgid "E55: Unmatched %s)" -msgstr "E55: Niesparowany %s)" - -#: ../regexp.c:378 -msgid "E66: \\z( not allowed here" -msgstr "E66: \\z( jest niedozwolone w tym miejscu" - -#: ../regexp.c:379 -msgid "E67: \\z1 et al. not allowed here" -msgstr "E67: \\z1 i podobne s niedozwolone w tym miejscu" - -#: ../regexp.c:380 -#, c-format -msgid "E69: Missing ] after %s%%[" -msgstr "E69: Brak ] po %s%%[" - -#: ../regexp.c:381 -#, c-format -msgid "E70: Empty %s%%[]" -msgstr "E70: Pusty %s%%[]" - -#: ../regexp.c:1209 ../regexp.c:1224 -msgid "E339: Pattern too long" -msgstr "E339: Zbyt dugi wzorzec" - -#: ../regexp.c:1371 -msgid "E50: Too many \\z(" -msgstr "E50: Zbyt wiele \\z(" - -#: ../regexp.c:1378 -#, c-format -msgid "E51: Too many %s(" -msgstr "E51: Zbyt wiele %s(" - -#: ../regexp.c:1427 -msgid "E52: Unmatched \\z(" -msgstr "E52: Niesparowany \\z(" - -#: ../regexp.c:1637 -#, c-format -msgid "E59: invalid character after %s@" -msgstr "E59: niedozwolony znak po %s@" - -#: ../regexp.c:1672 -#, c-format -msgid "E60: Too many complex %s{...}s" -msgstr "E60: Zbyt wiele zoonych %s{...}" - -#: ../regexp.c:1687 -#, c-format -msgid "E61: Nested %s*" -msgstr "E61: Zagniedone %s*" - -#: ../regexp.c:1690 -#, c-format -msgid "E62: Nested %s%c" -msgstr "E62: Zagniedone %s%c" - -#: ../regexp.c:1800 -msgid "E63: invalid use of \\_" -msgstr "E63: Niedozwolone uycie \\_" - -#: ../regexp.c:1850 -#, c-format -msgid "E64: %s%c follows nothing" -msgstr "E64: %s%c po niczym" - -#: ../regexp.c:1902 -msgid "E65: Illegal back reference" -msgstr "E65: Niewaciwe odwoanie wsteczne" - -#: ../regexp.c:1943 -msgid "E68: Invalid character after \\z" -msgstr "E68: niedopuszczalny znak po \\z" - -#: ../regexp.c:2049 ../regexp_nfa.c:1296 -#, c-format -msgid "E678: Invalid character after %s%%[dxouU]" -msgstr "E678: Niedozwolony znak po %s%%[dxouU]" - -#: ../regexp.c:2107 -#, c-format -msgid "E71: Invalid character after %s%%" -msgstr "E71: Niedozwolony znak po %s%%" - -#: ../regexp.c:3017 -#, c-format -msgid "E554: Syntax error in %s{...}" -msgstr "E554: Bd skadni w %s{...}" - -#: ../regexp.c:3805 -msgid "External submatches:\n" -msgstr "Zewntrzne poddopasowania:\n" - -#: ../regexp.c:7022 -msgid "" -"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be " -"used " -msgstr "" -"E:864: \\%#= moe by tylko przed 0, 1 lub 2. Zostanie uyty silnik " -"automatyczny" - -#: ../regexp_nfa.c:239 -msgid "E865: (NFA) Regexp end encountered prematurely" -msgstr "E865: (NFA) przedwczesny koniec wyraenia regularnego" - -#: ../regexp_nfa.c:240 -#, c-format -msgid "E866: (NFA regexp) Misplaced %c" -msgstr "E866: (wyraenie regularne NFA) Niepoprawnie umieszczone %c" - -#: ../regexp_nfa.c:242 -#, c-format -msgid "E877: (NFA regexp) Invalid character class: %<PRId64>" -msgstr "" - -#: ../regexp_nfa.c:1261 -#, c-format -msgid "E867: (NFA) Unknown operator '\\z%c'" -msgstr "E867: (NFA) Nieznany operator '\\z%c'" - -#: ../regexp_nfa.c:1387 -#, c-format -msgid "E867: (NFA) Unknown operator '\\%%%c'" -msgstr "E867: (NFA) Nieznany operator '\\%%%c'" - -#: ../regexp_nfa.c:1802 -#, c-format -msgid "E869: (NFA) Unknown operator '\\@%c'" -msgstr "E869: (NFA) Nieznany operator '\\@%c'" - -#: ../regexp_nfa.c:1831 -msgid "E870: (NFA regexp) Error reading repetition limits" -msgstr "" -"E870: (wyraenie regularne NFA) Bd przy odczytywaniu limitw powtrze" - -#. Can't have a multi follow a multi. -#: ../regexp_nfa.c:1895 -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" -msgstr "" -"E871: (wyraenie regularne NFA) wielokrotne nie moe by po wielokrotnym!" - -#. Too many `(' -#: ../regexp_nfa.c:2037 -msgid "E872: (NFA regexp) Too many '('" -msgstr "E872: (wyraenie regularne NFA) Zbyt duo '('" - -#: ../regexp_nfa.c:2042 -msgid "E879: (NFA regexp) Too many \\z(" -msgstr "E879: (wyraenie regularne NFA) Za duo \\z(" - -#: ../regexp_nfa.c:2066 -msgid "E873: (NFA regexp) proper termination error" -msgstr "E873: (wyraenie regularne NFA) bd poprawnego zakoczenia" - -#: ../regexp_nfa.c:2599 -msgid "E874: (NFA) Could not pop the stack !" -msgstr "E874: (NFA) Nie mona zdj elementu ze stosu!" - -#: ../regexp_nfa.c:3298 -msgid "" -"E875: (NFA regexp) (While converting from postfix to NFA), too many states " -"left on stack" -msgstr "" -"E875: (wyraenie regularne NFA) (w trakcie konwersji postfix do NFA), za " -"wiele stanw na stosie" - -#: ../regexp_nfa.c:3302 -msgid "E876: (NFA regexp) Not enough space to store the whole NFA " -msgstr "E876: (wyraenie regularne NFA) Nie ma miejsca na cae NFA " - -#: ../regexp_nfa.c:4571 ../regexp_nfa.c:4869 -msgid "" -"Could not open temporary log file for writing, displaying on stderr ... " -msgstr "" -"Nie mona otworzy do zapisu tymczasowego pliku, pokazuj na stderr... " - -#: ../regexp_nfa.c:4840 -#, c-format -msgid "(NFA) COULD NOT OPEN %s !" -msgstr "(NFA) NIE MONA OTWORZY %s !" - -#: ../regexp_nfa.c:6049 -msgid "Could not open temporary log file for writing " -msgstr "Nie mona otworzy do zapisu tymczasowego pliku logowania" - -#: ../screen.c:7435 -msgid " VREPLACE" -msgstr " V-ZAMIANA" - -#: ../screen.c:7437 -msgid " REPLACE" -msgstr " ZAMIANA" - -#: ../screen.c:7440 -msgid " REVERSE" -msgstr " NEGATYW" - -#: ../screen.c:7441 -msgid " INSERT" -msgstr " WPROWADZANIE" - -#: ../screen.c:7443 -msgid " (insert)" -msgstr " (wprowadzanie)" - -#: ../screen.c:7445 -msgid " (replace)" -msgstr " (zamiana)" - -#: ../screen.c:7447 -msgid " (vreplace)" -msgstr " (v-zamiana)" - -#: ../screen.c:7449 -msgid " Hebrew" -msgstr " Hebrajski" - -#: ../screen.c:7454 -msgid " Arabic" -msgstr " Arabski" - -#: ../screen.c:7456 -msgid " (lang)" -msgstr " (jzyk)" - -#: ../screen.c:7459 -msgid " (paste)" -msgstr " (wklejanie)" - -#: ../screen.c:7469 -msgid " VISUAL" -msgstr " WIZUALNY" - -#: ../screen.c:7470 -msgid " VISUAL LINE" -msgstr " WIZUALNY LINIOWY" - -#: ../screen.c:7471 -msgid " VISUAL BLOCK" -msgstr " WIZUALNY BLOKOWY" - -#: ../screen.c:7472 -msgid " SELECT" -msgstr " ZAZNACZANIE" - -#: ../screen.c:7473 -msgid " SELECT LINE" -msgstr " ZAZNACZANIE LINIOWE" - -#: ../screen.c:7474 -msgid " SELECT BLOCK" -msgstr " ZAZNACZANIE BLOKOWE" - -#: ../screen.c:7486 ../screen.c:7541 -msgid "recording" -msgstr "zapis" - -#: ../search.c:487 -#, c-format -msgid "E383: Invalid search string: %s" -msgstr "E383: Niewaciwy cig do szukania: %s" - -#: ../search.c:832 -#, c-format -msgid "E384: search hit TOP without match for: %s" -msgstr "E384: szukanie dobio GRY bez znalezienia: %s" - -#: ../search.c:835 -#, c-format -msgid "E385: search hit BOTTOM without match for: %s" -msgstr "E385: szukanie dobio KOCA bez znalezienia : %s" - -#: ../search.c:1200 -msgid "E386: Expected '?' or '/' after ';'" -msgstr "E386: Oczekuj '?' lub '/' po ';'" - -#: ../search.c:4085 -msgid " (includes previously listed match)" -msgstr " (zawiera poprzednio wymienione dopasowanie)" - -#. cursor at status line -#: ../search.c:4104 -msgid "--- Included files " -msgstr "--- Zawarte pliki " - -#: ../search.c:4106 -msgid "not found " -msgstr "nie znaleziono" - -#: ../search.c:4107 -msgid "in path ---\n" -msgstr "w tropie ---\n" - -#: ../search.c:4168 -msgid " (Already listed)" -msgstr " (Ju wymienione)" - -#: ../search.c:4170 -msgid " NOT FOUND" -msgstr " NIE ZNALEZIONO" - -#: ../search.c:4211 -#, c-format -msgid "Scanning included file: %s" -msgstr "Przegld wczonego pliku: %s" - -#: ../search.c:4216 -#, c-format -msgid "Searching included file %s" -msgstr "Przeszukiwanie wczonego pliku %s" - -#: ../search.c:4405 -msgid "E387: Match is on current line" -msgstr "E387: Wzorzec pasuje w biecym wierszu" - -#: ../search.c:4517 -msgid "All included files were found" -msgstr "Wszelkie wczane pliki odnaleziono" - -#: ../search.c:4519 -msgid "No included files" -msgstr "Brak wczanych plikw" - -#: ../search.c:4527 -msgid "E388: Couldn't find definition" -msgstr "E388: Nie znalazem definicji" - -#: ../search.c:4529 -msgid "E389: Couldn't find pattern" -msgstr "E389: Nie znalazem wzorca" - -#: ../search.c:4668 -msgid "Substitute " -msgstr "Podstawienie " - -#: ../search.c:4681 -#, c-format -msgid "" -"\n" -"# Last %sSearch Pattern:\n" -"~" -msgstr "" -"\n" -"# Ostatni %sWyszukiwany wzorzec:\n" -"~" - -#: ../spell.c:951 -msgid "E759: Format error in spell file" -msgstr "E759: Nieprawidowy format pliku sprawdzania pisowni" - -#: ../spell.c:952 -msgid "E758: Truncated spell file" -msgstr "E758: Obcity plik sprawdzania pisowni" - -#: ../spell.c:953 -#, c-format -msgid "Trailing text in %s line %d: %s" -msgstr "Zbdny tekst w %s wiersz %d: %s" - -#: ../spell.c:954 -#, c-format -msgid "Affix name too long in %s line %d: %s" -msgstr "Za duga nazwa afiksu w %s wiersz %d: %s" - -#: ../spell.c:955 -msgid "E761: Format error in affix file FOL, LOW or UPP" -msgstr "E761: Bd formatu w pliku afiksw FOL, LOW lub UPP" - -#: ../spell.c:957 -msgid "E762: Character in FOL, LOW or UPP is out of range" -msgstr "E762: Znak w FOL, LOW lub UPP jest poza zasigiem" - -#: ../spell.c:958 -msgid "Compressing word tree..." -msgstr "Kompresja drzewa sw..." - -#: ../spell.c:1951 -msgid "E756: Spell checking is not enabled" -msgstr "E756: Sprawdzanie pisowni nie jest wczone" - -#: ../spell.c:2249 -#, c-format -msgid "Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\"" -msgstr "" -"Ostrzeenie: Nie mog znale listy sw \"%s.%s.spl\" lub \"%s.ascii.spl\"" - -#: ../spell.c:2473 -#, c-format -msgid "Reading spell file \"%s\"" -msgstr "Odczytuj plik sprawdzania pisowni \"%s\"" - -#: ../spell.c:2496 -msgid "E757: This does not look like a spell file" -msgstr "E757: To nie wyglda na plik sprawdzania pisowni" - -#: ../spell.c:2501 -msgid "E771: Old spell file, needs to be updated" -msgstr "E771: Stary plik sprawdzania pisowni, wymagane uaktualnienie" - -#: ../spell.c:2504 -msgid "E772: Spell file is for newer version of Vim" -msgstr "E772: Plik sprawdzania pisowni dla nowszej wersji Vima" - -#: ../spell.c:2602 -msgid "E770: Unsupported section in spell file" -msgstr "E770: Niewspierana sekcja w pliku sprawdzania pisowni" - -#: ../spell.c:3762 -#, c-format -msgid "Warning: region %s not supported" -msgstr "Ostrzeenie: region %s nie jest wspierany" - -#: ../spell.c:4550 -#, c-format -msgid "Reading affix file %s ..." -msgstr "Czytam plik afiksw %s ..." - -#: ../spell.c:4589 ../spell.c:5635 ../spell.c:6140 -#, c-format -msgid "Conversion failure for word in %s line %d: %s" -msgstr "Konwersja nie powioda si dla wyrazu w %s wierszu %d: %s" - -#: ../spell.c:4630 ../spell.c:6170 -#, c-format -msgid "Conversion in %s not supported: from %s to %s" -msgstr "Konwersja w %s nie jest wspierana: od %s do %s" - -#: ../spell.c:4642 -#, c-format -msgid "Invalid value for FLAG in %s line %d: %s" -msgstr "Nieprawidowa warto FLAG w %s wierz %d: %s" - -#: ../spell.c:4655 -#, c-format -msgid "FLAG after using flags in %s line %d: %s" -msgstr "FLAG po uyciu flag w %s wiersz %d: %s" - -#: ../spell.c:4723 -#, c-format -msgid "" -"Defining COMPOUNDFORBIDFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" -"Definiowanie COMPOUNDFORBIDFLAG po PFX moe skutkowa zym wynikiem w %s " -"wiersz %d" - -#: ../spell.c:4731 -#, c-format -msgid "" -"Defining COMPOUNDPERMITFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" -"Definiowanie COMPOUNDPERMITFLAG po PFX moe skutkowa zym wynikiem w %s " -"wiersz %d" - -#: ../spell.c:4747 -#, c-format -msgid "Wrong COMPOUNDRULES value in %s line %d: %s" -msgstr "Za warto COMPOUNDRULES w %s wiersz %d: %s" - -#: ../spell.c:4771 -#, c-format -msgid "Wrong COMPOUNDWORDMAX value in %s line %d: %s" -msgstr "Za warto COMPOUNDWORDMAX w %s wiersz %d: %s" - -#: ../spell.c:4777 -#, c-format -msgid "Wrong COMPOUNDMIN value in %s line %d: %s" -msgstr "Za warto COMPOUNDMIM w %s wiersz %d: %s" - -#: ../spell.c:4783 -#, c-format -msgid "Wrong COMPOUNDSYLMAX value in %s line %d: %s" -msgstr "Za warto COMPOUNDSYLMAX w %s wiersz %d: %s" - -#: ../spell.c:4795 -#, c-format -msgid "Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s" -msgstr "Za warto CHECKCOMPOUNDPATTERN w %s wiersz %d: %s" - -#: ../spell.c:4847 -#, c-format -msgid "Different combining flag in continued affix block in %s line %d: %s" -msgstr "Rne flagi zoe w kontynuowanym bloku afiksu w %s wiersz %d: %s" - -#: ../spell.c:4850 -#, c-format -msgid "Duplicate affix in %s line %d: %s" -msgstr "Powtrzony afiks w %s wiersz %d: %s" - -#: ../spell.c:4871 -#, c-format -msgid "" -"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s " -"line %d: %s" -msgstr "" -"Afiks uyty take dla BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST w " -"%s wiersz %d: %s" - -#: ../spell.c:4893 -#, c-format -msgid "Expected Y or N in %s line %d: %s" -msgstr "Oczekiwano Y lub N w %s wierszu %d: %s" - -#: ../spell.c:4968 -#, c-format -msgid "Broken condition in %s line %d: %s" -msgstr "Bdny warunek w %s wiersz %d: %s" - -#: ../spell.c:5091 -#, c-format -msgid "Expected REP(SAL) count in %s line %d" -msgstr "Oczekiwano iloci REP(SAL) w %s wierszu %d" - -#: ../spell.c:5120 -#, c-format -msgid "Expected MAP count in %s line %d" -msgstr "Oczekiwano iloci MAP w %s wierszu %d" - -#: ../spell.c:5132 -#, c-format -msgid "Duplicate character in MAP in %s line %d" -msgstr "Powtrzony znak w MAP w %s wierszu %d" - -#: ../spell.c:5176 -#, c-format -msgid "Unrecognized or duplicate item in %s line %d: %s" -msgstr "Nieznany lub powtrzony element w %s wierszu %d: %s" - -#: ../spell.c:5197 -#, c-format -msgid "Missing FOL/LOW/UPP line in %s" -msgstr "Brak wiersza FOL/LOW/UPP w %s" - -#: ../spell.c:5220 -msgid "COMPOUNDSYLMAX used without SYLLABLE" -msgstr "COMPOUNDSYLMAX uyty bez SYLLABLE" - -#: ../spell.c:5236 -msgid "Too many postponed prefixes" -msgstr "Zbyt wiele opnionych prefiksw" - -#: ../spell.c:5238 -msgid "Too many compound flags" -msgstr "Zbyt wiele flag zoe" - -#: ../spell.c:5240 -msgid "Too many postponed prefixes and/or compound flags" -msgstr "Zbyt wiele opnionych prefiksw i/lub flag zoe" - -#: ../spell.c:5250 -#, c-format -msgid "Missing SOFO%s line in %s" -msgstr "Brak wiersza SOFO%s wiersz w %s" - -#: ../spell.c:5253 -#, c-format -msgid "Both SAL and SOFO lines in %s" -msgstr "Wiersze SAL i SOFO w %s" - -#: ../spell.c:5331 -#, c-format -msgid "Flag is not a number in %s line %d: %s" -msgstr "Flaga nie jest liczb w %s wiersz %d: %s" - -#: ../spell.c:5334 -#, c-format -msgid "Illegal flag in %s line %d: %s" -msgstr "Nieprawidowa flaga w %s wiersz %d: %s" - -#: ../spell.c:5493 ../spell.c:5501 -#, c-format -msgid "%s value differs from what is used in another .aff file" -msgstr "Warto %s rni si od tej uytej w innym pliku .aff" - -#: ../spell.c:5602 -#, c-format -msgid "Reading dictionary file %s ..." -msgstr "Czytam plik sownika %s ..." - -#: ../spell.c:5611 -#, c-format -msgid "E760: No word count in %s" -msgstr "E760: Brak iloci sw w %s" - -#: ../spell.c:5669 -#, c-format -msgid "line %6d, word %6d - %s" -msgstr "wiersz %6d, sowo %6d - %s" - -# c-format -#: ../spell.c:5691 -#, c-format -msgid "Duplicate word in %s line %d: %s" -msgstr "Powtrzony wyraz w %s wierszu %d: %s" - -# c-format -#: ../spell.c:5694 -#, c-format -msgid "First duplicate word in %s line %d: %s" -msgstr "Pierwszy powtrzony wyraz w %s wiersz %d: %s" - -# c-format -#: ../spell.c:5746 -#, c-format -msgid "%d duplicate word(s) in %s" -msgstr "%d powtrzony(ch) wyraz(w) w %s" - -#: ../spell.c:5748 -#, c-format -msgid "Ignored %d word(s) with non-ASCII characters in %s" -msgstr "Zignorowaem %d sw ze znakami nie ASCII w %s" - -#: ../spell.c:6115 -#, c-format -msgid "Reading word file %s ..." -msgstr "Odczytuj plik wyrazw %s ..." - -#: ../spell.c:6155 -#, c-format -msgid "Duplicate /encoding= line ignored in %s line %d: %s" -msgstr "Zignorowano powtrzony wiersz /encoding= w %s wierszu %d: %s" - -#: ../spell.c:6159 -#, c-format -msgid "/encoding= line after word ignored in %s line %d: %s" -msgstr "Zignorowano wiersz /encoding= po wyrazie w %s wierszu %d: %s" - -#: ../spell.c:6180 -#, c-format -msgid "Duplicate /regions= line ignored in %s line %d: %s" -msgstr "Powtrzony wiersz /regions= zignorowano w %s wierszu %d: %s" - -#: ../spell.c:6185 -#, c-format -msgid "Too many regions in %s line %d: %s" -msgstr "Za duo regionw w %s wiersz %d: %s" - -#: ../spell.c:6198 -#, c-format -msgid "/ line ignored in %s line %d: %s" -msgstr "wiersz / zignorowano w %s wierszu %d: %s" - -#: ../spell.c:6224 -#, c-format -msgid "Invalid region nr in %s line %d: %s" -msgstr "Nieprawidowy numer regionu w %s wierszu %d: %s" - -#: ../spell.c:6230 -#, c-format -msgid "Unrecognized flags in %s line %d: %s" -msgstr "Nieznane flagi w %s wiersz %d: %s" - -#: ../spell.c:6257 -#, c-format -msgid "Ignored %d words with non-ASCII characters" -msgstr "Zignorowaem %d sw ze znakami nie ASCII" - -#: ../spell.c:6656 -#, c-format -msgid "Compressed %d of %d nodes; %d (%d%%) remaining" -msgstr "Skompresowano %d z %d wzw; pozostaje %d (%d%%)" - -#: ../spell.c:7340 -msgid "Reading back spell file..." -msgstr "Odczytuj plik sprawdzania pisowni..." - -#. Go through the trie of good words, soundfold each word and add it to -#. the soundfold trie. -#: ../spell.c:7357 -msgid "Performing soundfolding..." -msgstr "Wykonuj kompresj dwikow..." - -#: ../spell.c:7368 -#, c-format -msgid "Number of words after soundfolding: %<PRId64>" -msgstr "Liczba sw po kompresji dwikowej: %<PRId64>" - -#: ../spell.c:7476 -#, c-format -msgid "Total number of words: %d" -msgstr "Cakowita liczba sw: %d" - -#: ../spell.c:7655 -#, c-format -msgid "Writing suggestion file %s ..." -msgstr "Zapisuj plik sugestii %s ..." - -#: ../spell.c:7707 ../spell.c:7927 -#, c-format -msgid "Estimated runtime memory use: %d bytes" -msgstr "Oczekiwane zuycie pamici: %d bajtw" - -#: ../spell.c:7820 -msgid "E751: Output file name must not have region name" -msgstr "E751: Nazwa pliku wynikowego nie moe by nazw regionu" - -#: ../spell.c:7822 -msgid "E754: Only up to 8 regions supported" -msgstr "E754: Wspieram tylko 8 regionw" - -#: ../spell.c:7846 -#, c-format -msgid "E755: Invalid region in %s" -msgstr "E755: Nieprawidowy region w %s" - -#: ../spell.c:7907 -msgid "Warning: both compounding and NOBREAK specified" -msgstr "Ostrzeenie: okrelono zarwno zoenia jak i NOBREAK" - -#: ../spell.c:7920 -#, c-format -msgid "Writing spell file %s ..." -msgstr "Zapisuj plik sprawdzania pisowni %s ..." - -#: ../spell.c:7925 -msgid "Done!" -msgstr "Zrobione!" - -#: ../spell.c:8034 -#, c-format -msgid "E765: 'spellfile' does not have %<PRId64> entries" -msgstr "E765: 'spellfile' nie posiada wpisw %<PRId64>" - -#: ../spell.c:8074 -#, fuzzy, c-format -msgid "Word '%.*s' removed from %s" -msgstr "Usunito sowo z %s" - -#: ../spell.c:8117 -#, fuzzy, c-format -msgid "Word '%.*s' added to %s" -msgstr "Dodano sowo do %s" - -#: ../spell.c:8381 -msgid "E763: Word characters differ between spell files" -msgstr "E763: Znaki wyrazw rni si midzy plikami sprawdzania pisowni" - -#: ../spell.c:8684 -msgid "Sorry, no suggestions" -msgstr "Przykro mi, brak podpowiedzi" - -#: ../spell.c:8687 -#, c-format -msgid "Sorry, only %<PRId64> suggestions" -msgstr "Przykro mi, tylko %<PRId64> podpowiedzi" - -#. for when 'cmdheight' > 1 -#. avoid more prompt -#: ../spell.c:8704 -#, c-format -msgid "Change \"%.*s\" to:" -msgstr "Zmie \"%.*s\" na:" - -#: ../spell.c:8737 -#, c-format -msgid " < \"%.*s\"" -msgstr " < \"%.*s\"" - -#: ../spell.c:8882 -msgid "E752: No previous spell replacement" -msgstr "E752: Brak poprzednich podmian sprawdzania pisowni" - -#: ../spell.c:8925 -#, c-format -msgid "E753: Not found: %s" -msgstr "E753: Nie znaleziono: %s" - -#: ../spell.c:9276 -#, c-format -msgid "E778: This does not look like a .sug file: %s" -msgstr "E778: Ten plik nie wyglda na plik .sug: %s" - -#: ../spell.c:9282 -#, c-format -msgid "E779: Old .sug file, needs to be updated: %s" -msgstr "E779: Stary plik .sug, konieczne jest uaktualnienie: %s" - -#: ../spell.c:9286 -#, c-format -msgid "E780: .sug file is for newer version of Vim: %s" -msgstr "E780: Plik .sug dla nowszej wersji Vima: %s" - -#: ../spell.c:9295 -#, c-format -msgid "E781: .sug file doesn't match .spl file: %s" -msgstr "E781: Plik .sug nie pasuje do pliku .spl: %s" - -#: ../spell.c:9305 -#, c-format -msgid "E782: error while reading .sug file: %s" -msgstr "E782: Bd w czasie odczytu pliku .sug: %s" - -#. This should have been checked when generating the .spl -#. file. -#: ../spell.c:11575 -msgid "E783: duplicate char in MAP entry" -msgstr "E783: Podwojony znak we wpisie MAP" - -#: ../syntax.c:266 -msgid "No Syntax items defined for this buffer" -msgstr "Brak elementw skadni okrelonych dla tego bufora" - -#: ../syntax.c:3083 ../syntax.c:3104 ../syntax.c:3127 -#, c-format -msgid "E390: Illegal argument: %s" -msgstr "E390: Niedozwolony argument: %s" - -#: ../syntax.c:3299 -#, c-format -msgid "E391: No such syntax cluster: %s" -msgstr "E391: Nie ma takiego klastra skadni: %s" - -#: ../syntax.c:3433 -msgid "syncing on C-style comments" -msgstr "synchronizacja komentarzy w stylu C" - -#: ../syntax.c:3439 -msgid "no syncing" -msgstr "brak synchronizacji" - -#: ../syntax.c:3441 -msgid "syncing starts " -msgstr "pocztek synchronizacji" - -#: ../syntax.c:3443 ../syntax.c:3506 -msgid " lines before top line" -msgstr " wierszy przed grn lini" - -#: ../syntax.c:3448 -msgid "" -"\n" -"--- Syntax sync items ---" -msgstr "" -"\n" -"--- Elementy synchronizacji skadni ---" - -#: ../syntax.c:3452 -msgid "" -"\n" -"syncing on items" -msgstr "" -"\n" -"synchronizuj na elementach" - -#: ../syntax.c:3457 -msgid "" -"\n" -"--- Syntax items ---" -msgstr "" -"\n" -"--- Elementy skadni ---" - -#: ../syntax.c:3475 -#, c-format -msgid "E392: No such syntax cluster: %s" -msgstr "E392: Nie ma takiego klastra skadni: %s" - -#: ../syntax.c:3497 -msgid "minimal " -msgstr "minimalnie " - -#: ../syntax.c:3503 -msgid "maximal " -msgstr "maksymalnie " - -#: ../syntax.c:3513 -msgid "; match " -msgstr "; pasuje " - -#: ../syntax.c:3515 -msgid " line breaks" -msgstr "znakw nowego wiersza" - -#: ../syntax.c:4076 -msgid "E395: contains argument not accepted here" -msgstr "E395: argument contains niedozwolony w tym miejscu" - -#: ../syntax.c:4096 -msgid "E844: invalid cchar value" -msgstr "E844: Niewaciwa warto cchar" - -#: ../syntax.c:4107 -msgid "E393: group[t]here not accepted here" -msgstr "E393: group[t]here niedozwolone w tym miejscu" - -#: ../syntax.c:4126 -#, c-format -msgid "E394: Didn't find region item for %s" -msgstr "E394: Nie znalazem elementw regionu dla %s" - -#: ../syntax.c:4188 -msgid "E397: Filename required" -msgstr "E397: Wymagana nazwa pliku" - -#: ../syntax.c:4221 -msgid "E847: Too many syntax includes" -msgstr "E847: Za duo wczonych skadni" - -#: ../syntax.c:4303 -#, c-format -msgid "E789: Missing ']': %s" -msgstr "E789: Brak ']': %s" - -#: ../syntax.c:4531 -#, c-format -msgid "E398: Missing '=': %s" -msgstr "E398: Brak '=': %s" - -#: ../syntax.c:4666 -#, c-format -msgid "E399: Not enough arguments: syntax region %s" -msgstr "E399: Za mao argumentw: syntax region %s" - -#: ../syntax.c:4870 -msgid "E848: Too many syntax clusters" -msgstr "E848: Za duo klastrw skadni" - -#: ../syntax.c:4954 -msgid "E400: No cluster specified" -msgstr "E400: Brak specyfikacji klastra" - -#. end delimiter not found -#: ../syntax.c:4986 -#, c-format -msgid "E401: Pattern delimiter not found: %s" -msgstr "E401: Brak ogranicznika wzorca: %s" - -#: ../syntax.c:5049 -#, c-format -msgid "E402: Garbage after pattern: %s" -msgstr "E402: mieci po wzorcu: %s" - -#: ../syntax.c:5120 -msgid "E403: syntax sync: line continuations pattern specified twice" -msgstr "E403: syntax sync: wielokrotnie podane wzorce kontynuacji wiersza" - -#: ../syntax.c:5169 -#, c-format -msgid "E404: Illegal arguments: %s" -msgstr "E404: Niedozwolone argumenty: %s" - -#: ../syntax.c:5217 -#, c-format -msgid "E405: Missing equal sign: %s" -msgstr "E405: Brak znaku rwnoci: %s" - -#: ../syntax.c:5222 -#, c-format -msgid "E406: Empty argument: %s" -msgstr "E406: Pusty argument: %s" - -#: ../syntax.c:5240 -#, c-format -msgid "E407: %s not allowed here" -msgstr "E407: %s jest niedozwolone w tym miejscu" - -#: ../syntax.c:5246 -#, c-format -msgid "E408: %s must be first in contains list" -msgstr "E408: %s musi by pierwsze w licie contains" - -#: ../syntax.c:5304 -#, c-format -msgid "E409: Unknown group name: %s" -msgstr "E409: Nieznana nazwa grupy: %s" - -#: ../syntax.c:5512 -#, c-format -msgid "E410: Invalid :syntax subcommand: %s" -msgstr "E410: Niewaciwa podkomenda :syntax : %s" - -#: ../syntax.c:5854 -msgid "" -" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN" -msgstr "" -" WSZYTKO ILO PASUJE NAJWOLN. REDNIO NAZWA WZORZEC" - -#: ../syntax.c:6146 -msgid "E679: recursive loop loading syncolor.vim" -msgstr "E679: rekursywna ptla wczytujca syncolor.vim" - -#: ../syntax.c:6256 -#, c-format -msgid "E411: highlight group not found: %s" -msgstr "E411: nie znaleziono grupy podwietlania: %s" - -#: ../syntax.c:6278 -#, c-format -msgid "E412: Not enough arguments: \":highlight link %s\"" -msgstr "E412: Zbyt mao argumentw: \":highlight link %s\"" - -#: ../syntax.c:6284 -#, c-format -msgid "E413: Too many arguments: \":highlight link %s\"" -msgstr "E413: Zbyt wiele argumentw: \":highlight link %s\"" - -#: ../syntax.c:6302 -msgid "E414: group has settings, highlight link ignored" -msgstr "E414: grupa ma ustawienia; zignorowane podczenie podwietlania" - -#: ../syntax.c:6367 -#, c-format -msgid "E415: unexpected equal sign: %s" -msgstr "E415: nieoczekiwany znak rwnoci: %s" - -#: ../syntax.c:6395 -#, c-format -msgid "E416: missing equal sign: %s" -msgstr "E416: brak znaku rwnoci: %s" - -#: ../syntax.c:6418 -#, c-format -msgid "E417: missing argument: %s" -msgstr "E417: brak argumentu: %s" - -#: ../syntax.c:6446 -#, c-format -msgid "E418: Illegal value: %s" -msgstr "E418: Niedozwolona warto: %s" - -#: ../syntax.c:6496 -msgid "E419: FG color unknown" -msgstr "E419: Kolor FG nieznany" - -#: ../syntax.c:6504 -msgid "E420: BG color unknown" -msgstr "E420: Kolor BG nieznany" - -#: ../syntax.c:6564 -#, c-format -msgid "E421: Color name or number not recognized: %s" -msgstr "E421: Nazwa lub liczba koloru nierozpoznana: %s" - -#: ../syntax.c:6714 -#, c-format -msgid "E422: terminal code too long: %s" -msgstr "E422: za dugi kod terminala: %s" - -#: ../syntax.c:6753 -#, c-format -msgid "E423: Illegal argument: %s" -msgstr "E423: Niedozwolony argument: %s" - -#: ../syntax.c:6925 -msgid "E424: Too many different highlighting attributes in use" -msgstr "E424: Zbyt wiele rnych atrybutw podkrelania w uyciu" - -#: ../syntax.c:7427 -msgid "E669: Unprintable character in group name" -msgstr "E669: Niedrukowalny znak w nazwie grupy" - -#: ../syntax.c:7434 -msgid "W18: Invalid character in group name" -msgstr "W18: nieprawidowy znak w nazwie grupy" - -#: ../syntax.c:7448 -msgid "E849: Too many highlight and syntax groups" -msgstr "E849: Za duo grup podwietlania i skadni" - -#: ../tag.c:104 -msgid "E555: at bottom of tag stack" -msgstr "E555: na dole stosu znacznikw" - -#: ../tag.c:105 -msgid "E556: at top of tag stack" -msgstr "E556: na grze stosu znacznikw" - -#: ../tag.c:380 -msgid "E425: Cannot go before first matching tag" -msgstr "E425: Nie mona przej przed pierwszy pasujcy znacznik" - -#: ../tag.c:504 -#, c-format -msgid "E426: tag not found: %s" -msgstr "E426: nie znaleziono znacznika: %s" - -#: ../tag.c:528 -msgid " # pri kind tag" -msgstr " # pri rodzaj znacznik" - -#: ../tag.c:531 -msgid "file\n" -msgstr "plik\n" - -#: ../tag.c:829 -msgid "E427: There is only one matching tag" -msgstr "E427: Pasuje tylko jeden znacznik" - -#: ../tag.c:831 -msgid "E428: Cannot go beyond last matching tag" -msgstr "E428: Nie mona przej za ostatni pasujcy znacznik" - -#: ../tag.c:850 -#, c-format -msgid "File \"%s\" does not exist" -msgstr "Plik \"%s\" nie istnieje" - -#. Give an indication of the number of matching tags -#: ../tag.c:859 -#, c-format -msgid "tag %d of %d%s" -msgstr "znacznik %d z %d%s" - -#: ../tag.c:862 -msgid " or more" -msgstr " lub wicej" - -#: ../tag.c:864 -msgid " Using tag with different case!" -msgstr " Uywam znacznika o odmiennej wielkoci liter!" - -#: ../tag.c:909 -#, c-format -msgid "E429: File \"%s\" does not exist" -msgstr "E429: Plik \"%s\" nie istnieje" - -#. Highlight title -#: ../tag.c:960 -msgid "" -"\n" -" # TO tag FROM line in file/text" -msgstr "" -"\n" -" # DO znacznik OD wiersza w pliku/tekcie" - -#: ../tag.c:1303 -#, c-format -msgid "Searching tags file %s" -msgstr "Szukam w pliku znacznikw %s" - -#: ../tag.c:1545 -msgid "Ignoring long line in tags file" -msgstr "Ignoruj dugie wiersze w pliku znacznikw" - -#: ../tag.c:1915 -#, c-format -msgid "E431: Format error in tags file \"%s\"" -msgstr "E431: Bd formatu w pliku znacznikw \"%s\"" - -#: ../tag.c:1917 -#, c-format -msgid "Before byte %<PRId64>" -msgstr "Przed bajtem %<PRId64>" - -#: ../tag.c:1929 -#, c-format -msgid "E432: Tags file not sorted: %s" -msgstr "E432: Plik znacznikw nieuporzdkowany: %s" - -#. never opened any tags file -#: ../tag.c:1960 -msgid "E433: No tags file" -msgstr "E433: Brak pliku znacznikw" - -#: ../tag.c:2536 -msgid "E434: Can't find tag pattern" -msgstr "E434: Nie mog znale wzorca znacznika" - -#: ../tag.c:2544 -msgid "E435: Couldn't find tag, just guessing!" -msgstr "E435: Nie znalazem znacznika - tylko zgaduj!" - -#: ../tag.c:2797 -#, c-format -msgid "Duplicate field name: %s" -msgstr "Powtrzona nazwa pola: %s" - -#: ../term.c:1442 -msgid "' not known. Available builtin terminals are:" -msgstr "' nieznany. Moliwe typy wbudowanych terminali:" - -#: ../term.c:1463 -msgid "defaulting to '" -msgstr "domylnie jest '" - -#: ../term.c:1731 -msgid "E557: Cannot open termcap file" -msgstr "E557: Nie mog otworzy pliku termcap" - -#: ../term.c:1735 -msgid "E558: Terminal entry not found in terminfo" -msgstr "E558: Nie ma opisu takiego terminala w terminfo" - -#: ../term.c:1737 -msgid "E559: Terminal entry not found in termcap" -msgstr "E559: Nie ma opisu takiego terminala w termcap" - -#: ../term.c:1878 -#, c-format -msgid "E436: No \"%s\" entry in termcap" -msgstr "E436: Brak opisu \"%s\" w termcap" - -#: ../term.c:2249 -msgid "E437: terminal capability \"cm\" required" -msgstr "E437: wymagana zdolno \"cm\" terminala" - -#. Highlight title -#: ../term.c:4376 -msgid "" -"\n" -"--- Terminal keys ---" -msgstr "" -"\n" -"--- Klawisze terminala ---" - -#: ../ui.c:481 -msgid "Vim: Error reading input, exiting...\n" -msgstr "Vim: Bd podczas wczytywania wejcia, kocz...\n" - -#. This happens when the FileChangedRO autocommand changes the -#. * file in a way it becomes shorter. -#: ../undo.c:379 -#, fuzzy -msgid "E881: Line count changed unexpectedly" -msgstr "E834: Niespodziewana zmiana iloci linii" - -#: ../undo.c:627 -#, c-format -msgid "E828: Cannot open undo file for writing: %s" -msgstr "E828: Nie mog otworzy do zapisu pliku undo: %s" - -#: ../undo.c:717 -#, c-format -msgid "E825: Corrupted undo file (%s): %s" -msgstr "E825: Uszkodzony plik undo (%s): %s" - -#: ../undo.c:1039 -msgid "Cannot write undo file in any directory in 'undodir'" -msgstr "Nie mona zapisa pliku undo w adnym katalogu z 'undodir'" - -#: ../undo.c:1074 -#, c-format -msgid "Will not overwrite with undo file, cannot read: %s" -msgstr "Nie nadpisz plikiem undo, nie mog odczyta: %s" - -#: ../undo.c:1092 -#, c-format -msgid "Will not overwrite, this is not an undo file: %s" -msgstr "Nie nadpisz, to nie jest plik undo: %s" - -#: ../undo.c:1108 -msgid "Skipping undo file write, nothing to undo" -msgstr "Pomijam zapis pliku undo, nic do cofnicia" - -#: ../undo.c:1121 -#, c-format -msgid "Writing undo file: %s" -msgstr "Zapisuj plik undo: %s" - -#: ../undo.c:1213 -#, c-format -msgid "E829: write error in undo file: %s" -msgstr "E829: Bd zapisu w pliku undo: %s" - -#: ../undo.c:1280 -#, c-format -msgid "Not reading undo file, owner differs: %s" -msgstr "Nie wczytuj pliku undo, inny waciciel: %s" - -#: ../undo.c:1292 -#, c-format -msgid "Reading undo file: %s" -msgstr "Wczytuj plik undo: %s" - -#: ../undo.c:1299 -#, c-format -msgid "E822: Cannot open undo file for reading: %s" -msgstr "E822: Nie mog otworzy pliku undo do odczytu: %s" - -#: ../undo.c:1308 -#, c-format -msgid "E823: Not an undo file: %s" -msgstr "E823: To nie jest plik undo: %s" - -#: ../undo.c:1313 -#, c-format -msgid "E824: Incompatible undo file: %s" -msgstr "E824: Niekompatybilny plik undo: %s" - -#: ../undo.c:1328 -msgid "File contents changed, cannot use undo info" -msgstr "Zawarto pliku si zmienia, nie mog uy pliku undo" - -#: ../undo.c:1497 -#, c-format -msgid "Finished reading undo file %s" -msgstr "Skoczono wczytywanie pliku undo %s" - -#: ../undo.c:1586 ../undo.c:1812 -msgid "Already at oldest change" -msgstr "Ju w miejscu ostatniej zmiany" - -#: ../undo.c:1597 ../undo.c:1814 -msgid "Already at newest change" -msgstr "Ju w miejscu najnowszej zmiany" - -#: ../undo.c:1806 -#, c-format -msgid "E830: Undo number %<PRId64> not found" -msgstr "E830: Nie znaleziono numeru cofnicia %<PRId64>" - -#: ../undo.c:1979 -msgid "E438: u_undo: line numbers wrong" -msgstr "E438: u_undo: niewaciwe numery wierszy" - -#: ../undo.c:2183 -msgid "more line" -msgstr "1 wiersz wicej" - -#: ../undo.c:2185 -msgid "more lines" -msgstr "wicej wierszy" - -#: ../undo.c:2187 -msgid "line less" -msgstr "1 wiersz mniej" - -#: ../undo.c:2189 -msgid "fewer lines" -msgstr "mniej wierszy" - -#: ../undo.c:2193 -msgid "change" -msgstr "1 zmiana" - -#: ../undo.c:2195 -msgid "changes" -msgstr "zmiany" - -#: ../undo.c:2225 -#, c-format -msgid "%<PRId64> %s; %s #%<PRId64> %s" -msgstr "%<PRId64> %s; %s #%<PRId64> %s" - -#: ../undo.c:2228 -msgid "before" -msgstr "przed" - -#: ../undo.c:2228 -msgid "after" -msgstr "za" - -#: ../undo.c:2325 -msgid "Nothing to undo" -msgstr "Nie ma zmian do cofnicia" - -#: ../undo.c:2330 -msgid "number changes when saved" -msgstr "liczba zmiany kiedy zapisano" - -#: ../undo.c:2360 -#, c-format -msgid "%<PRId64> seconds ago" -msgstr "%<PRId64> sekund temu" - -#: ../undo.c:2372 -msgid "E790: undojoin is not allowed after undo" -msgstr "E790: undojoin nie jest dozwolone po undo" - -#: ../undo.c:2466 -msgid "E439: undo list corrupt" -msgstr "E439: uszkodzona lista cofania" - -#: ../undo.c:2495 -msgid "E440: undo line missing" -msgstr "E440: brak wiersza cofania" - -#: ../version.c:600 -msgid "" -"\n" -"Included patches: " -msgstr "" -"\n" -"Zadane aty: " - -#: ../version.c:627 -msgid "" -"\n" -"Extra patches: " -msgstr "" -"\n" -"Ekstra aty: " - -#: ../version.c:639 ../version.c:864 -msgid "Modified by " -msgstr "Zmieniony przez " - -#: ../version.c:646 -msgid "" -"\n" -"Compiled " -msgstr "" -"\n" -"Skompilowany " - -#: ../version.c:649 -msgid "by " -msgstr "przez " - -#: ../version.c:660 -msgid "" -"\n" -"Huge version " -msgstr "" -"\n" -"Olbrzymia wersja " - -#: ../version.c:661 -msgid "without GUI." -msgstr "bez GUI." - -#: ../version.c:662 -msgid " Features included (+) or not (-):\n" -msgstr " Opcje wczone (+) lub nie (-):\n" - -#: ../version.c:667 -msgid " system vimrc file: \"" -msgstr " vimrc systemu: \"" - -#: ../version.c:672 -msgid " user vimrc file: \"" -msgstr " vimrc uytkownika: \"" - -#: ../version.c:677 -msgid " 2nd user vimrc file: \"" -msgstr " 2-gi plik vimrc uytkownika: \"" - -#: ../version.c:682 -msgid " 3rd user vimrc file: \"" -msgstr " 3-ci plik vimrc uytkownika: \"" - -#: ../version.c:687 -msgid " user exrc file: \"" -msgstr " exrc uytkownika: \"" - -#: ../version.c:692 -msgid " 2nd user exrc file: \"" -msgstr " 2-gi plik exrc uytkownika: \"" - -#: ../version.c:699 -msgid " fall-back for $VIM: \"" -msgstr " odwet dla $VIM-a: \"" - -#: ../version.c:705 -msgid " f-b for $VIMRUNTIME: \"" -msgstr "f-b dla $VIMRUNTIME: \"" - -#: ../version.c:709 -msgid "Compilation: " -msgstr "Kompilacja: " - -#: ../version.c:712 -msgid "Linking: " -msgstr "Konsolidacja: " - -#: ../version.c:717 -msgid " DEBUG BUILD" -msgstr " KOMPILACJA DEBUG" - -#: ../version.c:767 -msgid "VIM - Vi IMproved" -msgstr "VIM - Vi rozbudowany" - -#: ../version.c:769 -msgid "version " -msgstr "wersja " - -#: ../version.c:770 -msgid "by Bram Moolenaar et al." -msgstr "Autor: Bram Moolenaar i Inni." - -#: ../version.c:774 -msgid "Vim is open source and freely distributable" -msgstr "Vim jest open source i rozprowadzany darmowo" - -#: ../version.c:776 -msgid "Help poor children in Uganda!" -msgstr "Pom biednym dzieciom w Ugandzie!" - -#: ../version.c:777 -msgid "type :help iccf<Enter> for information " -msgstr "wprowad :help iccf<Enter> dla informacji o tym " - -#: ../version.c:779 -msgid "type :q<Enter> to exit " -msgstr "wprowad :q<Enter> zakoczenie programu " - -#: ../version.c:780 -msgid "type :help<Enter> or <F1> for on-line help" -msgstr "wprowad :help<Enter> lub <F1> pomoc na bieco " - -#: ../version.c:781 -msgid "type :help version7<Enter> for version info" -msgstr "wprowad :help version7<Enter> dla informacji o wersji" - -#: ../version.c:784 -msgid "Running in Vi compatible mode" -msgstr "Dziaam w trybie zgodnoci z Vi" - -#: ../version.c:785 -msgid "type :set nocp<Enter> for Vim defaults" -msgstr "wprowad :set nocp<Enter> wartoci domylne Vim-a" - -#: ../version.c:786 -msgid "type :help cp-default<Enter> for info on this" -msgstr "wprowad :help cp-default<Enter> dla informacji to tym " - -#: ../version.c:827 -msgid "Sponsor Vim development!" -msgstr "Sponsoruj rozwj Vima!" - -#: ../version.c:828 -msgid "Become a registered Vim user!" -msgstr "Zosta zarejestrowanym uytkownikiem Vima!" - -#: ../version.c:831 -msgid "type :help sponsor<Enter> for information " -msgstr "wprowad :help sponsor<Enter> dla informacji" - -#: ../version.c:832 -msgid "type :help register<Enter> for information " -msgstr "wprowad :help register<Enter> dla informacji" - -#: ../version.c:834 -msgid "menu Help->Sponsor/Register for information " -msgstr "menu Pomoc->Sponsoruj/Zarejestruj si dla informacji" - -#: ../window.c:119 -msgid "Already only one window" -msgstr "Ju jest tylko jeden widok" - -#: ../window.c:224 -msgid "E441: There is no preview window" -msgstr "E441: Nie ma okna podgldu" - -#: ../window.c:559 -msgid "E442: Can't split topleft and botright at the same time" -msgstr "E442: Nie mog rozdzieli lewo-grnego i prawo-dolnego jednoczenie" - -#: ../window.c:1228 -msgid "E443: Cannot rotate when another window is split" -msgstr "E443: Nie mog przekrci, gdy inne okno jest rozdzielone" - -#: ../window.c:1803 -msgid "E444: Cannot close last window" -msgstr "E444: Nie mog zamkn ostatniego okna" - -#: ../window.c:1810 -msgid "E813: Cannot close autocmd window" -msgstr "E813: Nie mona zamkn okna autocmd" - -#: ../window.c:1814 -msgid "E814: Cannot close window, only autocmd window would remain" -msgstr "E814: Nie mona zamkn okna, zostaoby tylko okno autocmd" - -#: ../window.c:2717 -msgid "E445: Other window contains changes" -msgstr "E445: Inne okno zawiera zmiany" - -#: ../window.c:4805 -msgid "E446: No file name under cursor" -msgstr "E446: Brak nazwy pliku pod kursorem" - -#~ msgid "E831: bf_key_init() called with empty password" -#~ msgstr "E831: bf_key_init() wywoany z pustym hasem" - -#~ msgid "E820: sizeof(uint32_t) != 4" -#~ msgstr "E820: sizeof(uint32_t) != 4" - -#~ msgid "E817: Blowfish big/little endian use wrong" -#~ msgstr "E817: Blowfish uywa bdnej kolejnoci bajtw" - -#~ msgid "E818: sha256 test failed" -#~ msgstr "E818: test sha256 nie powid si" - -#~ msgid "E819: Blowfish test failed" -#~ msgstr "E819: test Blowfisha nie powid si" - -#~ msgid "Patch file" -#~ msgstr "Plik ata" - -#~ msgid "" -#~ "&OK\n" -#~ "&Cancel" -#~ msgstr "" -#~ "&OK\n" -#~ "&Zakocz" - -#~ msgid "E240: No connection to Vim server" -#~ msgstr "E240: Brak poczenia z serwerem Vim" - -#~ msgid "E241: Unable to send to %s" -#~ msgstr "E241: Nie mog wysa do %s" - -#~ msgid "E277: Unable to read a server reply" -#~ msgstr "E277: Nie mog czyta odpowiedzi serwera" - -#~ msgid "E258: Unable to send to client" -#~ msgstr "E258: Nie mog wysa do klienta" - -#~ msgid "Save As" -#~ msgstr "Zapisz jako" - -#~ msgid "Source Vim script" -#~ msgstr "Wczytaj skrypt Vima" - -#~ msgid "Edit File" -#~ msgstr "Edytuj Plik" - -#~ msgid " (NOT FOUND)" -#~ msgstr " (NIE ZNALEZIONO)" - -#~ msgid "unknown" -#~ msgstr "nieznany" - -#~ msgid "Edit File in new window" -#~ msgstr "Edytuj plik w nowym oknie" - -#~ msgid "Append File" -#~ msgstr "Docz plik" - -#~ msgid "Window position: X %d, Y %d" -#~ msgstr "Pozycja okna: X %d, Y %d" - -#~ msgid "Save Redirection" -#~ msgstr "Zapisz przekierowanie" - -#~ msgid "Save View" -#~ msgstr "Zapisz widok" - -#~ msgid "Save Session" -#~ msgstr "Zapisz sesj" - -#~ msgid "Save Setup" -#~ msgstr "Zapisz ustawienia" - -#~ msgid "E809: #< is not available without the +eval feature" -#~ msgstr "E809: #< nie jest dostpne bez waciwoci +eval" - -#~ msgid "E196: No digraphs in this version" -#~ msgstr "E196: Brak dwugrafw w tej wersji" - -#~ msgid "is a device (disabled with 'opendevice' option)" -#~ msgstr "jest urzdzeniem (wyczonym w opcji 'opendevice')" - -#~ msgid "Reading from stdin..." -#~ msgstr "Wczytywanie ze stdin..." - -#~ msgid "[blowfish]" -#~ msgstr "[blowfish]" - -#~ msgid "[crypted]" -#~ msgstr "[zakodowane]" - -#~ msgid "E821: File is encrypted with unknown method" -#~ msgstr "E821: Plik zaszyfrowano w nieznany sposb" - -#~ msgid "NetBeans disallows writes of unmodified buffers" -#~ msgstr "NetBeans nie pozwala na zapis niezmodyfikowanych buforw" - -#~ msgid "Partial writes disallowed for NetBeans buffers" -#~ msgstr "Czciowy zapis niemoliwy dla buforw NetBeans" - -#~ msgid "writing to device disabled with 'opendevice' option" -#~ msgstr "zapisywanie do urzdzenia wyczone w opcji 'opendevice'" - -#~ msgid "E460: The resource fork would be lost (add ! to override)" -#~ msgstr "E460: Rozdzia zasobw zostanie utracony (wymu przez !)" - -#~ msgid "<cannot open> " -#~ msgstr "<nie mog otworzy> " - -#~ msgid "E616: vim_SelFile: can't get font %s" -#~ msgstr "E616: vim_SelFile: nie mog otrzyma czcionki %s" - -#~ msgid "E614: vim_SelFile: can't return to current directory" -#~ msgstr "E614: vim_SelFile: nie mog powrci do biecego katalogu" - -#~ msgid "Pathname:" -#~ msgstr "Trop:" - -#~ msgid "E615: vim_SelFile: can't get current directory" -#~ msgstr "E615: vim_SelFile: nie mog otrzyma biecego katalogu" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Cancel" -#~ msgstr "Zakocz" - -#~ msgid "Vim dialog" -#~ msgstr "VIM - Dialog" - -#~ msgid "Scrollbar Widget: Could not get geometry of thumb pixmap." -#~ msgstr "" -#~ "Scrollbar Widget: Nie mogem otrzyma rozmiarw rysunku na przycisku." - -#~ msgid "E232: Cannot create BalloonEval with both message and callback" -#~ msgstr "E232: Nie mog stworzy BalloonEval z powiadomieniem i wywoaniem" - -#~ msgid "E851: Failed to create a new process for the GUI" -#~ msgstr "E851: Nie mogem stworzy nowego procesu dla GUI" - -#~ msgid "E852: The child process failed to start the GUI" -#~ msgstr "E852: Proces potomny nie mg uruchomi GUI" - -#~ msgid "E229: Cannot start the GUI" -#~ msgstr "E229: Nie mog odpali GUI" - -#~ msgid "E230: Cannot read from \"%s\"" -#~ msgstr "E230: Nie mog czyta z \"%s\"" - -#~ msgid "E665: Cannot start GUI, no valid font found" -#~ msgstr "E665: Nie mona uruchomi GUI, brak prawidowej czcionki" - -#~ msgid "E231: 'guifontwide' invalid" -#~ msgstr "E231: Niewaciwe 'guifontwide'" - -#~ msgid "E599: Value of 'imactivatekey' is invalid" -#~ msgstr "E599: Nieprawidowa warto 'imactivatekey'" - -#~ msgid "E254: Cannot allocate color %s" -#~ msgstr "E254: Nie mog zarezerwowa koloru %s" - -#~ msgid "No match at cursor, finding next" -#~ msgstr "Brak dopasowania przy kursorze, szukam dalej" - -#~ msgid "Input _Methods" -#~ msgstr "Input _Methods" - -#~ msgid "VIM - Search and Replace..." -#~ msgstr "VIM - Szukaj i Zamie..." - -#~ msgid "VIM - Search..." -#~ msgstr "VIM - Szukaj..." - -#~ msgid "Find what:" -#~ msgstr "Znajd:" - -#~ msgid "Replace with:" -#~ msgstr "Zamie na:" - -#~ msgid "Match whole word only" -#~ msgstr "Dopasuj tylko cae wyrazy" - -#~ msgid "Match case" -#~ msgstr "Dopasuj wielko liter" - -#~ msgid "Direction" -#~ msgstr "Kierunek" - -#~ msgid "Up" -#~ msgstr "W gr" - -#~ msgid "Down" -#~ msgstr "W d" - -#~ msgid "Find Next" -#~ msgstr "Znajd nastpne" - -#~ msgid "Replace" -#~ msgstr "Zamie" - -#~ msgid "Replace All" -#~ msgstr "Zamie wszystkie" - -#~ msgid "Vim: Received \"die\" request from session manager\n" -#~ msgstr "Vim: otrzymano danie \"die\" od menedera sesji\n" - -#~ msgid "Close" -#~ msgstr "Zamknij" - -#~ msgid "New tab" -#~ msgstr "Nowa karta" - -#~ msgid "Open Tab..." -#~ msgstr "Otwrz kart..." - -#~ msgid "Vim: Main window unexpectedly destroyed\n" -#~ msgstr "Vim: Gwne okno nieoczekiwanie zniszczone\n" - -#~ msgid "&Filter" -#~ msgstr "&Filtr" - -#~ msgid "&Cancel" -#~ msgstr "&Anuluj" - -#~ msgid "Directories" -#~ msgstr "Katalogi" - -#~ msgid "Filter" -#~ msgstr "Filtr" - -#~ msgid "&Help" -#~ msgstr "&Pomoc" - -#~ msgid "Files" -#~ msgstr "Pliki" - -#~ msgid "&OK" -#~ msgstr "&OK" - -#~ msgid "Selection" -#~ msgstr "Wybr" - -#~ msgid "Find &Next" -#~ msgstr "Znajd &nastpne" - -#~ msgid "&Replace" -#~ msgstr "&Zamie" - -#~ msgid "Replace &All" -#~ msgstr "Zamie &wszystko" - -#~ msgid "&Undo" -#~ msgstr "&Cofnij" - -#~ msgid "E671: Cannot find window title \"%s\"" -#~ msgstr "E671: Nie mog znale tytuu okna \"%s\"" - -#~ msgid "E243: Argument not supported: \"-%s\"; Use the OLE version." -#~ msgstr "E243: Argument nie jest wspomagany: \"-%s\"; Uywaj wersji OLE." - -#~ msgid "E672: Unable to open window inside MDI application" -#~ msgstr "E672: Nie mona otworzy okna wewntrz aplikacji MDI" - -#~ msgid "Close tab" -#~ msgstr "Zamknij kart" - -#~ msgid "Open tab..." -#~ msgstr "Otwrz kart..." - -#~ msgid "Find string (use '\\\\' to find a '\\')" -#~ msgstr "Znajd cig (uyj '\\\\' do szukania '\\')" - -#~ msgid "Find & Replace (use '\\\\' to find a '\\')" -#~ msgstr "Szukanie i Zamiana (uyj '\\\\' do szukania '\\')" - -#~ msgid "Not Used" -#~ msgstr "Nie uywany" - -#~ msgid "Directory\t*.nothing\n" -#~ msgstr "Katalog\t*.nic\n" - -#~ msgid "" -#~ "Vim E458: Cannot allocate colormap entry, some colors may be incorrect" -#~ msgstr "" -#~ "Vim E458: Nie mog zarezerwowa mapy kolorw, pewne kolory mog by " -#~ "nieprawidowe" - -#~ msgid "E250: Fonts for the following charsets are missing in fontset %s:" -#~ msgstr "" -#~ "E250: Brak czcionek dla nastpujcych zestaww znakw w zestawie czcionek " -#~ "%s:" - -#~ msgid "E252: Fontset name: %s" -#~ msgstr "E252: Nazwa zestawu czcionek: %s" - -#~ msgid "Font '%s' is not fixed-width" -#~ msgstr "Czcionka '%s' nie posiada znakw jednolitej szerokoci" - -#~ msgid "E253: Fontset name: %s" -#~ msgstr "E253: Nazwa zestawu czcionek: %s" - -#~ msgid "Font0: %s" -#~ msgstr "Font0: %s" - -#~ msgid "Font1: %s" -#~ msgstr "Font1: %s" - -#~ msgid "Font%<PRId64> width is not twice that of font0" -#~ msgstr "Szeroko font%<PRId64> nie jest podwjn szerokoci font0" - -#~ msgid "Font0 width: %<PRId64>" -#~ msgstr "Szeroko font0: %<PRId64>" - -#~ msgid "Font1 width: %<PRId64>" -#~ msgstr "Szeroko font1: %<PRId64>" - -#~ msgid "Invalid font specification" -#~ msgstr "Nieprawidowy opis czcionki" - -#~ msgid "&Dismiss" -#~ msgstr "&Anuluj" - -#~ msgid "no specific match" -#~ msgstr "brak okrelonego dopasowania" - -#~ msgid "Vim - Font Selector" -#~ msgstr "Vim - wybr czcionki" - -#~ msgid "Name:" -#~ msgstr "Nazwa:" - -#~ msgid "Show size in Points" -#~ msgstr "Poka wielko w punktach" - -#~ msgid "Encoding:" -#~ msgstr "Kodowanie:" - -#~ msgid "Font:" -#~ msgstr "Czcionka:" - -#~ msgid "Style:" -#~ msgstr "Styl:" - -#~ msgid "Size:" -#~ msgstr "Wielko:" - -#~ msgid "E256: Hangul automata ERROR" -#~ msgstr "E256: BD w automacie Hangul" - -#~ msgid "E563: stat error" -#~ msgstr "E563: bd stat" - -#~ msgid "E625: cannot open cscope database: %s" -#~ msgstr "E625: nie mog otworzy bazy danych cscope: %s" - -#~ msgid "E626: cannot get cscope database information" -#~ msgstr "E626: nie mog uzyska informacji z bazy danych cscope" - -#~ msgid "Lua library cannot be loaded." -#~ msgstr "Nie mona wczyta biblioteki Lua." - -#~ msgid "cannot save undo information" -#~ msgstr "nie mog zachowa informacji cofania" - -#~ msgid "" -#~ "E815: Sorry, this command is disabled, the MzScheme libraries could not " -#~ "be loaded." -#~ msgstr "" -#~ "E815: Przykro mi, ta komenda jest wyczona, biblioteka MzScheme nie moe " -#~ "by zaadowana." - -#~ msgid "invalid expression" -#~ msgstr "niepoprawne wyraenie" - -#~ msgid "expressions disabled at compile time" -#~ msgstr "wyraenia wyczone podczas kompilacji" - -#~ msgid "hidden option" -#~ msgstr "ukryta opcja" - -#~ msgid "unknown option" -#~ msgstr "nieznana opcja" - -#~ msgid "window index is out of range" -#~ msgstr "indeks okna poza zakresem" - -#~ msgid "couldn't open buffer" -#~ msgstr "nie mog otworzy bufora" - -#~ msgid "cannot delete line" -#~ msgstr "nie mog skasowa wiersza" - -#~ msgid "cannot replace line" -#~ msgstr "nie mog zamieni wiersza" - -#~ msgid "cannot insert line" -#~ msgstr "nie mog wprowadzi wiersza" - -#~ msgid "string cannot contain newlines" -#~ msgstr "cig nie moe zawiera znakw nowego wiersza" - -#~ msgid "error converting Scheme values to Vim" -#~ msgstr "bd przy konwersji wartoci Scheme do Vima" - -#~ msgid "Vim error: ~a" -#~ msgstr "Bd vima: ~a" - -#~ msgid "Vim error" -#~ msgstr "Bd Vima" - -#~ msgid "buffer is invalid" -#~ msgstr "bufor jest niewany" - -#~ msgid "window is invalid" -#~ msgstr "okno jest niewane" - -#~ msgid "linenr out of range" -#~ msgstr "numer wiersza poza zakresem" - -#~ msgid "not allowed in the Vim sandbox" -#~ msgstr "Niedozwolone w piaskownicy Vima" - -#~ msgid "E837: This Vim cannot execute :py3 after using :python" -#~ msgstr "E837: Python: nie mona uywa :py i :py3 w czasie jednej sesji" - -#~ msgid "" -#~ "E263: Sorry, this command is disabled, the Python library could not be " -#~ "loaded." -#~ msgstr "" -#~ "E263: Przykro mi, ta komenda jest wyczona, bo nie mona zaadowa " -#~ "biblioteki Pythona" - -#~ msgid "E836: This Vim cannot execute :python after using :py3" -#~ msgstr "E836: Python: nie mona uywa :py i :py3 w czasie jednej sesji" - -#~ msgid "E659: Cannot invoke Python recursively" -#~ msgstr "E659: Nie mona wywoa Pythona rekursywnie" - -#~ msgid "E265: $_ must be an instance of String" -#~ msgstr "E265: $_ musi by reprezentacj acucha" - -#~ msgid "" -#~ "E266: Sorry, this command is disabled, the Ruby library could not be " -#~ "loaded." -#~ msgstr "" -#~ "E266: Przykro mi, ta komenda jest wyczona, bo nie mona zaadowa " -#~ "biblioteki Ruby." - -#~ msgid "E267: unexpected return" -#~ msgstr "E267: nieoczekiwany return" - -#~ msgid "E268: unexpected next" -#~ msgstr "E268: nieoczekiwany next" - -#~ msgid "E269: unexpected break" -#~ msgstr "E269: nieoczekiwany break" - -#~ msgid "E270: unexpected redo" -#~ msgstr "E270: nieoczekiwane redo" - -#~ msgid "E271: retry outside of rescue clause" -#~ msgstr "E271: ponowna prba poza klauzul ratunku" - -#~ msgid "E272: unhandled exception" -#~ msgstr "E272: nieobsugiwany wyjtek" - -#~ msgid "E273: unknown longjmp status %d" -#~ msgstr "E273: Nieznany status longjmp %d" - -#~ msgid "Toggle implementation/definition" -#~ msgstr "Przecz midzy implementacj/okreleniem" - -#~ msgid "Show base class of" -#~ msgstr "Poka baz klasy" - -#~ msgid "Show overridden member function" -#~ msgstr "Poka przepisan funkcj czonow" - -#~ msgid "Retrieve from file" -#~ msgstr "Pobieraj z pliku" - -#~ msgid "Retrieve from project" -#~ msgstr "Pobieraj z projektu" - -#~ msgid "Retrieve from all projects" -#~ msgstr "Pobieraj z wszystkich projektw" - -#~ msgid "Retrieve" -#~ msgstr "Pobierz" - -#~ msgid "Show source of" -#~ msgstr "Poka rdo dla" - -#~ msgid "Find symbol" -#~ msgstr "Znajd symbol" - -#~ msgid "Browse class" -#~ msgstr "Przejrzyj klas" - -#~ msgid "Show class in hierarchy" -#~ msgstr "Poka klas w hierarchii" - -#~ msgid "Show class in restricted hierarchy" -#~ msgstr "Poka klas w ograniczonej hierarchii" - -#~ msgid "Xref refers to" -#~ msgstr "Xref odnosi si do" - -#~ msgid "Xref referred by" -#~ msgstr "Xref ma odniesienia od" - -#~ msgid "Xref has a" -#~ msgstr "Xref ma" - -#~ msgid "Xref used by" -#~ msgstr "Xref uyte przez" - -#~ msgid "Show docu of" -#~ msgstr "Poka dokumentacj dla" - -#~ msgid "Generate docu for" -#~ msgstr "Utwrz dokumentacj dla" - -#~ msgid "" -#~ "Cannot connect to SNiFF+. Check environment (sniffemacs must be found in " -#~ "$PATH).\n" -#~ msgstr "" -#~ "Nie mog podczy do SNiFF+. Sprawd rodowisko (sniffemacs musi by " -#~ "odnaleziony w $PATH).\n" - -#~ msgid "E274: Sniff: Error during read. Disconnected" -#~ msgstr "E274: Sniff: Bd podczas czytania. Rozczenie" - -#~ msgid "SNiFF+ is currently " -#~ msgstr "SNiFF+ jest obecnie " - -#~ msgid "not " -#~ msgstr "nie " - -#~ msgid "connected" -#~ msgstr "podczony" - -#~ msgid "E275: Unknown SNiFF+ request: %s" -#~ msgstr "E275: Nieznane zapytanie SNiFF+: %s" - -#~ msgid "E276: Error connecting to SNiFF+" -#~ msgstr "E276: Bd w trakcie podczania do SNiFF+" - -#~ msgid "E278: SNiFF+ not connected" -#~ msgstr "E278: SNiFF+ niepodczony" - -#~ msgid "E279: Not a SNiFF+ buffer" -#~ msgstr "E279: Nie jest buforem SNiFF+" - -#~ msgid "Sniff: Error during write. Disconnected" -#~ msgstr "Sniff: Bd w trakcie zapisu. Rozczony" - -#~ msgid "invalid buffer number" -#~ msgstr "niewaciwy numer bufora" - -#~ msgid "not implemented yet" -#~ msgstr "obecnie nie zaimplementowano" - -#~ msgid "cannot set line(s)" -#~ msgstr "nie mog ustawi wiersza(y)" - -#~ msgid "invalid mark name" -#~ msgstr "niepoprawna nazwa zakadki" - -#~ msgid "mark not set" -#~ msgstr "zakadka nie ustawiona" - -#~ msgid "row %d column %d" -#~ msgstr "wiersz %d kolumna %d" - -#~ msgid "cannot insert/append line" -#~ msgstr "nie mog wprowadzi/doczy wiersza" - -#~ msgid "line number out of range" -#~ msgstr "numer wiersza poza zakresem" - -#~ msgid "unknown flag: " -#~ msgstr "nieznana flaga: " - -#~ msgid "unknown vimOption" -#~ msgstr "nieznane vimOption" - -#~ msgid "keyboard interrupt" -#~ msgstr "przerwanie klawiatury" - -#~ msgid "vim error" -#~ msgstr "bd vima" - -#~ msgid "cannot create buffer/window command: object is being deleted" -#~ msgstr "nie mog stworzy bufora/okna komendy: obiekt jest kasowany" - -#~ msgid "" -#~ "cannot register callback command: buffer/window is already being deleted" -#~ msgstr "" -#~ "nie mog zarejestrowa wstecznego wywoania komendy: bufor/okno ju " -#~ "zostaa skasowana" - -#~ msgid "" -#~ "E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-" -#~ "dev@vim.org" -#~ msgstr "" -#~ "E280: TCL FATALNY BD: reflist zepsuta!? Prosz zoy raport o tym na " -#~ "vim-dev@vim.org" - -#~ msgid "cannot register callback command: buffer/window reference not found" -#~ msgstr "" -#~ "nie mog zarejestrowa wstecznego wywoania komendy: brak odniesienia do " -#~ "bufora/okna" - -#~ msgid "" -#~ "E571: Sorry, this command is disabled: the Tcl library could not be " -#~ "loaded." -#~ msgstr "" -#~ "E571: Przykro mi, ta komenda jest wyczona, bo nie mona zaadowa " -#~ "biblioteki Tcl." - -#~ msgid "E572: exit code %d" -#~ msgstr "E572: kod wyjcia %d" - -#~ msgid "cannot get line" -#~ msgstr "nie mog dosta wiersza" - -#~ msgid "Unable to register a command server name" -#~ msgstr "Nie mog zarejestrowa nazwy serwera komend" - -#~ msgid "E248: Failed to send command to the destination program" -#~ msgstr "E248: Wysanie komendy do programu docelowego nie powiodo si" - -#~ msgid "E573: Invalid server id used: %s" -#~ msgstr "E573: Uyto niewaciwego id serwera: %s" - -#~ msgid "E251: VIM instance registry property is badly formed. Deleted!" -#~ msgstr "" -#~ "E251: wcielenia instancji rejestru Vima jest le sformowane. Skasowano!" - -#~ msgid "netbeans is not supported with this GUI\n" -#~ msgstr "netbeans nie s obsugiwane przez to GUI\n" - -#~ msgid "This Vim was not compiled with the diff feature." -#~ msgstr "Ta wersja Vima nie bya skompilowanego z opcj rnic (diff)." - -#~ msgid "'-nb' cannot be used: not enabled at compile time\n" -#~ msgstr "'-nb' - nie moe by uyte: nie wczone przy kompilacji\n" - -#~ msgid "Vim: Error: Failure to start gvim from NetBeans\n" -#~ msgstr "Vim: Bd: Nie mona uruchomi gvim z NetBeans\n" - -#~ msgid "" -#~ "\n" -#~ "Where case is ignored prepend / to make flag upper case" -#~ msgstr "" -#~ "\n" -#~ "gdzie wielko znakw jest ignorowana dodaj na pocztku / by flaga bya " -#~ "wielk liter" - -#~ msgid "-register\t\tRegister this gvim for OLE" -#~ msgstr "-register\t\tZarejestruj tego gvima w OLE" - -#~ msgid "-unregister\t\tUnregister gvim for OLE" -#~ msgstr "-unregister\t\tWyrejestruj gvima z OLE" - -#~ msgid "-g\t\t\tRun using GUI (like \"gvim\")" -#~ msgstr "-g\t\t\tStartuj w GUI (tak jak \"gvim\")" - -#~ msgid "-f or --nofork\tForeground: Don't fork when starting GUI" -#~ msgstr "-f lub --nofork\tPierwszy plan: Nie wydzielaj przy odpalaniu GUI" - -#~ msgid "-f\t\t\tDon't use newcli to open window" -#~ msgstr "-f\t\t\tNie stosuj newcli do otwierania okien" - -#~ msgid "-dev <device>\t\tUse <device> for I/O" -#~ msgstr "-dev <device>\t\tUywaj <device> do I/O" - -#~ msgid "-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc" -#~ msgstr "-U <gvimrc>\t\tUyj <gvimrc> zamiast jakiegokolwiek .gvimrc" - -#~ msgid "-x\t\t\tEdit encrypted files" -#~ msgstr "-x\t\t\tEdytuj zakodowane pliki" - -#~ msgid "-display <display>\tConnect vim to this particular X-server" -#~ msgstr "-display <display>\tPodcz vima to danego X-serwera" - -#~ msgid "-X\t\t\tDo not connect to X server" -#~ msgstr "-X\t\t\tNie cz z serwerem X" - -#~ msgid "--remote <files>\tEdit <files> in a Vim server if possible" -#~ msgstr "--remote <pliki>\tEdytuj pliki w serwerze Vima jeli moliwe" - -#~ msgid "--remote-silent <files> Same, don't complain if there is no server" -#~ msgstr "--remote-silent <pliki> To samo, nie narzekaj jeli nie ma serwera" - -#~ msgid "" -#~ "--remote-wait <files> As --remote but wait for files to have been edited" -#~ msgstr "" -#~ "--remote-wait <pliki>\tTak jak --remote, lecz czekaj na pliki przed edycj" - -#~ msgid "" -#~ "--remote-wait-silent <files> Same, don't complain if there is no server" -#~ msgstr "" -#~ "--remote-wait-silent <pliki> To samo, nie narzekaj jeli nie ma serwera" - -#~ msgid "" -#~ "--remote-tab[-wait][-silent] <files> As --remote but use tab page per " -#~ "file" -#~ msgstr "" -#~ "--remote-tab[-wait][-silent] <pliki> tak jak --remote ale uywa jednej " -#~ "karty na plik" - -#~ msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit" -#~ msgstr "" -#~ "--remote-send <klawisze>\tWylij <klawisze> do serwera Vima i zakocz" - -#~ msgid "" -#~ "--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result" -#~ msgstr "--remote-expr <wyr>\tWykonaj <wyraenie> w serwerze i wypisz wynik" - -#~ msgid "--serverlist\t\tList available Vim server names and exit" -#~ msgstr "--serverlist\t\tWymie nazwy dostpnych serwerw Vima i zakocz" - -#~ msgid "--servername <name>\tSend to/become the Vim server <name>" -#~ msgstr "--servername <nazwa>\t\tOdsyaj do/sta si serwerem Vim <nazwa>" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Motif version):\n" -#~ msgstr "" -#~ "\n" -#~ "Argumenty rozpoznawane przez gvim (wersja Motif):\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (neXtaw version):\n" -#~ msgstr "" -#~ "\n" -#~ "Argumenty rozpoznawane przez gvim (wersja neXtaw):\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Athena version):\n" -#~ msgstr "" -#~ "\n" -#~ "Argumenty rozpoznawane przez gvim (wersja Athena):\n" - -#~ msgid "-display <display>\tRun vim on <display>" -#~ msgstr "-display <display>\tZaaduj vim na <display>" - -#~ msgid "-iconic\t\tStart vim iconified" -#~ msgstr "-iconic\t\tZacznij Vim jako ikon" - -#~ msgid "-background <color>\tUse <color> for the background (also: -bg)" -#~ msgstr "-background <kolor>\tUywaj <kolor> dla ta (rwnie: -bg)" - -#~ msgid "-foreground <color>\tUse <color> for normal text (also: -fg)" -#~ msgstr "" -#~ "-foreground <kolor>\tUywaj <kolor> dla normalnego tekstu (rwnie: -fg)" - -#~ msgid "-font <font>\t\tUse <font> for normal text (also: -fn)" -#~ msgstr "-font <font>\t\tUywaj <font> dla normalnego tekstu (rwnie: -fn)" - -#~ msgid "-boldfont <font>\tUse <font> for bold text" -#~ msgstr "-boldfont <font>\tUywaj <font> dla wytuszczonego tekstu" - -#~ msgid "-italicfont <font>\tUse <font> for italic text" -#~ msgstr "-italicfont <font>\tUywaj <font> dla pochyego" - -#~ msgid "-geometry <geom>\tUse <geom> for initial geometry (also: -geom)" -#~ msgstr "" -#~ "-geometry <geom>\tUywaj <geom> dla pocztkowych rozmiarw (rwnie: -" -#~ "geom)" - -#~ msgid "-borderwidth <width>\tUse a border width of <width> (also: -bw)" -#~ msgstr "-borderwidth <szer>\tUyj ramki o gruboci <szer> (rwnie: -bw)" - -#~ msgid "" -#~ "-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)" -#~ msgstr "" -#~ "-scrollbarwidth <szer> Uywaj przewijacza o szerokoci <szer> (rwnie: -" -#~ "sw)" - -#~ msgid "-menuheight <height>\tUse a menu bar height of <height> (also: -mh)" -#~ msgstr "" -#~ "-menuheight <height>\tStosuj belk menu o wysokoci <height> (rwnie: -" -#~ "mh)" - -#~ msgid "-reverse\t\tUse reverse video (also: -rv)" -#~ msgstr "-reverse\t\tStosuj negatyw kolorw (rwnie: -rv)" - -#~ msgid "+reverse\t\tDon't use reverse video (also: +rv)" -#~ msgstr "+reverse\t\tNie stosuj negatywu kolorw (rwnie: +rv)" - -#~ msgid "-xrm <resource>\tSet the specified resource" -#~ msgstr "-xrm <resource>\tUstaw okrelony zasb" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (GTK+ version):\n" -#~ msgstr "" -#~ "\n" -#~ "Argumenty rozpoznawane przez gvim (wersja GTK+):\n" - -#~ msgid "-display <display>\tRun vim on <display> (also: --display)" -#~ msgstr "-display <display>\tZastartuj vim na <display> (rwnie: --display)" - -#~ msgid "--role <role>\tSet a unique role to identify the main window" -#~ msgstr "--role <role>\tUstaw unikatow rol do identyfikacji gwnego okna" - -#~ msgid "--socketid <xid>\tOpen Vim inside another GTK widget" -#~ msgstr "--socketid <xid>\tOtwrz Vim wewntrz innego widgetu GTK" - -#~ msgid "--echo-wid\t\tMake gvim echo the Window ID on stdout" -#~ msgstr "-echo-wid\t\tGvim wypisze Window ID na wyjcie standardowe" - -#~ msgid "-P <parent title>\tOpen Vim inside parent application" -#~ msgstr "-P <tytu rodzica>\tOtwrz Vima wewntrz rodzicielskiej aplikacji" - -#~ msgid "--windowid <HWND>\tOpen Vim inside another win32 widget" -#~ msgstr "--windowid <HWND>\tOtwrz Vima wewntrz innego elementu win32" - -#~ msgid "No display" -#~ msgstr "Brak display" - -#~ msgid ": Send failed.\n" -#~ msgstr ": Wysanie nie powiodo si.\n" - -#~ msgid ": Send failed. Trying to execute locally\n" -#~ msgstr ": Wysanie nie powiodo si. Prbuj wykona na miejscu\n" - -#~ msgid "%d of %d edited" -#~ msgstr "otworzono %d z %d" - -#~ msgid "No display: Send expression failed.\n" -#~ msgstr "Brak terminala: Wysanie wyraenia nie powiodo si.\n" - -#~ msgid ": Send expression failed.\n" -#~ msgstr ": Wysanie wyraenia nie powiodo si.\n" - -#~ msgid "E543: Not a valid codepage" -#~ msgstr "E543: To nie jest wana strona kodowa" - -#~ msgid "E284: Cannot set IC values" -#~ msgstr "E284: Nie mog nastawi wartoci IC" - -#~ msgid "E285: Failed to create input context" -#~ msgstr "E285: Nie mogem stworzy kontekstu wprowadze" - -#~ msgid "E286: Failed to open input method" -#~ msgstr "E286: Nie mogem otworzy sposobu wprowadze" - -#~ msgid "E287: Warning: Could not set destroy callback to IM" -#~ msgstr "E287: OSTRZEENIE: Nie mogem zlikwidowa wywoania dla IM" - -#~ msgid "E288: input method doesn't support any style" -#~ msgstr "E288: metoda wprowadze nie wspomaga adnego stylu" - -#~ msgid "E289: input method doesn't support my preedit type" -#~ msgstr "E289: metoda wprowadze nie wspomaga mojego typu preedit" - -#~ msgid "E843: Error while updating swap file crypt" -#~ msgstr "E843: Bd w czasie uaktualniania szyfrowania pliku wymiany" - -#~ msgid "" -#~ "E833: %s is encrypted and this version of Vim does not support encryption" -#~ msgstr "E833: %s jest zaszyfrowany a ta wersja Vima nie wspiera szyfrowania" - -#~ msgid "Swap file is encrypted: \"%s\"" -#~ msgstr "Zaszyfrowany plik wymiany: \"%s\"" - -#~ msgid "" -#~ "\n" -#~ "If you entered a new crypt key but did not write the text file," -#~ msgstr "" -#~ "\n" -#~ "Jeli podano nowy klucz szyfrujcy, ale nie zapisano pliku tekstowego," - -#~ msgid "" -#~ "\n" -#~ "enter the new crypt key." -#~ msgstr "" -#~ "\n" -#~ "wprowad nowy klucz szyfrujcy." - -#~ msgid "" -#~ "\n" -#~ "If you wrote the text file after changing the crypt key press enter" -#~ msgstr "" -#~ "\n" -#~ "Jeli zapisano plik tekstowy po zmianie klucza szyfrujcego wcinij Enter" - -#~ msgid "" -#~ "\n" -#~ "to use the same key for text file and swap file" -#~ msgstr "" -#~ "\n" -#~ "aby uy tego samego klucza dla pliku tekstowego i wymiany" - -#~ msgid "Using crypt key from swap file for the text file.\n" -#~ msgstr "Uywam klucza szyfrujcego z pliku wymiany do pliku tekstowego.\n" - -#~ msgid "" -#~ "\n" -#~ " [not usable with this version of Vim]" -#~ msgstr "" -#~ "\n" -#~ " [nie nadaje si dla tej wersji Vima]" - -#~ msgid "Tear off this menu" -#~ msgstr "Oderwij to menu" - -#~ msgid "Select Directory dialog" -#~ msgstr "Dialog wyboru katalogu" - -#~ msgid "Save File dialog" -#~ msgstr "Dialog zapisywania pliku" - -#~ msgid "Open File dialog" -#~ msgstr "Dialog otwierania pliku" - -#~ msgid "E338: Sorry, no file browser in console mode" -#~ msgstr "E338: Przykro mi, nie ma przegldarki plikw w trybie konsoli" - -#~ msgid "Vim: preserving files...\n" -#~ msgstr "Vim: zachowuj plik...\n" - -#~ msgid "Vim: Finished.\n" -#~ msgstr "Vim: Zakoczono.\n" - -#~ msgid "ERROR: " -#~ msgstr "BD: " - -#~ msgid "" -#~ "\n" -#~ "[bytes] total alloc-freed %<PRIu64>-%<PRIu64>, in use %<PRIu64>, peak use " -#~ "%<PRIu64>\n" -#~ msgstr "" -#~ "\n" -#~ "[bajtw] totalne alokacje-zwolnienia %<PRIu64>-%<PRIu64>, w uytku " -#~ "%<PRIu64>, maksymalne uycie %<PRIu64>\n" - -#~ msgid "" -#~ "[calls] total re/malloc()'s %<PRIu64>, total free()'s %<PRIu64>\n" -#~ "\n" -#~ msgstr "" -#~ "[wywoania] wszystkich re/malloc()-w %<PRIu64>, wszystkich free()-w " -#~ "%<PRIu64>\n" -#~ "\n" - -#~ msgid "E340: Line is becoming too long" -#~ msgstr "E340: Wiersz staje si zbyt dugi" - -#~ msgid "E341: Internal error: lalloc(%<PRId64>, )" -#~ msgstr "E341: Wewntrzny bd: lalloc(%<PRId64>, )" - -#~ msgid "E547: Illegal mouseshape" -#~ msgstr "E547: Niedozwolony obrys myszki" - -#~ msgid "Enter encryption key: " -#~ msgstr "Wprowad klucz do odkodowania: " - -#~ msgid "Enter same key again: " -#~ msgstr "Wprowad ponownie ten sam klucz: " - -#~ msgid "Keys don't match!" -#~ msgstr "Klucze nie pasuj do siebie!" - -#~ msgid "Cannot connect to Netbeans #2" -#~ msgstr "Nie mona poczy z Netbeans #2" - -#~ msgid "Cannot connect to Netbeans" -#~ msgstr "Nie mona poczy z Netbeans" - -#~ msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\"" -#~ msgstr "E668: Bdny tryb dostpu pliku info poczenia NetBeans: \"%s\"" - -#~ msgid "read from Netbeans socket" -#~ msgstr "odczyt z gniazda Netbeans" - -#~ msgid "E658: NetBeans connection lost for buffer %<PRId64>" -#~ msgstr "E658: Bufor %<PRId64> utraci poczenie z NetBeans" - -#~ msgid "E838: netbeans is not supported with this GUI" -#~ msgstr "E838: netbeans nie s obsugiwane przez to GUI" - -#~ msgid "E511: netbeans already connected" -#~ msgstr "E511: netbeans ju podczone" - -#~ msgid "E505: %s is read-only (add ! to override)" -#~ msgstr "E505: %s jest tylko do odczytu (dodaj ! aby wymusi)" - -#~ msgid "E775: Eval feature not available" -#~ msgstr "E775: Funkcjonalno eval nie jest dostpna" - -#~ msgid "freeing %<PRId64> lines" -#~ msgstr "zwalniam %<PRId64> wierszy" - -#~ msgid "E530: Cannot change term in GUI" -#~ msgstr "E530: Nie mog zmieni term w GUI" - -#~ msgid "E531: Use \":gui\" to start the GUI" -#~ msgstr "E531: Uyj \":gui\" do odpalenia GUI" - -#~ msgid "E617: Cannot be changed in the GTK+ 2 GUI" -#~ msgstr "E617: Nie mog zmieni w GTK+2 GUI" - -#~ msgid "E596: Invalid font(s)" -#~ msgstr "E596: Niedozwolona czcionka/ki" - -#~ msgid "E597: can't select fontset" -#~ msgstr "E597: nie mog wybra zestawu czcionek" - -#~ msgid "E598: Invalid fontset" -#~ msgstr "E598: Niedozwolony zestaw czcionek" - -#~ msgid "E533: can't select wide font" -#~ msgstr "E533: nie mog wybra szerokiej czcionki" - -#~ msgid "E534: Invalid wide font" -#~ msgstr "E534: Niedozwolona szeroka czcionka" - -#~ msgid "E538: No mouse support" -#~ msgstr "E538: Brak wspomagania myszki" - -#~ msgid "cannot open " -#~ msgstr "nie mog otworzy " - -#~ msgid "VIM: Can't open window!\n" -#~ msgstr "VIM: Nie mog otworzy okna!\n" - -#~ msgid "Need Amigados version 2.04 or later\n" -#~ msgstr "Potrzebuj Amigados w wersji 2.04 lub pniejsz\n" - -#~ msgid "Need %s version %<PRId64>\n" -#~ msgstr "Potrzebuj %s w wersji %<PRId64>\n" - -#~ msgid "Cannot open NIL:\n" -#~ msgstr "Nie mog otworzy NIL:\n" - -#~ msgid "Cannot create " -#~ msgstr "Nie mog stworzy " - -#~ msgid "Vim exiting with %d\n" -#~ msgstr "Vim koczy prac z %d\n" - -#~ msgid "cannot change console mode ?!\n" -#~ msgstr "nie mog zmieni trybu konsoli ?!\n" - -#~ msgid "mch_get_shellsize: not a console??\n" -#~ msgstr "mch_get_shellsize: nie jest konsol??\n" - -#~ msgid "E360: Cannot execute shell with -f option" -#~ msgstr "E360: Nie mog wykona powoki z opcj -f" - -#~ msgid "Cannot execute " -#~ msgstr "Nie mog wykona " - -#~ msgid "shell " -#~ msgstr "powoka " - -#~ msgid " returned\n" -#~ msgstr " zwrci\n" - -#~ msgid "ANCHOR_BUF_SIZE too small." -#~ msgstr "ANCHOR_BUF_SIZE zbyt niskie." - -#~ msgid "I/O ERROR" -#~ msgstr "BD I/O" - -#~ msgid "Message" -#~ msgstr "Wiadomo" - -#~ msgid "'columns' is not 80, cannot execute external commands" -#~ msgstr "'columns' nie wynosi 80, nie mog wykona zewntrznych komend" - -#~ msgid "E237: Printer selection failed" -#~ msgstr "E237: Wybr drukarki nie powid si" - -#~ msgid "to %s on %s" -#~ msgstr "do %s z %s" - -#~ msgid "E613: Unknown printer font: %s" -#~ msgstr "E613: Nieznana czcionka drukarki: %s" - -#~ msgid "E238: Print error: %s" -#~ msgstr "E238: Bd drukarki: %s" - -#~ msgid "Printing '%s'" -#~ msgstr "Wydrukowano '%s'" - -#~ msgid "E244: Illegal charset name \"%s\" in font name \"%s\"" -#~ msgstr "" -#~ "E244: Niedozwolona nazwa zestawu znakw \"%s\" w nazwie czcionki \"%s\"" - -#~ msgid "E245: Illegal char '%c' in font name \"%s\"" -#~ msgstr "E245: Niedozwolony znak '%c' w nazwie czcionki \"%s\"" - -#~ msgid "Vim: Double signal, exiting\n" -#~ msgstr "Vim: Podwjny sygna, wychodz\n" - -#~ msgid "Vim: Caught deadly signal %s\n" -#~ msgstr "Vim: Zaapa miertelny sygna %s\n" - -#~ msgid "Vim: Caught deadly signal\n" -#~ msgstr "Vim: Zaapa miertelny sygna\n" - -#~ msgid "Opening the X display took %<PRId64> msec" -#~ msgstr "Otwieranie ekranu X trwao %<PRId64> msec" - -#~ msgid "" -#~ "\n" -#~ "Vim: Got X error\n" -#~ msgstr "" -#~ "\n" -#~ "Vim: Dosta bd X\n" - -#~ msgid "Testing the X display failed" -#~ msgstr "Test ekranu X nie powid si" - -#~ msgid "Opening the X display timed out" -#~ msgstr "Prba otwarcia ekranu X trwaa zbyt dugo" - -#~ msgid "" -#~ "\n" -#~ "Cannot execute shell sh\n" -#~ msgstr "" -#~ "\n" -#~ "Nie mog wykona powoki sh\n" - -#~ msgid "" -#~ "\n" -#~ "Cannot create pipes\n" -#~ msgstr "" -#~ "\n" -#~ "Nie mog stworzy potokw\n" - -#~ msgid "" -#~ "\n" -#~ "Cannot fork\n" -#~ msgstr "" -#~ "\n" -#~ "Nie mog rozdzieli si\n" - -#~ msgid "" -#~ "\n" -#~ "Command terminated\n" -#~ msgstr "" -#~ "\n" -#~ "Komenda zakoczona\n" - -#~ msgid "XSMP lost ICE connection" -#~ msgstr "XSMP straci poczenie ICE" - -#~ msgid "Opening the X display failed" -#~ msgstr "Otwarcie ekranu X nie powiodo si" - -#~ msgid "XSMP handling save-yourself request" -#~ msgstr "XSMP obsuguje danie samozapisu" - -#~ msgid "XSMP opening connection" -#~ msgstr "XSMP otwiera poczenie" - -#~ msgid "XSMP ICE connection watch failed" -#~ msgstr "Obserwacja poczenia XSMP ICE nie powioda si" - -#~ msgid "XSMP SmcOpenConnection failed: %s" -#~ msgstr "XSMP SmcOpenConnection nie powiodo si: %s" - -#~ msgid "At line" -#~ msgstr "W wierszu" - -#~ msgid "Could not load vim32.dll!" -#~ msgstr "Nie mog zaadowa vim32.dll!" - -#~ msgid "VIM Error" -#~ msgstr "Bd VIM" - -#~ msgid "Could not fix up function pointers to the DLL!" -#~ msgstr "Nie zdoaem poprawi wskanikw funkcji w DLL!" - -#~ msgid "shell returned %d" -#~ msgstr "powoka zwrcia %d" - -#~ msgid "Vim: Caught %s event\n" -#~ msgstr "Vim: Zaapa wydarzenie %s\n" - -#~ msgid "close" -#~ msgstr "zamknij" - -#~ msgid "logoff" -#~ msgstr "wyloguj" - -#~ msgid "shutdown" -#~ msgstr "zakocz" - -#~ msgid "E371: Command not found" -#~ msgstr "E371: Nie znaleziono komendy" - -#~ msgid "" -#~ "VIMRUN.EXE not found in your $PATH.\n" -#~ "External commands will not pause after completion.\n" -#~ "See :help win32-vimrun for more information." -#~ msgstr "" -#~ "VIMRUN.EXE nie znaleziono w twoim $PATH.\n" -#~ "Zewntrzne komendy nie bd wstrzymane po wykonaniu.\n" -#~ "Zobacz :help wim32-vimrun aby otrzyma wicej informacji." - -#~ msgid "Vim Warning" -#~ msgstr "Vim Ostrzeenie" - -#~ msgid "Error file" -#~ msgstr "Plik bdu" - -#~ msgid "E868: Error building NFA with equivalence class!" -#~ msgstr "E868: Bd przy budowwaniu NFA z klas ekwiwalencji" - -#~ msgid "E878: (NFA) Could not allocate memory for branch traversal!" -#~ msgstr "" -#~ "E878: (NFA) Nie mona przydzieli pamici do przejcia przez gazie!" - -#~ msgid "Warning: Cannot find word list \"%s_%s.spl\" or \"%s_ascii.spl\"" -#~ msgstr "" -#~ "Ostrzeenie: Nie mog znale listy sw \"%s_%s.spl\" lub \"%s_ascii.spl" -#~ "\"" - -#~ msgid "Conversion in %s not supported" -#~ msgstr "Konwersja w %s nie jest wspierana" - -#~ msgid "E845: Insufficient memory, word list will be incomplete" -#~ msgstr "" -#~ "E845: Nie wystarczajca ilo pamici, lista sw bdzie niekompletna" - -#~ msgid "E430: Tag file path truncated for %s\n" -#~ msgstr "E430: Trop szukania pliku znacznikw obcity dla %s\n" - -#~ msgid "new shell started\n" -#~ msgstr "uruchomiono now powok\n" - -#~ msgid "Used CUT_BUFFER0 instead of empty selection" -#~ msgstr "Uywam CUT_BUFFER0 zamiast pustego wyboru" - -#~ msgid "No undo possible; continue anyway" -#~ msgstr "Cofnicie niemoliwe; mimo to kontynuuj" - -#~ msgid "E832: Non-encrypted file has encrypted undo file: %s" -#~ msgstr "E832: Nie zaszyfrowany plik ma zaszyfrowany plik undo: %s" - -#~ msgid "E826: Undo file decryption failed: %s" -#~ msgstr "E826: Nie powiodo si odszyfrowywanie pliku undo: %s" - -#~ msgid "E827: Undo file is encrypted: %s" -#~ msgstr "E827: Plik undo jest zaszyfrowany: %s" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16/32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "16/32-bit wersja GUI dla MS-Windows" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 64-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "64 bitowa wersja GUI dla MS-Windows" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "32 bitowa wersja GUI dla MS-Windows" - -#~ msgid " in Win32s mode" -#~ msgstr " w trybie Win32s" - -#~ msgid " with OLE support" -#~ msgstr " ze wspomaganiem OLE" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 64-bit console version" -#~ msgstr "" -#~ "\n" -#~ "32 bitowa wersja na konsol dla MS-Windows" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit console version" -#~ msgstr "" -#~ "\n" -#~ "32 bitowa wersja na konsol dla MS-Windows" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16-bit version" -#~ msgstr "" -#~ "\n" -#~ "16 bitowa wersja dla MS-Windows" - -#~ msgid "" -#~ "\n" -#~ "32-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ "32 bitowa wersja dla MS-DOS" - -#~ msgid "" -#~ "\n" -#~ "16-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ "16 bitowa wersja dla MS-DOS" - -#~ msgid "" -#~ "\n" -#~ "MacOS X (unix) version" -#~ msgstr "" -#~ "\n" -#~ "wersja dla MacOS X (unix)" - -#~ msgid "" -#~ "\n" -#~ "MacOS X version" -#~ msgstr "" -#~ "\n" -#~ "wersja dla MacOS X" - -#~ msgid "" -#~ "\n" -#~ "MacOS version" -#~ msgstr "" -#~ "\n" -#~ "wersja dla MacOS" - -#~ msgid "" -#~ "\n" -#~ "OpenVMS version" -#~ msgstr "" -#~ "\n" -#~ "wersja dla OpenVMS" - -#~ msgid "" -#~ "\n" -#~ "Big version " -#~ msgstr "" -#~ "\n" -#~ "Dua wersja " - -#~ msgid "" -#~ "\n" -#~ "Normal version " -#~ msgstr "" -#~ "\n" -#~ "Normalna wersja " - -#~ msgid "" -#~ "\n" -#~ "Small version " -#~ msgstr "" -#~ "\n" -#~ "Maa wersja " - -#~ msgid "" -#~ "\n" -#~ "Tiny version " -#~ msgstr "" -#~ "\n" -#~ "Malutka wersja " - -#~ msgid "with GTK2-GNOME GUI." -#~ msgstr "z GTK2-GNOME GUI." - -#~ msgid "with GTK2 GUI." -#~ msgstr "z GTK2 GUI." - -#~ msgid "with X11-Motif GUI." -#~ msgstr "z X11-Motif GUI." - -#~ msgid "with X11-neXtaw GUI." -#~ msgstr "z X11-neXtaw GUI." - -#~ msgid "with X11-Athena GUI." -#~ msgstr "z X11-Athena GUI." - -#~ msgid "with Photon GUI." -#~ msgstr "z Photon GUI." - -#~ msgid "with GUI." -#~ msgstr "z GUI." - -#~ msgid "with Carbon GUI." -#~ msgstr "z Carbon GUI." - -#~ msgid "with Cocoa GUI." -#~ msgstr "z Cocoa GUI." - -#~ msgid "with (classic) GUI." -#~ msgstr "z (klasycznym) GUI." - -#~ msgid " system gvimrc file: \"" -#~ msgstr " gvimrc systemu: \"" - -#~ msgid " user gvimrc file: \"" -#~ msgstr " gvimrc uytkownika: \"" - -#~ msgid "2nd user gvimrc file: \"" -#~ msgstr "2-gi plik gvimrc uytkownika: \"" - -#~ msgid "3rd user gvimrc file: \"" -#~ msgstr "3-ci plik gvimrc uytkownika: \"" - -#~ msgid " system menu file: \"" -#~ msgstr " systemowy plik menu: \"" - -#~ msgid "Compiler: " -#~ msgstr "Kompilator: " - -#~ msgid "menu Help->Orphans for information " -#~ msgstr "menu Pomoc->Sieroty dla informacji to tym " - -#~ msgid "Running modeless, typed text is inserted" -#~ msgstr "Uruchomiony bez trybw, wpisany tekst jest wprowadzany" - -#~ msgid "menu Edit->Global Settings->Toggle Insert Mode " -#~ msgstr "menu Edytuj->Ustawienia globalne->Tryb wstawiania" - -#~ msgid " for two modes " -#~ msgstr " dla dwch trybw " - -#~ msgid "menu Edit->Global Settings->Toggle Vi Compatible" -#~ msgstr "menu Edytuj->Ustawienia globalne->Kompatybilno z Vi" - -#~ msgid " for Vim defaults " -#~ msgstr " dla domylnych ustawie Vima " - -#~ msgid "WARNING: Windows 95/98/ME detected" -#~ msgstr "OSTRZEENIE: wykryto Windows 95/98/ME" - -#~ msgid "type :help windows95<Enter> for info on this" -#~ msgstr "wprowad :help windows95<Enter> dla informacji to tym " - -#~ msgid "E370: Could not load library %s" -#~ msgstr "E370: Nie mogem zaadowa biblioteki %s" - -#~ msgid "" -#~ "Sorry, this command is disabled: the Perl library could not be loaded." -#~ msgstr "" -#~ "Przykro mi, ta komenda jest wyczona: nie mogem zaadowa biblioteki " -#~ "Perla." - -#~ msgid "E299: Perl evaluation forbidden in sandbox without the Safe module" -#~ msgstr "E299: wyliczenie Perla zabronione w piaskownicy bez moduu Safe" - -#~ msgid "Edit with &multiple Vims" -#~ msgstr "Edytuj w &wielu Vimach" - -#~ msgid "Edit with single &Vim" -#~ msgstr "Edytuj w pojedynczym &Vimie" - -#~ msgid "Diff with Vim" -#~ msgstr "Diff z Vimem" - -#~ msgid "Edit with &Vim" -#~ msgstr "Edytuj w &Vimie" - -#~ msgid "Edit with existing Vim - " -#~ msgstr "Edytuj z istniejcym Vimem - " - -#~ msgid "Edits the selected file(s) with Vim" -#~ msgstr "Edytuj wybrane pliki w Vimie" - -#~ msgid "Error creating process: Check if gvim is in your path!" -#~ msgstr "Bd tworzenia procesu: Sprawd czy gvim jest w twojej ciece!" - -#~ msgid "gvimext.dll error" -#~ msgstr "bd gvimext.dll" - -#~ msgid "Path length too long!" -#~ msgstr "Za duga cieka!" - -#~ msgid "E234: Unknown fontset: %s" -#~ msgstr "E234: Nieznany zestaw czcionek: %s" - -#~ msgid "E235: Unknown font: %s" -#~ msgstr "E235: Nieznana czcionka: %s" - -#~ msgid "E236: Font \"%s\" is not fixed-width" -#~ msgstr "E236: Czcionka \"%s\" nie ma staej szerokoci znakw" - -#~ msgid "E448: Could not load library function %s" -#~ msgstr "E448: Nie mona zaadowa funkcji biblioteki %s" - -#~ msgid "E26: Hebrew cannot be used: Not enabled at compile time\n" -#~ msgstr "" -#~ "E26: Hebrajski nie moe by uyty: Nie wczono podczas kompilacji\n" - -#~ msgid "E27: Farsi cannot be used: Not enabled at compile time\n" -#~ msgstr "E27: Farsi nie moe by uyty: Nie wczono podczas kompilacji\n" - -#~ msgid "E800: Arabic cannot be used: Not enabled at compile time\n" -#~ msgstr "E800: Arabski nie moe by uyty: Nie wczono podczas kompilacji\n" - -#~ msgid "E247: no registered server named \"%s\"" -#~ msgstr "E247: brak zarejestrowanego serwera o nazwie \"%s\"" - -#~ msgid "E233: cannot open display" -#~ msgstr "E233: nie mog otworzy ekranu" - -#~ msgid "E449: Invalid expression received" -#~ msgstr "E449: Odebraem niewaciwe wyraenie" - -#~ msgid "E463: Region is guarded, cannot modify" -#~ msgstr "E463: Region jest chroniony, nie mog zmieni" - -#~ msgid "E744: NetBeans does not allow changes in read-only files" -#~ msgstr "E744: NetBeans nie zezwala na zmiany w plikach tylko do odczytu" - -#~ msgid "Need encryption key for \"%s\"" -#~ msgstr "Potrzebuj klucza szyfrowania dla \"%s\"" - -#~ msgid "empty keys are not allowed" -#~ msgstr "puste klucze nie s dozwolone" - -#~ msgid "dictionary is locked" -#~ msgstr "sownik jest zablokowany" - -#~ msgid "list is locked" -#~ msgstr "lista jest zablokowana" - -#~ msgid "failed to add key '%s' to dictionary" -#~ msgstr "nie powiodo si dodanie klucza '%s' do sownika" - -#~ msgid "index must be int or slice, not %s" -#~ msgstr "indeks musi by liczb lub wycinkiem, nie %s" - -#~ msgid "expected str() or unicode() instance, but got %s" -#~ msgstr "czekaem na str() lub unicode(), a dostaem %s" - -#~ msgid "expected bytes() or str() instance, but got %s" -#~ msgstr "czekaem na bytes() lub str(), a dostaem %s" - -#~ msgid "" -#~ "expected int(), long() or something supporting coercing to long(), but " -#~ "got %s" -#~ msgstr "" -#~ "czekaem na int(), long() lub co co mona zmieni na long(), ale " -#~ "dostaem %s" - -#~ msgid "expected int() or something supporting coercing to int(), but got %s" -#~ msgstr "" -#~ "czekaem na int() lub co co mona zmieni na int(), ale dostaem %s" - -#~ msgid "value is too large to fit into C int type" -#~ msgstr "warto zbyt dua by zmiecia si w typie int C" - -#~ msgid "value is too small to fit into C int type" -#~ msgstr "warto jest zbyt maa by zmiecia si w typie int C" - -#~ msgid "number must be greater then zero" -#~ msgstr "liczba musi by wiksza ni zero" - -#~ msgid "number must be greater or equal to zero" -#~ msgstr "liczba musi by wiksza lub mniejsza ni zero" - -#~ msgid "can't delete OutputObject attributes" -#~ msgstr "nie mog skasowa atrybutw OutputObject" - -#~ msgid "invalid attribute: %s" -#~ msgstr "niepoprawny atrybut: %s" - -#~ msgid "E264: Python: Error initialising I/O objects" -#~ msgstr "E264: Python: Bd w uruchomieniu obiektw I/O" - -#~ msgid "failed to change directory" -#~ msgstr "nie powioda si zmiana katalogu" - -#~ msgid "expected 3-tuple as imp.find_module() result, but got %s" -#~ msgstr "czekaem na 3-krotk jako wynik imp.find_module(), a dostaem %s" - -#~ msgid "" -#~ "expected 3-tuple as imp.find_module() result, but got tuple of size %d" -#~ msgstr "" -#~ "czekaem na 3-krotk jako wynik imp.find_module(), a dostaem krotk o " -#~ "wielkoci %d" - -#~ msgid "internal error: imp.find_module returned tuple with NULL" -#~ msgstr "wewntrzny bd: imp.find_module zwrci krotk z NULL" - -#~ msgid "cannot delete vim.Dictionary attributes" -#~ msgstr "nie mog usun atrybutw vim.Dictionary" - -#~ msgid "cannot modify fixed dictionary" -#~ msgstr "nie mog zmieni zablokowanego sownika" - -#~ msgid "cannot set attribute %s" -#~ msgstr "nie mog ustawi atrybutu %s" - -#~ msgid "hashtab changed during iteration" -#~ msgstr "hashtab zmieni si w czasie iteracji" - -#~ msgid "expected sequence element of size 2, but got sequence of size %d" -#~ msgstr "" -#~ "czekaem na element sekwencyjny od dugoci 2, a dostaem sekwencj o " -#~ "dugoci %d" - -#~ msgid "list constructor does not accept keyword arguments" -#~ msgstr "konstruktor listy nie akceptuje sw kluczowych jako argumentw" - -#~ msgid "list index out of range" -#~ msgstr "indeks listy poza zakresem" - -#~ msgid "internal error: failed to get vim list item %d" -#~ msgstr "bd wewntrzny: nie powiodo si pobranie z listy Vima elementu %d" - -#~ msgid "failed to add item to list" -#~ msgstr "nie powiodo si dodanie elementu do listy" - -#~ msgid "internal error: no vim list item %d" -#~ msgstr "bd wewntrzny: w licie Vima brak elementu %d" - -#~ msgid "internal error: failed to add item to list" -#~ msgstr "bd wewntrzny: nie powiodo si dodanie elementu do listy" - -#~ msgid "cannot delete vim.List attributes" -#~ msgstr "nie mog usun atrybutw vim.List" - -#~ msgid "cannot modify fixed list" -#~ msgstr "nie mog zmieni zablokowanej listy" - -#~ msgid "unnamed function %s does not exist" -#~ msgstr "nie nazwana funkcja %s nie istnieje" - -#~ msgid "function %s does not exist" -#~ msgstr "funkcja %s nie istnieje" - -#~ msgid "function constructor does not accept keyword arguments" -#~ msgstr "konstruktor funkcji nie akceptuje sw kluczowych jako argumentw" - -#~ msgid "failed to run function %s" -#~ msgstr "nie mog uruchomi funkcji %s" - -#~ msgid "problem while switching windows" -#~ msgstr "wystpi problem w czasie zmiany okien" - -#~ msgid "unable to unset global option %s" -#~ msgstr "nie mog wyzerowa opcji globalnej %s" - -#~ msgid "unable to unset option %s which does not have global value" -#~ msgstr "nie mog wyzerowa opcji %s, ktra nie ma wartoci globalnej" - -#~ msgid "attempt to refer to deleted tab page" -#~ msgstr "prba odniesienia do skasowanej karty" - -#~ msgid "no such tab page" -#~ msgstr "nie ma takiej karty" - -#~ msgid "attempt to refer to deleted window" -#~ msgstr "prba odniesienia do skasowanego okna" - -#~ msgid "readonly attribute: buffer" -#~ msgstr "atrybut tylko do odczytu: bufor" - -#~ msgid "cursor position outside buffer" -#~ msgstr "pozycja kursora poza buforem" - -#~ msgid "no such window" -#~ msgstr "nie ma takiego okna" - -#~ msgid "attempt to refer to deleted buffer" -#~ msgstr "prba odniesienia do skasowanego bufora" - -#~ msgid "failed to rename buffer" -#~ msgstr "nie powioda si zmiana nazwy bufora" - -#~ msgid "mark name must be a single character" -#~ msgstr "nazwa zakadki musi by pojedynczym znakiem" - -#~ msgid "expected vim.Buffer object, but got %s" -#~ msgstr "oczekiwaem na obiekt vim.Buffer, a dostaem %s" - -#~ msgid "failed to switch to buffer %d" -#~ msgstr "nie przeszedem do bufora %d" - -#~ msgid "expected vim.Window object, but got %s" -#~ msgstr "oczekiwaem na obiekt vim.Window, a dostaem %s" - -#~ msgid "failed to find window in the current tab page" -#~ msgstr "nie znaleziono okna na biecej karcie" - -#~ msgid "did not switch to the specified window" -#~ msgstr "nie przeszedem do okrelonego okna" - -#~ msgid "expected vim.TabPage object, but got %s" -#~ msgstr "oczekiwaem na obiekt vim.TabPage, a dostaem %s" - -#~ msgid "did not switch to the specified tab page" -#~ msgstr "nie przeszedem do okrelonej karty" - -#~ msgid "failed to run the code" -#~ msgstr "uruchomienie kodu si nie powiodo" - -#~ msgid "E858: Eval did not return a valid python object" -#~ msgstr "E858: eval nie zwrcio odpowiedniego obiektu pythona" - -#~ msgid "E859: Failed to convert returned python object to vim value" -#~ msgstr "E859: Nie powioda si konwersja obiektu pythona do wartoci Vima" - -#~ msgid "unable to convert %s to vim dictionary" -#~ msgstr "nie mona konwertowa %s do sownika Vima" - -#~ msgid "unable to convert %s to vim structure" -#~ msgstr "nie mona konwertowa %s do struktury Vima" - -#~ msgid "internal error: NULL reference passed" -#~ msgstr "bd wewntrzny: przekazano referencj NULL" - -#~ msgid "internal error: invalid value type" -#~ msgstr "bd wewntrzny: bdny typ wartoci" - -#~ msgid "" -#~ "Failed to set path hook: sys.path_hooks is not a list\n" -#~ "You should now do the following:\n" -#~ "- append vim.path_hook to sys.path_hooks\n" -#~ "- append vim.VIM_SPECIAL_PATH to sys.path\n" -#~ msgstr "" -#~ "Nie mog ustawi haka cieki: sys.path_hooks nie jest list\n" -#~ "Powiniene teraz wykona nastpujce czynnoci:\n" -#~ "- doda vim.path_hook do sys.path_hooks\n" -#~ "- doda vim.VIM_SPECIAL_PATH do sys.path\n" - -#~ msgid "" -#~ "Failed to set path: sys.path is not a list\n" -#~ "You should now append vim.VIM_SPECIAL_PATH to sys.path" -#~ msgstr "" -#~ "Nie mog ustawi cieki: sys.path nie jest list\n" -#~ "Powinno si teraz doda vim.VIM_SPECIAL_PATH do sys.path" - -#~ msgid "softspace must be an integer" -#~ msgstr "softspace musi by liczb cakowit" - -#~ msgid "<buffer object (deleted) at %p>" -#~ msgstr "<obiekt bufora (skasowany) w %p>" - -#~ msgid "" -#~ "E281: TCL ERROR: exit code is not int!? Please report this to vim-dev@vim." -#~ "org" -#~ msgstr "" -#~ "E281: BD TCL: kod zakoczeniowy nie jest cakowity!? Prosz zoy " -#~ "raport o tym na vim-dev@vim.org" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (RISC OS version):\n" -#~ msgstr "" -#~ "\n" -#~ "Argumenty rozpoznawane przez gvim (wersja RISC OS):\n" - -#~ msgid "--columns <number>\tInitial width of window in columns" -#~ msgstr "--columns <number>\tPocztkowa szeroko okna w kolumnach" - -#~ msgid "--rows <number>\tInitial height of window in rows" -#~ msgstr "--rows <number>\tPocztkowa wysoko okna w wierszach" - -#~ msgid "E505: " -#~ msgstr "E505: " - -#~ msgid "" -#~ "\n" -#~ "RISC OS version" -#~ msgstr "" -#~ "\n" -#~ "wersja dla RISC OS" - -#~ msgid "writelines() requires list of strings" -#~ msgstr "writelines() wymaga listy cigw" - -#~ msgid "<window object (deleted) at %p>" -#~ msgstr "<obiekt okna (skasowany) w %p>" - -#~ msgid "<window object (unknown) at %p>" -#~ msgstr "<obiekt okna (nieznany) w %p>" - -#~ msgid "<window %d>" -#~ msgstr "<okno %d>" - -#~ msgid "-name <name>\t\tUse resource as if vim was <name>" -#~ msgstr "-name <nazwa>\t\tUywaj zasobw tak jak by Vim by <nazwa>" - -#~ msgid "\t\t\t (Unimplemented)\n" -#~ msgstr "\t\t\t (Niezaimplementowane)\n" - -#~ msgid "E396: containedin argument not accepted here" -#~ msgstr "E396: argument containedin niedozwolony w tym miejscu" - -#~ msgid "Vim dialog..." -#~ msgstr "Dialog Vima..." - -#~ msgid "Font Selection" -#~ msgstr "Wybr czcionki" - -#~ msgid "E290: over-the-spot style requires fontset" -#~ msgstr "E290: styl nadpunktowy wymaga +fontset" - -#~ msgid "E291: Your GTK+ is older than 1.2.3. Status area disabled" -#~ msgstr "E291: Twj GTK+ jest starszy ni 1.2.3. Pole statusu wyczono" - -#~ msgid "E292: Input Method Server is not running" -#~ msgstr "E292: Serwer metod wprowadze nie jest uruchomiony" - -#~ msgid "with GTK-GNOME GUI." -#~ msgstr "z GTK-GNOME GUI." - -#~ msgid "with GTK GUI." -#~ msgstr "z GTK GUI." - -#~ msgid "[NL found]" -#~ msgstr "[znaleziono NL]" - -#~ msgid "E569: maximum number of cscope connections reached" -#~ msgstr "E569: wyczerpano maksymaln liczb pocze cscope" diff --git a/src/nvim/po/pt_BR.po b/src/nvim/po/pt_BR.po index 60c11d4b5a..05986cf097 100644 --- a/src/nvim/po/pt_BR.po +++ b/src/nvim/po/pt_BR.po @@ -2478,11 +2478,6 @@ msgstr "E900: Id do job invlido" msgid "E901: Job table is full" msgstr "E901: Tabela de jobs está cheia" -#: ../globals.h:1021 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "E902: \"%s\" não é um executável" - #: ../globals.h:1023 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/ru.cp1251.po b/src/nvim/po/ru.cp1251.po deleted file mode 100644 index b1005bd0e6..0000000000 --- a/src/nvim/po/ru.cp1251.po +++ /dev/null @@ -1,8276 +0,0 @@ -# Russian translation for Vim -# -# Vim ":help uganda" -# -# vassily "vr" ragosin <vrr@users.sourceforge.net>, 2004 -# Sergey Alyoshin <alyoshin.s@gmail.com>, 2013 -# -msgid "" -msgstr "" -"Project-Id-Version: vim_ru\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-26 14:21+0200\n" -"PO-Revision-Date: 2014-10-10 12:00+0400\n" -"Last-Translator: Sergey Alyoshin <alyoshin.s@gmail.com>\n" -"Language-Team: \n" -"Language: Russian\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=cp1251\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../api/private/helpers.c:201 -#, fuzzy -msgid "Unable to get option value" -msgstr " " - -#: ../api/private/helpers.c:204 -msgid "internal error: unknown option type" -msgstr " : " - -#: ../buffer.c:92 -msgid "[Location List]" -msgstr "[ ]" - -#: ../buffer.c:93 -msgid "[Quickfix List]" -msgstr "[ ]" - -#: ../buffer.c:94 -msgid "E855: Autocommands caused command to abort" -msgstr "E855: " - -#: ../buffer.c:135 -msgid "E82: Cannot allocate any buffer, exiting..." -msgstr "E82: , ..." - -#: ../buffer.c:138 -msgid "E83: Cannot allocate buffer, using other one..." -msgstr "E83: , ..." - -#: ../buffer.c:763 -msgid "E515: No buffers were unloaded" -msgstr "E515: " - -#: ../buffer.c:765 -msgid "E516: No buffers were deleted" -msgstr "E516: " - -#: ../buffer.c:767 -msgid "E517: No buffers were wiped out" -msgstr "E517: " - -#: ../buffer.c:772 -msgid "1 buffer unloaded" -msgstr " " - -#: ../buffer.c:774 -#, c-format -msgid "%d buffers unloaded" -msgstr " : %d" - -#: ../buffer.c:777 -msgid "1 buffer deleted" -msgstr " " - -#: ../buffer.c:779 -#, c-format -msgid "%d buffers deleted" -msgstr " : %d" - -#: ../buffer.c:782 -msgid "1 buffer wiped out" -msgstr " " - -#: ../buffer.c:784 -#, c-format -msgid "%d buffers wiped out" -msgstr " : %d" - -#: ../buffer.c:806 -msgid "E90: Cannot unload last buffer" -msgstr "E90: " - -#: ../buffer.c:874 -msgid "E84: No modified buffer found" -msgstr "E84: " - -#. back where we started, didn't find anything. -#: ../buffer.c:903 -msgid "E85: There is no listed buffer" -msgstr "E85: " - -#: ../buffer.c:913 -#, c-format -msgid "E86: Buffer %<PRId64> does not exist" -msgstr "E86: %<PRId64> " - -#: ../buffer.c:915 -msgid "E87: Cannot go beyond last buffer" -msgstr "E87: " - -#: ../buffer.c:917 -msgid "E88: Cannot go before first buffer" -msgstr "E88: " - -#: ../buffer.c:945 -#, c-format -msgid "" -"E89: No write since last change for buffer %<PRId64> (add ! to override)" -msgstr "" -"E89: %<PRId64> ( !, " -")" - -#. wrap around (may cause duplicates) -#: ../buffer.c:1423 -msgid "W14: Warning: List of file names overflow" -msgstr "W14: : " - -#: ../buffer.c:1555 ../quickfix.c:3361 -#, c-format -msgid "E92: Buffer %<PRId64> not found" -msgstr "E92: %<PRId64> " - -#: ../buffer.c:1798 -#, c-format -msgid "E93: More than one match for %s" -msgstr "E93: %s" - -#: ../buffer.c:1800 -#, c-format -msgid "E94: No matching buffer for %s" -msgstr "E94: %s " - -#: ../buffer.c:2161 -#, c-format -msgid "line %<PRId64>" -msgstr " %<PRId64>" - -#: ../buffer.c:2233 -msgid "E95: Buffer with this name already exists" -msgstr "E95: " - -#: ../buffer.c:2498 -msgid " [Modified]" -msgstr " []" - -#: ../buffer.c:2501 -msgid "[Not edited]" -msgstr "[ ]" - -#: ../buffer.c:2504 -msgid "[New file]" -msgstr "[ ]" - -#: ../buffer.c:2505 -msgid "[Read errors]" -msgstr "[ ]" - -#: ../buffer.c:2506 ../buffer.c:3217 ../fileio.c:1807 ../screen.c:4895 -msgid "[RO]" -msgstr "[]" - -#: ../buffer.c:2507 ../fileio.c:1807 -msgid "[readonly]" -msgstr "[ ]" - -#: ../buffer.c:2524 -#, c-format -msgid "1 line --%d%%--" -msgstr " --%d%%--" - -#: ../buffer.c:2526 -#, c-format -msgid "%<PRId64> lines --%d%%--" -msgstr "%<PRId64> . --%d%%--" - -#: ../buffer.c:2530 -#, c-format -msgid "line %<PRId64> of %<PRId64> --%d%%-- col " -msgstr ". %<PRId64> %<PRId64> --%d%%-- . " - -#: ../buffer.c:2632 ../buffer.c:4292 ../memline.c:1554 -msgid "[No Name]" -msgstr "[ ]" - -#. must be a help buffer -#: ../buffer.c:2667 -msgid "help" -msgstr "" - -#: ../buffer.c:3225 ../screen.c:4883 -msgid "[Help]" -msgstr "[]" - -#: ../buffer.c:3254 ../screen.c:4887 -msgid "[Preview]" -msgstr "[]" - -#: ../buffer.c:3528 -msgid "All" -msgstr "" - -#: ../buffer.c:3528 -msgid "Bot" -msgstr "" - -#: ../buffer.c:3531 -msgid "Top" -msgstr "" - -#: ../buffer.c:4244 -msgid "" -"\n" -"# Buffer list:\n" -msgstr "" -"\n" -"# :\n" - -#: ../buffer.c:4289 -msgid "[Scratch]" -msgstr "[]" - -#: ../buffer.c:4529 -msgid "" -"\n" -"--- Signs ---" -msgstr "" -"\n" -"--- ---" - -#: ../buffer.c:4538 -#, c-format -msgid "Signs for %s:" -msgstr " %s:" - -#: ../buffer.c:4543 -#, c-format -msgid " line=%<PRId64> id=%d name=%s" -msgstr " =%<PRId64> id=%d =%s" - -#: ../cursor_shape.c:68 -msgid "E545: Missing colon" -msgstr "E545: " - -#: ../cursor_shape.c:70 ../cursor_shape.c:94 -msgid "E546: Illegal mode" -msgstr "E546: " - -#: ../cursor_shape.c:134 -msgid "E548: digit expected" -msgstr "E548: " - -#: ../cursor_shape.c:138 -msgid "E549: Illegal percentage" -msgstr "E549: " - -#: ../diff.c:146 -#, c-format -msgid "E96: Can not diff more than %<PRId64> buffers" -msgstr "E96: %<PRId64> " - -#: ../diff.c:753 -msgid "E810: Cannot read or write temp files" -msgstr "E810: " - -#: ../diff.c:755 -msgid "E97: Cannot create diffs" -msgstr "E97: " - -#: ../diff.c:966 -msgid "E816: Cannot read patch output" -msgstr "E816: patch" - -#: ../diff.c:1220 -msgid "E98: Cannot read diff output" -msgstr "E98: diff" - -#: ../diff.c:2081 -msgid "E99: Current buffer is not in diff mode" -msgstr "E99: " - -#: ../diff.c:2100 -msgid "E793: No other buffer in diff mode is modifiable" -msgstr "E793: " - -#: ../diff.c:2102 -msgid "E100: No other buffer in diff mode" -msgstr "E100: " - -#: ../diff.c:2112 -msgid "E101: More than two buffers in diff mode, don't know which one to use" -msgstr "E101: , " - -#: ../diff.c:2141 -#, c-format -msgid "E102: Can't find buffer \"%s\"" -msgstr "E102: \"%s\"" - -#: ../diff.c:2152 -#, c-format -msgid "E103: Buffer \"%s\" is not in diff mode" -msgstr "E103: \"%s\" " - -#: ../diff.c:2193 -msgid "E787: Buffer changed unexpectedly" -msgstr "E787: " - -#: ../digraph.c:1598 -msgid "E104: Escape not allowed in digraph" -msgstr "E104: Escape " - -#: ../digraph.c:1760 -msgid "E544: Keymap file not found" -msgstr "E544: " - -#: ../digraph.c:1785 -msgid "E105: Using :loadkeymap not in a sourced file" -msgstr "E105: :loadkeymap " - -#: ../digraph.c:1821 -msgid "E791: Empty keymap entry" -msgstr "E791: " - -#: ../edit.c:82 -msgid " Keyword completion (^N^P)" -msgstr " (^N^P)" - -#. ctrl_x_mode == 0, ^P/^N compl. -#: ../edit.c:83 -msgid " ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" -msgstr " ^X (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" - -#: ../edit.c:85 -msgid " Whole line completion (^L^N^P)" -msgstr " (^L^N^P)" - -#: ../edit.c:86 -msgid " File name completion (^F^N^P)" -msgstr " (^F^N^P)" - -#: ../edit.c:87 -msgid " Tag completion (^]^N^P)" -msgstr " (^]^N^P)" - -#: ../edit.c:88 -msgid " Path pattern completion (^N^P)" -msgstr " (^N^P)" - -#: ../edit.c:89 -msgid " Definition completion (^D^N^P)" -msgstr " (^D^N^P)" - -#: ../edit.c:91 -msgid " Dictionary completion (^K^N^P)" -msgstr " (^K^N^P)" - -#: ../edit.c:92 -msgid " Thesaurus completion (^T^N^P)" -msgstr " (^T^N^P)" - -#: ../edit.c:93 -msgid " Command-line completion (^V^N^P)" -msgstr " (^V^N^P)" - -#: ../edit.c:94 -msgid " User defined completion (^U^N^P)" -msgstr " (^U^N^P)" - -#: ../edit.c:95 -msgid " Omni completion (^O^N^P)" -msgstr " Omni- (^O^N^P)" - -#: ../edit.c:96 -msgid " Spelling suggestion (s^N^P)" -msgstr " (s^N^P)" - -#: ../edit.c:97 -msgid " Keyword Local completion (^N^P)" -msgstr " (^N^P)" - -#: ../edit.c:100 -msgid "Hit end of paragraph" -msgstr " " - -#: ../edit.c:101 -msgid "E839: Completion function changed window" -msgstr "E839: " - -#: ../edit.c:102 -msgid "E840: Completion function deleted text" -msgstr "E840: " - -#: ../edit.c:1847 -msgid "'dictionary' option is empty" -msgstr " 'dictionary'" - -#: ../edit.c:1848 -msgid "'thesaurus' option is empty" -msgstr " 'thesaurus'" - -#: ../edit.c:2655 -#, c-format -msgid "Scanning dictionary: %s" -msgstr " : %s" - -#: ../edit.c:3079 -msgid " (insert) Scroll (^E/^Y)" -msgstr " () (^E/^Y)" - -#: ../edit.c:3081 -msgid " (replace) Scroll (^E/^Y)" -msgstr " () (^E/^Y)" - -#: ../edit.c:3587 -#, c-format -msgid "Scanning: %s" -msgstr ": %s" - -#: ../edit.c:3614 -msgid "Scanning tags." -msgstr " ." - -#: ../edit.c:4519 -msgid " Adding" -msgstr " " - -#. showmode might reset the internal line pointers, so it must -#. * be called before line = ml_get(), or when this address is no -#. * longer needed. -- Acevedo. -#. -#: ../edit.c:4562 -msgid "-- Searching..." -msgstr "-- ..." - -#: ../edit.c:4618 -msgid "Back at original" -msgstr " " - -#: ../edit.c:4621 -msgid "Word from other line" -msgstr " " - -#: ../edit.c:4624 -msgid "The only match" -msgstr " " - -#: ../edit.c:4680 -#, c-format -msgid "match %d of %d" -msgstr " %d %d" - -#: ../edit.c:4684 -#, c-format -msgid "match %d" -msgstr " %d" - -#: ../eval.c:137 -msgid "E18: Unexpected characters in :let" -msgstr "E18: :let" - -#: ../eval.c:138 -#, c-format -msgid "E684: list index out of range: %<PRId64>" -msgstr "E684: : %<PRId64>" - -#: ../eval.c:139 -#, c-format -msgid "E121: Undefined variable: %s" -msgstr "E121: : %s" - -#: ../eval.c:140 -msgid "E111: Missing ']'" -msgstr "E111: ']'" - -#: ../eval.c:141 -#, c-format -msgid "E686: Argument of %s must be a List" -msgstr "E686: %s " - -#: ../eval.c:143 -#, c-format -msgid "E712: Argument of %s must be a List or Dictionary" -msgstr "E712: %s " - -#: ../eval.c:144 -msgid "E713: Cannot use empty key for Dictionary" -msgstr "E713: " - -#: ../eval.c:145 -msgid "E714: List required" -msgstr "E714: " - -#: ../eval.c:146 -msgid "E715: Dictionary required" -msgstr "E715: " - -#: ../eval.c:147 -#, c-format -msgid "E118: Too many arguments for function: %s" -msgstr "E118: %s" - -#: ../eval.c:148 -#, c-format -msgid "E716: Key not present in Dictionary: %s" -msgstr "E716: : %s" - -#: ../eval.c:150 -#, c-format -msgid "E122: Function %s already exists, add ! to replace it" -msgstr "E122: %s . !, ." - -#: ../eval.c:151 -msgid "E717: Dictionary entry already exists" -msgstr "E717: " - -#: ../eval.c:152 -msgid "E718: Funcref required" -msgstr "E718: " - -#: ../eval.c:153 -msgid "E719: Cannot use [:] with a Dictionary" -msgstr "E719: [:] " - -#: ../eval.c:154 -#, c-format -msgid "E734: Wrong variable type for %s=" -msgstr "E734: %s=" - -#: ../eval.c:155 -#, c-format -msgid "E130: Unknown function: %s" -msgstr "E130: : %s" - -#: ../eval.c:156 -#, c-format -msgid "E461: Illegal variable name: %s" -msgstr "E461: : %s" - -#: ../eval.c:157 -msgid "E806: using Float as a String" -msgstr "E806: " - -#: ../eval.c:1830 -msgid "E687: Less targets than List items" -msgstr "E687: " - -#: ../eval.c:1834 -msgid "E688: More targets than List items" -msgstr "E688: " - -#: ../eval.c:1906 -msgid "Double ; in list of variables" -msgstr " ; " - -#: ../eval.c:2078 -#, c-format -msgid "E738: Can't list variables for %s" -msgstr "E738: %s" - -#: ../eval.c:2391 -msgid "E689: Can only index a List or Dictionary" -msgstr "E689: " - -#: ../eval.c:2396 -msgid "E708: [:] must come last" -msgstr "E708: [:] " - -#: ../eval.c:2439 -msgid "E709: [:] requires a List value" -msgstr "E709: [:] " - -#: ../eval.c:2674 -msgid "E710: List value has more items than target" -msgstr "E710: - " - -#: ../eval.c:2678 -msgid "E711: List value has not enough items" -msgstr "E711: - " - -#: ../eval.c:2867 -msgid "E690: Missing \"in\" after :for" -msgstr "E690: \"in\" :for" - -#: ../eval.c:3063 -#, c-format -msgid "E107: Missing parentheses: %s" -msgstr "E107: : %s" - -#: ../eval.c:3263 -#, c-format -msgid "E108: No such variable: \"%s\"" -msgstr "E108: : \"%s\"" - -#: ../eval.c:3333 -msgid "E743: variable nested too deep for (un)lock" -msgstr "E743: ()" - -#: ../eval.c:3630 -msgid "E109: Missing ':' after '?'" -msgstr "E109: ':' '?'" - -#: ../eval.c:3893 -msgid "E691: Can only compare List with List" -msgstr "E691: " - -#: ../eval.c:3895 -msgid "E692: Invalid operation for Lists" -msgstr "E692: " - -#: ../eval.c:3915 -msgid "E735: Can only compare Dictionary with Dictionary" -msgstr "E735: " - -#: ../eval.c:3917 -msgid "E736: Invalid operation for Dictionary" -msgstr "E736: " - -#: ../eval.c:3932 -msgid "E693: Can only compare Funcref with Funcref" -msgstr "E693: " - -#: ../eval.c:3934 -msgid "E694: Invalid operation for Funcrefs" -msgstr "E694: " - -#: ../eval.c:4277 -msgid "E804: Cannot use '%' with Float" -msgstr "E804: '%' " - -#: ../eval.c:4478 -msgid "E110: Missing ')'" -msgstr "E110: ')'" - -#: ../eval.c:4609 -msgid "E695: Cannot index a Funcref" -msgstr "E695: " - -#: ../eval.c:4839 -#, c-format -msgid "E112: Option name missing: %s" -msgstr "E112: : %s" - -#: ../eval.c:4855 -#, c-format -msgid "E113: Unknown option: %s" -msgstr "E113: : %s" - -#: ../eval.c:4904 -#, c-format -msgid "E114: Missing quote: %s" -msgstr "E114: : %s" - -#: ../eval.c:5020 -#, c-format -msgid "E115: Missing quote: %s" -msgstr "E115: : %s" - -#: ../eval.c:5084 -#, c-format -msgid "E696: Missing comma in List: %s" -msgstr "E696: : %s" - -#: ../eval.c:5091 -#, c-format -msgid "E697: Missing end of List ']': %s" -msgstr "E697: ']': %s" - -#: ../eval.c:6475 -#, c-format -msgid "E720: Missing colon in Dictionary: %s" -msgstr "E720: : %s" - -#: ../eval.c:6499 -#, c-format -msgid "E721: Duplicate key in Dictionary: \"%s\"" -msgstr "E721: : \"%s\"" - -#: ../eval.c:6517 -#, c-format -msgid "E722: Missing comma in Dictionary: %s" -msgstr "E722: : %s" - -#: ../eval.c:6524 -#, c-format -msgid "E723: Missing end of Dictionary '}': %s" -msgstr "E723: '}': %s" - -#: ../eval.c:6555 -msgid "E724: variable nested too deep for displaying" -msgstr "E724: " - -#: ../eval.c:7188 -#, c-format -msgid "E740: Too many arguments for function %s" -msgstr "E740: %s" - -#: ../eval.c:7190 -#, c-format -msgid "E116: Invalid arguments for function %s" -msgstr "E116: %s " - -#: ../eval.c:7377 -#, c-format -msgid "E117: Unknown function: %s" -msgstr "E117: : %s" - -#: ../eval.c:7383 -#, c-format -msgid "E119: Not enough arguments for function: %s" -msgstr "E119: %s" - -#: ../eval.c:7387 -#, c-format -msgid "E120: Using <SID> not in a script context: %s" -msgstr "E120: <SID> : %s" - -#: ../eval.c:7391 -#, c-format -msgid "E725: Calling dict function without Dictionary: %s" -msgstr "E725: dict : %s" - -#: ../eval.c:7453 -msgid "E808: Number or Float required" -msgstr "E808: " - -#: ../eval.c:7503 -msgid "add() argument" -msgstr " add()" - -#: ../eval.c:7907 -msgid "E699: Too many arguments" -msgstr "E699: " - -#: ../eval.c:8073 -msgid "E785: complete() can only be used in Insert mode" -msgstr "E785: complete() " - -#: ../eval.c:8156 -msgid "&Ok" -msgstr "&Ok" - -#: ../eval.c:8676 -#, c-format -msgid "E737: Key already exists: %s" -msgstr "E737: : %s" - -#: ../eval.c:8692 -msgid "extend() argument" -msgstr " extend()" - -#: ../eval.c:8915 -msgid "map() argument" -msgstr " map()" - -#: ../eval.c:8916 -msgid "filter() argument" -msgstr " filter()" - -#: ../eval.c:9229 -#, c-format -msgid "+-%s%3ld lines: " -msgstr "+-%s%3ld : " - -#: ../eval.c:9291 -#, c-format -msgid "E700: Unknown function: %s" -msgstr "E700: : %s" - -#: ../eval.c:10729 -msgid "called inputrestore() more often than inputsave()" -msgstr " inputrestore() , inputsave()" - -#: ../eval.c:10771 -msgid "insert() argument" -msgstr " insert()" - -#: ../eval.c:10841 -msgid "E786: Range not allowed" -msgstr "E786: " - -#: ../eval.c:11140 -msgid "E701: Invalid type for len()" -msgstr "E701: len()" - -#: ../eval.c:11980 -msgid "E726: Stride is zero" -msgstr "E726: " - -#: ../eval.c:11982 -msgid "E727: Start past end" -msgstr "E727: " - -#: ../eval.c:12024 ../eval.c:15297 -msgid "<empty>" -msgstr "<>" - -#: ../eval.c:12282 -msgid "remove() argument" -msgstr " remove()" - -#: ../eval.c:12466 -msgid "E655: Too many symbolic links (cycle?)" -msgstr "E655: (?)" - -#: ../eval.c:12593 -msgid "reverse() argument" -msgstr " reverse()" - -#: ../eval.c:13721 -msgid "sort() argument" -msgstr " sort()" - -#: ../eval.c:13721 -msgid "uniq() argument" -msgstr " uniq()" - -#: ../eval.c:13776 -msgid "E702: Sort compare function failed" -msgstr "E702: " - -#: ../eval.c:13806 -msgid "E882: Uniq compare function failed" -msgstr "" -"E882: " - -#: ../eval.c:14085 -msgid "(Invalid)" -msgstr "()" - -#: ../eval.c:14590 -msgid "E677: Error writing temp file" -msgstr "E677: " - -#: ../eval.c:16159 -msgid "E805: Using a Float as a Number" -msgstr "E805: " - -#: ../eval.c:16162 -msgid "E703: Using a Funcref as a Number" -msgstr "E703: " - -#: ../eval.c:16170 -msgid "E745: Using a List as a Number" -msgstr "E745: " - -#: ../eval.c:16173 -msgid "E728: Using a Dictionary as a Number" -msgstr "E728: " - -#: ../eval.c:16259 -msgid "E729: using Funcref as a String" -msgstr "E729: " - -#: ../eval.c:16262 -msgid "E730: using List as a String" -msgstr "E730: " - -#: ../eval.c:16265 -msgid "E731: using Dictionary as a String" -msgstr "E731: " - -#: ../eval.c:16619 -#, c-format -msgid "E706: Variable type mismatch for: %s" -msgstr "E706: : %s" - -#: ../eval.c:16705 -#, c-format -msgid "E795: Cannot delete variable %s" -msgstr "E795: %s" - -#: ../eval.c:16724 -#, c-format -msgid "E704: Funcref variable name must start with a capital: %s" -msgstr "" -"E704: : " -"%s" - -#: ../eval.c:16732 -#, c-format -msgid "E705: Variable name conflicts with existing function: %s" -msgstr "E705: : %s" - -#: ../eval.c:16763 -#, c-format -msgid "E741: Value is locked: %s" -msgstr "E741: %s " - -#: ../eval.c:16764 ../eval.c:16769 ../message.c:1839 -msgid "Unknown" -msgstr "" - -#: ../eval.c:16768 -#, c-format -msgid "E742: Cannot change value of %s" -msgstr "E742: %s" - -#: ../eval.c:16838 -msgid "E698: variable nested too deep for making a copy" -msgstr "E698: " - -#: ../eval.c:17249 -#, c-format -msgid "E123: Undefined function: %s" -msgstr "E123: : %s" - -#: ../eval.c:17260 -#, c-format -msgid "E124: Missing '(': %s" -msgstr "E124: '(': %s" - -#: ../eval.c:17293 -msgid "E862: Cannot use g: here" -msgstr "E862: g:" - -#: ../eval.c:17312 -#, c-format -msgid "E125: Illegal argument: %s" -msgstr "E125: : %s" - -#: ../eval.c:17323 -#, c-format -msgid "E853: Duplicate argument name: %s" -msgstr "E853: : %s" - -#: ../eval.c:17416 -msgid "E126: Missing :endfunction" -msgstr "E126: :endfunction" - -#: ../eval.c:17537 -#, c-format -msgid "E707: Function name conflicts with variable: %s" -msgstr "E707: : %s" - -#: ../eval.c:17549 -#, c-format -msgid "E127: Cannot redefine function %s: It is in use" -msgstr "E127: %s, " - -#: ../eval.c:17604 -#, c-format -msgid "E746: Function name does not match script file name: %s" -msgstr "E746: : %s" - -#: ../eval.c:17716 -msgid "E129: Function name required" -msgstr "E129: " - -#: ../eval.c:17824 -#, c-format -msgid "E128: Function name must start with a capital or \"s:\": %s" -msgstr "E128: \"s:\": %s" - -#: ../eval.c:17833 -#, c-format -msgid "E884: Function name cannot contain a colon: %s" -msgstr "E884: : %s" - -#: ../eval.c:18336 -#, c-format -msgid "E131: Cannot delete function %s: It is in use" -msgstr "E131: %s, " - -#: ../eval.c:18441 -msgid "E132: Function call depth is higher than 'maxfuncdepth'" -msgstr "E132: , 'maxfuncdepth'" - -#: ../eval.c:18568 -#, c-format -msgid "calling %s" -msgstr " %s" - -#: ../eval.c:18651 -#, c-format -msgid "%s aborted" -msgstr "%s " - -#: ../eval.c:18653 -#, c-format -msgid "%s returning #%<PRId64>" -msgstr "%s #%<PRId64>" - -#: ../eval.c:18670 -#, c-format -msgid "%s returning %s" -msgstr "%s %s" - -#: ../eval.c:18691 ../ex_cmds2.c:2695 -#, c-format -msgid "continuing in %s" -msgstr " %s" - -#: ../eval.c:18795 -msgid "E133: :return not inside a function" -msgstr "E133: :return " - -#: ../eval.c:19159 -msgid "" -"\n" -"# global variables:\n" -msgstr "" -"\n" -"# :\n" - -#: ../eval.c:19254 -msgid "" -"\n" -"\tLast set from " -msgstr "" -"\n" -"\t " - -#: ../eval.c:19272 -msgid "No old files" -msgstr " " - -#: ../ex_cmds.c:122 -#, c-format -msgid "<%s>%s%s %d, Hex %02x, Octal %03o" -msgstr "<%s>%s%s %d, Hex %02x, Octal %03o" - -#: ../ex_cmds.c:145 -#, c-format -msgid "> %d, Hex %04x, Octal %o" -msgstr "> %d, Hex %04x, Octal %o" - -#: ../ex_cmds.c:146 -#, c-format -msgid "> %d, Hex %08x, Octal %o" -msgstr "> %d, Hex %08x, Octal %o" - -#: ../ex_cmds.c:684 -msgid "E134: Move lines into themselves" -msgstr "E134: " - -#: ../ex_cmds.c:747 -msgid "1 line moved" -msgstr " " - -#: ../ex_cmds.c:749 -#, c-format -msgid "%<PRId64> lines moved" -msgstr " : %<PRId64>" - -#: ../ex_cmds.c:1175 -#, c-format -msgid "%<PRId64> lines filtered" -msgstr " : %<PRId64>" - -#: ../ex_cmds.c:1194 -msgid "E135: *Filter* Autocommands must not change current buffer" -msgstr "E135: *Filter* " - -#: ../ex_cmds.c:1244 -msgid "[No write since last change]\n" -msgstr "[ ]\n" - -#: ../ex_cmds.c:1424 -#, c-format -msgid "%sviminfo: %s in line: " -msgstr "%sviminfo: %s : " - -#: ../ex_cmds.c:1431 -msgid "E136: viminfo: Too many errors, skipping rest of file" -msgstr "" -"E136: viminfo: , " - -#: ../ex_cmds.c:1458 -#, c-format -msgid "Reading viminfo file \"%s\"%s%s%s" -msgstr " viminfo \"%s\"%s%s%s" - -#: ../ex_cmds.c:1460 -msgid " info" -msgstr " " - -#: ../ex_cmds.c:1461 -msgid " marks" -msgstr " " - -#: ../ex_cmds.c:1462 -msgid " oldfiles" -msgstr " " - -#: ../ex_cmds.c:1463 -msgid " FAILED" -msgstr " " - -#. avoid a wait_return for this message, it's annoying -#: ../ex_cmds.c:1541 -#, c-format -msgid "E137: Viminfo file is not writable: %s" -msgstr "E137: viminfo : %s" - -#: ../ex_cmds.c:1626 -#, c-format -msgid "E138: Can't write viminfo file %s!" -msgstr "E138: viminfo %s!" - -#: ../ex_cmds.c:1635 -#, c-format -msgid "Writing viminfo file \"%s\"" -msgstr " viminfo \"%s\"" - -#, c-format -msgid "E886: Can't rename viminfo file to %s!" -msgstr "E886: viminfo %s!" - -#. Write the info: -#: ../ex_cmds.c:1720 -#, c-format -msgid "# This viminfo file was generated by Vim %s.\n" -msgstr "# viminfo Vim %s.\n" - -#: ../ex_cmds.c:1722 -msgid "" -"# You may edit it if you're careful!\n" -"\n" -msgstr "" -"# (!) .\n" -"\n" - -#: ../ex_cmds.c:1723 -msgid "# Value of 'encoding' when this file was written\n" -msgstr "# 'encoding' \n" - -#: ../ex_cmds.c:1800 -msgid "Illegal starting char" -msgstr " " - -#: ../ex_cmds.c:2162 -msgid "Write partial file?" -msgstr " ?" - -#: ../ex_cmds.c:2166 -msgid "E140: Use ! to write partial buffer" -msgstr "E140: !" - -#: ../ex_cmds.c:2281 -#, c-format -msgid "Overwrite existing file \"%s\"?" -msgstr " \"%s\"?" - -#: ../ex_cmds.c:2317 -#, c-format -msgid "Swap file \"%s\" exists, overwrite anyway?" -msgstr "- \"%s\" , ?" - -#: ../ex_cmds.c:2326 -#, c-format -msgid "E768: Swap file exists: %s (:silent! overrides)" -msgstr "E768: - : %s (:silent! )" - -#: ../ex_cmds.c:2381 -#, c-format -msgid "E141: No file name for buffer %<PRId64>" -msgstr "E141: %<PRId64> " - -#: ../ex_cmds.c:2412 -msgid "E142: File not written: Writing is disabled by 'write' option" -msgstr "E142: : 'write'" - -#: ../ex_cmds.c:2434 -#, c-format -msgid "" -"'readonly' option is set for \"%s\".\n" -"Do you wish to write anyway?" -msgstr "" -" \"%s\" 'readonly'.\n" -"?" - -#: ../ex_cmds.c:2439 -#, c-format -msgid "" -"File permissions of \"%s\" are read-only.\n" -"It may still be possible to write it.\n" -"Do you wish to try?" -msgstr "" -" \"%s\" .\n" -", , .\n" -" ?" - -#: ../ex_cmds.c:2451 -#, c-format -msgid "E505: \"%s\" is read-only (add ! to override)" -msgstr "" -"E505: \"%s\" ( !, )" - -#: ../ex_cmds.c:3120 -#, c-format -msgid "E143: Autocommands unexpectedly deleted new buffer %s" -msgstr "E143: %s" - -#: ../ex_cmds.c:3313 -msgid "E144: non-numeric argument to :z" -msgstr "E144: :z " - -#: ../ex_cmds.c:3404 -msgid "E145: Shell commands not allowed in rvim" -msgstr "E145: rvim." - -#: ../ex_cmds.c:3498 -msgid "E146: Regular expressions can't be delimited by letters" -msgstr "E146: " - -#: ../ex_cmds.c:3964 -#, c-format -msgid "replace with %s (y/n/a/q/l/^E/^Y)?" -msgstr " %s? (y/n/a/q/l/^E/^Y)" - -#: ../ex_cmds.c:4379 -msgid "(Interrupted) " -msgstr "()" - -#: ../ex_cmds.c:4384 -msgid "1 match" -msgstr " " - -#: ../ex_cmds.c:4384 -msgid "1 substitution" -msgstr " " - -#: ../ex_cmds.c:4387 -#, c-format -msgid "%<PRId64> matches" -msgstr "%<PRId64> " - -#: ../ex_cmds.c:4388 -#, c-format -msgid "%<PRId64> substitutions" -msgstr "%<PRId64> " - -#: ../ex_cmds.c:4392 -msgid " on 1 line" -msgstr " " - -#: ../ex_cmds.c:4395 -#, c-format -msgid " on %<PRId64> lines" -msgstr " %<PRId64> ." - -#: ../ex_cmds.c:4438 -msgid "E147: Cannot do :global recursive" -msgstr "E147: :global " - -#: ../ex_cmds.c:4467 -msgid "E148: Regular expression missing from global" -msgstr "E148: :global " - -#: ../ex_cmds.c:4508 -#, c-format -msgid "Pattern found in every line: %s" -msgstr " : %s" - -#: ../ex_cmds.c:4510 -#, c-format -msgid "Pattern not found: %s" -msgstr " : %s" - -#: ../ex_cmds.c:4587 -msgid "" -"\n" -"# Last Substitute String:\n" -"$" -msgstr "" -"\n" -"# :\n" -"$" - -#: ../ex_cmds.c:4679 -msgid "E478: Don't panic!" -msgstr "E478: , !" - -#: ../ex_cmds.c:4717 -#, c-format -msgid "E661: Sorry, no '%s' help for %s" -msgstr "E661: , '%s' %s " - -#: ../ex_cmds.c:4719 -#, c-format -msgid "E149: Sorry, no help for %s" -msgstr "E149: %s " - -#: ../ex_cmds.c:4751 -#, c-format -msgid "Sorry, help file \"%s\" not found" -msgstr ", \"%s\" " - -#: ../ex_cmds.c:5323 -#, c-format -msgid "E150: Not a directory: %s" -msgstr "E150: %s " - -#: ../ex_cmds.c:5446 -#, c-format -msgid "E152: Cannot open %s for writing" -msgstr "E152: %s " - -#: ../ex_cmds.c:5471 -#, c-format -msgid "E153: Unable to open %s for reading" -msgstr "E153: %s " - -#: ../ex_cmds.c:5500 -#, c-format -msgid "E670: Mix of help file encodings within a language: %s" -msgstr "E670: : %s" - -#: ../ex_cmds.c:5565 -#, c-format -msgid "E154: Duplicate tag \"%s\" in file %s/%s" -msgstr "E154: \"%s\" %s/%s" - -#: ../ex_cmds.c:5687 -#, c-format -msgid "E160: Unknown sign command: %s" -msgstr "E160: %s" - -#: ../ex_cmds.c:5704 -msgid "E156: Missing sign name" -msgstr "E156: " - -#: ../ex_cmds.c:5746 -msgid "E612: Too many signs defined" -msgstr "E612: " - -#: ../ex_cmds.c:5813 -#, c-format -msgid "E239: Invalid sign text: %s" -msgstr "E239: : %s" - -#: ../ex_cmds.c:5844 ../ex_cmds.c:6035 -#, c-format -msgid "E155: Unknown sign: %s" -msgstr "E155: : %s" - -#: ../ex_cmds.c:5877 -msgid "E159: Missing sign number" -msgstr "E159: " - -#: ../ex_cmds.c:5971 -#, c-format -msgid "E158: Invalid buffer name: %s" -msgstr "E158: : %s" - -#: ../ex_cmds.c:6008 -#, c-format -msgid "E157: Invalid sign ID: %<PRId64>" -msgstr "E157: ID : %<PRId64>" - -#, c-format -msgid "E885: Not possible to change sign %s" -msgstr "E885: %s" - -#: ../ex_cmds.c:6066 -msgid " (not supported)" -msgstr " ( )" - -#: ../ex_cmds.c:6169 -msgid "[Deleted]" -msgstr "[]" - -#: ../ex_cmds2.c:139 -msgid "Entering Debug mode. Type \"cont\" to continue." -msgstr " . \"cont\"" - -#: ../ex_cmds2.c:143 ../ex_docmd.c:759 -#, c-format -msgid "line %<PRId64>: %s" -msgstr " %<PRId64>: %s" - -#: ../ex_cmds2.c:145 -#, c-format -msgid "cmd: %s" -msgstr ": %s" - -#: ../ex_cmds2.c:322 -#, c-format -msgid "Breakpoint in \"%s%s\" line %<PRId64>" -msgstr " \"%s%s\" . %<PRId64>" - -#: ../ex_cmds2.c:581 -#, c-format -msgid "E161: Breakpoint not found: %s" -msgstr "E161: : %s" - -#: ../ex_cmds2.c:611 -msgid "No breakpoints defined" -msgstr " " - -#: ../ex_cmds2.c:617 -#, c-format -msgid "%3d %s %s line %<PRId64>" -msgstr "%3d %s %s . %<PRId64>" - -#: ../ex_cmds2.c:942 -msgid "E750: First use \":profile start {fname}\"" -msgstr "E750: \":profile start {-}\"" - -#: ../ex_cmds2.c:1269 -#, c-format -msgid "Save changes to \"%s\"?" -msgstr " \"%s\"?" - -#: ../ex_cmds2.c:1271 ../ex_docmd.c:8851 -msgid "Untitled" -msgstr " " - -#: ../ex_cmds2.c:1421 -#, c-format -msgid "E162: No write since last change for buffer \"%s\"" -msgstr "E162: \"%s\"" - -#: ../ex_cmds2.c:1480 -msgid "Warning: Entered other buffer unexpectedly (check autocommands)" -msgstr "" -": ( )" - -#: ../ex_cmds2.c:1826 -msgid "E163: There is only one file to edit" -msgstr "E163: " - -#: ../ex_cmds2.c:1828 -msgid "E164: Cannot go before first file" -msgstr "E164: " - -#: ../ex_cmds2.c:1830 -msgid "E165: Cannot go beyond last file" -msgstr "E165: " - -#: ../ex_cmds2.c:2175 -#, c-format -msgid "E666: compiler not supported: %s" -msgstr "E666: : %s" - -#: ../ex_cmds2.c:2257 -#, c-format -msgid "Searching for \"%s\" in \"%s\"" -msgstr " \"%s\" \"%s\"" - -#: ../ex_cmds2.c:2284 -#, c-format -msgid "Searching for \"%s\"" -msgstr " \"%s\"" - -#: ../ex_cmds2.c:2307 -#, c-format -msgid "not found in 'runtimepath': \"%s\"" -msgstr " 'runtimepath': \"%s\"" - -#: ../ex_cmds2.c:2472 -#, c-format -msgid "Cannot source a directory: \"%s\"" -msgstr " : \"%s\"" - -#: ../ex_cmds2.c:2518 -#, c-format -msgid "could not source \"%s\"" -msgstr " \"%s\"" - -#: ../ex_cmds2.c:2520 -#, c-format -msgid "line %<PRId64>: could not source \"%s\"" -msgstr " %<PRId64>: \"%s\"" - -#: ../ex_cmds2.c:2535 -#, c-format -msgid "sourcing \"%s\"" -msgstr " \"%s\"" - -#: ../ex_cmds2.c:2537 -#, c-format -msgid "line %<PRId64>: sourcing \"%s\"" -msgstr " %<PRId64>: \"%s\"" - -#: ../ex_cmds2.c:2693 -#, c-format -msgid "finished sourcing %s" -msgstr " %s " - -#: ../ex_cmds2.c:2765 -msgid "modeline" -msgstr " " - -#: ../ex_cmds2.c:2767 -msgid "--cmd argument" -msgstr "--cmd " - -#: ../ex_cmds2.c:2769 -msgid "-c argument" -msgstr "-c " - -#: ../ex_cmds2.c:2771 -msgid "environment variable" -msgstr " " - -#: ../ex_cmds2.c:2773 -msgid "error handler" -msgstr " " - -#: ../ex_cmds2.c:3020 -msgid "W15: Warning: Wrong line separator, ^M may be missing" -msgstr "" -"W15: : . ^M" - -#: ../ex_cmds2.c:3139 -msgid "E167: :scriptencoding used outside of a sourced file" -msgstr "E167: :scriptencoding " - -#: ../ex_cmds2.c:3166 -msgid "E168: :finish used outside of a sourced file" -msgstr "E168: :finish " - -#: ../ex_cmds2.c:3389 -#, c-format -msgid "Current %slanguage: \"%s\"" -msgstr " %s: \"%s\"" - -#: ../ex_cmds2.c:3404 -#, c-format -msgid "E197: Cannot set language to \"%s\"" -msgstr "E197: \"%s\"" - -#. don't redisplay the window -#. don't wait for return -#: ../ex_docmd.c:387 -msgid "Entering Ex mode. Type \"visual\" to go to Normal mode." -msgstr " Ex. \"visual\"" - -#: ../ex_docmd.c:428 -msgid "E501: At end-of-file" -msgstr "E501: " - -#: ../ex_docmd.c:513 -msgid "E169: Command too recursive" -msgstr "E169: " - -#: ../ex_docmd.c:1006 -#, c-format -msgid "E605: Exception not caught: %s" -msgstr "E605: : %s" - -#: ../ex_docmd.c:1085 -msgid "End of sourced file" -msgstr " " - -#: ../ex_docmd.c:1086 -msgid "End of function" -msgstr " " - -#: ../ex_docmd.c:1628 -msgid "E464: Ambiguous use of user-defined command" -msgstr "E464: " - -#: ../ex_docmd.c:1638 -msgid "E492: Not an editor command" -msgstr "E492: " - -#: ../ex_docmd.c:1729 -msgid "E493: Backwards range given" -msgstr "E493: " - -#: ../ex_docmd.c:1733 -msgid "Backwards range given, OK to swap" -msgstr " , " - -#. append -#. typed wrong -#: ../ex_docmd.c:1787 -msgid "E494: Use w or w>>" -msgstr "E494: w w>>" - -#: ../ex_docmd.c:3454 -msgid "E319: The command is not available in this version" -msgstr "E319: , " - -#: ../ex_docmd.c:3752 -msgid "E172: Only one file name allowed" -msgstr "E172: " - -#: ../ex_docmd.c:4238 -msgid "1 more file to edit. Quit anyway?" -msgstr "1 . ?" - -#: ../ex_docmd.c:4242 -#, c-format -msgid "%d more files to edit. Quit anyway?" -msgstr " (%d). ?" - -#: ../ex_docmd.c:4248 -msgid "E173: 1 more file to edit" -msgstr "E173: 1 ." - -#: ../ex_docmd.c:4250 -#, c-format -msgid "E173: %<PRId64> more files to edit" -msgstr "E173: (%<PRId64>)." - -#: ../ex_docmd.c:4320 -msgid "E174: Command already exists: add ! to replace it" -msgstr "E174: . ! ." - -#: ../ex_docmd.c:4432 -msgid "" -"\n" -" Name Args Range Complete Definition" -msgstr "" -"\n" -" . . . " - -#: ../ex_docmd.c:4516 -msgid "No user-defined commands found" -msgstr ", , ." - -#: ../ex_docmd.c:4538 -msgid "E175: No attribute specified" -msgstr "E175: " - -#: ../ex_docmd.c:4583 -msgid "E176: Invalid number of arguments" -msgstr "E176: " - -#: ../ex_docmd.c:4594 -msgid "E177: Count cannot be specified twice" -msgstr "E177: - " - -#: ../ex_docmd.c:4603 -msgid "E178: Invalid default value for count" -msgstr "E178: - " - -#: ../ex_docmd.c:4625 -msgid "E179: argument required for -complete" -msgstr "E179: -complete " - -#: ../ex_docmd.c:4635 -#, c-format -msgid "E181: Invalid attribute: %s" -msgstr "E181: : %s" - -#: ../ex_docmd.c:4678 -msgid "E182: Invalid command name" -msgstr "E182: " - -#: ../ex_docmd.c:4691 -msgid "E183: User defined commands must start with an uppercase letter" -msgstr "E183: " - -#: ../ex_docmd.c:4696 -msgid "E841: Reserved name, cannot be used for user defined command" -msgstr "" -"E841: " - -#: ../ex_docmd.c:4751 -#, c-format -msgid "E184: No such user-defined command: %s" -msgstr "E184: : %s" - -#: ../ex_docmd.c:5219 -#, c-format -msgid "E180: Invalid complete value: %s" -msgstr "E180: : %s" - -#: ../ex_docmd.c:5225 -msgid "E468: Completion argument only allowed for custom completion" -msgstr "" -"E468: " - -#: ../ex_docmd.c:5231 -msgid "E467: Custom completion requires a function argument" -msgstr "E467: " - -#: ../ex_docmd.c:5257 -#, c-format -msgid "E185: Cannot find color scheme '%s'" -msgstr "E185: '%s'" - -#: ../ex_docmd.c:5263 -msgid "Greetings, Vim user!" -msgstr " , Vim!" - -#: ../ex_docmd.c:5431 -msgid "E784: Cannot close last tab page" -msgstr "E784: " - -#: ../ex_docmd.c:5462 -msgid "Already only one tab page" -msgstr " " - -#: ../ex_docmd.c:6004 -#, c-format -msgid "Tab page %d" -msgstr " %d" - -#: ../ex_docmd.c:6295 -msgid "No swap file" -msgstr " -" - -#: ../ex_docmd.c:6478 -msgid "E747: Cannot change directory, buffer is modified (add ! to override)" -msgstr "" -"E747: , ( !, " -")" - -#: ../ex_docmd.c:6485 -msgid "E186: No previous directory" -msgstr "E186: " - -#: ../ex_docmd.c:6530 -msgid "E187: Unknown" -msgstr "E187: " - -#: ../ex_docmd.c:6610 -msgid "E465: :winsize requires two number arguments" -msgstr "E465: :winsize " - -#: ../ex_docmd.c:6655 -msgid "E188: Obtaining window position not implemented for this platform" -msgstr "E188: " - -#: ../ex_docmd.c:6662 -msgid "E466: :winpos requires two number arguments" -msgstr "E466: :winpos " - -#: ../ex_docmd.c:7241 -#, c-format -msgid "E739: Cannot create directory: %s" -msgstr "E739: : %s" - -#: ../ex_docmd.c:7268 -#, c-format -msgid "E189: \"%s\" exists (add ! to override)" -msgstr "E189: \"%s\" ( !, )" - -#: ../ex_docmd.c:7273 -#, c-format -msgid "E190: Cannot open \"%s\" for writing" -msgstr "E190: \"%s\"" - -#. set mark -#: ../ex_docmd.c:7294 -msgid "E191: Argument must be a letter or forward/backward quote" -msgstr "E191: / " - -#: ../ex_docmd.c:7333 -msgid "E192: Recursive use of :normal too deep" -msgstr "E192: :normal" - -#: ../ex_docmd.c:7807 -msgid "E194: No alternate file name to substitute for '#'" -msgstr "E194: '#'" - -#: ../ex_docmd.c:7841 -msgid "E495: no autocommand file name to substitute for \"<afile>\"" -msgstr "E495: \"<afile>\"" - -#: ../ex_docmd.c:7850 -msgid "E496: no autocommand buffer number to substitute for \"<abuf>\"" -msgstr "E496: \"<abuf>\"" - -#: ../ex_docmd.c:7861 -msgid "E497: no autocommand match name to substitute for \"<amatch>\"" -msgstr "E497: \"<amatch>\"" - -#: ../ex_docmd.c:7870 -msgid "E498: no :source file name to substitute for \"<sfile>\"" -msgstr "E498: :source \"<sfile>\"" - -#: ../ex_docmd.c:7876 -msgid "E842: no line number to use for \"<slnum>\"" -msgstr "E842: \"<slnum>\"" - -#: ../ex_docmd.c:7903 -#, fuzzy, c-format -msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" -msgstr "E499: '%' '#', c \":p:h\"" - -#: ../ex_docmd.c:7905 -msgid "E500: Evaluates to an empty string" -msgstr "E500: " - -#: ../ex_docmd.c:8838 -msgid "E195: Cannot open viminfo file for reading" -msgstr "E195: viminfo " - -#: ../ex_eval.c:464 -msgid "E608: Cannot :throw exceptions with 'Vim' prefix" -msgstr "" -"E608: :throw 'Vim'" - -#. always scroll up, don't overwrite -#: ../ex_eval.c:496 -#, c-format -msgid "Exception thrown: %s" -msgstr " : %s" - -#: ../ex_eval.c:545 -#, c-format -msgid "Exception finished: %s" -msgstr " : %s" - -#: ../ex_eval.c:546 -#, c-format -msgid "Exception discarded: %s" -msgstr " : %s" - -#: ../ex_eval.c:588 ../ex_eval.c:634 -#, c-format -msgid "%s, line %<PRId64>" -msgstr "%s, %<PRId64>" - -#. always scroll up, don't overwrite -#: ../ex_eval.c:608 -#, c-format -msgid "Exception caught: %s" -msgstr " : %s" - -#: ../ex_eval.c:676 -#, c-format -msgid "%s made pending" -msgstr "%s " - -#: ../ex_eval.c:679 -#, c-format -msgid "%s resumed" -msgstr "%s " - -#: ../ex_eval.c:683 -#, c-format -msgid "%s discarded" -msgstr "%s " - -#: ../ex_eval.c:708 -msgid "Exception" -msgstr " " - -#: ../ex_eval.c:713 -msgid "Error and interrupt" -msgstr " " - -#: ../ex_eval.c:715 -msgid "Error" -msgstr "" - -#. if (pending & CSTP_INTERRUPT) -#: ../ex_eval.c:717 -msgid "Interrupt" -msgstr "" - -#: ../ex_eval.c:795 -msgid "E579: :if nesting too deep" -msgstr "E579: :if" - -#: ../ex_eval.c:830 -msgid "E580: :endif without :if" -msgstr "E580: :endif :if" - -#: ../ex_eval.c:873 -msgid "E581: :else without :if" -msgstr "E581: :else :if" - -#: ../ex_eval.c:876 -msgid "E582: :elseif without :if" -msgstr "E582: :elseif :if" - -#: ../ex_eval.c:880 -msgid "E583: multiple :else" -msgstr "E583: :else" - -#: ../ex_eval.c:883 -msgid "E584: :elseif after :else" -msgstr "E584: :elseif :else" - -#: ../ex_eval.c:941 -msgid "E585: :while/:for nesting too deep" -msgstr "E585: :while :for" - -#: ../ex_eval.c:1028 -msgid "E586: :continue without :while or :for" -msgstr "E586: :continue :while :for" - -#: ../ex_eval.c:1061 -msgid "E587: :break without :while or :for" -msgstr "E587: :break :while :for" - -#: ../ex_eval.c:1102 -msgid "E732: Using :endfor with :while" -msgstr "E732: :endfor :while" - -#: ../ex_eval.c:1104 -msgid "E733: Using :endwhile with :for" -msgstr "E733: :endwhile :for" - -#: ../ex_eval.c:1247 -msgid "E601: :try nesting too deep" -msgstr "E601: :try" - -#: ../ex_eval.c:1317 -msgid "E603: :catch without :try" -msgstr "E603: :catch :try" - -#. Give up for a ":catch" after ":finally" and ignore it. -#. * Just parse. -#: ../ex_eval.c:1332 -msgid "E604: :catch after :finally" -msgstr "E604: :catch :finally" - -#: ../ex_eval.c:1451 -msgid "E606: :finally without :try" -msgstr "E606: :finally :try" - -#. Give up for a multiple ":finally" and ignore it. -#: ../ex_eval.c:1467 -msgid "E607: multiple :finally" -msgstr "E607: :finally" - -#: ../ex_eval.c:1571 -msgid "E602: :endtry without :try" -msgstr "E602: :endtry :try" - -#: ../ex_eval.c:2026 -msgid "E193: :endfunction not inside a function" -msgstr "E193: :endfunction " - -#: ../ex_getln.c:1643 -msgid "E788: Not allowed to edit another buffer now" -msgstr "E788: " - -#: ../ex_getln.c:1656 -msgid "E811: Not allowed to change buffer information now" -msgstr "E811: " - -#: ../ex_getln.c:3178 -msgid "tagname" -msgstr " " - -#: ../ex_getln.c:3181 -msgid " kind file\n" -msgstr " \n" - -#: ../ex_getln.c:4799 -msgid "'history' option is zero" -msgstr " 'history' " - -#: ../ex_getln.c:5046 -#, c-format -msgid "" -"\n" -"# %s History (newest to oldest):\n" -msgstr "" -"\n" -"# %s, ( ):\n" - -#: ../ex_getln.c:5047 -msgid "Command Line" -msgstr " " - -#: ../ex_getln.c:5048 -msgid "Search String" -msgstr " " - -#: ../ex_getln.c:5049 -msgid "Expression" -msgstr "" - -#: ../ex_getln.c:5050 -msgid "Input Line" -msgstr " " - -#: ../ex_getln.c:5117 -msgid "E198: cmd_pchar beyond the command length" -msgstr "E198: cmd_pchar " - -#: ../ex_getln.c:5279 -msgid "E199: Active window or buffer deleted" -msgstr "E199: " - -#: ../file_search.c:203 -msgid "E854: path too long for completion" -msgstr "E854: " - -#: ../file_search.c:446 -#, c-format -msgid "" -"E343: Invalid path: '**[number]' must be at the end of the path or be " -"followed by '%s'." -msgstr "" -"E343: : '**[]' , " -" '%s'" - -#: ../file_search.c:1505 -#, c-format -msgid "E344: Can't find directory \"%s\" in cdpath" -msgstr "E344: \"%s\" " - -#: ../file_search.c:1508 -#, c-format -msgid "E345: Can't find file \"%s\" in path" -msgstr "E345: \"%s\" " - -msgid "List or number required" -msgstr " " - -#: ../file_search.c:1512 -#, c-format -msgid "E346: No more directory \"%s\" found in cdpath" -msgstr "E346: \"%s\"" - -#: ../file_search.c:1515 -#, c-format -msgid "E347: No more file \"%s\" found in path" -msgstr "E347: \"%s\"" - -#: ../fileio.c:137 -msgid "E812: Autocommands changed buffer or buffer name" -msgstr "E812: " - -#: ../fileio.c:368 -msgid "Illegal file name" -msgstr " " - -#: ../fileio.c:395 ../fileio.c:476 ../fileio.c:2543 ../fileio.c:2578 -msgid "is a directory" -msgstr " " - -#: ../fileio.c:397 -msgid "is not a file" -msgstr " " - -#: ../fileio.c:508 ../fileio.c:3522 -msgid "[New File]" -msgstr "[ ]" - -#: ../fileio.c:511 -msgid "[New DIRECTORY]" -msgstr "[ ]" - -#: ../fileio.c:529 ../fileio.c:532 -msgid "[File too big]" -msgstr "[ ]" - -#: ../fileio.c:534 -msgid "[Permission Denied]" -msgstr "[ ]" - -#: ../fileio.c:653 -msgid "E200: *ReadPre autocommands made the file unreadable" -msgstr "E200: *ReadPre " - -#: ../fileio.c:655 -msgid "E201: *ReadPre autocommands must not change current buffer" -msgstr "E201: *ReadPre " - -#: ../fileio.c:672 -msgid "Nvim: Reading from stdin...\n" -msgstr "Vim: stdin...\n" - -#. Re-opening the original file failed! -#: ../fileio.c:909 -msgid "E202: Conversion made file unreadable!" -msgstr "E202: !" - -#. fifo or socket -#: ../fileio.c:1782 -msgid "[fifo/socket]" -msgstr "[fifo/]" - -#. fifo -#: ../fileio.c:1788 -msgid "[fifo]" -msgstr "[fifo]" - -#. or socket -#: ../fileio.c:1794 -msgid "[socket]" -msgstr "[]" - -#. or character special -#: ../fileio.c:1801 -msgid "[character special]" -msgstr "[ ]" - -#: ../fileio.c:1815 -msgid "[CR missing]" -msgstr "[ CR]" - -#: ../fileio.c:1819 -msgid "[long lines split]" -msgstr "[ ]" - -#: ../fileio.c:1823 ../fileio.c:3512 -msgid "[NOT converted]" -msgstr "[ ]" - -#: ../fileio.c:1826 ../fileio.c:3515 -msgid "[converted]" -msgstr "[]" - -#: ../fileio.c:1831 -#, c-format -msgid "[CONVERSION ERROR in line %<PRId64>]" -msgstr "[ %<PRId64>]" - -#: ../fileio.c:1835 -#, c-format -msgid "[ILLEGAL BYTE in line %<PRId64>]" -msgstr "[ %<PRId64>]" - -#: ../fileio.c:1838 -msgid "[READ ERRORS]" -msgstr "[ ]" - -#: ../fileio.c:2104 -msgid "Can't find temp file for conversion" -msgstr " " - -#: ../fileio.c:2110 -msgid "Conversion with 'charconvert' failed" -msgstr " 'charconvert' " - -#: ../fileio.c:2113 -msgid "can't read output of 'charconvert'" -msgstr " 'charconvert'" - -#: ../fileio.c:2437 -msgid "E676: No matching autocommands for acwrite buffer" -msgstr "E676: acwrite" - -#: ../fileio.c:2466 -msgid "E203: Autocommands deleted or unloaded buffer to be written" -msgstr "" -"E203: , , " - -#: ../fileio.c:2486 -msgid "E204: Autocommand changed number of lines in unexpected way" -msgstr "E204: " - -#: ../fileio.c:2548 ../fileio.c:2565 -msgid "is not a file or writable device" -msgstr " , " - -#: ../fileio.c:2601 -msgid "is read-only (add ! to override)" -msgstr " ( !, )" - -#: ../fileio.c:2886 -msgid "E506: Can't write to backup file (add ! to override)" -msgstr "" -"E506: ( !, )" - -#: ../fileio.c:2898 -msgid "E507: Close error for backup file (add ! to override)" -msgstr "" -"E507: ( !, )" - -#: ../fileio.c:2901 -msgid "E508: Can't read file for backup (add ! to override)" -msgstr "" -"E508: ( !, )" - -#: ../fileio.c:2923 -msgid "E509: Cannot create backup file (add ! to override)" -msgstr "" -"E509: ( !, )" - -#: ../fileio.c:3008 -msgid "E510: Can't make backup file (add ! to override)" -msgstr "" -"E510: ( !, )" - -#. Can't write without a tempfile! -#: ../fileio.c:3121 -msgid "E214: Can't find temp file for writing" -msgstr "E214: " - -#: ../fileio.c:3134 -msgid "E213: Cannot convert (add ! to write without conversion)" -msgstr "" -"E213: ( ! )" - -#: ../fileio.c:3169 -msgid "E166: Can't open linked file for writing" -msgstr "E166: " - -#: ../fileio.c:3173 -msgid "E212: Can't open file for writing" -msgstr "E212: " - -#: ../fileio.c:3363 -msgid "E667: Fsync failed" -msgstr "E667: fsync()" - -#: ../fileio.c:3398 -msgid "E512: Close failed" -msgstr "E512: " - -#: ../fileio.c:3436 -msgid "E513: write error, conversion failed (make 'fenc' empty to override)" -msgstr "" -"E513: , ( 'fenc', " -")" - -#: ../fileio.c:3441 -#, c-format -msgid "" -"E513: write error, conversion failed in line %<PRId64> (make 'fenc' empty to " -"override)" -msgstr "" -"E513: , %<PRId64> ( " -"'fenc', )" - -#: ../fileio.c:3448 -msgid "E514: write error (file system full?)" -msgstr "E514: ( ?)" - -#: ../fileio.c:3506 -msgid " CONVERSION ERROR" -msgstr " " - -#: ../fileio.c:3509 -#, c-format -msgid " in line %<PRId64>;" -msgstr " %<PRId64>;" - -#: ../fileio.c:3519 -msgid "[Device]" -msgstr "[]" - -#: ../fileio.c:3522 -msgid "[New]" -msgstr "[]" - -#: ../fileio.c:3535 -msgid " [a]" -msgstr " []" - -#: ../fileio.c:3535 -msgid " appended" -msgstr " " - -#: ../fileio.c:3537 -msgid " [w]" -msgstr " []" - -#: ../fileio.c:3537 -msgid " written" -msgstr " " - -#: ../fileio.c:3579 -msgid "E205: Patchmode: can't save original file" -msgstr "E205: : " - -#: ../fileio.c:3602 -msgid "E206: patchmode: can't touch empty original file" -msgstr "" -"E206: : " - -#: ../fileio.c:3616 -msgid "E207: Can't delete backup file" -msgstr "E207: " - -#: ../fileio.c:3672 -msgid "" -"\n" -"WARNING: Original file may be lost or damaged\n" -msgstr "" -"\n" -": \n" - -#: ../fileio.c:3675 -msgid "don't quit the editor until the file is successfully written!" -msgstr " , !" - -#: ../fileio.c:3795 -msgid "[dos]" -msgstr "[dos]" - -#: ../fileio.c:3795 -msgid "[dos format]" -msgstr "[ dos]" - -#: ../fileio.c:3801 -msgid "[mac]" -msgstr "[mac]" - -#: ../fileio.c:3801 -msgid "[mac format]" -msgstr "[ mac]" - -#: ../fileio.c:3807 -msgid "[unix]" -msgstr "[unix]" - -#: ../fileio.c:3807 -msgid "[unix format]" -msgstr "[ unix]" - -#: ../fileio.c:3831 -msgid "1 line, " -msgstr "1 , " - -#: ../fileio.c:3833 -#, c-format -msgid "%<PRId64> lines, " -msgstr ": %<PRId64>, " - -#: ../fileio.c:3836 -msgid "1 character" -msgstr "1 " - -#: ../fileio.c:3838 -#, c-format -msgid "%<PRId64> characters" -msgstr ": %<PRId64>" - -#: ../fileio.c:3849 -msgid "[noeol]" -msgstr "[noeol]" - -#: ../fileio.c:3849 -msgid "[Incomplete last line]" -msgstr "[ ]" - -#. don't overwrite messages here -#. must give this prompt -#. don't use emsg() here, don't want to flush the buffers -#: ../fileio.c:3865 -msgid "WARNING: The file has been changed since reading it!!!" -msgstr ": !!!" - -#: ../fileio.c:3867 -msgid "Do you really want to write to it" -msgstr " " - -#: ../fileio.c:4648 -#, c-format -msgid "E208: Error writing to \"%s\"" -msgstr "E208: \"%s\"" - -#: ../fileio.c:4655 -#, c-format -msgid "E209: Error closing \"%s\"" -msgstr "E209: \"%s\"" - -#: ../fileio.c:4657 -#, c-format -msgid "E210: Error reading \"%s\"" -msgstr "E210: \"%s\"" - -#: ../fileio.c:4883 -msgid "E246: FileChangedShell autocommand deleted buffer" -msgstr "E246: FileChangedShell" - -#: ../fileio.c:4894 -#, c-format -msgid "E211: File \"%s\" no longer available" -msgstr "E211: \"%s\" " - -#: ../fileio.c:4906 -#, c-format -msgid "" -"W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as " -"well" -msgstr "" -"W12: : \"%s\" Vim " -" " - -#: ../fileio.c:4907 -msgid "See \":help W12\" for more info." -msgstr ". \":help W12\" ." - -#: ../fileio.c:4910 -#, c-format -msgid "W11: Warning: File \"%s\" has changed since editing started" -msgstr "" -"W11: : \"%s\" " - -#: ../fileio.c:4911 -msgid "See \":help W11\" for more info." -msgstr ". \":help W11\" ." - -#: ../fileio.c:4914 -#, c-format -msgid "W16: Warning: Mode of file \"%s\" has changed since editing started" -msgstr "" -"W16: : \"%s\" " -"" - -#: ../fileio.c:4915 -msgid "See \":help W16\" for more info." -msgstr ". \":help W16\" ." - -#: ../fileio.c:4927 -#, c-format -msgid "W13: Warning: File \"%s\" has been created after editing started" -msgstr "" -"W13: : \"%s\" " - -#: ../fileio.c:4947 -msgid "Warning" -msgstr "" - -#: ../fileio.c:4948 -msgid "" -"&OK\n" -"&Load File" -msgstr "" -"&OK\n" -"&L " - -#: ../fileio.c:5065 -#, c-format -msgid "E462: Could not prepare for reloading \"%s\"" -msgstr "E462: \"%s\"" - -#: ../fileio.c:5078 -#, c-format -msgid "E321: Could not reload \"%s\"" -msgstr "E321: \"%s\"" - -#: ../fileio.c:5601 -msgid "--Deleted--" -msgstr "----" - -#: ../fileio.c:5732 -#, c-format -msgid "auto-removing autocommand: %s <buffer=%d>" -msgstr "- : %s <=%d>" - -#. the group doesn't exist -#: ../fileio.c:5772 -#, c-format -msgid "E367: No such group: \"%s\"" -msgstr "E367: \"%s\" " - -#: ../fileio.c:5897 -#, c-format -msgid "E215: Illegal character after *: %s" -msgstr "E215: *: %s" - -#: ../fileio.c:5905 -#, c-format -msgid "E216: No such event: %s" -msgstr "E216: : %s" - -#: ../fileio.c:5907 -#, c-format -msgid "E216: No such group or event: %s" -msgstr "E216: : %s" - -#. Highlight title -#: ../fileio.c:6090 -msgid "" -"\n" -"--- Auto-Commands ---" -msgstr "" -"\n" -"--- ---" - -#: ../fileio.c:6293 -#, c-format -msgid "E680: <buffer=%d>: invalid buffer number " -msgstr "E680: <buffer=%d>: " - -#: ../fileio.c:6370 -msgid "E217: Can't execute autocommands for ALL events" -msgstr "E217: " - -#: ../fileio.c:6393 -msgid "No matching autocommands" -msgstr " " - -#: ../fileio.c:6831 -msgid "E218: autocommand nesting too deep" -msgstr "E218: " - -#: ../fileio.c:7143 -#, c-format -msgid "%s Auto commands for \"%s\"" -msgstr "%s \"%s\"" - -#: ../fileio.c:7149 -#, c-format -msgid "Executing %s" -msgstr " %s" - -#: ../fileio.c:7211 -#, c-format -msgid "autocommand %s" -msgstr " %s" - -#: ../fileio.c:7795 -msgid "E219: Missing {." -msgstr "E219: {." - -#: ../fileio.c:7797 -msgid "E220: Missing }." -msgstr "E220: }." - -#: ../fold.c:93 -msgid "E490: No fold found" -msgstr "E490: " - -#: ../fold.c:544 -msgid "E350: Cannot create fold with current 'foldmethod'" -msgstr "" -"E350: 'foldmethod'" - -#: ../fold.c:546 -msgid "E351: Cannot delete fold with current 'foldmethod'" -msgstr "" -"E351: 'foldmethod'" - -#: ../fold.c:1784 -#, c-format -msgid "+--%3ld lines folded " -msgstr "+--%3ld " - -#. buffer has already been read -#: ../getchar.c:273 -msgid "E222: Add to read buffer" -msgstr "E222: " - -#: ../getchar.c:2040 -msgid "E223: recursive mapping" -msgstr "E223: " - -#: ../getchar.c:2849 -#, c-format -msgid "E224: global abbreviation already exists for %s" -msgstr "E224: %s" - -#: ../getchar.c:2852 -#, c-format -msgid "E225: global mapping already exists for %s" -msgstr "E225: %s" - -#: ../getchar.c:2952 -#, c-format -msgid "E226: abbreviation already exists for %s" -msgstr "E226: %s" - -#: ../getchar.c:2955 -#, c-format -msgid "E227: mapping already exists for %s" -msgstr "E227: %s" - -#: ../getchar.c:3008 -msgid "No abbreviation found" -msgstr " " - -#: ../getchar.c:3010 -msgid "No mapping found" -msgstr " " - -#: ../getchar.c:3974 -msgid "E228: makemap: Illegal mode" -msgstr "E228: makemap: " - -#. key value of 'cedit' option -#. type of cmdline window or 0 -#. result of cmdline window or 0 -#: ../globals.h:924 -msgid "--No lines in buffer--" -msgstr "-- --" - -#. -#. * The error messages that can be shared are included here. -#. * Excluded are errors that are only used once and debugging messages. -#. -#: ../globals.h:996 -msgid "E470: Command aborted" -msgstr "E470: " - -#: ../globals.h:997 -msgid "E471: Argument required" -msgstr "E471: " - -#: ../globals.h:998 -msgid "E10: \\ should be followed by /, ? or &" -msgstr "E10: \\ /, ? &" - -#: ../globals.h:1000 -msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits" -msgstr "" -"E11: ; <CR> , CTRL-C " - -#: ../globals.h:1002 -msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search" -msgstr "" -"E12: exrc/vimrc " - -#: ../globals.h:1003 -msgid "E171: Missing :endif" -msgstr "E171: :endif" - -#: ../globals.h:1004 -msgid "E600: Missing :endtry" -msgstr "E600: :endtry" - -#: ../globals.h:1005 -msgid "E170: Missing :endwhile" -msgstr "E170: :endwhile" - -#: ../globals.h:1006 -msgid "E170: Missing :endfor" -msgstr "E170: :endfor" - -#: ../globals.h:1007 -msgid "E588: :endwhile without :while" -msgstr "E588: :endwhile :while" - -#: ../globals.h:1008 -msgid "E588: :endfor without :for" -msgstr "E588: :endfor :for" - -#: ../globals.h:1009 -msgid "E13: File exists (add ! to override)" -msgstr "E13: ( !, )" - -#: ../globals.h:1010 -msgid "E472: Command failed" -msgstr "E472: " - -#: ../globals.h:1011 -msgid "E473: Internal error" -msgstr "E473: " - -#: ../globals.h:1012 -msgid "Interrupted" -msgstr "" - -#: ../globals.h:1013 -msgid "E14: Invalid address" -msgstr "E14: " - -#: ../globals.h:1014 -msgid "E474: Invalid argument" -msgstr "E474: " - -#: ../globals.h:1015 -#, c-format -msgid "E475: Invalid argument: %s" -msgstr "E475: : %s" - -#: ../globals.h:1016 -#, c-format -msgid "E15: Invalid expression: %s" -msgstr "E15: : %s" - -#: ../globals.h:1017 -msgid "E16: Invalid range" -msgstr "E16: " - -#: ../globals.h:1018 -msgid "E476: Invalid command" -msgstr "E476: " - -#: ../globals.h:1019 -#, c-format -msgid "E17: \"%s\" is a directory" -msgstr "E17: \"%s\" " - -#: ../globals.h:1020 -#, fuzzy -msgid "E900: Invalid job id" -msgstr "E49: " - -#: ../globals.h:1021 -msgid "E901: Job table is full" -msgstr "" - -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - -#: ../globals.h:1024 -#, c-format -msgid "E364: Library call failed for \"%s()\"" -msgstr "E364: \"%s()\" " - -#: ../globals.h:1026 -msgid "E19: Mark has invalid line number" -msgstr "E19: " - -#: ../globals.h:1027 -msgid "E20: Mark not set" -msgstr "E20: " - -#: ../globals.h:1029 -msgid "E21: Cannot make changes, 'modifiable' is off" -msgstr "E21: , 'modifiable'" - -#: ../globals.h:1030 -msgid "E22: Scripts nested too deep" -msgstr "E22: " - -#: ../globals.h:1031 -msgid "E23: No alternate file" -msgstr "E23: " - -#: ../globals.h:1032 -msgid "E24: No such abbreviation" -msgstr "E24: " - -#: ../globals.h:1033 -msgid "E477: No ! allowed" -msgstr "E477: ! " - -#: ../globals.h:1035 -msgid "E25: Nvim does not have a built-in GUI" -msgstr "" -"E25: " -"" - -#: ../globals.h:1036 -#, c-format -msgid "E28: No such highlight group name: %s" -msgstr "E28: %s " - -#: ../globals.h:1037 -msgid "E29: No inserted text yet" -msgstr "E29: " - -#: ../globals.h:1038 -msgid "E30: No previous command line" -msgstr "E30: " - -#: ../globals.h:1039 -msgid "E31: No such mapping" -msgstr "E31: " - -#: ../globals.h:1040 -msgid "E479: No match" -msgstr "E479: " - -#: ../globals.h:1041 -#, c-format -msgid "E480: No match: %s" -msgstr "E480: : %s" - -#: ../globals.h:1042 -msgid "E32: No file name" -msgstr "E32: " - -#: ../globals.h:1044 -msgid "E33: No previous substitute regular expression" -msgstr "E33: " - -#: ../globals.h:1045 -msgid "E34: No previous command" -msgstr "E34: " - -#: ../globals.h:1046 -msgid "E35: No previous regular expression" -msgstr "E35: " - -#: ../globals.h:1047 -msgid "E481: No range allowed" -msgstr "E481: " - -#: ../globals.h:1048 -msgid "E36: Not enough room" -msgstr "E36: " - -#: ../globals.h:1049 -#, c-format -msgid "E482: Can't create file %s" -msgstr "E482: %s" - -#: ../globals.h:1050 -msgid "E483: Can't get temp file name" -msgstr "E483: " - -#: ../globals.h:1051 -#, c-format -msgid "E484: Can't open file %s" -msgstr "E484: %s" - -#: ../globals.h:1052 -#, c-format -msgid "E485: Can't read file %s" -msgstr "E485: %s" - -#: ../globals.h:1054 -msgid "E37: No write since last change (add ! to override)" -msgstr "E37: ( !, )" - -#: ../globals.h:1055 -#, fuzzy -msgid "E37: No write since last change" -msgstr "[ ]\n" - -#: ../globals.h:1056 -msgid "E38: Null argument" -msgstr "E38: " - -#: ../globals.h:1057 -msgid "E39: Number expected" -msgstr "E39: " - -#: ../globals.h:1058 -#, c-format -msgid "E40: Can't open errorfile %s" -msgstr "E40: %s" - -#: ../globals.h:1059 -msgid "E41: Out of memory!" -msgstr "E41: !" - -#: ../globals.h:1060 -msgid "Pattern not found" -msgstr " " - -#: ../globals.h:1061 -#, c-format -msgid "E486: Pattern not found: %s" -msgstr "E486: : %s" - -#: ../globals.h:1062 -msgid "E487: Argument must be positive" -msgstr "E487: " - -#: ../globals.h:1064 -msgid "E459: Cannot go back to previous directory" -msgstr "E459: " - -#: ../globals.h:1066 -msgid "E42: No Errors" -msgstr "E42: " - -#: ../globals.h:1067 -msgid "E776: No location list" -msgstr "E776: " - -#: ../globals.h:1068 -msgid "E43: Damaged match string" -msgstr "E43: " - -#: ../globals.h:1069 -msgid "E44: Corrupted regexp program" -msgstr "E44: " - -#: ../globals.h:1071 -msgid "E45: 'readonly' option is set (add ! to override)" -msgstr "E45: 'readonly' ( !, )" - -#: ../globals.h:1073 -#, c-format -msgid "E46: Cannot change read-only variable \"%s\"" -msgstr "E46: \"%s\"" - -#: ../globals.h:1075 -#, c-format -msgid "E794: Cannot set variable in the sandbox: \"%s\"" -msgstr "E794: : \"%s\"" - -#: ../globals.h:1076 -msgid "E47: Error while reading errorfile" -msgstr "E47: " - -#: ../globals.h:1078 -msgid "E48: Not allowed in sandbox" -msgstr "E48: " - -#: ../globals.h:1080 -msgid "E523: Not allowed here" -msgstr "E523: " - -#: ../globals.h:1082 -msgid "E359: Screen mode setting not supported" -msgstr "E359: " - -#: ../globals.h:1083 -msgid "E49: Invalid scroll size" -msgstr "E49: " - -#: ../globals.h:1084 -msgid "E91: 'shell' option is empty" -msgstr "E91: 'shell' " - -#: ../globals.h:1085 -msgid "E255: Couldn't read in sign data!" -msgstr "E255: !" - -#: ../globals.h:1086 -msgid "E72: Close error on swap file" -msgstr "E72: -" - -#: ../globals.h:1087 -msgid "E73: tag stack empty" -msgstr "E73: " - -#: ../globals.h:1088 -msgid "E74: Command too complex" -msgstr "E74: " - -#: ../globals.h:1089 -msgid "E75: Name too long" -msgstr "E75: " - -#: ../globals.h:1090 -msgid "E76: Too many [" -msgstr "E76: [" - -#: ../globals.h:1091 -msgid "E77: Too many file names" -msgstr "E77: " - -#: ../globals.h:1092 -msgid "E488: Trailing characters" -msgstr "E488: " - -#: ../globals.h:1093 -msgid "E78: Unknown mark" -msgstr "E78: " - -#: ../globals.h:1094 -msgid "E79: Cannot expand wildcards" -msgstr "E79: " - -#: ../globals.h:1096 -msgid "E591: 'winheight' cannot be smaller than 'winminheight'" -msgstr "" -"E591: 'winheight' 'winminheight'" - -#: ../globals.h:1098 -msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'" -msgstr "" -"E592: 'winwidth' 'winminwidth'" - -#: ../globals.h:1099 -msgid "E80: Error while writing" -msgstr "E80: " - -#: ../globals.h:1100 -msgid "Zero count" -msgstr " " - -#: ../globals.h:1101 -msgid "E81: Using <SID> not in a script context" -msgstr "E81: <SID> " - -#: ../globals.h:1102 -#, c-format -msgid "E685: Internal error: %s" -msgstr "E685: : %s" - -#: ../globals.h:1104 -msgid "E363: pattern uses more memory than 'maxmempattern'" -msgstr "E363: 'maxmempattern'" - -#: ../globals.h:1105 -msgid "E749: empty buffer" -msgstr "E749: " - -#: ../globals.h:1108 -msgid "E682: Invalid search pattern or delimiter" -msgstr "E682: " - -#: ../globals.h:1109 -msgid "E139: File is loaded in another buffer" -msgstr "E139: " - -#: ../globals.h:1110 -#, c-format -msgid "E764: Option '%s' is not set" -msgstr "E764: '%s' " - -#: ../globals.h:1111 -msgid "E850: Invalid register name" -msgstr "E850: " - -#: ../globals.h:1114 -msgid "search hit TOP, continuing at BOTTOM" -msgstr " " - -#: ../globals.h:1115 -msgid "search hit BOTTOM, continuing at TOP" -msgstr " " - -#: ../hardcopy.c:240 -msgid "E550: Missing colon" -msgstr "E550: " - -#: ../hardcopy.c:252 -msgid "E551: Illegal component" -msgstr "E551: " - -#: ../hardcopy.c:259 -msgid "E552: digit expected" -msgstr "E552: " - -#: ../hardcopy.c:473 -#, c-format -msgid "Page %d" -msgstr " %d" - -#: ../hardcopy.c:597 -msgid "No text to be printed" -msgstr " " - -#: ../hardcopy.c:668 -#, c-format -msgid "Printing page %d (%d%%)" -msgstr " . %d (%d%%)" - -#: ../hardcopy.c:680 -#, c-format -msgid " Copy %d of %d" -msgstr " %d %d" - -#: ../hardcopy.c:733 -#, c-format -msgid "Printed: %s" -msgstr ": %s" - -#: ../hardcopy.c:740 -msgid "Printing aborted" -msgstr " " - -#: ../hardcopy.c:1365 -msgid "E455: Error writing to PostScript output file" -msgstr "E455: PostScript" - -#: ../hardcopy.c:1747 -#, c-format -msgid "E624: Can't open file \"%s\"" -msgstr "E624: \"%s\"" - -#: ../hardcopy.c:1756 ../hardcopy.c:2470 -#, c-format -msgid "E457: Can't read PostScript resource file \"%s\"" -msgstr "E457: PostScript \"%s\"" - -#: ../hardcopy.c:1772 -#, c-format -msgid "E618: file \"%s\" is not a PostScript resource file" -msgstr "E618: \"%s\" PostScript" - -#: ../hardcopy.c:1788 ../hardcopy.c:1805 ../hardcopy.c:1844 -#, c-format -msgid "E619: file \"%s\" is not a supported PostScript resource file" -msgstr "E619: \"%s\" PostScript" - -#: ../hardcopy.c:1856 -#, c-format -msgid "E621: \"%s\" resource file has wrong version" -msgstr "E621: \"%s\" " - -#: ../hardcopy.c:2225 -msgid "E673: Incompatible multi-byte encoding and character set." -msgstr "E673: ." - -#: ../hardcopy.c:2238 -msgid "E674: printmbcharset cannot be empty with multi-byte encoding." -msgstr "E674: printmbcharset ." - -#: ../hardcopy.c:2254 -msgid "E675: No default font specified for multi-byte printing." -msgstr "E675: ." - -#: ../hardcopy.c:2426 -msgid "E324: Can't open PostScript output file" -msgstr "E324: PostScript" - -#: ../hardcopy.c:2458 -#, c-format -msgid "E456: Can't open file \"%s\"" -msgstr "E456: \"%s\"" - -#: ../hardcopy.c:2583 -msgid "E456: Can't find PostScript resource file \"prolog.ps\"" -msgstr "E456: PostScript \"prolog.ps\" " - -#: ../hardcopy.c:2593 -msgid "E456: Can't find PostScript resource file \"cidfont.ps\"" -msgstr "E456: PostScript \"cidfont.ps\" " - -#: ../hardcopy.c:2622 ../hardcopy.c:2639 ../hardcopy.c:2665 -#, c-format -msgid "E456: Can't find PostScript resource file \"%s.ps\"" -msgstr "E456: PostScript \"%s.ps\" " - -#: ../hardcopy.c:2654 -#, c-format -msgid "E620: Unable to convert to print encoding \"%s\"" -msgstr "E620: \"%s\"" - -#: ../hardcopy.c:2877 -msgid "Sending to printer..." -msgstr " ..." - -#: ../hardcopy.c:2881 -msgid "E365: Failed to print PostScript file" -msgstr "E365: PostScript" - -#: ../hardcopy.c:2883 -msgid "Print job sent." -msgstr " ." - -#: ../if_cscope.c:85 -msgid "Add a new database" -msgstr " " - -#: ../if_cscope.c:87 -msgid "Query for a pattern" -msgstr " " - -#: ../if_cscope.c:89 -msgid "Show this message" -msgstr " " - -#: ../if_cscope.c:91 -msgid "Kill a connection" -msgstr " " - -#: ../if_cscope.c:93 -msgid "Reinit all connections" -msgstr " " - -#: ../if_cscope.c:95 -msgid "Show connections" -msgstr " " - -#: ../if_cscope.c:101 -#, c-format -msgid "E560: Usage: cs[cope] %s" -msgstr "E560: : cs[cope] %s" - -#: ../if_cscope.c:225 -msgid "This cscope command does not support splitting the window.\n" -msgstr " cscope .\n" - -#: ../if_cscope.c:266 -msgid "E562: Usage: cstag <ident>" -msgstr "E562: : cstag <>" - -#: ../if_cscope.c:313 -msgid "E257: cstag: tag not found" -msgstr "E257: cstag: " - -#: ../if_cscope.c:461 -#, c-format -msgid "E563: stat(%s) error: %d" -msgstr "E563: stat(%s): %d" - -#: ../if_cscope.c:551 -#, c-format -msgid "E564: %s is not a directory or a valid cscope database" -msgstr "E564: %s cscope" - -#: ../if_cscope.c:566 -#, c-format -msgid "Added cscope database %s" -msgstr " cscope %s" - -#: ../if_cscope.c:616 -#, c-format -msgid "E262: error reading cscope connection %<PRId64>" -msgstr "E262: cscope %<PRId64>" - -#: ../if_cscope.c:711 -msgid "E561: unknown cscope search type" -msgstr "E561: cscope" - -#: ../if_cscope.c:752 ../if_cscope.c:789 -msgid "E566: Could not create cscope pipes" -msgstr "E566: cscope" - -#: ../if_cscope.c:767 -msgid "E622: Could not fork for cscope" -msgstr "E622: fork() cscope" - -#: ../if_cscope.c:849 -msgid "cs_create_connection setpgid failed" -msgstr "cs_create_connection: setpgid" - -#: ../if_cscope.c:853 ../if_cscope.c:889 -msgid "cs_create_connection exec failed" -msgstr "cs_create_connection: exec" - -#: ../if_cscope.c:863 ../if_cscope.c:902 -msgid "cs_create_connection: fdopen for to_fp failed" -msgstr "cs_create_connection: fdopen to_fp" - -#: ../if_cscope.c:865 ../if_cscope.c:906 -msgid "cs_create_connection: fdopen for fr_fp failed" -msgstr "cs_create_connection: fdopen fr_fp" - -#: ../if_cscope.c:890 -msgid "E623: Could not spawn cscope process" -msgstr "E623: cscope" - -#: ../if_cscope.c:932 -msgid "E567: no cscope connections" -msgstr "E567: cscope " - -#: ../if_cscope.c:1009 -#, c-format -msgid "E469: invalid cscopequickfix flag %c for %c" -msgstr "E469: cscopequickfix %c %c" - -#: ../if_cscope.c:1058 -#, c-format -msgid "E259: no matches found for cscope query %s of %s" -msgstr "E259: cscope %s %s" - -#: ../if_cscope.c:1142 -msgid "cscope commands:\n" -msgstr " cscope:\n" - -#: ../if_cscope.c:1150 -#, c-format -msgid "%-5s: %s%*s (Usage: %s)" -msgstr "%-5s: %s%*s (: %s)" - -#: ../if_cscope.c:1155 -msgid "" -"\n" -" c: Find functions calling this function\n" -" d: Find functions called by this function\n" -" e: Find this egrep pattern\n" -" f: Find this file\n" -" g: Find this definition\n" -" i: Find files #including this file\n" -" s: Find this C symbol\n" -" t: Find this text string\n" -msgstr "" -"\n" -" c: \n" -" d: \n" -" e: egrep\n" -" f: \n" -" g: \n" -" i: (#include) \n" -" s: C-\n" -" t: \n" - -#: ../if_cscope.c:1226 -msgid "E568: duplicate cscope database not added" -msgstr "E568: cscope " - -#: ../if_cscope.c:1335 -#, c-format -msgid "E261: cscope connection %s not found" -msgstr "E261: cscope %s " - -#: ../if_cscope.c:1364 -#, c-format -msgid "cscope connection %s closed" -msgstr " cscope %s " - -#. should not reach here -#: ../if_cscope.c:1486 -msgid "E570: fatal error in cs_manage_matches" -msgstr "E570: cs_manage_matches" - -#: ../if_cscope.c:1693 -#, c-format -msgid "Cscope tag: %s" -msgstr " cscope: %s" - -#: ../if_cscope.c:1711 -msgid "" -"\n" -" # line" -msgstr "" -"\n" -" # " - -#: ../if_cscope.c:1713 -msgid "filename / context / line\n" -msgstr " / / \n" - -#: ../if_cscope.c:1809 -#, c-format -msgid "E609: Cscope error: %s" -msgstr "E609: cscope: %s" - -#: ../if_cscope.c:2053 -msgid "All cscope databases reset" -msgstr " cscope" - -#: ../if_cscope.c:2123 -msgid "no cscope connections\n" -msgstr " cscope \n" - -#: ../if_cscope.c:2126 -msgid " # pid database name prepend path\n" -msgstr " # pid \n" - -#: ../main.c:144 -msgid "Unknown option argument" -msgstr " " - -#: ../main.c:146 -msgid "Too many edit arguments" -msgstr " " - -#: ../main.c:148 -msgid "Argument missing after" -msgstr " " - -#: ../main.c:150 -msgid "Garbage after option argument" -msgstr " " - -#: ../main.c:152 -msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments" -msgstr "" -" \"+\", \"-c \" \"--cmd \"" - -#: ../main.c:154 -msgid "Invalid argument for" -msgstr " " - -#: ../main.c:294 -#, c-format -msgid "%d files to edit\n" -msgstr " : %d\n" - -#: ../main.c:1342 -msgid "Attempt to open script file again: \"" -msgstr " : \"" - -#: ../main.c:1350 -msgid "Cannot open for reading: \"" -msgstr " : \"" - -#: ../main.c:1393 -msgid "Cannot open for script output: \"" -msgstr " : \"" - -#: ../main.c:1622 -msgid "Vim: Warning: Output is not to a terminal\n" -msgstr "Vim: : \n" - -#: ../main.c:1624 -msgid "Vim: Warning: Input is not from a terminal\n" -msgstr "Vim: : \n" - -#. just in case.. -#: ../main.c:1891 -msgid "pre-vimrc command line" -msgstr " vimrc" - -#: ../main.c:1964 -#, c-format -msgid "E282: Cannot read from \"%s\"" -msgstr "E282: \"%s\"" - -#: ../main.c:2149 -msgid "" -"\n" -"More info with: \"vim -h\"\n" -msgstr "" -"\n" -" : \"vim -h\"\n" - -#: ../main.c:2178 -msgid "[file ..] edit specified file(s)" -msgstr "[ ..] " - -#: ../main.c:2179 -msgid "- read text from stdin" -msgstr "- stdin" - -#: ../main.c:2180 -msgid "-t tag edit file where tag is defined" -msgstr "-t " - -# \n\t\t.. 80 -#: ../main.c:2181 -msgid "-q [errorfile] edit file with first error" -msgstr "" -"-q [-]\n" -"\t\t\t\t " - -#: ../main.c:2187 -msgid "" -"\n" -"\n" -"usage:" -msgstr "" -"\n" -"\n" -":" - -#: ../main.c:2189 -msgid " vim [arguments] " -msgstr " vim [] " - -#: ../main.c:2193 -msgid "" -"\n" -" or:" -msgstr "" -"\n" -" :" - -#: ../main.c:2196 -msgid "" -"\n" -"\n" -"Arguments:\n" -msgstr "" -"\n" -"\n" -":\n" - -#: ../main.c:2197 -msgid "--\t\t\tOnly file names after this" -msgstr "--\t\t\t " - -#: ../main.c:2199 -msgid "--literal\t\tDon't expand wildcards" -msgstr "--literal\t\t " - -#: ../main.c:2201 -msgid "-v\t\t\tVi mode (like \"vi\")" -msgstr "-v\t\t\t Vi ( \"vi\")" - -#: ../main.c:2202 -msgid "-e\t\t\tEx mode (like \"ex\")" -msgstr "-e\t\t\t Ex ( \"ex\")" - -#: ../main.c:2203 -msgid "-E\t\t\tImproved Ex mode" -msgstr "-E\t\t\t Ex" - -#: ../main.c:2204 -msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")" -msgstr "-s\t\t\t () ( \"ex\")" - -#: ../main.c:2205 -msgid "-d\t\t\tDiff mode (like \"vimdiff\")" -msgstr "-d\t\t\t ( \"vimdiff\")" - -#: ../main.c:2206 -msgid "-y\t\t\tEasy mode (like \"evim\", modeless)" -msgstr "-y\t\t\t ( \"evim\", )" - -#: ../main.c:2207 -msgid "-R\t\t\tReadonly mode (like \"view\")" -msgstr "-R\t\t\t ( \"view\")" - -#: ../main.c:2208 -msgid "-Z\t\t\tRestricted mode (like \"rvim\")" -msgstr "-Z\t\t\t ( \"rvim\")" - -#: ../main.c:2209 -msgid "-m\t\t\tModifications (writing files) not allowed" -msgstr "-m\t\t\t ( )" - -#: ../main.c:2210 -msgid "-M\t\t\tModifications in text not allowed" -msgstr "-M\t\t\t " - -#: ../main.c:2211 -msgid "-b\t\t\tBinary mode" -msgstr "-b\t\t\t " - -#: ../main.c:2212 -msgid "-l\t\t\tLisp mode" -msgstr "-l\t\t\t Lisp" - -#: ../main.c:2213 -msgid "-C\t\t\tCompatible with Vi: 'compatible'" -msgstr "-C\t\t\t Vi: 'compatible'" - -#: ../main.c:2214 -msgid "-N\t\t\tNot fully Vi compatible: 'nocompatible'" -msgstr "-N\t\t\t Vi: 'nocompatible'" - -# \n\t\t.. 80 -#: ../main.c:2215 -msgid "-V[N][fname]\t\tBe verbose [level N] [log messages to fname]" -msgstr "" -"-V[N][]\t\t \n" -"\t\t\t\t[ N] [ ]" - -#: ../main.c:2216 -msgid "-D\t\t\tDebugging mode" -msgstr "-D\t\t\t " - -#: ../main.c:2217 -msgid "-n\t\t\tNo swap file, use memory only" -msgstr "-n\t\t\t -, " - -#: ../main.c:2218 -msgid "-r\t\t\tList swap files and exit" -msgstr "-r\t\t\t - " - -#: ../main.c:2219 -msgid "-r (with file name)\tRecover crashed session" -msgstr "-r ( )\t " - -#: ../main.c:2220 -msgid "-L\t\t\tSame as -r" -msgstr "-L\t\t\t , -r" - -#: ../main.c:2221 -msgid "-A\t\t\tstart in Arabic mode" -msgstr "-A\t\t\t " - -#: ../main.c:2222 -msgid "-H\t\t\tStart in Hebrew mode" -msgstr "-H\t\t\t \"\"" - -#: ../main.c:2223 -msgid "-F\t\t\tStart in Farsi mode" -msgstr "-F\t\t\t \"\"" - -#: ../main.c:2224 -msgid "-T <terminal>\tSet terminal type to <terminal>" -msgstr "-T <>\t <>" - -#: ../main.c:2225 -msgid "-u <vimrc>\t\tUse <vimrc> instead of any .vimrc" -msgstr "-u <vimrc>\t\t <vimrc> .vimrc" - -#: ../main.c:2226 -msgid "--noplugin\t\tDon't load plugin scripts" -msgstr "--noplugin\t\t " - -# \n\t\t.. 80 -#: ../main.c:2227 -msgid "-p[N]\t\tOpen N tab pages (default: one for each file)" -msgstr "" -"-p[N]\t\t N ( : \n" -"\t\t\t\t )" - -# \n\t\t.. 80 -#: ../main.c:2228 -msgid "-o[N]\t\tOpen N windows (default: one for each file)" -msgstr "" -"-o[N]\t\t N ( : \n" -"\t\t\t\t )" - -#: ../main.c:2229 -msgid "-O[N]\t\tLike -o but split vertically" -msgstr "-O[N]\t\t , -o, " - -#: ../main.c:2230 -msgid "+\t\t\tStart at end of file" -msgstr "+\t\t\t " - -#: ../main.c:2231 -msgid "+<lnum>\t\tStart at line <lnum>" -msgstr "+<lnum>\t\t <lnum>" - -#: ../main.c:2232 -msgid "--cmd <command>\tExecute <command> before loading any vimrc file" -msgstr "--cmd <>\t <> vimrc" - -#: ../main.c:2233 -msgid "-c <command>\t\tExecute <command> after loading the first file" -msgstr "-c <>\t\t <> " - -# \n\t\t.. 80 -#: ../main.c:2235 -msgid "-S <session>\t\tSource file <session> after loading the first file" -msgstr "" -"-S <>\t\t <> \n" -"\t\t\t\t " - -# \n\t\t.. 80 -#: ../main.c:2236 -msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>" -msgstr "" -"-s <>\t \n" -"\t\t\t\t <>" - -#: ../main.c:2237 -msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>" -msgstr "-w <>\t <>" - -#: ../main.c:2238 -msgid "-W <scriptout>\tWrite all typed commands to file <scriptout>" -msgstr "-W <>\t <>" - -#: ../main.c:2240 -msgid "--startuptime <file>\tWrite startup timing messages to <file>" -msgstr "--startuptime <>\t <>" - -#: ../main.c:2242 -msgid "-i <viminfo>\t\tUse <viminfo> instead of .viminfo" -msgstr "-i <viminfo>\t\t .viminfo <viminfo>" - -#: ../main.c:2243 -msgid "-h or --help\tPrint Help (this message) and exit" -msgstr "-h --help\t ( ) " - -#: ../main.c:2244 -msgid "--version\t\tPrint version information and exit" -msgstr "--version\t\t Vim " - -#: ../mark.c:676 -msgid "No marks set" -msgstr " " - -#: ../mark.c:678 -#, c-format -msgid "E283: No marks matching \"%s\"" -msgstr "E283: , \"%s\"" - -#. Highlight title -#: ../mark.c:687 -msgid "" -"\n" -"mark line col file/text" -msgstr "" -"\n" -" /" - -#. Highlight title -#: ../mark.c:789 -msgid "" -"\n" -" jump line col file/text" -msgstr "" -"\n" -" /" - -#. Highlight title -#: ../mark.c:831 -msgid "" -"\n" -"change line col text" -msgstr "" -"\n" -". " - -#: ../mark.c:1238 -msgid "" -"\n" -"# File marks:\n" -msgstr "" -"\n" -"# :\n" - -#. Write the jumplist with -' -#: ../mark.c:1271 -msgid "" -"\n" -"# Jumplist (newest first):\n" -msgstr "" -"\n" -"# ( ):\n" - -#: ../mark.c:1352 -msgid "" -"\n" -"# History of marks within files (newest to oldest):\n" -msgstr "" -"\n" -"# ( ):\n" - -#: ../mark.c:1431 -msgid "Missing '>'" -msgstr " '>'" - -#: ../memfile.c:426 -msgid "E293: block was not locked" -msgstr "E293: " - -#: ../memfile.c:799 -msgid "E294: Seek error in swap file read" -msgstr "E294: -" - -#: ../memfile.c:803 -msgid "E295: Read error in swap file" -msgstr "E295: -" - -#: ../memfile.c:849 -msgid "E296: Seek error in swap file write" -msgstr "E296: -" - -#: ../memfile.c:865 -msgid "E297: Write error in swap file" -msgstr "E297: -" - -#: ../memfile.c:1036 -msgid "E300: Swap file already exists (symlink attack?)" -msgstr "" -"E300: - ( ?)" - -#: ../memline.c:318 -msgid "E298: Didn't get block nr 0?" -msgstr "E298: 0?" - -#: ../memline.c:361 -msgid "E298: Didn't get block nr 1?" -msgstr "E298: 1?" - -#: ../memline.c:377 -msgid "E298: Didn't get block nr 2?" -msgstr "E298: 2?" - -#. could not (re)open the swap file, what can we do???? -#: ../memline.c:465 -msgid "E301: Oops, lost the swap file!!!" -msgstr "E301: , -!!!" - -#: ../memline.c:477 -msgid "E302: Could not rename swap file" -msgstr "E302: -" - -#: ../memline.c:554 -#, c-format -msgid "E303: Unable to open swap file for \"%s\", recovery impossible" -msgstr "" -"E303: - \"%s\", " - -#: ../memline.c:666 -msgid "E304: ml_upd_block0(): Didn't get block 0??" -msgstr "E304: ml_upd_block0(): 0??" - -#. no swap files found -#: ../memline.c:830 -#, c-format -msgid "E305: No swap file found for %s" -msgstr "E305: - %s " - -#: ../memline.c:839 -msgid "Enter number of swap file to use (0 to quit): " -msgstr "" -" -, (0 ): " - -#: ../memline.c:879 -#, c-format -msgid "E306: Cannot open %s" -msgstr "E306: %s" - -#: ../memline.c:897 -msgid "Unable to read block 0 from " -msgstr " 0 " - -#: ../memline.c:900 -msgid "" -"\n" -"Maybe no changes were made or Vim did not update the swap file." -msgstr "" -"\n" -" , Vim -" - -#: ../memline.c:909 -msgid " cannot be used with this version of Vim.\n" -msgstr " Vim.\n" - -#: ../memline.c:911 -msgid "Use Vim version 3.0.\n" -msgstr " Vim 3.0.\n" - -#: ../memline.c:916 -#, c-format -msgid "E307: %s does not look like a Vim swap file" -msgstr "E307: %s - Vim" - -#: ../memline.c:922 -msgid " cannot be used on this computer.\n" -msgstr " .\n" - -#: ../memline.c:924 -msgid "The file was created on " -msgstr " " - -#: ../memline.c:928 -msgid "" -",\n" -"or the file has been damaged." -msgstr "" -",\n" -" ." - -#: ../memline.c:945 -msgid " has been damaged (page size is smaller than minimum value).\n" -msgstr " ( ).\n" - -#: ../memline.c:974 -#, c-format -msgid "Using swap file \"%s\"" -msgstr " - \"%s\"" - -#: ../memline.c:980 -#, c-format -msgid "Original file \"%s\"" -msgstr " \"%s\"" - -#: ../memline.c:995 -msgid "E308: Warning: Original file may have been changed" -msgstr "E308: : " - -#: ../memline.c:1061 -#, c-format -msgid "E309: Unable to read block 1 from %s" -msgstr "E309: 1 %s" - -#: ../memline.c:1065 -msgid "???MANY LINES MISSING" -msgstr "??? " - -#: ../memline.c:1076 -msgid "???LINE COUNT WRONG" -msgstr "??? ר " - -#: ../memline.c:1082 -msgid "???EMPTY BLOCK" -msgstr "??? " - -#: ../memline.c:1103 -msgid "???LINES MISSING" -msgstr "??? " - -#: ../memline.c:1128 -#, c-format -msgid "E310: Block 1 ID wrong (%s not a .swp file?)" -msgstr "E310: 1 ID (%s .swp?)" - -#: ../memline.c:1133 -msgid "???BLOCK MISSING" -msgstr "??? " - -#: ../memline.c:1147 -msgid "??? from here until ???END lines may be messed up" -msgstr "??? ???" - -#: ../memline.c:1164 -msgid "??? from here until ???END lines may have been inserted/deleted" -msgstr "??? ???" - -#: ../memline.c:1181 -msgid "???END" -msgstr "???" - -#: ../memline.c:1238 -msgid "E311: Recovery Interrupted" -msgstr "E311: " - -#: ../memline.c:1243 -msgid "" -"E312: Errors detected while recovering; look for lines starting with ???" -msgstr "" -"E312: ; . , " -" ???" - -#: ../memline.c:1245 -msgid "See \":help E312\" for more information." -msgstr ". \":help E312\" ." - -#: ../memline.c:1249 -msgid "Recovery completed. You should check if everything is OK." -msgstr " . , ." - -#: ../memline.c:1251 -msgid "" -"\n" -"(You might want to write out this file under another name\n" -msgstr "" -"\n" -"( \n" - -#: ../memline.c:1252 -msgid "and run diff with the original file to check for changes)" -msgstr " diff)" - -#: ../memline.c:1254 -msgid "Recovery completed. Buffer contents equals file contents." -msgstr " . ." - -#: ../memline.c:1255 -msgid "" -"\n" -"You may want to delete the .swp file now.\n" -"\n" -msgstr "" -"\n" -", .swp.\n" -"\n" - -#. use msg() to start the scrolling properly -#: ../memline.c:1327 -msgid "Swap files found:" -msgstr " -:" - -#: ../memline.c:1446 -msgid " In current directory:\n" -msgstr " :\n" - -#: ../memline.c:1448 -msgid " Using specified name:\n" -msgstr " :\n" - -#: ../memline.c:1450 -msgid " In directory " -msgstr " " - -#: ../memline.c:1465 -msgid " -- none --\n" -msgstr " -- --\n" - -#: ../memline.c:1527 -msgid " owned by: " -msgstr " : " - -#: ../memline.c:1529 -msgid " dated: " -msgstr " : " - -#: ../memline.c:1532 ../memline.c:3231 -msgid " dated: " -msgstr " : " - -#: ../memline.c:1548 -msgid " [from Vim version 3.0]" -msgstr " [ Vim 3.0]" - -#: ../memline.c:1550 -msgid " [does not look like a Vim swap file]" -msgstr " [ - Vim]" - -#: ../memline.c:1552 -msgid " file name: " -msgstr " : " - -#: ../memline.c:1558 -msgid "" -"\n" -" modified: " -msgstr "" -"\n" -" : " - -#: ../memline.c:1559 -msgid "YES" -msgstr "" - -#: ../memline.c:1559 -msgid "no" -msgstr "" - -#: ../memline.c:1562 -msgid "" -"\n" -" user name: " -msgstr "" -"\n" -" : " - -#: ../memline.c:1568 -msgid " host name: " -msgstr " : " - -#: ../memline.c:1570 -msgid "" -"\n" -" host name: " -msgstr "" -"\n" -" : " - -#: ../memline.c:1575 -msgid "" -"\n" -" process ID: " -msgstr "" -"\n" -" : " - -#: ../memline.c:1579 -msgid " (still running)" -msgstr " ( )" - -#: ../memline.c:1586 -msgid "" -"\n" -" [not usable on this computer]" -msgstr "" -"\n" -" [ ]" - -#: ../memline.c:1590 -msgid " [cannot be read]" -msgstr " [ ]" - -#: ../memline.c:1593 -msgid " [cannot be opened]" -msgstr " [ ]" - -#: ../memline.c:1698 -msgid "E313: Cannot preserve, there is no swap file" -msgstr "E313: -, " - -#: ../memline.c:1747 -msgid "File preserved" -msgstr "- " - -#: ../memline.c:1749 -msgid "E314: Preserve failed" -msgstr "E314: -" - -#: ../memline.c:1819 -#, c-format -msgid "E315: ml_get: invalid lnum: %<PRId64>" -msgstr "E315: ml_get: lnum: %<PRId64>" - -#: ../memline.c:1851 -#, c-format -msgid "E316: ml_get: cannot find line %<PRId64>" -msgstr "E316: ml_get: %<PRId64>" - -#: ../memline.c:2236 -msgid "E317: pointer block id wrong 3" -msgstr "E317: 3" - -#: ../memline.c:2311 -msgid "stack_idx should be 0" -msgstr " stack_idx 0" - -#: ../memline.c:2369 -msgid "E318: Updated too many blocks?" -msgstr "E318: ?" - -#: ../memline.c:2511 -msgid "E317: pointer block id wrong 4" -msgstr "E317: 4" - -#: ../memline.c:2536 -msgid "deleted block 1?" -msgstr " 1?" - -#: ../memline.c:2707 -#, c-format -msgid "E320: Cannot find line %<PRId64>" -msgstr "E320: %<PRId64> " - -#: ../memline.c:2916 -msgid "E317: pointer block id wrong" -msgstr "E317: " - -#: ../memline.c:2930 -msgid "pe_line_count is zero" -msgstr " pe_line_count " - -#: ../memline.c:2955 -#, c-format -msgid "E322: line number out of range: %<PRId64> past the end" -msgstr "E322: : %<PRId64>" - -#: ../memline.c:2959 -#, c-format -msgid "E323: line count wrong in block %<PRId64>" -msgstr "E323: %<PRId64>" - -#: ../memline.c:2999 -msgid "Stack size increases" -msgstr " " - -#: ../memline.c:3038 -msgid "E317: pointer block id wrong 2" -msgstr "E317: 2" - -#: ../memline.c:3070 -#, c-format -msgid "E773: Symlink loop for \"%s\"" -msgstr "E773: \"%s\"" - -#: ../memline.c:3221 -msgid "E325: ATTENTION" -msgstr "E325: " - -#: ../memline.c:3222 -msgid "" -"\n" -"Found a swap file by the name \"" -msgstr "" -"\n" -" - \"" - -# , . -#: ../memline.c:3226 -msgid "While opening file \"" -msgstr " : \"" - -#: ../memline.c:3239 -msgid " NEWER than swap file!\n" -msgstr " , -!\n" - -#: ../memline.c:3244 -msgid "" -"\n" -"(1) Another program may be editing the same file. If this is the case,\n" -" be careful not to end up with two different instances of the same\n" -" file when making changes." -msgstr "" -"\n" -"(1) , .\n" -" , , \n" -" ." - -# , " \n" .. . -#: ../memline.c:3245 -msgid " Quit, or continue with caution.\n" -msgstr "" -" \n" -" .\n" - -#: ../memline.c:3246 -msgid "(2) An edit session for this file crashed.\n" -msgstr "(2) .\n" - -#: ../memline.c:3247 -msgid " If this is the case, use \":recover\" or \"vim -r " -msgstr " , \":recover\" \"vim -r " - -#: ../memline.c:3249 -msgid "" -"\"\n" -" to recover the changes (see \":help recovery\").\n" -msgstr "" -"\"\n" -" (. \":help recovery\").\n" - -#: ../memline.c:3250 -msgid " If you did this already, delete the swap file \"" -msgstr " , - \"" - -#: ../memline.c:3252 -msgid "" -"\"\n" -" to avoid this message.\n" -msgstr "" -"\"\n" -" .\n" - -#: ../memline.c:3450 ../memline.c:3452 -msgid "Swap file \"" -msgstr "- \"" - -#: ../memline.c:3451 ../memline.c:3455 -msgid "\" already exists!" -msgstr "\" !" - -#: ../memline.c:3457 -msgid "VIM - ATTENTION" -msgstr "VIM " - -#: ../memline.c:3459 -msgid "Swap file already exists!" -msgstr "- !" - -#: ../memline.c:3464 -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Quit\n" -"&Abort" -msgstr "" -"&O \n" -"&E \n" -"&R \n" -"&Q \n" -"&A " - -#: ../memline.c:3467 -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Delete it\n" -"&Quit\n" -"&Abort" -msgstr "" -"&O \n" -"&E \n" -"&R \n" -"&D \n" -"&Q \n" -"&A " - -#. -#. * Change the ".swp" extension to find another file that can be used. -#. * First decrement the last char: ".swo", ".swn", etc. -#. * If that still isn't enough decrement the last but one char: ".svz" -#. * Can happen when editing many "No Name" buffers. -#. -#. ".s?a" -#. ".saa": tried enough, give up -#: ../memline.c:3528 -msgid "E326: Too many swap files found" -msgstr "E326: -" - -#: ../memory.c:227 -#, c-format -msgid "E342: Out of memory! (allocating %<PRIu64> bytes)" -msgstr "E342: ! ( %<PRIu64> )" - -#: ../menu.c:62 -msgid "E327: Part of menu-item path is not sub-menu" -msgstr "E327: " - -#: ../menu.c:63 -msgid "E328: Menu only exists in another mode" -msgstr "E328: " - -#: ../menu.c:64 -#, c-format -msgid "E329: No menu \"%s\"" -msgstr "E329: %s" - -#. Only a mnemonic or accelerator is not valid. -#: ../menu.c:329 -msgid "E792: Empty menu name" -msgstr "E792: " - -#: ../menu.c:340 -msgid "E330: Menu path must not lead to a sub-menu" -msgstr "E330: " - -#: ../menu.c:365 -msgid "E331: Must not add menu items directly to menu bar" -msgstr "E331: " - -#: ../menu.c:370 -msgid "E332: Separator cannot be part of a menu path" -msgstr "E332: " - -#. Now we have found the matching menu, and we list the mappings -#. Highlight title -#: ../menu.c:762 -msgid "" -"\n" -"--- Menus ---" -msgstr "" -"\n" -"--- ---" - -#: ../menu.c:1313 -msgid "E333: Menu path must lead to a menu item" -msgstr "E333: " - -#: ../menu.c:1330 -#, c-format -msgid "E334: Menu not found: %s" -msgstr "E334: : %s" - -#: ../menu.c:1396 -#, c-format -msgid "E335: Menu not defined for %s mode" -msgstr "E335: %s" - -#: ../menu.c:1426 -msgid "E336: Menu path must lead to a sub-menu" -msgstr "E336: " - -#: ../menu.c:1447 -msgid "E337: Menu not found - check menu names" -msgstr "E337: " - -#: ../message.c:423 -#, c-format -msgid "Error detected while processing %s:" -msgstr " %s:" - -#: ../message.c:445 -#, c-format -msgid "line %4ld:" -msgstr " %4ld:" - -#: ../message.c:617 -#, c-format -msgid "E354: Invalid register name: '%s'" -msgstr "E354: : '%s'" - -#: ../message.c:986 -msgid "Interrupt: " -msgstr ": " - -#: ../message.c:988 -msgid "Press ENTER or type command to continue" -msgstr " ENTER " - -#: ../message.c:1843 -#, c-format -msgid "%s line %<PRId64>" -msgstr "%s %<PRId64>" - -#: ../message.c:2392 -msgid "-- More --" -msgstr "-- --" - -#: ../message.c:2398 -msgid " SPACE/d/j: screen/page/line down, b/u/k: up, q: quit " -msgstr " SPACE/d/j: // , b/u/k: , q: " - -#: ../message.c:3021 ../message.c:3031 -msgid "Question" -msgstr "" - -#: ../message.c:3023 -msgid "" -"&Yes\n" -"&No" -msgstr "" -"&Y \n" -"&N " - -#: ../message.c:3033 -msgid "" -"&Yes\n" -"&No\n" -"&Cancel" -msgstr "" -"&\n" -"&\n" -"&" - -#: ../message.c:3045 -msgid "" -"&Yes\n" -"&No\n" -"Save &All\n" -"&Discard All\n" -"&Cancel" -msgstr "" -"&Y \n" -"&N \n" -"&A \n" -"&D \n" -"&C " - -#: ../message.c:3058 -msgid "E766: Insufficient arguments for printf()" -msgstr "E766: printf()" - -#: ../message.c:3119 -msgid "E807: Expected Float argument for printf()" -msgstr "E807: printf()" - -#: ../message.c:3873 -msgid "E767: Too many arguments to printf()" -msgstr "E767: printf()" - -#: ../misc1.c:2256 -msgid "W10: Warning: Changing a readonly file" -msgstr "W10: : " - -#: ../misc1.c:2537 -msgid "Type number and <Enter> or click with mouse (empty cancels): " -msgstr " <Enter> ( ): " - -#: ../misc1.c:2539 -msgid "Type number and <Enter> (empty cancels): " -msgstr " <Enter> ( ): " - -#: ../misc1.c:2585 -msgid "1 more line" -msgstr " " - -#: ../misc1.c:2588 -msgid "1 line less" -msgstr " " - -#: ../misc1.c:2593 -#, c-format -msgid "%<PRId64> more lines" -msgstr " : %<PRId64>" - -#: ../misc1.c:2596 -#, c-format -msgid "%<PRId64> fewer lines" -msgstr " : %<PRId64>" - -#: ../misc1.c:2599 -msgid " (Interrupted)" -msgstr " ()" - -#: ../misc1.c:2635 -msgid "Beep!" -msgstr "-!" - -#: ../misc2.c:738 -#, c-format -msgid "Calling shell to execute: \"%s\"" -msgstr " : \"%s\"" - -#: ../normal.c:183 -msgid "E349: No identifier under cursor" -msgstr "E349: " - -#: ../normal.c:1866 -msgid "E774: 'operatorfunc' is empty" -msgstr "E774: 'operatorfunc' " - -#: ../normal.c:2637 -msgid "Warning: terminal cannot highlight" -msgstr ": " - -#: ../normal.c:2807 -msgid "E348: No string under cursor" -msgstr "E348: " - -#: ../normal.c:3937 -msgid "E352: Cannot erase folds with current 'foldmethod'" -msgstr "" -"E352: 'foldmethod'" - -#: ../normal.c:5897 -msgid "E664: changelist is empty" -msgstr "E664: " - -#: ../normal.c:5899 -msgid "E662: At start of changelist" -msgstr "E662: " - -#: ../normal.c:5901 -msgid "E663: At end of changelist" -msgstr "E663: " - -#: ../normal.c:7053 -msgid "Type :quit<Enter> to exit Nvim" -msgstr " :quit<Enter> Vim" - -#: ../ops.c:248 -#, c-format -msgid "1 line %sed 1 time" -msgstr " 1 (%s 1 )" - -#: ../ops.c:250 -#, c-format -msgid "1 line %sed %d times" -msgstr " 1 (%s %d )" - -#: ../ops.c:253 -#, c-format -msgid "%<PRId64> lines %sed 1 time" -msgstr " , %<PRId64> (%s 1 )" - -#: ../ops.c:256 -#, c-format -msgid "%<PRId64> lines %sed %d times" -msgstr " , %<PRId64> (%s %d )" - -#: ../ops.c:592 -#, c-format -msgid "%<PRId64> lines to indent... " -msgstr " (%<PRId64>)..." - -#: ../ops.c:634 -msgid "1 line indented " -msgstr " " - -#: ../ops.c:636 -#, c-format -msgid "%<PRId64> lines indented " -msgstr " (%<PRId64>) " - -#: ../ops.c:938 -msgid "E748: No previously used register" -msgstr "E748: " - -#. must display the prompt -#: ../ops.c:1433 -msgid "cannot yank; delete anyway" -msgstr " , " - -#: ../ops.c:1929 -msgid "1 line changed" -msgstr " 1 " - -#: ../ops.c:1931 -#, c-format -msgid "%<PRId64> lines changed" -msgstr " : %<PRId64>" - -#: ../ops.c:2521 -msgid "block of 1 line yanked" -msgstr " " - -#: ../ops.c:2523 -msgid "1 line yanked" -msgstr " " - -#: ../ops.c:2525 -#, c-format -msgid "block of %<PRId64> lines yanked" -msgstr " : %<PRId64>" - -#: ../ops.c:2528 -#, c-format -msgid "%<PRId64> lines yanked" -msgstr " : %<PRId64>" - -#: ../ops.c:2710 -#, c-format -msgid "E353: Nothing in register %s" -msgstr "E353: %s " - -#. Highlight title -#: ../ops.c:3185 -msgid "" -"\n" -"--- Registers ---" -msgstr "" -"\n" -"--- ---" - -#: ../ops.c:4455 -msgid "Illegal register name" -msgstr " " - -#: ../ops.c:4533 -msgid "" -"\n" -"# Registers:\n" -msgstr "" -"\n" -"# :\n" - -#: ../ops.c:4575 -#, c-format -msgid "E574: Unknown register type %d" -msgstr "E574: %d" - -msgid "" -"E883: search pattern and expression register may not contain two or more " -"lines" -msgstr "" -"E883: " -"" - -#: ../ops.c:5089 -#, c-format -msgid "%<PRId64> Cols; " -msgstr ": %<PRId64>; " - -#: ../ops.c:5097 -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Bytes" -msgstr "" -" %s%<PRId64> %<PRId64> ; %<PRId64> %<PRId64> ; " -"%<PRId64> %<PRId64> " - -#: ../ops.c:5105 -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Chars; %<PRId64> of %<PRId64> Bytes" -msgstr "" -" %s%<PRId64> %<PRId64> .; %<PRId64> %<PRId64> ; " -"%<PRId64> %<PRId64> .; %<PRId64> %<PRId64> " - -#: ../ops.c:5123 -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Byte " -"%<PRId64> of %<PRId64>" -msgstr "" -". %s %s; . %<PRId64> %<PRId64>; . %<PRId64> %<PRId64>; " -"%<PRId64> %<PRId64>" - -#: ../ops.c:5133 -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Char " -"%<PRId64> of %<PRId64>; Byte %<PRId64> of %<PRId64>" -msgstr "" -". %s %s; . %<PRId64> %<PRId64>; . %<PRId64> %<PRId64>; " -". %<PRId64> %<PRId64>; %<PRId64> %<PRId64>" - -#: ../ops.c:5146 -#, c-format -msgid "(+%<PRId64> for BOM)" -msgstr "(+%<PRId64> BOM)" - -#: ../option.c:1238 -msgid "%<%f%h%m%=Page %N" -msgstr "%<%f%h%m%=. %N" - -#: ../option.c:1574 -msgid "Thanks for flying Vim" -msgstr " Vim" - -#. found a mismatch: skip -#: ../option.c:2698 -msgid "E518: Unknown option" -msgstr "E518: " - -#: ../option.c:2709 -msgid "E519: Option not supported" -msgstr "E519: " - -#: ../option.c:2740 -msgid "E520: Not allowed in a modeline" -msgstr "E520: " - -#: ../option.c:2815 -msgid "E846: Key code not set" -msgstr "E846: " - -#: ../option.c:2924 -msgid "E521: Number required after =" -msgstr "E521: = " - -#: ../option.c:3226 ../option.c:3864 -msgid "E522: Not found in termcap" -msgstr "E522: termcap" - -#: ../option.c:3335 -#, c-format -msgid "E539: Illegal character <%s>" -msgstr "E539: <%s>" - -#: ../option.c:3862 -msgid "E529: Cannot set 'term' to empty string" -msgstr "E529: 'term' " - -#: ../option.c:3885 -msgid "E589: 'backupext' and 'patchmode' are equal" -msgstr "E589: 'backupext' 'patchmode' " - -#: ../option.c:3964 -msgid "E834: Conflicts with value of 'listchars'" -msgstr "E834: 'listchars'" - -#: ../option.c:3966 -msgid "E835: Conflicts with value of 'fillchars'" -msgstr "E835: 'fillchars'" - -#: ../option.c:4163 -msgid "E524: Missing colon" -msgstr "E524: " - -#: ../option.c:4165 -msgid "E525: Zero length string" -msgstr "E525: " - -#: ../option.c:4220 -#, c-format -msgid "E526: Missing number after <%s>" -msgstr "E526: <%s>" - -#: ../option.c:4232 -msgid "E527: Missing comma" -msgstr "E527: " - -#: ../option.c:4239 -msgid "E528: Must specify a ' value" -msgstr "E528: '" - -#: ../option.c:4271 -msgid "E595: contains unprintable or wide character" -msgstr "E595: " - -#: ../option.c:4469 -#, c-format -msgid "E535: Illegal character after <%c>" -msgstr "E535: <%c>" - -#: ../option.c:4534 -msgid "E536: comma required" -msgstr "E536: " - -#: ../option.c:4543 -#, c-format -msgid "E537: 'commentstring' must be empty or contain %s" -msgstr "" -"E537: 'commentstring' " -" %s" - -#: ../option.c:4928 -msgid "E540: Unclosed expression sequence" -msgstr "E540: " - -#: ../option.c:4932 -msgid "E541: too many items" -msgstr "E541: " - -#: ../option.c:4934 -msgid "E542: unbalanced groups" -msgstr "E542: " - -#: ../option.c:5148 -msgid "E590: A preview window already exists" -msgstr "E590: " - -#: ../option.c:5311 -msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'" -msgstr "" -"W17: UTF-8, ':set encoding=utf-8'" - -#: ../option.c:5623 -#, c-format -msgid "E593: Need at least %d lines" -msgstr "E593: %d " - -#: ../option.c:5631 -#, c-format -msgid "E594: Need at least %d columns" -msgstr "E594: %d " - -#: ../option.c:6011 -#, c-format -msgid "E355: Unknown option: %s" -msgstr "E355: : %s" - -#. There's another character after zeros or the string -#. * is empty. In both cases, we are trying to set a -#. * num option using a string. -#: ../option.c:6037 -#, c-format -msgid "E521: Number required: &%s = '%s'" -msgstr "E521: : &%s = '%s'" - -#: ../option.c:6149 -msgid "" -"\n" -"--- Terminal codes ---" -msgstr "" -"\n" -"--- ---" - -#: ../option.c:6151 -msgid "" -"\n" -"--- Global option values ---" -msgstr "" -"\n" -"--- ---" - -#: ../option.c:6153 -msgid "" -"\n" -"--- Local option values ---" -msgstr "" -"\n" -"--- ---" - -#: ../option.c:6155 -msgid "" -"\n" -"--- Options ---" -msgstr "" -"\n" -"--- ---" - -#: ../option.c:6816 -msgid "E356: get_varp ERROR" -msgstr "E356: get_varp" - -#: ../option.c:7696 -#, c-format -msgid "E357: 'langmap': Matching character missing for %s" -msgstr "E357: 'langmap': %s" - -#: ../option.c:7715 -#, c-format -msgid "E358: 'langmap': Extra characters after semicolon: %s" -msgstr "E358: 'langmap': : %s" - -#: ../os/shell.c:194 -msgid "" -"\n" -"Cannot execute shell " -msgstr "" -"\n" -" " - -#: ../os/shell.c:439 -msgid "" -"\n" -"shell returned " -msgstr "" -"\n" -" " - -#: ../os_unix.c:465 ../os_unix.c:471 -msgid "" -"\n" -"Could not get security context for " -msgstr "" -"\n" -" " - -#: ../os_unix.c:479 -msgid "" -"\n" -"Could not set security context for " -msgstr "" -"\n" -" " - -msgid "Could not set security context " -msgstr " " - -msgid " for " -msgstr " " - -#. no enough size OR unexpected error -msgid "Could not get security context " -msgstr " " - -msgid ". Removing it!\n" -msgstr ". !\n" - -#: ../os_unix.c:1558 ../os_unix.c:1647 -#, c-format -msgid "dlerror = \"%s\"" -msgstr "dlerror = \"%s\"" - -#: ../path.c:1449 -#, c-format -msgid "E447: Can't find file \"%s\" in path" -msgstr "E447: \"%s\" " - -#: ../quickfix.c:359 -#, c-format -msgid "E372: Too many %%%c in format string" -msgstr "E372: %%%c" - -#: ../quickfix.c:371 -#, c-format -msgid "E373: Unexpected %%%c in format string" -msgstr "E373: %%%c " - -#: ../quickfix.c:420 -msgid "E374: Missing ] in format string" -msgstr "E374: ]" - -#: ../quickfix.c:431 -#, c-format -msgid "E375: Unsupported %%%c in format string" -msgstr "E375: %%%c " - -#: ../quickfix.c:448 -#, c-format -msgid "E376: Invalid %%%c in format string prefix" -msgstr "E376: %%%c " - -#: ../quickfix.c:454 -#, c-format -msgid "E377: Invalid %%%c in format string" -msgstr "E377: %%%c " - -#. nothing found -#: ../quickfix.c:477 -msgid "E378: 'errorformat' contains no pattern" -msgstr "E378: 'errorformat' " - -#: ../quickfix.c:695 -msgid "E379: Missing or empty directory name" -msgstr "E379: " - -#: ../quickfix.c:1305 -msgid "E553: No more items" -msgstr "E553: " - -#: ../quickfix.c:1674 -#, c-format -msgid "(%d of %d)%s%s: " -msgstr "(%d %d)%s%s: " - -#: ../quickfix.c:1676 -msgid " (line deleted)" -msgstr " ( )" - -#: ../quickfix.c:1863 -msgid "E380: At bottom of quickfix stack" -msgstr "E380: " - -#: ../quickfix.c:1869 -msgid "E381: At top of quickfix stack" -msgstr "E381: " - -#: ../quickfix.c:1880 -#, c-format -msgid "error list %d of %d; %d errors" -msgstr " %d %d; %d " - -#: ../quickfix.c:2427 -msgid "E382: Cannot write, 'buftype' option is set" -msgstr "" -"E382: , 'buftype' " - -#: ../quickfix.c:2812 -msgid "E683: File name missing or invalid pattern" -msgstr "E683: " - -#: ../quickfix.c:2911 -#, c-format -msgid "Cannot open file \"%s\"" -msgstr " \"%s\"" - -#: ../quickfix.c:3429 -msgid "E681: Buffer is not loaded" -msgstr "E681: " - -#: ../quickfix.c:3487 -msgid "E777: String or List expected" -msgstr "E777: " - -#: ../regexp.c:359 -#, c-format -msgid "E369: invalid item in %s%%[]" -msgstr "E369: %s%%[]" - -#: ../regexp.c:374 -#, c-format -msgid "E769: Missing ] after %s[" -msgstr "E769: ] %s[" - -#: ../regexp.c:375 -#, c-format -msgid "E53: Unmatched %s%%(" -msgstr "E53: %s%%(" - -#: ../regexp.c:376 -#, c-format -msgid "E54: Unmatched %s(" -msgstr "E54: %s(" - -#: ../regexp.c:377 -#, c-format -msgid "E55: Unmatched %s)" -msgstr "E55: %s)" - -#: ../regexp.c:378 -msgid "E66: \\z( not allowed here" -msgstr "E66: \\z( " - -#: ../regexp.c:379 -msgid "E67: \\z1 et al. not allowed here" -msgstr "E67: \\z1 .. " - -#: ../regexp.c:380 -#, c-format -msgid "E69: Missing ] after %s%%[" -msgstr "E69: ] %s%%[" - -#: ../regexp.c:381 -#, c-format -msgid "E70: Empty %s%%[]" -msgstr "E70: %s%%[]" - -#: ../regexp.c:1209 ../regexp.c:1224 -msgid "E339: Pattern too long" -msgstr "E339: " - -#: ../regexp.c:1371 -msgid "E50: Too many \\z(" -msgstr "E50: \\z(" - -#: ../regexp.c:1378 -#, c-format -msgid "E51: Too many %s(" -msgstr "E51: %s(" - -#: ../regexp.c:1427 -msgid "E52: Unmatched \\z(" -msgstr "E52: \\z(" - -#: ../regexp.c:1637 -#, c-format -msgid "E59: invalid character after %s@" -msgstr "E59: %s@" - -#: ../regexp.c:1672 -#, c-format -msgid "E60: Too many complex %s{...}s" -msgstr "E60: %s{...}" - -#: ../regexp.c:1687 -#, c-format -msgid "E61: Nested %s*" -msgstr "E61: %s*" - -#: ../regexp.c:1690 -#, c-format -msgid "E62: Nested %s%c" -msgstr "E62: %s%c" - -#: ../regexp.c:1800 -msgid "E63: invalid use of \\_" -msgstr "E63: \\_" - -#: ../regexp.c:1850 -#, c-format -msgid "E64: %s%c follows nothing" -msgstr "E64: %s%c " - -#: ../regexp.c:1902 -msgid "E65: Illegal back reference" -msgstr "E65: " - -#: ../regexp.c:1943 -msgid "E68: Invalid character after \\z" -msgstr "E68: \\z" - -#: ../regexp.c:2049 ../regexp_nfa.c:1296 -#, c-format -msgid "E678: Invalid character after %s%%[dxouU]" -msgstr "E678: %s%%[dxouU]" - -#: ../regexp.c:2107 -#, c-format -msgid "E71: Invalid character after %s%%" -msgstr "E71: %s%%" - -#: ../regexp.c:3017 -#, c-format -msgid "E554: Syntax error in %s{...}" -msgstr "E554: %s{...}" - -#: ../regexp.c:3805 -msgid "External submatches:\n" -msgstr " :\n" - -#, c-format -msgid "E888: (NFA regexp) cannot repeat %s" -msgstr "E888: (. ) %s" - -#: ../regexp.c:7022 -msgid "" -"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be " -"used " -msgstr "" -"E864: \\%#= 0, 1 2. " -" " - -#: ../regexp_nfa.c:239 -msgid "E865: (NFA) Regexp end encountered prematurely" -msgstr "E865: () " - -#: ../regexp_nfa.c:240 -#, c-format -msgid "E866: (NFA regexp) Misplaced %c" -msgstr "E866: (. ) %c" - -#: ../regexp_nfa.c:242 -#, c-format -msgid "E877: (NFA regexp) Invalid character class: %<PRId64>" -msgstr "" - -#: ../regexp_nfa.c:1261 -#, c-format -msgid "E867: (NFA) Unknown operator '\\z%c'" -msgstr "E867: () '\\z%c'" - -#: ../regexp_nfa.c:1387 -#, c-format -msgid "E867: (NFA) Unknown operator '\\%%%c'" -msgstr "E867: () '\\%%%c'" - -#: ../regexp_nfa.c:1802 -#, c-format -msgid "E869: (NFA) Unknown operator '\\@%c'" -msgstr "E869: () '\\@%c'" - -#: ../regexp_nfa.c:1831 -msgid "E870: (NFA regexp) Error reading repetition limits" -msgstr "E870: (. ) " - -#. Can't have a multi follow a multi. -#: ../regexp_nfa.c:1895 -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" -msgstr "E871: (. ) !" - -#. Too many `(' -#: ../regexp_nfa.c:2037 -msgid "E872: (NFA regexp) Too many '('" -msgstr "E872: (. ) '('" - -#: ../regexp_nfa.c:2042 -msgid "E879: (NFA regexp) Too many \\z(" -msgstr "E879: (. ) \\z(" - -#: ../regexp_nfa.c:2066 -msgid "E873: (NFA regexp) proper termination error" -msgstr "E873: (. ) " - -#: ../regexp_nfa.c:2599 -msgid "E874: (NFA) Could not pop the stack !" -msgstr "E874: (. ) !" - -#: ../regexp_nfa.c:3298 -msgid "" -"E875: (NFA regexp) (While converting from postfix to NFA), too many states " -"left on stack" -msgstr "" -"E875: (. ) ( " -" postfix )" - -#: ../regexp_nfa.c:3302 -msgid "E876: (NFA regexp) Not enough space to store the whole NFA " -msgstr "E876: (. ) " - -#: ../regexp_nfa.c:4571 ../regexp_nfa.c:4869 -msgid "" -"Could not open temporary log file for writing, displaying on stderr ... " -msgstr "" -" , stderr..." - -#: ../regexp_nfa.c:4840 -#, c-format -msgid "(NFA) COULD NOT OPEN %s !" -msgstr "() %s!" - -#: ../regexp_nfa.c:6049 -msgid "Could not open temporary log file for writing " -msgstr " " - -#: ../screen.c:7435 -msgid " VREPLACE" -msgstr " " - -#: ../screen.c:7437 -msgid " REPLACE" -msgstr " " - -#: ../screen.c:7440 -msgid " REVERSE" -msgstr " " - -#: ../screen.c:7441 -msgid " INSERT" -msgstr " " - -#: ../screen.c:7443 -msgid " (insert)" -msgstr " ()" - -#: ../screen.c:7445 -msgid " (replace)" -msgstr " ()" - -#: ../screen.c:7447 -msgid " (vreplace)" -msgstr " ( )" - -#: ../screen.c:7449 -msgid " Hebrew" -msgstr " " - -#: ../screen.c:7454 -msgid " Arabic" -msgstr " " - -#: ../screen.c:7456 -msgid " (lang)" -msgstr " ()" - -#: ../screen.c:7459 -msgid " (paste)" -msgstr " ()" - -#: ../screen.c:7469 -msgid " VISUAL" -msgstr " " - -#: ../screen.c:7470 -msgid " VISUAL LINE" -msgstr " " - -#: ../screen.c:7471 -msgid " VISUAL BLOCK" -msgstr " " - -#: ../screen.c:7472 -msgid " SELECT" -msgstr " " - -#: ../screen.c:7473 -msgid " SELECT LINE" -msgstr " " - -#: ../screen.c:7474 -msgid " SELECT BLOCK" -msgstr " " - -#: ../screen.c:7486 ../screen.c:7541 -msgid "recording" -msgstr "" - -#: ../search.c:487 -#, c-format -msgid "E383: Invalid search string: %s" -msgstr "E383: : %s" - -#: ../search.c:832 -#, c-format -msgid "E384: search hit TOP without match for: %s" -msgstr "E384: ; %s " - -#: ../search.c:835 -#, c-format -msgid "E385: search hit BOTTOM without match for: %s" -msgstr "E385: ; %s " - -#: ../search.c:1200 -msgid "E386: Expected '?' or '/' after ';'" -msgstr "E386: ';' '?' '/'" - -#: ../search.c:4085 -msgid " (includes previously listed match)" -msgstr " ( )" - -#. cursor at status line -#: ../search.c:4104 -msgid "--- Included files " -msgstr "--- " - -#: ../search.c:4106 -msgid "not found " -msgstr " " - -#: ../search.c:4107 -msgid "in path ---\n" -msgstr " ---\n" - -#: ../search.c:4168 -msgid " (Already listed)" -msgstr " ( )" - -#: ../search.c:4170 -msgid " NOT FOUND" -msgstr " " - -#: ../search.c:4211 -#, c-format -msgid "Scanning included file: %s" -msgstr " : %s" - -#: ../search.c:4216 -#, c-format -msgid "Searching included file %s" -msgstr " %s" - -#: ../search.c:4405 -msgid "E387: Match is on current line" -msgstr "E387: " - -#: ../search.c:4517 -msgid "All included files were found" -msgstr " " - -#: ../search.c:4519 -msgid "No included files" -msgstr " " - -#: ../search.c:4527 -msgid "E388: Couldn't find definition" -msgstr "E388: " - -#: ../search.c:4529 -msgid "E389: Couldn't find pattern" -msgstr "E389: " - -#: ../search.c:4668 -msgid "Substitute " -msgstr " " - -#: ../search.c:4681 -#, c-format -msgid "" -"\n" -"# Last %sSearch Pattern:\n" -"~" -msgstr "" -"\n" -"# %s :\n" -"~" - -#: ../spell.c:951 -msgid "E759: Format error in spell file" -msgstr "E759: " - -#: ../spell.c:952 -msgid "E758: Truncated spell file" -msgstr "E758: " - -#: ../spell.c:953 -#, c-format -msgid "Trailing text in %s line %d: %s" -msgstr " %s . %d: %s" - -#: ../spell.c:954 -#, c-format -msgid "Affix name too long in %s line %d: %s" -msgstr " %s, %d: %s" - -#: ../spell.c:955 -msgid "E761: Format error in affix file FOL, LOW or UPP" -msgstr "E761: FOL, LOW UPP" - -#: ../spell.c:957 -msgid "E762: Character in FOL, LOW or UPP is out of range" -msgstr "E762: FOL, LOW UPP " - -#: ../spell.c:958 -msgid "Compressing word tree..." -msgstr " ..." - -#: ../spell.c:1951 -msgid "E756: Spell checking is not enabled" -msgstr "E756: " - -#: ../spell.c:2249 -#, c-format -msgid "Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\"" -msgstr "" -": \"%s.%s.spl\" \"%s.ascii.spl" -"\"" - -#: ../spell.c:2473 -#, c-format -msgid "Reading spell file \"%s\"" -msgstr " \"%s\"" - -#: ../spell.c:2496 -msgid "E757: This does not look like a spell file" -msgstr "E757: " - -#: ../spell.c:2501 -msgid "E771: Old spell file, needs to be updated" -msgstr "E771: , " - -#: ../spell.c:2504 -msgid "E772: Spell file is for newer version of Vim" -msgstr "E772: Vim" - -#: ../spell.c:2602 -msgid "E770: Unsupported section in spell file" -msgstr "E770: " - -#: ../spell.c:3762 -#, c-format -msgid "Warning: region %s not supported" -msgstr ": %s " - -#: ../spell.c:4550 -#, c-format -msgid "Reading affix file %s ..." -msgstr " %s ..." - -#: ../spell.c:4589 ../spell.c:5635 ../spell.c:6140 -#, c-format -msgid "Conversion failure for word in %s line %d: %s" -msgstr " %s, %d: %s" - -#: ../spell.c:4630 ../spell.c:6170 -#, c-format -msgid "Conversion in %s not supported: from %s to %s" -msgstr " %s : %s %s" - -#: ../spell.c:4642 -#, c-format -msgid "Invalid value for FLAG in %s line %d: %s" -msgstr " FLAG %s, %d: %s" - -#: ../spell.c:4655 -#, c-format -msgid "FLAG after using flags in %s line %d: %s" -msgstr "FLAG %s, %d: %s" - -#: ../spell.c:4723 -#, c-format -msgid "" -"Defining COMPOUNDFORBIDFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" -" COMPOUNDFORBIDFLAG PFX " -" %s, %d" - -#: ../spell.c:4731 -#, c-format -msgid "" -"Defining COMPOUNDPERMITFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" -" COMPOUNDPERMITFLAG PFX " -" %s, %d" - -#: ../spell.c:4747 -#, c-format -msgid "Wrong COMPOUNDRULES value in %s line %d: %s" -msgstr " COMPOUNDRULES %s, %d: %s" - -#: ../spell.c:4771 -#, c-format -msgid "Wrong COMPOUNDWORDMAX value in %s line %d: %s" -msgstr " COMPOUNDWORDMAX %s, %d: %s" - -#: ../spell.c:4777 -#, c-format -msgid "Wrong COMPOUNDMIN value in %s line %d: %s" -msgstr " COMPOUNDMIN %s, %d: %s" - -#: ../spell.c:4783 -#, c-format -msgid "Wrong COMPOUNDSYLMAX value in %s line %d: %s" -msgstr " COMPOUNDSYLMAX %s, %d: %s" - -#: ../spell.c:4795 -#, c-format -msgid "Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s" -msgstr " CHECKCOMPOUNDPATTERN %s, %d: %s" - -#: ../spell.c:4847 -#, c-format -msgid "Different combining flag in continued affix block in %s line %d: %s" -msgstr "" -" %s, %d: %s" - -#: ../spell.c:4850 -#, c-format -msgid "Duplicate affix in %s line %d: %s" -msgstr " %s, %d: %s" - -#: ../spell.c:4871 -#, c-format -msgid "" -"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s " -"line %d: %s" -msgstr "" -" BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/" -"NOSUGGEST %s, %d: %s" - -#: ../spell.c:4893 -#, c-format -msgid "Expected Y or N in %s line %d: %s" -msgstr " Y N %s, %d: %s" - -#: ../spell.c:4968 -#, c-format -msgid "Broken condition in %s line %d: %s" -msgstr " %s, %d: %s" - -#: ../spell.c:5091 -#, c-format -msgid "Expected REP(SAL) count in %s line %d" -msgstr " REP(SAL) %s, %d" - -#: ../spell.c:5120 -#, c-format -msgid "Expected MAP count in %s line %d" -msgstr " MAP %s, %d" - -#: ../spell.c:5132 -#, c-format -msgid "Duplicate character in MAP in %s line %d" -msgstr " MAP %s, %d" - -#: ../spell.c:5176 -#, c-format -msgid "Unrecognized or duplicate item in %s line %d: %s" -msgstr " %s, %d: %s" - -#: ../spell.c:5197 -#, c-format -msgid "Missing FOL/LOW/UPP line in %s" -msgstr " FOL/LOW/UPP %s" - -#: ../spell.c:5220 -msgid "COMPOUNDSYLMAX used without SYLLABLE" -msgstr "COMPOUNDSYLMAX SYLLABLE" - -#: ../spell.c:5236 -msgid "Too many postponed prefixes" -msgstr " " - -#: ../spell.c:5238 -msgid "Too many compound flags" -msgstr " " - -#: ../spell.c:5240 -msgid "Too many postponed prefixes and/or compound flags" -msgstr " / " - -#: ../spell.c:5250 -#, c-format -msgid "Missing SOFO%s line in %s" -msgstr " SOFO%s %s" - -#: ../spell.c:5253 -#, c-format -msgid "Both SAL and SOFO lines in %s" -msgstr " SAL SOFO %s" - -#: ../spell.c:5331 -#, c-format -msgid "Flag is not a number in %s line %d: %s" -msgstr " %s, %d: %s" - -#: ../spell.c:5334 -#, c-format -msgid "Illegal flag in %s line %d: %s" -msgstr " %s %d: %s" - -#: ../spell.c:5493 ../spell.c:5501 -#, c-format -msgid "%s value differs from what is used in another .aff file" -msgstr "%s , .aff" - -#: ../spell.c:5602 -#, c-format -msgid "Reading dictionary file %s ..." -msgstr " %s ..." - -#: ../spell.c:5611 -#, c-format -msgid "E760: No word count in %s" -msgstr "E760: %s" - -#: ../spell.c:5669 -#, c-format -msgid "line %6d, word %6d - %s" -msgstr " %6d, %6d %s" - -#: ../spell.c:5691 -#, c-format -msgid "Duplicate word in %s line %d: %s" -msgstr " %s %d: %s " - -#: ../spell.c:5694 -#, c-format -msgid "First duplicate word in %s line %d: %s" -msgstr " %s %d: %s" - -#: ../spell.c:5746 -#, c-format -msgid "%d duplicate word(s) in %s" -msgstr "%d %s" - -#: ../spell.c:5748 -#, c-format -msgid "Ignored %d word(s) with non-ASCII characters in %s" -msgstr " %d ASCII %s" - -#: ../spell.c:6115 -#, c-format -msgid "Reading word file %s ..." -msgstr " %s ..." - -#: ../spell.c:6155 -#, c-format -msgid "Duplicate /encoding= line ignored in %s line %d: %s" -msgstr " /encoding= %s, %d: %s" - -#: ../spell.c:6159 -#, c-format -msgid "/encoding= line after word ignored in %s line %d: %s" -msgstr " /encoding= %s, %d: %s" - -#: ../spell.c:6180 -#, c-format -msgid "Duplicate /regions= line ignored in %s line %d: %s" -msgstr " /regions= %s, %d: %s" - -#: ../spell.c:6185 -#, c-format -msgid "Too many regions in %s line %d: %s" -msgstr " %s, %d: %s" - -#: ../spell.c:6198 -#, c-format -msgid "/ line ignored in %s line %d: %s" -msgstr "/ %s, %d: %s" - -#: ../spell.c:6224 -#, c-format -msgid "Invalid region nr in %s line %d: %s" -msgstr " %s, %d: %s" - -#: ../spell.c:6230 -#, c-format -msgid "Unrecognized flags in %s line %d: %s" -msgstr " %s, %d: %s" - -#: ../spell.c:6257 -#, c-format -msgid "Ignored %d words with non-ASCII characters" -msgstr " %d ASCII " - -#: ../spell.c:6656 -#, c-format -msgid "Compressed %d of %d nodes; %d (%d%%) remaining" -msgstr " %d %d ; %d (%d%%)" - -#: ../spell.c:7340 -msgid "Reading back spell file..." -msgstr " ..." - -#. Go through the trie of good words, soundfold each word and add it to -#. the soundfold trie. -#: ../spell.c:7357 -msgid "Performing soundfolding..." -msgstr " ..." - -#: ../spell.c:7368 -#, c-format -msgid "Number of words after soundfolding: %<PRId64>" -msgstr " : %<PRId64>" - -#: ../spell.c:7476 -#, c-format -msgid "Total number of words: %d" -msgstr " : %d" - -#: ../spell.c:7655 -#, c-format -msgid "Writing suggestion file %s ..." -msgstr " %s" - -#: ../spell.c:7707 ../spell.c:7927 -#, c-format -msgid "Estimated runtime memory use: %d bytes" -msgstr " : %d " - -#: ../spell.c:7820 -msgid "E751: Output file name must not have region name" -msgstr "E751: " - -#: ../spell.c:7822 -msgid "E754: Only up to 8 regions supported" -msgstr "E754: 8- " - -#: ../spell.c:7846 -#, c-format -msgid "E755: Invalid region in %s" -msgstr "E755: %s" - -#: ../spell.c:7907 -msgid "Warning: both compounding and NOBREAK specified" -msgstr ": NOBREAK" - -#: ../spell.c:7920 -#, c-format -msgid "Writing spell file %s ..." -msgstr " %s ..." - -#: ../spell.c:7925 -msgid "Done!" -msgstr "!" - -#: ../spell.c:8034 -#, c-format -msgid "E765: 'spellfile' does not have %<PRId64> entries" -msgstr "E765: 'spellfile' %<PRId64> " - -#: ../spell.c:8074 -#, fuzzy, c-format -msgid "Word '%.*s' removed from %s" -msgstr " %s" - -#: ../spell.c:8117 -#, fuzzy, c-format -msgid "Word '%.*s' added to %s" -msgstr " %s" - -#: ../spell.c:8381 -msgid "E763: Word characters differ between spell files" -msgstr "E763: " - -#: ../spell.c:8684 -msgid "Sorry, no suggestions" -msgstr ", " - -#: ../spell.c:8687 -#, c-format -msgid "Sorry, only %<PRId64> suggestions" -msgstr ", %<PRId64> " - -#. for when 'cmdheight' > 1 -#. avoid more prompt -#: ../spell.c:8704 -#, c-format -msgid "Change \"%.*s\" to:" -msgstr " \"%.*s\" :" - -#: ../spell.c:8737 -#, c-format -msgid " < \"%.*s\"" -msgstr " < \"%.*s\"" - -#: ../spell.c:8882 -msgid "E752: No previous spell replacement" -msgstr "E752: " - -#: ../spell.c:8925 -#, c-format -msgid "E753: Not found: %s" -msgstr "E753: : %s" - -#: ../spell.c:9276 -#, c-format -msgid "E778: This does not look like a .sug file: %s" -msgstr "E778: .sug: %s" - -#: ../spell.c:9282 -#, c-format -msgid "E779: Old .sug file, needs to be updated: %s" -msgstr "E779: .sug, : %s" - -#: ../spell.c:9286 -#, c-format -msgid "E780: .sug file is for newer version of Vim: %s" -msgstr "E780: .sug Vim: %s" - -#: ../spell.c:9295 -#, c-format -msgid "E781: .sug file doesn't match .spl file: %s" -msgstr "E781: .sug .spl: %s" - -#: ../spell.c:9305 -#, c-format -msgid "E782: error while reading .sug file: %s" -msgstr "E782: .sug: %s" - -#. This should have been checked when generating the .spl -#. file. -#: ../spell.c:11575 -msgid "E783: duplicate char in MAP entry" -msgstr "E783: MAP" - -#: ../syntax.c:266 -msgid "No Syntax items defined for this buffer" -msgstr " " - -#: ../syntax.c:3083 ../syntax.c:3104 ../syntax.c:3127 -#, c-format -msgid "E390: Illegal argument: %s" -msgstr "E390: : %s" - -#: ../syntax.c:3299 -#, c-format -msgid "E391: No such syntax cluster: %s" -msgstr "E391: %s " - -#: ../syntax.c:3433 -msgid "syncing on C-style comments" -msgstr " C" - -#: ../syntax.c:3439 -msgid "no syncing" -msgstr " " - -#: ../syntax.c:3441 -msgid "syncing starts " -msgstr " " - -#: ../syntax.c:3443 ../syntax.c:3506 -msgid " lines before top line" -msgstr " " - -#: ../syntax.c:3448 -msgid "" -"\n" -"--- Syntax sync items ---" -msgstr "" -"\n" -"--- ---" - -#: ../syntax.c:3452 -msgid "" -"\n" -"syncing on items" -msgstr "" -"\n" -" " - -#: ../syntax.c:3457 -msgid "" -"\n" -"--- Syntax items ---" -msgstr "" -"\n" -"--- ---" - -#: ../syntax.c:3475 -#, c-format -msgid "E392: No such syntax cluster: %s" -msgstr "E392: %s " - -#: ../syntax.c:3497 -msgid "minimal " -msgstr " " - -#: ../syntax.c:3503 -msgid "maximal " -msgstr " " - -#: ../syntax.c:3513 -msgid "; match " -msgstr "; " - -#: ../syntax.c:3515 -msgid " line breaks" -msgstr " " - -#: ../syntax.c:4076 -msgid "E395: contains argument not accepted here" -msgstr "E395: contains" - -#: ../syntax.c:4096 -msgid "E844: invalid cchar value" -msgstr "E844: cchar" - -#: ../syntax.c:4107 -msgid "E393: group[t]here not accepted here" -msgstr "E393: group[t]here" - -#: ../syntax.c:4126 -#, c-format -msgid "E394: Didn't find region item for %s" -msgstr "E394: %s " - -#: ../syntax.c:4188 -msgid "E397: Filename required" -msgstr "E397: " - -#: ../syntax.c:4221 -msgid "E847: Too many syntax includes" -msgstr "E847: " - -#: ../syntax.c:4303 -#, c-format -msgid "E789: Missing ']': %s" -msgstr "E789: ']': %s" - -#: ../syntax.c:4531 -#, c-format -msgid "E398: Missing '=': %s" -msgstr "E398: '=': %s" - -#: ../syntax.c:4666 -#, c-format -msgid "E399: Not enough arguments: syntax region %s" -msgstr "E399: : %s" - -#: ../syntax.c:4870 -msgid "E848: Too many syntax clusters" -msgstr "E848: " - -#: ../syntax.c:4954 -msgid "E400: No cluster specified" -msgstr "E400: " - -#. end delimiter not found -#: ../syntax.c:4986 -#, c-format -msgid "E401: Pattern delimiter not found: %s" -msgstr "E401: : %s" - -#: ../syntax.c:5049 -#, c-format -msgid "E402: Garbage after pattern: %s" -msgstr "E402: : %s" - -#: ../syntax.c:5120 -msgid "E403: syntax sync: line continuations pattern specified twice" -msgstr "" -"E403: : " - -#: ../syntax.c:5169 -#, c-format -msgid "E404: Illegal arguments: %s" -msgstr "E404: : %s" - -#: ../syntax.c:5217 -#, c-format -msgid "E405: Missing equal sign: %s" -msgstr "E405: : %s" - -#: ../syntax.c:5222 -#, c-format -msgid "E406: Empty argument: %s" -msgstr "E406: : %s" - -#: ../syntax.c:5240 -#, c-format -msgid "E407: %s not allowed here" -msgstr "E407: %s " - -#: ../syntax.c:5246 -#, c-format -msgid "E408: %s must be first in contains list" -msgstr "E408: %s contains" - -#: ../syntax.c:5304 -#, c-format -msgid "E409: Unknown group name: %s" -msgstr "E409: : %s" - -#: ../syntax.c:5512 -#, c-format -msgid "E410: Invalid :syntax subcommand: %s" -msgstr "E410: :syntax: %s" - -#: ../syntax.c:5854 -msgid "" -" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN" -msgstr "" -" . . " - -#: ../syntax.c:6146 -msgid "E679: recursive loop loading syncolor.vim" -msgstr "E679: syncolor.vim" - -#: ../syntax.c:6256 -#, c-format -msgid "E411: highlight group not found: %s" -msgstr "E411: %s " - -#: ../syntax.c:6278 -#, c-format -msgid "E412: Not enough arguments: \":highlight link %s\"" -msgstr "E412: : \":highlight link %s\"" - -#: ../syntax.c:6284 -#, c-format -msgid "E413: Too many arguments: \":highlight link %s\"" -msgstr "E413: : \":highlight link %s\"" - -#: ../syntax.c:6302 -msgid "E414: group has settings, highlight link ignored" -msgstr "E414: , highlight link" - -#: ../syntax.c:6367 -#, c-format -msgid "E415: unexpected equal sign: %s" -msgstr "E415: : %s" - -#: ../syntax.c:6395 -#, c-format -msgid "E416: missing equal sign: %s" -msgstr "E416: : %s" - -#: ../syntax.c:6418 -#, c-format -msgid "E417: missing argument: %s" -msgstr "E417: : %s" - -#: ../syntax.c:6446 -#, c-format -msgid "E418: Illegal value: %s" -msgstr "E418: : %s" - -#: ../syntax.c:6496 -msgid "E419: FG color unknown" -msgstr "E419: " - -#: ../syntax.c:6504 -msgid "E420: BG color unknown" -msgstr "E420: " - -#: ../syntax.c:6564 -#, c-format -msgid "E421: Color name or number not recognized: %s" -msgstr "E421: : %s" - -#: ../syntax.c:6714 -#, c-format -msgid "E422: terminal code too long: %s" -msgstr "E422: : %s" - -#: ../syntax.c:6753 -#, c-format -msgid "E423: Illegal argument: %s" -msgstr "E423: : %s" - -#: ../syntax.c:6925 -msgid "E424: Too many different highlighting attributes in use" -msgstr "E424: " - -#: ../syntax.c:7427 -msgid "E669: Unprintable character in group name" -msgstr "E669: " - -#: ../syntax.c:7434 -msgid "W18: Invalid character in group name" -msgstr "W18: " - -#: ../syntax.c:7448 -msgid "E849: Too many highlight and syntax groups" -msgstr "E849: " - -#: ../tag.c:104 -msgid "E555: at bottom of tag stack" -msgstr "E555: " - -#: ../tag.c:105 -msgid "E556: at top of tag stack" -msgstr "E556: " - -#: ../tag.c:380 -msgid "E425: Cannot go before first matching tag" -msgstr "E425: " - -#: ../tag.c:504 -#, c-format -msgid "E426: tag not found: %s" -msgstr "E426: : %s" - -#: ../tag.c:528 -msgid " # pri kind tag" -msgstr " # " - -#: ../tag.c:531 -msgid "file\n" -msgstr "\n" - -#: ../tag.c:829 -msgid "E427: There is only one matching tag" -msgstr "E427: " - -#: ../tag.c:831 -msgid "E428: Cannot go beyond last matching tag" -msgstr "E428: " - -#: ../tag.c:850 -#, c-format -msgid "File \"%s\" does not exist" -msgstr " \"%s\" " - -#. Give an indication of the number of matching tags -#: ../tag.c:859 -#, c-format -msgid "tag %d of %d%s" -msgstr " %d %d%s" - -#: ../tag.c:862 -msgid " or more" -msgstr " " - -#: ../tag.c:864 -msgid " Using tag with different case!" -msgstr " !" - -#: ../tag.c:909 -#, c-format -msgid "E429: File \"%s\" does not exist" -msgstr "E429: \"%s\" " - -#. Highlight title -#: ../tag.c:960 -msgid "" -"\n" -" # TO tag FROM line in file/text" -msgstr "" -"\n" -" # . /" - -#: ../tag.c:1303 -#, c-format -msgid "Searching tags file %s" -msgstr " %s" - -#: ../tag.c:1545 -msgid "Ignoring long line in tags file" -msgstr " tags" - -#: ../tag.c:1915 -#, c-format -msgid "E431: Format error in tags file \"%s\"" -msgstr "E431: \"%s\"" - -#: ../tag.c:1917 -#, c-format -msgid "Before byte %<PRId64>" -msgstr " %<PRId64>" - -#: ../tag.c:1929 -#, c-format -msgid "E432: Tags file not sorted: %s" -msgstr "E432: : %s" - -#. never opened any tags file -#: ../tag.c:1960 -msgid "E433: No tags file" -msgstr "E433: " - -#: ../tag.c:2536 -msgid "E434: Can't find tag pattern" -msgstr "E434: " - -#: ../tag.c:2544 -msgid "E435: Couldn't find tag, just guessing!" -msgstr "E435: , !" - -#: ../tag.c:2797 -#, c-format -msgid "Duplicate field name: %s" -msgstr " : %s" - -#: ../term.c:1442 -msgid "' not known. Available builtin terminals are:" -msgstr "' . :" - -#: ../term.c:1463 -msgid "defaulting to '" -msgstr " '" - -#: ../term.c:1731 -msgid "E557: Cannot open termcap file" -msgstr "E557: termcap" - -#: ../term.c:1735 -msgid "E558: Terminal entry not found in terminfo" -msgstr "E558: terminfo " - -#: ../term.c:1737 -msgid "E559: Terminal entry not found in termcap" -msgstr "E559: termcap " - -#: ../term.c:1878 -#, c-format -msgid "E436: No \"%s\" entry in termcap" -msgstr "E436: termcap \"%s\"" - -#: ../term.c:2249 -msgid "E437: terminal capability \"cm\" required" -msgstr "E437: \"cm\"" - -#. Highlight title -#: ../term.c:4376 -msgid "" -"\n" -"--- Terminal keys ---" -msgstr "" -"\n" -"--- ---" - -#: ../ui.c:481 -msgid "Vim: Error reading input, exiting...\n" -msgstr "Vim: , ...\n" - -#. This happens when the FileChangedRO autocommand changes the -#. * file in a way it becomes shorter. -#: ../undo.c:379 -#, fuzzy -msgid "E881: Line count changed unexpectedly" -msgstr "E834: " - -#: ../undo.c:627 -#, c-format -msgid "E828: Cannot open undo file for writing: %s" -msgstr "E828: : %s" - -#: ../undo.c:717 -#, c-format -msgid "E825: Corrupted undo file (%s): %s" -msgstr "E825: (%s): %s" - -#: ../undo.c:1039 -msgid "Cannot write undo file in any directory in 'undodir'" -msgstr " - 'undodir'" - -#: ../undo.c:1074 -#, c-format -msgid "Will not overwrite with undo file, cannot read: %s" -msgstr " , : %s" - -#: ../undo.c:1092 -#, c-format -msgid "Will not overwrite, this is not an undo file: %s" -msgstr " , : %s" - -#: ../undo.c:1108 -msgid "Skipping undo file write, nothing to undo" -msgstr " , " - -#: ../undo.c:1121 -#, c-format -msgid "Writing undo file: %s" -msgstr " : %s" - -#: ../undo.c:1213 -#, c-format -msgid "E829: write error in undo file: %s" -msgstr "E829: : %s" - -#: ../undo.c:1280 -#, c-format -msgid "Not reading undo file, owner differs: %s" -msgstr " , : %s" - -#: ../undo.c:1292 -#, c-format -msgid "Reading undo file: %s" -msgstr " : %s" - -#: ../undo.c:1299 -#, c-format -msgid "E822: Cannot open undo file for reading: %s" -msgstr "E822: : %s" - -#: ../undo.c:1308 -#, c-format -msgid "E823: Not an undo file: %s" -msgstr "E823: : %s" - -#: ../undo.c:1313 -#, c-format -msgid "E824: Incompatible undo file: %s" -msgstr "E824: : %s" - -#: ../undo.c:1328 -msgid "File contents changed, cannot use undo info" -msgstr " , " - -#: ../undo.c:1497 -#, c-format -msgid "Finished reading undo file %s" -msgstr " %s" - -#: ../undo.c:1586 ../undo.c:1812 -msgid "Already at oldest change" -msgstr " " - -#: ../undo.c:1597 ../undo.c:1814 -msgid "Already at newest change" -msgstr " " - -#: ../undo.c:1806 -#, c-format -msgid "E830: Undo number %<PRId64> not found" -msgstr "E830: %<PRId64>" - -#: ../undo.c:1979 -msgid "E438: u_undo: line numbers wrong" -msgstr "E438: u_undo: " - -#: ../undo.c:2183 -msgid "more line" -msgstr ". " - -#: ../undo.c:2185 -msgid "more lines" -msgstr ". " - -#: ../undo.c:2187 -msgid "line less" -msgstr ". " - -#: ../undo.c:2189 -msgid "fewer lines" -msgstr ". " - -#: ../undo.c:2193 -msgid "change" -msgstr "." - -#: ../undo.c:2195 -msgid "changes" -msgstr "." - -#: ../undo.c:2225 -#, c-format -msgid "%<PRId64> %s; %s #%<PRId64> %s" -msgstr "%<PRId64> %s; %s #%<PRId64> %s" - -#: ../undo.c:2228 -msgid "before" -msgstr "" - -#: ../undo.c:2228 -msgid "after" -msgstr "" - -#: ../undo.c:2325 -msgid "Nothing to undo" -msgstr " " - -# :undolist -#: ../undo.c:2330 -msgid "number changes when saved" -msgstr " . " - -#: ../undo.c:2360 -#, c-format -msgid "%<PRId64> seconds ago" -msgstr "%<PRId64> " - -#: ../undo.c:2372 -msgid "E790: undojoin is not allowed after undo" -msgstr "E790: " - -#: ../undo.c:2466 -msgid "E439: undo list corrupt" -msgstr "E439: " - -#: ../undo.c:2495 -msgid "E440: undo line missing" -msgstr "E440: " - -#: ../version.c:600 -msgid "" -"\n" -"Included patches: " -msgstr "" -"\n" -": " - -#: ../version.c:627 -msgid "" -"\n" -"Extra patches: " -msgstr "" -"\n" -" : " - -#: ../version.c:639 ../version.c:864 -msgid "Modified by " -msgstr " , " - -#: ../version.c:646 -msgid "" -"\n" -"Compiled " -msgstr "" -"\n" -" " - -#: ../version.c:649 -msgid "by " -msgstr " " - -#: ../version.c:660 -msgid "" -"\n" -"Huge version " -msgstr "" -"\n" -" " - -#: ../version.c:661 -msgid "without GUI." -msgstr " ." - -#: ../version.c:662 -msgid " Features included (+) or not (-):\n" -msgstr " (+) (-) :\n" - -#: ../version.c:667 -msgid " system vimrc file: \"" -msgstr " vimrc: \"" - -#: ../version.c:672 -msgid " user vimrc file: \"" -msgstr " vimrc: \"" - -#: ../version.c:677 -msgid " 2nd user vimrc file: \"" -msgstr " vimrc: \"" - -#: ../version.c:682 -msgid " 3rd user vimrc file: \"" -msgstr " vimrc: \"" - -#: ../version.c:687 -msgid " user exrc file: \"" -msgstr " exrc: \"" - -#: ../version.c:692 -msgid " 2nd user exrc file: \"" -msgstr " exrc: \"" - -#: ../version.c:699 -msgid " fall-back for $VIM: \"" -msgstr " $VIM : \"" - -#: ../version.c:705 -msgid " f-b for $VIMRUNTIME: \"" -msgstr " $VIMRUNTIME : \"" - -#: ../version.c:709 -msgid "Compilation: " -msgstr " : " - -#: ../version.c:712 -msgid "Linking: " -msgstr ": " - -#: ../version.c:717 -msgid " DEBUG BUILD" -msgstr " " - -#: ../version.c:767 -msgid "VIM - Vi IMproved" -msgstr "VIM Vi IMproved ( Vi)" - -#: ../version.c:769 -msgid "version " -msgstr " " - -#: ../version.c:770 -msgid "by Bram Moolenaar et al." -msgstr " " - -#: ../version.c:774 -msgid "Vim is open source and freely distributable" -msgstr "Vim " - -#: ../version.c:776 -msgid "Help poor children in Uganda!" -msgstr " !" - -#: ../version.c:777 -msgid "type :help iccf<Enter> for information " -msgstr " :help iccf<Enter> " - -#: ../version.c:779 -msgid "type :q<Enter> to exit " -msgstr " :q<Enter> " - -#: ../version.c:780 -msgid "type :help<Enter> or <F1> for on-line help" -msgstr " :help<Enter> <F1> " - -#: ../version.c:781 -msgid "type :help version7<Enter> for version info" -msgstr " :help version7<Enter> " - -#: ../version.c:784 -msgid "Running in Vi compatible mode" -msgstr " Vi- " - -#: ../version.c:785 -msgid "type :set nocp<Enter> for Vim defaults" -msgstr " :set nocp<Enter> Vim " - -#: ../version.c:786 -msgid "type :help cp-default<Enter> for info on this" -msgstr " :help cp-default<Enter> " - -#: ../version.c:827 -msgid "Sponsor Vim development!" -msgstr " Vim!" - -#: ../version.c:828 -msgid "Become a registered Vim user!" -msgstr " Vim!" - -#: ../version.c:831 -msgid "type :help sponsor<Enter> for information " -msgstr " :help sponsor<Enter> " - -#: ../version.c:832 -msgid "type :help register<Enter> for information " -msgstr " :help register<Enter> " - -#: ../version.c:834 -msgid "menu Help->Sponsor/Register for information " -msgstr " ->/ " - -#: ../window.c:119 -msgid "Already only one window" -msgstr " " - -#: ../window.c:224 -msgid "E441: There is no preview window" -msgstr "E441: " - -#: ../window.c:559 -msgid "E442: Can't split topleft and botright at the same time" -msgstr "E442: " - -#: ../window.c:1228 -msgid "E443: Cannot rotate when another window is split" -msgstr "E443: , " - -#: ../window.c:1803 -msgid "E444: Cannot close last window" -msgstr "E444: " - -#: ../window.c:1810 -msgid "E813: Cannot close autocmd window" -msgstr "E813: " - -#: ../window.c:1814 -msgid "E814: Cannot close window, only autocmd window would remain" -msgstr "E814: , " - -#: ../window.c:2717 -msgid "E445: Other window contains changes" -msgstr "E445: " - -#: ../window.c:4805 -msgid "E446: No file name under cursor" -msgstr "E446: " - -#~ msgid "E831: bf_key_init() called with empty password" -#~ msgstr "E831: bf_key_init() " - -#~ msgid "E820: sizeof(uint32_t) != 4" -#~ msgstr "E820: sizeof(uint32_t) != 4" - -#~ msgid "E817: Blowfish big/little endian use wrong" -#~ msgstr "" -#~ "E817: / Blowfish" - -#~ msgid "E818: sha256 test failed" -#~ msgstr "E818: sha256" - -#~ msgid "E819: Blowfish test failed" -#~ msgstr "E819: Blowfish" - -#~ msgid "Patch file" -#~ msgstr "-" - -#~ msgid "" -#~ "&OK\n" -#~ "&Cancel" -#~ msgstr "" -#~ "&OK\n" -#~ "&C " - -#~ msgid "E240: No connection to Vim server" -#~ msgstr "E240: Vim" - -#~ msgid "E241: Unable to send to %s" -#~ msgstr "E241: %s" - -#~ msgid "E277: Unable to read a server reply" -#~ msgstr "E277: " - -#~ msgid "E258: Unable to send to client" -#~ msgstr "E258: " - -#~ msgid "Save As" -#~ msgstr " " - -#~ msgid "Edit File" -#~ msgstr " " - -#~ msgid " (NOT FOUND)" -#~ msgstr " ( )" - -#~ msgid "Source Vim script" -#~ msgstr " Vim" - -#~ msgid "unknown" -#~ msgstr "" - -#~ msgid "Edit File in new window" -#~ msgstr " " - -#~ msgid "Append File" -#~ msgstr " " - -#~ msgid "Window position: X %d, Y %d" -#~ msgstr " : X %d, Y %d" - -#~ msgid "Save Redirection" -#~ msgstr " " - -#~ msgid "Save View" -#~ msgstr " " - -#~ msgid "Save Session" -#~ msgstr " " - -#~ msgid "Save Setup" -#~ msgstr " " - -#~ msgid "E809: #< is not available without the +eval feature" -#~ msgstr "E809: #< +eval" - -#~ msgid "E196: No digraphs in this version" -#~ msgstr "E196: " - -#~ msgid "is a device (disabled with 'opendevice' option)" -#~ msgstr " ( 'opendevice')" - -#~ msgid "Reading from stdin..." -#~ msgstr " stdin..." - -#~ msgid "[blowfish]" -#~ msgstr "[blowfish]" - -#~ msgid "[crypted]" -#~ msgstr "[]" - -#~ msgid "E821: File is encrypted with unknown method" -#~ msgstr "E821: " - -#~ msgid "NetBeans disallows writes of unmodified buffers" -#~ msgstr "NetBeans " - -#~ msgid "Partial writes disallowed for NetBeans buffers" -#~ msgstr " NetBeans " - -#~ msgid "writing to device disabled with 'opendevice' option" -#~ msgstr " 'opendevice'" - -#~ msgid "E460: The resource fork would be lost (add ! to override)" -#~ msgstr "" -#~ "E460: ( !, )" - -#~ msgid "E851: Failed to create a new process for the GUI" -#~ msgstr "E851: . " - -#~ msgid "E852: The child process failed to start the GUI" -#~ msgstr "E852: - . " - -#~ msgid "E229: Cannot start the GUI" -#~ msgstr "E229: " - -#~ msgid "E230: Cannot read from \"%s\"" -#~ msgstr "E230: \"%s\"" - -#~ msgid "E665: Cannot start GUI, no valid font found" -#~ msgstr "" -#~ "E665: . , " -#~ "" - -#~ msgid "E231: 'guifontwide' invalid" -#~ msgstr "E231: 'guifontwide'" - -#~ msgid "E599: Value of 'imactivatekey' is invalid" -#~ msgstr "E599: 'imactivatekey'" - -#~ msgid "E254: Cannot allocate color %s" -#~ msgstr "E254: %s" - -#~ msgid "No match at cursor, finding next" -#~ msgstr " , " - -#~ msgid "<cannot open> " -#~ msgstr "< > " - -#~ msgid "E616: vim_SelFile: can't get font %s" -#~ msgstr "E616: vim_SelFile: %s " - -#~ msgid "E614: vim_SelFile: can't return to current directory" -#~ msgstr "E614: vim_SelFile: " - -#~ msgid "Pathname:" -#~ msgstr " :" - -#~ msgid "E615: vim_SelFile: can't get current directory" -#~ msgstr "E615: vim_SelFile: " - -#~ msgid "OK" -#~ msgstr "" - -#~ msgid "Cancel" -#~ msgstr "" - -#~ msgid "Scrollbar Widget: Could not get geometry of thumb pixmap." -#~ msgstr " : " - -#~ msgid "Vim dialog" -#~ msgstr " Vim" - -#~ msgid "E232: Cannot create BalloonEval with both message and callback" -#~ msgstr "" -#~ "E232: \"\" , , " -#~ ", " - -#~ msgid "Input _Methods" -#~ msgstr " " - -#~ msgid "VIM - Search and Replace..." -#~ msgstr "VIM ..." - -#~ msgid "VIM - Search..." -#~ msgstr "VIM ..." - -#~ msgid "Find what:" -#~ msgstr " :" - -#~ msgid "Replace with:" -#~ msgstr " :" - -#~ msgid "Match whole word only" -#~ msgstr " " - -#~ msgid "Match case" -#~ msgstr " " - -#~ msgid "Direction" -#~ msgstr "" - -#~ msgid "Up" -#~ msgstr "" - -#~ msgid "Down" -#~ msgstr "" - -#~ msgid "Find Next" -#~ msgstr " " - -#~ msgid "Replace" -#~ msgstr "" - -#~ msgid "Replace All" -#~ msgstr " " - -#~ msgid "Vim: Received \"die\" request from session manager\n" -#~ msgstr "Vim: \n" - -#~ msgid "Close" -#~ msgstr "" - -#~ msgid "New tab" -#~ msgstr " " - -#~ msgid "Open Tab..." -#~ msgstr " ..." - -#~ msgid "Vim: Main window unexpectedly destroyed\n" -#~ msgstr "Vim: \n" - -#~ msgid "&Filter" -#~ msgstr "&" - -#~ msgid "&Cancel" -#~ msgstr "&" - -#~ msgid "Directories" -#~ msgstr "" - -#~ msgid "Filter" -#~ msgstr "" - -#~ msgid "&Help" -#~ msgstr "&" - -#~ msgid "Files" -#~ msgstr "" - -#~ msgid "&OK" -#~ msgstr "&" - -#~ msgid "Selection" -#~ msgstr "" - -#~ msgid "Find &Next" -#~ msgstr " &" - -#~ msgid "&Replace" -#~ msgstr "&" - -#~ msgid "Replace &All" -#~ msgstr " &" - -#~ msgid "&Undo" -#~ msgstr "&" - -#~ msgid "E671: Cannot find window title \"%s\"" -#~ msgstr "E671: \"%s\" " - -#~ msgid "E243: Argument not supported: \"-%s\"; Use the OLE version." -#~ msgstr "E243: : \"-%s\"; OLE." - -#~ msgid "E672: Unable to open window inside MDI application" -#~ msgstr "E672: MDI" - -#~ msgid "Close tab" -#~ msgstr " " - -#~ msgid "Open tab..." -#~ msgstr " ..." - -#~ msgid "Find string (use '\\\\' to find a '\\')" -#~ msgstr " ( '\\\\' '\\')" - -#~ msgid "Find & Replace (use '\\\\' to find a '\\')" -#~ msgstr " ( '\\\\' '\\')" - -#~ msgid "Not Used" -#~ msgstr " " - -#~ msgid "Directory\t*.nothing\n" -#~ msgstr "\t*.\n" - -#~ msgid "" -#~ "Vim E458: Cannot allocate colormap entry, some colors may be incorrect" -#~ msgstr "" -#~ "Vim E458: , " -#~ " " - -#~ msgid "E250: Fonts for the following charsets are missing in fontset %s:" -#~ msgstr "" -#~ "E250: %s :" - -#~ msgid "E252: Fontset name: %s" -#~ msgstr "E252: : %s" - -#~ msgid "Font '%s' is not fixed-width" -#~ msgstr " '%s' " - -#~ msgid "E253: Fontset name: %s" -#~ msgstr "E253: : %s" - -#~ msgid "Font0: %s" -#~ msgstr "Font0: %s" - -#~ msgid "Font1: %s" -#~ msgstr "Font1: %s" - -#~ msgid "Font%<PRId64> width is not twice that of font0" -#~ msgstr "" -#~ " font%<PRId64> font0" - -#~ msgid "Font0 width: %<PRId64>" -#~ msgstr " font0: %<PRId64>" - -#~ msgid "Font1 width: %<PRId64>" -#~ msgstr " font1: %<PRId64>" - -#~ msgid "Invalid font specification" -#~ msgstr " " - -#~ msgid "&Dismiss" -#~ msgstr "&" - -#~ msgid "no specific match" -#~ msgstr " " - -#~ msgid "Vim - Font Selector" -#~ msgstr "Vim " - -#~ msgid "Name:" -#~ msgstr ":" - -#~ msgid "Show size in Points" -#~ msgstr " " - -#~ msgid "Encoding:" -#~ msgstr ":" - -#~ msgid "Font:" -#~ msgstr ":" - -#~ msgid "Style:" -#~ msgstr ":" - -#~ msgid "Size:" -#~ msgstr ":" - -#~ msgid "E256: Hangul automata ERROR" -#~ msgstr "E256: " - -#~ msgid "E563: stat error" -#~ msgstr "E563: stat" - -#~ msgid "E625: cannot open cscope database: %s" -#~ msgstr "E625: cscope: %s" - -#~ msgid "E626: cannot get cscope database information" -#~ msgstr "E626: cscope " - -#~ msgid "Lua library cannot be loaded." -#~ msgstr " Lua ." - -#~ msgid "cannot save undo information" -#~ msgstr " " - -#~ msgid "" -#~ "E815: Sorry, this command is disabled, the MzScheme libraries could not " -#~ "be loaded." -#~ msgstr "" -#~ "E815: , " -#~ " MzScheme" - -#~ msgid "invalid expression" -#~ msgstr " " - -#~ msgid "expressions disabled at compile time" -#~ msgstr " " - -#~ msgid "hidden option" -#~ msgstr " " - -#~ msgid "unknown option" -#~ msgstr " " - -#~ msgid "window index is out of range" -#~ msgstr " " - -#~ msgid "couldn't open buffer" -#~ msgstr " " - -#~ msgid "cannot delete line" -#~ msgstr " " - -#~ msgid "cannot replace line" -#~ msgstr " " - -#~ msgid "cannot insert line" -#~ msgstr " " - -#~ msgid "string cannot contain newlines" -#~ msgstr " " - -#~ msgid "error converting Scheme values to Vim" -#~ msgstr " Scheme Vim" - -#~ msgid "Vim error: ~a" -#~ msgstr " Vim: ~a" - -#~ msgid "Vim error" -#~ msgstr " Vim" - -#~ msgid "buffer is invalid" -#~ msgstr " " - -#~ msgid "window is invalid" -#~ msgstr " " - -#~ msgid "linenr out of range" -#~ msgstr " " - -#~ msgid "not allowed in the Vim sandbox" -#~ msgstr " Vim" - -#~ msgid "E836: This Vim cannot execute :python after using :py3" -#~ msgstr "" -#~ "E836: Vim :python :py3" - -#~ msgid "" -#~ "E263: Sorry, this command is disabled, the Python library could not be " -#~ "loaded." -#~ msgstr "" -#~ "E263: , " -#~ " Python" - -#~ msgid "E659: Cannot invoke Python recursively" -#~ msgstr "E659: Python" - -#~ msgid "E837: This Vim cannot execute :py3 after using :python" -#~ msgstr "" -#~ "E837: Vim :py3 :python" - -#~ msgid "E265: $_ must be an instance of String" -#~ msgstr "E265: $_ " - -#~ msgid "" -#~ "E266: Sorry, this command is disabled, the Ruby library could not be " -#~ "loaded." -#~ msgstr "" -#~ "E266: , " -#~ " Ruby" - -#~ msgid "E267: unexpected return" -#~ msgstr "E267: return" - -#~ msgid "E268: unexpected next" -#~ msgstr "E268: next" - -#~ msgid "E269: unexpected break" -#~ msgstr "E269: break" - -#~ msgid "E270: unexpected redo" -#~ msgstr "E270: redo" - -#~ msgid "E271: retry outside of rescue clause" -#~ msgstr "E271: retry rescue" - -#~ msgid "E272: unhandled exception" -#~ msgstr "E272: " - -#~ msgid "E273: unknown longjmp status %d" -#~ msgstr "E273: longjmp %d" - -#~ msgid "Toggle implementation/definition" -#~ msgstr " /" - -#~ msgid "Show base class of" -#~ msgstr " " - -#~ msgid "Show overridden member function" -#~ msgstr " " - -#~ msgid "Retrieve from file" -#~ msgstr " " - -#~ msgid "Retrieve from project" -#~ msgstr " " - -#~ msgid "Retrieve from all projects" -#~ msgstr " " - -#~ msgid "Retrieve" -#~ msgstr "" - -#~ msgid "Show source of" -#~ msgstr " " - -#~ msgid "Find symbol" -#~ msgstr " " - -#~ msgid "Browse class" -#~ msgstr " " - -#~ msgid "Show class in hierarchy" -#~ msgstr " " - -#~ msgid "Show class in restricted hierarchy" -#~ msgstr " " - -#~ msgid "Xref refers to" -#~ msgstr "Xref " - -#~ msgid "Xref referred by" -#~ msgstr " xref " - -#~ msgid "Xref has a" -#~ msgstr "Xref " - -#~ msgid "Xref used by" -#~ msgstr "Xref " - -#~ msgid "Show docu of" -#~ msgstr " docu" - -#~ msgid "Generate docu for" -#~ msgstr " docu" - -#~ msgid "" -#~ "Cannot connect to SNiFF+. Check environment (sniffemacs must be found in " -#~ "$PATH).\n" -#~ msgstr "" -#~ " SNiFF+. ." -#~ "(sniffemacs $PATH).\n" - -#~ msgid "E274: Sniff: Error during read. Disconnected" -#~ msgstr "E274: Sniff: . " - -#~ msgid "SNiFF+ is currently " -#~ msgstr " SNiFF+ " - -#~ msgid "not " -#~ msgstr " " - -#~ msgid "connected" -#~ msgstr "" - -#~ msgid "E275: Unknown SNiFF+ request: %s" -#~ msgstr "E275: SNiFF+: %s" - -#~ msgid "E276: Error connecting to SNiFF+" -#~ msgstr "E276: SNiFF+" - -#~ msgid "E278: SNiFF+ not connected" -#~ msgstr "E278: SNiFF+ " - -#~ msgid "E279: Not a SNiFF+ buffer" -#~ msgstr "E279: SNiFF+" - -#~ msgid "Sniff: Error during write. Disconnected" -#~ msgstr "Sniff: . " - -#~ msgid "invalid buffer number" -#~ msgstr " " - -#~ msgid "not implemented yet" -#~ msgstr " " - -#~ msgid "cannot set line(s)" -#~ msgstr " " - -#~ msgid "invalid mark name" -#~ msgstr " " - -#~ msgid "mark not set" -#~ msgstr " " - -#~ msgid "row %d column %d" -#~ msgstr " %d %d" - -#~ msgid "cannot insert/append line" -#~ msgstr " " - -#~ msgid "line number out of range" -#~ msgstr " " - -#~ msgid "unknown flag: " -#~ msgstr " : " - -#~ msgid "unknown vimOption" -#~ msgstr " vimOption" - -#~ msgid "keyboard interrupt" -#~ msgstr " " - -#~ msgid "vim error" -#~ msgstr " VIM" - -#~ msgid "cannot create buffer/window command: object is being deleted" -#~ msgstr "" -#~ " : " - -#~ msgid "" -#~ "cannot register callback command: buffer/window is already being deleted" -#~ msgstr "" -#~ " : " -#~ " " - -#~ msgid "" -#~ "E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-" -#~ "dev@vim.org" -#~ msgstr "" -#~ "E280: TCL: ?! " -#~ " vim-dev@vim.org" - -#~ msgid "cannot register callback command: buffer/window reference not found" -#~ msgstr "" -#~ " : " -#~ " " - -#~ msgid "" -#~ "E571: Sorry, this command is disabled: the Tcl library could not be " -#~ "loaded." -#~ msgstr "" -#~ "E571: , " -#~ " Tcl" - -#~ msgid "E572: exit code %d" -#~ msgstr "E572: %d" - -#~ msgid "cannot get line" -#~ msgstr " " - -#~ msgid "Unable to register a command server name" -#~ msgstr " " - -#~ msgid "E248: Failed to send command to the destination program" -#~ msgstr "E248: " - -#~ msgid "E573: Invalid server id used: %s" -#~ msgstr "E573: id : %s" - -#~ msgid "E251: VIM instance registry property is badly formed. Deleted!" -#~ msgstr "" -#~ "E251: VIM . " -#~ "!" - -#~ msgid "netbeans is not supported with this GUI\n" -#~ msgstr "NetBeans \n" - -#~ msgid "This Vim was not compiled with the diff feature." -#~ msgstr "" -#~ " Vim " - -#~ msgid "'-nb' cannot be used: not enabled at compile time\n" -#~ msgstr " '-nb': \n" - -#~ msgid "Vim: Error: Failure to start gvim from NetBeans\n" -#~ msgstr "Vim: : gvim NetBeans\n" - -#~ msgid "" -#~ "\n" -#~ "Where case is ignored prepend / to make flag upper case" -#~ msgstr "" -#~ "\n" -#~ " , / " - -#~ msgid "-register\t\tRegister this gvim for OLE" -#~ msgstr "-register\t\t gvim OLE" - -#~ msgid "-unregister\t\tUnregister gvim for OLE" -#~ msgstr "-unregister\t\t gvim OLE" - -#~ msgid "-g\t\t\tRun using GUI (like \"gvim\")" -#~ msgstr "-g\t\t\t ( \"gvim\")" - -#~ msgid "-f or --nofork\tForeground: Don't fork when starting GUI" -#~ msgstr "" -#~ "-f --nofork\t : fork GUI" - -#~ msgid "-f\t\t\tDon't use newcli to open window" -#~ msgstr "-f\t\t\t newcli " - -#~ msgid "-dev <device>\t\tUse <device> for I/O" -#~ msgstr "-dev <>\t\t I/O <>" - -#~ msgid "-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc" -#~ msgstr "-U <gvimrc>\t\t <gvimrc> .gvimrc" - -#~ msgid "-x\t\t\tEdit encrypted files" -#~ msgstr "-x\t\t\t " - -#~ msgid "-display <display>\tConnect vim to this particular X-server" -#~ msgstr "-display <>\t VIM X-" - -#~ msgid "-X\t\t\tDo not connect to X server" -#~ msgstr "-X\t\t\t X" - -#~ msgid "--remote <files>\tEdit <files> in a Vim server if possible" -#~ msgstr "" -#~ "--remote <>\t <> Vim" - -#~ msgid "--remote-silent <files> Same, don't complain if there is no server" -#~ msgstr "--remote-silent <> , " - -#~ msgid "" -#~ "--remote-wait <files> As --remote but wait for files to have been edited" -#~ msgstr "" -#~ "--remote-wait <> , --remote, " - -#~ msgid "" -#~ "--remote-wait-silent <files> Same, don't complain if there is no server" -#~ msgstr "" -#~ "--remote-wait-silent <> , " - -#~ msgid "" -#~ "--remote-tab[-wait][-silent] <files> As --remote but use tab page per " -#~ "file" -#~ msgstr "" -#~ "--remote-tab[-wait][-silent] <> , --remote, " -#~ "" - -#~ msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit" -#~ msgstr "--remote-send <>\t <> Vim " - -#~ msgid "" -#~ "--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result" -#~ msgstr "" -#~ "--remote-expr <>\t <> Vim " - -#~ msgid "--serverlist\t\tList available Vim server names and exit" -#~ msgstr "" -#~ "--serverlist\t\t Vim " - -#~ msgid "--servername <name>\tSend to/become the Vim server <name>" -#~ msgstr "" -#~ "--servername <>\t / Vim <>" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Motif version):\n" -#~ msgstr "" -#~ "\n" -#~ " gvim ( Motif):\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (neXtaw version):\n" -#~ msgstr "" -#~ "\n" -#~ " gvim ( neXtaw):\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Athena version):\n" -#~ msgstr "" -#~ "\n" -#~ " gvim ( Athena):\n" - -#~ msgid "-display <display>\tRun vim on <display>" -#~ msgstr "-display <>\t VIM <>" - -#~ msgid "-iconic\t\tStart vim iconified" -#~ msgstr "-iconic\t\t VIM " - -#~ msgid "-background <color>\tUse <color> for the background (also: -bg)" -#~ msgstr "" -#~ "-background <>\t <> (: -bg)" - -#~ msgid "-foreground <color>\tUse <color> for normal text (also: -fg)" -#~ msgstr "" -#~ "-foreground <>\t <> (: -fg)" - -#~ msgid "-font <font>\t\tUse <font> for normal text (also: -fn)" -#~ msgstr "" -#~ "-font <>\t\t <> (: -fn)" - -#~ msgid "-boldfont <font>\tUse <font> for bold text" -#~ msgstr "-boldfont <>\t <> " - -#~ msgid "-italicfont <font>\tUse <font> for italic text" -#~ msgstr "-italicfont <>\t <> " - -#~ msgid "-geometry <geom>\tUse <geom> for initial geometry (also: -geom)" -#~ msgstr "" -#~ "-geometry <>\t <> (: -geom)" - -#~ msgid "-borderwidth <width>\tUse a border width of <width> (also: -bw)" -#~ msgstr "-borderwidth <>\t <> (: -bw)" - -#~ msgid "" -#~ "-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)" -#~ msgstr "" -#~ "-scrollbarwidth <> (: -sw)" - -#~ msgid "-menuheight <height>\tUse a menu bar height of <height> (also: -mh)" -#~ msgstr "-menuheight <>\t <> (: -mh)" - -#~ msgid "-reverse\t\tUse reverse video (also: -rv)" -#~ msgstr "-reverse\t\t (: -rv)" - -#~ msgid "+reverse\t\tDon't use reverse video (also: +rv)" -#~ msgstr "+reverse\t\t (: +rv)" - -#~ msgid "-xrm <resource>\tSet the specified resource" -#~ msgstr "-xrm <>\t <>" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (GTK+ version):\n" -#~ msgstr "" -#~ "\n" -#~ " gvim ( GTK+):\n" - -#~ msgid "-display <display>\tRun vim on <display> (also: --display)" -#~ msgstr "" -#~ "-display <>\t VIM <> (: --" -#~ "display)" - -#~ msgid "--role <role>\tSet a unique role to identify the main window" -#~ msgstr "" -#~ "--role <>\t <> " -#~ "" - -#~ msgid "--socketid <xid>\tOpen Vim inside another GTK widget" -#~ msgstr "--socketid <xid>\t Vim GTK" - -#~ msgid "--echo-wid\t\tMake gvim echo the Window ID on stdout" -#~ msgstr "" -#~ "--echo-wid\t\t Window ID gvim " - -#~ msgid "-P <parent title>\tOpen Vim inside parent application" -#~ msgstr "-P < >\t Vim " - -#~ msgid "--windowid <HWND>\tOpen Vim inside another win32 widget" -#~ msgstr "--windowid <HWND>\t Vim win32" - -#~ msgid "No display" -#~ msgstr " " - -#~ msgid ": Send failed.\n" -#~ msgstr ": .\n" - -#~ msgid ": Send failed. Trying to execute locally\n" -#~ msgstr ": . \n" - -#~ msgid "%d of %d edited" -#~ msgstr " %d %d" - -#~ msgid "No display: Send expression failed.\n" -#~ msgstr " : .\n" - -#~ msgid ": Send expression failed.\n" -#~ msgstr ": .\n" - -#~ msgid "E543: Not a valid codepage" -#~ msgstr "E543: " - -#~ msgid "E284: Cannot set IC values" -#~ msgstr "E284: " - -#~ msgid "E285: Failed to create input context" -#~ msgstr "E285: " - -#~ msgid "E286: Failed to open input method" -#~ msgstr "E286: " - -#~ msgid "E287: Warning: Could not set destroy callback to IM" -#~ msgstr "" -#~ "E287: : . " -#~ "" - -#~ msgid "E288: input method doesn't support any style" -#~ msgstr "E288: " - -#~ msgid "E289: input method doesn't support my preedit type" -#~ msgstr "" -#~ "E289: " - -#~ msgid "E843: Error while updating swap file crypt" -#~ msgstr "E843: -" - -#~ msgid "" -#~ "E833: %s is encrypted and this version of Vim does not support encryption" -#~ msgstr "E833: %s , Vim " - -#~ msgid "Swap file is encrypted: \"%s\"" -#~ msgstr "- : \"%s\"" - -#~ msgid "" -#~ "\n" -#~ "If you entered a new crypt key but did not write the text file," -#~ msgstr "" -#~ "\n" -#~ " , ," - -#~ msgid "" -#~ "\n" -#~ "enter the new crypt key." -#~ msgstr "" -#~ "\n" -#~ " ." - -# , -#~ msgid "" -#~ "\n" -#~ "If you wrote the text file after changing the crypt key press enter" -#~ msgstr "" -#~ "\n" -#~ " , " -#~ "" - -# , -#~ msgid "" -#~ "\n" -#~ "to use the same key for text file and swap file" -#~ msgstr "" -#~ "\n" -#~ "Enter -" - -#~ msgid "Using crypt key from swap file for the text file.\n" -#~ msgstr "" -#~ " - .\n" - -#~ msgid "" -#~ "\n" -#~ " [not usable with this version of Vim]" -#~ msgstr "" -#~ "\n" -#~ " [ Vim]" - -#~ msgid "Tear off this menu" -#~ msgstr " " - -#~ msgid "Select Directory dialog" -#~ msgstr " " - -#~ msgid "Save File dialog" -#~ msgstr " " - -#~ msgid "Open File dialog" -#~ msgstr " " - -#~ msgid "E338: Sorry, no file browser in console mode" -#~ msgstr "" -#~ "E338: , " - -#~ msgid "Vim: preserving files...\n" -#~ msgstr "Vim: ...\n" - -#~ msgid "Vim: Finished.\n" -#~ msgstr "Vim: .\n" - -#~ msgid "ERROR: " -#~ msgstr ": " - -#~ msgid "" -#~ "\n" -#~ "[bytes] total alloc-freed %<PRIu64>-%<PRIu64>, in use %<PRIu64>, peak use " -#~ "%<PRIu64>\n" -#~ msgstr "" -#~ "\n" -#~ "[] .-. %<PRIu64>-%<PRIu64>, . %<PRIu64>, . " -#~ ". %<PRIu64>\n" - -#~ msgid "" -#~ "[calls] total re/malloc()'s %<PRIu64>, total free()'s %<PRIu64>\n" -#~ "\n" -#~ msgstr "" -#~ "[] re/malloc() %<PRIu64>, free() %<PRIu64>\n" -#~ "\n" - -#~ msgid "E340: Line is becoming too long" -#~ msgstr "E340: " - -#~ msgid "E341: Internal error: lalloc(%<PRId64>, )" -#~ msgstr "E341: : lalloc(%<PRId64>, )" - -#~ msgid "E547: Illegal mouseshape" -#~ msgstr "E547: " - -#~ msgid "Enter encryption key: " -#~ msgstr " : " - -#~ msgid "Enter same key again: " -#~ msgstr " : " - -#~ msgid "Keys don't match!" -#~ msgstr " !" - -#~ msgid "Cannot connect to Netbeans #2" -#~ msgstr " NetBeans #2" - -#~ msgid "Cannot connect to Netbeans" -#~ msgstr " NetBeans" - -#~ msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\"" -#~ msgstr "" -#~ "E668: NetBeans: " -#~ "\"%s\"" - -#~ msgid "read from Netbeans socket" -#~ msgstr " NetBeans" - -#~ msgid "E658: NetBeans connection lost for buffer %<PRId64>" -#~ msgstr "E658: NetBeans %<PRId64>" - -#~ msgid "E838: netbeans is not supported with this GUI" -#~ msgstr "E838: NetBeans " - -#~ msgid "E511: netbeans already connected" -#~ msgstr "E511: NetBeans" - -#~ msgid "E505: %s is read-only (add ! to override)" -#~ msgstr "" -#~ "E505: %s ( !, )" - -#~ msgid "E775: Eval feature not available" -#~ msgstr "E775: eval " - -#~ msgid "freeing %<PRId64> lines" -#~ msgstr " : %<PRId64>" - -#~ msgid "E530: Cannot change term in GUI" -#~ msgstr "E530: " - -#~ msgid "E531: Use \":gui\" to start the GUI" -#~ msgstr "E531: \":gui\"" - -#~ msgid "E617: Cannot be changed in the GTK+ 2 GUI" -#~ msgstr "E617: GTK+ 2" - -#~ msgid "E596: Invalid font(s)" -#~ msgstr "E596: " - -#~ msgid "E597: can't select fontset" -#~ msgstr "E597: " - -#~ msgid "E598: Invalid fontset" -#~ msgstr "E598: " - -#~ msgid "E533: can't select wide font" -#~ msgstr "E533: " - -#~ msgid "E534: Invalid wide font" -#~ msgstr "E534: " - -#~ msgid "E538: No mouse support" -#~ msgstr "E538: " - -#~ msgid "cannot open " -#~ msgstr " " - -#~ msgid "VIM: Can't open window!\n" -#~ msgstr "VIM: !\n" - -#~ msgid "Need Amigados version 2.04 or later\n" -#~ msgstr " Amigados 2.04 \n" - -#~ msgid "Need %s version %<PRId64>\n" -#~ msgstr " %s %<PRId64>\n" - -#~ msgid "Cannot open NIL:\n" -#~ msgstr " NIL:\n" - -#~ msgid "Cannot create " -#~ msgstr " " - -#~ msgid "Vim exiting with %d\n" -#~ msgstr " Vim %d\n" - -#~ msgid "cannot change console mode ?!\n" -#~ msgstr " ?!\n" - -#~ msgid "mch_get_shellsize: not a console??\n" -#~ msgstr "mch_get_shellsize: ??\n" - -#~ msgid "E360: Cannot execute shell with -f option" -#~ msgstr "E360: -f" - -#~ msgid "Cannot execute " -#~ msgstr " " - -#~ msgid "shell " -#~ msgstr " " - -#~ msgid " returned\n" -#~ msgstr " \n" - -#~ msgid "ANCHOR_BUF_SIZE too small." -#~ msgstr " ANCHOR_BUF_SIZE." - -#~ msgid "I/O ERROR" -#~ msgstr " /" - -#~ msgid "Message" -#~ msgstr "" - -#~ msgid "'columns' is not 80, cannot execute external commands" -#~ msgstr "" -#~ " 'columns' 80, " - -#~ msgid "E237: Printer selection failed" -#~ msgstr "E237: " - -#~ msgid "to %s on %s" -#~ msgstr " %s %s" - -#~ msgid "E613: Unknown printer font: %s" -#~ msgstr "E613: : %s" - -#~ msgid "E238: Print error: %s" -#~ msgstr "E238: : %s" - -#~ msgid "Printing '%s'" -#~ msgstr " '%s'" - -#~ msgid "E244: Illegal charset name \"%s\" in font name \"%s\"" -#~ msgstr "E244: \"%s\" \"%s\"" - -#~ msgid "E245: Illegal char '%c' in font name \"%s\"" -#~ msgstr "E245: '%c' \"%s\"" - -#~ msgid "Vim: Double signal, exiting\n" -#~ msgstr "Vim: , \n" - -#~ msgid "Vim: Caught deadly signal %s\n" -#~ msgstr "Vim: %s\n" - -#~ msgid "Vim: Caught deadly signal\n" -#~ msgstr "Vim: \n" - -#~ msgid "Opening the X display took %<PRId64> msec" -#~ msgstr " X %<PRId64> msec" - -#~ msgid "" -#~ "\n" -#~ "Vim: Got X error\n" -#~ msgstr "" -#~ "\n" -#~ "Vim: X\n" - -#~ msgid "Testing the X display failed" -#~ msgstr " X " - -#~ msgid "Opening the X display timed out" -#~ msgstr " X " - -#~ msgid "" -#~ "\n" -#~ "Cannot execute shell sh\n" -#~ msgstr "" -#~ "\n" -#~ " sh\n" - -#~ msgid "" -#~ "\n" -#~ "Cannot create pipes\n" -#~ msgstr "" -#~ "\n" -#~ " \n" - -#~ msgid "" -#~ "\n" -#~ "Cannot fork\n" -#~ msgstr "" -#~ "\n" -#~ " fork()\n" - -#~ msgid "" -#~ "\n" -#~ "Command terminated\n" -#~ msgstr "" -#~ "\n" -#~ " \n" - -#~ msgid "XSMP lost ICE connection" -#~ msgstr "XSMP ICE" - -#~ msgid "Opening the X display failed" -#~ msgstr " X" - -#~ msgid "XSMP handling save-yourself request" -#~ msgstr "XSMP " - -#~ msgid "XSMP opening connection" -#~ msgstr "XSMP " - -#~ msgid "XSMP ICE connection watch failed" -#~ msgstr "XSMP ICE" - -#~ msgid "XSMP SmcOpenConnection failed: %s" -#~ msgstr "XSMP SmcOpenConnection: %s" - -#~ msgid "At line" -#~ msgstr " " - -#~ msgid "Could not load vim32.dll!" -#~ msgstr " vim32.dll!" - -#~ msgid "VIM Error" -#~ msgstr " VIM" - -#~ msgid "Could not fix up function pointers to the DLL!" -#~ msgstr " DLL!" - -#~ msgid "shell returned %d" -#~ msgstr " %d" - -#~ msgid "Vim: Caught %s event\n" -#~ msgstr "Vim: %s\n" - -#~ msgid "close" -#~ msgstr "" - -#~ msgid "logoff" -#~ msgstr "" - -#~ msgid "shutdown" -#~ msgstr "" - -#~ msgid "E371: Command not found" -#~ msgstr "E371: " - -#~ msgid "" -#~ "VIMRUN.EXE not found in your $PATH.\n" -#~ "External commands will not pause after completion.\n" -#~ "See :help win32-vimrun for more information." -#~ msgstr "" -#~ "VIMRUN.EXE , $PATH.\n" -#~ " .\n" -#~ " :help win32-vimrun" - -#~ msgid "Vim Warning" -#~ msgstr " Vim" - -#~ msgid "Error file" -#~ msgstr " " - -#~ msgid "E868: Error building NFA with equivalence class!" -#~ msgstr "E868: !" - -#~ msgid "E878: (NFA) Could not allocate memory for branch traversal!" -#~ msgstr "E878: () !" - -#~ msgid "Warning: Cannot find word list \"%s_%s.spl\" or \"%s_ascii.spl\"" -#~ msgstr "" -#~ ": \"%s_%s.spl\" \"%s_ascii." -#~ "spl\"" - -#~ msgid "Conversion in %s not supported" -#~ msgstr " %s " - -#~ msgid "E845: Insufficient memory, word list will be incomplete" -#~ msgstr "E845: , " - -#~ msgid "E430: Tag file path truncated for %s\n" -#~ msgstr "E430: %s \n" - -#~ msgid "new shell started\n" -#~ msgstr " \n" - -#~ msgid "Used CUT_BUFFER0 instead of empty selection" -#~ msgstr " CUT_BUFFER0" - -#~ msgid "No undo possible; continue anyway" -#~ msgstr " ; " - -#~ msgid "E832: Non-encrypted file has encrypted undo file: %s" -#~ msgstr "E832: : %s" - -#~ msgid "E826: Undo file decryption failed: %s" -#~ msgstr "E826: : %s" - -#~ msgid "E827: Undo file is encrypted: %s" -#~ msgstr "E827: : %s" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16/32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ " MS-Windows 16/32 " - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 64-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ " MS-Windows 64 " - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ " MS-Windows 32 " - -#~ msgid " in Win32s mode" -#~ msgstr " Win32" - -#~ msgid " with OLE support" -#~ msgstr " OLE" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 64-bit console version" -#~ msgstr "" -#~ "\n" -#~ " MS-Windows 64 " - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit console version" -#~ msgstr "" -#~ "\n" -#~ " MS-Windows 32 " - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16-bit version" -#~ msgstr "" -#~ "\n" -#~ " MS-Windows 16 " - -#~ msgid "" -#~ "\n" -#~ "32-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ " MS-DOS 32 " - -#~ msgid "" -#~ "\n" -#~ "16-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ " MS-DOS 16 " - -#~ msgid "" -#~ "\n" -#~ "MacOS X (unix) version" -#~ msgstr "" -#~ "\n" -#~ " MacOS X (unix)" - -#~ msgid "" -#~ "\n" -#~ "MacOS X version" -#~ msgstr "" -#~ "\n" -#~ " MacOS X" - -#~ msgid "" -#~ "\n" -#~ "MacOS version" -#~ msgstr "" -#~ "\n" -#~ " MacOS" - -#~ msgid "" -#~ "\n" -#~ "OpenVMS version" -#~ msgstr "" -#~ "\n" -#~ " OpenVMS" - -#~ msgid "" -#~ "\n" -#~ "Big version " -#~ msgstr "" -#~ "\n" -#~ " " - -#~ msgid "" -#~ "\n" -#~ "Normal version " -#~ msgstr "" -#~ "\n" -#~ " " - -#~ msgid "" -#~ "\n" -#~ "Small version " -#~ msgstr "" -#~ "\n" -#~ " " - -#~ msgid "" -#~ "\n" -#~ "Tiny version " -#~ msgstr "" -#~ "\n" -#~ " \"\" " - -#~ msgid "with GTK2-GNOME GUI." -#~ msgstr " GTK2-GNOME." - -#~ msgid "with GTK2 GUI." -#~ msgstr " GTK2." - -#~ msgid "with X11-Motif GUI." -#~ msgstr " X11-Motif." - -#~ msgid "with X11-neXtaw GUI." -#~ msgstr " X11-neXtaw." - -#~ msgid "with X11-Athena GUI." -#~ msgstr " X11-Athena." - -#~ msgid "with Photon GUI." -#~ msgstr " Photon." - -#~ msgid "with GUI." -#~ msgstr " ." - -#~ msgid "with Carbon GUI." -#~ msgstr " Carbon." - -#~ msgid "with Cocoa GUI." -#~ msgstr " Cocoa." - -#~ msgid "with (classic) GUI." -#~ msgstr " ." - -#~ msgid " system gvimrc file: \"" -#~ msgstr " gvimrc: \"" - -#~ msgid " user gvimrc file: \"" -#~ msgstr " gvimrc: \"" - -#~ msgid "2nd user gvimrc file: \"" -#~ msgstr " gvimrc: \"" - -#~ msgid "3rd user gvimrc file: \"" -#~ msgstr " gvimrc: \"" - -#~ msgid " system menu file: \"" -#~ msgstr " : \"" - -#~ msgid "Compiler: " -#~ msgstr ": " - -#~ msgid "menu Help->Orphans for information " -#~ msgstr " -> " - -#~ msgid "Running modeless, typed text is inserted" -#~ msgstr " , " - -#~ msgid "menu Edit->Global Settings->Toggle Insert Mode " -#~ msgstr "" -#~ " -> -> " - -#~ msgid " for two modes " -#~ msgstr " " - -#~ msgid "menu Edit->Global Settings->Toggle Vi Compatible" -#~ msgstr "" -#~ " -> -> Vi " - -#~ msgid " for Vim defaults " -#~ msgstr " Vim " - -#~ msgid "WARNING: Windows 95/98/ME detected" -#~ msgstr ": Windows 95/98/ME" - -#~ msgid "type :help windows95<Enter> for info on this" -#~ msgstr " :help windows95<Enter> " - -#~ msgid "E370: Could not load library %s" -#~ msgstr "E370: %s" - -#~ msgid "" -#~ "Sorry, this command is disabled: the Perl library could not be loaded." -#~ msgstr "" -#~ ", : Perl" - -#~ msgid "E299: Perl evaluation forbidden in sandbox without the Safe module" -#~ msgstr "" -#~ "E299: Perl " - -#~ msgid "Edit with &multiple Vims" -#~ msgstr " & Vim-" - -#~ msgid "Edit with single &Vim" -#~ msgstr " & Vim" - -#~ msgid "Diff with Vim" -#~ msgstr " Vim" - -#~ msgid "Edit with &Vim" -#~ msgstr "& Vim" - -#~ msgid "Edit with existing Vim - " -#~ msgstr " Vim " - -#~ msgid "Edits the selected file(s) with Vim" -#~ msgstr " Vim" - -#~ msgid "Error creating process: Check if gvim is in your path!" -#~ msgstr " : gvim !" - -#~ msgid "gvimext.dll error" -#~ msgstr " gvimext.dll" - -#~ msgid "Path length too long!" -#~ msgstr " !" - -#~ msgid "E234: Unknown fontset: %s" -#~ msgstr "E234: : %s" - -#~ msgid "E235: Unknown font: %s" -#~ msgstr "E235: : %s" - -#~ msgid "E236: Font \"%s\" is not fixed-width" -#~ msgstr "E236: \"%s\" " - -#~ msgid "E448: Could not load library function %s" -#~ msgstr "E448: %s " - -#~ msgid "E26: Hebrew cannot be used: Not enabled at compile time\n" -#~ msgstr "E26: \n" - -#~ msgid "E27: Farsi cannot be used: Not enabled at compile time\n" -#~ msgstr "E27: \n" - -#~ msgid "E800: Arabic cannot be used: Not enabled at compile time\n" -#~ msgstr "E800: \n" - -#~ msgid "E247: no registered server named \"%s\"" -#~ msgstr "E247: \"%s\" " - -#~ msgid "E233: cannot open display" -#~ msgstr "E233: " - -#~ msgid "E449: Invalid expression received" -#~ msgstr "E449: " - -#~ msgid "E463: Region is guarded, cannot modify" -#~ msgstr "E463: " - -#~ msgid "E744: NetBeans does not allow changes in read-only files" -#~ msgstr "E744: NetBeans " - -#~ msgid "Need encryption key for \"%s\"" -#~ msgstr " \"%s\"" - -#~ msgid "empty keys are not allowed" -#~ msgstr " " - -#~ msgid "dictionary is locked" -#~ msgstr " " - -#~ msgid "list is locked" -#~ msgstr " " - -#~ msgid "failed to add key '%s' to dictionary" -#~ msgstr " '%s' " - -#~ msgid "index must be int or slice, not %s" -#~ msgstr " , %s" - -#~ msgid "expected str() or unicode() instance, but got %s" -#~ msgstr " str() unicode(), %s" - -#~ msgid "expected bytes() or str() instance, but got %s" -#~ msgstr " bytes() str(), %s" - -#~ msgid "" -#~ "expected int(), long() or something supporting coercing to long(), but " -#~ "got %s" -#~ msgstr "" -#~ " int(), long() - long(), %s" - -#~ msgid "expected int() or something supporting coercing to int(), but got %s" -#~ msgstr " int() - int(), %s" - -#~ msgid "value is too large to fit into C int type" -#~ msgstr " C" - -#~ msgid "value is too small to fit into C int type" -#~ msgstr " C" - -#~ msgid "number must be greater then zero" -#~ msgstr " " - -#~ msgid "number must be greater or equal to zero" -#~ msgstr " " - -#~ msgid "can't delete OutputObject attributes" -#~ msgstr " OutputObject" - -#~ msgid "invalid attribute: %s" -#~ msgstr " : %s" - -#~ msgid "E264: Python: Error initialising I/O objects" -#~ msgstr "E264: Python: I/O" - -#~ msgid "failed to change directory" -#~ msgstr " " - -#~ msgid "expected 3-tuple as imp.find_module() result, but got %s" -#~ msgstr " 3- imp.find_module(), %s" - -#~ msgid "" -#~ "expected 3-tuple as imp.find_module() result, but got tuple of size %d" -#~ msgstr "" -#~ " 3- imp.find_module(), " -#~ " %d" - -#~ msgid "internal error: imp.find_module returned tuple with NULL" -#~ msgstr " : imp.find_module " - -#~ msgid "cannot delete vim.Dictionary attributes" -#~ msgstr " vim.Dictionary" - -#~ msgid "cannot modify fixed dictionary" -#~ msgstr " " - -#~ msgid "cannot set attribute %s" -#~ msgstr " %s" - -#~ msgid "hashtab changed during iteration" -#~ msgstr "- " - -#~ msgid "expected sequence element of size 2, but got sequence of size %d" -#~ msgstr "" -#~ " - 2, " -#~ " %d" - -#~ msgid "list constructor does not accept keyword arguments" -#~ msgstr " " - -#~ msgid "list index out of range" -#~ msgstr " " - -#~ msgid "internal error: failed to get vim list item %d" -#~ msgstr " : VIM- %d" - -#~ msgid "failed to add item to list" -#~ msgstr " " - -#~ msgid "internal error: no vim list item %d" -#~ msgstr " : VIM- %d" - -#~ msgid "internal error: failed to add item to list" -#~ msgstr " : " - -#~ msgid "cannot delete vim.List attributes" -#~ msgstr " vim.List" - -#~ msgid "cannot modify fixed list" -#~ msgstr " " - -#~ msgid "unnamed function %s does not exist" -#~ msgstr " %s" - -#~ msgid "function %s does not exist" -#~ msgstr " %s " - -#~ msgid "function constructor does not accept keyword arguments" -#~ msgstr " " - -#~ msgid "failed to run function %s" -#~ msgstr " %s" - -#~ msgid "problem while switching windows" -#~ msgstr " " - -#~ msgid "unable to unset global option %s" -#~ msgstr " %s" - -#~ msgid "unable to unset option %s which does not have global value" -#~ msgstr " %s " - -#~ msgid "attempt to refer to deleted tab page" -#~ msgstr " " - -#~ msgid "no such tab page" -#~ msgstr " " - -#~ msgid "attempt to refer to deleted window" -#~ msgstr " " - -#~ msgid "readonly attribute: buffer" -#~ msgstr " : " - -#~ msgid "cursor position outside buffer" -#~ msgstr " " - -#~ msgid "no such window" -#~ msgstr " " - -#~ msgid "attempt to refer to deleted buffer" -#~ msgstr " " - -#~ msgid "failed to rename buffer" -#~ msgstr " " - -#~ msgid "mark name must be a single character" -#~ msgstr " " - -#~ msgid "expected vim.Buffer object, but got %s" -#~ msgstr " vim.Buffer, %s" - -#~ msgid "failed to switch to buffer %d" -#~ msgstr " %d" - -#~ msgid "expected vim.Window object, but got %s" -#~ msgstr " vim.Window, %s" - -#~ msgid "failed to find window in the current tab page" -#~ msgstr " " - -#~ msgid "did not switch to the specified window" -#~ msgstr " " - -#~ msgid "expected vim.TabPage object, but got %s" -#~ msgstr " vim.TabPage, %s" - -#~ msgid "did not switch to the specified tab page" -#~ msgstr " " - -#~ msgid "failed to run the code" -#~ msgstr " " - -#~ msgid "E858: Eval did not return a valid python object" -#~ msgstr "E858: Eval Python" - -#~ msgid "E859: Failed to convert returned python object to vim value" -#~ msgstr "" -#~ "E859: Python VIM" - -#~ msgid "unable to convert %s to vim dictionary" -#~ msgstr " %s VIM" - -#~ msgid "unable to convert %s to vim structure" -#~ msgstr " %s VIM" - -#~ msgid "internal error: NULL reference passed" -#~ msgstr " : NULL" - -#~ msgid "internal error: invalid value type" -#~ msgstr " : " - -#~ msgid "" -#~ "Failed to set path hook: sys.path_hooks is not a list\n" -#~ "You should now do the following:\n" -#~ "- append vim.path_hook to sys.path_hooks\n" -#~ "- append vim.VIM_SPECIAL_PATH to sys.path\n" -#~ msgstr "" -#~ " : sys.path_hooks " -#~ "\n" -#~ " :\n" -#~ " vim.path_hook sys.path_hooks\n" -#~ " vim.VIM_SPECIAL_PATH sys.path\n" - -#~ msgid "" -#~ "Failed to set path: sys.path is not a list\n" -#~ "You should now append vim.VIM_SPECIAL_PATH to sys.path" -#~ msgstr "" -#~ " : sys.path \n" -#~ " vim.VIM_SPECIAL_PATH sys.path" - -#~ msgid "" -#~ "E887: Sorry, this command is disabled, the Python's site module could not be " -#~ "loaded." -#~ msgstr "" -#~ "E887: , " -#~ "Python site." diff --git a/src/nvim/po/ru.po b/src/nvim/po/ru.po index 2511ef2c46..a4668743ba 100644 --- a/src/nvim/po/ru.po +++ b/src/nvim/po/ru.po @@ -2676,11 +2676,6 @@ msgstr "E49: Недопустимый размер прокрутки" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/sjiscorr.c b/src/nvim/po/sjiscorr.c deleted file mode 100644 index ebcbe16dee..0000000000 --- a/src/nvim/po/sjiscorr.c +++ /dev/null @@ -1,45 +0,0 @@ -// Simplistic program to correct SJIS inside strings. -// When a trail byte is a backslash it needs to be doubled. -// Public domain. - -#include <stdio.h> -#include <string.h> - -int main(int argc, char **argv) -{ - char buffer[BUFSIZ]; - char *p; - - while (fgets(buffer, BUFSIZ, stdin) != NULL) - { - for (p = buffer; *p != 0; p++) - { - if (strncmp(p, "charset=utf-8", 13) == 0) - { - fputs("charset=cp932", stdout); - p += 12; - } - else if (strncmp(p, "# Original translations", 23) == 0) - { - fputs("# generated from ja.po, DO NOT EDIT", stdout); - while (p[1] != '\n') - ++p; - } - else if (*(unsigned char *)p == 0x81 && p[1] == '_') - { - putchar('\\'); - ++p; - } - else - { - if (*p & 0x80) - { - putchar(*p++); - if (*p == '\\') - putchar(*p); - } - putchar(*p); - } - } - } -} diff --git a/src/nvim/po/sk.cp1250.po b/src/nvim/po/sk.cp1250.po index b1b0bb6ade..4b1e64bd02 100644 --- a/src/nvim/po/sk.cp1250.po +++ b/src/nvim/po/sk.cp1250.po @@ -2689,11 +2689,6 @@ msgstr "E49: Chybn hodnota vekosti rolovania" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/sk.po b/src/nvim/po/sk.po index 206e3e3ef6..e48a5de927 100644 --- a/src/nvim/po/sk.po +++ b/src/nvim/po/sk.po @@ -2689,11 +2689,6 @@ msgstr "E49: Chybn hodnota vekosti rolovania" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/sv.po b/src/nvim/po/sv.po index eedaecd1e7..f27ffa0dd4 100644 --- a/src/nvim/po/sv.po +++ b/src/nvim/po/sv.po @@ -4742,11 +4742,6 @@ msgstr "E900: Ogiltigt jobb-id" msgid "E901: Job table is full" msgstr "E901: Jobbtabellen r full" -#: ../globals.h:1008 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "E902: \"%s\" r inte krbar" - #: ../globals.h:1009 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/uk.cp1251.po b/src/nvim/po/uk.cp1251.po deleted file mode 100644 index 99d1763262..0000000000 --- a/src/nvim/po/uk.cp1251.po +++ /dev/null @@ -1,5250 +0,0 @@ -# -# Ukrainian Vim translation [uk] -# -# Copyright (C) 2001 Bohdan Vlasyuk <bohdan@vstu.edu.ua> -# Bohdan donated this work to be distributed with Vim under the Vim license. -# -# Thanks to: -# Dmytro Kovalov <dmytro.kovalov@nssmb.com> for useful suggestions -# Dmytro O. Redchuk <dor@kiev-online.net> for viminfo bug -# -msgid "" -msgstr "" -"Project-Id-Version: vim 7.4\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-26 14:21+0200\n" -"PO-Revision-Date: 2010-06-18 21:53+0300\n" -"Last-Translator: <sakhnik@gmail.com>\n" -"Language-Team: Bohdan Vlasyuk <bohdan@vstu.edu.ua>\n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=cp1251\n" -"Content-Transfer-Encoding: 8bit\n" - -msgid "Unable to get option value" -msgstr " " - -msgid "internal error: unknown option type" -msgstr " : " - -msgid "[Location List]" -msgstr "[ ]" - -msgid "[Quickfix List]" -msgstr "[ ]" - -msgid "E855: Autocommands caused command to abort" -msgstr "E855: " - -msgid "E82: Cannot allocate any buffer, exiting..." -msgstr "E82: , ..." - -msgid "E83: Cannot allocate buffer, using other one..." -msgstr "E83: , ..." - -msgid "E515: No buffers were unloaded" -msgstr "E515: " - -msgid "E516: No buffers were deleted" -msgstr "E516: " - -msgid "E517: No buffers were wiped out" -msgstr "E517: " - -msgid "1 buffer unloaded" -msgstr " " - -#, c-format -msgid "%d buffers unloaded" -msgstr " %d ()" - -msgid "1 buffer deleted" -msgstr " " - -#, c-format -msgid "%d buffers deleted" -msgstr " %d ()" - -msgid "1 buffer wiped out" -msgstr " " - -#, c-format -msgid "%d buffers wiped out" -msgstr " %d ()" - -msgid "E90: Cannot unload last buffer" -msgstr "E90: " - -msgid "E84: No modified buffer found" -msgstr "E84: " - -#. back where we started, didn't find anything. -msgid "E85: There is no listed buffer" -msgstr "E85: " - -#, c-format -msgid "E86: Buffer %<PRId64> does not exist" -msgstr "E86: %<PRId64> " - -msgid "E87: Cannot go beyond last buffer" -msgstr "E87: " - -msgid "E88: Cannot go before first buffer" -msgstr "E88: " - -#, c-format -msgid "" -"E89: No write since last change for buffer %<PRId64> (add ! to override)" -msgstr "E89: %<PRId64> (! )" - -#. wrap around (may cause duplicates) -msgid "W14: Warning: List of file names overflow" -msgstr "W14: : " - -#, c-format -msgid "E92: Buffer %<PRId64> not found" -msgstr "E92: %<PRId64> " - -#, c-format -msgid "E93: More than one match for %s" -msgstr "E93: %s" - -#, c-format -msgid "E94: No matching buffer for %s" -msgstr "E94: , %s" - -#, c-format -msgid "line %<PRId64>" -msgstr " %<PRId64>" - -msgid "E95: Buffer with this name already exists" -msgstr "E95: " - -msgid " [Modified]" -msgstr " []" - -msgid "[Not edited]" -msgstr "[ ]" - -msgid "[New file]" -msgstr "[ ]" - -msgid "[Read errors]" -msgstr "[ ]" - -msgid "[RO]" -msgstr "[RO]" - -msgid "[readonly]" -msgstr "[ ]" - -#, c-format -msgid "1 line --%d%%--" -msgstr " --%d%%--" - -#, c-format -msgid "%<PRId64> lines --%d%%--" -msgstr "%<PRId64> () --%d%%--" - -#, c-format -msgid "line %<PRId64> of %<PRId64> --%d%%-- col " -msgstr " %<PRId64> %<PRId64> --%d%%-- " - -msgid "[No Name]" -msgstr "[ ]" - -#. must be a help buffer -msgid "help" -msgstr "" - -msgid "[Help]" -msgstr "[]" - -msgid "[Preview]" -msgstr "[]" - -msgid "All" -msgstr "" - -msgid "Bot" -msgstr "" - -msgid "Top" -msgstr "" - -msgid "" -"\n" -"# Buffer list:\n" -msgstr "" -"\n" -"# :\n" - -msgid "[Scratch]" -msgstr "[ ]" - -msgid "" -"\n" -"--- Signs ---" -msgstr "" -"\n" -"--- ---" - -#, c-format -msgid "Signs for %s:" -msgstr " %s:" - -#, c-format -msgid " line=%<PRId64> id=%d name=%s" -msgstr " =%<PRId64> id=%d =%s" - -msgid "E545: Missing colon" -msgstr "E545: " - -msgid "E546: Illegal mode" -msgstr "E546: " - -msgid "E548: digit expected" -msgstr "E548: " - -msgid "E549: Illegal percentage" -msgstr "E549: " - -#, c-format -msgid "E96: Can not diff more than %<PRId64> buffers" -msgstr "E96: %<PRId64> ()" - -msgid "E810: Cannot read or write temp files" -msgstr "E810: " - -msgid "E97: Cannot create diffs" -msgstr "E97: " - -msgid "E816: Cannot read patch output" -msgstr "E816: patch" - -msgid "E98: Cannot read diff output" -msgstr "E98: diff" - -msgid "E99: Current buffer is not in diff mode" -msgstr "E99: " - -msgid "E793: No other buffer in diff mode is modifiable" -msgstr "E793: " - -msgid "E100: No other buffer in diff mode" -msgstr "E100: " - -msgid "E101: More than two buffers in diff mode, don't know which one to use" -msgstr "" -"E101: , , " -"" - -#, c-format -msgid "E102: Can't find buffer \"%s\"" -msgstr "E102: %s" - -#, c-format -msgid "E103: Buffer \"%s\" is not in diff mode" -msgstr "E103: %s " - -msgid "E787: Buffer changed unexpectedly" -msgstr "E787: " - -msgid "E104: Escape not allowed in digraph" -msgstr "E104: escape" - -msgid "E544: Keymap file not found" -msgstr "E544: " - -msgid "E105: Using :loadkeymap not in a sourced file" -msgstr "E105: :loadkeymap " - -msgid "E791: Empty keymap entry" -msgstr "E791: " - -msgid " Keyword completion (^N^P)" -msgstr " (^N^P)" - -#. ctrl_x_mode == 0, ^P/^N compl. -msgid " ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" -msgstr " ^X (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" - -msgid " Whole line completion (^L^N^P)" -msgstr " (^L^N^P)" - -msgid " File name completion (^F^N^P)" -msgstr " (^F^N^P)" - -msgid " Tag completion (^]^N^P)" -msgstr " 崳 (^]^N^P)" - -msgid " Path pattern completion (^N^P)" -msgstr " (^N^P)" - -msgid " Definition completion (^D^N^P)" -msgstr " (^D^N^P)" - -msgid " Dictionary completion (^K^N^P)" -msgstr " (^K^N^P)" - -msgid " Thesaurus completion (^T^N^P)" -msgstr " (^T^N^P)" - -msgid " Command-line completion (^V^N^P)" -msgstr " (^V^N^P)" - -msgid " User defined completion (^U^N^P)" -msgstr " (^U^N^P)" - -msgid " Omni completion (^O^N^P)" -msgstr " (^O^N^P)" - -msgid " Spelling suggestion (s^N^P)" -msgstr " (s^N^P)" - -msgid " Keyword Local completion (^N^P)" -msgstr " (^N^P)" - -msgid "Hit end of paragraph" -msgstr " " - -# msgstr "E443: " -msgid "E839: Completion function changed window" -msgstr "E839: " - -msgid "E840: Completion function deleted text" -msgstr "E840: " - -msgid "'dictionary' option is empty" -msgstr " 'dictionary' " - -msgid "'thesaurus' option is empty" -msgstr " 'thesaurus' " - -#, c-format -msgid "Scanning dictionary: %s" -msgstr " : %s" - -msgid " (insert) Scroll (^E/^Y)" -msgstr " () (^E/^Y)" - -msgid " (replace) Scroll (^E/^Y)" -msgstr " () (^E/^Y)" - -#, c-format -msgid "Scanning: %s" -msgstr " : %s" - -msgid "Scanning tags." -msgstr " 崳." - -msgid " Adding" -msgstr " " - -#. showmode might reset the internal line pointers, so it must -#. * be called before line = ml_get(), or when this address is no -#. * longer needed. -- Acevedo. -#. -msgid "-- Searching..." -msgstr "-- ..." - -msgid "Back at original" -msgstr " " - -msgid "Word from other line" -msgstr " " - -msgid "The only match" -msgstr " " - -#, c-format -msgid "match %d of %d" -msgstr " %d %d" - -#, c-format -msgid "match %d" -msgstr " %d" - -# msgstr "E17: " -msgid "E18: Unexpected characters in :let" -msgstr "E18: :let" - -#, c-format -msgid "E684: list index out of range: %<PRId64>" -msgstr "E684: : %<PRId64>" - -#, c-format -msgid "E121: Undefined variable: %s" -msgstr "E121: : %s" - -msgid "E111: Missing ']'" -msgstr "E111: ']'" - -#, c-format -msgid "E686: Argument of %s must be a List" -msgstr "E686: %s " - -#, c-format -msgid "E712: Argument of %s must be a List or Dictionary" -msgstr "E712: %s " - -msgid "E713: Cannot use empty key for Dictionary" -msgstr "E713: " - -# msgstr "E396: " -msgid "E714: List required" -msgstr "E714: " - -msgid "E715: Dictionary required" -msgstr "E715: " - -#, c-format -msgid "E118: Too many arguments for function: %s" -msgstr "E118: : %s" - -#, c-format -msgid "E716: Key not present in Dictionary: %s" -msgstr "E716: : %s" - -#, c-format -msgid "E122: Function %s already exists, add ! to replace it" -msgstr "E122: %s , ! " - -msgid "E717: Dictionary entry already exists" -msgstr "E717: " - -msgid "E718: Funcref required" -msgstr "E718: " - -msgid "E719: Cannot use [:] with a Dictionary" -msgstr "E719: [:] " - -#, c-format -msgid "E734: Wrong variable type for %s=" -msgstr "E734: %s=" - -#, c-format -msgid "E130: Unknown function: %s" -msgstr "E130: : %s" - -#, c-format -msgid "E461: Illegal variable name: %s" -msgstr "E461: : %s" - -# msgstr "E373: " -msgid "E806: using Float as a String" -msgstr "E806: Float String" - -msgid "E687: Less targets than List items" -msgstr "E687: ֳ , " - -msgid "E688: More targets than List items" -msgstr "E688: ֳ , " - -msgid "Double ; in list of variables" -msgstr " ; " - -# msgstr "E235: " -#, c-format -msgid "E738: Can't list variables for %s" -msgstr "E738: %s" - -msgid "E689: Can only index a List or Dictionary" -msgstr "E689: " - -msgid "E708: [:] must come last" -msgstr "E708: [:] " - -msgid "E709: [:] requires a List value" -msgstr "E709: [:] " - -msgid "E710: List value has more items than target" -msgstr "E710: , " - -msgid "E711: List value has not enough items" -msgstr "E711: " - -msgid "E690: Missing \"in\" after :for" -msgstr "E690: in :for" - -#, c-format -msgid "E107: Missing parentheses: %s" -msgstr "E107: : %s" - -#, c-format -msgid "E108: No such variable: \"%s\"" -msgstr "E108: : %s" - -msgid "E743: variable nested too deep for (un)lock" -msgstr "E743: -/." - -msgid "E109: Missing ':' after '?'" -msgstr "E109: ':' '?'" - -msgid "E691: Can only compare List with List" -msgstr "E691: " - -msgid "E692: Invalid operation for Lists" -msgstr "E692: " - -msgid "E735: Can only compare Dictionary with Dictionary" -msgstr "E735: " - -msgid "E736: Invalid operation for Dictionary" -msgstr "E736: " - -msgid "E693: Can only compare Funcref with Funcref" -msgstr "E693: " - -msgid "E694: Invalid operation for Funcrefs" -msgstr "E694: " - -msgid "E804: Cannot use '%' with Float" -msgstr "E804: '%' Float" - -msgid "E110: Missing ')'" -msgstr "E110: ')'" - -msgid "E695: Cannot index a Funcref" -msgstr "E695: " - -#, c-format -msgid "E112: Option name missing: %s" -msgstr "E112: : %s" - -#, c-format -msgid "E113: Unknown option: %s" -msgstr "E113: : %s" - -#, c-format -msgid "E114: Missing quote: %s" -msgstr "E114: : %s" - -#, c-format -msgid "E115: Missing quote: %s" -msgstr "E115: : %s" - -# msgstr "E404: " -#, c-format -msgid "E696: Missing comma in List: %s" -msgstr "E696: : %s" - -#, c-format -msgid "E697: Missing end of List ']': %s" -msgstr "E697: ']': %s" - -# msgstr "E235: " -#, c-format -msgid "E720: Missing colon in Dictionary: %s" -msgstr "E720: : %s" - -#, c-format -msgid "E721: Duplicate key in Dictionary: \"%s\"" -msgstr "E721: : %s" - -# msgstr "E235: " -#, c-format -msgid "E722: Missing comma in Dictionary: %s" -msgstr "E722: : %s" - -#, c-format -msgid "E723: Missing end of Dictionary '}': %s" -msgstr "E723: '}': %s" - -# msgstr "E21: " -msgid "E724: variable nested too deep for displaying" -msgstr "E724: " - -#, c-format -msgid "E740: Too many arguments for function %s" -msgstr "E740: %s" - -#, c-format -msgid "E116: Invalid arguments for function %s" -msgstr "E116: %s" - -#, c-format -msgid "E117: Unknown function: %s" -msgstr "E117: : %s" - -#, c-format -msgid "E119: Not enough arguments for function: %s" -msgstr "E119: %s" - -#, c-format -msgid "E120: Using <SID> not in a script context: %s" -msgstr "E120: <SID> : %s" - -#, c-format -msgid "E725: Calling dict function without Dictionary: %s" -msgstr "E725: dict- : %s" - -msgid "E808: Number or Float required" -msgstr "E808: Number Float" - -# msgstr "E14: " -msgid "add() argument" -msgstr " add()" - -msgid "E699: Too many arguments" -msgstr "E699: " - -# msgstr "E327: " -msgid "E785: complete() can only be used in Insert mode" -msgstr "E785: complete() " - -msgid "&Ok" -msgstr "&O:" - -# msgstr "E226: " -#, c-format -msgid "E737: Key already exists: %s" -msgstr "E737: : %s" - -# msgstr "E14: " -msgid "extend() argument" -msgstr " extend()" - -# msgstr "E14: " -msgid "map() argument" -msgstr " map()" - -# msgstr "E14: " -msgid "filter() argument" -msgstr " filter()" - -#, c-format -msgid "+-%s%3ld lines: " -msgstr "+-%s%3ld : " - -#, c-format -msgid "E700: Unknown function: %s" -msgstr "E700: : %s" - -msgid "called inputrestore() more often than inputsave()" -msgstr " inputrestore() , inputsave()" - -# msgstr "E14: " -msgid "insert() argument" -msgstr " insert()" - -# msgstr "E406: " -msgid "E786: Range not allowed" -msgstr "E786: " - -# msgstr "E177: " -msgid "E701: Invalid type for len()" -msgstr "E701: len()" - -msgid "E726: Stride is zero" -msgstr "E726: " - -msgid "E727: Start past end" -msgstr "E727: " - -msgid "<empty>" -msgstr "<>" - -# msgstr "E14: " -msgid "remove() argument" -msgstr " remove()" - -msgid "E655: Too many symbolic links (cycle?)" -msgstr "E655: (?)" - -# msgstr "E14: " -msgid "reverse() argument" -msgstr " reverse()" - -# msgstr "E14: " -msgid "sort() argument" -msgstr " sort()" - -# msgstr "E14: " -msgid "uniq() argument" -msgstr " uniq()" - -# msgstr "E364: " -msgid "E702: Sort compare function failed" -msgstr "E702: " - -# msgstr "E364: " -msgid "E882: Uniq compare function failed" -msgstr "E882: uniq" - -msgid "(Invalid)" -msgstr "()" - -msgid "E677: Error writing temp file" -msgstr "E677: " - -msgid "E805: Using a Float as a Number" -msgstr "E805: Float Number" - -msgid "E703: Using a Funcref as a Number" -msgstr "E703: Funcref Number" - -msgid "E745: Using a List as a Number" -msgstr "E745: List Number" - -msgid "E728: Using a Dictionary as a Number" -msgstr "E728: Dictionary Number" - -msgid "E729: using Funcref as a String" -msgstr "E729: Funcref String" - -# msgstr "E373: " -msgid "E730: using List as a String" -msgstr "E730: List String" - -msgid "E731: using Dictionary as a String" -msgstr "E731: Dictionary String" - -#, c-format -msgid "E706: Variable type mismatch for: %s" -msgstr "E706: : %s" - -#, c-format -msgid "E795: Cannot delete variable %s" -msgstr "E795: %s" - -#, c-format -msgid "E704: Funcref variable name must start with a capital: %s" -msgstr "E704: Funcref : %s" - -#, c-format -msgid "E705: Variable name conflicts with existing function: %s" -msgstr "E705: : %s" - -#, c-format -msgid "E741: Value is locked: %s" -msgstr "E741: : %s" - -msgid "Unknown" -msgstr "" - -#, c-format -msgid "E742: Cannot change value of %s" -msgstr "E742: %s" - -msgid "E698: variable nested too deep for making a copy" -msgstr "E698: " - -#, c-format -msgid "E123: Undefined function: %s" -msgstr "E123: : %s" - -#, c-format -msgid "E124: Missing '(': %s" -msgstr "E124: '(': %s" - -msgid "E862: Cannot use g: here" -msgstr "E862: g:" - -#, c-format -msgid "E125: Illegal argument: %s" -msgstr "E125: : %s" - -#, c-format -msgid "E853: Duplicate argument name: %s" -msgstr "E853: : %s" - -msgid "E126: Missing :endfunction" -msgstr "E126: :endfunction" - -#, c-format -msgid "E707: Function name conflicts with variable: %s" -msgstr "E707: : %s" - -#, c-format -msgid "E127: Cannot redefine function %s: It is in use" -msgstr "E127: %s: " - -#, c-format -msgid "E746: Function name does not match script file name: %s" -msgstr "E746: : %s" - -msgid "E129: Function name required" -msgstr "E129: " - -#, c-format -msgid "E128: Function name must start with a capital or \"s:\": %s" -msgstr "" -"E128: \"s:\": %s" - -#, c-format -msgid "E884: Function name cannot contain a colon: %s" -msgstr "" -"E884: : %s" - -#, c-format -msgid "E131: Cannot delete function %s: It is in use" -msgstr "E131: %s: " - -msgid "E132: Function call depth is higher than 'maxfuncdepth'" -msgstr "E132: 'maxfuncdepth'" - -#, c-format -msgid "calling %s" -msgstr " %s" - -#, c-format -msgid "%s aborted" -msgstr "%s " - -#, c-format -msgid "%s returning #%<PRId64>" -msgstr "%s #%<PRId64>" - -#, c-format -msgid "%s returning %s" -msgstr "%s %s" - -#, c-format -msgid "continuing in %s" -msgstr " %s" - -msgid "E133: :return not inside a function" -msgstr "E133: :return " - -msgid "" -"\n" -"# global variables:\n" -msgstr "" -"\n" -"# :\n" - -msgid "" -"\n" -"\tLast set from " -msgstr "" -"\n" -"\t " - -msgid "No old files" -msgstr " " - -#, c-format -msgid "<%s>%s%s %d, Hex %02x, Octal %03o" -msgstr "<%s>%s%s %d, %02x, %03o" - -#, c-format -msgid "> %d, Hex %04x, Octal %o" -msgstr "> %d, %04x, %o" - -#, c-format -msgid "> %d, Hex %08x, Octal %o" -msgstr "> %d, %08x, %o" - -msgid "E134: Move lines into themselves" -msgstr "E134: " - -msgid "1 line moved" -msgstr " " - -#, c-format -msgid "%<PRId64> lines moved" -msgstr " %<PRId64> ()" - -#, c-format -msgid "%<PRId64> lines filtered" -msgstr "³ %<PRId64> ()" - -msgid "E135: *Filter* Autocommands must not change current buffer" -msgstr "E135: *Filter* " - -msgid "[No write since last change]\n" -msgstr "[ ]\n" - -#, c-format -msgid "%sviminfo: %s in line: " -msgstr "%sviminfo: %s : " - -msgid "E136: viminfo: Too many errors, skipping rest of file" -msgstr "E136: viminfo: , " - -#, c-format -msgid "Reading viminfo file \"%s\"%s%s%s" -msgstr " viminfo: %s%s%s%s" - -msgid " info" -msgstr " " - -msgid " marks" -msgstr " " - -msgid " oldfiles" -msgstr " " - -msgid " FAILED" -msgstr " " - -#. avoid a wait_return for this message, it's annoying -#, c-format -msgid "E137: Viminfo file is not writable: %s" -msgstr "E137: viminfo: %s" - -#, c-format -msgid "E138: Can't write viminfo file %s!" -msgstr "E138: viminfo %s!" - -#, c-format -msgid "Writing viminfo file \"%s\"" -msgstr " viminfo %s" - -#. Write the info: -#, c-format -msgid "# This viminfo file was generated by Vim %s.\n" -msgstr "# Vim %s.\n" - -msgid "" -"# You may edit it if you're careful!\n" -"\n" -msgstr "" -"# , !\n" -"\n" - -msgid "# Value of 'encoding' when this file was written\n" -msgstr "# 'encoding' \n" - -msgid "Illegal starting char" -msgstr " " - -msgid "Write partial file?" -msgstr " ?" - -msgid "E140: Use ! to write partial buffer" -msgstr "E140: ! " - -#, c-format -msgid "Overwrite existing file \"%s\"?" -msgstr " %s?" - -#, c-format -msgid "Swap file \"%s\" exists, overwrite anyway?" -msgstr " %s , ?" - -#, c-format -msgid "E768: Swap file exists: %s (:silent! overrides)" -msgstr "E768: : %s (:silent! )" - -#, c-format -msgid "E141: No file name for buffer %<PRId64>" -msgstr "E141: %<PRId64>" - -msgid "E142: File not written: Writing is disabled by 'write' option" -msgstr "E142: : 'write'" - -#, c-format -msgid "" -"'readonly' option is set for \"%s\".\n" -"Do you wish to write anyway?" -msgstr "" -" %s 'readonly'.\n" -" ?" - -#, c-format -msgid "" -"File permissions of \"%s\" are read-only.\n" -"It may still be possible to write it.\n" -"Do you wish to try?" -msgstr "" -" %s .\n" -", , .\n" -" ?" - -#, c-format -msgid "E505: \"%s\" is read-only (add ! to override)" -msgstr "E505: %s (! )" - -#, c-format -msgid "E143: Autocommands unexpectedly deleted new buffer %s" -msgstr "E143: %s" - -msgid "E144: non-numeric argument to :z" -msgstr "E144: :z" - -msgid "E145: Shell commands not allowed in rvim" -msgstr "E145: rvim " - -msgid "E146: Regular expressions can't be delimited by letters" -msgstr "E146: " - -#, c-format -msgid "replace with %s (y/n/a/q/l/^E/^Y)?" -msgstr " %s (y/n/a/q/l/^E/^Y)?" - -msgid "(Interrupted) " -msgstr "() " - -# msgstr "E31: " -msgid "1 match" -msgstr " " - -msgid "1 substitution" -msgstr " " - -#, c-format -msgid "%<PRId64> matches" -msgstr "%<PRId64> ()" - -#, c-format -msgid "%<PRId64> substitutions" -msgstr "%<PRId64> ()" - -msgid " on 1 line" -msgstr " " - -#, c-format -msgid " on %<PRId64> lines" -msgstr " %<PRId64> " - -msgid "E147: Cannot do :global recursive" -msgstr "E147: :global " - -msgid "E148: Regular expression missing from global" -msgstr "E148: global " - -#, c-format -msgid "Pattern found in every line: %s" -msgstr " : %s" - -#, c-format -msgid "Pattern not found: %s" -msgstr " : %s" - -msgid "" -"\n" -"# Last Substitute String:\n" -"$" -msgstr "" -"\n" -"# :\n" -"$" - -msgid "E478: Don't panic!" -msgstr "E478: !" - -#, c-format -msgid "E661: Sorry, no '%s' help for %s" -msgstr "E661: , '%s' %s" - -#, c-format -msgid "E149: Sorry, no help for %s" -msgstr "E149: , %s" - -#, c-format -msgid "Sorry, help file \"%s\" not found" -msgstr ", %s " - -#, c-format -msgid "E150: Not a directory: %s" -msgstr "E150: : %s" - -#, c-format -msgid "E152: Cannot open %s for writing" -msgstr "E152: %s " - -#, c-format -msgid "E153: Unable to open %s for reading" -msgstr "E153: %s " - -#, c-format -msgid "E670: Mix of help file encodings within a language: %s" -msgstr "E670: ̳ %s" - -#, c-format -msgid "E154: Duplicate tag \"%s\" in file %s/%s" -msgstr "E154: %s %s/%s" - -#, c-format -msgid "E160: Unknown sign command: %s" -msgstr "E160: : %s" - -msgid "E156: Missing sign name" -msgstr "E156: " - -msgid "E612: Too many signs defined" -msgstr "E612: " - -#, c-format -msgid "E239: Invalid sign text: %s" -msgstr "E239: : %s" - -#, c-format -msgid "E155: Unknown sign: %s" -msgstr "E155: : %s" - -msgid "E159: Missing sign number" -msgstr "E159: " - -#, c-format -msgid "E158: Invalid buffer name: %s" -msgstr "E158: : %s" - -#, c-format -msgid "E157: Invalid sign ID: %<PRId64>" -msgstr "E157: ID : %<PRId64>" - -msgid " (not supported)" -msgstr " ( )" - -msgid "[Deleted]" -msgstr "[]" - -msgid "Entering Debug mode. Type \"cont\" to continue." -msgstr " . cont." - -#, c-format -msgid "line %<PRId64>: %s" -msgstr " %<PRId64>: %s" - -#, c-format -msgid "cmd: %s" -msgstr ": %s" - -#, c-format -msgid "Breakpoint in \"%s%s\" line %<PRId64>" -msgstr " %s%s %<PRId64>" - -#, c-format -msgid "E161: Breakpoint not found: %s" -msgstr "E161: : %s" - -msgid "No breakpoints defined" -msgstr " " - -#, c-format -msgid "%3d %s %s line %<PRId64>" -msgstr "%3d %s %s %<PRId64>" - -msgid "E750: First use \":profile start {fname}\"" -msgstr "E750: :profile start {}" - -#, c-format -msgid "Save changes to \"%s\"?" -msgstr " %s?" - -msgid "Untitled" -msgstr "" - -#, c-format -msgid "E162: No write since last change for buffer \"%s\"" -msgstr "E162: %s " - -msgid "Warning: Entered other buffer unexpectedly (check autocommands)" -msgstr "" -": ( )" - -msgid "E163: There is only one file to edit" -msgstr "E163: " - -msgid "E164: Cannot go before first file" -msgstr "E164: " - -msgid "E165: Cannot go beyond last file" -msgstr "E165: " - -#, c-format -msgid "E666: compiler not supported: %s" -msgstr "E666: : %s" - -# msgstr "E195: " -#, c-format -msgid "Searching for \"%s\" in \"%s\"" -msgstr " %s %s" - -#, c-format -msgid "Searching for \"%s\"" -msgstr " %s" - -#, c-format -msgid "not found in 'runtimepath': \"%s\"" -msgstr " 'runtimepath' %s" - -#, c-format -msgid "Cannot source a directory: \"%s\"" -msgstr " : %s" - -#, c-format -msgid "could not source \"%s\"" -msgstr " %s" - -#, c-format -msgid "line %<PRId64>: could not source \"%s\"" -msgstr " %<PRId64>: %s" - -#, c-format -msgid "sourcing \"%s\"" -msgstr " %s" - -#, c-format -msgid "line %<PRId64>: sourcing \"%s\"" -msgstr " %<PRId64>: %s" - -#, c-format -msgid "finished sourcing %s" -msgstr " %s" - -msgid "modeline" -msgstr "modeline" - -# msgstr "E14: " -msgid "--cmd argument" -msgstr "--cmd " - -# msgstr "E14: " -msgid "-c argument" -msgstr "-c " - -msgid "environment variable" -msgstr " " - -msgid "error handler" -msgstr " " - -msgid "W15: Warning: Wrong line separator, ^M may be missing" -msgstr "W15: : , , ^M" - -msgid "E167: :scriptencoding used outside of a sourced file" -msgstr "E167: :scriptencoding " - -msgid "E168: :finish used outside of a sourced file" -msgstr "E168: :finish " - -#, c-format -msgid "Current %slanguage: \"%s\"" -msgstr " (%s): %s" - -#, c-format -msgid "E197: Cannot set language to \"%s\"" -msgstr "E197: %s" - -#. don't redisplay the window -#. don't wait for return -msgid "Entering Ex mode. Type \"visual\" to go to Normal mode." -msgstr " Ex. visual" - -msgid "E501: At end-of-file" -msgstr "E501: ʳ " - -msgid "E169: Command too recursive" -msgstr "E169: " - -#, c-format -msgid "E605: Exception not caught: %s" -msgstr "E605: : %s" - -msgid "End of sourced file" -msgstr "ʳ " - -msgid "End of function" -msgstr "ʳ " - -msgid "E464: Ambiguous use of user-defined command" -msgstr "E464: " - -msgid "E492: Not an editor command" -msgstr "E492: " - -msgid "E493: Backwards range given" -msgstr "E493: " - -msgid "Backwards range given, OK to swap" -msgstr " , " - -#. append -#. typed wrong -msgid "E494: Use w or w>>" -msgstr "E494: w w>>" - -msgid "E319: The command is not available in this version" -msgstr "E319: , " - -msgid "E172: Only one file name allowed" -msgstr "E172: " - -msgid "1 more file to edit. Quit anyway?" -msgstr " . ?" - -#, c-format -msgid "%d more files to edit. Quit anyway?" -msgstr " %d . ?" - -msgid "E173: 1 more file to edit" -msgstr "E173: " - -#, c-format -msgid "E173: %<PRId64> more files to edit" -msgstr "E173: %<PRId64> " - -msgid "E174: Command already exists: add ! to replace it" -msgstr "E174: , ! " - -msgid "" -"\n" -" Name Args Range Complete Definition" -msgstr "" -"\n" -" . " - -msgid "No user-defined commands found" -msgstr " " - -msgid "E175: No attribute specified" -msgstr "E175: " - -msgid "E176: Invalid number of arguments" -msgstr "E176: " - -msgid "E177: Count cannot be specified twice" -msgstr "E177: ˳ " - -# msgstr "E177: " -msgid "E178: Invalid default value for count" -msgstr "E178: " - -# msgstr "E178: " -msgid "E179: argument required for -complete" -msgstr "E179: -complete " - -# msgstr "E180: " -#, c-format -msgid "E181: Invalid attribute: %s" -msgstr "E181: : %s" - -# msgstr "E181: " -msgid "E182: Invalid command name" -msgstr "E182: " - -# msgstr "E182: " -msgid "E183: User defined commands must start with an uppercase letter" -msgstr "E183: " - -msgid "E841: Reserved name, cannot be used for user defined command" -msgstr "" -"E841: , " - -# msgstr "E183: " -#, c-format -msgid "E184: No such user-defined command: %s" -msgstr "E184: : %s" - -# msgstr "E179: " -#, c-format -msgid "E180: Invalid complete value: %s" -msgstr "E180: : %s" - -msgid "E468: Completion argument only allowed for custom completion" -msgstr "E468: " - -msgid "E467: Custom completion requires a function argument" -msgstr "E467: -" - -# msgstr "E184: " -#, c-format -msgid "E185: Cannot find color scheme '%s'" -msgstr "E185: %s" - -msgid "Greetings, Vim user!" -msgstr "³, Vim!" - -# msgstr "E443: " -msgid "E784: Cannot close last tab page" -msgstr "E784: " - -# msgstr "E444: " -msgid "Already only one tab page" -msgstr " " - -#, c-format -msgid "Tab page %d" -msgstr " %d" - -msgid "No swap file" -msgstr " " - -msgid "E747: Cannot change directory, buffer is modified (add ! to override)" -msgstr "E747: , (! )" - -msgid "E186: No previous directory" -msgstr "E186: " - -# msgstr "E186: " -msgid "E187: Unknown" -msgstr "E187: " - -msgid "E465: :winsize requires two number arguments" -msgstr "E465: :winsize " - -msgid "E188: Obtaining window position not implemented for this platform" -msgstr "E188: " - -msgid "E466: :winpos requires two number arguments" -msgstr "E466: :winpos " - -#, c-format -msgid "E739: Cannot create directory: %s" -msgstr "E739: : %s" - -#, c-format -msgid "E189: \"%s\" exists (add ! to override)" -msgstr "E189: %s (! )" - -# msgstr "E189: " -#, c-format -msgid "E190: Cannot open \"%s\" for writing" -msgstr "E190: %s " - -# msgstr "E190: " -#. set mark -msgid "E191: Argument must be a letter or forward/backward quote" -msgstr "E191: , ` '" - -# msgstr "E191: " -msgid "E192: Recursive use of :normal too deep" -msgstr "E192: :normal" - -# msgstr "E193: " -msgid "E194: No alternate file name to substitute for '#'" -msgstr "E194: '#'" - -msgid "E495: no autocommand file name to substitute for \"<afile>\"" -msgstr "E495: <afile>" - -msgid "E496: no autocommand buffer number to substitute for \"<abuf>\"" -msgstr "E496: <abuf>" - -msgid "E497: no autocommand match name to substitute for \"<amatch>\"" -msgstr "E497: <amatch>" - -msgid "E498: no :source file name to substitute for \"<sfile>\"" -msgstr "E498: :source <sfile>" - -msgid "E842: no line number to use for \"<slnum>\"" -msgstr "E842: , <sfile>" - -#, c-format -msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" -msgstr "E499: '%' '#' , :p:h" - -msgid "E500: Evaluates to an empty string" -msgstr "E500: " - -msgid "E195: Cannot open viminfo file for reading" -msgstr "E195: viminfo" - -msgid "E608: Cannot :throw exceptions with 'Vim' prefix" -msgstr "E608: (:throw) 'Vim'" - -#. always scroll up, don't overwrite -#, c-format -msgid "Exception thrown: %s" -msgstr " : %s" - -#, c-format -msgid "Exception finished: %s" -msgstr " : %s" - -#, c-format -msgid "Exception discarded: %s" -msgstr " : %s" - -#, c-format -msgid "%s, line %<PRId64>" -msgstr "%s, %<PRId64>" - -#. always scroll up, don't overwrite -#, c-format -msgid "Exception caught: %s" -msgstr " : %s" - -#, c-format -msgid "%s made pending" -msgstr " %s" - -#, c-format -msgid "%s resumed" -msgstr "³ %s" - -#, c-format -msgid "%s discarded" -msgstr " %s" - -msgid "Exception" -msgstr "" - -msgid "Error and interrupt" -msgstr ", " - -# msgstr "E231: " -msgid "Error" -msgstr "" - -#. if (pending & CSTP_INTERRUPT) -msgid "Interrupt" -msgstr "" - -msgid "E579: :if nesting too deep" -msgstr "E579: :if" - -msgid "E580: :endif without :if" -msgstr "E580: :endif :if" - -msgid "E581: :else without :if" -msgstr "E581: :else :if" - -msgid "E582: :elseif without :if" -msgstr "E582: :elseif :if" - -msgid "E583: multiple :else" -msgstr "E583: :else" - -msgid "E584: :elseif after :else" -msgstr "E584: :elseif :else" - -msgid "E585: :while/:for nesting too deep" -msgstr "E585: :while/:for" - -msgid "E586: :continue without :while or :for" -msgstr "E586: :continue :while :for" - -msgid "E587: :break without :while or :for" -msgstr "E587: :break :while :for" - -msgid "E732: Using :endfor with :while" -msgstr "E732: :endfor :while" - -msgid "E733: Using :endwhile with :for" -msgstr "E733: :endwhile :for" - -msgid "E601: :try nesting too deep" -msgstr "E601: :try" - -msgid "E603: :catch without :try" -msgstr "E603: :catch :try" - -#. Give up for a ":catch" after ":finally" and ignore it. -#. * Just parse. -msgid "E604: :catch after :finally" -msgstr "E604: :catch :finally" - -msgid "E606: :finally without :try" -msgstr "E606: :finally :try" - -#. Give up for a multiple ":finally" and ignore it. -msgid "E607: multiple :finally" -msgstr "E607: :finally" - -msgid "E602: :endtry without :try" -msgstr "E602: :entry :try" - -msgid "E193: :endfunction not inside a function" -msgstr "E193: :endfunction " - -msgid "E788: Not allowed to edit another buffer now" -msgstr "E788: " - -msgid "E811: Not allowed to change buffer information now" -msgstr "E811: " - -# msgstr "E197: " -msgid "tagname" -msgstr " " - -msgid " kind file\n" -msgstr " \n" - -msgid "'history' option is zero" -msgstr " 'history' " - -#, c-format -msgid "" -"\n" -"# %s History (newest to oldest):\n" -msgstr "" -"\n" -"# %s ( ):\n" - -msgid "Command Line" -msgstr "" - -msgid "Search String" -msgstr " " - -msgid "Expression" -msgstr "" - -msgid "Input Line" -msgstr " " - -msgid "E198: cmd_pchar beyond the command length" -msgstr "E198: cmd_pchar " - -msgid "E199: Active window or buffer deleted" -msgstr "E199: " - -msgid "E854: path too long for completion" -msgstr "E854: " - -#, c-format -msgid "" -"E343: Invalid path: '**[number]' must be at the end of the path or be " -"followed by '%s'." -msgstr "" -"E343: : `**[]' " -"'%s'." - -# msgstr "E343: " -#, c-format -msgid "E344: Can't find directory \"%s\" in cdpath" -msgstr "E344: %s cdpath" - -# msgstr "E344: " -#, c-format -msgid "E345: Can't find file \"%s\" in path" -msgstr "E345: %s path" - -# msgstr "E345: " -#, c-format -msgid "E346: No more directory \"%s\" found in cdpath" -msgstr "E346: cdpath %s" - -# msgstr "E346: " -#, c-format -msgid "E347: No more file \"%s\" found in path" -msgstr "E347: %s" - -msgid "E812: Autocommands changed buffer or buffer name" -msgstr "E812: " - -# msgstr "E199: " -msgid "Illegal file name" -msgstr " " - -msgid "is a directory" -msgstr "" - -msgid "is not a file" -msgstr " " - -msgid "[New File]" -msgstr "[ ]" - -msgid "[New DIRECTORY]" -msgstr "[ ]" - -msgid "[File too big]" -msgstr "[ ]" - -msgid "[Permission Denied]" -msgstr "[³]" - -msgid "E200: *ReadPre autocommands made the file unreadable" -msgstr "E200: *ReadPre " - -# msgstr "E200: " -msgid "E201: *ReadPre autocommands must not change current buffer" -msgstr "E201: *ReadPre " - -# msgstr "E201: " -msgid "Nvim: Reading from stdin...\n" -msgstr "Vim: stdin...\n" - -#. Re-opening the original file failed! -msgid "E202: Conversion made file unreadable!" -msgstr "E202: !" - -# msgstr "E202: " -#. fifo or socket -msgid "[fifo/socket]" -msgstr "[/]" - -#. fifo -msgid "[fifo]" -msgstr "[]" - -#. or socket -msgid "[socket]" -msgstr "[]" - -#. or character special -msgid "[character special]" -msgstr "[. ]" - -msgid "[CR missing]" -msgstr "[ CR]" - -msgid "[long lines split]" -msgstr "[ ]" - -msgid "[NOT converted]" -msgstr "[ ]" - -msgid "[converted]" -msgstr "[]" - -#, c-format -msgid "[CONVERSION ERROR in line %<PRId64>]" -msgstr "[ ֲ %<PRId64>]" - -#, c-format -msgid "[ILLEGAL BYTE in line %<PRId64>]" -msgstr "[ %<PRId64>]" - -msgid "[READ ERRORS]" -msgstr "[ ]" - -msgid "Can't find temp file for conversion" -msgstr " " - -msgid "Conversion with 'charconvert' failed" -msgstr " 'charconvert' " - -msgid "can't read output of 'charconvert'" -msgstr " 'charconvert'" - -# msgstr "E217: " -msgid "E676: No matching autocommands for acwrite buffer" -msgstr "E676: " - -msgid "E203: Autocommands deleted or unloaded buffer to be written" -msgstr "E203: , " - -msgid "E204: Autocommand changed number of lines in unexpected way" -msgstr "E204: " - -msgid "is not a file or writable device" -msgstr " " - -msgid "is read-only (add ! to override)" -msgstr " (! )" - -msgid "E506: Can't write to backup file (add ! to override)" -msgstr "E506: (! )" - -msgid "E507: Close error for backup file (add ! to override)" -msgstr "E507: (! )" - -msgid "E508: Can't read file for backup (add ! to override)" -msgstr "" -"E508: (! " -")" - -msgid "E509: Cannot create backup file (add ! to override)" -msgstr "E509: (! )" - -msgid "E510: Can't make backup file (add ! to override)" -msgstr "E510: (! )" - -#. Can't write without a tempfile! -msgid "E214: Can't find temp file for writing" -msgstr "E214: " - -msgid "E213: Cannot convert (add ! to write without conversion)" -msgstr "E213: (! )" - -msgid "E166: Can't open linked file for writing" -msgstr "E166: ' " - -msgid "E212: Can't open file for writing" -msgstr "E212: " - -msgid "E667: Fsync failed" -msgstr "E667: fsync" - -msgid "E512: Close failed" -msgstr "E512: " - -msgid "E513: write error, conversion failed (make 'fenc' empty to override)" -msgstr "E513: , ( 'fenc')" - -#, c-format -msgid "" -"E513: write error, conversion failed in line %<PRId64> (make 'fenc' empty to " -"override)" -msgstr "" -"E513: , %<PRId64> ( " -"'fenc')" - -msgid "E514: write error (file system full?)" -msgstr "E514: ( ?)" - -msgid " CONVERSION ERROR" -msgstr " ֲ" - -#, c-format -msgid " in line %<PRId64>;" -msgstr " %<PRId64>;" - -msgid "[Device]" -msgstr "[]" - -msgid "[New]" -msgstr "[]" - -msgid " [a]" -msgstr "[]" - -msgid " appended" -msgstr " " - -msgid " [w]" -msgstr "[]" - -msgid " written" -msgstr " " - -msgid "E205: Patchmode: can't save original file" -msgstr "E205: : " - -msgid "E206: patchmode: can't touch empty original file" -msgstr "E206: : " - -msgid "E207: Can't delete backup file" -msgstr "E207: " - -msgid "" -"\n" -"WARNING: Original file may be lost or damaged\n" -msgstr "" -"\n" -": , , \n" - -msgid "don't quit the editor until the file is successfully written!" -msgstr " , !" - -msgid "[dos]" -msgstr "[dos]" - -msgid "[dos format]" -msgstr "[ dos]" - -msgid "[mac]" -msgstr "[mac]" - -msgid "[mac format]" -msgstr "[ mac]" - -msgid "[unix]" -msgstr "[unix]" - -msgid "[unix format]" -msgstr "[ unix]" - -msgid "1 line, " -msgstr " , " - -#, c-format -msgid "%<PRId64> lines, " -msgstr "%<PRId64> , " - -msgid "1 character" -msgstr " " - -#, c-format -msgid "%<PRId64> characters" -msgstr "%<PRId64> " - -msgid "[noeol]" -msgstr "[noeol]" - -msgid "[Incomplete last line]" -msgstr "[ ]" - -#. don't overwrite messages here -#. must give this prompt -#. don't use emsg() here, don't want to flush the buffers -msgid "WARNING: The file has been changed since reading it!!!" -msgstr ": !!!" - -msgid "Do you really want to write to it" -msgstr " ??" - -#, c-format -msgid "E208: Error writing to \"%s\"" -msgstr "E208: %s" - -#, c-format -msgid "E209: Error closing \"%s\"" -msgstr "E209: %s" - -#, c-format -msgid "E210: Error reading \"%s\"" -msgstr "E210: %s" - -msgid "E246: FileChangedShell autocommand deleted buffer" -msgstr "E246: FileChangedShell " - -#, c-format -msgid "E211: File \"%s\" no longer available" -msgstr "E211: %s " - -#, c-format -msgid "" -"W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as " -"well" -msgstr "W12: : %s , Vim " - -msgid "See \":help W12\" for more info." -msgstr ". :help W12 ." - -#, c-format -msgid "W11: Warning: File \"%s\" has changed since editing started" -msgstr "W11: : %s " - -msgid "See \":help W11\" for more info." -msgstr ". :help W11 ." - -#, c-format -msgid "W16: Warning: Mode of file \"%s\" has changed since editing started" -msgstr "W16: : %s " - -msgid "See \":help W16\" for more info." -msgstr ". :help W16 ." - -#, c-format -msgid "W13: Warning: File \"%s\" has been created after editing started" -msgstr "W13: : %s " - -msgid "Warning" -msgstr "" - -msgid "" -"&OK\n" -"&Load File" -msgstr "" -"&O:\n" -"&L:" - -#, c-format -msgid "E462: Could not prepare for reloading \"%s\"" -msgstr "E462: %s, " - -#, c-format -msgid "E321: Could not reload \"%s\"" -msgstr "E321: %s" - -msgid "--Deleted--" -msgstr "----" - -#, c-format -msgid "auto-removing autocommand: %s <buffer=%d>" -msgstr " : %s <=%d>" - -#. the group doesn't exist -#, c-format -msgid "E367: No such group: \"%s\"" -msgstr "E367: : %s" - -#, c-format -msgid "E215: Illegal character after *: %s" -msgstr "E215: *: %s" - -# msgstr "E215: " -#, c-format -msgid "E216: No such event: %s" -msgstr "E216: 䳿: %s" - -# msgstr "E215: " -#, c-format -msgid "E216: No such group or event: %s" -msgstr "E216: 䳿: %s" - -# msgstr "E216: " -#. Highlight title -msgid "" -"\n" -"--- Auto-Commands ---" -msgstr "" -"\n" -"--- ---" - -#, c-format -msgid "E680: <buffer=%d>: invalid buffer number " -msgstr "E680: <=%d>: " - -msgid "E217: Can't execute autocommands for ALL events" -msgstr "E217: Ѳ " - -# msgstr "E217: " -msgid "No matching autocommands" -msgstr " " - -msgid "E218: autocommand nesting too deep" -msgstr "E218: " - -# msgstr "E218: " -#, c-format -msgid "%s Auto commands for \"%s\"" -msgstr " %s %s" - -#, c-format -msgid "Executing %s" -msgstr " %s" - -#, c-format -msgid "autocommand %s" -msgstr " %s" - -msgid "E219: Missing {." -msgstr "E219: {." - -# msgstr "E219: " -msgid "E220: Missing }." -msgstr "E220: }." - -# msgstr "E220: " -msgid "E490: No fold found" -msgstr "E490: " - -# msgstr "E349: " -msgid "E350: Cannot create fold with current 'foldmethod'" -msgstr "E350: 'foldmethod'" - -msgid "E351: Cannot delete fold with current 'foldmethod'" -msgstr "E351: 'foldmethod'" - -#, c-format -msgid "+--%3ld lines folded " -msgstr "+-- %3ld " - -#. buffer has already been read -msgid "E222: Add to read buffer" -msgstr "E222: " - -msgid "E223: recursive mapping" -msgstr "E223: " - -# msgstr "E223: " -#, c-format -msgid "E224: global abbreviation already exists for %s" -msgstr "E224: %s " - -# msgstr "E224: " -#, c-format -msgid "E225: global mapping already exists for %s" -msgstr "E225: %s " - -# msgstr "E225: " -#, c-format -msgid "E226: abbreviation already exists for %s" -msgstr "E226: %s" - -# msgstr "E226: " -#, c-format -msgid "E227: mapping already exists for %s" -msgstr "E227: %s" - -# msgstr "E227: " -msgid "No abbreviation found" -msgstr " " - -msgid "No mapping found" -msgstr " " - -msgid "E228: makemap: Illegal mode" -msgstr "E228: makemap: " - -# msgstr "E447: " -#. key value of 'cedit' option -#. type of cmdline window or 0 -#. result of cmdline window or 0 -msgid "--No lines in buffer--" -msgstr "-- --" - -#. -#. * The error messages that can be shared are included here. -#. * Excluded are errors that are only used once and debugging messages. -#. -msgid "E470: Command aborted" -msgstr "E470: " - -msgid "E471: Argument required" -msgstr "E471: " - -msgid "E10: \\ should be followed by /, ? or &" -msgstr "E10: \\ /, ? &" - -# msgstr "E10: " -msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits" -msgstr "E11: , <CR> , CTRL-C " - -msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search" -msgstr "" -"E12: exrc/vimrc " - -msgid "E171: Missing :endif" -msgstr "E171: :endif" - -msgid "E600: Missing :endtry" -msgstr "E600: :endtry" - -msgid "E170: Missing :endwhile" -msgstr "E170: :endwhile" - -msgid "E170: Missing :endfor" -msgstr "E170: :endfor" - -msgid "E588: :endwhile without :while" -msgstr "E588: :endwhile :while" - -msgid "E588: :endfor without :for" -msgstr "E588: :endfor :for" - -msgid "E13: File exists (add ! to override)" -msgstr "E13: (! )" - -msgid "E472: Command failed" -msgstr "E472: " - -msgid "E473: Internal error" -msgstr "E473: " - -msgid "Interrupted" -msgstr "" - -msgid "E14: Invalid address" -msgstr "E14: " - -# msgstr "E14: " -msgid "E474: Invalid argument" -msgstr "E474: " - -#, c-format -msgid "E475: Invalid argument: %s" -msgstr "E475: : %s" - -#, c-format -msgid "E15: Invalid expression: %s" -msgstr "E15: : %s" - -# msgstr "E15: " -msgid "E16: Invalid range" -msgstr "E16: " - -# msgstr "E16: " -msgid "E476: Invalid command" -msgstr "E476: " - -#, c-format -msgid "E17: \"%s\" is a directory" -msgstr "E17: %s " - -msgid "E900: Invalid job id" -msgstr "E900: . " - -msgid "E901: Job table is full" -msgstr "E901: " - -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "E902: \"%s\" " - -#, c-format -msgid "E364: Library call failed for \"%s()\"" -msgstr "E364: %s() " - -# msgstr "E18: " -msgid "E19: Mark has invalid line number" -msgstr "E19: " - -# msgstr "E19: " -msgid "E20: Mark not set" -msgstr "E20: " - -# msgstr "E20: " -msgid "E21: Cannot make changes, 'modifiable' is off" -msgstr "E21: : 'modifiable'" - -# msgstr "E21: " -msgid "E22: Scripts nested too deep" -msgstr "E22: " - -# msgstr "E22: " -msgid "E23: No alternate file" -msgstr "E23: " - -# msgstr "E23: " -msgid "E24: No such abbreviation" -msgstr "E24: " - -# msgstr "E24: " -msgid "E477: No ! allowed" -msgstr "E477: ! " - -msgid "E25: Nvim does not have a built-in GUI" -msgstr "E25: GUI: " - -# msgstr "E25: " -#, c-format -msgid "E28: No such highlight group name: %s" -msgstr "E28: : %s" - -# msgstr "E28: " -msgid "E29: No inserted text yet" -msgstr "E29: " - -# msgstr "E29: " -msgid "E30: No previous command line" -msgstr "E30: " - -# msgstr "E30: " -msgid "E31: No such mapping" -msgstr "E31: " - -# msgstr "E31: " -msgid "E479: No match" -msgstr "E479: " - -#, c-format -msgid "E480: No match: %s" -msgstr "E480: : %s" - -msgid "E32: No file name" -msgstr "E32: " - -# msgstr "E32: " -msgid "E33: No previous substitute regular expression" -msgstr "E33: " - -# msgstr "E33: " -msgid "E34: No previous command" -msgstr "E34: " - -# msgstr "E34: " -msgid "E35: No previous regular expression" -msgstr "E35: " - -# msgstr "E35: " -msgid "E481: No range allowed" -msgstr "E481: " - -msgid "E36: Not enough room" -msgstr "E36: ̳ " - -# msgstr "E36: " -#, c-format -msgid "E482: Can't create file %s" -msgstr "E482: %s" - -msgid "E483: Can't get temp file name" -msgstr "E483: " - -#, c-format -msgid "E484: Can't open file %s" -msgstr "E484: %s" - -#, c-format -msgid "E485: Can't read file %s" -msgstr "E485: %s" - -msgid "E37: No write since last change (add ! to override)" -msgstr "E37: (! )" - -msgid "E37: No write since last change" -msgstr "E37: " - -msgid "E38: Null argument" -msgstr "E38: ³ " - -msgid "E39: Number expected" -msgstr "E39: " - -#, c-format -msgid "E40: Can't open errorfile %s" -msgstr "E40: %s" - -msgid "E41: Out of memory!" -msgstr "E41: '!" - -msgid "Pattern not found" -msgstr " " - -#, c-format -msgid "E486: Pattern not found: %s" -msgstr "E486: : %s" - -msgid "E487: Argument must be positive" -msgstr "E487: " - -msgid "E459: Cannot go back to previous directory" -msgstr "E459: " - -msgid "E42: No Errors" -msgstr "E42: " - -msgid "E776: No location list" -msgstr "E776: " - -msgid "E43: Damaged match string" -msgstr "E43: " - -msgid "E44: Corrupted regexp program" -msgstr "E44: dz " - -msgid "E45: 'readonly' option is set (add ! to override)" -msgstr "E45: 'readonly' (! )" - -#, c-format -msgid "E46: Cannot change read-only variable \"%s\"" -msgstr "E46: : %s" - -#, c-format -msgid "E794: Cannot set variable in the sandbox: \"%s\"" -msgstr "E794: : %s" - -msgid "E47: Error while reading errorfile" -msgstr "E47: " - -msgid "E48: Not allowed in sandbox" -msgstr "E48: " - -msgid "E523: Not allowed here" -msgstr "E523: " - -msgid "E359: Screen mode setting not supported" -msgstr "E359: " - -msgid "E49: Invalid scroll size" -msgstr "E49: " - -msgid "E91: 'shell' option is empty" -msgstr "E91: 'shell' " - -# msgstr "E254: " -msgid "E255: Couldn't read in sign data!" -msgstr "E255: !" - -msgid "E72: Close error on swap file" -msgstr "E72: " - -msgid "E73: tag stack empty" -msgstr "E73: 崳 " - -msgid "E74: Command too complex" -msgstr "E74: " - -msgid "E75: Name too long" -msgstr "E75: '" - -msgid "E76: Too many [" -msgstr "E76: '['" - -msgid "E77: Too many file names" -msgstr "E77: " - -msgid "E488: Trailing characters" -msgstr "E488: " - -msgid "E78: Unknown mark" -msgstr "E78: " - -msgid "E79: Cannot expand wildcards" -msgstr "E79: " - -msgid "E591: 'winheight' cannot be smaller than 'winminheight'" -msgstr "E591: 'winheight' 'winminheight'" - -msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'" -msgstr "E592: 'winwidth' 'winminwidth'" - -# msgstr "E79: " -msgid "E80: Error while writing" -msgstr "E80: " - -msgid "Zero count" -msgstr " " - -msgid "E81: Using <SID> not in a script context" -msgstr "E81: <SID> " - -#, c-format -msgid "E685: Internal error: %s" -msgstr "E685: : %s" - -msgid "E363: pattern uses more memory than 'maxmempattern'" -msgstr "E363: , 'maxmempattern', '" - -msgid "E749: empty buffer" -msgstr "E749: " - -msgid "E682: Invalid search pattern or delimiter" -msgstr "E682: " - -msgid "E139: File is loaded in another buffer" -msgstr "E139: " - -# msgstr "E235: " -#, c-format -msgid "E764: Option '%s' is not set" -msgstr "E764: '%s' " - -msgid "E850: Invalid register name" -msgstr "E850: " - -msgid "search hit TOP, continuing at BOTTOM" -msgstr " , ʲ" - -msgid "search hit BOTTOM, continuing at TOP" -msgstr " ʲ, " - -msgid "E550: Missing colon" -msgstr "E550: " - -# msgstr "E347: " -msgid "E551: Illegal component" -msgstr "E551: " - -msgid "E552: digit expected" -msgstr "E552: " - -#, c-format -msgid "Page %d" -msgstr " %d" - -msgid "No text to be printed" -msgstr "ͳ " - -#, c-format -msgid "Printing page %d (%d%%)" -msgstr " %d (%d%%)" - -#, c-format -msgid " Copy %d of %d" -msgstr " %d %d" - -#, c-format -msgid "Printed: %s" -msgstr ": %s" - -msgid "Printing aborted" -msgstr " " - -msgid "E455: Error writing to PostScript output file" -msgstr "E455: PostScript" - -#, c-format -msgid "E624: Can't open file \"%s\"" -msgstr "E624: %s" - -#, c-format -msgid "E457: Can't read PostScript resource file \"%s\"" -msgstr "E457: PostScript %s" - -#, c-format -msgid "E618: file \"%s\" is not a PostScript resource file" -msgstr "E618: %s PostScript" - -#, c-format -msgid "E619: file \"%s\" is not a supported PostScript resource file" -msgstr "E619: %s PostScript" - -#, c-format -msgid "E621: \"%s\" resource file has wrong version" -msgstr "E621: %s" - -msgid "E673: Incompatible multi-byte encoding and character set." -msgstr "E673: ." - -msgid "E674: printmbcharset cannot be empty with multi-byte encoding." -msgstr "" -"E674: printmbcharset ." - -msgid "E675: No default font specified for multi-byte printing." -msgstr "E675: ." - -msgid "E324: Can't open PostScript output file" -msgstr "E324: PostScript " - -#, c-format -msgid "E456: Can't open file \"%s\"" -msgstr "E456: %s" - -msgid "E456: Can't find PostScript resource file \"prolog.ps\"" -msgstr "E456: PostScript prolog.ps" - -msgid "E456: Can't find PostScript resource file \"cidfont.ps\"" -msgstr "E456: PostScript cidfont.ps" - -#, c-format -msgid "E456: Can't find PostScript resource file \"%s.ps\"" -msgstr "E456: PostScript %s.ps" - -#, c-format -msgid "E620: Unable to convert to print encoding \"%s\"" -msgstr "E620: %s" - -msgid "Sending to printer..." -msgstr "³ ..." - -msgid "E365: Failed to print PostScript file" -msgstr "E365: PostScript" - -msgid "Print job sent." -msgstr " ." - -# msgstr "E255: " -msgid "Add a new database" -msgstr " " - -msgid "Query for a pattern" -msgstr " " - -msgid "Show this message" -msgstr " " - -msgid "Kill a connection" -msgstr " '" - -msgid "Reinit all connections" -msgstr " '" - -msgid "Show connections" -msgstr " '" - -#, c-format -msgid "E560: Usage: cs[cope] %s" -msgstr "E560: : cs[cope] %s" - -msgid "This cscope command does not support splitting the window.\n" -msgstr " cscope 쳺 .\n" - -msgid "E562: Usage: cstag <ident>" -msgstr "E562: : cstag <->" - -msgid "E257: cstag: tag not found" -msgstr "E257: cstag: " - -# msgstr "E257: " -#, c-format -msgid "E563: stat(%s) error: %d" -msgstr "E563: stat(%s) : %d" - -#, c-format -msgid "E564: %s is not a directory or a valid cscope database" -msgstr "E564: %s , cscope" - -#, c-format -msgid "Added cscope database %s" -msgstr " cscope %s" - -#, c-format -msgid "E262: error reading cscope connection %<PRId64>" -msgstr "E262: ' cscope %<PRId64>" - -msgid "E561: unknown cscope search type" -msgstr "E561: cscope" - -msgid "E566: Could not create cscope pipes" -msgstr "E566: cscope" - -msgid "E622: Could not fork for cscope" -msgstr "E622: cscope" - -msgid "cs_create_connection setpgid failed" -msgstr "cs_create_connection: setpgid" - -msgid "cs_create_connection exec failed" -msgstr "cs_create_connection: " - -msgid "cs_create_connection: fdopen for to_fp failed" -msgstr "cs_create_connection: fdopen to_fp " - -msgid "cs_create_connection: fdopen for fr_fp failed" -msgstr "cs_create_connection: fdopen fr_fp " - -msgid "E623: Could not spawn cscope process" -msgstr "E623: cscope" - -msgid "E567: no cscope connections" -msgstr "E567: ' cscope" - -#, c-format -msgid "E469: invalid cscopequickfix flag %c for %c" -msgstr "E469: cscopequickfix %c %c" - -# msgstr "E258: " -#, c-format -msgid "E259: no matches found for cscope query %s of %s" -msgstr "E259: cscope %s %s " - -# msgstr "E259: " -msgid "cscope commands:\n" -msgstr " cscope:\n" - -#, c-format -msgid "%-5s: %s%*s (Usage: %s)" -msgstr "%-5s: %s%*s (: %s)" - -msgid "" -"\n" -" c: Find functions calling this function\n" -" d: Find functions called by this function\n" -" e: Find this egrep pattern\n" -" f: Find this file\n" -" g: Find this definition\n" -" i: Find files #including this file\n" -" s: Find this C symbol\n" -" t: Find this text string\n" -msgstr "" -"\n" -" c: , \n" -" d: , \n" -" e: egrep\n" -" f: \n" -" g: \n" -" i: , \n" -" s: C\n" -" t: \n" - -msgid "E568: duplicate cscope database not added" -msgstr "E568: cscope " - -# msgstr "E260: " -#, c-format -msgid "E261: cscope connection %s not found" -msgstr "E261: ' cscope %s " - -#, c-format -msgid "cscope connection %s closed" -msgstr "' cscope %s " - -#. should not reach here -msgid "E570: fatal error in cs_manage_matches" -msgstr "E570: cs_manage_matches" - -#, c-format -msgid "Cscope tag: %s" -msgstr " cscope: %s" - -msgid "" -"\n" -" # line" -msgstr "" -"\n" -" # " - -msgid "filename / context / line\n" -msgstr " / / \n" - -#, c-format -msgid "E609: Cscope error: %s" -msgstr "E609: cscope: %s" - -msgid "All cscope databases reset" -msgstr " cscope " - -msgid "no cscope connections\n" -msgstr " ' cscope\n" - -msgid " # pid database name prepend path\n" -msgstr " # pid \n" - -msgid "Unknown option argument" -msgstr " " - -msgid "Too many edit arguments" -msgstr " " - -msgid "Argument missing after" -msgstr " " - -msgid "Garbage after option argument" -msgstr " " - -msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments" -msgstr " +, -c --cmd " - -# msgstr "E14: " -msgid "Invalid argument for" -msgstr " " - -#, c-format -msgid "%d files to edit\n" -msgstr "%d ()\n" - -msgid "Attempt to open script file again: \"" -msgstr " : \"" - -msgid "Cannot open for reading: \"" -msgstr " : \"" - -msgid "Cannot open for script output: \"" -msgstr " : \"" - -msgid "Vim: Warning: Output is not to a terminal\n" -msgstr "Vim: : \n" - -msgid "Vim: Warning: Input is not from a terminal\n" -msgstr "Vim: : \n" - -#. just in case.. -msgid "pre-vimrc command line" -msgstr " vimrc" - -#, c-format -msgid "E282: Cannot read from \"%s\"" -msgstr "E282: %s" - -# msgstr "E282: " -msgid "" -"\n" -"More info with: \"vim -h\"\n" -msgstr "" -"\n" -"ij : vim -h\n" - -msgid "[file ..] edit specified file(s)" -msgstr "[ ..] " - -msgid "- read text from stdin" -msgstr "- stdin" - -msgid "-t tag edit file where tag is defined" -msgstr "-t " - -msgid "-q [errorfile] edit file with first error" -msgstr "-q [] " - -msgid "" -"\n" -"\n" -"usage:" -msgstr "" -"\n" -"\n" -":" - -msgid " vim [arguments] " -msgstr " vim [] " - -msgid "" -"\n" -" or:" -msgstr "" -"\n" -" :" - -msgid "" -"\n" -"\n" -"Arguments:\n" -msgstr "" -"\n" -"\n" -":\n" - -msgid "--\t\t\tOnly file names after this" -msgstr "--\t\t\t " - -msgid "--literal\t\tDon't expand wildcards" -msgstr "--literal\t\t " - -msgid "-v\t\t\tVi mode (like \"vi\")" -msgstr "-v\t\t\t Vi ( vi)" - -msgid "-e\t\t\tEx mode (like \"ex\")" -msgstr "-e\t\t\t Ex ( ex)" - -msgid "-E\t\t\tImproved Ex mode" -msgstr "-E\t\t\t Ex" - -msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")" -msgstr "-s\t\t\t () ( ex)" - -msgid "-d\t\t\tDiff mode (like \"vimdiff\")" -msgstr "-d\t\t\t ( vimdiff)" - -msgid "-y\t\t\tEasy mode (like \"evim\", modeless)" -msgstr "-y\t\t\t ( evim, )" - -msgid "-R\t\t\tReadonly mode (like \"view\")" -msgstr "-R\t\t\t ( view)" - -msgid "-Z\t\t\tRestricted mode (like \"rvim\")" -msgstr "-Z\t\t\t ( rvim)" - -msgid "-m\t\t\tModifications (writing files) not allowed" -msgstr "-m\t\t\t ( ) " - -msgid "-M\t\t\tModifications in text not allowed" -msgstr "-M\t\t\t " - -msgid "-b\t\t\tBinary mode" -msgstr "-b\t\t\t " - -msgid "-l\t\t\tLisp mode" -msgstr "-l\t\t\t lisp" - -msgid "-C\t\t\tCompatible with Vi: 'compatible'" -msgstr "-C\t\t\t Vi : 'compatible'" - -msgid "-N\t\t\tNot fully Vi compatible: 'nocompatible'" -msgstr "-N\t\t\t Vi : 'nocompatible'" - -msgid "-V[N][fname]\t\tBe verbose [level N] [log messages to fname]" -msgstr "-V[N][]\t\t [ N] [ . ]" - -msgid "-D\t\t\tDebugging mode" -msgstr "-D\t\t\t " - -msgid "-n\t\t\tNo swap file, use memory only" -msgstr "-n\t\t\t , '" - -msgid "-r\t\t\tList swap files and exit" -msgstr "-r\t\t\t " - -msgid "-r (with file name)\tRecover crashed session" -msgstr "-r ( )\t³ " - -msgid "-L\t\t\tSame as -r" -msgstr "-L\t\t\t , -r" - -msgid "-A\t\t\tstart in Arabic mode" -msgstr "-A\t\t\t " - -msgid "-H\t\t\tStart in Hebrew mode" -msgstr "-H\t\t\t " - -msgid "-F\t\t\tStart in Farsi mode" -msgstr "-F\t\t\t " - -msgid "-T <terminal>\tSet terminal type to <terminal>" -msgstr "-T <>\t <>" - -msgid "-u <vimrc>\t\tUse <vimrc> instead of any .vimrc" -msgstr "-u <vimrc>\t\t .vimrc" - -msgid "--noplugin\t\tDon't load plugin scripts" -msgstr "--noplugin\t\t " - -msgid "-p[N]\t\tOpen N tab pages (default: one for each file)" -msgstr "-p[N]\t\t³ N ( )" - -msgid "-o[N]\t\tOpen N windows (default: one for each file)" -msgstr "-o[N]\t\t³ N ( )" - -msgid "-O[N]\t\tLike -o but split vertically" -msgstr "-O[N]\t\tͳ -o, " - -msgid "+\t\t\tStart at end of file" -msgstr "+\t\t\t " - -msgid "+<lnum>\t\tStart at line <lnum>" -msgstr "+<>\t\t <>" - -msgid "--cmd <command>\tExecute <command> before loading any vimrc file" -msgstr "--cmd <>\t <> vimrc" - -msgid "-c <command>\t\tExecute <command> after loading the first file" -msgstr "-c <>\t\t <> " - -msgid "-S <session>\t\tSource file <session> after loading the first file" -msgstr "-S <>\t\t " - -msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>" -msgstr "-s <>\t\t <>" - -msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>" -msgstr "-w <>\t\t <>" - -msgid "-W <scriptout>\tWrite all typed commands to file <scriptout>" -msgstr "-w <>\t\t <>" - -msgid "--startuptime <file>\tWrite startup timing messages to <file>" -msgstr "" -"--startuptime <>\t " -" <>" - -msgid "-i <viminfo>\t\tUse <viminfo> instead of .viminfo" -msgstr "-i <viminfo>\t\t <viminfo> .viminfo" - -msgid "-h or --help\tPrint Help (this message) and exit" -msgstr "-h --help\t " - -msgid "--version\t\tPrint version information and exit" -msgstr "--version\t\t " - -msgid "No marks set" -msgstr " " - -#, c-format -msgid "E283: No marks matching \"%s\"" -msgstr "E283: %s " - -# msgstr "E283: " -#. Highlight title -msgid "" -"\n" -"mark line col file/text" -msgstr "" -"\n" -". . . /" - -#. Highlight title -msgid "" -"\n" -" jump line col file/text" -msgstr "" -"\n" -" . . /" - -# msgstr "E283: " -#. Highlight title -msgid "" -"\n" -"change line col text" -msgstr "" -"\n" -" . . " - -# TODO -msgid "" -"\n" -"# File marks:\n" -msgstr "" -"\n" -"# :\n" - -#. Write the jumplist with -' -msgid "" -"\n" -"# Jumplist (newest first):\n" -msgstr "" -"\n" -"# ( ):\n" - -# TODO -msgid "" -"\n" -"# History of marks within files (newest to oldest):\n" -msgstr "" -"\n" -"# ( ):\n" - -msgid "Missing '>'" -msgstr " '>'" - -# msgstr "E292: " -msgid "E293: block was not locked" -msgstr "E293: " - -# msgstr "E293: " -msgid "E294: Seek error in swap file read" -msgstr "E294: " - -msgid "E295: Read error in swap file" -msgstr "E295: " - -msgid "E296: Seek error in swap file write" -msgstr "E296: " - -msgid "E297: Write error in swap file" -msgstr "E297: " - -msgid "E300: Swap file already exists (symlink attack?)" -msgstr "E300: ( ?)" - -msgid "E298: Didn't get block nr 0?" -msgstr "E298: 0?" - -msgid "E298: Didn't get block nr 1?" -msgstr "E298: 1?" - -# msgstr "E298: " -msgid "E298: Didn't get block nr 2?" -msgstr "E298: 2?" - -#. could not (re)open the swap file, what can we do???? -msgid "E301: Oops, lost the swap file!!!" -msgstr "E301: , !!!" - -# msgstr "E301: " -msgid "E302: Could not rename swap file" -msgstr "E302: " - -# msgstr "E302: " -#, c-format -msgid "E303: Unable to open swap file for \"%s\", recovery impossible" -msgstr "E303: %s, " - -msgid "E304: ml_upd_block0(): Didn't get block 0??" -msgstr "E304: ml_upd_block0(): 0??" - -#. no swap files found -#, c-format -msgid "E305: No swap file found for %s" -msgstr "E305: %s" - -# msgstr "E305: " -msgid "Enter number of swap file to use (0 to quit): " -msgstr " , , (0 ):" - -#, c-format -msgid "E306: Cannot open %s" -msgstr "E306: %s" - -msgid "Unable to read block 0 from " -msgstr " 0 " - -msgid "" -"\n" -"Maybe no changes were made or Vim did not update the swap file." -msgstr "" -"\n" -", , Vim ." - -msgid " cannot be used with this version of Vim.\n" -msgstr " Vim.\n" - -msgid "Use Vim version 3.0.\n" -msgstr " Vim 3.0\n" - -#, c-format -msgid "E307: %s does not look like a Vim swap file" -msgstr "E307: %s Vim" - -msgid " cannot be used on this computer.\n" -msgstr " '.\n" - -msgid "The file was created on " -msgstr " " - -msgid "" -",\n" -"or the file has been damaged." -msgstr "" -",\n" -" ." - -msgid " has been damaged (page size is smaller than minimum value).\n" -msgstr " ( ).\n" - -#, c-format -msgid "Using swap file \"%s\"" -msgstr " %s" - -#, c-format -msgid "Original file \"%s\"" -msgstr " %s" - -msgid "E308: Warning: Original file may have been changed" -msgstr "E308: : , " - -# msgstr "E308: " -#, c-format -msgid "E309: Unable to read block 1 from %s" -msgstr "E309: 1 %s" - -# msgstr "E309: " -msgid "???MANY LINES MISSING" -msgstr "??? Ӫ ʲ" - -msgid "???LINE COUNT WRONG" -msgstr "??? ʲʲ ʲ" - -msgid "???EMPTY BLOCK" -msgstr "??? Ͳ " - -msgid "???LINES MISSING" -msgstr "??? Ͳ " - -#, c-format -msgid "E310: Block 1 ID wrong (%s not a .swp file?)" -msgstr "E310: 1 (%s ?)" - -# msgstr "E310: " -msgid "???BLOCK MISSING" -msgstr "??? " - -msgid "??? from here until ???END lines may be messed up" -msgstr "??? `??? ʲ' , , " - -msgid "??? from here until ???END lines may have been inserted/deleted" -msgstr "??? `??? ʲ' , , /" - -msgid "???END" -msgstr "??? ʲ" - -msgid "E311: Recovery Interrupted" -msgstr "E311: ³ " - -msgid "" -"E312: Errors detected while recovering; look for lines starting with ???" -msgstr "" -"E312: ϳ . , " -" ???" - -msgid "See \":help E312\" for more information." -msgstr ". :help E312 ." - -msgid "Recovery completed. You should check if everything is OK." -msgstr "³ , ." - -msgid "" -"\n" -"(You might want to write out this file under another name\n" -msgstr "" -"\n" -"(, \n" - -msgid "and run diff with the original file to check for changes)" -msgstr " diff )" - -msgid "Recovery completed. Buffer contents equals file contents." -msgstr "³ . ." - -msgid "" -"\n" -"You may want to delete the .swp file now.\n" -"\n" -msgstr "" -"\n" -", .swp.\n" -"\n" - -#. use msg() to start the scrolling properly -msgid "Swap files found:" -msgstr " :" - -msgid " In current directory:\n" -msgstr " :\n" - -msgid " Using specified name:\n" -msgstr " :\n" - -msgid " In directory " -msgstr " " - -msgid " -- none --\n" -msgstr " -- --\n" - -msgid " owned by: " -msgstr " : " - -msgid " dated: " -msgstr " : " - -msgid " dated: " -msgstr " : " - -msgid " [from Vim version 3.0]" -msgstr " [ Vim 3.0]" - -msgid " [does not look like a Vim swap file]" -msgstr " [ ]" - -msgid " file name: " -msgstr " : " - -msgid "" -"\n" -" modified: " -msgstr "" -"\n" -" : " - -msgid "YES" -msgstr "" - -msgid "no" -msgstr "" - -msgid "" -"\n" -" user name: " -msgstr "" -"\n" -" : " - -msgid " host name: " -msgstr " : " - -msgid "" -"\n" -" host name: " -msgstr "" -"\n" -" : " - -msgid "" -"\n" -" process ID: " -msgstr "" -"\n" -" ID : " - -msgid " (still running)" -msgstr " ()" - -msgid "" -"\n" -" [not usable on this computer]" -msgstr "" -"\n" -" [ ']" - -msgid " [cannot be read]" -msgstr " [ ]" - -msgid " [cannot be opened]" -msgstr " [ ]" - -msgid "E313: Cannot preserve, there is no swap file" -msgstr "E313: , " - -# msgstr "E313: " -msgid "File preserved" -msgstr " " - -msgid "E314: Preserve failed" -msgstr "E314: " - -# msgstr "E314: " -#, c-format -msgid "E315: ml_get: invalid lnum: %<PRId64>" -msgstr "E315: ml_get: lnum: %<PRId64>" - -# msgstr "E315: " -#, c-format -msgid "E316: ml_get: cannot find line %<PRId64>" -msgstr "E316: ml_get: %<PRId64>" - -# msgstr "E316: " -msgid "E317: pointer block id wrong 3" -msgstr "E317: 3" - -# msgstr "E317: " -msgid "stack_idx should be 0" -msgstr "stack_idx 0" - -msgid "E318: Updated too many blocks?" -msgstr "E318: ?" - -msgid "E317: pointer block id wrong 4" -msgstr "E317: 4" - -msgid "deleted block 1?" -msgstr " 1 ?" - -#, c-format -msgid "E320: Cannot find line %<PRId64>" -msgstr "E320: %<PRId64>" - -msgid "E317: pointer block id wrong" -msgstr "E317: " - -# msgstr "E317: " -msgid "pe_line_count is zero" -msgstr "pe_line_count 0" - -#, c-format -msgid "E322: line number out of range: %<PRId64> past the end" -msgstr "E322: : %<PRId64> " - -# msgstr "E322: " -#, c-format -msgid "E323: line count wrong in block %<PRId64>" -msgstr "E323: ʳ %<PRId64>" - -# msgstr "E323: " -msgid "Stack size increases" -msgstr " " - -msgid "E317: pointer block id wrong 2" -msgstr "E317: 2" - -#, c-format -msgid "E773: Symlink loop for \"%s\"" -msgstr "E773: %s" - -# msgstr "E317: " -msgid "E325: ATTENTION" -msgstr "E325: " - -msgid "" -"\n" -"Found a swap file by the name \"" -msgstr "" -"\n" -" \"" - -msgid "While opening file \"" -msgstr " \"" - -msgid " NEWER than swap file!\n" -msgstr " ² !\n" - -msgid "" -"\n" -"(1) Another program may be editing the same file. If this is the case,\n" -" be careful not to end up with two different instances of the same\n" -" file when making changes." -msgstr "" -"\n" -"(1) , . ,\n" -" , \n" -" ." - -msgid " Quit, or continue with caution.\n" -msgstr " .\n" - -msgid "(2) An edit session for this file crashed.\n" -msgstr "(2) .\n" - -msgid " If this is the case, use \":recover\" or \"vim -r " -msgstr " , :recover vim -r " - -msgid "" -"\"\n" -" to recover the changes (see \":help recovery\").\n" -msgstr "" -"\n" -" (. :help recovery).\n" - -msgid " If you did this already, delete the swap file \"" -msgstr " , " - -msgid "" -"\"\n" -" to avoid this message.\n" -msgstr "" -",\n" -" .\n" -"\n" - -msgid "Swap file \"" -msgstr " " - -msgid "\" already exists!" -msgstr " !" - -msgid "VIM - ATTENTION" -msgstr "VIM " - -msgid "Swap file already exists!" -msgstr " !" - -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Quit\n" -"&Abort" -msgstr "" -"&O:³ \n" -"&E: \n" -"&R:³\n" -"&Q:\n" -"&A:" - -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Delete it\n" -"&Quit\n" -"&Abort" -msgstr "" -"&O:³ \n" -"&E: \n" -"&R:³\n" -"&D: \n" -"&Q:\n" -"&A:" - -#. -#. * Change the ".swp" extension to find another file that can be used. -#. * First decrement the last char: ".swo", ".swn", etc. -#. * If that still isn't enough decrement the last but one char: ".svz" -#. * Can happen when editing many "No Name" buffers. -#. -#. ".s?a" -#. ".saa": tried enough, give up -msgid "E326: Too many swap files found" -msgstr "E326: " - -# msgstr "E341: " -#, c-format -msgid "E342: Out of memory! (allocating %<PRIu64> bytes)" -msgstr "E342: '! ( %<PRIu64> )" - -# msgstr "E326: " -msgid "E327: Part of menu-item path is not sub-menu" -msgstr "E327: " - -# msgstr "E327: " -msgid "E328: Menu only exists in another mode" -msgstr "E328: " - -# msgstr "E328: " -#, c-format -msgid "E329: No menu \"%s\"" -msgstr "E329: %s" - -#. Only a mnemonic or accelerator is not valid. -msgid "E792: Empty menu name" -msgstr "E792: " - -# msgstr "E329: " -msgid "E330: Menu path must not lead to a sub-menu" -msgstr "E330: " - -# msgstr "E330: " -msgid "E331: Must not add menu items directly to menu bar" -msgstr "E331: " - -# msgstr "E331: " -msgid "E332: Separator cannot be part of a menu path" -msgstr "E332: " - -# msgstr "E332: " -#. Now we have found the matching menu, and we list the mappings -#. Highlight title -msgid "" -"\n" -"--- Menus ---" -msgstr "" -"\n" -"--- ---" - -msgid "E333: Menu path must lead to a menu item" -msgstr "E333: " - -# msgstr "E333: " -#, c-format -msgid "E334: Menu not found: %s" -msgstr "E334: : %s" - -# msgstr "E334: " -#, c-format -msgid "E335: Menu not defined for %s mode" -msgstr "E335: %s " - -# msgstr "E335: " -msgid "E336: Menu path must lead to a sub-menu" -msgstr "E336: " - -# msgstr "E336: " -msgid "E337: Menu not found - check menu names" -msgstr "E337: " - -# msgstr "E337: " -#, c-format -msgid "Error detected while processing %s:" -msgstr " %s:" - -#, c-format -msgid "line %4ld:" -msgstr " %4ld:" - -#, c-format -msgid "E354: Invalid register name: '%s'" -msgstr "E354: : '%s'" - -msgid "Interrupt: " -msgstr ": " - -msgid "Press ENTER or type command to continue" -msgstr " ENTER " - -#, c-format -msgid "%s line %<PRId64>" -msgstr "%s %<PRId64>" - -msgid "-- More --" -msgstr "-- --" - -msgid " SPACE/d/j: screen/page/line down, b/u/k: up, q: quit " -msgstr " /d/j: //, b/u/k: , q: " - -msgid "Question" -msgstr "" - -msgid "" -"&Yes\n" -"&No" -msgstr "" -"&Y:\n" -"&N:ͳ" - -msgid "" -"&Yes\n" -"&No\n" -"&Cancel" -msgstr "" -"&Y:\n" -"&N:ͳ\n" -"&C:" - -msgid "" -"&Yes\n" -"&No\n" -"Save &All\n" -"&Discard All\n" -"&Cancel" -msgstr "" -"&Y:\n" -"&N:ͳ\n" -"&A:\n" -"&D:\n" -"&C:" - -msgid "E766: Insufficient arguments for printf()" -msgstr "E766: printf()" - -msgid "E807: Expected Float argument for printf()" -msgstr "E807: Float printf()" - -msgid "E767: Too many arguments to printf()" -msgstr "E767: printf()" - -# msgstr "E338: " -msgid "W10: Warning: Changing a readonly file" -msgstr "W10: : " - -msgid "Type number and <Enter> or click with mouse (empty cancels): " -msgstr " <Enter> ( ): " - -msgid "Type number and <Enter> (empty cancels): " -msgstr " <Enter> ( ): " - -msgid "1 more line" -msgstr " " - -msgid "1 line less" -msgstr " " - -#, c-format -msgid "%<PRId64> more lines" -msgstr " : %<PRId64>" - -#, c-format -msgid "%<PRId64> fewer lines" -msgstr " : %<PRId64>" - -msgid " (Interrupted)" -msgstr " ()" - -msgid "Beep!" -msgstr "!" - -# msgstr "E342: " -#, c-format -msgid "Calling shell to execute: \"%s\"" -msgstr " : %s" - -# msgstr "E348: " -msgid "E349: No identifier under cursor" -msgstr "E349: " - -msgid "E774: 'operatorfunc' is empty" -msgstr "E774: 'operatorfunc' " - -msgid "Warning: terminal cannot highlight" -msgstr ": " - -msgid "E348: No string under cursor" -msgstr "E348: " - -msgid "E352: Cannot erase folds with current 'foldmethod'" -msgstr "E352: 'foldmethod'" - -msgid "E664: changelist is empty" -msgstr "E664: " - -msgid "E662: At start of changelist" -msgstr "E662: " - -msgid "E663: At end of changelist" -msgstr "E663: ʳ " - -msgid "Type :quit<Enter> to exit Nvim" -msgstr " :quit<Enter> Vim" - -#, c-format -msgid "1 line %sed 1 time" -msgstr " %s-" - -#, c-format -msgid "1 line %sed %d times" -msgstr " %s- %d " - -#, c-format -msgid "%<PRId64> lines %sed 1 time" -msgstr "%<PRId64> %s-" - -#, c-format -msgid "%<PRId64> lines %sed %d times" -msgstr "%<PRId64> %s- %d " - -#, c-format -msgid "%<PRId64> lines to indent... " -msgstr " %<PRId64> ..." - -msgid "1 line indented " -msgstr " " - -#, c-format -msgid "%<PRId64> lines indented " -msgstr " : %<PRId64>" - -msgid "E748: No previously used register" -msgstr "E748: " - -#. must display the prompt -msgid "cannot yank; delete anyway" -msgstr " '; ?" - -msgid "1 line changed" -msgstr " " - -#, c-format -msgid "%<PRId64> lines changed" -msgstr " : %<PRId64>" - -msgid "block of 1 line yanked" -msgstr "' " - -msgid "1 line yanked" -msgstr "' " - -#, c-format -msgid "block of %<PRId64> lines yanked" -msgstr "' %<PRId64> " - -#, c-format -msgid "%<PRId64> lines yanked" -msgstr "' : %<PRId64>" - -#, c-format -msgid "E353: Nothing in register %s" -msgstr "E353: %s " - -# msgstr "E353: " -#. Highlight title -msgid "" -"\n" -"--- Registers ---" -msgstr "" -"\n" -"--- ---" - -msgid "Illegal register name" -msgstr " " - -msgid "" -"\n" -"# Registers:\n" -msgstr "" -"\n" -"# :\n" - -#, c-format -msgid "E574: Unknown register type %d" -msgstr "E574: %d" - -#, c-format -msgid "%<PRId64> Cols; " -msgstr ".: %<PRId64>; " - -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Bytes" -msgstr "" -" %s%<PRId64> %<PRId64> ; %<PRId64> %<PRId64> ; " -"%<PRId64> %<PRId64> " - -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Chars; %<PRId64> of %<PRId64> Bytes" -msgstr "" -" %s%<PRId64> %<PRId64> ; %<PRId64> %<PRId64> ; " -"%<PRId64> of %<PRId64> ; %<PRId64> %<PRId64> " - -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Byte " -"%<PRId64> of %<PRId64>" -msgstr "" -" %s %s; %<PRId64> %<PRId64>; %<PRId64> %<PRId64>; " -" %<PRId64> %<PRId64>" - -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Char " -"%<PRId64> of %<PRId64>; Byte %<PRId64> of %<PRId64>" -msgstr "" -" %s %s; %<PRId64> %<PRId64>; %<PRId64> %<PRId64>; " -" %<PRId64> of %<PRId64>; %<PRId64> %<PRId64>" - -#, c-format -msgid "(+%<PRId64> for BOM)" -msgstr "(+%<PRId64> BOM)" - -msgid "%<%f%h%m%=Page %N" -msgstr "%<%f%h%m%=. %N" - -msgid "Thanks for flying Vim" -msgstr " Vim" - -#. found a mismatch: skip -msgid "E518: Unknown option" -msgstr "E518: " - -msgid "E519: Option not supported" -msgstr "E519: " - -msgid "E520: Not allowed in a modeline" -msgstr "E520: modeline" - -msgid "E846: Key code not set" -msgstr "E846: " - -msgid "E521: Number required after =" -msgstr "E521: ϳ = " - -msgid "E522: Not found in termcap" -msgstr "E522: " - -#, c-format -msgid "E539: Illegal character <%s>" -msgstr "E539: <%s>" - -msgid "E529: Cannot set 'term' to empty string" -msgstr "E529: 'term'" - -msgid "E589: 'backupext' and 'patchmode' are equal" -msgstr "E589: 'backupext' 'patchmode' " - -msgid "E834: Conflicts with value of 'listchars'" -msgstr "E834: 'listchars'" - -msgid "E835: Conflicts with value of 'fillchars'" -msgstr "E835: 'fillchars'" - -msgid "E524: Missing colon" -msgstr "E524: " - -msgid "E525: Zero length string" -msgstr "E525: " - -#, c-format -msgid "E526: Missing number after <%s>" -msgstr "E526: ϳ <%s> " - -msgid "E527: Missing comma" -msgstr "E527: " - -msgid "E528: Must specify a ' value" -msgstr "E528: '" - -msgid "E595: contains unprintable or wide character" -msgstr "E595: ̳ " - -#, c-format -msgid "E535: Illegal character after <%c>" -msgstr "E535: <%c>" - -msgid "E536: comma required" -msgstr "E536: " - -#, c-format -msgid "E537: 'commentstring' must be empty or contain %s" -msgstr "E537: 'commentstring' %s" - -msgid "E540: Unclosed expression sequence" -msgstr "E540: " - -msgid "E541: too many items" -msgstr "E541: " - -msgid "E542: unbalanced groups" -msgstr "E542: " - -msgid "E590: A preview window already exists" -msgstr "E590: ³ " - -msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'" -msgstr "" -"W17: UTF-8, ':set encoding=utf-8'" - -#, c-format -msgid "E593: Need at least %d lines" -msgstr "E593: %d " - -#, c-format -msgid "E594: Need at least %d columns" -msgstr "E594: %d " - -#, c-format -msgid "E355: Unknown option: %s" -msgstr "E355: : %s" - -#. There's another character after zeros or the string -#. * is empty. In both cases, we are trying to set a -#. * num option using a string. -#, c-format -msgid "E521: Number required: &%s = '%s'" -msgstr "E521: Number: &%s = '%s'" - -# msgstr "E355: " -msgid "" -"\n" -"--- Terminal codes ---" -msgstr "" -"\n" -"--- ---" - -msgid "" -"\n" -"--- Global option values ---" -msgstr "" -"\n" -"--- ---" - -msgid "" -"\n" -"--- Local option values ---" -msgstr "" -"\n" -"--- ---" - -msgid "" -"\n" -"--- Options ---" -msgstr "" -"\n" -"--- ---" - -msgid "E356: get_varp ERROR" -msgstr "E356: get_varp" - -# msgstr "E356: " -#, c-format -msgid "E357: 'langmap': Matching character missing for %s" -msgstr "E357: 'langmap': %s " - -# msgstr "E357: " -#, c-format -msgid "E358: 'langmap': Extra characters after semicolon: %s" -msgstr "E358: 'langmap': `;': %s" - -msgid "" -"\n" -"Cannot execute shell " -msgstr "" -"\n" -" " - -# msgstr "E362: " -msgid "" -"\n" -"shell returned " -msgstr "" -"\n" -" : " - -msgid "" -"\n" -"Could not get security context for " -msgstr "" -"\n" -" " - -msgid "" -"\n" -"Could not set security context for " -msgstr "" -"\n" -" " - -#, c-format -msgid "dlerror = \"%s\"" -msgstr "dlerror = %s" - -# msgstr "E446: " -#, c-format -msgid "E447: Can't find file \"%s\" in path" -msgstr "E447: %s " - -# msgstr "E371: " -#, c-format -msgid "E372: Too many %%%c in format string" -msgstr "E372: %%%c " - -# msgstr "E372: " -#, c-format -msgid "E373: Unexpected %%%c in format string" -msgstr "E373: `%%%c' " - -# msgstr "E373: " -msgid "E374: Missing ] in format string" -msgstr "E374: ] " - -# msgstr "E374: " -#, c-format -msgid "E375: Unsupported %%%c in format string" -msgstr "E375: %%%c " - -# msgstr "E375: " -#, c-format -msgid "E376: Invalid %%%c in format string prefix" -msgstr "E376: `%%%c' " - -# msgstr "E376: " -#, c-format -msgid "E377: Invalid %%%c in format string" -msgstr "E377: `%%%c' " - -# msgstr "E377: " -#. nothing found -msgid "E378: 'errorformat' contains no pattern" -msgstr "E378: 'errorformat' " - -# msgstr "E378: " -msgid "E379: Missing or empty directory name" -msgstr "E379: " - -msgid "E553: No more items" -msgstr "E553: " - -#, c-format -msgid "(%d of %d)%s%s: " -msgstr "(%d %d)%s%s: " - -msgid " (line deleted)" -msgstr " ( )" - -msgid "E380: At bottom of quickfix stack" -msgstr "E380: " - -msgid "E381: At top of quickfix stack" -msgstr "E381: " - -#, c-format -msgid "error list %d of %d; %d errors" -msgstr " %d %d; %d " - -msgid "E382: Cannot write, 'buftype' option is set" -msgstr "E382: , 'buftype'" - -msgid "E683: File name missing or invalid pattern" -msgstr "E683: " - -#, c-format -msgid "Cannot open file \"%s\"" -msgstr " %s" - -msgid "E681: Buffer is not loaded" -msgstr "E681: " - -msgid "E777: String or List expected" -msgstr "E777: String List" - -#, c-format -msgid "E369: invalid item in %s%%[]" -msgstr "E369: %s%%[]" - -#, c-format -msgid "E769: Missing ] after %s[" -msgstr "E769: ] %s[" - -#, c-format -msgid "E53: Unmatched %s%%(" -msgstr "E53: %s%%(" - -#, c-format -msgid "E54: Unmatched %s(" -msgstr "E54: %s(" - -#, c-format -msgid "E55: Unmatched %s)" -msgstr "E55: %s)" - -# msgstr "E406: " -msgid "E66: \\z( not allowed here" -msgstr "E66: \\z( " - -# msgstr "E406: " -msgid "E67: \\z1 et al. not allowed here" -msgstr "E67: \\z1 . " - -#, c-format -msgid "E69: Missing ] after %s%%[" -msgstr "E69: ] %s%%[" - -#, c-format -msgid "E70: Empty %s%%[]" -msgstr "E70: %s%%[] " - -# msgstr "E382: " -msgid "E339: Pattern too long" -msgstr "E339: " - -msgid "E50: Too many \\z(" -msgstr "E50: \\z(" - -#, c-format -msgid "E51: Too many %s(" -msgstr "E51: %s(" - -msgid "E52: Unmatched \\z(" -msgstr "E52: \\z(" - -#, c-format -msgid "E59: invalid character after %s@" -msgstr "E59: %s@" - -#, c-format -msgid "E60: Too many complex %s{...}s" -msgstr "E60: %s{...}" - -# msgstr "E339: " -#, c-format -msgid "E61: Nested %s*" -msgstr "E61: %s*" - -# msgstr "E61: " -#, c-format -msgid "E62: Nested %s%c" -msgstr "E62: %s%c" - -msgid "E63: invalid use of \\_" -msgstr "E63: \\_" - -# msgstr "E62: " -#, c-format -msgid "E64: %s%c follows nothing" -msgstr "E64: ϳ %s%c " - -msgid "E65: Illegal back reference" -msgstr "E65: " - -msgid "E68: Invalid character after \\z" -msgstr "E68: \\z" - -#, c-format -msgid "E678: Invalid character after %s%%[dxouU]" -msgstr "E678: %s%%[dxouU]" - -#, c-format -msgid "E71: Invalid character after %s%%" -msgstr "E71: %s%%" - -# msgstr "E64: " -#, c-format -msgid "E554: Syntax error in %s{...}" -msgstr "E554: %s{...}" - -msgid "External submatches:\n" -msgstr " -:\n" - -msgid "" -"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be " -"used " -msgstr "" -"E864: \\%#= 0, 1, or 2. " -" " - -msgid "E865: (NFA) Regexp end encountered prematurely" -msgstr "E865: (NFA) " - -#, c-format -msgid "E866: (NFA regexp) Misplaced %c" -msgstr "E866: (NFA regexp) %c" - -#, c-format -msgid "E877: (NFA regexp) Invalid character class: %<PRId64>" -msgstr "E877: (NFA regexp) : %<PRId64>" - -#, c-format -msgid "E867: (NFA) Unknown operator '\\z%c'" -msgstr "E867: (NFA) '\\z%c'" - -#, c-format -msgid "E867: (NFA) Unknown operator '\\%%%c'" -msgstr "E867: (NFA) '\\%%%c'" - -#, c-format -msgid "E869: (NFA) Unknown operator '\\@%c'" -msgstr "E869: (NFA) '\\@%c'" - -msgid "E870: (NFA regexp) Error reading repetition limits" -msgstr "E870: (NFA regexp) " - -#. Can't have a multi follow a multi. -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" -msgstr "E871: (NFA regexp) !" - -#. Too many `(' -msgid "E872: (NFA regexp) Too many '('" -msgstr "E872: (NFA regexp) '('" - -msgid "E879: (NFA regexp) Too many \\z(" -msgstr "E879: (NFA regexp) \\z(" - -msgid "E873: (NFA regexp) proper termination error" -msgstr "E873: (NFA regexp) " - -msgid "E874: (NFA) Could not pop the stack !" -msgstr "E874: (NFA) !" - -msgid "" -"E875: (NFA regexp) (While converting from postfix to NFA), too many states " -"left on stack" -msgstr "" -"E875: (NFA regexp) (ϳ NFA) " -" " - -msgid "E876: (NFA regexp) Not enough space to store the whole NFA " -msgstr "E876: (NFA regexp) , NFA " - -msgid "" -"Could not open temporary log file for writing, displaying on stderr ... " -msgstr "" -" , " -"stderr ... " - -#, c-format -msgid "(NFA) COULD NOT OPEN %s !" -msgstr "(NFA) ² %s!" - -msgid "Could not open temporary log file for writing " -msgstr " " - -msgid " VREPLACE" -msgstr " ² ̲" - -msgid " REPLACE" -msgstr " ̲" - -msgid " REVERSE" -msgstr " в" - -msgid " INSERT" -msgstr " " - -msgid " (insert)" -msgstr " ()" - -msgid " (replace)" -msgstr " ()" - -msgid " (vreplace)" -msgstr " ( )" - -msgid " Hebrew" -msgstr " " - -msgid " Arabic" -msgstr " " - -msgid " (lang)" -msgstr " ()" - -msgid " (paste)" -msgstr " ()" - -msgid " VISUAL" -msgstr " " - -msgid " VISUAL LINE" -msgstr " ʲ" - -msgid " VISUAL BLOCK" -msgstr " " - -msgid " SELECT" -msgstr " IJ" - -msgid " SELECT LINE" -msgstr " IJ ʲ" - -msgid " SELECT BLOCK" -msgstr " IJ " - -msgid "recording" -msgstr " " - -#, c-format -msgid "E383: Invalid search string: %s" -msgstr "E383: : %s" - -#, c-format -msgid "E384: search hit TOP without match for: %s" -msgstr "E384: %s" - -#, c-format -msgid "E385: search hit BOTTOM without match for: %s" -msgstr "E385: ʲ %s" - -msgid "E386: Expected '?' or '/' after ';'" -msgstr "E386: ϳ `;' `?' `/'" - -# msgstr "E386: " -msgid " (includes previously listed match)" -msgstr " ( )" - -#. cursor at status line -msgid "--- Included files " -msgstr "--- " - -msgid "not found " -msgstr " " - -msgid "in path ---\n" -msgstr " ---\n" - -msgid " (Already listed)" -msgstr " ( )" - -msgid " NOT FOUND" -msgstr " " - -#, c-format -msgid "Scanning included file: %s" -msgstr " : %s" - -#, c-format -msgid "Searching included file %s" -msgstr " %s" - -msgid "E387: Match is on current line" -msgstr "E387: " - -msgid "All included files were found" -msgstr " " - -msgid "No included files" -msgstr " " - -msgid "E388: Couldn't find definition" -msgstr "E388: " - -msgid "E389: Couldn't find pattern" -msgstr "E389: " - -msgid "Substitute " -msgstr " " - -#, c-format -msgid "" -"\n" -"# Last %sSearch Pattern:\n" -"~" -msgstr "" -"\n" -"# . %s :\n" -"~" - -msgid "E759: Format error in spell file" -msgstr "E759: " - -# msgstr "E364: " -msgid "E758: Truncated spell file" -msgstr "E758: " - -#, c-format -msgid "Trailing text in %s line %d: %s" -msgstr " %s %d: %s" - -#, c-format -msgid "Affix name too long in %s line %d: %s" -msgstr " %s %d: %s" - -# msgstr "E430: " -msgid "E761: Format error in affix file FOL, LOW or UPP" -msgstr "E761: FOL, LOW UPP" - -msgid "E762: Character in FOL, LOW or UPP is out of range" -msgstr "E762: FOL, LOW UPP " - -msgid "Compressing word tree..." -msgstr " ..." - -msgid "E756: Spell checking is not enabled" -msgstr "E756: " - -#, c-format -msgid "Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\"" -msgstr "" -": %s.%s.spl %s.ascii.spl" - -#, c-format -msgid "Reading spell file \"%s\"" -msgstr " %s" - -msgid "E757: This does not look like a spell file" -msgstr "E757: " - -msgid "E771: Old spell file, needs to be updated" -msgstr "E771: , " - -msgid "E772: Spell file is for newer version of Vim" -msgstr "E772: Vim" - -msgid "E770: Unsupported section in spell file" -msgstr "E770: " - -#, c-format -msgid "Warning: region %s not supported" -msgstr ": %s " - -#, c-format -msgid "Reading affix file %s ..." -msgstr " %s ..." - -#, c-format -msgid "Conversion failure for word in %s line %d: %s" -msgstr " %s %d: %s" - -#, c-format -msgid "Conversion in %s not supported: from %s to %s" -msgstr " %s : %s %s" - -#, c-format -msgid "Invalid value for FLAG in %s line %d: %s" -msgstr " FLAG %s %d: %s" - -#, c-format -msgid "FLAG after using flags in %s line %d: %s" -msgstr "FLAG %s %d: %s" - -#, c-format -msgid "" -"Defining COMPOUNDFORBIDFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" -" COMPOUNDFORBIDFLAG PFX " -" %s %d" - -#, c-format -msgid "" -"Defining COMPOUNDPERMITFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" -" COMPOUNDPERMITFLAG PFX " -" %s %d" - -#, c-format -msgid "Wrong COMPOUNDRULES value in %s line %d: %s" -msgstr " COMPOUNDRULES %s %d: %s" - -#, c-format -msgid "Wrong COMPOUNDWORDMAX value in %s line %d: %s" -msgstr " COMPOUNDWORDMAX %s %d: %s" - -#, c-format -msgid "Wrong COMPOUNDMIN value in %s line %d: %s" -msgstr " COMPOUNDMIN %s %d: %s" - -#, c-format -msgid "Wrong COMPOUNDSYLMAX value in %s line %d: %s" -msgstr " COMPOUNDSYLMAX %s %d: %s" - -#, c-format -msgid "Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s" -msgstr " CHECKCOMPOUNDPATTERN %s %d: %s" - -#, c-format -msgid "Different combining flag in continued affix block in %s line %d: %s" -msgstr "" -" %s %d: %s" - -#, c-format -msgid "Duplicate affix in %s line %d: %s" -msgstr " %s %d: %s" - -#, c-format -msgid "" -"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s " -"line %d: %s" -msgstr "" -" BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/" -"NOSUGGEST %s %d: %s" - -#, c-format -msgid "Expected Y or N in %s line %d: %s" -msgstr " Y N %s %d: %s" - -#, c-format -msgid "Broken condition in %s line %d: %s" -msgstr " %s %d: %s" - -#, c-format -msgid "Expected REP(SAL) count in %s line %d" -msgstr " REP(SAL) %s %d" - -#, c-format -msgid "Expected MAP count in %s line %d" -msgstr " MAP %s %d" - -#, c-format -msgid "Duplicate character in MAP in %s line %d" -msgstr " MAP %s %d" - -#, c-format -msgid "Unrecognized or duplicate item in %s line %d: %s" -msgstr " %s %d: %s" - -#, c-format -msgid "Missing FOL/LOW/UPP line in %s" -msgstr " FOL/LOW/UPP %s" - -msgid "COMPOUNDSYLMAX used without SYLLABLE" -msgstr " COMPOUNDSYLMAX SYLLABLE" - -msgid "Too many postponed prefixes" -msgstr " " - -msgid "Too many compound flags" -msgstr " " - -msgid "Too many postponed prefixes and/or compound flags" -msgstr " / " - -#, c-format -msgid "Missing SOFO%s line in %s" -msgstr " SOFO%s %s" - -#, c-format -msgid "Both SAL and SOFO lines in %s" -msgstr " SAL SOFO %s" - -#, c-format -msgid "Flag is not a number in %s line %d: %s" -msgstr " %s %d: %s" - -#, c-format -msgid "Illegal flag in %s line %d: %s" -msgstr " %s %d: %s" - -#, c-format -msgid "%s value differs from what is used in another .aff file" -msgstr " %s , .aff" - -#, c-format -msgid "Reading dictionary file %s ..." -msgstr " %s ..." - -#, c-format -msgid "E760: No word count in %s" -msgstr "E760: %s" - -#, c-format -msgid "line %6d, word %6d - %s" -msgstr " %6d, %6d - %s" - -#, c-format -msgid "Duplicate word in %s line %d: %s" -msgstr " %s %d: %s" - -#, c-format -msgid "First duplicate word in %s line %d: %s" -msgstr " %s %d: %s" - -#, c-format -msgid "%d duplicate word(s) in %s" -msgstr "%d %s" - -#, c-format -msgid "Ignored %d word(s) with non-ASCII characters in %s" -msgstr " %d (~) -ASCII %s" - -#, c-format -msgid "Reading word file %s ..." -msgstr " %s ..." - -#, c-format -msgid "Duplicate /encoding= line ignored in %s line %d: %s" -msgstr " /encoding= %s %d: %s" - -#, c-format -msgid "/encoding= line after word ignored in %s line %d: %s" -msgstr " /encoding= %s %d: %s" - -#, c-format -msgid "Duplicate /regions= line ignored in %s line %d: %s" -msgstr " /regions= %s %d: %s" - -#, c-format -msgid "Too many regions in %s line %d: %s" -msgstr " %s %d: %s" - -#, c-format -msgid "/ line ignored in %s line %d: %s" -msgstr " / %s %d: %s" - -#, c-format -msgid "Invalid region nr in %s line %d: %s" -msgstr " %s %d: %s" - -#, c-format -msgid "Unrecognized flags in %s line %d: %s" -msgstr " %s %d: %s" - -#, c-format -msgid "Ignored %d words with non-ASCII characters" -msgstr " %d -ASCII " - -#, c-format -msgid "Compressed %d of %d nodes; %d (%d%%) remaining" -msgstr " %d %d ; %d (%d%%)" - -msgid "Reading back spell file..." -msgstr " ..." - -#. Go through the trie of good words, soundfold each word and add it to -#. the soundfold trie. -msgid "Performing soundfolding..." -msgstr " ..." - -#, c-format -msgid "Number of words after soundfolding: %<PRId64>" -msgstr "ʳ : %<PRId64>" - -#, c-format -msgid "Total number of words: %d" -msgstr " : %d" - -#, c-format -msgid "Writing suggestion file %s ..." -msgstr " %s ..." - -#, c-format -msgid "Estimated runtime memory use: %d bytes" -msgstr " ': %d " - -msgid "E751: Output file name must not have region name" -msgstr "E751: " - -msgid "E754: Only up to 8 regions supported" -msgstr "E754: ϳ " - -#, c-format -msgid "E755: Invalid region in %s" -msgstr "E755: %s" - -msgid "Warning: both compounding and NOBREAK specified" -msgstr ": ` ' NOBREAK" - -#, c-format -msgid "Writing spell file %s ..." -msgstr " %s ..." - -msgid "Done!" -msgstr "!" - -#, c-format -msgid "E765: 'spellfile' does not have %<PRId64> entries" -msgstr "E765: 'spellfile' %<PRId64> " - -#, c-format -msgid "Word '%.*s' removed from %s" -msgstr " '%.*s' %s" - -#, c-format -msgid "Word '%.*s' added to %s" -msgstr " '%.*s' %s" - -msgid "E763: Word characters differ between spell files" -msgstr "E763: " - -msgid "Sorry, no suggestions" -msgstr ", " - -#, c-format -msgid "Sorry, only %<PRId64> suggestions" -msgstr ", %<PRId64> " - -#. for when 'cmdheight' > 1 -#. avoid more prompt -#, c-format -msgid "Change \"%.*s\" to:" -msgstr " %.*s :" - -#, c-format -msgid " < \"%.*s\"" -msgstr " < %.*s" - -# msgstr "E34: " -msgid "E752: No previous spell replacement" -msgstr "E752: " - -# msgstr "E333: " -#, c-format -msgid "E753: Not found: %s" -msgstr "E753: : %s" - -#, c-format -msgid "E778: This does not look like a .sug file: %s" -msgstr "E778: .sug: %s" - -#, c-format -msgid "E779: Old .sug file, needs to be updated: %s" -msgstr "E779: .sug, : %s" - -#, c-format -msgid "E780: .sug file is for newer version of Vim: %s" -msgstr "E780: .sug Vim: %s" - -#, c-format -msgid "E781: .sug file doesn't match .spl file: %s" -msgstr "E781: .sug .spl: %s" - -#, c-format -msgid "E782: error while reading .sug file: %s" -msgstr "E782: .sug: %s" - -#. This should have been checked when generating the .spl -#. file. -msgid "E783: duplicate char in MAP entry" -msgstr "E783: MAP" - -# msgstr "E391: " -msgid "No Syntax items defined for this buffer" -msgstr " " - -#, c-format -msgid "E390: Illegal argument: %s" -msgstr "E390: : %s" - -#, c-format -msgid "E391: No such syntax cluster: %s" -msgstr "E391: : %s" - -msgid "syncing on C-style comments" -msgstr " " - -msgid "no syncing" -msgstr " " - -msgid "syncing starts " -msgstr " " - -msgid " lines before top line" -msgstr " " - -msgid "" -"\n" -"--- Syntax sync items ---" -msgstr "" -"\n" -"--- ---" - -msgid "" -"\n" -"syncing on items" -msgstr "" -"\n" -" " - -msgid "" -"\n" -"--- Syntax items ---" -msgstr "" -"\n" -"--- ---" - -#, c-format -msgid "E392: No such syntax cluster: %s" -msgstr "E392: : %s" - -msgid "minimal " -msgstr " " - -msgid "maximal " -msgstr " " - -msgid "; match " -msgstr "; " - -msgid " line breaks" -msgstr " " - -msgid "E395: contains argument not accepted here" -msgstr "E395: ̳ " - -# msgstr "E14: " -msgid "E844: invalid cchar value" -msgstr "E844: cchar" - -msgid "E393: group[t]here not accepted here" -msgstr "E393: group[t]hete " - -#, c-format -msgid "E394: Didn't find region item for %s" -msgstr "E394: %s" - -# msgstr "E396: " -msgid "E397: Filename required" -msgstr "E397: " - -msgid "E847: Too many syntax includes" -msgstr "E847: " - -#, c-format -msgid "E789: Missing ']': %s" -msgstr "E789: ']': %s" - -#, c-format -msgid "E398: Missing '=': %s" -msgstr "E398: `=': %s" - -# --------------------------------------- -#, c-format -msgid "E399: Not enough arguments: syntax region %s" -msgstr "E399: : %s" - -msgid "E848: Too many syntax clusters" -msgstr "E848: " - -msgid "E400: No cluster specified" -msgstr "E400: " - -#. end delimiter not found -#, c-format -msgid "E401: Pattern delimiter not found: %s" -msgstr "E401: ʳ : %s" - -#, c-format -msgid "E402: Garbage after pattern: %s" -msgstr "E402: : %s" - -# msgstr "E402: " -msgid "E403: syntax sync: line continuations pattern specified twice" -msgstr "" -"E403: : " - -#, c-format -msgid "E404: Illegal arguments: %s" -msgstr "E404: : %s" - -# msgstr "E404: " -#, c-format -msgid "E405: Missing equal sign: %s" -msgstr "E405: : %s" - -# msgstr "E405: " -#, c-format -msgid "E406: Empty argument: %s" -msgstr "E406: : %s" - -# msgstr "E406: " -#, c-format -msgid "E407: %s not allowed here" -msgstr "E407: %s " - -#, c-format -msgid "E408: %s must be first in contains list" -msgstr "E408: %s contains" - -#, c-format -msgid "E409: Unknown group name: %s" -msgstr "E409: : %s" - -# msgstr "E409: " -#, c-format -msgid "E410: Invalid :syntax subcommand: %s" -msgstr "E410: :syntax: %s" - -msgid "" -" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN" -msgstr "" -" - ϲ. ². . " - -msgid "E679: recursive loop loading syncolor.vim" -msgstr "E679: syncolor.vim" - -# msgstr "E410: " -#, c-format -msgid "E411: highlight group not found: %s" -msgstr "E411: : %s" - -# msgstr "E411: " -#, c-format -msgid "E412: Not enough arguments: \":highlight link %s\"" -msgstr "E412: : :highlight link %s" - -# msgstr "E412: " -#, c-format -msgid "E413: Too many arguments: \":highlight link %s\"" -msgstr "E413: : :highlight link %s" - -# msgstr "E413: " -msgid "E414: group has settings, highlight link ignored" -msgstr "E414: settings, highlight link " - -# msgstr "E414: " -#, c-format -msgid "E415: unexpected equal sign: %s" -msgstr "E415: : %s" - -# msgstr "E415: " -#, c-format -msgid "E416: missing equal sign: %s" -msgstr "E416: : %s" - -#, c-format -msgid "E417: missing argument: %s" -msgstr "E417: : %s" - -#, c-format -msgid "E418: Illegal value: %s" -msgstr "E418: : %s" - -# msgstr "E418: " -msgid "E419: FG color unknown" -msgstr "E419: " - -# msgstr "E419: " -msgid "E420: BG color unknown" -msgstr "E420: " - -# msgstr "E420: " -#, c-format -msgid "E421: Color name or number not recognized: %s" -msgstr "E421: : %s" - -# msgstr "E421: " -#, c-format -msgid "E422: terminal code too long: %s" -msgstr "E422: : %s" - -# msgstr "E422: " -#, c-format -msgid "E423: Illegal argument: %s" -msgstr "E423: : %s" - -# msgstr "E423: " -msgid "E424: Too many different highlighting attributes in use" -msgstr "E424: " - -msgid "E669: Unprintable character in group name" -msgstr "E669: " - -# msgstr "E181: " -msgid "W18: Invalid character in group name" -msgstr "W18: " - -msgid "E849: Too many highlight and syntax groups" -msgstr "E849: " - -# msgstr "E424: " -msgid "E555: at bottom of tag stack" -msgstr "E555: ʳ 崳" - -msgid "E556: at top of tag stack" -msgstr "E556: 崳" - -msgid "E425: Cannot go before first matching tag" -msgstr "E425: " - -# msgstr "E425: " -#, c-format -msgid "E426: tag not found: %s" -msgstr "E426: : %s" - -# msgstr "E426: " -msgid " # pri kind tag" -msgstr " # " - -msgid "file\n" -msgstr "\n" - -msgid "E427: There is only one matching tag" -msgstr "E427: " - -# msgstr "E427: " -msgid "E428: Cannot go beyond last matching tag" -msgstr "E428: " - -# msgstr "E428: " -#, c-format -msgid "File \"%s\" does not exist" -msgstr " %s " - -#. Give an indication of the number of matching tags -#, c-format -msgid "tag %d of %d%s" -msgstr " %d %d%s" - -msgid " or more" -msgstr " " - -msgid " Using tag with different case!" -msgstr " , " - -#, c-format -msgid "E429: File \"%s\" does not exist" -msgstr "E429: %s " - -# msgstr "E429: " -#. Highlight title -msgid "" -"\n" -" # TO tag FROM line in file/text" -msgstr "" -"\n" -" # /" - -#, c-format -msgid "Searching tags file %s" -msgstr " 崳 %s" - -msgid "Ignoring long line in tags file" -msgstr " " - -# msgstr "E430: " -#, c-format -msgid "E431: Format error in tags file \"%s\"" -msgstr "E431: 崳 %s" - -# msgstr "E431: " -#, c-format -msgid "Before byte %<PRId64>" -msgstr " %<PRId64>" - -#, c-format -msgid "E432: Tags file not sorted: %s" -msgstr "E432: 崳 : %s" - -# msgstr "E432: " -#. never opened any tags file -msgid "E433: No tags file" -msgstr "E433: 崳" - -# msgstr "E433: " -msgid "E434: Can't find tag pattern" -msgstr "E434: " - -# msgstr "E434: " -msgid "E435: Couldn't find tag, just guessing!" -msgstr "E435: , !" - -#, c-format -msgid "Duplicate field name: %s" -msgstr " : %s" - -# msgstr "E435: " -msgid "' not known. Available builtin terminals are:" -msgstr "' . :" - -msgid "defaulting to '" -msgstr " '" - -msgid "E557: Cannot open termcap file" -msgstr "E557: " - -msgid "E558: Terminal entry not found in terminfo" -msgstr "E558: " - -msgid "E559: Terminal entry not found in termcap" -msgstr "E559: " - -#, c-format -msgid "E436: No \"%s\" entry in termcap" -msgstr "E436: %s " - -msgid "E437: terminal capability \"cm\" required" -msgstr "E437: cm" - -#. Highlight title -msgid "" -"\n" -"--- Terminal keys ---" -msgstr "" -"\n" -"--- ---" - -msgid "Vim: Error reading input, exiting...\n" -msgstr "Vim: , ...\n" - -#. This happens when the FileChangedRO autocommand changes the -#. * file in a way it becomes shorter. -msgid "E881: Line count changed unexpectedly" -msgstr "E881: ʳ " - -#, c-format -msgid "E828: Cannot open undo file for writing: %s" -msgstr "E828: : %s" - -#, c-format -msgid "E825: Corrupted undo file (%s): %s" -msgstr "E825: (%s): %s" - -msgid "Cannot write undo file in any directory in 'undodir'" -msgstr " 'undodir'" - -#, c-format -msgid "Will not overwrite with undo file, cannot read: %s" -msgstr "Will not overwrite with undo file, cannot read: %s" - -#, c-format -msgid "Will not overwrite, this is not an undo file: %s" -msgstr " , : %s" - -msgid "Skipping undo file write, nothing to undo" -msgstr " , " - -#, c-format -msgid "Writing undo file: %s" -msgstr " : %s" - -#, c-format -msgid "E829: write error in undo file: %s" -msgstr "E829: : %s" - -#, c-format -msgid "Not reading undo file, owner differs: %s" -msgstr " , : %s" - -#, c-format -msgid "Reading undo file: %s" -msgstr " : %s" - -#, c-format -msgid "E822: Cannot open undo file for reading: %s" -msgstr "E822: : %s" - -# msgstr "E333: " -#, c-format -msgid "E823: Not an undo file: %s" -msgstr "E823: : %s" - -#, c-format -msgid "E824: Incompatible undo file: %s" -msgstr "E824: : %s" - -msgid "File contents changed, cannot use undo info" -msgstr " , " - -#, c-format -msgid "Finished reading undo file %s" -msgstr " %s" - -msgid "Already at oldest change" -msgstr " " - -msgid "Already at newest change" -msgstr " " - -#, c-format -msgid "E830: Undo number %<PRId64> not found" -msgstr "E830: %<PRId64> " - -msgid "E438: u_undo: line numbers wrong" -msgstr "E438: u_undo: " - -msgid "more line" -msgstr " " - -msgid "more lines" -msgstr " " - -msgid "line less" -msgstr " " - -msgid "fewer lines" -msgstr " " - -# msgstr "E438: " -msgid "change" -msgstr "" - -# msgstr "E438: " -msgid "changes" -msgstr "" - -#, c-format -msgid "%<PRId64> %s; %s #%<PRId64> %s" -msgstr "%<PRId64> %s; %s #%<PRId64> %s" - -msgid "before" -msgstr "" - -msgid "after" -msgstr "" - -msgid "Nothing to undo" -msgstr " " - -msgid "number changes when saved" -msgstr " " - -#, c-format -msgid "%<PRId64> seconds ago" -msgstr "%<PRId64> " - -# msgstr "E406: " -msgid "E790: undojoin is not allowed after undo" -msgstr "E790: undojoin undo" - -msgid "E439: undo list corrupt" -msgstr "E439: " - -# msgstr "E439: " -msgid "E440: undo line missing" -msgstr "E440: ³ " - -msgid "" -"\n" -"Included patches: " -msgstr "" -"\n" -" : " - -msgid "" -"\n" -"Extra patches: " -msgstr "" -"\n" -" : " - -msgid "Modified by " -msgstr " " - -msgid "" -"\n" -"Compiled " -msgstr "" -"\n" -" " - -msgid "by " -msgstr " " - -msgid "" -"\n" -"Huge version " -msgstr "" -"\n" -"ó " - -msgid "without GUI." -msgstr " GUI." - -msgid " Features included (+) or not (-):\n" -msgstr " (+) (-) :\n" - -msgid " system vimrc file: \"" -msgstr " vimrc: \"" - -msgid " user vimrc file: \"" -msgstr " vimrc : \"" - -msgid " 2nd user vimrc file: \"" -msgstr " vimrc : \"" - -msgid " 3rd user vimrc file: \"" -msgstr " vimrc : \"" - -msgid " user exrc file: \"" -msgstr " exrc : \"" - -msgid " 2nd user exrc file: \"" -msgstr " exrc : \"" - -msgid " fall-back for $VIM: \"" -msgstr " $VIM: \"" - -msgid " f-b for $VIMRUNTIME: \"" -msgstr " $VIMRUNTIME: \"" - -msgid "Compilation: " -msgstr ": " - -msgid "Linking: " -msgstr ": " - -msgid " DEBUG BUILD" -msgstr " Ѳ " - -msgid "VIM - Vi IMproved" -msgstr "VIM - Vi" - -msgid "version " -msgstr " " - -msgid "by Bram Moolenaar et al." -msgstr ": Bram Moolenaar ." - -msgid "Vim is open source and freely distributable" -msgstr "Vim " - -msgid "Help poor children in Uganda!" -msgstr " !" - -msgid "type :help iccf<Enter> for information " -msgstr ":help iccf<Enter> " - -msgid "type :q<Enter> to exit " -msgstr ":q<Enter> Vim " - -msgid "type :help<Enter> or <F1> for on-line help" -msgstr ":help<Enter> <F1> " - -msgid "type :help version7<Enter> for version info" -msgstr ":help version7<Enter> " - -msgid "Running in Vi compatible mode" -msgstr " Vi" - -msgid "type :set nocp<Enter> for Vim defaults" -msgstr ":set nocp<Enter> Vi " - -msgid "type :help cp-default<Enter> for info on this" -msgstr ":help cp-default<Enter> " - -msgid "Sponsor Vim development!" -msgstr "ϳ Vim!" - -msgid "Become a registered Vim user!" -msgstr " Vim!" - -msgid "type :help sponsor<Enter> for information " -msgstr ":help sponsor<Enter> " - -msgid "type :help register<Enter> for information " -msgstr ":help register<Enter> " - -msgid "menu Help->Sponsor/Register for information " -msgstr " ->/ " - -# msgstr "E444: " -msgid "Already only one window" -msgstr " " - -msgid "E441: There is no preview window" -msgstr "E441: " - -# msgstr "E441: " -msgid "E442: Can't split topleft and botright at the same time" -msgstr "E442: topleft botright" - -# msgstr "E442: " -msgid "E443: Cannot rotate when another window is split" -msgstr "E443: , " - -# msgstr "E443: " -msgid "E444: Cannot close last window" -msgstr "E444: " - -# msgstr "E443: " -msgid "E813: Cannot close autocmd window" -msgstr "E813: autocmd" - -# msgstr "E443: " -msgid "E814: Cannot close window, only autocmd window would remain" -msgstr "E814: , autocmd" - -msgid "E445: Other window contains changes" -msgstr "E445: " - -# msgstr "E445: " -msgid "E446: No file name under cursor" -msgstr "E446: " diff --git a/src/nvim/po/uk.po b/src/nvim/po/uk.po index 6a75018726..bbbb462292 100644 --- a/src/nvim/po/uk.po +++ b/src/nvim/po/uk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: vim 7.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-26 14:21+0200\n" +"POT-Creation-Date: 2016-11-06 07:25+0200\n" "PO-Revision-Date: 2010-06-18 21:53+0300\n" "Last-Translator: Анатолій Сахнік <sakhnik@gmail.com>\n" "Language-Team: Bohdan Vlasyuk <bohdan@vstu.edu.ua>\n" @@ -21,11 +21,195 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -msgid "Unable to get option value" -msgstr "Не вдалося отримати значення опції" +msgid "Index out of bounds" +msgstr "Індекс поза межами" -msgid "internal error: unknown option type" -msgstr "внутрішня помилка: невідомий тип опції" +msgid "Line index is too high" +msgstr "Номер рядка завеликий" + +msgid "Argument \"start\" is higher than \"end\"" +msgstr "Аргумент «start» більший, ніж «end»" + +msgid "All items in the replacement array must be strings" +msgstr "Всі елементи в масиві заміни мають бути текстовими" + +msgid "string cannot contain newlines" +msgstr "текст має бути одним рядком" + +msgid "Failed to save undo information" +msgstr "Не вдалося записати інформацію для скасування" + +msgid "Failed to delete line" +msgstr "Не вдалося знищити рядок" + +msgid "Index value is too high" +msgstr "Значення індексу завелике" + +msgid "Failed to replace line" +msgstr "Не вдалося замінити рядок" + +msgid "Failed to insert line" +msgstr "Не вдалося вставити рядок" + +msgid "Failed to rename buffer" +msgstr "Не вдалося перейменувати буфер" + +msgid "Mark name must be a single character" +msgstr "Назва позначки має бути одним символом" + +msgid "Invalid mark name" +msgstr "Неправильна назва помітки" + +msgid "Line number outside range" +msgstr "Номер рядка поза межами" + +msgid "Column value outside range" +msgstr "Значення колонки поза межами" + +msgid "Keyboard interrupt" +msgstr "Перервано з клавіатури" + +msgid "Key not found" +msgstr "Ключ не знайдено" + +msgid "Dictionary is locked" +msgstr "Словник заблоковано" + +msgid "Empty dictionary keys aren't allowed" +msgstr "Не дозволено порожні ключі в словнику" + +msgid "Key length is too high" +msgstr "Довжина ключа завелика" + +#, c-format +msgid "Key \"%s\" doesn't exist" +msgstr "Ключ «%s» не існує" + +msgid "Empty option name" +msgstr "Порожня назва опції" + +#, c-format +msgid "Invalid option name \"%s\"" +msgstr "Неправильна назва опції «%s»" + +#, c-format +msgid "Unable to get value for option \"%s\"" +msgstr "Не вдалося отримати значення опції «%s»" + +#, c-format +msgid "Unknown type for option \"%s\"" +msgstr "Невідомий тип для опції «%s»" + +#, c-format +msgid "Unable to unset option \"%s\"" +msgstr "Не вдалося прибрати опцію «%s»" + +#, c-format +msgid "Cannot unset option \"%s\" because it doesn't have a global value" +msgstr "Не вдалося скинути опцію «%s», тому що в неї немає глобального значення" + +#, c-format +msgid "Option \"%s\" requires a boolean value" +msgstr "Опція «%s» потребує логічне значення" + +#, c-format +msgid "Option \"%s\" requires an integer value" +msgstr "Опція «%s» вимагає ціле значення" + +#, c-format +msgid "Value for option \"%s\" is outside range" +msgstr "Значення для опції «%s» поза межами" + +#, c-format +msgid "Option \"%s\" requires a string value" +msgstr "Опція «%s» вимагає рядкове значення" + +msgid "Invalid buffer id" +msgstr "Некоректний ід. буфера" + +msgid "Invalid window id" +msgstr "Некоректний ід. вікна" + +msgid "Invalid tabpage id" +msgstr "Некоректний ід. вкладки" + +msgid "Integer value outside range" +msgstr "Ціле значення поза межами" + +msgid "Problem while switching windows" +msgstr "Невдача при перемиканні вікон" + +msgid "UI already attached for channel" +msgstr "До каналу вже приєднано інтерфейс користувача" + +msgid "Expected width > 0 and height > 0" +msgstr "Очікується ширина > 0 і висота > 0" + +msgid "UI is not attached for channel" +msgstr "Інтерфейс користувача не під’єднано до каналу" + +msgid "rgb must be a Boolean" +msgstr "rgb має бути Boolean" + +msgid "popupmenu_external must be a Boolean" +msgstr "popupmenu_external має бути Boolean" + +msgid "No such ui option" +msgstr "Немає такої опції інтерфейсу користувача" + +msgid "Failed to evaluate expression" +msgstr "Не вдалося обчислити вираз" + +msgid "Function called with too many arguments." +msgstr "Функцію викликано із завеликою кількістю аргументів." + +msgid "Error calling function." +msgstr "Помилка виклику функції." + +msgid "String length is too high" +msgstr "Довжина тексту завелика" + +msgid "Directory string is too long" +msgstr "Назва каталогу завелика" + +msgid "Failed to change directory" +msgstr "Не вдалося змінити каталог" + +#, c-format +msgid "Failed to switch to buffer %d" +msgstr "Не вдалося перемкнутися до буфера %d" + +#, c-format +msgid "Failed to switch to window %d" +msgstr "Не вдалося перемкнутися до вікна %d" + +#, c-format +msgid "Failed to switch to tabpage %d" +msgstr "Не вдалося перемкнутися до вкладки %d" + +msgid "All items in calls array must be arrays" +msgstr "Всі елементи масиву calls мають бути масивами" + +msgid "All items in calls array must be arrays of size 2" +msgstr "Всі елементи в масиві calls мають бути масивами довжиною 2" + +msgid "name must be String" +msgstr "Назва має бути String" + +msgid "args must be Array" +msgstr "args має бути Array" + +msgid "Argument \"pos\" must be a [row, col] array" +msgstr "Аргумент «pos» має бути масивом [ряд, ст]" + +msgid "Cursor position outside buffer" +msgstr "Положення курсора поза буфером" + +msgid "Height value outside range" +msgstr "Значення висоти поза межами" + +msgid "Width value outside range" +msgstr "Значення ширини поза межами" msgid "[Location List]" msgstr "[Список місць]" @@ -78,14 +262,9 @@ msgstr "E90: Не можу вивантажити останній буфер" msgid "E84: No modified buffer found" msgstr "E84: Жоден буфер не змінено" -#. back where we started, didn't find anything. msgid "E85: There is no listed buffer" msgstr "E85: У списку немає буферів" -#, c-format -msgid "E86: Buffer %<PRId64> does not exist" -msgstr "E86: Буфера %<PRId64> немає" - msgid "E87: Cannot go beyond last buffer" msgstr "E87: Це вже останній буфер" @@ -93,11 +272,14 @@ msgid "E88: Cannot go before first buffer" msgstr "E88: Це вже найперший буфер" #, c-format +msgid "E89: %s will be killed(add ! to override)" +msgstr "E89: «%s» буде вбито(! щоб не зважати)" + +#, c-format msgid "" "E89: No write since last change for buffer %<PRId64> (add ! to override)" msgstr "E89: Буфер %<PRId64> має зміни (! щоб не зважати)" -#. wrap around (may cause duplicates) msgid "W14: Warning: List of file names overflow" msgstr "W14: Обережно: Список назв файлів переповнено" @@ -153,7 +335,6 @@ msgstr "рядок %<PRId64> з %<PRId64> --%d%%-- колонка " msgid "[No Name]" msgstr "[Без назви]" -#. must be a help buffer msgid "help" msgstr "допомога" @@ -172,13 +353,6 @@ msgstr "Знизу" msgid "Top" msgstr "Вгорі" -msgid "" -"\n" -"# Buffer list:\n" -msgstr "" -"\n" -"# Список буферів:\n" - msgid "[Scratch]" msgstr "[З нуля]" @@ -265,7 +439,6 @@ msgstr "E791: Елемент розкладки порожній" msgid " Keyword completion (^N^P)" msgstr " Доповнення ключових слів (^N^P)" -#. ctrl_x_mode == 0, ^P/^N compl. msgid " ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" msgstr " Режим ^X (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" @@ -276,7 +449,7 @@ msgid " File name completion (^F^N^P)" msgstr " Доповнення назви файлу (^F^N^P)" msgid " Tag completion (^]^N^P)" -msgstr " Доповнення теґів (^]^N^P)" +msgstr " Доповнення з міток (^]^N^P)" msgid " Path pattern completion (^N^P)" msgstr " Доповнення шляху за зразком (^N^P)" @@ -308,7 +481,6 @@ msgstr " Доповнення місцевих ключових слів (^N^P)" msgid "Hit end of paragraph" msgstr "Трапився кінець параграфа" -# msgstr "E443: " msgid "E839: Completion function changed window" msgstr "E839: Функція доповнення змінила вікно" @@ -341,10 +513,6 @@ msgstr "Пошук серед теґів." msgid " Adding" msgstr " Додається" -#. showmode might reset the internal line pointers, so it must -#. * be called before line = ml_get(), or when this address is no -#. * longer needed. -- Acevedo. -#. msgid "-- Searching..." msgstr "-- Пошук..." @@ -365,7 +533,6 @@ msgstr "збіг %d з %d" msgid "match %d" msgstr "збіг %d" -# msgstr "E17: " msgid "E18: Unexpected characters in :let" msgstr "E18: Неочікувані символи у :let" @@ -391,13 +558,15 @@ msgstr "E712: Аргумент у %s має бути списком чи сло msgid "E713: Cannot use empty key for Dictionary" msgstr "E713: Ключ словника не може бути порожнім" -# msgstr "E396: " msgid "E714: List required" msgstr "E714: Потрібен список" msgid "E715: Dictionary required" msgstr "E715: Потрібен словник" +msgid "E114: String required" +msgstr "E114: Потрібен String" + #, c-format msgid "E118: Too many arguments for function: %s" msgstr "E118: Забагато аргументів для функції: %s" @@ -431,7 +600,6 @@ msgstr "E130: Невідома функція: %s" msgid "E461: Illegal variable name: %s" msgstr "E461: Неприпустима назва змінної: %s" -# msgstr "E373: " msgid "E806: using Float as a String" msgstr "E806: Float вжито як String" @@ -444,7 +612,6 @@ msgstr "E688: Цілей більше, ніж елементів списку" msgid "Double ; in list of variables" msgstr "Друга ; у списку змінних" -# msgstr "E235: " #, c-format msgid "E738: Can't list variables for %s" msgstr "E738: Не можна перерахувати змінні у %s" @@ -484,7 +651,7 @@ msgstr "E109: Бракує ':' після '?'" msgid "E691: Can only compare List with List" msgstr "E691: Список можна порівняти тільки зі списком" -msgid "E692: Invalid operation for Lists" +msgid "E692: Invalid operation for List" msgstr "E692: Некоректна операція над списком" msgid "E735: Can only compare Dictionary with Dictionary" @@ -508,6 +675,9 @@ msgstr "E110: Пропущено ')'" msgid "E695: Cannot index a Funcref" msgstr "E695: Функція не має індексації" +msgid "E909: Cannot index a special variable" +msgstr "E909: Спеціальна змінна не має індексації" + #, c-format msgid "E112: Option name missing: %s" msgstr "E112: Бракує назви опції: %s" @@ -524,7 +694,6 @@ msgstr "E114: Бракує лапки: %s" msgid "E115: Missing quote: %s" msgstr "E115: Бракує лапки: %s" -# msgstr "E404: " #, c-format msgid "E696: Missing comma in List: %s" msgstr "E696: Бракує коми у списку: %s" @@ -533,7 +702,16 @@ msgstr "E696: Бракує коми у списку: %s" msgid "E697: Missing end of List ']': %s" msgstr "E697: Немає кінцівки списку ']': %s" -# msgstr "E235: " +msgid "Not enough memory to set references, garbage collection aborted!" +msgstr "Недостатньо пам’яті для встановлення посилань, збирання сміття припинено!" + +msgid "Argument is not a function or function name" +msgstr "Аргумент не функція чи назва функції" + +#, c-format +msgid "Function %s doesn't exist" +msgstr "Функції «%s» немає" + #, c-format msgid "E720: Missing colon in Dictionary: %s" msgstr "E720: Бракує двокрапки у словнику: %s" @@ -542,7 +720,6 @@ msgstr "E720: Бракує двокрапки у словнику: %s" msgid "E721: Duplicate key in Dictionary: \"%s\"" msgstr "E721: Повторення ключа в словнику: «%s»" -# msgstr "E235: " #, c-format msgid "E722: Missing comma in Dictionary: %s" msgstr "E722: Бракує коми у словнику: %s" @@ -551,10 +728,6 @@ msgstr "E722: Бракує коми у словнику: %s" msgid "E723: Missing end of Dictionary '}': %s" msgstr "E723: Немає кінцівки словника '}': %s" -# msgstr "E21: " -msgid "E724: variable nested too deep for displaying" -msgstr "E724: У змінній забагато вкладень щоб її показати" - #, c-format msgid "E740: Too many arguments for function %s" msgstr "E740: Забагато аргументів для функції %s" @@ -582,34 +755,32 @@ msgstr "E725: Виклик dict-функції без словника: %s" msgid "E808: Number or Float required" msgstr "E808: Треба вказати Number чи Float" -# msgstr "E14: " +#, c-format +msgid "Error converting the call result: %s" +msgstr "Не вдалося перетворити результат виклику: %s" + msgid "add() argument" msgstr "аргумент add()" msgid "E699: Too many arguments" msgstr "E699: Забагато аргументів" -# msgstr "E327: " msgid "E785: complete() can only be used in Insert mode" msgstr "E785: complete() можна вживати тільки в режимі вставки" msgid "&Ok" msgstr "&O:Гаразд" -# msgstr "E226: " +msgid "extend() argument" +msgstr "аргумент extend()" + #, c-format msgid "E737: Key already exists: %s" msgstr "E737: Ключ вже існує: %s" -# msgstr "E14: " -msgid "extend() argument" -msgstr "аргумент extend()" - -# msgstr "E14: " msgid "map() argument" msgstr "аргумент map()" -# msgstr "E14: " msgid "filter() argument" msgstr "аргумент filter()" @@ -621,21 +792,60 @@ msgstr "+-%s%3ld рядків: " msgid "E700: Unknown function: %s" msgstr "E700: Невідома функція: %s" +msgid "E5000: Cannot find tab number." +msgstr "E5000: Не можна знайти номер вкладки." + +msgid "E5001: Higher scope cannot be -1 if lower scope is >= 0." +msgstr "E5001: Вища область не може бути -1, якщо нижча область >= 0." + +msgid "E5002: Cannot find window number." +msgstr "E5002: Неможливо знайти номер вікна." + +msgid "5000: Cannot find tab number." +msgstr "5000: Не можна знайти номер вкладки." + msgid "called inputrestore() more often than inputsave()" msgstr "Виклики до inputrestore() частіше, ніж до inputsave()" -# msgstr "E14: " msgid "insert() argument" msgstr "аргумент insert()" -# msgstr "E406: " msgid "E786: Range not allowed" msgstr "E786: Інтервал не дозволено" -# msgstr "E177: " +msgid "Invalid stream on rpc job, use jobclose(id, 'rpc')" +msgstr "Некоректний потік на завданні rpc, вживайте jobclose(id, 'rpc')" + +msgid "Invalid job stream: Not an rpc job" +msgstr "Некоректний потік завдання: Не є завданням rpc" + +#, c-format +msgid "Invalid job stream \"%s\"" +msgstr "Некоректний потік завдання «%s»" + +msgid "Can't send data to the job: stdin is closed" +msgstr "Неможливо надіслати дані завданню: вхідний потік закрито" + +msgid "Can't send raw data to rpc channel" +msgstr "Неможливо надіслати дані у канал завдання" + +msgid "Argument vector must have at least one item" +msgstr "Вектор аргументів має мати щонайменше один елемент" + +msgid "E474: Failed to convert list to string" +msgstr "E474: Не вдалося перетворити список у текст" + +#, c-format +msgid "E474: Failed to parse %.*s" +msgstr "E474: Не вдалося розібрати %.*s" + msgid "E701: Invalid type for len()" msgstr "E701: Некоректний тип для len()" +#, c-format +msgid "msgpackdump() argument, index %i" +msgstr "аргумент msgpackdump(), індекс %i" + msgid "E726: Stride is zero" msgstr "E726: Крок нульовий" @@ -645,38 +855,32 @@ msgstr "E727: Початок за кінцем" msgid "<empty>" msgstr "<нічого>" -# msgstr "E14: " msgid "remove() argument" msgstr "аргумент remove()" msgid "E655: Too many symbolic links (cycle?)" msgstr "E655: Забагато символьних посилань (цикл?)" -# msgstr "E14: " msgid "reverse() argument" msgstr "аргумент reverse()" -# msgstr "E14: " msgid "sort() argument" msgstr "аргумент sort()" -# msgstr "E14: " msgid "uniq() argument" msgstr "аргумент uniq()" -# msgstr "E364: " msgid "E702: Sort compare function failed" msgstr "E702: Помилка у функції порівняння" -# msgstr "E364: " msgid "E882: Uniq compare function failed" msgstr "E882: Помилка у функції порівняння uniq" msgid "(Invalid)" msgstr "(Неможливо)" -msgid "E677: Error writing temp file" -msgstr "E677: Не вдалося записати тимчасовий файл" +msgid "Can only call this function in an unmodified buffer" +msgstr "Цю функцію можна викликати тільки у незміненому буфері" msgid "E805: Using a Float as a Number" msgstr "E805: Float вжито як Number" @@ -690,19 +894,29 @@ msgstr "E745: List вжито як Number" msgid "E728: Using a Dictionary as a Number" msgstr "E728: Dictionary вжито як Number" +msgid "E891: Using a Funcref as a Float" +msgstr "E891: Funcref вжито як Float" + +msgid "E892: Using a String as a Float" +msgstr "E892: String вжито як Float" + +msgid "E893: Using a List as a Float" +msgstr "E893: List вжито як Float" + +msgid "E894: Using a Dictionary as a Float" +msgstr "E894: Dictionary вжито як Float" + msgid "E729: using Funcref as a String" msgstr "E729: Funcref вжито як String" -# msgstr "E373: " msgid "E730: using List as a String" msgstr "E730: List вжито як String" msgid "E731: using Dictionary as a String" msgstr "E731: Dictionary вжито як String" -#, c-format -msgid "E706: Variable type mismatch for: %s" -msgstr "E706: Неправильний тип змінної: %s" +msgid "E908: using an invalid value as a String" +msgstr "E908: некоректне значення вжито як String" #, c-format msgid "E795: Cannot delete variable %s" @@ -769,18 +983,20 @@ msgstr "E129: Не вказано назву функції" #, c-format msgid "E128: Function name must start with a capital or \"s:\": %s" -msgstr "" -"E128: Назва функції має починатися з великої літери або \"s:\": %s" +msgstr "E128: Назва функції має починатися з великої літери або \"s:\": %s" #, c-format msgid "E884: Function name cannot contain a colon: %s" -msgstr "" -"E884: Назва функції не може містити двокрапку: %s" +msgstr "E884: Назва функції не може містити двокрапку: %s" #, c-format msgid "E131: Cannot delete function %s: It is in use" msgstr "E131: Не вдалося знищити функцію %s: Вона використовується" +#, c-format +msgid "Cannot delete function %s: It is being used internally" +msgstr "Не вдалося знищити функцію %s: Вона використовується" + msgid "E132: Function call depth is higher than 'maxfuncdepth'" msgstr "E132: Глибина викликів функції перевищує 'maxfuncdepth'" @@ -809,13 +1025,6 @@ msgstr "E133: :return поза межами функції" msgid "" "\n" -"# global variables:\n" -msgstr "" -"\n" -"# глобальні змінні:\n" - -msgid "" -"\n" "\tLast set from " msgstr "" "\n" @@ -825,90 +1034,275 @@ msgid "No old files" msgstr "Жодного старого файлу" #, c-format -msgid "<%s>%s%s %d, Hex %02x, Octal %03o" -msgstr "<%s>%s%s %d, шіст %02x, віс %03o" +msgid "E474: Expected comma before list item: %s" +msgstr "E474: Очікується кома перед елементом списка: %s" #, c-format -msgid "> %d, Hex %04x, Octal %o" -msgstr "> %d, шіст %04x, віс %o" +msgid "E474: Expected colon before dictionary value: %s" +msgstr "E474: Очікується двокрапка перед значенням у словнику: %s" #, c-format -msgid "> %d, Hex %08x, Octal %o" -msgstr "> %d, шіст %08x, віс %o" +msgid "E474: Expected string key: %s" +msgstr "E474: Очікується текстовий ключ: %s" -msgid "E134: Move lines into themselves" -msgstr "E134: Неможливо перемістити рядки самі в себе" +#, c-format +msgid "E474: Expected comma before dictionary key: %s" +msgstr "E474: Очікується кома перед словниковим ключем: %s" -msgid "1 line moved" -msgstr "Переміщено один рядок" +#, c-format +msgid "E474: Unfinished escape sequence: %.*s" +msgstr "E474: Не закінчено послідовність escape: %.*s" #, c-format -msgid "%<PRId64> lines moved" -msgstr "Переміщено %<PRId64> рядки(ів)" +msgid "E474: Unfinished unicode escape sequence: %.*s" +msgstr "E474: Не закінчено escape-послідовність юнікоду: %.*s" #, c-format -msgid "%<PRId64> lines filtered" -msgstr "Відфільтровано %<PRId64> рядки(ів)" +msgid "E474: Expected four hex digits after \\u: %.*s" +msgstr "E474: Очікується чотири шістнадцяткові цифри після \\u: %.*s" -msgid "E135: *Filter* Autocommands must not change current buffer" -msgstr "E135: Автокоманди *Filter* не повинні змінювати поточний буфер" +#, c-format +msgid "E474: Unknown escape sequence: %.*s" +msgstr "E474: Невідома послідовність escape: %.*s" -msgid "[No write since last change]\n" -msgstr "[Зміни не записано]\n" +#, c-format +msgid "E474: ASCII control characters cannot be present inside string: %.*s" +msgstr "E474: Керуючі символи ASCII не можуть бути всередині тексту: %.*s" #, c-format -msgid "%sviminfo: %s in line: " -msgstr "%sviminfo: %s в рядку: " +msgid "E474: Only UTF-8 strings allowed: %.*s" +msgstr "E474: Дозволено тільки текст UTF-8: %.*s" -msgid "E136: viminfo: Too many errors, skipping rest of file" -msgstr "E136: viminfo: Забагато помилок, решта файлу буде пропущено" +#, c-format +msgid "" +"E474: Only UTF-8 code points up to U+10FFFF are allowed to appear unescaped: " +"%.*s" +msgstr "" +"E474: Тільки точки коду UTF-8 до U+10FFFF можуть бути присутні без escape: " +"%.*s" #, c-format -msgid "Reading viminfo file \"%s\"%s%s%s" -msgstr "Зчитується файл viminfo: «%s»%s%s%s" +msgid "E474: Expected string end: %.*s" +msgstr "E474: Очікувався кінець рядка: %.*s" -msgid " info" -msgstr " інформація" +#, c-format +msgid "E474: Failed to convert string \"%.*s\" from UTF-8" +msgstr "E474: Не вдалося перетворити текст «%.*s» з UTF-8" -msgid " marks" -msgstr " позначки" +#, c-format +msgid "E474: Leading zeroes are not allowed: %.*s" +msgstr "E474: Початкові нулі не дозволено: %.*s" -msgid " oldfiles" -msgstr " старі файли" +#, c-format +msgid "E474: Missing number after minus sign: %.*s" +msgstr "E474: Бракує числа після знаку: %.*s" -msgid " FAILED" -msgstr " НЕ ВДАЛОСЯ" +#, c-format +msgid "E474: Missing number after decimal dot: %.*s" +msgstr "E474: Бракує числа після десяткової крапки: %.*s" + +#, c-format +msgid "E474: Missing exponent: %.*s" +msgstr "E474: Бракує експоненти: %.*s" + +#, c-format +msgid "" +"E685: internal error: while converting number \"%.*s\" to float string2float " +"consumed %zu bytes in place of %zu" +msgstr "" +"E685: внутрішня помилка: при перетворенні числа «%.*s» у float, string2float " +"спожив %zu байтів замість %zu" + +#, c-format +msgid "" +"E685: internal error: while converting number \"%.*s\" to integer vim_str2nr " +"consumed %i bytes in place of %zu" +msgstr "" +"E685: внутрішня помилка: при перетворенні числа «%.*s» у ціле, vim_str2nr " +"спожив %i байтів замість %zu" + +msgid "E474: Attempt to decode a blank string" +msgstr "E474: Спроба декодування порожнього тексту" + +#, c-format +msgid "E474: No container to close: %.*s" +msgstr "E474: Немає контейнера щоб закрити: %.*s" + +#, c-format +msgid "E474: Closing list with curly bracket: %.*s" +msgstr "E474: Закривається список фігурною дужкою: %.*s" + +#, c-format +msgid "E474: Closing dictionary with square bracket: %.*s" +msgstr "E474: Закриття словника квадратною дужкою: %.*s" + +#, c-format +msgid "E474: Trailing comma: %.*s" +msgstr "E474: Зайва кома: %.*s" + +#, c-format +msgid "E474: Expected value after colon: %.*s" +msgstr "E474: Очікується значення після двокрапки: %.*s" + +#, c-format +msgid "E474: Expected value: %.*s" +msgstr "E474: Очікується значення: %.*s" + +#, c-format +msgid "E474: Comma not inside container: %.*s" +msgstr "E474: Кома поза контейнером: %.*s" + +#, c-format +msgid "E474: Duplicate comma: %.*s" +msgstr "E474: Зайва кома: %.*s" + +#, c-format +msgid "E474: Comma after colon: %.*s" +msgstr "E474: Кома після двокрапки: %.*s" + +#, c-format +msgid "E474: Using comma in place of colon: %.*s" +msgstr "E474: Кома замість двокрапки: %.*s" + +#, c-format +msgid "E474: Leading comma: %.*s" +msgstr "E474: Кома на початку: %.*s" + +#, c-format +msgid "E474: Colon not inside container: %.*s" +msgstr "E474: Двокрапка не всередині контейнера: %.*s" + +#, c-format +msgid "E474: Using colon not in dictionary: %.*s" +msgstr "E474: Двокрапка не в словнику: %.*s" + +#, c-format +msgid "E474: Unexpected colon: %.*s" +msgstr "E474: Несподівана двокрапка: %.*s" + +#, c-format +msgid "E474: Colon after comma: %.*s" +msgstr "E474: Двокрапка після коми: %.*s" + +#, c-format +msgid "E474: Duplicate colon: %.*s" +msgstr "E474: Зайва двокрапка: %.*s" + +#, c-format +msgid "E474: Expected null: %.*s" +msgstr "E474: Несподіваний null: %.*s" + +#, c-format +msgid "E474: Expected true: %.*s" +msgstr "E474: Очікується true: %.*s" -#. avoid a wait_return for this message, it's annoying #, c-format -msgid "E137: Viminfo file is not writable: %s" -msgstr "E137: Не дозволено запис у файл viminfo: %s" +msgid "E474: Expected false: %.*s" +msgstr "E474: Очікується false: %.*s" #, c-format -msgid "E138: Can't write viminfo file %s!" -msgstr "E138: Не вдалося записати файл viminfo %s!" +msgid "E474: Unidentified byte: %.*s" +msgstr "E474: Невизначений байт: %.*s" #, c-format -msgid "Writing viminfo file \"%s\"" -msgstr "Записується файл viminfo «%s»" +msgid "E474: Trailing characters: %.*s" +msgstr "E474: Надлишкові символи: %.*s" -#. Write the info: #, c-format -msgid "# This viminfo file was generated by Vim %s.\n" -msgstr "# Цей файл автоматично створений Vim %s.\n" +msgid "E474: Unexpected end of input: %.*s" +msgstr "E474: Несподіваний кінець: %.*s" +#, c-format +msgid "key %s" +msgstr "ключ %s" + +#, c-format +msgid "key %s at index %i from special map" +msgstr "ключ %s за індексом %i із спеціальної мапи" + +#, c-format +msgid "index %i" +msgstr "індекс %i" + +msgid "itself" +msgstr "сам себе" + +msgid "E724: unable to correctly dump variable with self-referencing container" +msgstr "E724: не вдалося коректно злити змінну з контейнером, який сам на себе посилається" + +msgid "E474: Unable to represent NaN value in JSON" +msgstr "E474: Неможливо представити значення NaN у JSON" + +msgid "E474: Unable to represent infinity in JSON" +msgstr "E474: Неможливо представити нескінченність у JSON" + +#, c-format +msgid "E474: Failed to convert string \"%.*s\" to UTF-8" +msgstr "E474: Не вдалося перетворити рядок «%.*s» до UTF-8" + +#, c-format msgid "" -"# You may edit it if you're careful!\n" -"\n" +"E474: String \"%.*s\" contains byte that does not start any UTF-8 character" msgstr "" -"# Можете редагувати, але ОБЕРЕЖНО!\n" -"\n" +"E474: Текст \"%.*s\" містить байт, що не починає жодного символу UTF-8" -msgid "# Value of 'encoding' when this file was written\n" -msgstr "# Значення 'encoding' під час створення цього файлу\n" +#, c-format +msgid "" +"E474: UTF-8 string contains code point which belongs to a surrogate pair: " +"%.*s" +msgstr "" +"E474: текст UTF-8 містить точку кодування, яка належить сурогатній парі: " +"%.*s" -msgid "Illegal starting char" -msgstr "Недозволений символ на початку рядка" +msgid "E474: Unable to convert EXT string to JSON" +msgstr "E474: Не вдалося перетворити рядок EXT у JSON" + +#, c-format +msgid "E474: Error while dumping %s, %s: attempt to dump function reference" +msgstr "E474: Помилка при злитті %s, %s: спроба злити посилання на функцію" + +msgid "E474: Invalid key in special dictionary" +msgstr "E474: Неправильний ключ у спеціальному словнику" + +#, c-format +msgid "E951: Error while dumping %s, %s: attempt to dump function reference" +msgstr "E951: Помилка при зливанні %s, %s: спроба злити посилання на функцію" + +#, c-format +msgid "E952: Unable to dump %s: container references itself in %s" +msgstr "E952: Неможливо злити %s: контейнер посилається на самого себе у %s" + +#, c-format +msgid "<%s>%s%s %d, Hex %02x, Octal %03o" +msgstr "<%s>%s%s %d, шіст %02x, віс %03o" + +#, c-format +msgid "> %d, Hex %04x, Octal %o" +msgstr "> %d, шіст %04x, віс %o" + +#, c-format +msgid "> %d, Hex %08x, Octal %o" +msgstr "> %d, шіст %08x, віс %o" + +msgid "E134: Move lines into themselves" +msgstr "E134: Неможливо перемістити рядки самі в себе" + +msgid "1 line moved" +msgstr "Переміщено один рядок" + +#, c-format +msgid "%<PRId64> lines moved" +msgstr "Переміщено %<PRId64> рядки(ів)" + +#, c-format +msgid "%<PRId64> lines filtered" +msgstr "Відфільтровано %<PRId64> рядки(ів)" + +msgid "E135: *Filter* Autocommands must not change current buffer" +msgstr "E135: Автокоманди *Filter* не повинні змінювати поточний буфер" + +msgid "[No write since last change]\n" +msgstr "[Зміни не записано]\n" msgid "Write partial file?" msgstr "Записати частину файлу?" @@ -964,8 +1358,8 @@ msgstr "E143: Автокоманди несподівано знищили но msgid "E144: non-numeric argument to :z" msgstr "E144: нечисловий аргумент для :z" -msgid "E145: Shell commands not allowed in rvim" -msgstr "E145: У rvim не дозволені команди оболонки" +msgid "E145: Shell commands not allowed in restricted mode" +msgstr "E145: У обмеженому режимі не дозволені команди оболонки" msgid "E146: Regular expressions can't be delimited by letters" msgstr "E146: Регулярні вирази не можна розділяти літерами" @@ -977,7 +1371,6 @@ msgstr "Замінити на %s (y/n/a/q/l/^E/^Y)?" msgid "(Interrupted) " msgstr "(Перервано) " -# msgstr "E31: " msgid "1 match" msgstr "Один збіг" @@ -1013,15 +1406,6 @@ msgstr "Зразок знайдено у кожному рядку: %s" msgid "Pattern not found: %s" msgstr "Зразок не знайдено: %s" -msgid "" -"\n" -"# Last Substitute String:\n" -"$" -msgstr "" -"\n" -"# Остання заміна:\n" -"$" - msgid "E478: Don't panic!" msgstr "E478: Без паніки!" @@ -1038,10 +1422,6 @@ msgid "Sorry, help file \"%s\" not found" msgstr "Вибачте, файл допомоги «%s» не знайдено" #, c-format -msgid "E150: Not a directory: %s" -msgstr "E150: Не є каталогом: %s" - -#, c-format msgid "E152: Cannot open %s for writing" msgstr "E152: Не вдалося відкрити %s для запису" @@ -1055,7 +1435,11 @@ msgstr "E670: Мішанина кодувань файлу допомоги дл #, c-format msgid "E154: Duplicate tag \"%s\" in file %s/%s" -msgstr "E154: Повторення теґу «%s» у файлі %s/%s" +msgstr "E154: Повторення мітки «%s» у файлі %s/%s" + +#, c-format +msgid "E150: Not a directory: %s" +msgstr "E150: Не є каталогом: %s" #, c-format msgid "E160: Unknown sign command: %s" @@ -1086,6 +1470,10 @@ msgstr "E158: Некоректна назва буфера: %s" msgid "E157: Invalid sign ID: %<PRId64>" msgstr "E157: Неправильний ID надпису: %<PRId64>" +#, c-format +msgid "E885: Not possible to change sign %s" +msgstr "E885: Неможливо змінити знак %s" + msgid " (not supported)" msgstr " (не підтримується)" @@ -1103,6 +1491,13 @@ msgstr "рядок %<PRId64>: %s" msgid "cmd: %s" msgstr "команда: %s" +msgid "frame is zero" +msgstr "кадр нульовий" + +#, c-format +msgid "frame at highest level: %d" +msgstr "кадр на найвищому рівні: %d" + #, c-format msgid "Breakpoint in \"%s%s\" line %<PRId64>" msgstr "Точка зупинки в «%s%s» рядок %<PRId64>" @@ -1149,7 +1544,6 @@ msgstr "E165: Це вже останній файл" msgid "E666: compiler not supported: %s" msgstr "E666: Компілятор не підтримується: %s" -# msgstr "E195: " #, c-format msgid "Searching for \"%s\" in \"%s\"" msgstr "Пошук «%s» в «%s»" @@ -1159,8 +1553,8 @@ msgid "Searching for \"%s\"" msgstr "Пошук «%s»" #, c-format -msgid "not found in 'runtimepath': \"%s\"" -msgstr "В 'runtimepath' не знайдено «%s»" +msgid "not found in '%s': \"%s\"" +msgstr "не знайдено в '%s': «%s»" #, c-format msgid "Cannot source a directory: \"%s\"" @@ -1189,11 +1583,9 @@ msgstr "закінчено виконання %s" msgid "modeline" msgstr "modeline" -# msgstr "E14: " msgid "--cmd argument" msgstr "--cmd аргумент" -# msgstr "E14: " msgid "-c argument" msgstr "-c аргумент" @@ -1220,8 +1612,6 @@ msgstr "Мова (%s): «%s»" msgid "E197: Cannot set language to \"%s\"" msgstr "E197: Не вдалося встановити мову «%s»" -#. don't redisplay the window -#. don't wait for return msgid "Entering Ex mode. Type \"visual\" to go to Normal mode." msgstr "Режим Ex. Для повернення до нормального режиму виконайте «visual»" @@ -1253,8 +1643,6 @@ msgstr "E493: Інтервал задано навиворіт" msgid "Backwards range given, OK to swap" msgstr "Інтервал задано навиворіт, щоб поміняти місцями — ГАРАЗД" -#. append -#. typed wrong msgid "E494: Use w or w>>" msgstr "E494: Спробуйте w або w>>" @@ -1283,10 +1671,10 @@ msgstr "E174: Команда вже існує, ! щоб замінити її" msgid "" "\n" -" Name Args Range Complete Definition" +" Name Args Address Complete Definition" msgstr "" "\n" -" Назва Арг. Межа Доповнення Визначення" +" Назва Арг. Адреса Доповнення Визначення" msgid "No user-defined commands found" msgstr "Не знайдено команд користувача" @@ -1300,24 +1688,22 @@ msgstr "E176: Неправильна кількість аргументів" msgid "E177: Count cannot be specified twice" msgstr "E177: Лічильник не може бути вказано двічі" -# msgstr "E177: " msgid "E178: Invalid default value for count" msgstr "E178: Неправильне початкове значення лічильника" -# msgstr "E178: " msgid "E179: argument required for -complete" msgstr "E179: для -complete потрібний аргумент" -# msgstr "E180: " +msgid "E179: argument required for -addr" +msgstr "E179: для -addr потрібний аргумент" + #, c-format msgid "E181: Invalid attribute: %s" msgstr "E181: Неправильний атрибут: %s" -# msgstr "E181: " msgid "E182: Invalid command name" msgstr "E182: Неправильна назва команди" -# msgstr "E182: " msgid "E183: User defined commands must start with an uppercase letter" msgstr "E183: Команди користувача повинні починатися з великої літери" @@ -1325,12 +1711,14 @@ msgid "E841: Reserved name, cannot be used for user defined command" msgstr "" "E841: Зарезервована назва, не можна використати для користувацької команди" -# msgstr "E183: " #, c-format msgid "E184: No such user-defined command: %s" msgstr "E184: Команду користувача не знайдено: %s" -# msgstr "E179: " +#, c-format +msgid "E180: Invalid address type value: %s" +msgstr "E180: Неправильне значення типу адреси: %s" + #, c-format msgid "E180: Invalid complete value: %s" msgstr "E180: Неправильне доповнення: %s" @@ -1341,7 +1729,6 @@ msgstr "E468: Аргумент дозволений тільки для кори msgid "E467: Custom completion requires a function argument" msgstr "E467: Користувацьке доповнення вимагає аргумент-функцію" -# msgstr "E184: " #, c-format msgid "E185: Cannot find color scheme '%s'" msgstr "E185: Не вдалося знайти схему кольорів «%s»" @@ -1349,11 +1736,9 @@ msgstr "E185: Не вдалося знайти схему кольорів «%s msgid "Greetings, Vim user!" msgstr "Вітання, користувачу Vim!" -# msgstr "E443: " msgid "E784: Cannot close last tab page" msgstr "E784: Не можна закрити останню вкладку" -# msgstr "E444: " msgid "Already only one tab page" msgstr "Вже й так лише одна вкладка" @@ -1364,48 +1749,29 @@ msgstr "Вкладка %d" msgid "No swap file" msgstr "Немає файлу обміну" -msgid "E747: Cannot change directory, buffer is modified (add ! to override)" -msgstr "E747: Не вдалося змінити каталог, буфер має зміни (! щоб не зважати)" - msgid "E186: No previous directory" msgstr "E186: Це вже найперший каталог" -# msgstr "E186: " msgid "E187: Unknown" msgstr "E187: Невідомо" msgid "E465: :winsize requires two number arguments" msgstr "E465: :winsize вимагає два числових аргументи" -msgid "E188: Obtaining window position not implemented for this platform" -msgstr "E188: Не можна отримати позицію вікна на цій платформі" - -msgid "E466: :winpos requires two number arguments" -msgstr "E466: :winpos вимагає два числових аргументи" - -#, c-format -msgid "E739: Cannot create directory: %s" -msgstr "E739: Не вдалося створити каталог: %s" - #, c-format msgid "E189: \"%s\" exists (add ! to override)" msgstr "E189: Файл «%s» існує (! щоб не зважати)" -# msgstr "E189: " #, c-format msgid "E190: Cannot open \"%s\" for writing" msgstr "E190: Не вдалося відкрити «%s» для запису" -# msgstr "E190: " -#. set mark msgid "E191: Argument must be a letter or forward/backward quote" msgstr "E191: Аргумент має бути літерою, ` або '" -# msgstr "E191: " msgid "E192: Recursive use of :normal too deep" msgstr "E192: Забагато вкладених :normal" -# msgstr "E193: " msgid "E194: No alternate file name to substitute for '#'" msgstr "E194: Немає назви вторинного файлу для заміни '#'" @@ -1431,13 +1797,9 @@ msgstr "E499: Назва файлу для '%' чи '#' порожня, прац msgid "E500: Evaluates to an empty string" msgstr "E500: Результат — порожній рядок" -msgid "E195: Cannot open viminfo file for reading" -msgstr "E195: Не вдалося прочитати файл viminfo" - msgid "E608: Cannot :throw exceptions with 'Vim' prefix" msgstr "E608: Не можна викидати (:throw) винятки з префіксом 'Vim'" -#. always scroll up, don't overwrite #, c-format msgid "Exception thrown: %s" msgstr "Виняткова ситуація: %s" @@ -1454,7 +1816,6 @@ msgstr "Виняток скинуто: %s" msgid "%s, line %<PRId64>" msgstr "%s, рядок %<PRId64>" -#. always scroll up, don't overwrite #, c-format msgid "Exception caught: %s" msgstr "Спіймано виняткову ситуацію: %s" @@ -1477,11 +1838,9 @@ msgstr "Виняток" msgid "Error and interrupt" msgstr "Помилка, перервано" -# msgstr "E231: " msgid "Error" msgstr "Помилка" -#. if (pending & CSTP_INTERRUPT) msgid "Interrupt" msgstr "Перервано" @@ -1524,15 +1883,12 @@ msgstr "E601: Забагато вкладених :try" msgid "E603: :catch without :try" msgstr "E603: :catch без :try" -#. Give up for a ":catch" after ":finally" and ignore it. -#. * Just parse. msgid "E604: :catch after :finally" msgstr "E604: :catch після :finally" msgid "E606: :finally without :try" msgstr "E606: :finally без :try" -#. Give up for a multiple ":finally" and ignore it. msgid "E607: multiple :finally" msgstr "E607: Не одне :finally" @@ -1548,7 +1904,6 @@ msgstr "E788: Зараз не можна редагувати інший буф msgid "E811: Not allowed to change buffer information now" msgstr "E811: Зараз не можна змінювати інформацію буфера" -# msgstr "E197: " msgid "tagname" msgstr "назва теґу" @@ -1558,26 +1913,6 @@ msgstr " тип файлу\n" msgid "'history' option is zero" msgstr "Опція 'history' порожня" -#, c-format -msgid "" -"\n" -"# %s History (newest to oldest):\n" -msgstr "" -"\n" -"# Попередні %s (від найновіших):\n" - -msgid "Command Line" -msgstr "команди" - -msgid "Search String" -msgstr "шукані рядки" - -msgid "Expression" -msgstr "вирази" - -msgid "Input Line" -msgstr "введені рядки" - msgid "E198: cmd_pchar beyond the command length" msgstr "E198: cmd_pchar поза межами команди" @@ -1595,22 +1930,18 @@ msgstr "" "E343: Некоректний шлях: `**[число]' повинне бути наприкінці шляху або перед " "'%s'." -# msgstr "E343: " #, c-format msgid "E344: Can't find directory \"%s\" in cdpath" msgstr "E344: Не вдалося знайти каталог «%s» у cdpath" -# msgstr "E344: " #, c-format msgid "E345: Can't find file \"%s\" in path" msgstr "E345: Не вдалося знайти файл «%s» у path" -# msgstr "E345: " #, c-format msgid "E346: No more directory \"%s\" found in cdpath" msgstr "E346: У cdpath немає більше каталогу «%s»" -# msgstr "E346: " #, c-format msgid "E347: No more file \"%s\" found in path" msgstr "E347: У шляху пошуку більше немає файлів «%s»" @@ -1618,7 +1949,6 @@ msgstr "E347: У шляху пошуку більше немає файлів « msgid "E812: Autocommands changed buffer or buffer name" msgstr "E812: Автокоманди змінили буфер чи його назву" -# msgstr "E199: " msgid "Illegal file name" msgstr "Недозволена назва файлу" @@ -1643,32 +1973,24 @@ msgstr "[Відмовлено]" msgid "E200: *ReadPre autocommands made the file unreadable" msgstr "E200: Автокоманди *ReadPre унеможливили читання файлу" -# msgstr "E200: " msgid "E201: *ReadPre autocommands must not change current buffer" msgstr "E201: Автокоманди *ReadPre не повинні змінювати цей буфер" -# msgstr "E201: " msgid "Nvim: Reading from stdin...\n" msgstr "Vim: Читається з stdin...\n" -#. Re-opening the original file failed! msgid "E202: Conversion made file unreadable!" msgstr "E202: Конвертація унеможливила читання файлу!" -# msgstr "E202: " -#. fifo or socket msgid "[fifo/socket]" msgstr "[канал/сокет]" -#. fifo msgid "[fifo]" msgstr "[канал]" -#. or socket msgid "[socket]" msgstr "[сокет]" -#. or character special msgid "[character special]" msgstr "[спец. символьний]" @@ -1704,7 +2026,6 @@ msgstr "Конвертація з 'charconvert' не вдалася" msgid "can't read output of 'charconvert'" msgstr "не вдалося прочитати вивід 'charconvert'" -# msgstr "E217: " msgid "E676: No matching autocommands for acwrite buffer" msgstr "E676: Немає відповідних автокоманд" @@ -1737,7 +2058,6 @@ msgstr "E509: Не вдалося створити резервну копію ( msgid "E510: Can't make backup file (add ! to override)" msgstr "E510: Не вдалося зробити резервну копію (! щоб не зважати)" -#. Can't write without a tempfile! msgid "E214: Can't find temp file for writing" msgstr "E214: Не вдалося підшукати тимчасовий файл для запису" @@ -1814,24 +2134,24 @@ msgstr "" msgid "don't quit the editor until the file is successfully written!" msgstr "Не виходьте з редактора, доки файл не записано!" -msgid "[dos]" -msgstr "[dos]" - msgid "[dos format]" msgstr "[формат dos]" -msgid "[mac]" -msgstr "[mac]" +msgid "[dos]" +msgstr "[dos]" msgid "[mac format]" msgstr "[формат mac]" -msgid "[unix]" -msgstr "[unix]" +msgid "[mac]" +msgstr "[mac]" msgid "[unix format]" msgstr "[формат unix]" +msgid "[unix]" +msgstr "[unix]" + msgid "1 line, " msgstr "один рядок, " @@ -1846,15 +2166,12 @@ msgstr "один символ" msgid "%<PRId64> characters" msgstr "%<PRId64> символів" -msgid "[noeol]" -msgstr "[noeol]" - msgid "[Incomplete last line]" msgstr "[Неповний останній рядок]" -#. don't overwrite messages here -#. must give this prompt -#. don't use emsg() here, don't want to flush the buffers +msgid "[noeol]" +msgstr "[noeol]" + msgid "WARNING: The file has been changed since reading it!!!" msgstr "ЗАСТЕРЕЖЕННЯ: Файл змінився з часу останнього читання!!!" @@ -1932,7 +2249,6 @@ msgstr "--Знищено--" msgid "auto-removing autocommand: %s <buffer=%d>" msgstr "Автоматичне знищення автокоманди: %s <буфер=%d>" -#. the group doesn't exist #, c-format msgid "E367: No such group: \"%s\"" msgstr "E367: Немає такої групи: «%s»" @@ -1941,18 +2257,14 @@ msgstr "E367: Немає такої групи: «%s»" msgid "E215: Illegal character after *: %s" msgstr "E215: Недозволений символ після *: %s" -# msgstr "E215: " #, c-format msgid "E216: No such event: %s" msgstr "E216: Немає такої події: %s" -# msgstr "E215: " #, c-format msgid "E216: No such group or event: %s" msgstr "E216: Немає такої групи чи події: %s" -# msgstr "E216: " -#. Highlight title msgid "" "\n" "--- Auto-Commands ---" @@ -1967,14 +2279,12 @@ msgstr "E680: <буфер=%d>: некоректний номер буфера " msgid "E217: Can't execute autocommands for ALL events" msgstr "E217: Не можу виконувати автокоманди для УСІХ подій" -# msgstr "E217: " msgid "No matching autocommands" msgstr "Немає відповідних автокоманд" msgid "E218: autocommand nesting too deep" msgstr "E218: Забагато вкладених автокоманд" -# msgstr "E218: " #, c-format msgid "%s Auto commands for \"%s\"" msgstr "Автокоманди %s для «%s»" @@ -1990,15 +2300,12 @@ msgstr "автокоманда %s" msgid "E219: Missing {." msgstr "E219: Бракує {." -# msgstr "E219: " msgid "E220: Missing }." msgstr "E220: Бракує }." -# msgstr "E220: " msgid "E490: No fold found" msgstr "E490: Згорток не знайдено" -# msgstr "E349: " msgid "E350: Cannot create fold with current 'foldmethod'" msgstr "E350: Не вдалося створити згортку методом 'foldmethod'" @@ -2009,34 +2316,28 @@ msgstr "E351: Не вдалося знищити згортку методом ' msgid "+--%3ld lines folded " msgstr "+-- згорнуто %3ld рядків " -#. buffer has already been read msgid "E222: Add to read buffer" msgstr "E222: Додати до буфера читання" msgid "E223: recursive mapping" msgstr "E223: Заміна рекурсивна" -# msgstr "E223: " #, c-format msgid "E224: global abbreviation already exists for %s" msgstr "E224: Загальне скорочення для %s вже існує" -# msgstr "E224: " #, c-format msgid "E225: global mapping already exists for %s" msgstr "E225: Загальна заміна для %s вже існує" -# msgstr "E225: " #, c-format msgid "E226: abbreviation already exists for %s" msgstr "E226: Вже є скорочення для %s" -# msgstr "E226: " #, c-format msgid "E227: mapping already exists for %s" msgstr "E227: Вже є заміна для %s" -# msgstr "E227: " msgid "No abbreviation found" msgstr "Скорочення не знайдено" @@ -2046,33 +2347,30 @@ msgstr "Заміни не знайдено" msgid "E228: makemap: Illegal mode" msgstr "E228: makemap: Неприпустимий режим" -# msgstr "E447: " -#. key value of 'cedit' option -#. type of cmdline window or 0 -#. result of cmdline window or 0 msgid "--No lines in buffer--" msgstr "--Жодного рядка--" -#. -#. * The error messages that can be shared are included here. -#. * Excluded are errors that are only used once and debugging messages. -#. msgid "E470: Command aborted" msgstr "E470: Команду перервано" +msgid "E905: Cannot set this option after startup" +msgstr "E905: Не вдалося встановити цю опцію після запуску" + +msgid "E903: Could not spawn API job" +msgstr "E903: Не вдалося запустити задачу" + msgid "E471: Argument required" msgstr "E471: Необхідно вказати аргумент" msgid "E10: \\ should be followed by /, ? or &" msgstr "E10: За \\ має йти /, ? або &" -# msgstr "E10: " msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits" msgstr "E11: Неприпустимо у вікні команд, <CR> виконує, CTRL-C виходить" msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search" msgstr "" -"E12: Команда не дозволена у exrc/vimrc у пошуку поточного каталогу чи теґу" +"E12: Команда не дозволена у exrc/vimrc у пошуку поточного каталогу чи мітки" msgid "E171: Missing :endif" msgstr "E171: Бракує :endif" @@ -2107,7 +2405,6 @@ msgstr "Перервано" msgid "E14: Invalid address" msgstr "E14: Неправильна адреса" -# msgstr "E14: " msgid "E474: Invalid argument" msgstr "E474: Некоректний аргумент" @@ -2119,11 +2416,9 @@ msgstr "E475: Некоректний аргумент: %s" msgid "E15: Invalid expression: %s" msgstr "E15: Неправильний вираз: %s" -# msgstr "E15: " msgid "E16: Invalid range" msgstr "E16: Неправильні межі" -# msgstr "E16: " msgid "E476: Invalid command" msgstr "E476: Некоректна команда" @@ -2138,62 +2433,57 @@ msgid "E901: Job table is full" msgstr "E901: Таблиця завдань заповнена" #, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "E902: \"%s\" не можна виконати" +msgid "E903: Process for command \"%s\" could not be spawned" +msgstr "E903: Не вдалося запустити процес для команди «%s»" + +msgid "E904: Job is not connected to a pty" +msgstr "E904: Завдання не приєднане до pty" #, c-format msgid "E364: Library call failed for \"%s()\"" msgstr "E364: Бібліотечний виклик до «%s()» не вдався" -# msgstr "E18: " +#, c-format +msgid "E739: Cannot create directory %s: %s" +msgstr "E739: Не вдалося створити каталог %s: %s" + msgid "E19: Mark has invalid line number" msgstr "E19: У помітки некоректний номер рядка" -# msgstr "E19: " msgid "E20: Mark not set" msgstr "E20: Помітку не встановлено" -# msgstr "E20: " msgid "E21: Cannot make changes, 'modifiable' is off" msgstr "E21: Зміни не дозволені: вимкнено 'modifiable'" -# msgstr "E21: " msgid "E22: Scripts nested too deep" msgstr "E22: Забагато вкладених скриптів" -# msgstr "E22: " msgid "E23: No alternate file" msgstr "E23: Немає вторинного файлу" -# msgstr "E23: " msgid "E24: No such abbreviation" msgstr "E24: Такого скорочення немає" -# msgstr "E24: " msgid "E477: No ! allowed" msgstr "E477: ! не дозволено" msgid "E25: Nvim does not have a built-in GUI" msgstr "E25: Не можна використати GUI: Не ввімкнено під час компіляції" -# msgstr "E25: " #, c-format msgid "E28: No such highlight group name: %s" msgstr "E28: Немає такої групи підсвічування: %s" -# msgstr "E28: " msgid "E29: No inserted text yet" msgstr "E29: Текст ще не було додано" -# msgstr "E29: " msgid "E30: No previous command line" msgstr "E30: Ще не було команд" -# msgstr "E30: " msgid "E31: No such mapping" msgstr "E31: Немає такої заміни" -# msgstr "E31: " msgid "E479: No match" msgstr "E479: Жодного збігу" @@ -2204,26 +2494,21 @@ msgstr "E480: Жодного збігу: %s" msgid "E32: No file name" msgstr "E32: Бракує назви файлу" -# msgstr "E32: " msgid "E33: No previous substitute regular expression" msgstr "E33: Заміна зразків ще не використовувалась" -# msgstr "E33: " msgid "E34: No previous command" msgstr "E34: Команд ще не було" -# msgstr "E34: " msgid "E35: No previous regular expression" msgstr "E35: Зразків пошуку ще не було" -# msgstr "E35: " msgid "E481: No range allowed" msgstr "E481: Не дозволено вказувати межі" msgid "E36: Not enough room" msgstr "E36: Місця не вистачить" -# msgstr "E36: " #, c-format msgid "E482: Can't create file %s" msgstr "E482: Не вдалося створити файл %s" @@ -2312,7 +2597,6 @@ msgstr "E49: Некоректний розмір зсуву" msgid "E91: 'shell' option is empty" msgstr "E91: Опція 'shell' порожня" -# msgstr "E254: " msgid "E255: Couldn't read in sign data!" msgstr "E255: Не можна зчитати дані напису!" @@ -2320,7 +2604,7 @@ msgid "E72: Close error on swap file" msgstr "E72: Помилка під час закриття файлу обміну" msgid "E73: tag stack empty" -msgstr "E73: Стек теґів порожній" +msgstr "E73: Стек міток порожній" msgid "E74: Command too complex" msgstr "E74: Занадто складна команда" @@ -2349,7 +2633,6 @@ msgstr "E591: 'winheight' не може бути меншим за 'winminheight msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'" msgstr "E592: 'winwidth' не може бути меншим за 'winminwidth'" -# msgstr "E79: " msgid "E80: Error while writing" msgstr "E80: Помилка під час запису" @@ -2369,13 +2652,16 @@ msgstr "E363: Зразок використовує більше, ніж 'maxmem msgid "E749: empty buffer" msgstr "E749: Порожній буфер" +#, c-format +msgid "E86: Buffer %<PRId64> does not exist" +msgstr "E86: Буфера %<PRId64> немає" + msgid "E682: Invalid search pattern or delimiter" msgstr "E682: Некоректний зразок для пошуку чи роздільник" msgid "E139: File is loaded in another buffer" msgstr "E139: Файл уже завантажено в інший буфер" -# msgstr "E235: " #, c-format msgid "E764: Option '%s' is not set" msgstr "E764: Опція '%s' не встановлена" @@ -2383,6 +2669,13 @@ msgstr "E764: Опція '%s' не встановлена" msgid "E850: Invalid register name" msgstr "E850: Неправильна назва регістру" +#, c-format +msgid "E919: Directory not found in '%s': \"%s\"" +msgstr "E919: Каталог не знайдено у '%s': «%s»" + +msgid "E519: Option not supported" +msgstr "E519: Опція не підтримується" + msgid "search hit TOP, continuing at BOTTOM" msgstr "Пошук дійшов до ПОЧАТКУ, продовжується з КІНЦЯ" @@ -2392,7 +2685,6 @@ msgstr "Пошук дійшов до КІНЦЯ, продовжується з msgid "E550: Missing colon" msgstr "E550: Пропущено двокрапку" -# msgstr "E347: " msgid "E551: Illegal component" msgstr "E551: Некоректний компонент" @@ -2407,8 +2699,8 @@ msgid "No text to be printed" msgstr "Нічого друкувати" #, c-format -msgid "Printing page %d (%d%%)" -msgstr "Друкується сторінка %d (%d%%)" +msgid "Printing page %d (%zu%%)" +msgstr "Друкується сторінка %d (%zu%%)" #, c-format msgid " Copy %d of %d" @@ -2484,7 +2776,6 @@ msgstr "E365: Не вдалося надрукувати файл PostScript" msgid "Print job sent." msgstr "Завдання друку відіслано." -# msgstr "E255: " msgid "Add a new database" msgstr "Додати нову базу даних" @@ -2514,9 +2805,8 @@ msgid "E562: Usage: cstag <ident>" msgstr "E562: Використання: cstag <ідентиф-ор>" msgid "E257: cstag: tag not found" -msgstr "E257: cstag: теґ не знайдено" +msgstr "E257: cstag: мітку не знайдено" -# msgstr "E257: " #, c-format msgid "E563: stat(%s) error: %d" msgstr "E563: stat(%s) помилка: %d" @@ -2530,8 +2820,8 @@ msgid "Added cscope database %s" msgstr "Додано базу даних cscope %s" #, c-format -msgid "E262: error reading cscope connection %<PRId64>" -msgstr "E262: Помилка читання зі з'єднання cscope %<PRId64>" +msgid "E262: error reading cscope connection %<PRIu64>" +msgstr "E262: помилка читання зі з'єднання cscope %<PRIu64>" msgid "E561: unknown cscope search type" msgstr "E561: Невідомий тип пошуку cscope" @@ -2564,12 +2854,10 @@ msgstr "E567: жодного з'єднання із cscope" msgid "E469: invalid cscopequickfix flag %c for %c" msgstr "E469: Некоректний прапорець cscopequickfix %c для %c" -# msgstr "E258: " #, c-format msgid "E259: no matches found for cscope query %s of %s" msgstr "E259: Для запиту cscope %s з %s нічого не знайдено" -# msgstr "E259: " msgid "cscope commands:\n" msgstr "Команди cscope:\n" @@ -2579,6 +2867,7 @@ msgstr "%-5s: %s%*s (Використання: %s)" msgid "" "\n" +" a: Find assignments to this symbol\n" " c: Find functions calling this function\n" " d: Find functions called by this function\n" " e: Find this egrep pattern\n" @@ -2589,6 +2878,8 @@ msgid "" " t: Find this text string\n" msgstr "" "\n" +" a: Знайти присвоєння цього символу\n" +" a: Знайти присвоєння цього символу\n" " c: Знайти функції, що викликають цю функцію\n" " d: Знайти функції, що викликаються цією функцією\n" " e: Знайти цей шаблон egrep\n" @@ -2601,7 +2892,6 @@ msgstr "" msgid "E568: duplicate cscope database not added" msgstr "E568: Повторна база даних cscope не додана" -# msgstr "E260: " #, c-format msgid "E261: cscope connection %s not found" msgstr "E261: З'єднання з cscope %s не знайдено" @@ -2610,13 +2900,12 @@ msgstr "E261: З'єднання з cscope %s не знайдено" msgid "cscope connection %s closed" msgstr "З'єднання з cscope %s закінчено" -#. should not reach here msgid "E570: fatal error in cs_manage_matches" msgstr "E570: Фатальна помилка в cs_manage_matches" #, c-format msgid "Cscope tag: %s" -msgstr "Теґ cscope: %s" +msgstr "Мітка cscope: %s" msgid "" "\n" @@ -2641,28 +2930,20 @@ msgstr "Жодного з'єднання з cscope\n" msgid " # pid database name prepend path\n" msgstr " # pid назва бази даних шлях\n" -msgid "Unknown option argument" -msgstr "Невідомий аргумент опції" - -msgid "Too many edit arguments" -msgstr "Забагато аргументів" - msgid "Argument missing after" msgstr "Пропущено аргумент після" msgid "Garbage after option argument" msgstr "Сміття після аргументу опції" -msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments" -msgstr "Забагато аргументів у «+команда», «-c команда» або «--cmd команда»" +msgid "Unknown option argument" +msgstr "Невідомий аргумент опції" -# msgstr "E14: " -msgid "Invalid argument for" -msgstr "Неправильний аргумент у" +msgid "Too many edit arguments" +msgstr "Забагато аргументів" -#, c-format -msgid "%d files to edit\n" -msgstr "%d файли(ів)\n" +msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments" +msgstr "Забагато аргументів у «+команда», «-c команда» або «--cmd команда»" msgid "Attempt to open script file again: \"" msgstr "Спроба повторно відкрити скрипт: \"" @@ -2679,7 +2960,6 @@ msgstr "Vim: Застереження: Вивід не у термінал\n" msgid "Vim: Warning: Input is not from a terminal\n" msgstr "Vim: Застереження: Уведення не з терміналу\n" -#. just in case.. msgid "pre-vimrc command line" msgstr "команди перед vimrc" @@ -2687,184 +2967,161 @@ msgstr "команди перед vimrc" msgid "E282: Cannot read from \"%s\"" msgstr "E282: Не вдалося прочитати з «%s»" -# msgstr "E282: " msgid "" "\n" -"More info with: \"vim -h\"\n" +"More info with \"" msgstr "" "\n" -"Дізнайтеся більше: «vim -h»\n" - -msgid "[file ..] edit specified file(s)" -msgstr "[файл ..] редагувати вказані файли" - -msgid "- read text from stdin" -msgstr "- читати текст з stdin" +"Дізнайтеся більше: \"" -msgid "-t tag edit file where tag is defined" -msgstr "-t помітка перейти до теґу" +msgid "Usage:\n" +msgstr "Вжиток:\n" -msgid "-q [errorfile] edit file with first error" -msgstr "-q [файл] перейти до першої помилки" +msgid " nvim [arguments] [file ...] Edit specified file(s)\n" +msgstr " nvim [аргументи] [файл ...] Редагувати вказані файли\n" -msgid "" -"\n" -"\n" -"usage:" -msgstr "" -"\n" -"\n" -"Вжиток:" +msgid " nvim [arguments] - Read text from stdin\n" +msgstr " nvim [аргументи] - Читати текст з stdin\n" -msgid " vim [arguments] " -msgstr " vim [аргументи] " +msgid " nvim [arguments] -t <tag> Edit file where tag is defined\n" +msgstr " nvim [аргументи] -t <мітка> Редагувати файл, де визначено мітку\n" -msgid "" -"\n" -" or:" -msgstr "" -"\n" -" або:" +msgid " nvim [arguments] -q [errorfile] Edit file with first error\n" +msgstr " nvim [аргументи] -q [ф.помилки] Редагувати файл з першою помилкою\n" msgid "" "\n" -"\n" "Arguments:\n" msgstr "" "\n" -"\n" "Аргументи:\n" -msgid "--\t\t\tOnly file names after this" -msgstr "--\t\t\tЛише назви файлів після цього" - -msgid "--literal\t\tDon't expand wildcards" -msgstr "--literal\t\tНе розкривати шаблони" - -msgid "-v\t\t\tVi mode (like \"vi\")" -msgstr "-v\t\t\tРежим Vi (ніби «vi»)" - -msgid "-e\t\t\tEx mode (like \"ex\")" -msgstr "-e\t\t\tРежим Ex (ніби «ex»)" +msgid " -- Only file names after this\n" +msgstr " -- Лише назви файлів після цього\n" -msgid "-E\t\t\tImproved Ex mode" -msgstr "-E\t\t\tПокращений режим Ex" +msgid " --literal Don't expand wildcards\n" +msgstr " --literal Не розкривати шаблони\n" -msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")" -msgstr "-s\t\t\tМовчазний (пакетний) режим (лише для «ex»)" +msgid " -e Ex mode\n" +msgstr " -e Режим Ex\n" -msgid "-d\t\t\tDiff mode (like \"vimdiff\")" -msgstr "-d\t\t\tРежим порівняння (ніби «vimdiff»)" +msgid " -E Improved Ex mode\n" +msgstr " -E Покращений режим Ex\n" -msgid "-y\t\t\tEasy mode (like \"evim\", modeless)" -msgstr "-y\t\t\tПростий режим (ніби «evim», без режимів)" +msgid " -s Silent (batch) mode (only for ex mode)\n" +msgstr " -s Мовчазний (пакетний) режим (лише для «ex»)\n" -msgid "-R\t\t\tReadonly mode (like \"view\")" -msgstr "-R\t\t\tРежим перегляду (ніби «view»)" +msgid " -d Diff mode\n" +msgstr " -d Режим порівняння\n" -msgid "-Z\t\t\tRestricted mode (like \"rvim\")" -msgstr "-Z\t\t\tОбмежений режим (ніби «rvim»)" +msgid " -R Read-only mode\n" +msgstr " -R Режим тільки для читання\n" -msgid "-m\t\t\tModifications (writing files) not allowed" -msgstr "-m\t\t\tЗміни (запис файлів) не дозволено" +msgid " -Z Restricted mode\n" +msgstr " -Z Обмежений режим\n" -msgid "-M\t\t\tModifications in text not allowed" -msgstr "-M\t\t\tЗміни в тексті файлів не дозволено" +msgid " -m Modifications (writing files) not allowed\n" +msgstr " -m Зміни (запис файлів) не дозволено\n" -msgid "-b\t\t\tBinary mode" -msgstr "-b\t\t\tДвійковий режим" +msgid " -M Modifications in text not allowed\n" +msgstr " -M Зміни в тексті файлів не дозволено\n" -msgid "-l\t\t\tLisp mode" -msgstr "-l\t\t\tРежим lisp" +msgid " -b Binary mode\n" +msgstr " -b Двійковий режим\n" -msgid "-C\t\t\tCompatible with Vi: 'compatible'" -msgstr "-C\t\t\tСумісний з Vi режим: 'compatible'" +msgid " -l Lisp mode\n" +msgstr " -l Режим Lisp\n" -msgid "-N\t\t\tNot fully Vi compatible: 'nocompatible'" -msgstr "-N\t\t\tНе зовсім сумісний з Vi режим: 'nocompatible'" +msgid " -A Arabic mode\n" +msgstr " -A Режим арабської мови\n" -msgid "-V[N][fname]\t\tBe verbose [level N] [log messages to fname]" -msgstr "-V[N][файл]\t\tБільше повідомлень [рівень N] [файл журн. повідомлень]" +msgid " -F Farsi mode\n" +msgstr " -F Режим перської мови\n" -msgid "-D\t\t\tDebugging mode" -msgstr "-D\t\t\tРежим налагодження" +msgid " -H Hebrew mode\n" +msgstr " -H Режим івриту\n" -msgid "-n\t\t\tNo swap file, use memory only" -msgstr "-n\t\t\tНе використовувати файл обміну, тримати усе в пам'яті" +msgid " -V[N][file] Be verbose [level N][log messages to file]\n" +msgstr " -V[N][файл] Більше повідомлень [рівень N] [файл журн. повідомлень]\n" -msgid "-r\t\t\tList swap files and exit" -msgstr "-r\t\t\tПоказати файли обміну і вийти" +msgid " -D Debugging mode\n" +msgstr " -D Режим налагодження\n" -msgid "-r (with file name)\tRecover crashed session" -msgstr "-r (назва файлу)\tВідновити аварійно закінчений сеанс" +msgid " -n No swap file, use memory only\n" +msgstr " -n Не використовувати файл обміну, тримати усе в пам'яті\n" -msgid "-L\t\t\tSame as -r" -msgstr "-L\t\t\tТе саме, що й -r" +msgid " -r, -L List swap files and exit\n" +msgstr " -r, -L Показати файли обміну і вийти\n" -msgid "-A\t\t\tstart in Arabic mode" -msgstr "-A\t\t\tЗапустити в режимі арабської мови" +msgid " -r <file> Recover crashed session\n" +msgstr " -r <файл> Відновити аварійно закінчений сеанс\n" -msgid "-H\t\t\tStart in Hebrew mode" -msgstr "-H\t\t\tЗапустити в режимі івриту" +msgid " -u <vimrc> Use <vimrc> instead of the default\n" +msgstr " -u <vimrc> Використати <vimrc> замість стандартного\n" -msgid "-F\t\t\tStart in Farsi mode" -msgstr "-F\t\t\tЗапустити в режимі перської мови" +msgid " -i <shada> Use <shada> instead of the default\n" +msgstr " -i <shada> Вжити <shada> запість стандартного\n" -msgid "-T <terminal>\tSet terminal type to <terminal>" -msgstr "-T <термінал>\tВстановити тип терміналу у <термінал>" +msgid " --noplugin Don't load plugin scripts\n" +msgstr " --noplugin Не вантажити скрипти доповнення\n" -msgid "-u <vimrc>\t\tUse <vimrc> instead of any .vimrc" -msgstr "-u <vimrc>\t\tВикористати поданий файл замість .vimrc" +msgid " -o[N] Open N windows (default: one for each file)\n" +msgstr " -o[N] Відкрити N вікон (стандартно: по одному для кожного файлу)\n" -msgid "--noplugin\t\tDon't load plugin scripts" -msgstr "--noplugin\t\tНе вантажити скрипти доповнення" +msgid " -O[N] Like -o but split vertically\n" +msgstr " -O[N] Ніби -o, але поділити вікна вертикально\n" -msgid "-p[N]\t\tOpen N tab pages (default: one for each file)" -msgstr "-p[N]\t\tВідкрити N вкладок (або по одній для кожного файлу)" +msgid " -p[N] Open N tab pages (default: one for each file)\n" +msgstr " -p[N] Відкрити N вкладок (стандартно: по одній для кожного файлу)\n" -msgid "-o[N]\t\tOpen N windows (default: one for each file)" -msgstr "-o[N]\t\tВідкрити N вікон (або по одному для кожного файлу)" +msgid " + Start at end of file\n" +msgstr " + Розпочати в кінці файлу\n" -msgid "-O[N]\t\tLike -o but split vertically" -msgstr "-O[N]\t\tНіби -o, але поділити вікна вертикально" +msgid " +<linenum> Start at line <linenum>\n" +msgstr " +<рядок> Розпочати у <рядку>\n" -msgid "+\t\t\tStart at end of file" -msgstr "+\t\t\tРозпочати в кінці файлу" +msgid " +/<pattern> Start at first occurrence of <pattern>\n" +msgstr " +/<шаблон> Розпочати, де найперше трапиться <шаблон>\n" -msgid "+<lnum>\t\tStart at line <lnum>" -msgstr "+<рядок>\t\tРозпочати у вказаному <рядку>" +msgid " --cmd <command> Execute <command> before loading any vimrc\n" +msgstr " --cmd <команда> Виконати <команду> перед завантаженням vimrc\n" -msgid "--cmd <command>\tExecute <command> before loading any vimrc file" -msgstr "--cmd <команда>\tВиконати <команду> перед завантаженням vimrc" +msgid "" +" -c <command> Execute <command> after loading the first file\n" +msgstr "" +" -c <команда> Виконати <команду> після завантаження першого файлу\n" -msgid "-c <command>\t\tExecute <command> after loading the first file" -msgstr "-c <команда>\t\tВиконати <команду> після завантаження першого файлу" +msgid " -S <session> Source <session> after loading the first file\n" +msgstr " -S <сеанс> Виконати <сеанс> після першого завантаженого файлу\n" -msgid "-S <session>\t\tSource file <session> after loading the first file" -msgstr "-S <сеанс>\t\tВиконати поданий файл після першого завантаженого файлу" +msgid " -s <scriptin> Read Normal mode commands from <scriptin>\n" +msgstr " -s <скрипт> Зчитати команди нормального режиму з файлу <скрипт>\n" -msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>" -msgstr "-s <скрипт>\t\tЗчитати команди нормального режиму з файлу <скрипт>" +msgid " -w <scriptout> Append all typed characters to <scriptout>\n" +msgstr " -w <скрипт> Дописати усі набрані команди до файлу <скрипт>\n" -msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>" -msgstr "-w <скрипт>\t\tДописати усі набрані команди до файлу <скрипт>" +msgid " -W <scriptout> Write all typed characters to <scriptout>\n" +msgstr " -W <скрипт> Записати усі набрані символи у файл <скрипт>\n" -msgid "-W <scriptout>\tWrite all typed commands to file <scriptout>" -msgstr "-w <скрипт>\t\tЗаписати усі набрані команди у файл <скрипт>" +msgid " --startuptime <file> Write startup timing messages to <file>\n" +msgstr " --startuptime <файл> Записати профіль запуску до <файлу>\n" -msgid "--startuptime <file>\tWrite startup timing messages to <file>" +msgid "" +" --api-info Dump API metadata serialized to msgpack and exit\n" msgstr "" -"--startuptime <файл>\tЗаписати запускні повідомлення з часовими відмітками " -"до <файлу>" +" --api-info Злити метадані API, серіалізовані у msgpack, і вийти\n" -msgid "-i <viminfo>\t\tUse <viminfo> instead of .viminfo" -msgstr "-i <viminfo>\t\tВикористати <viminfo> замість .viminfo" +msgid " --embed Use stdin/stdout as a msgpack-rpc channel\n" +msgstr " --embed Використати stdin/stdout, як канал msgpack-rpc\n" -msgid "-h or --help\tPrint Help (this message) and exit" -msgstr "-h чи --help\tНадрукувати це повідомлення і вийти" +msgid " --headless Don't start a user interface\n" +msgstr " --headless Не запускати інтерфейс користувача\n" -msgid "--version\t\tPrint version information and exit" -msgstr "--version\t\tНадрукувати інформацію про версію програми і вийти" +msgid " -v, --version Print version information and exit\n" +msgstr " -v, --version Надрукувати інформацію про версію програми і вийти\n" + +msgid " -h, --help Print this help message and exit\n" +msgstr " -h, --help Надрукувати це повідомлення і вийти\n" msgid "No marks set" msgstr "Не встановлено жодної помітки" @@ -2873,8 +3130,6 @@ msgstr "Не встановлено жодної помітки" msgid "E283: No marks matching \"%s\"" msgstr "E283: Помітку «%s» не знайдено" -# msgstr "E283: " -#. Highlight title msgid "" "\n" "mark line col file/text" @@ -2882,7 +3137,6 @@ msgstr "" "\n" "пом. ряд. кол. файл/текст" -#. Highlight title msgid "" "\n" " jump line col file/text" @@ -2890,8 +3144,6 @@ msgstr "" "\n" " точка ряд. стовп. файл/текст" -# msgstr "E283: " -#. Highlight title msgid "" "\n" "change line col text" @@ -2899,38 +3151,9 @@ msgstr "" "\n" "змінити ряд. стовп. текст" -# TODO -msgid "" -"\n" -"# File marks:\n" -msgstr "" -"\n" -"# Помітки:\n" - -#. Write the jumplist with -' -msgid "" -"\n" -"# Jumplist (newest first):\n" -msgstr "" -"\n" -"# Список переходів (від найновіших):\n" - -# TODO -msgid "" -"\n" -"# History of marks within files (newest to oldest):\n" -msgstr "" -"\n" -"# Попередні помітки в файлах (від найновіших):\n" - -msgid "Missing '>'" -msgstr "Пропущено '>'" - -# msgstr "E292: " msgid "E293: block was not locked" msgstr "E293: Блок не було зафіксовано" -# msgstr "E293: " msgid "E294: Seek error in swap file read" msgstr "E294: Помилка зміни позиції у файлі обміну" @@ -2952,19 +3175,15 @@ msgstr "E298: Немає блоку 0?" msgid "E298: Didn't get block nr 1?" msgstr "E298: Немає блоку 1?" -# msgstr "E298: " msgid "E298: Didn't get block nr 2?" msgstr "E298: Немає блоку 2?" -#. could not (re)open the swap file, what can we do???? msgid "E301: Oops, lost the swap file!!!" msgstr "E301: Ой, втрачено файл обміну!!!" -# msgstr "E301: " msgid "E302: Could not rename swap file" msgstr "E302: Не вдалося перейменувати файлу обміну" -# msgstr "E302: " #, c-format msgid "E303: Unable to open swap file for \"%s\", recovery impossible" msgstr "E303: Не вдалося прочитати файл обміну для «%s», відновлення неможливе" @@ -2972,12 +3191,10 @@ msgstr "E303: Не вдалося прочитати файл обміну дл msgid "E304: ml_upd_block0(): Didn't get block 0??" msgstr "E304: ml_upd_block0(): Немає блоку 0??" -#. no swap files found #, c-format msgid "E305: No swap file found for %s" msgstr "E305: Не знайдено файлу обміну для %s" -# msgstr "E305: " msgid "Enter number of swap file to use (0 to quit): " msgstr "Введіть номер файлу обміну, котрий використати, (0 для виходу):" @@ -3032,12 +3249,10 @@ msgstr "Початковий файл «%s»" msgid "E308: Warning: Original file may have been changed" msgstr "E308: Застереження: Можливо, початковий файл було змінено" -# msgstr "E308: " #, c-format msgid "E309: Unable to read block 1 from %s" msgstr "E309: Не вдалося прочитати блок 1 з %s" -# msgstr "E309: " msgid "???MANY LINES MISSING" msgstr "??? БРАКУЄ БАГАТЬОХ РЯДКІВ" @@ -3054,7 +3269,6 @@ msgstr "??? ПРОПУЩЕНІ РЯДКИ" msgid "E310: Block 1 ID wrong (%s not a .swp file?)" msgstr "E310: Ідентифікатор блоку 1 неправильний (%s не є файлом обміну?)" -# msgstr "E310: " msgid "???BLOCK MISSING" msgstr "??? ПРОПУЩЕНО БЛОК" @@ -3104,7 +3318,6 @@ msgstr "" "Можливо, тепер ви хочете знищити файл обміну .swp.\n" "\n" -#. use msg() to start the scrolling properly msgid "Swap files found:" msgstr "Знайдено файли обміну:" @@ -3135,6 +3348,9 @@ msgstr " [від Vim 3.0]" msgid " [does not look like a Vim swap file]" msgstr " [не схоже на файл обміну]" +msgid " [garbled strings (not nul terminated)]" +msgstr " [пошкоджений текст (не закінчується nul)]" + msgid " file name: " msgstr " назва файлу: " @@ -3194,28 +3410,23 @@ msgstr " [не можна відкрити]" msgid "E313: Cannot preserve, there is no swap file" msgstr "E313: Не вдалося заготовити, немає файлу обміну" -# msgstr "E313: " msgid "File preserved" msgstr "Файл збережено" msgid "E314: Preserve failed" msgstr "E314: Збереження не вдалося" -# msgstr "E314: " #, c-format msgid "E315: ml_get: invalid lnum: %<PRId64>" msgstr "E315: ml_get: неправильний lnum: %<PRId64>" -# msgstr "E315: " #, c-format msgid "E316: ml_get: cannot find line %<PRId64>" msgstr "E316: ml_get: не знайшов рядок %<PRId64>" -# msgstr "E316: " msgid "E317: pointer block id wrong 3" msgstr "E317: Вказівник блоку помилковий 3" -# msgstr "E317: " msgid "stack_idx should be 0" msgstr "stack_idx має бути рівним 0" @@ -3235,7 +3446,6 @@ msgstr "E320: Не вдалося знайти рядок %<PRId64>" msgid "E317: pointer block id wrong" msgstr "E317: Вказівник блоку помилковий" -# msgstr "E317: " msgid "pe_line_count is zero" msgstr "pe_line_count дорівнює 0" @@ -3243,12 +3453,10 @@ msgstr "pe_line_count дорівнює 0" msgid "E322: line number out of range: %<PRId64> past the end" msgstr "E322: Номер рядка вийшов за межі: %<PRId64> за кінцем" -# msgstr "E322: " #, c-format msgid "E323: line count wrong in block %<PRId64>" msgstr "E323: Кількість рядків у блоці %<PRId64>" -# msgstr "E323: " msgid "Stack size increases" msgstr "Розмір стеку збільшується" @@ -3259,7 +3467,6 @@ msgstr "E317: Вказівник блоку помилковий 2" msgid "E773: Symlink loop for \"%s\"" msgstr "E773: Циклічні символьні посилання «%s»" -# msgstr "E317: " msgid "E325: ATTENTION" msgstr "E325: УВАГА" @@ -3280,15 +3487,12 @@ msgid "" "\n" "(1) Another program may be editing the same file. If this is the case,\n" " be careful not to end up with two different instances of the same\n" -" file when making changes." +" file when making changes. Quit, or continue with caution.\n" msgstr "" "\n" "(1) Можливо, інша програма вже редагує цей самий файл. Якщо це так,\n" -" будьте обережні, щоб не залишилися два різні екземпляри\n" -" одного й того самого файлу після змін." - -msgid " Quit, or continue with caution.\n" -msgstr " Вийдіть або продовжуйте обережно.\n" +" будьте обережні, щоб не залишилися два різні екземпляри одного й того\n" +" самого файлу після змін. Вийдіть чи продовжуйте обережно.\n" msgid "(2) An edit session for this file crashed.\n" msgstr "(2) Сеанс редагування цього файлу зазнав краху.\n" @@ -3354,54 +3558,46 @@ msgstr "" "&Q:Вийти\n" "&A:Перервати" -#. -#. * Change the ".swp" extension to find another file that can be used. -#. * First decrement the last char: ".swo", ".swn", etc. -#. * If that still isn't enough decrement the last but one char: ".svz" -#. * Can happen when editing many "No Name" buffers. -#. -#. ".s?a" -#. ".saa": tried enough, give up msgid "E326: Too many swap files found" msgstr "E326: Знайдено забагато файлів обміну" -# msgstr "E341: " +#, c-format +msgid "" +"E303: Unable to create directory \"%s\" for swap file, recovery impossible: " +"%s" +msgstr "" +"E303: Не вдалося створити каталог «%s» для файлу обміну, відновлення неможливе: " +"%s" + +msgid "Vim: Data too large to fit into virtual memory space\n" +msgstr "Vim: Даних забагато щоб влізти у віртуальний адресний простір\n" + #, c-format msgid "E342: Out of memory! (allocating %<PRIu64> bytes)" msgstr "E342: Забракло пам'яті! (потрібно було %<PRIu64> байтів)" -# msgstr "E326: " msgid "E327: Part of menu-item path is not sub-menu" msgstr "E327: Частина шляху до елемента меню не є підменю" -# msgstr "E327: " msgid "E328: Menu only exists in another mode" msgstr "E328: Меню може бути тільки в іншому режимі" -# msgstr "E328: " #, c-format msgid "E329: No menu \"%s\"" msgstr "E329: Немає меню «%s»" -#. Only a mnemonic or accelerator is not valid. msgid "E792: Empty menu name" msgstr "E792: Порожня назва меню" -# msgstr "E329: " msgid "E330: Menu path must not lead to a sub-menu" msgstr "E330: Шлях до меню не повинен вести до підменю" -# msgstr "E330: " msgid "E331: Must not add menu items directly to menu bar" msgstr "E331: Не можна додавати елементи меню просто до верхнього меню" -# msgstr "E331: " msgid "E332: Separator cannot be part of a menu path" msgstr "E332: Роздільник не може бути частиною шляху меню" -# msgstr "E332: " -#. Now we have found the matching menu, and we list the mappings -#. Highlight title msgid "" "\n" "--- Menus ---" @@ -3412,25 +3608,14 @@ msgstr "" msgid "E333: Menu path must lead to a menu item" msgstr "E333: Шлях повинен вести до елемента меню" -# msgstr "E333: " #, c-format msgid "E334: Menu not found: %s" msgstr "E334: Меню не знайдено: %s" -# msgstr "E334: " #, c-format msgid "E335: Menu not defined for %s mode" msgstr "E335: Для режиму %s меню не визначено" -# msgstr "E335: " -msgid "E336: Menu path must lead to a sub-menu" -msgstr "E336: Шлях повинен вести до підменю" - -# msgstr "E336: " -msgid "E337: Menu not found - check menu names" -msgstr "E337: Меню не знайдено — перевірте назву" - -# msgstr "E337: " #, c-format msgid "Error detected while processing %s:" msgstr "Виявлено помилку під час виконання %s:" @@ -3500,7 +3685,6 @@ msgstr "E807: Очікується аргумент Float для printf()" msgid "E767: Too many arguments to printf()" msgstr "E767: Забагато аргументів для printf()" -# msgstr "E338: " msgid "W10: Warning: Changing a readonly file" msgstr "W10: Застереження: Змінюється файл призначений лише для читання" @@ -3530,12 +3714,38 @@ msgstr " (Перервано)" msgid "Beep!" msgstr "Дзень!" -# msgstr "E342: " #, c-format msgid "Calling shell to execute: \"%s\"" msgstr "Викликається оболонка щоб виконати: «%s»" -# msgstr "E348: " +#, c-format +msgid "Invalid channel \"%<PRIu64>\"" +msgstr "Некоректний канал «%<PRIu64>»" + +msgid "Message is not an array" +msgstr "Повідомлення не є масивом" + +msgid "Message is empty" +msgstr "Повідомлення порожнє" + +msgid "Message type must be an integer" +msgstr "Повідомлення має бути цілим числом" + +msgid "Unknown message type" +msgstr "Невідомий тип повідомлення" + +msgid "Request array size should be 4 (request) or 3 (notification)" +msgstr "Розмір масиву запиту має бути 4 (запит) чи 3 (повідомлення)" + +msgid "ID must be a positive integer" +msgstr "ID має бути додатним числом" + +msgid "Method must be a string" +msgstr "Метод має бути текстом" + +msgid "Parameters must be an array" +msgstr "Параметри має бути масивом" + msgid "E349: No identifier under cursor" msgstr "E349: Немає ідентифікатора над курсором" @@ -3593,10 +3803,6 @@ msgstr "Вирівняно рядків: %<PRId64>" msgid "E748: No previously used register" msgstr "E748: Регістри перед цим не вживались" -#. must display the prompt -msgid "cannot yank; delete anyway" -msgstr "не вдалося запам'ятати; все одно знищити?" - msgid "1 line changed" msgstr "Один рядок змінено" @@ -3622,8 +3828,6 @@ msgstr "Запам'ятав рядків: %<PRId64>" msgid "E353: Nothing in register %s" msgstr "E353: У регістрі %s нічого немає" -# msgstr "E353: " -#. Highlight title msgid "" "\n" "--- Registers ---" @@ -3631,19 +3835,11 @@ msgstr "" "\n" "--- Регістри ---" -msgid "Illegal register name" -msgstr "Неправильна назва регістру" - msgid "" -"\n" -"# Registers:\n" +"E883: search pattern and expression register may not contain two or more " +"lines" msgstr "" -"\n" -"# Регістри:\n" - -#, c-format -msgid "E574: Unknown register type %d" -msgstr "E574: Невідомий тип регістру %d" +"E883: шаблон пошуку і реєстр виразу не можуть містити два чи більше рядків" #, c-format msgid "%<PRId64> Cols; " @@ -3685,19 +3881,9 @@ msgstr "" msgid "(+%<PRId64> for BOM)" msgstr "(+%<PRId64> для BOM)" -msgid "%<%f%h%m%=Page %N" -msgstr "%<%f%h%m%=Стор. %N" - -msgid "Thanks for flying Vim" -msgstr "Дякуємо за вибір Vim" - -#. found a mismatch: skip msgid "E518: Unknown option" msgstr "E518: Невідома опція" -msgid "E519: Option not supported" -msgstr "E519: Опція не підтримується" - msgid "E520: Not allowed in a modeline" msgstr "E520: Не дозволено у modeline" @@ -3707,15 +3893,13 @@ msgstr "E846: Код ключа не встановлено" msgid "E521: Number required after =" msgstr "E521: Після = потрібно вказати число" -msgid "E522: Not found in termcap" -msgstr "E522: Не знайдено серед можливостей терміналів" - #, c-format msgid "E539: Illegal character <%s>" msgstr "E539: Недозволений символ <%s>" -msgid "E529: Cannot set 'term' to empty string" -msgstr "E529: Не вдалося спорожнити 'term'" +#, c-format +msgid "For option %s" +msgstr "Для опції %s" msgid "E589: 'backupext' and 'patchmode' are equal" msgstr "E589: Опції 'backupext' і 'patchmode' однакові" @@ -3784,14 +3968,10 @@ msgstr "E594: Потрібно щонайменше %d стовпців" msgid "E355: Unknown option: %s" msgstr "E355: Невідома опція: %s" -#. There's another character after zeros or the string -#. * is empty. In both cases, we are trying to set a -#. * num option using a string. #, c-format msgid "E521: Number required: &%s = '%s'" msgstr "E521: Потрібно вказати Number: &%s = '%s'" -# msgstr "E355: " msgid "" "\n" "--- Terminal codes ---" @@ -3823,30 +4003,38 @@ msgstr "" msgid "E356: get_varp ERROR" msgstr "E356: Помилка get_varp" -# msgstr "E356: " #, c-format msgid "E357: 'langmap': Matching character missing for %s" msgstr "E357: 'langmap': Для символу %s немає пари" -# msgstr "E357: " #, c-format msgid "E358: 'langmap': Extra characters after semicolon: %s" msgstr "E358: 'langmap': Зайві символи після `;': %s" +#, c-format +msgid "dlerror = \"%s\"" +msgstr "dlerror = «%s»" + +msgid "Vim: Error reading input, exiting...\n" +msgstr "Vim: Помилка читання вводу, робота завершується...\n" + msgid "" "\n" -"Cannot execute shell " +"shell returned " msgstr "" "\n" -"Не вдалося запустити оболонку" +"оболонка повернула: " -# msgstr "E362: " msgid "" "\n" -"shell returned " +"Cannot execute " msgstr "" "\n" -"оболонка повернула: " +"Не вдалося виконати " + +#, c-format +msgid "E5677: Error writing input to shell-command: %s" +msgstr "E5677: Не вдалося записати на вхід команди оболонки: %s" msgid "" "\n" @@ -3863,55 +4051,44 @@ msgstr "" "Не вдалося встановити контекст безпеки для " #, c-format -msgid "dlerror = \"%s\"" -msgstr "dlerror = «%s»" - -# msgstr "E446: " -#, c-format msgid "E447: Can't find file \"%s\" in path" msgstr "E447: Файл «%s» не знайдено у шляху пошуку" -# msgstr "E371: " #, c-format msgid "E372: Too many %%%c in format string" msgstr "E372: Забагато %%%c у рядку формату" -# msgstr "E372: " #, c-format msgid "E373: Unexpected %%%c in format string" msgstr "E373: Неочікуваний `%%%c' у рядку формату" -# msgstr "E373: " msgid "E374: Missing ] in format string" msgstr "E374: Пропущено ] у рядку формату" -# msgstr "E374: " #, c-format msgid "E375: Unsupported %%%c in format string" msgstr "E375: %%%c у рядку формату не підтримується" -# msgstr "E375: " #, c-format msgid "E376: Invalid %%%c in format string prefix" msgstr "E376: Помилковий `%%%c' у префіксі рядку формату" -# msgstr "E376: " #, c-format msgid "E377: Invalid %%%c in format string" msgstr "E377: Помилковий `%%%c' у рядку формату" -# msgstr "E377: " -#. nothing found msgid "E378: 'errorformat' contains no pattern" msgstr "E378: 'errorformat' не містить зразок" -# msgstr "E378: " msgid "E379: Missing or empty directory name" msgstr "E379: Пропущена чи порожня назва каталогу" msgid "E553: No more items" msgstr "E553: Немає більше елементів" +msgid "E924: Current window was closed" +msgstr "E924: Активне вікно було закрито" + #, c-format msgid "(%d of %d)%s%s: " msgstr "(%d з %d)%s%s: " @@ -3965,11 +4142,9 @@ msgstr "E54: Немає пари %s(" msgid "E55: Unmatched %s)" msgstr "E55: Немає пари %s)" -# msgstr "E406: " msgid "E66: \\z( not allowed here" msgstr "E66: \\z( тут не дозволено" -# msgstr "E406: " msgid "E67: \\z1 et al. not allowed here" msgstr "E67: \\z1 та ін. тут не дозволено" @@ -3981,7 +4156,6 @@ msgstr "E69: Пропущено ] після %s%%[" msgid "E70: Empty %s%%[]" msgstr "E70: %s%%[] порожній" -# msgstr "E382: " msgid "E339: Pattern too long" msgstr "E339: Зразок занадто довгий" @@ -4003,12 +4177,10 @@ msgstr "E59: Недозволений символ після %s@" msgid "E60: Too many complex %s{...}s" msgstr "E60: Забагато складних %s{...}" -# msgstr "E339: " #, c-format msgid "E61: Nested %s*" msgstr "E61: Вкладені %s*" -# msgstr "E61: " #, c-format msgid "E62: Nested %s%c" msgstr "E62: Вкладені %s%c" @@ -4016,7 +4188,6 @@ msgstr "E62: Вкладені %s%c" msgid "E63: invalid use of \\_" msgstr "E63: Некоректно вжито \\_" -# msgstr "E62: " #, c-format msgid "E64: %s%c follows nothing" msgstr "E64: Після %s%c нічого немає" @@ -4035,7 +4206,10 @@ msgstr "E678: Недозволений символ після %s%%[dxouU]" msgid "E71: Invalid character after %s%%" msgstr "E71: Недозволений символ після %s%%" -# msgstr "E64: " +#, c-format +msgid "E888: (NFA regexp) cannot repeat %s" +msgstr "E888: (NFA regexp) неможливо повторити %s" + #, c-format msgid "E554: Syntax error in %s{...}" msgstr "E554: Синтаксична помилка в %s{...}" @@ -4050,71 +4224,11 @@ msgstr "" "E864: після \\%#= може бути тільки 0, 1, or 2. Буде використано автоматичний " "механізм " -msgid "E865: (NFA) Regexp end encountered prematurely" -msgstr "E865: (NFA) Зарано трапився кінець регулярного виразу" - -#, c-format -msgid "E866: (NFA regexp) Misplaced %c" -msgstr "E866: (NFA regexp) Не на місці %c" - -#, c-format -msgid "E877: (NFA regexp) Invalid character class: %<PRId64>" -msgstr "E877: (NFA regexp) Неправильний клас символів: %<PRId64>" - -#, c-format -msgid "E867: (NFA) Unknown operator '\\z%c'" -msgstr "E867: (NFA) Невідомий оператор '\\z%c'" - -#, c-format -msgid "E867: (NFA) Unknown operator '\\%%%c'" -msgstr "E867: (NFA) Невідомий оператор '\\%%%c'" - -#, c-format -msgid "E869: (NFA) Unknown operator '\\@%c'" -msgstr "E869: (NFA) Невідомий оператор '\\@%c'" - -msgid "E870: (NFA regexp) Error reading repetition limits" -msgstr "E870: (NFA regexp) Не вдалося прочитати межі повторення" - -#. Can't have a multi follow a multi. -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" -msgstr "E871: (NFA regexp) Мульти не може бути за мульти!" - -#. Too many `(' -msgid "E872: (NFA regexp) Too many '('" -msgstr "E872: (NFA regexp) Забагато '('" - -msgid "E879: (NFA regexp) Too many \\z(" -msgstr "E879: (NFA regexp) Забагато \\z(" - -msgid "E873: (NFA regexp) proper termination error" -msgstr "E873: (NFA regexp) помилка належного припинення" - -msgid "E874: (NFA) Could not pop the stack !" -msgstr "E874: (NFA) Стек порожній!" - -msgid "" -"E875: (NFA regexp) (While converting from postfix to NFA), too many states " -"left on stack" -msgstr "" -"E875: (NFA regexp) (Під час перетворення з постфікс у NFA) залишилося " -"забагато станів у стеку" - -msgid "E876: (NFA regexp) Not enough space to store the whole NFA " -msgstr "E876: (NFA regexp) Недостатньо пам’яті, щоб зберегти весь NFA " - -msgid "" -"Could not open temporary log file for writing, displaying on stderr ... " -msgstr "" -"Не вдалося відкрити тимчасовий файл журналу для запису, показується на " -"stderr ... " - -#, c-format -msgid "(NFA) COULD NOT OPEN %s !" -msgstr "(NFA) НЕ ВДАЛОСЯ ВІДКРИТИ %s!" +msgid "Switching to backtracking RE engine for pattern: " +msgstr "Перемикання до простого рушія регулярних виразів: " -msgid "Could not open temporary log file for writing " -msgstr "Не вдалося відкрити тимчасовий файл журналу для запису " +msgid " TERMINAL" +msgstr " ТЕРМІНАЛ" msgid " VREPLACE" msgstr " ВІРТ ЗАМІНА" @@ -4185,11 +4299,9 @@ msgstr "E385: Пошук дійшов до КІНЦЯ без збігів з %s" msgid "E386: Expected '?' or '/' after ';'" msgstr "E386: Після `;' має бути `?' або `/'" -# msgstr "E386: " msgid " (includes previously listed match)" msgstr " (разом з попередніми збігами)" -#. cursor at status line msgid "--- Included files " msgstr "--- Включені файли " @@ -4228,23 +4340,200 @@ msgstr "E388: Визначення не знайдено" msgid "E389: Couldn't find pattern" msgstr "E389: Зразок не знайдено" -msgid "Substitute " -msgstr "Заміна " +msgid "too few bytes read" +msgstr "прочитано замало байтів" + +#, c-format +msgid "System error while skipping in ShaDa file: %s" +msgstr "Системна помилка при пропусканні у файлі ShaDa: %s" #, c-format msgid "" -"\n" -"# Last %sSearch Pattern:\n" -"~" +"Error while reading ShaDa file: last entry specified that it occupies " +"%<PRIu64> bytes, but file ended earlier" msgstr "" -"\n" -"# Ост. %sЗразок пошуку:\n" -"~" +"Помилка при читанні файлу ShaDa: останнє поле зазначило, що воно займає " +"%<PRIu64> байтів, але файл закінчився раніше" + +#, c-format +msgid "System error while closing ShaDa file: %s" +msgstr "Системна помилка при закритті файлу ShaDa: %s" + +#, c-format +msgid "System error while writing ShaDa file: %s" +msgstr "Системна помилка при читанні з файлу ShaDa: %s" + +#, c-format +msgid "Reading ShaDa file \"%s\"%s%s%s" +msgstr "Зчитується файл ShaDa: «%s»%s%s%s" + +msgid " info" +msgstr " інформація" + +msgid " marks" +msgstr " позначки" + +msgid " oldfiles" +msgstr " старі файли" + +msgid " FAILED" +msgstr " НЕ ВДАЛОСЯ" + +#, c-format +msgid "System error while opening ShaDa file %s for reading: %s" +msgstr "Системна помилка при відкритті файлу ShaDa %s для читання: %s" + +msgid "additional elements of ShaDa " +msgstr "додаткові елементи ShaDa " + +msgid "additional data of ShaDa " +msgstr "додаткові дані ShaDa " + +#, c-format +msgid "Failed to write variable %s" +msgstr "Не вдалося записати змінну %s" + +#, c-format +msgid "" +"Failed to parse ShaDa file due to a msgpack parser error at position " +"%<PRIu64>" +msgstr "" +"Не вдалося розібрати файл ShaDa через помилку розбору msgpack у позиції " +"%<PRIu64>" + +#, c-format +msgid "" +"Failed to parse ShaDa file: incomplete msgpack string at position %<PRIu64>" +msgstr "" +"Не вдалося розібрати файл ShaDa: неповний текст msgpack у позиції %<PRIu64>" + +#, c-format +msgid "" +"Failed to parse ShaDa file: extra bytes in msgpack string at position " +"%<PRIu64>" +msgstr "" +"Не вдалося розібрати файл ShaDa: зайві байти у тексті msgpack у позиції " +"%<PRIu64>" + +#, c-format +msgid "" +"System error while opening ShaDa file %s for reading to merge before writing " +"it: %s" +msgstr "" +"Системна помилка при відкритті файлу ShaDa %s для читання щоб виконати злиття " +"перед записом: %s" + +#, c-format +msgid "E138: All %s.tmp.X files exist, cannot write ShaDa file!" +msgstr "E138: Усі файли %s.tmp.X зайнято, неможливо записати файл ShaDa!" + +#, c-format +msgid "System error while opening temporary ShaDa file %s for writing: %s" +msgstr "Системна помилка при відкритті тимчасового файлу ShaDa %s для запису: %s" + +#, c-format +msgid "Failed to create directory %s for writing ShaDa file: %s" +msgstr "Не вдалося створити каталог %s для запису файлу ShaDa: %s" + +#, c-format +msgid "System error while opening ShaDa file %s for writing: %s" +msgstr "Системна помилка при відкритті файлу ShaDa %s для запису: %s" + +#, c-format +msgid "Writing ShaDa file \"%s\"" +msgstr "Записується файл ShaDa «%s»" + +#, c-format +msgid "Failed setting uid and gid for file %s: %s" +msgstr "Не вдалося встановити uid і gid для файлу %s: %s" + +#, c-format +msgid "E137: ShaDa file is not writable: %s" +msgstr "E137: Не дозволено запис у файл ShaDa: %s" + +#, c-format +msgid "Can't rename ShaDa file from %s to %s!" +msgstr "Не вдалося перейменувати файл ShaDa з %s у %s!" + +#, c-format +msgid "Did not rename %s because %s does not looks like a ShaDa file" +msgstr "Не перейменував %s, тому що %s не схожий на файл ShaDa" + +#, c-format +msgid "Did not rename %s to %s because there were errors during writing it" +msgstr "Не вдалося перейменувати %s у %s через помилки під час запису" + +#, c-format +msgid "Do not forget to remove %s or rename it manually to %s." +msgstr "Не забудьте знищити %s чи перейменувати його самостійно у %s." + +#, c-format +msgid "System error while reading ShaDa file: %s" +msgstr "Системна помилка при читанні файлу ShaDa: %s" + +#, c-format +msgid "System error while reading integer from ShaDa file: %s" +msgstr "Системна помилка при читанні цілого числа з файлу ShaDa: %s" + +#, c-format +msgid "" +"Error while reading ShaDa file: expected positive integer at position " +"%<PRIu64>, but got nothing" +msgstr "" +"Помилка при читанні файлу ShaDa: очікувалося додатне число у позиції " +"%<PRIu64>, але нічого немає" + +#, c-format +msgid "" +"Error while reading ShaDa file: expected positive integer at position " +"%<PRIu64>" +msgstr "" +"Помилка при читанні файлу ShaDa: очікувалося додатне число у позиції " +"%<PRIu64>" + +#, c-format +msgid "" +"Error while reading ShaDa file: there is an item at position %<PRIu64> that " +"must not be there: Missing items are for internal uses only" +msgstr "" +"Помилка при читанні файлу ShaDa: неочікуваний елемент у позиції %<PRIu64>:" +" Пропущені елементи тільки для внутрішнього вжитку" + +#, c-format +msgid "" +"Error while reading ShaDa file: buffer list at position %<PRIu64> contains " +"entry that is not a dictionary" +msgstr "" +"Помилка при читанні файлу ShaDa: список буферів у позиції %<PRIu64> містить " +"поле, яке не є словником" + +#, c-format +msgid "" +"Error while reading ShaDa file: buffer list at position %<PRIu64> contains " +"entry with invalid line number" +msgstr "" +"Помилка при читанні файлу ShaDa: список буферів у позиції %<PRIu64> містить " +"поле з некоректним номером рядка" + +#, c-format +msgid "" +"Error while reading ShaDa file: buffer list at position %<PRIu64> contains " +"entry with invalid column number" +msgstr "" +"Помилка при читанні файлу ShaDa: список буферів у позиції %<PRIu64> містить " +"поле з некоректним номером стовпця" + +#, c-format +msgid "" +"Error while reading ShaDa file: buffer list at position %<PRIu64> contains " +"entry that does not have a file name" +msgstr "" +"Помилка при читанні файлу ShaDa: список буферів у позиції %<PRIu64> містить " +"поле, яке не має назву файлу" msgid "E759: Format error in spell file" msgstr "E759: Помилка формату у файлі орфографії" -# msgstr "E364: " msgid "E758: Truncated spell file" msgstr "E758: Обірваний файл орфографії" @@ -4256,7 +4545,6 @@ msgstr "Зайвий текст у %s у рядку %d: %s" msgid "Affix name too long in %s line %d: %s" msgstr "Назва афіксу завелика у %s у рядку %d: %s" -# msgstr "E430: " msgid "E761: Format error in affix file FOL, LOW or UPP" msgstr "E761: Помилка формату у файлі афіксів FOL, LOW чи UPP" @@ -4361,11 +4649,11 @@ msgstr "Подвійний афікс у %s у рядку %d: %s" #, c-format msgid "" -"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s " +"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGESTin %s " "line %d: %s" msgstr "" -"Афікс також використовується для BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/" -"NOSUGGEST у %s у рядку %d: %s" +"Афікс також вживається для BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST" +" у %s рядок %d: %s" #, c-format msgid "Expected Y or N in %s line %d: %s" @@ -4498,8 +4786,6 @@ msgstr "Стиснено %d з %d вузлів; залишилося %d (%d%%)" msgid "Reading back spell file..." msgstr "Перечитується файл орфографії..." -#. Go through the trie of good words, soundfold each word and add it to -#. the soundfold trie. msgid "Performing soundfolding..." msgstr "Виконується згортання звуків..." @@ -4561,8 +4847,6 @@ msgstr "Пробачте, немає пропозицій" msgid "Sorry, only %<PRId64> suggestions" msgstr "Пробачте, тільки %<PRId64> пропозицій" -#. for when 'cmdheight' > 1 -#. avoid more prompt #, c-format msgid "Change \"%.*s\" to:" msgstr "Замінити «%.*s» на:" @@ -4571,11 +4855,9 @@ msgstr "Замінити «%.*s» на:" msgid " < \"%.*s\"" msgstr " < «%.*s»" -# msgstr "E34: " msgid "E752: No previous spell replacement" msgstr "E752: Немає попередньої заміни" -# msgstr "E333: " #, c-format msgid "E753: Not found: %s" msgstr "E753: Не знайдено: %s" @@ -4600,12 +4882,9 @@ msgstr "E781: Файл .sug не відповідає файлу .spl: %s" msgid "E782: error while reading .sug file: %s" msgstr "E782: Помилка читання файлу .sug: %s" -#. This should have been checked when generating the .spl -#. file. msgid "E783: duplicate char in MAP entry" msgstr "E783: Повторено символ у елементі MAP" -# msgstr "E391: " msgid "No Syntax items defined for this buffer" msgstr "Для буфера не визначено елементів синтаксису" @@ -4613,6 +4892,9 @@ msgstr "Для буфера не визначено елементів синт msgid "E390: Illegal argument: %s" msgstr "E390: Неправильний аргумент: %s" +msgid "syntax iskeyword " +msgstr "синтаксис iskeyword " + #, c-format msgid "E391: No such syntax cluster: %s" msgstr "E391: Немає такого синтаксичного кластера: %s" @@ -4669,7 +4951,6 @@ msgstr " розриви рядків" msgid "E395: contains argument not accepted here" msgstr "E395: Містить неприйнятні тут аргументи" -# msgstr "E14: " msgid "E844: invalid cchar value" msgstr "E844: Некоректне значення cchar" @@ -4680,7 +4961,6 @@ msgstr "E393: group[t]hete тут неприйнятний" msgid "E394: Didn't find region item for %s" msgstr "E394: Не знайдено елемент регіону для %s" -# msgstr "E396: " msgid "E397: Filename required" msgstr "E397: Потрібна назва файлу" @@ -4692,10 +4972,13 @@ msgid "E789: Missing ']': %s" msgstr "E789: Пропущено ']': %s" #, c-format +msgid "E890: trailing char after ']': %s]%s" +msgstr "E890: Зайвий символ після ']': %s]%s" + +#, c-format msgid "E398: Missing '=': %s" msgstr "E398: Пропущено `=': %s" -# --------------------------------------- #, c-format msgid "E399: Not enough arguments: syntax region %s" msgstr "E399: Бракує аргументів: синтаксичний регіон %s" @@ -4706,7 +4989,6 @@ msgstr "E848: Забагато синтаксичних кластерів" msgid "E400: No cluster specified" msgstr "E400: Кластер не вказано" -#. end delimiter not found #, c-format msgid "E401: Pattern delimiter not found: %s" msgstr "E401: Кінець зразку не знайдено: %s" @@ -4715,7 +4997,6 @@ msgstr "E401: Кінець зразку не знайдено: %s" msgid "E402: Garbage after pattern: %s" msgstr "E402: Сміття після зразку: %s" -# msgstr "E402: " msgid "E403: syntax sync: line continuations pattern specified twice" msgstr "" "E403: Синтаксична синхронізація: зразок для продовження рядка вказано двічі" @@ -4724,17 +5005,14 @@ msgstr "" msgid "E404: Illegal arguments: %s" msgstr "E404: Неправильні аргументи: %s" -# msgstr "E404: " #, c-format msgid "E405: Missing equal sign: %s" msgstr "E405: Пропущено знак рівності: %s" -# msgstr "E405: " #, c-format msgid "E406: Empty argument: %s" msgstr "E406: Порожній аргумент: %s" -# msgstr "E406: " #, c-format msgid "E407: %s not allowed here" msgstr "E407: %s тут не дозволено" @@ -4747,7 +5025,6 @@ msgstr "E408: %s має бути першим рядком у списку conta msgid "E409: Unknown group name: %s" msgstr "E409: Невідома назва групи: %s" -# msgstr "E409: " #, c-format msgid "E410: Invalid :syntax subcommand: %s" msgstr "E410: Неправильна підкоманда :syntax: %s" @@ -4760,31 +5037,25 @@ msgstr "" msgid "E679: recursive loop loading syncolor.vim" msgstr "E679: Рекурсивний цикл читання syncolor.vim" -# msgstr "E410: " #, c-format msgid "E411: highlight group not found: %s" msgstr "E411: Групу підсвічування не знайдено: %s" -# msgstr "E411: " #, c-format msgid "E412: Not enough arguments: \":highlight link %s\"" msgstr "E412: Недостатньо аргументів: «:highlight link %s»" -# msgstr "E412: " #, c-format msgid "E413: Too many arguments: \":highlight link %s\"" msgstr "E413: Забагато аргументів: «:highlight link %s»" -# msgstr "E413: " msgid "E414: group has settings, highlight link ignored" msgstr "E414: Грума має settings, highlight link проігноровано" -# msgstr "E414: " #, c-format msgid "E415: unexpected equal sign: %s" msgstr "E415: Несподіваний знак рівності: %s" -# msgstr "E415: " #, c-format msgid "E416: missing equal sign: %s" msgstr "E416: Пропущено знак рівності: %s" @@ -4797,100 +5068,81 @@ msgstr "E417: Пропущено аргумент: %s" msgid "E418: Illegal value: %s" msgstr "E418: Неправильне значення: %s" -# msgstr "E418: " msgid "E419: FG color unknown" msgstr "E419: Невідомий колір тексту" -# msgstr "E419: " msgid "E420: BG color unknown" msgstr "E420: Невідомий колір фону" -# msgstr "E420: " #, c-format msgid "E421: Color name or number not recognized: %s" msgstr "E421: Нерозпізнана назва або номер кольору: %s" -# msgstr "E421: " -#, c-format -msgid "E422: terminal code too long: %s" -msgstr "E422: Занадто довгий код терміналу: %s" - -# msgstr "E422: " #, c-format msgid "E423: Illegal argument: %s" msgstr "E423: Неправильний аргумент: %s" -# msgstr "E423: " msgid "E424: Too many different highlighting attributes in use" msgstr "E424: Використано забагато різних атрибутів кольору" msgid "E669: Unprintable character in group name" msgstr "E669: Недруковний символ у назві групи" -# msgstr "E181: " msgid "W18: Invalid character in group name" msgstr "W18: Некоректний символ у назві групи" msgid "E849: Too many highlight and syntax groups" msgstr "E849: Забагато груп підсвічування і синтаксису" -# msgstr "E424: " msgid "E555: at bottom of tag stack" -msgstr "E555: Кінець стеку теґів" +msgstr "E555: Кінець стеку міток" msgid "E556: at top of tag stack" -msgstr "E556: Вершина стеку теґів" +msgstr "E556: Вершина стеку міток" msgid "E425: Cannot go before first matching tag" -msgstr "E425: Це вже найперший відповідний теґ" +msgstr "E425: Це вже найперша відповідна мітка" -# msgstr "E425: " #, c-format msgid "E426: tag not found: %s" -msgstr "E426: Теґ не знайдено: %s" +msgstr "E426: Мітку не знайдено: %s" -# msgstr "E426: " msgid " # pri kind tag" -msgstr " # прі тип теґ" +msgstr " # прі тип мітка" msgid "file\n" msgstr "файл\n" msgid "E427: There is only one matching tag" -msgstr "E427: Лише один відповідний теґ" +msgstr "E427: Лише одна відповідна мітка" -# msgstr "E427: " msgid "E428: Cannot go beyond last matching tag" -msgstr "E428: Це вже останній відповідний теґ" +msgstr "E428: Це вже остання відповідна мітка" -# msgstr "E428: " #, c-format msgid "File \"%s\" does not exist" msgstr "Файл «%s» не існує" -#. Give an indication of the number of matching tags #, c-format msgid "tag %d of %d%s" -msgstr "теґ %d з %d%s" +msgstr "мітка %d з %d%s" msgid " or more" msgstr " або більше" msgid " Using tag with different case!" -msgstr " Використано теґ, не розрізняючи великі й малі літери" +msgstr " Використано мітку, не розрізняючи великі й малі літери!" #, c-format msgid "E429: File \"%s\" does not exist" msgstr "E429: Файл «%s» не існує" -# msgstr "E429: " -#. Highlight title msgid "" "\n" " # TO tag FROM line in file/text" msgstr "" "\n" -" # ДО теґу З рядка у файлі/тексті" +" # ДО мітки З рядка у файлі/тексті" #, c-format msgid "Searching tags file %s" @@ -4899,12 +5151,10 @@ msgstr "Шукається у файлі теґів %s" msgid "Ignoring long line in tags file" msgstr "Ігнорується довгий рядок у файлі з позначками" -# msgstr "E430: " #, c-format msgid "E431: Format error in tags file \"%s\"" msgstr "E431: Помилка формату у файлі теґів «%s»" -# msgstr "E431: " #, c-format msgid "Before byte %<PRId64>" msgstr "Перед байтом %<PRId64>" @@ -4913,59 +5163,19 @@ msgstr "Перед байтом %<PRId64>" msgid "E432: Tags file not sorted: %s" msgstr "E432: Файл теґів не впорядкований: %s" -# msgstr "E432: " -#. never opened any tags file msgid "E433: No tags file" msgstr "E433: Немає файлу теґів" -# msgstr "E433: " msgid "E434: Can't find tag pattern" -msgstr "E434: Не вдалося знайти зразок теґу" +msgstr "E434: Не вдалося знайти зразок мітки" -# msgstr "E434: " msgid "E435: Couldn't find tag, just guessing!" -msgstr "E435: Не вдалося знайти теґ, тільки припущення!" +msgstr "E435: Не вдалося знайти мітку, тільки припущення!" #, c-format msgid "Duplicate field name: %s" msgstr "Назва поля повторюється: %s" -# msgstr "E435: " -msgid "' not known. Available builtin terminals are:" -msgstr "' не відомий. Вбудовані термінали:" - -msgid "defaulting to '" -msgstr "початково '" - -msgid "E557: Cannot open termcap file" -msgstr "E557: Не вдалося відкрити файл можливостей терміналів" - -msgid "E558: Terminal entry not found in terminfo" -msgstr "E558: Немає інформації про термінал" - -msgid "E559: Terminal entry not found in termcap" -msgstr "E559: Немає інформації про можливості терміналу" - -#, c-format -msgid "E436: No \"%s\" entry in termcap" -msgstr "E436: Немає запису «%s» про можливості терміналу" - -msgid "E437: terminal capability \"cm\" required" -msgstr "E437: Потрібна можливість терміналу «cm»" - -#. Highlight title -msgid "" -"\n" -"--- Terminal keys ---" -msgstr "" -"\n" -"--- Клавіші терміналу ---" - -msgid "Vim: Error reading input, exiting...\n" -msgstr "Vim: Помилка читання вводу, робота завершується...\n" - -#. This happens when the FileChangedRO autocommand changes the -#. * file in a way it becomes shorter. msgid "E881: Line count changed unexpectedly" msgstr "E881: Кількість рядків несподівано змінилася" @@ -4974,6 +5184,10 @@ msgid "E828: Cannot open undo file for writing: %s" msgstr "E828: Не вдалося відкрити файл історії для запису: %s" #, c-format +msgid "E926: Unable to create directory \"%s\" for undo file: %s" +msgstr "E926: Не вдалося створити каталог «%s» для файлу зворотніх змін: %s" + +#, c-format msgid "E825: Corrupted undo file (%s): %s" msgstr "E825: Файл історії пошкоджено (%s): %s" @@ -5011,7 +5225,6 @@ msgstr "Читається файл історії: %s" msgid "E822: Cannot open undo file for reading: %s" msgstr "E822: Не вдалося відкрити файл для читання: %s" -# msgstr "E333: " #, c-format msgid "E823: Not an undo file: %s" msgstr "E823: Не файл історії: %s" @@ -5052,11 +5265,9 @@ msgstr "знищено рядок" msgid "fewer lines" msgstr "рядків знищено" -# msgstr "E438: " msgid "change" msgstr "зміна" -# msgstr "E438: " msgid "changes" msgstr "змін" @@ -5064,12 +5275,12 @@ msgstr "змін" msgid "%<PRId64> %s; %s #%<PRId64> %s" msgstr "%<PRId64> %s; %s #%<PRId64> %s" -msgid "before" -msgstr "перед" - msgid "after" msgstr "після" +msgid "before" +msgstr "перед" + msgid "Nothing to undo" msgstr "Немає нічого скасовувати" @@ -5080,34 +5291,22 @@ msgstr "номер зміни час збережено" msgid "%<PRId64> seconds ago" msgstr "%<PRId64> секунд тому" -# msgstr "E406: " msgid "E790: undojoin is not allowed after undo" msgstr "E790: Не можна виконати undojoin після undo" msgid "E439: undo list corrupt" msgstr "E439: Список скасування пошкоджено" -# msgstr "E439: " msgid "E440: undo line missing" msgstr "E440: Відсутній рядок скасування" msgid "" "\n" -"Included patches: " -msgstr "" -"\n" -"Включені латки: " - -msgid "" -"\n" "Extra patches: " msgstr "" "\n" "Додаткові латки: " -msgid "Modified by " -msgstr "Змінив " - msgid "" "\n" "Compiled " @@ -5120,85 +5319,48 @@ msgstr " " msgid "" "\n" -"Huge version " +"\n" +"Optional features included (+) or not (-): " msgstr "" "\n" -"Гігантська версія " - -msgid "without GUI." -msgstr "без GUI." - -msgid " Features included (+) or not (-):\n" -msgstr " Включені (+) або не включені (-) компоненти:\n" +"\n" +"Включені (+) або не включені (-) компоненти: " msgid " system vimrc file: \"" msgstr " системний vimrc: \"" -msgid " user vimrc file: \"" -msgstr " vimrc користувача: \"" - -msgid " 2nd user vimrc file: \"" -msgstr " другий vimrc користувача: \"" - -msgid " 3rd user vimrc file: \"" -msgstr " третій vimrc користувача: \"" - -msgid " user exrc file: \"" -msgstr " exrc користувача: \"" - -msgid " 2nd user exrc file: \"" -msgstr " другий exrc користувача: \"" - msgid " fall-back for $VIM: \"" msgstr " заміна для $VIM: \"" msgid " f-b for $VIMRUNTIME: \"" msgstr " заміна для $VIMRUNTIME: \"" -msgid "Compilation: " -msgstr "Скомпільовано: " +msgid "by Bram Moolenaar et al." +msgstr "автор: Bram Moolenaar та ін." -msgid "Linking: " -msgstr "Скомпоновано: " +msgid "Nvim is open source and freely distributable" +msgstr "Nvim — це відкрита й вільно розповсюджувана програма" -msgid " DEBUG BUILD" -msgstr " ВЕРСІЯ ДЛЯ НАЛАГОДЖЕННЯ" +msgid "https://neovim.io/community" +msgstr "https://neovim.io/community" -msgid "VIM - Vi IMproved" -msgstr "VIM - Покращений Vi" +msgid "type :help nvim<Enter> if you are new! " +msgstr ":help nvim<Enter> якщо ви вперше! " -msgid "version " -msgstr "версія " +msgid "type :CheckHealth<Enter> to optimize Nvim" +msgstr ":CheckHealth<Enter> щоб оптимізувати Nvim " -msgid "by Bram Moolenaar et al." -msgstr "автор: Bram Moolenaar та ін." +msgid "type :q<Enter> to exit " +msgstr ":q<Enter> вихід з Vim " -msgid "Vim is open source and freely distributable" -msgstr "Vim — це відкрита й вільно розповсюджувана програма" +msgid "type :help<Enter> for help " +msgstr ":help<Enter> щоб отримати допомогу " msgid "Help poor children in Uganda!" msgstr "Допоможіть сиротам з Уганди!" msgid "type :help iccf<Enter> for information " -msgstr ":help iccf<Enter> подробиці " - -msgid "type :q<Enter> to exit " -msgstr ":q<Enter> вихід з Vim " - -msgid "type :help<Enter> or <F1> for on-line help" -msgstr ":help<Enter> або <F1> перегляд допомоги " - -msgid "type :help version7<Enter> for version info" -msgstr ":help version7<Enter> інформація про версію " - -msgid "Running in Vi compatible mode" -msgstr "Ви працюєте в режимі сумісному з Vi" - -msgid "type :set nocp<Enter> for Vim defaults" -msgstr ":set nocp<Enter> режим несумісний з Vi " - -msgid "type :help cp-default<Enter> for info on this" -msgstr ":help cp-default<Enter> інформація про сумісність" +msgstr ":help iccf<Enter> подробиці " msgid "Sponsor Vim development!" msgstr "Підтримайте розробку редактора Vim!" @@ -5207,44 +5369,40 @@ msgid "Become a registered Vim user!" msgstr "Станьте зареєстрованим користувачем Vim!" msgid "type :help sponsor<Enter> for information " -msgstr ":help sponsor<Enter> подальша інформація " +msgstr ":help sponsor<Enter> подальша інформація " msgid "type :help register<Enter> for information " -msgstr ":help register<Enter> подальша інформація " +msgstr ":help register<Enter> подальша інформація " msgid "menu Help->Sponsor/Register for information " -msgstr "меню Допомога->Спонсор/Реєстрація подробиці " +msgstr "меню Допомога->Спонсор/Реєстрація подробиці " -# msgstr "E444: " msgid "Already only one window" msgstr "Це вже єдине вікно" msgid "E441: There is no preview window" msgstr "E441: Немає вікна перегляду" -# msgstr "E441: " msgid "E442: Can't split topleft and botright at the same time" msgstr "E442: Не вдалося одночасно розбити topleft і botright" -# msgstr "E442: " msgid "E443: Cannot rotate when another window is split" msgstr "E443: Не вдалося перемістити вікно, заважають інші" -# msgstr "E443: " msgid "E444: Cannot close last window" msgstr "E444: Не вдалося закрити останнє вікно" -# msgstr "E443: " msgid "E813: Cannot close autocmd window" msgstr "E813: Не вдалося закрити вікно autocmd" -# msgstr "E443: " msgid "E814: Cannot close window, only autocmd window would remain" msgstr "E814: Не вдалося закрити вікно, залишилося б тільки вікно autocmd" msgid "E445: Other window contains changes" msgstr "E445: У іншому вікні є зміни" -# msgstr "E445: " msgid "E446: No file name under cursor" msgstr "E446: Немає назви файлу над курсором" + +msgid "List or number required" +msgstr "Очікується список чи число" diff --git a/src/nvim/po/vi.po b/src/nvim/po/vi.po index 49c6765843..456e640a80 100644 --- a/src/nvim/po/vi.po +++ b/src/nvim/po/vi.po @@ -2720,11 +2720,6 @@ msgstr "E49: Kích thước thanh cuộn không cho phép" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/zh_CN.UTF-8.po b/src/nvim/po/zh_CN.UTF-8.po index e88efed8e3..981719a2e7 100644 --- a/src/nvim/po/zh_CN.UTF-8.po +++ b/src/nvim/po/zh_CN.UTF-8.po @@ -2675,11 +2675,6 @@ msgstr "E49: 无效的滚动大小" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/zh_CN.cp936.po b/src/nvim/po/zh_CN.cp936.po deleted file mode 100644 index e5351cc22a..0000000000 --- a/src/nvim/po/zh_CN.cp936.po +++ /dev/null @@ -1,7928 +0,0 @@ -# Chinese (simplified) Translation for Vim -# -# Do ":help uganda" in Vim to read copying and usage conditions. -# Do ":help credits" in Vim to see a list of people who contributed. -# -# FIRST AUTHOR Wang Jun <junw@turbolinux.com.cn> -# -# TRANSLATORS -# Edyfox <edyfox@gmail.com> -# Yuheng Xie <elephant@linux.net.cn> -# -# Generated from zh_CN.po, DO NOT EDIT. -# -msgid "" -msgstr "" -"Project-Id-Version: Vim(Simplified Chinese)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-26 14:21+0200\n" -"PO-Revision-Date: 2006-04-21 14:00+0800\n" -"Last-Translator: Yuheng Xie <elephant@linux.net.cn>\n" -"Language-Team: Simplified Chinese <i18n-translation@lists.linux.net.cn>\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=gbk\n" -"Content-Transfer-Encoding: 8-bit\n" - -#: ../api/private/helpers.c:201 -#, fuzzy -msgid "Unable to get option value" -msgstr "ѡЧ" - -#: ../api/private/helpers.c:204 -msgid "internal error: unknown option type" -msgstr "" - -#: ../buffer.c:92 -msgid "[Location List]" -msgstr "[Location б]" - -#: ../buffer.c:93 -msgid "[Quickfix List]" -msgstr "[Quickfix б]" - -#: ../buffer.c:94 -msgid "E855: Autocommands caused command to abort" -msgstr "" - -#: ../buffer.c:135 -msgid "E82: Cannot allocate any buffer, exiting..." -msgstr "E82: κλ˳..." - -#: ../buffer.c:138 -msgid "E83: Cannot allocate buffer, using other one..." -msgstr "E83: 仺ʹһ..." - -#: ../buffer.c:763 -msgid "E515: No buffers were unloaded" -msgstr "E515: ûͷκλ" - -#: ../buffer.c:765 -msgid "E516: No buffers were deleted" -msgstr "E516: ûɾκλ" - -#: ../buffer.c:767 -msgid "E517: No buffers were wiped out" -msgstr "E517: ûκλ" - -#: ../buffer.c:772 -msgid "1 buffer unloaded" -msgstr "ͷ 1 " - -#: ../buffer.c:774 -#, c-format -msgid "%d buffers unloaded" -msgstr "ͷ %d " - -#: ../buffer.c:777 -msgid "1 buffer deleted" -msgstr "ɾ 1 " - -#: ../buffer.c:779 -#, c-format -msgid "%d buffers deleted" -msgstr "ɾ %d " - -#: ../buffer.c:782 -msgid "1 buffer wiped out" -msgstr " 1 " - -#: ../buffer.c:784 -#, c-format -msgid "%d buffers wiped out" -msgstr " %d " - -#: ../buffer.c:806 -msgid "E90: Cannot unload last buffer" -msgstr "E90: ͷһ" - -#: ../buffer.c:874 -msgid "E84: No modified buffer found" -msgstr "E84: ûĹĻ" - -#. back where we started, didn't find anything. -#: ../buffer.c:903 -msgid "E85: There is no listed buffer" -msgstr "E85: ûпгĻ" - -#: ../buffer.c:913 -#, c-format -msgid "E86: Buffer %<PRId64> does not exist" -msgstr "E86: %<PRId64> " - -#: ../buffer.c:915 -msgid "E87: Cannot go beyond last buffer" -msgstr "E87: лһ" - -#: ../buffer.c:917 -msgid "E88: Cannot go before first buffer" -msgstr "E88: лǵһ" - -#: ../buffer.c:945 -#, c-format -msgid "" -"E89: No write since last change for buffer %<PRId64> (add ! to override)" -msgstr "E89: %<PRId64> ĵδ ( ! ǿִ)" - -#. wrap around (may cause duplicates) -#: ../buffer.c:1423 -msgid "W14: Warning: List of file names overflow" -msgstr "W14: : ļ" - -#: ../buffer.c:1555 ../quickfix.c:3361 -#, c-format -msgid "E92: Buffer %<PRId64> not found" -msgstr "E92: Ҳ %<PRId64>" - -#: ../buffer.c:1798 -#, c-format -msgid "E93: More than one match for %s" -msgstr "E93: ҵֹһ %s" - -#: ../buffer.c:1800 -#, c-format -msgid "E94: No matching buffer for %s" -msgstr "E94: ûƥĻ %s" - -#: ../buffer.c:2161 -#, c-format -msgid "line %<PRId64>" -msgstr " %<PRId64> " - -#: ../buffer.c:2233 -msgid "E95: Buffer with this name already exists" -msgstr "E95: лʹø" - -#: ../buffer.c:2498 -msgid " [Modified]" -msgstr " []" - -#: ../buffer.c:2501 -msgid "[Not edited]" -msgstr "[δ༭]" - -#: ../buffer.c:2504 -msgid "[New file]" -msgstr "[ļ]" - -#: ../buffer.c:2505 -msgid "[Read errors]" -msgstr "[]" - -#: ../buffer.c:2506 ../buffer.c:3217 ../fileio.c:1807 ../screen.c:4895 -msgid "[RO]" -msgstr "[ֻ]" - -#: ../buffer.c:2507 ../fileio.c:1807 -msgid "[readonly]" -msgstr "[ֻ]" - -#: ../buffer.c:2524 -#, c-format -msgid "1 line --%d%%--" -msgstr "1 --%d%%--" - -#: ../buffer.c:2526 -#, c-format -msgid "%<PRId64> lines --%d%%--" -msgstr "%<PRId64> --%d%%--" - -#: ../buffer.c:2530 -#, c-format -msgid "line %<PRId64> of %<PRId64> --%d%%-- col " -msgstr " %<PRId64> / %<PRId64> --%d%%-- " - -#: ../buffer.c:2632 ../buffer.c:4292 ../memline.c:1554 -msgid "[No Name]" -msgstr "[δ]" - -#. must be a help buffer -#: ../buffer.c:2667 -msgid "help" -msgstr "" - -#: ../buffer.c:3225 ../screen.c:4883 -msgid "[Help]" -msgstr "[]" - -#: ../buffer.c:3254 ../screen.c:4887 -msgid "[Preview]" -msgstr "[Ԥ]" - -#: ../buffer.c:3528 -msgid "All" -msgstr "ȫ" - -#: ../buffer.c:3528 -msgid "Bot" -msgstr "" - -#: ../buffer.c:3531 -msgid "Top" -msgstr "" - -#: ../buffer.c:4244 -msgid "" -"\n" -"# Buffer list:\n" -msgstr "" -"\n" -"# б:\n" - -#: ../buffer.c:4289 -msgid "[Scratch]" -msgstr "" - -#: ../buffer.c:4529 -msgid "" -"\n" -"--- Signs ---" -msgstr "" -"\n" -"--- Signs ---" - -#: ../buffer.c:4538 -#, c-format -msgid "Signs for %s:" -msgstr "%s Signs:" - -#: ../buffer.c:4543 -#, c-format -msgid " line=%<PRId64> id=%d name=%s" -msgstr " =%<PRId64> id=%d =%s" - -#: ../cursor_shape.c:68 -msgid "E545: Missing colon" -msgstr "E545: ȱð" - -#: ../cursor_shape.c:70 ../cursor_shape.c:94 -msgid "E546: Illegal mode" -msgstr "E546: Чģʽ" - -#: ../cursor_shape.c:134 -msgid "E548: digit expected" -msgstr "E548: ˴Ҫ" - -#: ../cursor_shape.c:138 -msgid "E549: Illegal percentage" -msgstr "E549: Чİٷֱ" - -#: ../diff.c:146 -#, c-format -msgid "E96: Can not diff more than %<PRId64> buffers" -msgstr "E96: ܱȽ(diff) %<PRId64> ϵĻ" - -#: ../diff.c:753 -#, fuzzy -msgid "E810: Cannot read or write temp files" -msgstr "E557: termcap ļ" - -#: ../diff.c:755 -msgid "E97: Cannot create diffs" -msgstr "E97: diff" - -#: ../diff.c:966 -#, fuzzy -msgid "E816: Cannot read patch output" -msgstr "E98: ȡ diff " - -#: ../diff.c:1220 -msgid "E98: Cannot read diff output" -msgstr "E98: ȡ diff " - -#: ../diff.c:2081 -msgid "E99: Current buffer is not in diff mode" -msgstr "E99: ǰ diff ģʽ" - -#: ../diff.c:2100 -#, fuzzy -msgid "E793: No other buffer in diff mode is modifiable" -msgstr "E100: û diff ģʽĻ" - -#: ../diff.c:2102 -msgid "E100: No other buffer in diff mode" -msgstr "E100: û diff ģʽĻ" - -#: ../diff.c:2112 -msgid "E101: More than two buffers in diff mode, don't know which one to use" -msgstr "E101: ϵĻ diff ģʽܾһ" - -#: ../diff.c:2141 -#, c-format -msgid "E102: Can't find buffer \"%s\"" -msgstr "E102: Ҳ \"%s\"" - -#: ../diff.c:2152 -#, c-format -msgid "E103: Buffer \"%s\" is not in diff mode" -msgstr "E103: \"%s\" diff ģʽ" - -#: ../diff.c:2193 -msgid "E787: Buffer changed unexpectedly" -msgstr "E787: ظı˻" - -#: ../digraph.c:1598 -msgid "E104: Escape not allowed in digraph" -msgstr "E104: ַ(digraph)вʹ Escape" - -#: ../digraph.c:1760 -msgid "E544: Keymap file not found" -msgstr "E544: Ҳ Keymap ļ" - -#: ../digraph.c:1785 -msgid "E105: Using :loadkeymap not in a sourced file" -msgstr "E105: ڽűļʹ :loadkeymap " - -#: ../digraph.c:1821 -msgid "E791: Empty keymap entry" -msgstr "" - -#: ../edit.c:82 -msgid " Keyword completion (^N^P)" -msgstr " ؼֲȫ (^N^P)" - -#. ctrl_x_mode == 0, ^P/^N compl. -#: ../edit.c:83 -msgid " ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" -msgstr " ^X ģʽ (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" - -#: ../edit.c:85 -msgid " Whole line completion (^L^N^P)" -msgstr " вȫ (^L^N^P)" - -#: ../edit.c:86 -msgid " File name completion (^F^N^P)" -msgstr " ļȫ (^F^N^P)" - -#: ../edit.c:87 -msgid " Tag completion (^]^N^P)" -msgstr " Tag ȫ (^]^N^P)" - -#: ../edit.c:88 -#, fuzzy -msgid " Path pattern completion (^N^P)" -msgstr " ·ģʽȫ (^N^P)" - -#: ../edit.c:89 -msgid " Definition completion (^D^N^P)" -msgstr " 岹ȫ (^D^N^P)" - -#: ../edit.c:91 -msgid " Dictionary completion (^K^N^P)" -msgstr " Dictionary ȫ (^K^N^P)" - -#: ../edit.c:92 -msgid " Thesaurus completion (^T^N^P)" -msgstr " Thesaurus ȫ (^T^N^P)" - -#: ../edit.c:93 -msgid " Command-line completion (^V^N^P)" -msgstr " вȫ (^V^N^P)" - -#: ../edit.c:94 -msgid " User defined completion (^U^N^P)" -msgstr " ûԶ岹ȫ (^U^N^P)" - -#: ../edit.c:95 -msgid " Omni completion (^O^N^P)" -msgstr " ȫܲȫ (^O^N^P)" - -#: ../edit.c:96 -msgid " Spelling suggestion (s^N^P)" -msgstr " ƴд (s^N^P)" - -#: ../edit.c:97 -msgid " Keyword Local completion (^N^P)" -msgstr " ؼ־ֲȫ (^N^P)" - -#: ../edit.c:100 -msgid "Hit end of paragraph" -msgstr "ѵβ" - -#: ../edit.c:101 -msgid "E839: Completion function changed window" -msgstr "" - -#: ../edit.c:102 -msgid "E840: Completion function deleted text" -msgstr "" - -#: ../edit.c:1847 -msgid "'dictionary' option is empty" -msgstr "ѡ 'dictionary' Ϊ" - -#: ../edit.c:1848 -msgid "'thesaurus' option is empty" -msgstr "ѡ 'thesaurus' Ϊ" - -#: ../edit.c:2655 -#, c-format -msgid "Scanning dictionary: %s" -msgstr "ɨ dictionary: %s" - -#: ../edit.c:3079 -msgid " (insert) Scroll (^E/^Y)" -msgstr " () Scroll (^E/^Y)" - -#: ../edit.c:3081 -msgid " (replace) Scroll (^E/^Y)" -msgstr " (滻) Scroll (^E/^Y)" - -#: ../edit.c:3587 -#, c-format -msgid "Scanning: %s" -msgstr "ɨ: %s" - -#: ../edit.c:3614 -msgid "Scanning tags." -msgstr "ɨǩ." - -#: ../edit.c:4519 -msgid " Adding" -msgstr " " - -#. showmode might reset the internal line pointers, so it must -#. * be called before line = ml_get(), or when this address is no -#. * longer needed. -- Acevedo. -#. -#: ../edit.c:4562 -msgid "-- Searching..." -msgstr "-- ..." - -#: ../edit.c:4618 -msgid "Back at original" -msgstr "ص" - -#: ../edit.c:4621 -msgid "Word from other line" -msgstr "һеĴ" - -#: ../edit.c:4624 -msgid "The only match" -msgstr "Ψһƥ" - -#: ../edit.c:4680 -#, c-format -msgid "match %d of %d" -msgstr "ƥ %d / %d" - -#: ../edit.c:4684 -#, c-format -msgid "match %d" -msgstr "ƥ %d" - -#: ../eval.c:137 -msgid "E18: Unexpected characters in :let" -msgstr "E18: :let г쳣ַ" - -#: ../eval.c:138 -#, c-format -msgid "E684: list index out of range: %<PRId64>" -msgstr "E684: List Χ: %<PRId64>" - -#: ../eval.c:139 -#, c-format -msgid "E121: Undefined variable: %s" -msgstr "E121: δı: %s" - -#: ../eval.c:140 -msgid "E111: Missing ']'" -msgstr "E111: ȱ ']'" - -#: ../eval.c:141 -#, c-format -msgid "E686: Argument of %s must be a List" -msgstr "E686: %s IJ List" - -#: ../eval.c:143 -#, c-format -msgid "E712: Argument of %s must be a List or Dictionary" -msgstr "E712: %s IJ List Dictionary" - -#: ../eval.c:144 -msgid "E713: Cannot use empty key for Dictionary" -msgstr "E713: Dictionary ļΪ" - -#: ../eval.c:145 -msgid "E714: List required" -msgstr "E714: Ҫ List" - -#: ../eval.c:146 -msgid "E715: Dictionary required" -msgstr "E715: Ҫ Dictionary" - -#: ../eval.c:147 -#, c-format -msgid "E118: Too many arguments for function: %s" -msgstr "E118: IJ: %s" - -#: ../eval.c:148 -#, c-format -msgid "E716: Key not present in Dictionary: %s" -msgstr "E716: Dictionary вڼ: %s" - -#: ../eval.c:150 -#, c-format -msgid "E122: Function %s already exists, add ! to replace it" -msgstr "E122: %s Ѵڣ ! ǿ滻" - -#: ../eval.c:151 -msgid "E717: Dictionary entry already exists" -msgstr "E717: Dictionary Ѵ" - -#: ../eval.c:152 -msgid "E718: Funcref required" -msgstr "E718: Ҫ Funcref" - -#: ../eval.c:153 -msgid "E719: Cannot use [:] with a Dictionary" -msgstr "E719: ܶ Dictionary ʹ [:]" - -#: ../eval.c:154 -#, c-format -msgid "E734: Wrong variable type for %s=" -msgstr "E734: %s= ıͲȷ" - -#: ../eval.c:155 -#, c-format -msgid "E130: Unknown function: %s" -msgstr "E130: δ֪ĺ: %s" - -#: ../eval.c:156 -#, c-format -msgid "E461: Illegal variable name: %s" -msgstr "E461: Чı: %s" - -#: ../eval.c:157 -#, fuzzy -msgid "E806: using Float as a String" -msgstr "E730: List String ʹ" - -#: ../eval.c:1830 -msgid "E687: Less targets than List items" -msgstr "E687: Ŀ List " - -#: ../eval.c:1834 -msgid "E688: More targets than List items" -msgstr "E688: Ŀ List " - -#: ../eval.c:1906 -msgid "Double ; in list of variables" -msgstr "бг ;" - -#: ../eval.c:2078 -#, c-format -msgid "E738: Can't list variables for %s" -msgstr "E738: г %s ı" - -#: ../eval.c:2391 -msgid "E689: Can only index a List or Dictionary" -msgstr "E689: ֻ List Dictionary" - -#: ../eval.c:2396 -msgid "E708: [:] must come last" -msgstr "E708: [:] " - -#: ../eval.c:2439 -msgid "E709: [:] requires a List value" -msgstr "E709: [:] Ҫһ List ֵ" - -#: ../eval.c:2674 -msgid "E710: List value has more items than target" -msgstr "E710: List ֵĿ" - -#: ../eval.c:2678 -msgid "E711: List value has not enough items" -msgstr "E711: List ֵû㹻" - -#: ../eval.c:2867 -msgid "E690: Missing \"in\" after :for" -msgstr "E690: :for ȱ \"in\"" - -#: ../eval.c:3063 -#, c-format -msgid "E107: Missing parentheses: %s" -msgstr "E107: ȱ: %s" - -#: ../eval.c:3263 -#, c-format -msgid "E108: No such variable: \"%s\"" -msgstr "E108: ˱: \"%s\"" - -#: ../eval.c:3333 -msgid "E743: variable nested too deep for (un)lock" -msgstr "E743: (un)lock ıǶ" - -#: ../eval.c:3630 -msgid "E109: Missing ':' after '?'" -msgstr "E109: '?' ȱ ':'" - -#: ../eval.c:3893 -msgid "E691: Can only compare List with List" -msgstr "E691: ֻܱȽ List List" - -#: ../eval.c:3895 -msgid "E692: Invalid operation for Lists" -msgstr "E692: List ЧIJ" - -#: ../eval.c:3915 -msgid "E735: Can only compare Dictionary with Dictionary" -msgstr "E735: ֻܱȽ Dictionary Dictionary" - -#: ../eval.c:3917 -msgid "E736: Invalid operation for Dictionary" -msgstr "E736: Dictionary ЧIJ" - -#: ../eval.c:3932 -msgid "E693: Can only compare Funcref with Funcref" -msgstr "E693: ֻܱȽ Funcref Funcref" - -#: ../eval.c:3934 -msgid "E694: Invalid operation for Funcrefs" -msgstr "E694: Funcrefs ЧIJ" - -#: ../eval.c:4277 -#, fuzzy -msgid "E804: Cannot use '%' with Float" -msgstr "E719: ܶ Dictionary ʹ [:]" - -#: ../eval.c:4478 -msgid "E110: Missing ')'" -msgstr "E110: ȱ ')'" - -#: ../eval.c:4609 -msgid "E695: Cannot index a Funcref" -msgstr "E695: һ Funcref" - -#: ../eval.c:4839 -#, c-format -msgid "E112: Option name missing: %s" -msgstr "E112: ȱѡ: %s" - -#: ../eval.c:4855 -#, c-format -msgid "E113: Unknown option: %s" -msgstr "E113: δ֪ѡ: %s" - -#: ../eval.c:4904 -#, c-format -msgid "E114: Missing quote: %s" -msgstr "E114: ȱ: %s" - -#: ../eval.c:5020 -#, c-format -msgid "E115: Missing quote: %s" -msgstr "E115: ȱ: %s" - -#: ../eval.c:5084 -#, c-format -msgid "E696: Missing comma in List: %s" -msgstr "E696: List ȱٶ: %s" - -#: ../eval.c:5091 -#, c-format -msgid "E697: Missing end of List ']': %s" -msgstr "E697: List ȱٽ ']': %s" - -#: ../eval.c:6475 -#, c-format -msgid "E720: Missing colon in Dictionary: %s" -msgstr "E720: Dictionary ȱð: %s" - -#: ../eval.c:6499 -#, c-format -msgid "E721: Duplicate key in Dictionary: \"%s\"" -msgstr "E721: Dictionary гظļ: \"%s\"" - -#: ../eval.c:6517 -#, c-format -msgid "E722: Missing comma in Dictionary: %s" -msgstr "E722: Dictionary ȱٶ: %s" - -#: ../eval.c:6524 -#, c-format -msgid "E723: Missing end of Dictionary '}': %s" -msgstr "E723: Dictionary ȱٽ '}': %s" - -#: ../eval.c:6555 -msgid "E724: variable nested too deep for displaying" -msgstr "E724: Ƕʾ" - -#: ../eval.c:7188 -#, fuzzy, c-format -msgid "E740: Too many arguments for function %s" -msgstr "E118: IJ: %s" - -#: ../eval.c:7190 -#, fuzzy, c-format -msgid "E116: Invalid arguments for function %s" -msgstr "E118: IJ: %s" - -#: ../eval.c:7377 -#, fuzzy, c-format -msgid "E117: Unknown function: %s" -msgstr "E130: δ֪ĺ: %s" - -#: ../eval.c:7383 -#, c-format -msgid "E119: Not enough arguments for function: %s" -msgstr "E119: %s IJ̫" - -#: ../eval.c:7387 -#, c-format -msgid "E120: Using <SID> not in a script context: %s" -msgstr "E120: <SID> script ʹ: %s" - -#: ../eval.c:7391 -#, fuzzy, c-format -msgid "E725: Calling dict function without Dictionary: %s" -msgstr "E720: Dictionary ȱð: %s" - -#: ../eval.c:7453 -#, fuzzy -msgid "E808: Number or Float required" -msgstr "E521: = Ҫ" - -#: ../eval.c:7503 -#, fuzzy -msgid "add() argument" -msgstr "-c " - -#: ../eval.c:7907 -msgid "E699: Too many arguments" -msgstr "E699: " - -#: ../eval.c:8073 -msgid "E785: complete() can only be used in Insert mode" -msgstr "E785: complete() ֻڲģʽʹ" - -#: ../eval.c:8156 -msgid "&Ok" -msgstr "ȷ(&O)" - -#: ../eval.c:8676 -#, c-format -msgid "E737: Key already exists: %s" -msgstr "E737: Ѵ: %s" - -#: ../eval.c:8692 -#, fuzzy -msgid "extend() argument" -msgstr "--cmd " - -#: ../eval.c:8915 -#, fuzzy -msgid "map() argument" -msgstr "-c " - -#: ../eval.c:8916 -#, fuzzy -msgid "filter() argument" -msgstr "-c " - -#: ../eval.c:9229 -#, c-format -msgid "+-%s%3ld lines: " -msgstr "+-%s%3ld : " - -#: ../eval.c:9291 -#, c-format -msgid "E700: Unknown function: %s" -msgstr "E700: δ֪ĺ: %s" - -#: ../eval.c:10729 -msgid "called inputrestore() more often than inputsave()" -msgstr "inputrestore() ĵô inputsave()" - -#: ../eval.c:10771 -#, fuzzy -msgid "insert() argument" -msgstr "-c " - -#: ../eval.c:10841 -msgid "E786: Range not allowed" -msgstr "E786: ķΧ" - -#: ../eval.c:11140 -msgid "E701: Invalid type for len()" -msgstr "E701: len() Ч" - -#: ../eval.c:11980 -msgid "E726: Stride is zero" -msgstr "E726: Ϊ" - -#: ../eval.c:11982 -msgid "E727: Start past end" -msgstr "E727: ʼֵֵֹ" - -#: ../eval.c:12024 ../eval.c:15297 -msgid "<empty>" -msgstr "<>" - -#: ../eval.c:12282 -#, fuzzy -msgid "remove() argument" -msgstr "--cmd " - -#: ../eval.c:12466 -msgid "E655: Too many symbolic links (cycle?)" -msgstr "E655: ӹ(ѭ)" - -#: ../eval.c:12593 -#, fuzzy -msgid "reverse() argument" -msgstr "-c " - -#: ../eval.c:13721 -#, fuzzy -msgid "sort() argument" -msgstr "-c " - -#: ../eval.c:13721 -#, fuzzy -msgid "uniq() argument" -msgstr "-c " - -#: ../eval.c:13776 -msgid "E702: Sort compare function failed" -msgstr "E702: Sort ȽϺʧ" - -#: ../eval.c:13806 -#, fuzzy -msgid "E882: Uniq compare function failed" -msgstr "E702: Sort ȽϺʧ" - -#: ../eval.c:14085 -msgid "(Invalid)" -msgstr "(Ч)" - -#: ../eval.c:14590 -msgid "E677: Error writing temp file" -msgstr "E677: дʱļ" - -#: ../eval.c:16159 -#, fuzzy -msgid "E805: Using a Float as a Number" -msgstr "E745: List ʹ" - -#: ../eval.c:16162 -msgid "E703: Using a Funcref as a Number" -msgstr "E703: Funcref ʹ" - -#: ../eval.c:16170 -msgid "E745: Using a List as a Number" -msgstr "E745: List ʹ" - -#: ../eval.c:16173 -msgid "E728: Using a Dictionary as a Number" -msgstr "E728: Dictionary ʹ" - -#: ../eval.c:16259 -msgid "E729: using Funcref as a String" -msgstr "E729: Funcref String ʹ" - -#: ../eval.c:16262 -msgid "E730: using List as a String" -msgstr "E730: List String ʹ" - -#: ../eval.c:16265 -msgid "E731: using Dictionary as a String" -msgstr "E731: Dictionary String ʹ" - -#: ../eval.c:16619 -#, c-format -msgid "E706: Variable type mismatch for: %s" -msgstr "E706: Ͳƥ: %s" - -#: ../eval.c:16705 -#, fuzzy, c-format -msgid "E795: Cannot delete variable %s" -msgstr "E738: г %s ı" - -#: ../eval.c:16724 -#, c-format -msgid "E704: Funcref variable name must start with a capital: %s" -msgstr "E704: Funcref Դдĸͷ: %s" - -#: ../eval.c:16732 -#, c-format -msgid "E705: Variable name conflicts with existing function: %s" -msgstr "E705: кͻ: %s" - -#: ../eval.c:16763 -#, c-format -msgid "E741: Value is locked: %s" -msgstr "E741: ֵ: %s" - -#: ../eval.c:16764 ../eval.c:16769 ../message.c:1839 -msgid "Unknown" -msgstr "δ֪" - -#: ../eval.c:16768 -#, c-format -msgid "E742: Cannot change value of %s" -msgstr "E742: ı %s ֵ" - -#: ../eval.c:16838 -msgid "E698: variable nested too deep for making a copy" -msgstr "E698: Ƕ" - -#: ../eval.c:17249 -#, c-format -msgid "E123: Undefined function: %s" -msgstr "E123: %s δ" - -#: ../eval.c:17260 -#, c-format -msgid "E124: Missing '(': %s" -msgstr "E124: ȱ '(': %s" - -#: ../eval.c:17293 -#, fuzzy -msgid "E862: Cannot use g: here" -msgstr "E284: 趨 IC ֵ" - -#: ../eval.c:17312 -#, c-format -msgid "E125: Illegal argument: %s" -msgstr "E125: ЧIJ: %s" - -#: ../eval.c:17323 -#, fuzzy, c-format -msgid "E853: Duplicate argument name: %s" -msgstr "E125: ЧIJ: %s" - -#: ../eval.c:17416 -msgid "E126: Missing :endfunction" -msgstr "E126: ȱ :endfunction" - -#: ../eval.c:17537 -#, fuzzy, c-format -msgid "E707: Function name conflicts with variable: %s" -msgstr "E746: űļƥ: %s" - -#: ../eval.c:17549 -#, c-format -msgid "E127: Cannot redefine function %s: It is in use" -msgstr "E127: %s ʹУ¶" - -#: ../eval.c:17604 -#, c-format -msgid "E746: Function name does not match script file name: %s" -msgstr "E746: űļƥ: %s" - -#: ../eval.c:17716 -msgid "E129: Function name required" -msgstr "E129: Ҫ" - -#: ../eval.c:17824 -#, fuzzy, c-format -msgid "E128: Function name must start with a capital or \"s:\": %s" -msgstr "E128: Դдĸͷ߰ð: %s" - -#: ../eval.c:17833 -#, fuzzy, c-format -msgid "E884: Function name cannot contain a colon: %s" -msgstr "E128: Դдĸͷ߰ð: %s" - -#: ../eval.c:18336 -#, c-format -msgid "E131: Cannot delete function %s: It is in use" -msgstr "E131: ɾ %s: ʹ" - -#: ../eval.c:18441 -msgid "E132: Function call depth is higher than 'maxfuncdepth'" -msgstr "E132: ȳ 'maxfuncdepth'" - -#: ../eval.c:18568 -#, c-format -msgid "calling %s" -msgstr " %s" - -#: ../eval.c:18651 -#, c-format -msgid "%s aborted" -msgstr "%s ֹ" - -#: ../eval.c:18653 -#, c-format -msgid "%s returning #%<PRId64>" -msgstr "%s #%<PRId64> " - -#: ../eval.c:18670 -#, c-format -msgid "%s returning %s" -msgstr "%s %s" - -#: ../eval.c:18691 ../ex_cmds2.c:2695 -#, c-format -msgid "continuing in %s" -msgstr " %s м" - -#: ../eval.c:18795 -msgid "E133: :return not inside a function" -msgstr "E133: :return ں" - -#: ../eval.c:19159 -msgid "" -"\n" -"# global variables:\n" -msgstr "" -"\n" -"# ȫֱ:\n" - -#: ../eval.c:19254 -msgid "" -"\n" -"\tLast set from " -msgstr "" -"\n" -"\t " - -#: ../eval.c:19272 -#, fuzzy -msgid "No old files" -msgstr "ûаļ" - -#: ../ex_cmds.c:122 -#, c-format -msgid "<%s>%s%s %d, Hex %02x, Octal %03o" -msgstr "<%s>%s%s %d, ʮ %02x, ˽ %03o" - -#: ../ex_cmds.c:145 -#, c-format -msgid "> %d, Hex %04x, Octal %o" -msgstr "> %d, ʮ %04x, ˽ %o" - -#: ../ex_cmds.c:146 -#, c-format -msgid "> %d, Hex %08x, Octal %o" -msgstr "> %d, ʮ %08x, ˽ %o" - -#: ../ex_cmds.c:684 -msgid "E134: Move lines into themselves" -msgstr "E134: ƶ" - -#: ../ex_cmds.c:747 -msgid "1 line moved" -msgstr "ƶ 1 " - -#: ../ex_cmds.c:749 -#, c-format -msgid "%<PRId64> lines moved" -msgstr "ƶ %<PRId64> " - -#: ../ex_cmds.c:1175 -#, c-format -msgid "%<PRId64> lines filtered" -msgstr " %<PRId64> " - -#: ../ex_cmds.c:1194 -msgid "E135: *Filter* Autocommands must not change current buffer" -msgstr "E135: *Filter* ԶԸı䵱ǰ" - -#: ../ex_cmds.c:1244 -msgid "[No write since last change]\n" -msgstr "[ĵδ]\n" - -# bad to translate -#: ../ex_cmds.c:1424 -#, c-format -msgid "%sviminfo: %s in line: " -msgstr "%sviminfo: %s λ: " - -#: ../ex_cmds.c:1431 -msgid "E136: viminfo: Too many errors, skipping rest of file" -msgstr "E136: viminfo: ࣬ļʣಿ" - -#: ../ex_cmds.c:1458 -#, c-format -msgid "Reading viminfo file \"%s\"%s%s%s" -msgstr "ȡ viminfo ļ \"%s\"%s%s%s" - -#: ../ex_cmds.c:1460 -msgid " info" -msgstr " Ϣ" - -#: ../ex_cmds.c:1461 -msgid " marks" -msgstr " " - -#: ../ex_cmds.c:1462 -#, fuzzy -msgid " oldfiles" -msgstr "ûаļ" - -#: ../ex_cmds.c:1463 -msgid " FAILED" -msgstr " ʧ" - -#. avoid a wait_return for this message, it's annoying -#: ../ex_cmds.c:1541 -#, c-format -msgid "E137: Viminfo file is not writable: %s" -msgstr "E137: Viminfo ļд: %s" - -#: ../ex_cmds.c:1626 -#, c-format -msgid "E138: Can't write viminfo file %s!" -msgstr "E138: д viminfo ļ %s" - -#: ../ex_cmds.c:1635 -#, c-format -msgid "Writing viminfo file \"%s\"" -msgstr "д viminfo ļ \"%s\"" - -# do not translate to avoid writing Chinese in files -#. Write the info: -#: ../ex_cmds.c:1720 -#, fuzzy, c-format -msgid "# This viminfo file was generated by Vim %s.\n" -msgstr "# viminfo ļ Vim %s ɵġ\n" - -# do not translate to avoid writing Chinese in files -#: ../ex_cmds.c:1722 -#, fuzzy -msgid "" -"# You may edit it if you're careful!\n" -"\n" -msgstr "" -"# ҪرСģ\n" -"\n" - -# do not translate to avoid writing Chinese in files -#: ../ex_cmds.c:1723 -#, fuzzy -msgid "# Value of 'encoding' when this file was written\n" -msgstr "# 'encoding' ڴļʱֵ\n" - -#: ../ex_cmds.c:1800 -msgid "Illegal starting char" -msgstr "Чַ" - -#: ../ex_cmds.c:2162 -msgid "Write partial file?" -msgstr "Ҫд벿ļ" - -#: ../ex_cmds.c:2166 -msgid "E140: Use ! to write partial buffer" -msgstr "E140: ʹ ! д벿ֻ" - -#: ../ex_cmds.c:2281 -#, c-format -msgid "Overwrite existing file \"%s\"?" -msgstr "Ѵڵļ \"%s\" " - -#: ../ex_cmds.c:2317 -#, c-format -msgid "Swap file \"%s\" exists, overwrite anyway?" -msgstr "ļ \"%s\" ѴڣȷʵҪ" - -#: ../ex_cmds.c:2326 -#, c-format -msgid "E768: Swap file exists: %s (:silent! overrides)" -msgstr "E768: ļѴ: %s (:silent! ǿִ)" - -#: ../ex_cmds.c:2381 -#, c-format -msgid "E141: No file name for buffer %<PRId64>" -msgstr "E141: %<PRId64> ûļ" - -#: ../ex_cmds.c:2412 -msgid "E142: File not written: Writing is disabled by 'write' option" -msgstr "E142: ļδд: д뱻 'write' ѡ" - -#: ../ex_cmds.c:2434 -#, c-format -msgid "" -"'readonly' option is set for \"%s\".\n" -"Do you wish to write anyway?" -msgstr "" -"\"%s\" 趨 'readonly' ѡ\n" -"ȷʵҪ" - -#: ../ex_cmds.c:2439 -#, c-format -msgid "" -"File permissions of \"%s\" are read-only.\n" -"It may still be possible to write it.\n" -"Do you wish to try?" -msgstr "" - -#: ../ex_cmds.c:2451 -#, fuzzy, c-format -msgid "E505: \"%s\" is read-only (add ! to override)" -msgstr "ֻ ( ! ǿִ)" - -#: ../ex_cmds.c:3120 -#, c-format -msgid "E143: Autocommands unexpectedly deleted new buffer %s" -msgstr "E143: Զɾ» %s" - -#: ../ex_cmds.c:3313 -msgid "E144: non-numeric argument to :z" -msgstr "E144: :z ֵܷIJ" - -#: ../ex_cmds.c:3404 -msgid "E145: Shell commands not allowed in rvim" -msgstr "E145: rvim нֹʹ shell " - -#: ../ex_cmds.c:3498 -msgid "E146: Regular expressions can't be delimited by letters" -msgstr "E146: ʽĸֽ" - -#: ../ex_cmds.c:3964 -#, c-format -msgid "replace with %s (y/n/a/q/l/^E/^Y)?" -msgstr "滻Ϊ %s (y/n/a/q/l/^E/^Y)" - -#: ../ex_cmds.c:4379 -msgid "(Interrupted) " -msgstr "(ж) " - -#: ../ex_cmds.c:4384 -msgid "1 match" -msgstr "1 ƥ䣬" - -#: ../ex_cmds.c:4384 -msgid "1 substitution" -msgstr "1 滻" - -#: ../ex_cmds.c:4387 -#, c-format -msgid "%<PRId64> matches" -msgstr "%<PRId64> ƥ䣬" - -#: ../ex_cmds.c:4388 -#, c-format -msgid "%<PRId64> substitutions" -msgstr "%<PRId64> 滻" - -#: ../ex_cmds.c:4392 -msgid " on 1 line" -msgstr " 1 " - -#: ../ex_cmds.c:4395 -#, c-format -msgid " on %<PRId64> lines" -msgstr " %<PRId64> " - -#: ../ex_cmds.c:4438 -msgid "E147: Cannot do :global recursive" -msgstr "E147: :global ܵݹִ" - -#: ../ex_cmds.c:4467 -msgid "E148: Regular expression missing from global" -msgstr "E148: global ȱʽ" - -#: ../ex_cmds.c:4508 -#, c-format -msgid "Pattern found in every line: %s" -msgstr "ÿжƥʽ: %s" - -#: ../ex_cmds.c:4510 -#, fuzzy, c-format -msgid "Pattern not found: %s" -msgstr "Ҳģʽ" - -# do not translate to avoid writing Chinese in files -#: ../ex_cmds.c:4587 -#, fuzzy -msgid "" -"\n" -"# Last Substitute String:\n" -"$" -msgstr "" -"\n" -"# 滻ַ:\n" -"$" - -#: ../ex_cmds.c:4679 -msgid "E478: Don't panic!" -msgstr "E478: Ҫţ" - -#: ../ex_cmds.c:4717 -#, c-format -msgid "E661: Sorry, no '%s' help for %s" -msgstr "E661: Ǹû '%s' %s ˵" - -#: ../ex_cmds.c:4719 -#, c-format -msgid "E149: Sorry, no help for %s" -msgstr "E149: Ǹû %s ˵" - -#: ../ex_cmds.c:4751 -#, c-format -msgid "Sorry, help file \"%s\" not found" -msgstr "ǸҲļ \"%s\"" - -#: ../ex_cmds.c:5323 -#, c-format -msgid "E150: Not a directory: %s" -msgstr "E150: Ŀ¼: %s" - -#: ../ex_cmds.c:5446 -#, c-format -msgid "E152: Cannot open %s for writing" -msgstr "E152: д %s" - -#: ../ex_cmds.c:5471 -#, c-format -msgid "E153: Unable to open %s for reading" -msgstr "E153: ȡ %s" - -#: ../ex_cmds.c:5500 -#, c-format -msgid "E670: Mix of help file encodings within a language: %s" -msgstr "E670: һл˶ְļ: %s" - -#: ../ex_cmds.c:5565 -#, c-format -msgid "E154: Duplicate tag \"%s\" in file %s/%s" -msgstr "E154: Tag \"%s\" ļ %s/%s ظ" - -#: ../ex_cmds.c:5687 -#, c-format -msgid "E160: Unknown sign command: %s" -msgstr "E160: δ֪ sign : %s" - -#: ../ex_cmds.c:5704 -msgid "E156: Missing sign name" -msgstr "E156: ȱ sign " - -#: ../ex_cmds.c:5746 -msgid "E612: Too many signs defined" -msgstr "E612: Signs " - -#: ../ex_cmds.c:5813 -#, c-format -msgid "E239: Invalid sign text: %s" -msgstr "E239: Ч sign : %s" - -#: ../ex_cmds.c:5844 ../ex_cmds.c:6035 -#, c-format -msgid "E155: Unknown sign: %s" -msgstr "E155: δ֪ sign: %s" - -#: ../ex_cmds.c:5877 -msgid "E159: Missing sign number" -msgstr "E159: ȱ sign " - -#: ../ex_cmds.c:5971 -#, c-format -msgid "E158: Invalid buffer name: %s" -msgstr "E158: ЧĻ: %s" - -#: ../ex_cmds.c:6008 -#, c-format -msgid "E157: Invalid sign ID: %<PRId64>" -msgstr "E157: Ч sign ID: %<PRId64>" - -#: ../ex_cmds.c:6066 -msgid " (not supported)" -msgstr " (֧)" - -#: ../ex_cmds.c:6169 -msgid "[Deleted]" -msgstr "[ɾ]" - -#: ../ex_cmds2.c:139 -msgid "Entering Debug mode. Type \"cont\" to continue." -msgstr "ģʽ \"cont\" С" - -#: ../ex_cmds2.c:143 ../ex_docmd.c:759 -#, c-format -msgid "line %<PRId64>: %s" -msgstr " %<PRId64> : %s" - -#: ../ex_cmds2.c:145 -#, c-format -msgid "cmd: %s" -msgstr ": %s" - -#: ../ex_cmds2.c:322 -#, c-format -msgid "Breakpoint in \"%s%s\" line %<PRId64>" -msgstr "ϵ \"%s%s\" %<PRId64> " - -#: ../ex_cmds2.c:581 -#, c-format -msgid "E161: Breakpoint not found: %s" -msgstr "E161: Ҳϵ: %s" - -#: ../ex_cmds2.c:611 -msgid "No breakpoints defined" -msgstr "ûжϵ" - -#: ../ex_cmds2.c:617 -#, c-format -msgid "%3d %s %s line %<PRId64>" -msgstr "%3d %s %s %<PRId64> " - -#: ../ex_cmds2.c:942 -#, fuzzy -msgid "E750: First use \":profile start {fname}\"" -msgstr "E750: ʹ :profile start <fname>" - -#: ../ex_cmds2.c:1269 -#, c-format -msgid "Save changes to \"%s\"?" -msgstr "ı䱣浽 \"%s\" " - -#: ../ex_cmds2.c:1271 ../ex_docmd.c:8851 -msgid "Untitled" -msgstr "δ" - -#: ../ex_cmds2.c:1421 -#, c-format -msgid "E162: No write since last change for buffer \"%s\"" -msgstr "E162: \"%s\" ĵδ" - -#: ../ex_cmds2.c:1480 -msgid "Warning: Entered other buffer unexpectedly (check autocommands)" -msgstr ": ؽ (Զ)" - -#: ../ex_cmds2.c:1826 -msgid "E163: There is only one file to edit" -msgstr "E163: ֻһļɱ༭" - -#: ../ex_cmds2.c:1828 -msgid "E164: Cannot go before first file" -msgstr "E164: лǵһļ" - -#: ../ex_cmds2.c:1830 -msgid "E165: Cannot go beyond last file" -msgstr "E165: лһļ" - -#: ../ex_cmds2.c:2175 -#, c-format -msgid "E666: compiler not supported: %s" -msgstr "E666: ֱ֧: %s" - -#: ../ex_cmds2.c:2257 -#, c-format -msgid "Searching for \"%s\" in \"%s\"" -msgstr "ڲ \"%s\" \"%s\" " - -#: ../ex_cmds2.c:2284 -#, c-format -msgid "Searching for \"%s\"" -msgstr "ڲ \"%s\"" - -#: ../ex_cmds2.c:2307 -#, c-format -msgid "not found in 'runtimepath': \"%s\"" -msgstr " 'runtimepath' Ҳ \"%s\"" - -#: ../ex_cmds2.c:2472 -#, c-format -msgid "Cannot source a directory: \"%s\"" -msgstr "ִĿ¼: \"%s\"" - -#: ../ex_cmds2.c:2518 -#, c-format -msgid "could not source \"%s\"" -msgstr "ִ \"%s\"" - -#: ../ex_cmds2.c:2520 -#, c-format -msgid "line %<PRId64>: could not source \"%s\"" -msgstr " %<PRId64> : ִ \"%s\"" - -#: ../ex_cmds2.c:2535 -#, c-format -msgid "sourcing \"%s\"" -msgstr "ִ \"%s\"" - -#: ../ex_cmds2.c:2537 -#, c-format -msgid "line %<PRId64>: sourcing \"%s\"" -msgstr " %<PRId64> : ִ \"%s\"" - -#: ../ex_cmds2.c:2693 -#, c-format -msgid "finished sourcing %s" -msgstr "ִ %s" - -#: ../ex_cmds2.c:2765 -msgid "modeline" -msgstr "modeline" - -#: ../ex_cmds2.c:2767 -msgid "--cmd argument" -msgstr "--cmd " - -#: ../ex_cmds2.c:2769 -msgid "-c argument" -msgstr "-c " - -#: ../ex_cmds2.c:2771 -msgid "environment variable" -msgstr "" - -#: ../ex_cmds2.c:2773 -msgid "error handler" -msgstr "" - -#: ../ex_cmds2.c:3020 -msgid "W15: Warning: Wrong line separator, ^M may be missing" -msgstr "W15: : зָ ^M" - -#: ../ex_cmds2.c:3139 -msgid "E167: :scriptencoding used outside of a sourced file" -msgstr "E167: ڽűļʹ :scriptencoding" - -#: ../ex_cmds2.c:3166 -msgid "E168: :finish used outside of a sourced file" -msgstr "E168: ڽűļʹ :finish" - -#: ../ex_cmds2.c:3389 -#, c-format -msgid "Current %slanguage: \"%s\"" -msgstr "ǰ %s: \"%s\"" - -#: ../ex_cmds2.c:3404 -#, c-format -msgid "E197: Cannot set language to \"%s\"" -msgstr "E197: 趨Ϊ \"%s\"" - -#. don't redisplay the window -#. don't wait for return -#: ../ex_docmd.c:387 -msgid "Entering Ex mode. Type \"visual\" to go to Normal mode." -msgstr " Ex ģʽ \"visual\" صģʽ" - -#: ../ex_docmd.c:428 -msgid "E501: At end-of-file" -msgstr "E501: ѵļĩβ" - -#: ../ex_docmd.c:513 -msgid "E169: Command too recursive" -msgstr "E169: ݹ" - -#: ../ex_docmd.c:1006 -#, c-format -msgid "E605: Exception not caught: %s" -msgstr "E605: 쳣ûб: %s" - -#: ../ex_docmd.c:1085 -msgid "End of sourced file" -msgstr "űļ" - -#: ../ex_docmd.c:1086 -msgid "End of function" -msgstr "" - -#: ../ex_docmd.c:1628 -msgid "E464: Ambiguous use of user-defined command" -msgstr "E464: ȷûԶ" - -#: ../ex_docmd.c:1638 -msgid "E492: Not an editor command" -msgstr "E492: DZ༭" - -#: ../ex_docmd.c:1729 -msgid "E493: Backwards range given" -msgstr "E493: ʹķΧ" - -#: ../ex_docmd.c:1733 -msgid "Backwards range given, OK to swap" -msgstr "ʹķΧȷ" - -#. append -#. typed wrong -#: ../ex_docmd.c:1787 -msgid "E494: Use w or w>>" -msgstr "E494: ʹ w w>>" - -#: ../ex_docmd.c:3454 -msgid "E319: The command is not available in this version" -msgstr "E319: Ǹڴ˰汾в" - -#: ../ex_docmd.c:3752 -msgid "E172: Only one file name allowed" -msgstr "E172: ֻһļ" - -#: ../ex_docmd.c:4238 -msgid "1 more file to edit. Quit anyway?" -msgstr " 1 ļδ༭ȷʵҪ˳" - -#: ../ex_docmd.c:4242 -#, c-format -msgid "%d more files to edit. Quit anyway?" -msgstr " %d ļδ༭ȷʵҪ˳" - -#: ../ex_docmd.c:4248 -msgid "E173: 1 more file to edit" -msgstr "E173: 1 ļδ༭" - -#: ../ex_docmd.c:4250 -#, c-format -msgid "E173: %<PRId64> more files to edit" -msgstr "E173: %<PRId64> ļδ༭" - -#: ../ex_docmd.c:4320 -msgid "E174: Command already exists: add ! to replace it" -msgstr "E174: Ѵ: ! ǿ滻" - -#: ../ex_docmd.c:4432 -msgid "" -"\n" -" Name Args Range Complete Definition" -msgstr "" -"\n" -" Χ ȫ " - -#: ../ex_docmd.c:4516 -msgid "No user-defined commands found" -msgstr "ҲûԶ" - -#: ../ex_docmd.c:4538 -msgid "E175: No attribute specified" -msgstr "E175: ûָ" - -#: ../ex_docmd.c:4583 -msgid "E176: Invalid number of arguments" -msgstr "E176: ЧIJ" - -#: ../ex_docmd.c:4594 -msgid "E177: Count cannot be specified twice" -msgstr "E177: ָμ" - -#: ../ex_docmd.c:4603 -msgid "E178: Invalid default value for count" -msgstr "E178: ЧļĬֵ" - -#: ../ex_docmd.c:4625 -msgid "E179: argument required for -complete" -msgstr "E179: -complete Ҫ" - -#: ../ex_docmd.c:4635 -#, c-format -msgid "E181: Invalid attribute: %s" -msgstr "E181: Ч: %s" - -#: ../ex_docmd.c:4678 -msgid "E182: Invalid command name" -msgstr "E182: Ч" - -#: ../ex_docmd.c:4691 -msgid "E183: User defined commands must start with an uppercase letter" -msgstr "E183: ûԶԴдĸͷ" - -#: ../ex_docmd.c:4696 -#, fuzzy -msgid "E841: Reserved name, cannot be used for user defined command" -msgstr "E464: ȷûԶ" - -#: ../ex_docmd.c:4751 -#, c-format -msgid "E184: No such user-defined command: %s" -msgstr "E184: ûûԶ: %s" - -#: ../ex_docmd.c:5219 -#, c-format -msgid "E180: Invalid complete value: %s" -msgstr "E180: ЧIJȫ: %s" - -#: ../ex_docmd.c:5225 -msgid "E468: Completion argument only allowed for custom completion" -msgstr "E468: ֻ custom ȫ" - -#: ../ex_docmd.c:5231 -msgid "E467: Custom completion requires a function argument" -msgstr "E467: Custom ȫҪһ" - -#: ../ex_docmd.c:5257 -#, fuzzy, c-format -msgid "E185: Cannot find color scheme '%s'" -msgstr "E185: Ҳɫ %s" - -#: ../ex_docmd.c:5263 -msgid "Greetings, Vim user!" -msgstr "ãVim û" - -#: ../ex_docmd.c:5431 -msgid "E784: Cannot close last tab page" -msgstr "E784: ܹرһ tab ҳ" - -#: ../ex_docmd.c:5462 -msgid "Already only one tab page" -msgstr "Ѿֻʣһ tab ҳ" - -#: ../ex_docmd.c:6004 -#, c-format -msgid "Tab page %d" -msgstr "Tab ҳ %d" - -#: ../ex_docmd.c:6295 -msgid "No swap file" -msgstr "ļ" - -#: ../ex_docmd.c:6478 -msgid "E747: Cannot change directory, buffer is modified (add ! to override)" -msgstr "E747: ܸıĿ¼ ( ! ǿִ)" - -#: ../ex_docmd.c:6485 -msgid "E186: No previous directory" -msgstr "E186: ǰһĿ¼" - -#: ../ex_docmd.c:6530 -msgid "E187: Unknown" -msgstr "E187: δ֪" - -#: ../ex_docmd.c:6610 -msgid "E465: :winsize requires two number arguments" -msgstr "E465: :winsize Ҫֲ" - -#: ../ex_docmd.c:6655 -msgid "E188: Obtaining window position not implemented for this platform" -msgstr "E188: ڴƽ̨ϲܻôλ" - -#: ../ex_docmd.c:6662 -msgid "E466: :winpos requires two number arguments" -msgstr "E466: :winpos Ҫֲ" - -#: ../ex_docmd.c:7241 -#, c-format -msgid "E739: Cannot create directory: %s" -msgstr "E739: Ŀ¼: %s" - -#: ../ex_docmd.c:7268 -#, c-format -msgid "E189: \"%s\" exists (add ! to override)" -msgstr "E189: \"%s\" Ѵ ( ! ǿִ)" - -#: ../ex_docmd.c:7273 -#, c-format -msgid "E190: Cannot open \"%s\" for writing" -msgstr "E190: д \"%s\"" - -#. set mark -#: ../ex_docmd.c:7294 -msgid "E191: Argument must be a letter or forward/backward quote" -msgstr "E191: һĸ/" - -#: ../ex_docmd.c:7333 -msgid "E192: Recursive use of :normal too deep" -msgstr "E192: :normal ݹ" - -#: ../ex_docmd.c:7807 -msgid "E194: No alternate file name to substitute for '#'" -msgstr "E194: û滻 '#' Ľļ" - -#: ../ex_docmd.c:7841 -msgid "E495: no autocommand file name to substitute for \"<afile>\"" -msgstr "E495: û滻 \"<afile>\" Զļ" - -#: ../ex_docmd.c:7850 -msgid "E496: no autocommand buffer number to substitute for \"<abuf>\"" -msgstr "E496: û滻 \"<abuf>\" Զ" - -#: ../ex_docmd.c:7861 -msgid "E497: no autocommand match name to substitute for \"<amatch>\"" -msgstr "E497: û滻 \"<amatch>\" Զƥ" - -#: ../ex_docmd.c:7870 -msgid "E498: no :source file name to substitute for \"<sfile>\"" -msgstr "E498: û滻 \"<sfile>\" :source ļ" - -#: ../ex_docmd.c:7876 -#, fuzzy -msgid "E842: no line number to use for \"<slnum>\"" -msgstr "E498: û滻 \"<sfile>\" :source ļ" - -#: ../ex_docmd.c:7903 -#, fuzzy, c-format -msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" -msgstr "E499: '%' '#' Ϊļֻ \":p:h\"" - -#: ../ex_docmd.c:7905 -msgid "E500: Evaluates to an empty string" -msgstr "E500: Ϊַ" - -#: ../ex_docmd.c:8838 -msgid "E195: Cannot open viminfo file for reading" -msgstr "E195: ȡ viminfo ļ" - -#: ../ex_eval.c:464 -msgid "E608: Cannot :throw exceptions with 'Vim' prefix" -msgstr "E608: :throw ǰΪ 'Vim' 쳣" - -#. always scroll up, don't overwrite -#: ../ex_eval.c:496 -#, c-format -msgid "Exception thrown: %s" -msgstr "׳쳣: %s" - -#: ../ex_eval.c:545 -#, c-format -msgid "Exception finished: %s" -msgstr "쳣: %s" - -#: ../ex_eval.c:546 -#, c-format -msgid "Exception discarded: %s" -msgstr "쳣: %s" - -#: ../ex_eval.c:588 ../ex_eval.c:634 -#, c-format -msgid "%s, line %<PRId64>" -msgstr "%s %<PRId64> " - -#. always scroll up, don't overwrite -#: ../ex_eval.c:608 -#, c-format -msgid "Exception caught: %s" -msgstr "쳣: %s" - -#: ../ex_eval.c:676 -#, c-format -msgid "%s made pending" -msgstr "" - -#: ../ex_eval.c:679 -#, fuzzy, c-format -msgid "%s resumed" -msgstr " ѷ\n" - -#: ../ex_eval.c:683 -#, c-format -msgid "%s discarded" -msgstr "" - -#: ../ex_eval.c:708 -msgid "Exception" -msgstr "쳣" - -#: ../ex_eval.c:713 -msgid "Error and interrupt" -msgstr "ж" - -#: ../ex_eval.c:715 -msgid "Error" -msgstr "" - -#. if (pending & CSTP_INTERRUPT) -#: ../ex_eval.c:717 -msgid "Interrupt" -msgstr "ж" - -#: ../ex_eval.c:795 -msgid "E579: :if nesting too deep" -msgstr "E579: :if Ƕײ" - -#: ../ex_eval.c:830 -msgid "E580: :endif without :if" -msgstr "E580: :endif ȱٶӦ :if" - -#: ../ex_eval.c:873 -msgid "E581: :else without :if" -msgstr "E581: :else ȱٶӦ :if" - -#: ../ex_eval.c:876 -msgid "E582: :elseif without :if" -msgstr "E582: :elseif ȱٶӦ :if" - -#: ../ex_eval.c:880 -msgid "E583: multiple :else" -msgstr "E583: :else" - -#: ../ex_eval.c:883 -msgid "E584: :elseif after :else" -msgstr "E584: :elseif :else " - -#: ../ex_eval.c:941 -msgid "E585: :while/:for nesting too deep" -msgstr "E585: :while/:for Ƕײ" - -#: ../ex_eval.c:1028 -msgid "E586: :continue without :while or :for" -msgstr "E586: :continue ȱٶӦ :while :for" - -#: ../ex_eval.c:1061 -msgid "E587: :break without :while or :for" -msgstr "E587: :break ȱٶӦ :while :for" - -#: ../ex_eval.c:1102 -msgid "E732: Using :endfor with :while" -msgstr "E732: :while :endfor β" - -#: ../ex_eval.c:1104 -msgid "E733: Using :endwhile with :for" -msgstr "E733: :for :endwhile β" - -#: ../ex_eval.c:1247 -msgid "E601: :try nesting too deep" -msgstr "E601: :try Ƕײ" - -#: ../ex_eval.c:1317 -msgid "E603: :catch without :try" -msgstr "E603: :catch ȱٶӦ :try" - -#. Give up for a ":catch" after ":finally" and ignore it. -#. * Just parse. -#: ../ex_eval.c:1332 -msgid "E604: :catch after :finally" -msgstr "E604: :catch :finally " - -#: ../ex_eval.c:1451 -msgid "E606: :finally without :try" -msgstr "E606: :finally ȱٶӦ :try" - -#. Give up for a multiple ":finally" and ignore it. -#: ../ex_eval.c:1467 -msgid "E607: multiple :finally" -msgstr "E607: :finally" - -#: ../ex_eval.c:1571 -msgid "E602: :endtry without :try" -msgstr "E602: :endtry ȱٶӦ :try" - -#: ../ex_eval.c:2026 -msgid "E193: :endfunction not inside a function" -msgstr "E193: :endfunction ں" - -#: ../ex_getln.c:1643 -msgid "E788: Not allowed to edit another buffer now" -msgstr "E788: Ŀǰ༭Ļ" - -#: ../ex_getln.c:1656 -#, fuzzy -msgid "E811: Not allowed to change buffer information now" -msgstr "E788: Ŀǰ༭Ļ" - -#: ../ex_getln.c:3178 -msgid "tagname" -msgstr "tag " - -#: ../ex_getln.c:3181 -msgid " kind file\n" -msgstr " ļ\n" - -#: ../ex_getln.c:4799 -msgid "'history' option is zero" -msgstr "ѡ 'history' Ϊ" - -# do not translate to avoid writing Chinese in files -#: ../ex_getln.c:5046 -#, fuzzy, c-format -msgid "" -"\n" -"# %s History (newest to oldest):\n" -msgstr "" -"\n" -"# %s ʷ¼ (µ):\n" - -# do not translate to avoid writing Chinese in files -#: ../ex_getln.c:5047 -#, fuzzy -msgid "Command Line" -msgstr "" - -# do not translate to avoid writing Chinese in files -#: ../ex_getln.c:5048 -#, fuzzy -msgid "Search String" -msgstr "ַ" - -# do not translate to avoid writing Chinese in files -#: ../ex_getln.c:5049 -#, fuzzy -msgid "Expression" -msgstr "ʽ" - -# do not translate to avoid writing Chinese in files -#: ../ex_getln.c:5050 -#, fuzzy -msgid "Input Line" -msgstr "" - -#: ../ex_getln.c:5117 -msgid "E198: cmd_pchar beyond the command length" -msgstr "E198: cmd_pchar " - -#: ../ex_getln.c:5279 -msgid "E199: Active window or buffer deleted" -msgstr "E199: ڻѱɾ" - -#: ../file_search.c:203 -msgid "E854: path too long for completion" -msgstr "" - -#: ../file_search.c:446 -#, c-format -msgid "" -"E343: Invalid path: '**[number]' must be at the end of the path or be " -"followed by '%s'." -msgstr "E343: Ч·: '**[number]' ·ĩβߺ '%s'" - -#: ../file_search.c:1505 -#, c-format -msgid "E344: Can't find directory \"%s\" in cdpath" -msgstr "E344: cdpath ҲĿ¼ \"%s\"" - -#: ../file_search.c:1508 -#, c-format -msgid "E345: Can't find file \"%s\" in path" -msgstr "E345: ·Ҳļ \"%s\"" - -#: ../file_search.c:1512 -#, c-format -msgid "E346: No more directory \"%s\" found in cdpath" -msgstr "E346: ·Ҳļ \"%s\"" - -#: ../file_search.c:1515 -#, c-format -msgid "E347: No more file \"%s\" found in path" -msgstr "E347: ·Ҳļ \"%s\"" - -#: ../fileio.c:137 -#, fuzzy -msgid "E812: Autocommands changed buffer or buffer name" -msgstr "E135: *Filter* ԶԸı䵱ǰ" - -#: ../fileio.c:368 -msgid "Illegal file name" -msgstr "Чļ" - -#: ../fileio.c:395 ../fileio.c:476 ../fileio.c:2543 ../fileio.c:2578 -msgid "is a directory" -msgstr "Ŀ¼" - -#: ../fileio.c:397 -msgid "is not a file" -msgstr "ļ" - -#: ../fileio.c:508 ../fileio.c:3522 -msgid "[New File]" -msgstr "[ļ]" - -#: ../fileio.c:511 -msgid "[New DIRECTORY]" -msgstr "[Ŀ¼]" - -#: ../fileio.c:529 ../fileio.c:532 -msgid "[File too big]" -msgstr "[ļ]" - -#: ../fileio.c:534 -msgid "[Permission Denied]" -msgstr "[Ȩ]" - -#: ../fileio.c:653 -msgid "E200: *ReadPre autocommands made the file unreadable" -msgstr "E200: *ReadPre Զļɶ" - -#: ../fileio.c:655 -msgid "E201: *ReadPre autocommands must not change current buffer" -msgstr "E201: *ReadPre Զı䵱ǰ" - -#: ../fileio.c:672 -msgid "Nvim: Reading from stdin...\n" -msgstr "Vim: ӱȡ...\n" - -#. Re-opening the original file failed! -#: ../fileio.c:909 -msgid "E202: Conversion made file unreadable!" -msgstr "E202: תļɶ" - -#. fifo or socket -#: ../fileio.c:1782 -msgid "[fifo/socket]" -msgstr "[fifo/socket]" - -#. fifo -#: ../fileio.c:1788 -msgid "[fifo]" -msgstr "[fifo]" - -#. or socket -#: ../fileio.c:1794 -msgid "[socket]" -msgstr "[socket]" - -#. or character special -#: ../fileio.c:1801 -#, fuzzy -msgid "[character special]" -msgstr "1 ַ" - -#: ../fileio.c:1815 -msgid "[CR missing]" -msgstr "[ȱ CR]'" - -#: ../fileio.c:1819 -msgid "[long lines split]" -msgstr "[зָ]" - -#: ../fileio.c:1823 ../fileio.c:3512 -msgid "[NOT converted]" -msgstr "[δת]" - -#: ../fileio.c:1826 ../fileio.c:3515 -msgid "[converted]" -msgstr "[ת]" - -#: ../fileio.c:1831 -#, c-format -msgid "[CONVERSION ERROR in line %<PRId64>]" -msgstr "[ %<PRId64> ת]" - -#: ../fileio.c:1835 -#, c-format -msgid "[ILLEGAL BYTE in line %<PRId64>]" -msgstr "[ %<PRId64> Чַ]" - -#: ../fileio.c:1838 -msgid "[READ ERRORS]" -msgstr "[]" - -#: ../fileio.c:2104 -msgid "Can't find temp file for conversion" -msgstr "Ҳתʱļ" - -#: ../fileio.c:2110 -msgid "Conversion with 'charconvert' failed" -msgstr "'charconvert' תʧ" - -#: ../fileio.c:2113 -msgid "can't read output of 'charconvert'" -msgstr "ȡ 'charconvert' " - -#: ../fileio.c:2437 -msgid "E676: No matching autocommands for acwrite buffer" -msgstr "E676: Ҳ acwrite ӦԶ" - -#: ../fileio.c:2466 -msgid "E203: Autocommands deleted or unloaded buffer to be written" -msgstr "E203: ԶɾͷҪдĻ" - -#: ../fileio.c:2486 -msgid "E204: Autocommand changed number of lines in unexpected way" -msgstr "E204: Զظı" - -#: ../fileio.c:2548 ../fileio.c:2565 -msgid "is not a file or writable device" -msgstr "ļд豸" - -#: ../fileio.c:2601 -msgid "is read-only (add ! to override)" -msgstr "ֻ ( ! ǿִ)" - -#: ../fileio.c:2886 -msgid "E506: Can't write to backup file (add ! to override)" -msgstr "E506: д뱸ļ ( ! ǿִ)" - -#: ../fileio.c:2898 -msgid "E507: Close error for backup file (add ! to override)" -msgstr "E507: رձļ ( ! ǿִ)" - -#: ../fileio.c:2901 -msgid "E508: Can't read file for backup (add ! to override)" -msgstr "E508: ȡļԹ ( ! ǿִ)" - -#: ../fileio.c:2923 -msgid "E509: Cannot create backup file (add ! to override)" -msgstr "E509: ļ ( ! ǿִ)" - -#: ../fileio.c:3008 -msgid "E510: Can't make backup file (add ! to override)" -msgstr "E510: ɱļ ( ! ǿִ)" - -#. Can't write without a tempfile! -#: ../fileio.c:3121 -msgid "E214: Can't find temp file for writing" -msgstr "E214: Ҳдʱļ" - -#: ../fileio.c:3134 -msgid "E213: Cannot convert (add ! to write without conversion)" -msgstr "E213: ת ( ! ǿƲתд)" - -#: ../fileio.c:3169 -msgid "E166: Can't open linked file for writing" -msgstr "E166: дļ" - -#: ../fileio.c:3173 -msgid "E212: Can't open file for writing" -msgstr "E212: дļ" - -#: ../fileio.c:3363 -msgid "E667: Fsync failed" -msgstr "E667: ͬʧ" - -#: ../fileio.c:3398 -msgid "E512: Close failed" -msgstr "E512: رʧ" - -#: ../fileio.c:3436 -msgid "E513: write error, conversion failed (make 'fenc' empty to override)" -msgstr "E513: дתʧ (뽫 'fenc' ÿǿִ)" - -#: ../fileio.c:3441 -#, fuzzy, c-format -msgid "" -"E513: write error, conversion failed in line %<PRId64> (make 'fenc' empty to " -"override)" -msgstr "E513: дתʧ (뽫 'fenc' ÿǿִ)" - -#: ../fileio.c:3448 -msgid "E514: write error (file system full?)" -msgstr "E514: д (ļϵͳ)" - -#: ../fileio.c:3506 -msgid " CONVERSION ERROR" -msgstr " ת" - -#: ../fileio.c:3509 -#, fuzzy, c-format -msgid " in line %<PRId64>;" -msgstr " %<PRId64> " - -#: ../fileio.c:3519 -msgid "[Device]" -msgstr "[豸]" - -#: ../fileio.c:3522 -msgid "[New]" -msgstr "[]" - -#: ../fileio.c:3535 -msgid " [a]" -msgstr " [a]" - -#: ../fileio.c:3535 -msgid " appended" -msgstr " " - -#: ../fileio.c:3537 -msgid " [w]" -msgstr " [w]" - -#: ../fileio.c:3537 -msgid " written" -msgstr " д" - -#: ../fileio.c:3579 -msgid "E205: Patchmode: can't save original file" -msgstr "E205: Patchmode: ԭʼļ" - -#: ../fileio.c:3602 -msgid "E206: patchmode: can't touch empty original file" -msgstr "E206: Patchmode: ɿյԭʼļ" - -#: ../fileio.c:3616 -msgid "E207: Can't delete backup file" -msgstr "E207: ɾļ" - -#: ../fileio.c:3672 -msgid "" -"\n" -"WARNING: Original file may be lost or damaged\n" -msgstr "" -"\n" -": ԭʼļѶʧ\n" - -#: ../fileio.c:3675 -msgid "don't quit the editor until the file is successfully written!" -msgstr "ļȷдǰ˳༭" - -#: ../fileio.c:3795 -msgid "[dos]" -msgstr "[dos]" - -#: ../fileio.c:3795 -msgid "[dos format]" -msgstr "[dos ʽ]" - -#: ../fileio.c:3801 -msgid "[mac]" -msgstr "[mac]" - -#: ../fileio.c:3801 -msgid "[mac format]" -msgstr "[mac ʽ]" - -#: ../fileio.c:3807 -msgid "[unix]" -msgstr "[unix]" - -#: ../fileio.c:3807 -msgid "[unix format]" -msgstr "[unix ʽ]" - -#: ../fileio.c:3831 -msgid "1 line, " -msgstr "1 У" - -#: ../fileio.c:3833 -#, c-format -msgid "%<PRId64> lines, " -msgstr "%<PRId64> У" - -#: ../fileio.c:3836 -msgid "1 character" -msgstr "1 ַ" - -#: ../fileio.c:3838 -#, c-format -msgid "%<PRId64> characters" -msgstr "%<PRId64> ַ" - -#: ../fileio.c:3849 -msgid "[noeol]" -msgstr "[noeol]" - -#: ../fileio.c:3849 -msgid "[Incomplete last line]" -msgstr "[һв]" - -#. don't overwrite messages here -#. must give this prompt -#. don't use emsg() here, don't want to flush the buffers -#: ../fileio.c:3865 -msgid "WARNING: The file has been changed since reading it!!!" -msgstr ": ļԶѷ䶯" - -#: ../fileio.c:3867 -msgid "Do you really want to write to it" -msgstr "ȷʵҪд" - -#: ../fileio.c:4648 -#, c-format -msgid "E208: Error writing to \"%s\"" -msgstr "E208: дļ \"%s\" " - -#: ../fileio.c:4655 -#, c-format -msgid "E209: Error closing \"%s\"" -msgstr "E209: رļ \"%s\" " - -#: ../fileio.c:4657 -#, c-format -msgid "E210: Error reading \"%s\"" -msgstr "E210: ȡļ \"%s\" " - -#: ../fileio.c:4883 -msgid "E246: FileChangedShell autocommand deleted buffer" -msgstr "E246: FileChangedShell Զɾ˻" - -#: ../fileio.c:4894 -#, c-format -msgid "E211: File \"%s\" no longer available" -msgstr "E211: ļ \"%s\" Ѿ" - -#: ../fileio.c:4906 -#, c-format -msgid "" -"W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as " -"well" -msgstr "W12: : ļ \"%s\" ѱ䶯 Vim еĻҲѱ䶯" - -#: ../fileio.c:4907 -msgid "See \":help W12\" for more info." -msgstr "һ˵ \":help W12\"" - -#: ../fileio.c:4910 -#, c-format -msgid "W11: Warning: File \"%s\" has changed since editing started" -msgstr "W11: : ༭ʼļ \"%s\" ѱ䶯" - -#: ../fileio.c:4911 -msgid "See \":help W11\" for more info." -msgstr "һ˵ \":help W11\"" - -#: ../fileio.c:4914 -#, c-format -msgid "W16: Warning: Mode of file \"%s\" has changed since editing started" -msgstr "W16: : ༭ʼļ \"%s\" ģʽѱ䶯" - -#: ../fileio.c:4915 -msgid "See \":help W16\" for more info." -msgstr "һ˵ \":help W16\"" - -#: ../fileio.c:4927 -#, c-format -msgid "W13: Warning: File \"%s\" has been created after editing started" -msgstr "W13: : ༭ʼļ \"%s\" ѱ" - -#: ../fileio.c:4947 -msgid "Warning" -msgstr "" - -#: ../fileio.c:4948 -msgid "" -"&OK\n" -"&Load File" -msgstr "" -"ȷ(&O)\n" -"ļ(&L)" - -#: ../fileio.c:5065 -#, c-format -msgid "E462: Could not prepare for reloading \"%s\"" -msgstr "E462: Ϊ¼ \"%s\" " - -#: ../fileio.c:5078 -#, c-format -msgid "E321: Could not reload \"%s\"" -msgstr "E321: ¼ \"%s\"" - -#: ../fileio.c:5601 -msgid "--Deleted--" -msgstr "--ɾ--" - -#: ../fileio.c:5732 -#, c-format -msgid "auto-removing autocommand: %s <buffer=%d>" -msgstr "" - -#. the group doesn't exist -#: ../fileio.c:5772 -#, c-format -msgid "E367: No such group: \"%s\"" -msgstr "E367: : \"%s\"" - -#: ../fileio.c:5897 -#, c-format -msgid "E215: Illegal character after *: %s" -msgstr "E215: * Чַ: %s" - -#: ../fileio.c:5905 -#, c-format -msgid "E216: No such event: %s" -msgstr "E216: ¼: %s" - -#: ../fileio.c:5907 -#, c-format -msgid "E216: No such group or event: %s" -msgstr "E216: ¼: %s" - -#. Highlight title -#: ../fileio.c:6090 -msgid "" -"\n" -"--- Auto-Commands ---" -msgstr "" -"\n" -"--- Զ ---" - -#: ../fileio.c:6293 -#, c-format -msgid "E680: <buffer=%d>: invalid buffer number " -msgstr "E680: <buffer=%d>: ЧĻ " - -#: ../fileio.c:6370 -msgid "E217: Can't execute autocommands for ALL events" -msgstr "E217: ܶ¼ִԶ" - -#: ../fileio.c:6393 -msgid "No matching autocommands" -msgstr "ûƥԶ" - -#: ../fileio.c:6831 -msgid "E218: autocommand nesting too deep" -msgstr "E218: ԶǶײ" - -#: ../fileio.c:7143 -#, c-format -msgid "%s Auto commands for \"%s\"" -msgstr "%s Զ \"%s\"" - -#: ../fileio.c:7149 -#, c-format -msgid "Executing %s" -msgstr "ִ %s" - -#: ../fileio.c:7211 -#, c-format -msgid "autocommand %s" -msgstr "Զ %s" - -#: ../fileio.c:7795 -msgid "E219: Missing {." -msgstr "E219: ȱ {" - -#: ../fileio.c:7797 -msgid "E220: Missing }." -msgstr "E220: ȱ }" - -#: ../fold.c:93 -msgid "E490: No fold found" -msgstr "E490: Ҳ۵" - -#: ../fold.c:544 -msgid "E350: Cannot create fold with current 'foldmethod'" -msgstr "E350: ڵǰ 'foldmethod' ´۵" - -#: ../fold.c:546 -msgid "E351: Cannot delete fold with current 'foldmethod'" -msgstr "E351: ڵǰ 'foldmethod' ɾ۵" - -#: ../fold.c:1784 -#, c-format -msgid "+--%3ld lines folded " -msgstr "+--۵ %3ld " - -#. buffer has already been read -#: ../getchar.c:273 -msgid "E222: Add to read buffer" -msgstr "E222: ӵѶ" - -#: ../getchar.c:2040 -msgid "E223: recursive mapping" -msgstr "E223: ݹӳ" - -#: ../getchar.c:2849 -#, c-format -msgid "E224: global abbreviation already exists for %s" -msgstr "E224: ȫд %s Ѵ" - -#: ../getchar.c:2852 -#, c-format -msgid "E225: global mapping already exists for %s" -msgstr "E225: ȫӳ %s Ѵ" - -#: ../getchar.c:2952 -#, c-format -msgid "E226: abbreviation already exists for %s" -msgstr "E226: д %s Ѵ" - -#: ../getchar.c:2955 -#, c-format -msgid "E227: mapping already exists for %s" -msgstr "E227: ӳ %s Ѵ" - -#: ../getchar.c:3008 -msgid "No abbreviation found" -msgstr "Ҳд" - -#: ../getchar.c:3010 -msgid "No mapping found" -msgstr "Ҳӳ" - -#: ../getchar.c:3974 -msgid "E228: makemap: Illegal mode" -msgstr "E228: makemap: Чģʽ" - -#. key value of 'cedit' option -#. type of cmdline window or 0 -#. result of cmdline window or 0 -#: ../globals.h:924 -msgid "--No lines in buffer--" -msgstr "----" - -#. -#. * The error messages that can be shared are included here. -#. * Excluded are errors that are only used once and debugging messages. -#. -#: ../globals.h:996 -msgid "E470: Command aborted" -msgstr "E470: ֹ" - -#: ../globals.h:997 -msgid "E471: Argument required" -msgstr "E471: Ҫ" - -#: ../globals.h:998 -msgid "E10: \\ should be followed by /, ? or &" -msgstr "E10: \\ Ӧø /? &" - -#: ../globals.h:1000 -msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits" -msgstr "E11: дЧ<CR> ִУCTRL-C ˳" - -#: ../globals.h:1002 -msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search" -msgstr "E12: ǰĿ¼е exrc/vimrc tag в" - -#: ../globals.h:1003 -msgid "E171: Missing :endif" -msgstr "E171: ȱ :endif" - -#: ../globals.h:1004 -msgid "E600: Missing :endtry" -msgstr "E600: ȱ :endtry" - -#: ../globals.h:1005 -msgid "E170: Missing :endwhile" -msgstr "E170: ȱ :endwhile" - -#: ../globals.h:1006 -msgid "E170: Missing :endfor" -msgstr "E170: ȱ :endfor" - -#: ../globals.h:1007 -msgid "E588: :endwhile without :while" -msgstr "E588: :endwhile ȱٶӦ :while" - -#: ../globals.h:1008 -msgid "E588: :endfor without :for" -msgstr "E588: :endfor ȱٶӦ :for" - -#: ../globals.h:1009 -msgid "E13: File exists (add ! to override)" -msgstr "E13: ļѴ ( ! ǿִ)" - -#: ../globals.h:1010 -msgid "E472: Command failed" -msgstr "E472: ִʧ" - -#: ../globals.h:1011 -msgid "E473: Internal error" -msgstr "E473: ڲ" - -#: ../globals.h:1012 -msgid "Interrupted" -msgstr "ж" - -#: ../globals.h:1013 -msgid "E14: Invalid address" -msgstr "E14: Чĵַ" - -#: ../globals.h:1014 -msgid "E474: Invalid argument" -msgstr "E474: ЧIJ" - -#: ../globals.h:1015 -#, c-format -msgid "E475: Invalid argument: %s" -msgstr "E475: ЧIJ: %s" - -#: ../globals.h:1016 -#, c-format -msgid "E15: Invalid expression: %s" -msgstr "E15: Чıʽ: %s" - -#: ../globals.h:1017 -msgid "E16: Invalid range" -msgstr "E16: ЧķΧ" - -#: ../globals.h:1018 -msgid "E476: Invalid command" -msgstr "E476: Ч" - -#: ../globals.h:1019 -#, c-format -msgid "E17: \"%s\" is a directory" -msgstr "E17: \"%s\" Ŀ¼" - -#: ../globals.h:1020 -#, fuzzy -msgid "E900: Invalid job id" -msgstr "E49: ЧĹС" - -#: ../globals.h:1021 -msgid "E901: Job table is full" -msgstr "" - -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - -#: ../globals.h:1024 -#, c-format -msgid "E364: Library call failed for \"%s()\"" -msgstr "E364: ú \"%s()\" ʧ" - -#: ../globals.h:1026 -msgid "E19: Mark has invalid line number" -msgstr "E19: ǵкЧ" - -#: ../globals.h:1027 -msgid "E20: Mark not set" -msgstr "E20: û趨" - -#: ../globals.h:1029 -msgid "E21: Cannot make changes, 'modifiable' is off" -msgstr "E21: ģΪѡ 'modifiable' ǹص" - -#: ../globals.h:1030 -msgid "E22: Scripts nested too deep" -msgstr "E22: űǶ" - -#: ../globals.h:1031 -msgid "E23: No alternate file" -msgstr "E23: ûнļ" - -#: ../globals.h:1032 -msgid "E24: No such abbreviation" -msgstr "E24: ûд" - -#: ../globals.h:1033 -msgid "E477: No ! allowed" -msgstr "E477: ʹ \"!\"" - -#: ../globals.h:1035 -msgid "E25: Nvim does not have a built-in GUI" -msgstr "E25: ʹͼν: ʱû" - -#: ../globals.h:1036 -#, c-format -msgid "E28: No such highlight group name: %s" -msgstr "E28: ûȺ: %s" - -#: ../globals.h:1037 -msgid "E29: No inserted text yet" -msgstr "E29: ûв" - -#: ../globals.h:1038 -msgid "E30: No previous command line" -msgstr "E30: ûǰһ" - -#: ../globals.h:1039 -msgid "E31: No such mapping" -msgstr "E31: ûӳ" - -#: ../globals.h:1040 -msgid "E479: No match" -msgstr "E479: ûƥ" - -#: ../globals.h:1041 -#, c-format -msgid "E480: No match: %s" -msgstr "E480: ûƥ: %s" - -#: ../globals.h:1042 -msgid "E32: No file name" -msgstr "E32: ûļ" - -#: ../globals.h:1044 -msgid "E33: No previous substitute regular expression" -msgstr "E33: ûǰһ滻ʽ" - -#: ../globals.h:1045 -msgid "E34: No previous command" -msgstr "E34: ûǰһ" - -#: ../globals.h:1046 -msgid "E35: No previous regular expression" -msgstr "E35: ûǰһʽ" - -#: ../globals.h:1047 -msgid "E481: No range allowed" -msgstr "E481: ʹ÷Χ" - -#: ../globals.h:1048 -msgid "E36: Not enough room" -msgstr "E36: û㹻Ŀռ" - -#: ../globals.h:1049 -#, c-format -msgid "E482: Can't create file %s" -msgstr "E482: ļ %s" - -#: ../globals.h:1050 -msgid "E483: Can't get temp file name" -msgstr "E483: ȡʱļ" - -#: ../globals.h:1051 -#, c-format -msgid "E484: Can't open file %s" -msgstr "E484: ļ %s" - -#: ../globals.h:1052 -#, c-format -msgid "E485: Can't read file %s" -msgstr "E485: ȡļ %s" - -#: ../globals.h:1054 -msgid "E37: No write since last change (add ! to override)" -msgstr "E37: ĵδ ( ! ǿִ)" - -#: ../globals.h:1055 -#, fuzzy -msgid "E37: No write since last change" -msgstr "[ĵδ]\n" - -#: ../globals.h:1056 -msgid "E38: Null argument" -msgstr "E38: յIJ" - -#: ../globals.h:1057 -msgid "E39: Number expected" -msgstr "E39: ˴Ҫ" - -#: ../globals.h:1058 -#, c-format -msgid "E40: Can't open errorfile %s" -msgstr "E40: ļ %s" - -#: ../globals.h:1059 -msgid "E41: Out of memory!" -msgstr "E41: ڴ治㣡" - -#: ../globals.h:1060 -msgid "Pattern not found" -msgstr "Ҳģʽ" - -#: ../globals.h:1061 -#, c-format -msgid "E486: Pattern not found: %s" -msgstr "E486: Ҳģʽ: %s" - -#: ../globals.h:1062 -msgid "E487: Argument must be positive" -msgstr "E487: " - -#: ../globals.h:1064 -msgid "E459: Cannot go back to previous directory" -msgstr "E459: صǰһĿ¼" - -#: ../globals.h:1066 -msgid "E42: No Errors" -msgstr "E42: ûд" - -#: ../globals.h:1067 -msgid "E776: No location list" -msgstr "E776: û location б" - -#: ../globals.h:1068 -msgid "E43: Damaged match string" -msgstr "E43: ƥַ" - -#: ../globals.h:1069 -msgid "E44: Corrupted regexp program" -msgstr "E44: ʽ" - -#: ../globals.h:1071 -msgid "E45: 'readonly' option is set (add ! to override)" -msgstr "E45: 趨ѡ 'readonly' ( ! ǿִ)" - -#: ../globals.h:1073 -#, c-format -msgid "E46: Cannot change read-only variable \"%s\"" -msgstr "E46: ܸıֻ \"%s\"" - -#: ../globals.h:1075 -#, fuzzy, c-format -msgid "E794: Cannot set variable in the sandbox: \"%s\"" -msgstr "E46: sandbox 趨: \"%s\"" - -#: ../globals.h:1076 -msgid "E47: Error while reading errorfile" -msgstr "E47: ȡļʧ" - -#: ../globals.h:1078 -msgid "E48: Not allowed in sandbox" -msgstr "E48: sandbox ʹ" - -#: ../globals.h:1080 -msgid "E523: Not allowed here" -msgstr "E523: ڴʹ" - -#: ../globals.h:1082 -msgid "E359: Screen mode setting not supported" -msgstr "E359: ֧趨Ļģʽ" - -#: ../globals.h:1083 -msgid "E49: Invalid scroll size" -msgstr "E49: ЧĹС" - -#: ../globals.h:1084 -msgid "E91: 'shell' option is empty" -msgstr "E91: ѡ 'shell' Ϊ" - -#: ../globals.h:1085 -msgid "E255: Couldn't read in sign data!" -msgstr "E255: ȡ sign ݣ" - -#: ../globals.h:1086 -msgid "E72: Close error on swap file" -msgstr "E72: ļرմ" - -#: ../globals.h:1087 -msgid "E73: tag stack empty" -msgstr "E73: tag ջΪ" - -#: ../globals.h:1088 -msgid "E74: Command too complex" -msgstr "E74: " - -#: ../globals.h:1089 -msgid "E75: Name too long" -msgstr "E75: ֹ" - -#: ../globals.h:1090 -msgid "E76: Too many [" -msgstr "E76: [ " - -#: ../globals.h:1091 -msgid "E77: Too many file names" -msgstr "E77: ļ" - -#: ../globals.h:1092 -msgid "E488: Trailing characters" -msgstr "E488: βַ" - -#: ../globals.h:1093 -msgid "E78: Unknown mark" -msgstr "E78: δ֪ı" - -#: ../globals.h:1094 -msgid "E79: Cannot expand wildcards" -msgstr "E79: չͨ" - -#: ../globals.h:1096 -msgid "E591: 'winheight' cannot be smaller than 'winminheight'" -msgstr "E591: 'winheight' С 'winminheight'" - -#: ../globals.h:1098 -msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'" -msgstr "E592: 'winwidth' С 'winminwidth'" - -#: ../globals.h:1099 -msgid "E80: Error while writing" -msgstr "E80: д" - -#: ../globals.h:1100 -msgid "Zero count" -msgstr "Ϊ" - -#: ../globals.h:1101 -msgid "E81: Using <SID> not in a script context" -msgstr "E81: ڽűʹ <SID>" - -#: ../globals.h:1102 -#, c-format -msgid "E685: Internal error: %s" -msgstr "E685: ڲ: %s" - -#: ../globals.h:1104 -msgid "E363: pattern uses more memory than 'maxmempattern'" -msgstr "E363: ʽڴʹó 'maxmempattern'" - -#: ../globals.h:1105 -msgid "E749: empty buffer" -msgstr "E749: յĻ" - -#: ../globals.h:1108 -msgid "E682: Invalid search pattern or delimiter" -msgstr "E682: Чʽָ" - -#: ../globals.h:1109 -msgid "E139: File is loaded in another buffer" -msgstr "E139: ļһб" - -#: ../globals.h:1110 -#, c-format -msgid "E764: Option '%s' is not set" -msgstr "E764: û趨ѡ '%s'" - -#: ../globals.h:1111 -#, fuzzy -msgid "E850: Invalid register name" -msgstr "E354: ЧļĴ: '%s'" - -#: ../globals.h:1114 -msgid "search hit TOP, continuing at BOTTOM" -msgstr "Ѳҵļͷٴӽβ" - -#: ../globals.h:1115 -msgid "search hit BOTTOM, continuing at TOP" -msgstr "Ѳҵļβٴӿͷ" - -#: ../hardcopy.c:240 -msgid "E550: Missing colon" -msgstr "E550: ȱð" - -#: ../hardcopy.c:252 -msgid "E551: Illegal component" -msgstr "E551: ЧIJ" - -#: ../hardcopy.c:259 -msgid "E552: digit expected" -msgstr "E552: ӦҪ" - -#: ../hardcopy.c:473 -#, c-format -msgid "Page %d" -msgstr " %d ҳ" - -#: ../hardcopy.c:597 -msgid "No text to be printed" -msgstr "ûҪӡ" - -#: ../hardcopy.c:668 -#, c-format -msgid "Printing page %d (%d%%)" -msgstr "ڴӡ %d ҳ (%d%%)" - -#: ../hardcopy.c:680 -#, c-format -msgid " Copy %d of %d" -msgstr " %d / %d" - -#: ../hardcopy.c:733 -#, c-format -msgid "Printed: %s" -msgstr "Ѵӡ: %s" - -#: ../hardcopy.c:740 -msgid "Printing aborted" -msgstr "ӡֹ" - -#: ../hardcopy.c:1365 -msgid "E455: Error writing to PostScript output file" -msgstr "E455: д PostScript ļ" - -#: ../hardcopy.c:1747 -#, c-format -msgid "E624: Can't open file \"%s\"" -msgstr "E624: ļ \"%s\"" - -#: ../hardcopy.c:1756 ../hardcopy.c:2470 -#, c-format -msgid "E457: Can't read PostScript resource file \"%s\"" -msgstr "E457: ȡ PostScript Դļ \"%s\"" - -#: ../hardcopy.c:1772 -#, c-format -msgid "E618: file \"%s\" is not a PostScript resource file" -msgstr "E618: ļ \"%s\" PostScript Դļ" - -#: ../hardcopy.c:1788 ../hardcopy.c:1805 ../hardcopy.c:1844 -#, c-format -msgid "E619: file \"%s\" is not a supported PostScript resource file" -msgstr "E619: ļ \"%s\" ֵ֧ PostScript Դļ" - -#: ../hardcopy.c:1856 -#, c-format -msgid "E621: \"%s\" resource file has wrong version" -msgstr "E621: \"%s\" Դļ汾ȷ" - -#: ../hardcopy.c:2225 -msgid "E673: Incompatible multi-byte encoding and character set." -msgstr "E673: ݵĶֽڱַ" - -#: ../hardcopy.c:2238 -msgid "E674: printmbcharset cannot be empty with multi-byte encoding." -msgstr "E674: printmbcharset ڶֽڱ²Ϊա" - -#: ../hardcopy.c:2254 -msgid "E675: No default font specified for multi-byte printing." -msgstr "E675: ûָֽڴӡĬ塣" - -#: ../hardcopy.c:2426 -msgid "E324: Can't open PostScript output file" -msgstr "E324: PostScript ļ" - -#: ../hardcopy.c:2458 -#, c-format -msgid "E456: Can't open file \"%s\"" -msgstr "E456: ļ \"%s\"" - -#: ../hardcopy.c:2583 -msgid "E456: Can't find PostScript resource file \"prolog.ps\"" -msgstr "E456: Ҳ PostScript Դļ \"prolog.ps\"" - -#: ../hardcopy.c:2593 -msgid "E456: Can't find PostScript resource file \"cidfont.ps\"" -msgstr "E456: Ҳ PostScript Դļ \"cidfont.ps\"" - -#: ../hardcopy.c:2622 ../hardcopy.c:2639 ../hardcopy.c:2665 -#, c-format -msgid "E456: Can't find PostScript resource file \"%s.ps\"" -msgstr "E456: Ҳ PostScript Դļ \"%s.ps\"" - -#: ../hardcopy.c:2654 -#, c-format -msgid "E620: Unable to convert to print encoding \"%s\"" -msgstr "E620: תӡ \"%s\"" - -#: ../hardcopy.c:2877 -msgid "Sending to printer..." -msgstr "͵ӡ" - -#: ../hardcopy.c:2881 -msgid "E365: Failed to print PostScript file" -msgstr "E365: ӡ PostScript ļ" - -#: ../hardcopy.c:2883 -msgid "Print job sent." -msgstr "ӡѱ͡" - -#: ../if_cscope.c:85 -msgid "Add a new database" -msgstr "һµݿ" - -#: ../if_cscope.c:87 -msgid "Query for a pattern" -msgstr "ѯһģʽ" - -#: ../if_cscope.c:89 -msgid "Show this message" -msgstr "ʾϢ" - -#: ../if_cscope.c:91 -msgid "Kill a connection" -msgstr "һ" - -#: ../if_cscope.c:93 -msgid "Reinit all connections" -msgstr "" - -#: ../if_cscope.c:95 -msgid "Show connections" -msgstr "ʾ" - -#: ../if_cscope.c:101 -#, c-format -msgid "E560: Usage: cs[cope] %s" -msgstr "E560: ÷: cs[cope] %s" - -#: ../if_cscope.c:225 -msgid "This cscope command does not support splitting the window.\n" -msgstr " cscope ַָ֧ڡ\n" - -#: ../if_cscope.c:266 -msgid "E562: Usage: cstag <ident>" -msgstr "E562: ÷: cstag <ident>" - -#: ../if_cscope.c:313 -msgid "E257: cstag: tag not found" -msgstr "E257: cstag: Ҳ tag" - -#: ../if_cscope.c:461 -#, c-format -msgid "E563: stat(%s) error: %d" -msgstr "E563: stat(%s) : %d" - -#: ../if_cscope.c:551 -#, c-format -msgid "E564: %s is not a directory or a valid cscope database" -msgstr "E564: %s Ŀ¼Ч cscope ݿ" - -#: ../if_cscope.c:566 -#, c-format -msgid "Added cscope database %s" -msgstr " cscope ݿ %s" - -#: ../if_cscope.c:616 -#, c-format -msgid "E262: error reading cscope connection %<PRId64>" -msgstr "E262: ȡ cscope %<PRId64> " - -#: ../if_cscope.c:711 -msgid "E561: unknown cscope search type" -msgstr "E561: δ֪ cscope " - -#: ../if_cscope.c:752 ../if_cscope.c:789 -msgid "E566: Could not create cscope pipes" -msgstr "E566: cscope ܵ" - -#: ../if_cscope.c:767 -msgid "E622: Could not fork for cscope" -msgstr "E622: cscope fork" - -#: ../if_cscope.c:849 -#, fuzzy -msgid "cs_create_connection setpgid failed" -msgstr "cs_create_connection ִʧ" - -#: ../if_cscope.c:853 ../if_cscope.c:889 -msgid "cs_create_connection exec failed" -msgstr "cs_create_connection ִʧ" - -#: ../if_cscope.c:863 ../if_cscope.c:902 -msgid "cs_create_connection: fdopen for to_fp failed" -msgstr "cs_create_connection: fdopen to_fp ʧ" - -#: ../if_cscope.c:865 ../if_cscope.c:906 -msgid "cs_create_connection: fdopen for fr_fp failed" -msgstr "cs_create_connection: fdopen fr_fp ʧ" - -#: ../if_cscope.c:890 -msgid "E623: Could not spawn cscope process" -msgstr "E623: cscope " - -#: ../if_cscope.c:932 -msgid "E567: no cscope connections" -msgstr "E567: û cscope " - -#: ../if_cscope.c:1009 -#, c-format -msgid "E469: invalid cscopequickfix flag %c for %c" -msgstr "E469: cscopequickfix ־ %c %c Ч" - -#: ../if_cscope.c:1058 -#, c-format -msgid "E259: no matches found for cscope query %s of %s" -msgstr "E259: cscope ѯ %s %s ûҵƥĽ" - -#: ../if_cscope.c:1142 -msgid "cscope commands:\n" -msgstr "cscope :\n" - -#: ../if_cscope.c:1150 -#, fuzzy, c-format -msgid "%-5s: %s%*s (Usage: %s)" -msgstr "%-5s: %-30s (÷: %s)" - -#: ../if_cscope.c:1155 -msgid "" -"\n" -" c: Find functions calling this function\n" -" d: Find functions called by this function\n" -" e: Find this egrep pattern\n" -" f: Find this file\n" -" g: Find this definition\n" -" i: Find files #including this file\n" -" s: Find this C symbol\n" -" t: Find this text string\n" -msgstr "" - -#: ../if_cscope.c:1226 -msgid "E568: duplicate cscope database not added" -msgstr "E568: ظ cscope ݿδ" - -#: ../if_cscope.c:1335 -#, c-format -msgid "E261: cscope connection %s not found" -msgstr "E261: Ҳ cscope %s" - -#: ../if_cscope.c:1364 -#, c-format -msgid "cscope connection %s closed" -msgstr "cscope %s ѹر" - -#. should not reach here -#: ../if_cscope.c:1486 -msgid "E570: fatal error in cs_manage_matches" -msgstr "E570: cs_manage_matches ش" - -#: ../if_cscope.c:1693 -#, c-format -msgid "Cscope tag: %s" -msgstr "Cscope tag: %s" - -#: ../if_cscope.c:1711 -msgid "" -"\n" -" # line" -msgstr "" -"\n" -" # " - -#: ../if_cscope.c:1713 -msgid "filename / context / line\n" -msgstr "ļ / / \n" - -#: ../if_cscope.c:1809 -#, c-format -msgid "E609: Cscope error: %s" -msgstr "E609: Cscope : %s" - -#: ../if_cscope.c:2053 -msgid "All cscope databases reset" -msgstr " cscope ݿѱ" - -#: ../if_cscope.c:2123 -msgid "no cscope connections\n" -msgstr "û cscope \n" - -#: ../if_cscope.c:2126 -msgid " # pid database name prepend path\n" -msgstr " # pid ݿ prepend path\n" - -#: ../main.c:144 -msgid "Unknown option argument" -msgstr "δ֪ѡ" - -#: ../main.c:146 -msgid "Too many edit arguments" -msgstr "༭" - -#: ../main.c:148 -msgid "Argument missing after" -msgstr "ȱٱҪIJ" - -#: ../main.c:150 -msgid "Garbage after option argument" -msgstr "ѡЧ" - -#: ../main.c:152 -msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments" -msgstr "\"+command\"\"-c command\" \"--cmd command\" " - -#: ../main.c:154 -msgid "Invalid argument for" -msgstr "ЧIJ" - -#: ../main.c:294 -#, c-format -msgid "%d files to edit\n" -msgstr " %d ļȴ༭\n" - -#: ../main.c:1342 -msgid "Attempt to open script file again: \"" -msgstr "ͼٴδűļ: \"" - -#: ../main.c:1350 -msgid "Cannot open for reading: \"" -msgstr "ȡ: \"" - -#: ../main.c:1393 -msgid "Cannot open for script output: \"" -msgstr "ű: \"" - -#: ../main.c:1622 -msgid "Vim: Warning: Output is not to a terminal\n" -msgstr "Vim: : ǵն(Ļ)\n" - -#: ../main.c:1624 -msgid "Vim: Warning: Input is not from a terminal\n" -msgstr "Vim: : 벻ն()\n" - -#. just in case.. -#: ../main.c:1891 -msgid "pre-vimrc command line" -msgstr "pre-vimrc " - -#: ../main.c:1964 -#, c-format -msgid "E282: Cannot read from \"%s\"" -msgstr "E282: ȡ \"%s\"" - -#: ../main.c:2149 -msgid "" -"\n" -"More info with: \"vim -h\"\n" -msgstr "" -"\n" -"Ϣ: \"vim -h\"\n" - -#: ../main.c:2178 -msgid "[file ..] edit specified file(s)" -msgstr "[ļ ..] ༭ָļ" - -#: ../main.c:2179 -msgid "- read text from stdin" -msgstr "- ӱ(stdin)ȡı" - -#: ../main.c:2180 -msgid "-t tag edit file where tag is defined" -msgstr "-t tag ༭ tag 崦ļ" - -#: ../main.c:2181 -msgid "-q [errorfile] edit file with first error" -msgstr "-q [errorfile] ༭һļ" - -#: ../main.c:2187 -msgid "" -"\n" -"\n" -"usage:" -msgstr "" -"\n" -"\n" -"÷:" - -#: ../main.c:2189 -msgid " vim [arguments] " -msgstr " vim [] " - -#: ../main.c:2193 -msgid "" -"\n" -" or:" -msgstr "" -"\n" -" :" - -#: ../main.c:2196 -msgid "" -"\n" -"\n" -"Arguments:\n" -msgstr "" -"\n" -"\n" -":\n" - -#: ../main.c:2197 -msgid "--\t\t\tOnly file names after this" -msgstr "--\t\t\tԺֻļ" - -#: ../main.c:2199 -msgid "--literal\t\tDon't expand wildcards" -msgstr "--literal\t\tչͨ" - -#: ../main.c:2201 -msgid "-v\t\t\tVi mode (like \"vi\")" -msgstr "-v\t\t\tVi ģʽ (ͬ \"vi\")" - -#: ../main.c:2202 -msgid "-e\t\t\tEx mode (like \"ex\")" -msgstr "-e\t\t\tEx ģʽ (ͬ \"ex\")" - -#: ../main.c:2203 -msgid "-E\t\t\tImproved Ex mode" -msgstr "" - -#: ../main.c:2204 -msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")" -msgstr "-s\t\t\t()ģʽ (ֻ \"ex\" һʹ)" - -#: ../main.c:2205 -msgid "-d\t\t\tDiff mode (like \"vimdiff\")" -msgstr "-d\t\t\tDiff ģʽ (ͬ \"vimdiff\")" - -#: ../main.c:2206 -msgid "-y\t\t\tEasy mode (like \"evim\", modeless)" -msgstr "-y\t\t\tģʽ (ͬ \"evim\"ģʽ)" - -#: ../main.c:2207 -msgid "-R\t\t\tReadonly mode (like \"view\")" -msgstr "-R\t\t\tֻģʽ (ͬ \"view\")" - -#: ../main.c:2208 -msgid "-Z\t\t\tRestricted mode (like \"rvim\")" -msgstr "-Z\t\t\tģʽ (ͬ \"rvim\")" - -#: ../main.c:2209 -msgid "-m\t\t\tModifications (writing files) not allowed" -msgstr "-m\t\t\t(дļ)" - -#: ../main.c:2210 -msgid "-M\t\t\tModifications in text not allowed" -msgstr "-M\t\t\tı" - -#: ../main.c:2211 -msgid "-b\t\t\tBinary mode" -msgstr "-b\t\t\tģʽ" - -#: ../main.c:2212 -msgid "-l\t\t\tLisp mode" -msgstr "-l\t\t\tLisp ģʽ" - -#: ../main.c:2213 -msgid "-C\t\t\tCompatible with Vi: 'compatible'" -msgstr "-C\t\t\tݴͳ Vi: 'compatible'" - -#: ../main.c:2214 -msgid "-N\t\t\tNot fully Vi compatible: 'nocompatible'" -msgstr "-N\t\t\tȫݴͳ Vi: 'nocompatible'" - -#: ../main.c:2215 -msgid "-V[N][fname]\t\tBe verbose [level N] [log messages to fname]" -msgstr "" - -#: ../main.c:2216 -msgid "-D\t\t\tDebugging mode" -msgstr "-D\t\t\tģʽ" - -#: ../main.c:2217 -msgid "-n\t\t\tNo swap file, use memory only" -msgstr "-n\t\t\tʹýļֻʹڴ" - -#: ../main.c:2218 -msgid "-r\t\t\tList swap files and exit" -msgstr "-r\t\t\tгļ˳" - -#: ../main.c:2219 -msgid "-r (with file name)\tRecover crashed session" -msgstr "-r (ļ)\t\tָĻỰ" - -#: ../main.c:2220 -msgid "-L\t\t\tSame as -r" -msgstr "-L\t\t\tͬ -r" - -#: ../main.c:2221 -msgid "-A\t\t\tstart in Arabic mode" -msgstr "-A\t\t\t Arabic ģʽ" - -#: ../main.c:2222 -msgid "-H\t\t\tStart in Hebrew mode" -msgstr "-H\t\t\t Hebrew ģʽ" - -#: ../main.c:2223 -msgid "-F\t\t\tStart in Farsi mode" -msgstr "-F\t\t\t Farsi ģʽ" - -#: ../main.c:2224 -msgid "-T <terminal>\tSet terminal type to <terminal>" -msgstr "-T <terminal>\t趨նΪ <terminal>" - -#: ../main.c:2225 -msgid "-u <vimrc>\t\tUse <vimrc> instead of any .vimrc" -msgstr "-u <vimrc>\t\tʹ <vimrc> κ .vimrc" - -#: ../main.c:2226 -msgid "--noplugin\t\tDon't load plugin scripts" -msgstr "--noplugin\t\t plugin ű" - -#: ../main.c:2227 -msgid "-p[N]\t\tOpen N tab pages (default: one for each file)" -msgstr "-P[N]\t\t N ǩҳ (Ĭֵ: ÿļһ)" - -#: ../main.c:2228 -msgid "-o[N]\t\tOpen N windows (default: one for each file)" -msgstr "-o[N]\t\t N (Ĭֵ: ÿļһ)" - -#: ../main.c:2229 -msgid "-O[N]\t\tLike -o but split vertically" -msgstr "-O[N]\t\tͬ -o ֱָ" - -#: ../main.c:2230 -msgid "+\t\t\tStart at end of file" -msgstr "+\t\t\tļĩβ" - -#: ../main.c:2231 -msgid "+<lnum>\t\tStart at line <lnum>" -msgstr "+<lnum>\t\t <lnum> " - -#: ../main.c:2232 -msgid "--cmd <command>\tExecute <command> before loading any vimrc file" -msgstr "--cmd <command>\tκ vimrc ļǰִ <command>" - -#: ../main.c:2233 -msgid "-c <command>\t\tExecute <command> after loading the first file" -msgstr "-c <command>\t\tصһļִ <command>" - -#: ../main.c:2235 -msgid "-S <session>\t\tSource file <session> after loading the first file" -msgstr "-S <session>\t\tصһļִļ <session>" - -#: ../main.c:2236 -msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>" -msgstr "-s <scriptin>\tļ <scriptin> ģʽ" - -#: ../main.c:2237 -msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>" -msgstr "-w <scriptout>\tӵļ <scriptout>" - -#: ../main.c:2238 -msgid "-W <scriptout>\tWrite all typed commands to file <scriptout>" -msgstr "-W <scriptout>\tд뵽ļ <scriptout>" - -#: ../main.c:2240 -msgid "--startuptime <file>\tWrite startup timing messages to <file>" -msgstr "" - -#: ../main.c:2242 -msgid "-i <viminfo>\t\tUse <viminfo> instead of .viminfo" -msgstr "-i <viminfo>\t\tʹ <viminfo> ȡ .viminfo" - -#: ../main.c:2243 -msgid "-h or --help\tPrint Help (this message) and exit" -msgstr "-h --help\tӡ(Ϣ)˳" - -#: ../main.c:2244 -msgid "--version\t\tPrint version information and exit" -msgstr "--version\t\tӡ汾Ϣ˳" - -#: ../mark.c:676 -msgid "No marks set" -msgstr "û趨" - -#: ../mark.c:678 -#, c-format -msgid "E283: No marks matching \"%s\"" -msgstr "E283: ûƥ \"%s\" ı" - -#. Highlight title -#: ../mark.c:687 -msgid "" -"\n" -"mark line col file/text" -msgstr "" -"\n" -" ļ/ı" - -#. Highlight title -#: ../mark.c:789 -msgid "" -"\n" -" jump line col file/text" -msgstr "" -"\n" -" ת ļ/ı" - -#. Highlight title -#: ../mark.c:831 -msgid "" -"\n" -"change line col text" -msgstr "" -"\n" -" ı ı" - -#: ../mark.c:1238 -msgid "" -"\n" -"# File marks:\n" -msgstr "" -"\n" -"# ļ:\n" - -#. Write the jumplist with -' -#: ../mark.c:1271 -msgid "" -"\n" -"# Jumplist (newest first):\n" -msgstr "" -"\n" -"# תб (µ):\n" - -#: ../mark.c:1352 -msgid "" -"\n" -"# History of marks within files (newest to oldest):\n" -msgstr "" -"\n" -"# ļڵıʷ¼ (µ):\n" - -#: ../mark.c:1431 -msgid "Missing '>'" -msgstr "ȱ '>'" - -#: ../memfile.c:426 -msgid "E293: block was not locked" -msgstr "E293: δ" - -#: ../memfile.c:799 -msgid "E294: Seek error in swap file read" -msgstr "E294: ļȡλ" - -#: ../memfile.c:803 -msgid "E295: Read error in swap file" -msgstr "E295: ļȡ" - -#: ../memfile.c:849 -msgid "E296: Seek error in swap file write" -msgstr "E296: ļд붨λ" - -#: ../memfile.c:865 -msgid "E297: Write error in swap file" -msgstr "E297: ļд" - -#: ../memfile.c:1036 -msgid "E300: Swap file already exists (symlink attack?)" -msgstr "E300: ļѴ (ӹ)" - -#: ../memline.c:318 -msgid "E298: Didn't get block nr 0?" -msgstr "E298: Ҳ 0" - -#: ../memline.c:361 -msgid "E298: Didn't get block nr 1?" -msgstr "E298: Ҳ 1" - -#: ../memline.c:377 -msgid "E298: Didn't get block nr 2?" -msgstr "E298: Ҳ 2" - -#. could not (re)open the swap file, what can we do???? -#: ../memline.c:465 -msgid "E301: Oops, lost the swap file!!!" -msgstr "E301: ޣļˣ" - -#: ../memline.c:477 -msgid "E302: Could not rename swap file" -msgstr "E302: ļ" - -#: ../memline.c:554 -#, c-format -msgid "E303: Unable to open swap file for \"%s\", recovery impossible" -msgstr "E303: \"%s\" Ľļָ" - -#: ../memline.c:666 -msgid "E304: ml_upd_block0(): Didn't get block 0??" -msgstr "E304: ml_upd_block0(): Ҳ 0" - -#. no swap files found -#: ../memline.c:830 -#, c-format -msgid "E305: No swap file found for %s" -msgstr "E305: Ҳ %s Ľļ" - -#: ../memline.c:839 -msgid "Enter number of swap file to use (0 to quit): " -msgstr "ҪʹõĽļ (0 ˳): " - -#: ../memline.c:879 -#, c-format -msgid "E306: Cannot open %s" -msgstr "E306: %s" - -#: ../memline.c:897 -msgid "Unable to read block 0 from " -msgstr "ȡ 0: " - -#: ../memline.c:900 -msgid "" -"\n" -"Maybe no changes were made or Vim did not update the swap file." -msgstr "" -"\n" -"ûκĻ Vim ½ļ" - -#: ../memline.c:909 -msgid " cannot be used with this version of Vim.\n" -msgstr " ڸð汾 Vim ʹá\n" - -#: ../memline.c:911 -msgid "Use Vim version 3.0.\n" -msgstr "ʹ Vim 3.0\n" - -#: ../memline.c:916 -#, c-format -msgid "E307: %s does not look like a Vim swap file" -msgstr "E307: %s Vim ļ" - -#: ../memline.c:922 -msgid " cannot be used on this computer.\n" -msgstr " ̨ʹá\n" - -#: ../memline.c:924 -msgid "The file was created on " -msgstr "ļ " - -#: ../memline.c:928 -msgid "" -",\n" -"or the file has been damaged." -msgstr "" -"\n" -"Ǵļ" - -#: ../memline.c:945 -msgid " has been damaged (page size is smaller than minimum value).\n" -msgstr "" - -#: ../memline.c:974 -#, c-format -msgid "Using swap file \"%s\"" -msgstr "ʹýļ \"%s\"" - -#: ../memline.c:980 -#, c-format -msgid "Original file \"%s\"" -msgstr "ԭʼļ \"%s\"" - -#: ../memline.c:995 -msgid "E308: Warning: Original file may have been changed" -msgstr "E308: : ԭʼļѱ" - -#: ../memline.c:1061 -#, c-format -msgid "E309: Unable to read block 1 from %s" -msgstr "E309: %s ȡ 1" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1065 -#, fuzzy -msgid "???MANY LINES MISSING" -msgstr "???ȱ̫" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1076 -#, fuzzy -msgid "???LINE COUNT WRONG" -msgstr "???" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1082 -#, fuzzy -msgid "???EMPTY BLOCK" -msgstr "???յĿ" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1103 -#, fuzzy -msgid "???LINES MISSING" -msgstr "???ȱһЩ" - -#: ../memline.c:1128 -#, c-format -msgid "E310: Block 1 ID wrong (%s not a .swp file?)" -msgstr "E310: 1 ID (%s ǽļ)" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1133 -#, fuzzy -msgid "???BLOCK MISSING" -msgstr "???ȱٿ" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1147 -#, fuzzy -msgid "??? from here until ???END lines may be messed up" -msgstr "??? ﵽ ???END пѻ" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1164 -#, fuzzy -msgid "??? from here until ???END lines may have been inserted/deleted" -msgstr "??? ﵽ ???END пѱ/ɾ" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1181 -#, fuzzy -msgid "???END" -msgstr "???END" - -#: ../memline.c:1238 -msgid "E311: Recovery Interrupted" -msgstr "E311: ָѱж" - -#: ../memline.c:1243 -msgid "" -"E312: Errors detected while recovering; look for lines starting with ???" -msgstr "E312: ָʱעͷΪ ??? " - -#: ../memline.c:1245 -msgid "See \":help E312\" for more information." -msgstr "Ϣ \":help E312\"" - -#: ../memline.c:1249 -msgid "Recovery completed. You should check if everything is OK." -msgstr "ָϡȷһ" - -#: ../memline.c:1251 -msgid "" -"\n" -"(You might want to write out this file under another name\n" -msgstr "" -"\n" -"(ҪļΪļ\n" - -#: ../memline.c:1252 -#, fuzzy -msgid "and run diff with the original file to check for changes)" -msgstr " diff ԭļȽԼǷиı)\n" - -#: ../memline.c:1254 -msgid "Recovery completed. Buffer contents equals file contents." -msgstr "" - -#: ../memline.c:1255 -#, fuzzy -msgid "" -"\n" -"You may want to delete the .swp file now.\n" -"\n" -msgstr "" -"Ȼ .swp ļɾ\n" -"\n" - -#. use msg() to start the scrolling properly -#: ../memline.c:1327 -msgid "Swap files found:" -msgstr "ҵļ:" - -#: ../memline.c:1446 -msgid " In current directory:\n" -msgstr " λڵǰĿ¼:\n" - -#: ../memline.c:1448 -msgid " Using specified name:\n" -msgstr " ʹָ:\n" - -#: ../memline.c:1450 -msgid " In directory " -msgstr " λĿ¼ " - -#: ../memline.c:1465 -msgid " -- none --\n" -msgstr " -- --\n" - -#: ../memline.c:1527 -msgid " owned by: " -msgstr " : " - -#: ../memline.c:1529 -msgid " dated: " -msgstr " : " - -#: ../memline.c:1532 ../memline.c:3231 -msgid " dated: " -msgstr " : " - -#: ../memline.c:1548 -msgid " [from Vim version 3.0]" -msgstr " [ Vim 汾 3.0]" - -#: ../memline.c:1550 -msgid " [does not look like a Vim swap file]" -msgstr " [ Vim ļ]" - -#: ../memline.c:1552 -msgid " file name: " -msgstr " ļ: " - -#: ../memline.c:1558 -msgid "" -"\n" -" modified: " -msgstr "" -"\n" -" Ĺ: " - -#: ../memline.c:1559 -msgid "YES" -msgstr "" - -#: ../memline.c:1559 -msgid "no" -msgstr "" - -#: ../memline.c:1562 -msgid "" -"\n" -" user name: " -msgstr "" -"\n" -" û: " - -#: ../memline.c:1568 -msgid " host name: " -msgstr " : " - -#: ../memline.c:1570 -msgid "" -"\n" -" host name: " -msgstr "" -"\n" -" : " - -#: ../memline.c:1575 -msgid "" -"\n" -" process ID: " -msgstr "" -"\n" -" ID: " - -#: ../memline.c:1579 -msgid " (still running)" -msgstr " ()" - -#: ../memline.c:1586 -msgid "" -"\n" -" [not usable on this computer]" -msgstr "" -"\n" -" [ڱʹ]" - -#: ../memline.c:1590 -msgid " [cannot be read]" -msgstr " [ȡ]" - -#: ../memline.c:1593 -msgid " [cannot be opened]" -msgstr " []" - -#: ../memline.c:1698 -msgid "E313: Cannot preserve, there is no swap file" -msgstr "E313: ûнļ" - -#: ../memline.c:1747 -msgid "File preserved" -msgstr "ļѱ" - -#: ../memline.c:1749 -msgid "E314: Preserve failed" -msgstr "E314: ʧ" - -#: ../memline.c:1819 -#, c-format -msgid "E315: ml_get: invalid lnum: %<PRId64>" -msgstr "E315: ml_get: Ч lnum: %<PRId64>" - -#: ../memline.c:1851 -#, c-format -msgid "E316: ml_get: cannot find line %<PRId64>" -msgstr "E316: ml_get: Ҳ %<PRId64> " - -#: ../memline.c:2236 -msgid "E317: pointer block id wrong 3" -msgstr "E317: ָ id 3" - -#: ../memline.c:2311 -msgid "stack_idx should be 0" -msgstr "stack_idx Ӧ 0" - -#: ../memline.c:2369 -msgid "E318: Updated too many blocks?" -msgstr "E318: ̫Ŀ飿" - -#: ../memline.c:2511 -msgid "E317: pointer block id wrong 4" -msgstr "E317: ָ id 4" - -#: ../memline.c:2536 -msgid "deleted block 1?" -msgstr "ɾ˿ 1" - -#: ../memline.c:2707 -#, c-format -msgid "E320: Cannot find line %<PRId64>" -msgstr "E320: Ҳ %<PRId64> " - -#: ../memline.c:2916 -msgid "E317: pointer block id wrong" -msgstr "E317: ָ id " - -#: ../memline.c:2930 -msgid "pe_line_count is zero" -msgstr "pe_line_count Ϊ" - -#: ../memline.c:2955 -#, c-format -msgid "E322: line number out of range: %<PRId64> past the end" -msgstr "E322: кųΧ: %<PRId64> β" - -#: ../memline.c:2959 -#, c-format -msgid "E323: line count wrong in block %<PRId64>" -msgstr "E323: %<PRId64> " - -#: ../memline.c:2999 -msgid "Stack size increases" -msgstr "ջС" - -#: ../memline.c:3038 -msgid "E317: pointer block id wrong 2" -msgstr "E317: ָ id 2" - -#: ../memline.c:3070 -#, c-format -msgid "E773: Symlink loop for \"%s\"" -msgstr "E773: \"%s\" ӳѭ" - -#: ../memline.c:3221 -msgid "E325: ATTENTION" -msgstr "E325: ע" - -#: ../memline.c:3222 -msgid "" -"\n" -"Found a swap file by the name \"" -msgstr "" -"\n" -"ֽļ \"" - -#: ../memline.c:3226 -msgid "While opening file \"" -msgstr "ڴļ \"" - -#: ../memline.c:3239 -msgid " NEWER than swap file!\n" -msgstr " Ƚļ£\n" - -#: ../memline.c:3244 -#, fuzzy -msgid "" -"\n" -"(1) Another program may be editing the same file. If this is the case,\n" -" be careful not to end up with two different instances of the same\n" -" file when making changes." -msgstr "" -"\n" -"(1) һҲڱ༭ͬһļ\n" -" ʱעͬһļͬİ汾\n" -"\n" - -#: ../memline.c:3245 -#, fuzzy -msgid " Quit, or continue with caution.\n" -msgstr " ˳Сĵؼ\n" - -#: ../memline.c:3246 -#, fuzzy -msgid "(2) An edit session for this file crashed.\n" -msgstr "" -"\n" -"(2) ϴα༭ļʱ\n" - -#: ../memline.c:3247 -msgid " If this is the case, use \":recover\" or \"vim -r " -msgstr " \":recover\" \"vim -r " - -#: ../memline.c:3249 -msgid "" -"\"\n" -" to recover the changes (see \":help recovery\").\n" -msgstr "" -"\"\n" -" ָĵ ( \":help recovery\")\n" - -#: ../memline.c:3250 -msgid " If you did this already, delete the swap file \"" -msgstr " Ѿ˻ָɾļ \"" - -#: ../memline.c:3252 -msgid "" -"\"\n" -" to avoid this message.\n" -msgstr "" -"\"\n" -" ԱٿϢ\n" - -#: ../memline.c:3450 ../memline.c:3452 -msgid "Swap file \"" -msgstr "ļ \"" - -#: ../memline.c:3451 ../memline.c:3455 -msgid "\" already exists!" -msgstr "\" Ѵڣ" - -#: ../memline.c:3457 -msgid "VIM - ATTENTION" -msgstr "VIM - ע" - -#: ../memline.c:3459 -msgid "Swap file already exists!" -msgstr "ļѴڣ" - -#: ../memline.c:3464 -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Quit\n" -"&Abort" -msgstr "" -"ֻʽ(&O)\n" -"ֱӱ༭(&E)\n" -"ָ(&R)\n" -"˳(&Q)\n" -"ֹ(&A)" - -#: ../memline.c:3467 -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Delete it\n" -"&Quit\n" -"&Abort" -msgstr "" -"ֻʽ(&O)\n" -"ֱӱ༭(&E)\n" -"ָ(&R)\n" -"ɾļ(&D)\n" -"˳(&Q)\n" -"ֹ(&A)" - -#. -#. * Change the ".swp" extension to find another file that can be used. -#. * First decrement the last char: ".swo", ".swn", etc. -#. * If that still isn't enough decrement the last but one char: ".svz" -#. * Can happen when editing many "No Name" buffers. -#. -#. ".s?a" -#. ".saa": tried enough, give up -#: ../memline.c:3528 -msgid "E326: Too many swap files found" -msgstr "E326: ҵཻ̫ļ" - -#: ../memory.c:227 -#, c-format -msgid "E342: Out of memory! (allocating %<PRIu64> bytes)" -msgstr "E342: ڴ治㣡( %<PRIu64> ֽ)" - -#: ../menu.c:62 -msgid "E327: Part of menu-item path is not sub-menu" -msgstr "E327: ˵ij·Ӳ˵" - -#: ../menu.c:63 -msgid "E328: Menu only exists in another mode" -msgstr "E328: ˵ֻģʽд" - -#: ../menu.c:64 -#, c-format -msgid "E329: No menu \"%s\"" -msgstr "E329: ûв˵ \"%s\"" - -#. Only a mnemonic or accelerator is not valid. -#: ../menu.c:329 -#, fuzzy -msgid "E792: Empty menu name" -msgstr "E749: յĻ" - -#: ../menu.c:340 -msgid "E330: Menu path must not lead to a sub-menu" -msgstr "E330: ˵·ָӲ˵" - -#: ../menu.c:365 -msgid "E331: Must not add menu items directly to menu bar" -msgstr "E331: ܰѲ˵ֱӼӵ˵" - -#: ../menu.c:370 -msgid "E332: Separator cannot be part of a menu path" -msgstr "E332: ָ߲Dz˵·һ" - -#. Now we have found the matching menu, and we list the mappings -#. Highlight title -#: ../menu.c:762 -msgid "" -"\n" -"--- Menus ---" -msgstr "" -"\n" -"--- ˵ ---" - -#: ../menu.c:1313 -msgid "E333: Menu path must lead to a menu item" -msgstr "E333: ˵·ָ˵" - -#: ../menu.c:1330 -#, c-format -msgid "E334: Menu not found: %s" -msgstr "E334: Ҳ˵: %s" - -#: ../menu.c:1396 -#, c-format -msgid "E335: Menu not defined for %s mode" -msgstr "E335: %s ģʽв˵δ" - -#: ../menu.c:1426 -msgid "E336: Menu path must lead to a sub-menu" -msgstr "E336: ˵·ָӲ˵" - -#: ../menu.c:1447 -msgid "E337: Menu not found - check menu names" -msgstr "E337: Ҳ˵ - ˵" - -#: ../message.c:423 -#, c-format -msgid "Error detected while processing %s:" -msgstr " %s ʱ:" - -#: ../message.c:445 -#, c-format -msgid "line %4ld:" -msgstr " %4ld :" - -#: ../message.c:617 -#, c-format -msgid "E354: Invalid register name: '%s'" -msgstr "E354: ЧļĴ: '%s'" - -#: ../message.c:986 -msgid "Interrupt: " -msgstr "ж: " - -#: ../message.c:988 -msgid "Press ENTER or type command to continue" -msgstr "밴 ENTER " - -#: ../message.c:1843 -#, c-format -msgid "%s line %<PRId64>" -msgstr "%s %<PRId64> " - -#: ../message.c:2392 -msgid "-- More --" -msgstr "-- --" - -#: ../message.c:2398 -msgid " SPACE/d/j: screen/page/line down, b/u/k: up, q: quit " -msgstr " ո/d/j: Ļ/ҳ/ ·b/u/k: Ϸq: ˳ " - -#: ../message.c:3021 ../message.c:3031 -msgid "Question" -msgstr "" - -#: ../message.c:3023 -msgid "" -"&Yes\n" -"&No" -msgstr "" -"(&Y)\n" -"(&N)" - -#: ../message.c:3033 -msgid "" -"&Yes\n" -"&No\n" -"&Cancel" -msgstr "" -"(&Y)\n" -"(&N)\n" -"ȡ(&C)" - -#: ../message.c:3045 -msgid "" -"&Yes\n" -"&No\n" -"Save &All\n" -"&Discard All\n" -"&Cancel" -msgstr "" -"(&Y)\n" -"(&N)\n" -"ȫ(&A)\n" -"ȫ(&D)\n" -"ȡ(&C)" - -#: ../message.c:3058 -msgid "E766: Insufficient arguments for printf()" -msgstr "E766: printf() IJ" - -#: ../message.c:3119 -#, fuzzy -msgid "E807: Expected Float argument for printf()" -msgstr "E766: printf() IJ" - -#: ../message.c:3873 -msgid "E767: Too many arguments to printf()" -msgstr "E767: printf() IJ" - -#: ../misc1.c:2256 -msgid "W10: Warning: Changing a readonly file" -msgstr "W10: : һֻļ" - -#: ../misc1.c:2537 -#, fuzzy -msgid "Type number and <Enter> or click with mouse (empty cancels): " -msgstr "ֻ (<Enter> ȡ): " - -#: ../misc1.c:2539 -#, fuzzy -msgid "Type number and <Enter> (empty cancels): " -msgstr "ѡ (<Enter> ȡ): " - -#: ../misc1.c:2585 -msgid "1 more line" -msgstr " 1 " - -#: ../misc1.c:2588 -msgid "1 line less" -msgstr " 1 " - -#: ../misc1.c:2593 -#, c-format -msgid "%<PRId64> more lines" -msgstr " %<PRId64> " - -#: ../misc1.c:2596 -#, c-format -msgid "%<PRId64> fewer lines" -msgstr " %<PRId64> " - -#: ../misc1.c:2599 -msgid " (Interrupted)" -msgstr " (ж)" - -#: ../misc1.c:2635 -msgid "Beep!" -msgstr "Beep!" - -#: ../misc2.c:738 -#, c-format -msgid "Calling shell to execute: \"%s\"" -msgstr " shell ִ: \"%s\"" - -#: ../normal.c:183 -msgid "E349: No identifier under cursor" -msgstr "E349: 괦ûʶ" - -#: ../normal.c:1866 -msgid "E774: 'operatorfunc' is empty" -msgstr "E774: 'operatorfunc' Ϊ" - -#: ../normal.c:2637 -msgid "Warning: terminal cannot highlight" -msgstr ": ն˲ʾ" - -#: ../normal.c:2807 -msgid "E348: No string under cursor" -msgstr "E348: 괦ûַ" - -#: ../normal.c:3937 -msgid "E352: Cannot erase folds with current 'foldmethod'" -msgstr "E352: ڵǰ 'foldmethod' ɾ fold" - -#: ../normal.c:5897 -msgid "E664: changelist is empty" -msgstr "E664: ıбΪ" - -#: ../normal.c:5899 -msgid "E662: At start of changelist" -msgstr "E662: ڸıбĿʼ" - -#: ../normal.c:5901 -msgid "E663: At end of changelist" -msgstr "E663: ڸıбĩβ" - -#: ../normal.c:7053 -msgid "Type :quit<Enter> to exit Nvim" -msgstr " :quit<Enter> ˳ Vim" - -#: ../ops.c:248 -#, c-format -msgid "1 line %sed 1 time" -msgstr "1 %s 1 " - -#: ../ops.c:250 -#, c-format -msgid "1 line %sed %d times" -msgstr "1 %s %d " - -#: ../ops.c:253 -#, c-format -msgid "%<PRId64> lines %sed 1 time" -msgstr "%<PRId64> %s 1 " - -#: ../ops.c:256 -#, c-format -msgid "%<PRId64> lines %sed %d times" -msgstr "%<PRId64> %s %d " - -#: ../ops.c:592 -#, c-format -msgid "%<PRId64> lines to indent... " -msgstr " %<PRId64> С " - -#: ../ops.c:634 -msgid "1 line indented " -msgstr " 1 " - -#: ../ops.c:636 -#, c-format -msgid "%<PRId64> lines indented " -msgstr " %<PRId64> " - -#: ../ops.c:938 -msgid "E748: No previously used register" -msgstr "E748: ûǰһʹõļĴ" - -#. must display the prompt -#: ../ops.c:1433 -msgid "cannot yank; delete anyway" -msgstr "ƣΪɾ" - -#: ../ops.c:1929 -msgid "1 line changed" -msgstr "ı 1 " - -#: ../ops.c:1931 -#, c-format -msgid "%<PRId64> lines changed" -msgstr "ı %<PRId64> " - -#: ../ops.c:2521 -msgid "block of 1 line yanked" -msgstr " 1 еĿ" - -#: ../ops.c:2523 -msgid "1 line yanked" -msgstr " 1 " - -#: ../ops.c:2525 -#, c-format -msgid "block of %<PRId64> lines yanked" -msgstr " %<PRId64> еĿ" - -#: ../ops.c:2528 -#, c-format -msgid "%<PRId64> lines yanked" -msgstr " %<PRId64> " - -#: ../ops.c:2710 -#, c-format -msgid "E353: Nothing in register %s" -msgstr "E353: Ĵ %s ûж" - -#. Highlight title -#: ../ops.c:3185 -msgid "" -"\n" -"--- Registers ---" -msgstr "" -"\n" -"--- Ĵ ---" - -#: ../ops.c:4455 -msgid "Illegal register name" -msgstr "ЧļĴ" - -#: ../ops.c:4533 -msgid "" -"\n" -"# Registers:\n" -msgstr "" -"\n" -"# Ĵ:\n" - -#: ../ops.c:4575 -#, c-format -msgid "E574: Unknown register type %d" -msgstr "E574: δ֪ļĴ %d" - -#: ../ops.c:5089 -#, c-format -msgid "%<PRId64> Cols; " -msgstr "%<PRId64> ; " - -#: ../ops.c:5097 -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Bytes" -msgstr "" -"ѡ %s%<PRId64>/%<PRId64> ; %<PRId64>/%<PRId64> ; %<PRId64>/" -"%<PRId64> ֽ" - -#: ../ops.c:5105 -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Chars; %<PRId64> of %<PRId64> Bytes" -msgstr "" -"ѡ %s%<PRId64>/%<PRId64> ; %<PRId64>/%<PRId64> ; %<PRId64>/" -"%<PRId64> ַ; %<PRId64>/%<PRId64> ֽ" - -#: ../ops.c:5123 -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Byte " -"%<PRId64> of %<PRId64>" -msgstr "" -" %s/%s ; %<PRId64>/%<PRId64> ; %<PRId64>/%<PRId64> ; " -"%<PRId64>/%<PRId64> ֽ" - -#: ../ops.c:5133 -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Char " -"%<PRId64> of %<PRId64>; Byte %<PRId64> of %<PRId64>" -msgstr "" -" %s/%s ; %<PRId64>/%<PRId64> ; %<PRId64>/%<PRId64> ; " -"%<PRId64>/%<PRId64> ַ; %<PRId64>/%<PRId64> ֽ" - -#: ../ops.c:5146 -#, c-format -msgid "(+%<PRId64> for BOM)" -msgstr "" - -#: ../option.c:1238 -msgid "%<%f%h%m%=Page %N" -msgstr "" - -#: ../option.c:1574 -msgid "Thanks for flying Vim" -msgstr "лѡ Vim" - -#. found a mismatch: skip -#: ../option.c:2698 -msgid "E518: Unknown option" -msgstr "E518: δ֪ѡ" - -#: ../option.c:2709 -msgid "E519: Option not supported" -msgstr "E519: ָ֧ѡ" - -#: ../option.c:2740 -msgid "E520: Not allowed in a modeline" -msgstr "E520: modeline ʹ" - -#: ../option.c:2815 -msgid "E846: Key code not set" -msgstr "" - -#: ../option.c:2924 -msgid "E521: Number required after =" -msgstr "E521: = Ҫ" - -#: ../option.c:3226 ../option.c:3864 -msgid "E522: Not found in termcap" -msgstr "E522: Termcap Ҳ" - -#: ../option.c:3335 -#, c-format -msgid "E539: Illegal character <%s>" -msgstr "E539: Чַ <%s>" - -#: ../option.c:3862 -msgid "E529: Cannot set 'term' to empty string" -msgstr "E529: 趨 'term' Ϊַ" - -#: ../option.c:3885 -msgid "E589: 'backupext' and 'patchmode' are equal" -msgstr "E589: 'backupext' 'patchmode' " - -#: ../option.c:3964 -msgid "E834: Conflicts with value of 'listchars'" -msgstr "" - -#: ../option.c:3966 -msgid "E835: Conflicts with value of 'fillchars'" -msgstr "" - -#: ../option.c:4163 -msgid "E524: Missing colon" -msgstr "E524: ȱð" - -#: ../option.c:4165 -msgid "E525: Zero length string" -msgstr "E525: ַΪ" - -#: ../option.c:4220 -#, c-format -msgid "E526: Missing number after <%s>" -msgstr "E526: <%s> ȱ" - -#: ../option.c:4232 -msgid "E527: Missing comma" -msgstr "E527: ȱٶ" - -#: ../option.c:4239 -msgid "E528: Must specify a ' value" -msgstr "E528: ָһ ' ֵ" - -#: ../option.c:4271 -msgid "E595: contains unprintable or wide character" -msgstr "E595: ʾַַ" - -#: ../option.c:4469 -#, c-format -msgid "E535: Illegal character after <%c>" -msgstr "E535: <%c> Чַ" - -#: ../option.c:4534 -msgid "E536: comma required" -msgstr "E536: Ҫ" - -#: ../option.c:4543 -#, c-format -msgid "E537: 'commentstring' must be empty or contain %s" -msgstr "E537: 'commentstring' Ϊջ %s" - -#: ../option.c:4928 -msgid "E540: Unclosed expression sequence" -msgstr "E540: ûнıʽ" - -#: ../option.c:4932 -msgid "E541: too many items" -msgstr "E541: Ŀ" - -#: ../option.c:4934 -msgid "E542: unbalanced groups" -msgstr "E542: ҵ" - -#: ../option.c:5148 -msgid "E590: A preview window already exists" -msgstr "E590: ԤѴ" - -#: ../option.c:5311 -msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'" -msgstr "W17: Arabic Ҫ UTF-8ִ ':set encoding=utf-8'" - -#: ../option.c:5623 -#, c-format -msgid "E593: Need at least %d lines" -msgstr "E593: Ҫ %d " - -#: ../option.c:5631 -#, c-format -msgid "E594: Need at least %d columns" -msgstr "E594: Ҫ %d " - -#: ../option.c:6011 -#, c-format -msgid "E355: Unknown option: %s" -msgstr "E355: δ֪ѡ: %s" - -#. There's another character after zeros or the string -#. * is empty. In both cases, we are trying to set a -#. * num option using a string. -#: ../option.c:6037 -#, fuzzy, c-format -msgid "E521: Number required: &%s = '%s'" -msgstr "E521: = Ҫ" - -#: ../option.c:6149 -msgid "" -"\n" -"--- Terminal codes ---" -msgstr "" -"\n" -"--- ն˱ ---" - -#: ../option.c:6151 -msgid "" -"\n" -"--- Global option values ---" -msgstr "" -"\n" -"--- ȫѡֵ ---" - -#: ../option.c:6153 -msgid "" -"\n" -"--- Local option values ---" -msgstr "" -"\n" -"--- ֲѡֵ ---" - -#: ../option.c:6155 -msgid "" -"\n" -"--- Options ---" -msgstr "" -"\n" -"--- ѡ ---" - -#: ../option.c:6816 -msgid "E356: get_varp ERROR" -msgstr "E356: get_varp " - -#: ../option.c:7696 -#, c-format -msgid "E357: 'langmap': Matching character missing for %s" -msgstr "E357: 'langmap': Ҳ %s Ӧַ" - -#: ../option.c:7715 -#, c-format -msgid "E358: 'langmap': Extra characters after semicolon: %s" -msgstr "E358: 'langmap': ֺźжַ: %s" - -#: ../os/shell.c:194 -msgid "" -"\n" -"Cannot execute shell " -msgstr "" -"\n" -"ִ shell" - -#: ../os/shell.c:439 -msgid "" -"\n" -"shell returned " -msgstr "" -"\n" -"Shell ѷ" - -#: ../os_unix.c:465 ../os_unix.c:471 -msgid "" -"\n" -"Could not get security context for " -msgstr "" - -#: ../os_unix.c:479 -msgid "" -"\n" -"Could not set security context for " -msgstr "" - -# do not translate -#: ../os_unix.c:1558 ../os_unix.c:1647 -#, c-format -msgid "dlerror = \"%s\"" -msgstr "dlerror = \"%s\"" - -#: ../path.c:1449 -#, c-format -msgid "E447: Can't find file \"%s\" in path" -msgstr "E447: ·Ҳļ \"%s\"" - -#: ../quickfix.c:359 -#, c-format -msgid "E372: Too many %%%c in format string" -msgstr "E372: ʽַ̫ %%%c " - -#: ../quickfix.c:371 -#, c-format -msgid "E373: Unexpected %%%c in format string" -msgstr "E373: ʽַӦó %%%c " - -#: ../quickfix.c:420 -msgid "E374: Missing ] in format string" -msgstr "E374: ʽַ ]" - -#: ../quickfix.c:431 -#, c-format -msgid "E375: Unsupported %%%c in format string" -msgstr "E375: ʽַвֵ֧ %%%c " - -#: ../quickfix.c:448 -#, c-format -msgid "E376: Invalid %%%c in format string prefix" -msgstr "E376: ʽַͷвȷ %%%c " - -#: ../quickfix.c:454 -#, c-format -msgid "E377: Invalid %%%c in format string" -msgstr "E377: ʽַвȷ %%%c " - -#. nothing found -#: ../quickfix.c:477 -msgid "E378: 'errorformat' contains no pattern" -msgstr "E378: 'errorformat' δ趨" - -#: ../quickfix.c:695 -msgid "E379: Missing or empty directory name" -msgstr "E379: ҲĿ¼ƻǿյĿ¼" - -#: ../quickfix.c:1305 -msgid "E553: No more items" -msgstr "E553: ûи" - -#: ../quickfix.c:1674 -#, c-format -msgid "(%d of %d)%s%s: " -msgstr "(%d / %d)%s%s: " - -#: ../quickfix.c:1676 -msgid " (line deleted)" -msgstr " (ɾ)" - -#: ../quickfix.c:1863 -msgid "E380: At bottom of quickfix stack" -msgstr "E380: Quickfix ջ" - -#: ../quickfix.c:1869 -msgid "E381: At top of quickfix stack" -msgstr "E381: Quickfix ջ" - -#: ../quickfix.c:1880 -#, c-format -msgid "error list %d of %d; %d errors" -msgstr "б %d / %d %d " - -#: ../quickfix.c:2427 -msgid "E382: Cannot write, 'buftype' option is set" -msgstr "E382: д룬趨ѡ 'buftype'" - -#: ../quickfix.c:2812 -msgid "E683: File name missing or invalid pattern" -msgstr "E683: ȱļģʽЧ" - -#: ../quickfix.c:2911 -#, c-format -msgid "Cannot open file \"%s\"" -msgstr "ļ \"%s\"" - -#: ../quickfix.c:3429 -msgid "E681: Buffer is not loaded" -msgstr "E681: δ" - -#: ../quickfix.c:3487 -msgid "E777: String or List expected" -msgstr "E777: ˴Ҫ String List" - -#: ../regexp.c:359 -#, c-format -msgid "E369: invalid item in %s%%[]" -msgstr "E369: %s%%[] Ч" - -#: ../regexp.c:374 -#, c-format -msgid "E769: Missing ] after %s[" -msgstr "E769: %s[ ȱ ]" - -#: ../regexp.c:375 -#, c-format -msgid "E53: Unmatched %s%%(" -msgstr "E53: ƥ %s%%(" - -#: ../regexp.c:376 -#, c-format -msgid "E54: Unmatched %s(" -msgstr "E54: ƥ %s(" - -#: ../regexp.c:377 -#, c-format -msgid "E55: Unmatched %s)" -msgstr "E55: ƥ %s)" - -#: ../regexp.c:378 -msgid "E66: \\z( not allowed here" -msgstr "E66: ˴ \\z(" - -#: ../regexp.c:379 -msgid "E67: \\z1 et al. not allowed here" -msgstr "E67: ˴ \\z1 " - -#: ../regexp.c:380 -#, c-format -msgid "E69: Missing ] after %s%%[" -msgstr "E69: %s%%[ ȱ ]" - -#: ../regexp.c:381 -#, c-format -msgid "E70: Empty %s%%[]" -msgstr "E70: յ %s%%[]" - -#: ../regexp.c:1209 ../regexp.c:1224 -msgid "E339: Pattern too long" -msgstr "E339: ģʽ̫" - -#: ../regexp.c:1371 -msgid "E50: Too many \\z(" -msgstr "E50: ̫ \\z(" - -#: ../regexp.c:1378 -#, c-format -msgid "E51: Too many %s(" -msgstr "E51: ̫ %s(" - -#: ../regexp.c:1427 -msgid "E52: Unmatched \\z(" -msgstr "E52: ƥ \\z(" - -#: ../regexp.c:1637 -#, c-format -msgid "E59: invalid character after %s@" -msgstr "E59: %s@ Чַ" - -#: ../regexp.c:1672 -#, c-format -msgid "E60: Too many complex %s{...}s" -msgstr "E60: ̫ิӵ %s{...}s" - -#: ../regexp.c:1687 -#, c-format -msgid "E61: Nested %s*" -msgstr "E61: Ƕ %s*" - -#: ../regexp.c:1690 -#, c-format -msgid "E62: Nested %s%c" -msgstr "E62: Ƕ %s%c" - -#: ../regexp.c:1800 -msgid "E63: invalid use of \\_" -msgstr "E63: ȷʹ \\_" - -#: ../regexp.c:1850 -#, c-format -msgid "E64: %s%c follows nothing" -msgstr "E64: %s%c ǰ" - -#: ../regexp.c:1902 -msgid "E65: Illegal back reference" -msgstr "E65: ЧĻ" - -#: ../regexp.c:1943 -msgid "E68: Invalid character after \\z" -msgstr "E68: \\z Чַ" - -#: ../regexp.c:2049 ../regexp_nfa.c:1296 -#, c-format -msgid "E678: Invalid character after %s%%[dxouU]" -msgstr "E678: %s%%[dxouU] Чַ" - -#: ../regexp.c:2107 -#, c-format -msgid "E71: Invalid character after %s%%" -msgstr "E71: %s%% Чַ" - -#: ../regexp.c:3017 -#, c-format -msgid "E554: Syntax error in %s{...}" -msgstr "E554: %s{...} " - -#: ../regexp.c:3805 -msgid "External submatches:\n" -msgstr "ⲿ:\n" - -#: ../regexp.c:7022 -msgid "" -"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be " -"used " -msgstr "" - -#: ../regexp_nfa.c:239 -msgid "E865: (NFA) Regexp end encountered prematurely" -msgstr "" - -#: ../regexp_nfa.c:240 -#, c-format -msgid "E866: (NFA regexp) Misplaced %c" -msgstr "" - -#: ../regexp_nfa.c:242 -#, c-format -msgid "E877: (NFA regexp) Invalid character class: %<PRId64>" -msgstr "" - -#: ../regexp_nfa.c:1261 -#, c-format -msgid "E867: (NFA) Unknown operator '\\z%c'" -msgstr "" - -#: ../regexp_nfa.c:1387 -#, c-format -msgid "E867: (NFA) Unknown operator '\\%%%c'" -msgstr "" - -#: ../regexp_nfa.c:1802 -#, c-format -msgid "E869: (NFA) Unknown operator '\\@%c'" -msgstr "" - -#: ../regexp_nfa.c:1831 -msgid "E870: (NFA regexp) Error reading repetition limits" -msgstr "" - -#. Can't have a multi follow a multi. -#: ../regexp_nfa.c:1895 -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" -msgstr "" - -#. Too many `(' -#: ../regexp_nfa.c:2037 -msgid "E872: (NFA regexp) Too many '('" -msgstr "" - -#: ../regexp_nfa.c:2042 -#, fuzzy -msgid "E879: (NFA regexp) Too many \\z(" -msgstr "E50: ̫ \\z(" - -#: ../regexp_nfa.c:2066 -msgid "E873: (NFA regexp) proper termination error" -msgstr "" - -#: ../regexp_nfa.c:2599 -msgid "E874: (NFA) Could not pop the stack !" -msgstr "" - -#: ../regexp_nfa.c:3298 -msgid "" -"E875: (NFA regexp) (While converting from postfix to NFA), too many states " -"left on stack" -msgstr "" - -#: ../regexp_nfa.c:3302 -msgid "E876: (NFA regexp) Not enough space to store the whole NFA " -msgstr "" - -#: ../regexp_nfa.c:4571 ../regexp_nfa.c:4869 -msgid "" -"Could not open temporary log file for writing, displaying on stderr ... " -msgstr "" - -#: ../regexp_nfa.c:4840 -#, c-format -msgid "(NFA) COULD NOT OPEN %s !" -msgstr "" - -#: ../regexp_nfa.c:6049 -#, fuzzy -msgid "Could not open temporary log file for writing " -msgstr "E214: Ҳдʱļ" - -#: ../screen.c:7435 -msgid " VREPLACE" -msgstr " V-滻" - -#: ../screen.c:7437 -msgid " REPLACE" -msgstr " 滻" - -#: ../screen.c:7440 -msgid " REVERSE" -msgstr " " - -#: ../screen.c:7441 -msgid " INSERT" -msgstr " " - -#: ../screen.c:7443 -msgid " (insert)" -msgstr " ()" - -#: ../screen.c:7445 -msgid " (replace)" -msgstr " (滻)" - -#: ../screen.c:7447 -msgid " (vreplace)" -msgstr " (V-滻)" - -#: ../screen.c:7449 -msgid " Hebrew" -msgstr " Hebrew" - -#: ../screen.c:7454 -msgid " Arabic" -msgstr " Arabic" - -#: ../screen.c:7456 -msgid " (lang)" -msgstr " ()" - -#: ../screen.c:7459 -msgid " (paste)" -msgstr " (ճ)" - -#: ../screen.c:7469 -msgid " VISUAL" -msgstr " " - -#: ../screen.c:7470 -msgid " VISUAL LINE" -msgstr " " - -#: ../screen.c:7471 -msgid " VISUAL BLOCK" -msgstr " " - -#: ../screen.c:7472 -msgid " SELECT" -msgstr " ѡ" - -#: ../screen.c:7473 -msgid " SELECT LINE" -msgstr " ѡ " - -#: ../screen.c:7474 -msgid " SELECT BLOCK" -msgstr " ѡ " - -#: ../screen.c:7486 ../screen.c:7541 -msgid "recording" -msgstr "¼" - -#: ../search.c:487 -#, c-format -msgid "E383: Invalid search string: %s" -msgstr "E383: ЧIJַ: %s" - -#: ../search.c:832 -#, c-format -msgid "E384: search hit TOP without match for: %s" -msgstr "E384: ѲҵļͷҲ %s" - -#: ../search.c:835 -#, c-format -msgid "E385: search hit BOTTOM without match for: %s" -msgstr "E385: ѲҵļβҲ %s" - -#: ../search.c:1200 -msgid "E386: Expected '?' or '/' after ';'" -msgstr "E386: ';' Ӧ '?' '/'" - -#: ../search.c:4085 -msgid " (includes previously listed match)" -msgstr " (ϴг)" - -#. cursor at status line -#: ../search.c:4104 -msgid "--- Included files " -msgstr "--- ļ " - -#: ../search.c:4106 -msgid "not found " -msgstr "Ҳ " - -#: ../search.c:4107 -msgid "in path ---\n" -msgstr "· ---\n" - -#: ../search.c:4168 -msgid " (Already listed)" -msgstr " (г)" - -#: ../search.c:4170 -msgid " NOT FOUND" -msgstr " Ҳ" - -#: ../search.c:4211 -#, c-format -msgid "Scanning included file: %s" -msgstr "Ұļ: %s" - -#: ../search.c:4216 -#, c-format -msgid "Searching included file %s" -msgstr "Ұļ %s" - -#: ../search.c:4405 -msgid "E387: Match is on current line" -msgstr "E387: ǰƥ" - -#: ../search.c:4517 -msgid "All included files were found" -msgstr "аļҵ" - -#: ../search.c:4519 -msgid "No included files" -msgstr "ûаļ" - -#: ../search.c:4527 -msgid "E388: Couldn't find definition" -msgstr "E388: Ҳ" - -#: ../search.c:4529 -msgid "E389: Couldn't find pattern" -msgstr "E389: Ҳ pattern" - -#: ../search.c:4668 -#, fuzzy -msgid "Substitute " -msgstr "1 滻" - -#: ../search.c:4681 -#, c-format -msgid "" -"\n" -"# Last %sSearch Pattern:\n" -"~" -msgstr "" - -#: ../spell.c:951 -msgid "E759: Format error in spell file" -msgstr "E759: ƴдļʽ" - -#: ../spell.c:952 -msgid "E758: Truncated spell file" -msgstr "E758: ѽضϵƴдļ" - -#: ../spell.c:953 -#, c-format -msgid "Trailing text in %s line %d: %s" -msgstr "%s %d Уĺַ: %s" - -#: ../spell.c:954 -#, c-format -msgid "Affix name too long in %s line %d: %s" -msgstr "%s %d У̫: %s" - -#: ../spell.c:955 -msgid "E761: Format error in affix file FOL, LOW or UPP" -msgstr "E761: ļ FOLLOW UPP иʽ" - -#: ../spell.c:957 -msgid "E762: Character in FOL, LOW or UPP is out of range" -msgstr "E762: FOLLOW UPP ַΧ" - -#: ../spell.c:958 -msgid "Compressing word tree..." -msgstr "ѹ" - -#: ../spell.c:1951 -msgid "E756: Spell checking is not enabled" -msgstr "E756: ƴдδ" - -#: ../spell.c:2249 -#, c-format -msgid "Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\"" -msgstr ": Ҳб \"%s.%s.spl\" or \"%s.ascii.spl\"" - -#: ../spell.c:2473 -#, c-format -msgid "Reading spell file \"%s\"" -msgstr "ȡƴдļ \"%s\"" - -#: ../spell.c:2496 -msgid "E757: This does not look like a spell file" -msgstr "E757: ⿴ƴдļ" - -#: ../spell.c:2501 -msgid "E771: Old spell file, needs to be updated" -msgstr "E771: ɰ汾ƴдļҪ" - -#: ../spell.c:2504 -msgid "E772: Spell file is for newer version of Vim" -msgstr "E772: Ϊ߰汾 Vim õƴдļ" - -#: ../spell.c:2602 -msgid "E770: Unsupported section in spell file" -msgstr "E770: ƴдļдڲֵ֧Ľ" - -#: ../spell.c:3762 -#, c-format -msgid "Warning: region %s not supported" -msgstr ": %s ֧" - -#: ../spell.c:4550 -#, c-format -msgid "Reading affix file %s ..." -msgstr "ȡļ %s " - -#: ../spell.c:4589 ../spell.c:5635 ../spell.c:6140 -#, c-format -msgid "Conversion failure for word in %s line %d: %s" -msgstr " %s תʧܣ %d : %s" - -#: ../spell.c:4630 ../spell.c:6170 -#, c-format -msgid "Conversion in %s not supported: from %s to %s" -msgstr "֧ %s еת: %s %s" - -#: ../spell.c:4642 -#, c-format -msgid "Invalid value for FLAG in %s line %d: %s" -msgstr "%s %d УFLAG ֵЧ: %s" - -#: ../spell.c:4655 -#, c-format -msgid "FLAG after using flags in %s line %d: %s" -msgstr "%s %d Уʹñ־ FLAG: %s" - -#: ../spell.c:4723 -#, c-format -msgid "" -"Defining COMPOUNDFORBIDFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" - -#: ../spell.c:4731 -#, c-format -msgid "" -"Defining COMPOUNDPERMITFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" - -#: ../spell.c:4747 -#, fuzzy, c-format -msgid "Wrong COMPOUNDRULES value in %s line %d: %s" -msgstr "%s %d У COMPOUNDMIN ֵ: %s" - -#: ../spell.c:4771 -#, c-format -msgid "Wrong COMPOUNDWORDMAX value in %s line %d: %s" -msgstr "%s %d У COMPOUNDWORDMAX ֵ: %s" - -#: ../spell.c:4777 -#, c-format -msgid "Wrong COMPOUNDMIN value in %s line %d: %s" -msgstr "%s %d У COMPOUNDMIN ֵ: %s" - -#: ../spell.c:4783 -#, c-format -msgid "Wrong COMPOUNDSYLMAX value in %s line %d: %s" -msgstr "%s %d У COMPOUNDSYLMAX ֵ: %s" - -#: ../spell.c:4795 -#, c-format -msgid "Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s" -msgstr "%s %d У CHECKCOMPOUNDPATTERN ֵ: %s" - -#: ../spell.c:4847 -#, c-format -msgid "Different combining flag in continued affix block in %s line %d: %s" -msgstr "%s %d Уĸӿгֲͬϱ־: %s" - -#: ../spell.c:4850 -#, c-format -msgid "Duplicate affix in %s line %d: %s" -msgstr "%s %d Уظĸ: %s" - -#: ../spell.c:4871 -#, c-format -msgid "" -"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s " -"line %d: %s" -msgstr "" -"%s %d У BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST ʹ" -": %s" - -#: ../spell.c:4893 -#, c-format -msgid "Expected Y or N in %s line %d: %s" -msgstr "%s %d У˴Ҫ Y N: %s" - -#: ../spell.c:4968 -#, c-format -msgid "Broken condition in %s line %d: %s" -msgstr "%s %d У: %s" - -#: ../spell.c:5091 -#, c-format -msgid "Expected REP(SAL) count in %s line %d" -msgstr "%s %d У˴Ҫ REP(SAL) " - -#: ../spell.c:5120 -#, c-format -msgid "Expected MAP count in %s line %d" -msgstr "%s %d У˴Ҫ MAP " - -#: ../spell.c:5132 -#, c-format -msgid "Duplicate character in MAP in %s line %d" -msgstr "%s %d УMAP дظַ" - -#: ../spell.c:5176 -#, c-format -msgid "Unrecognized or duplicate item in %s line %d: %s" -msgstr "%s %d Уʶظ: %s" - -#: ../spell.c:5197 -#, c-format -msgid "Missing FOL/LOW/UPP line in %s" -msgstr "%s ȱ FOL/LOW/UPP " - -#: ../spell.c:5220 -msgid "COMPOUNDSYLMAX used without SYLLABLE" -msgstr "û SYLLABLE ʹ COMPOUNDSYLMAX" - -#: ../spell.c:5236 -msgid "Too many postponed prefixes" -msgstr "̫ӳǰ" - -#: ../spell.c:5238 -msgid "Too many compound flags" -msgstr "̫ϱ־" - -#: ../spell.c:5240 -msgid "Too many postponed prefixes and/or compound flags" -msgstr "̫ӳǰ/ϱ־" - -#: ../spell.c:5250 -#, c-format -msgid "Missing SOFO%s line in %s" -msgstr "%s ȱ SOFO%s " - -#: ../spell.c:5253 -#, c-format -msgid "Both SAL and SOFO lines in %s" -msgstr "%s ͬʱ SQL SOFO " - -#: ../spell.c:5331 -#, c-format -msgid "Flag is not a number in %s line %d: %s" -msgstr "%s %d У־: %s" - -#: ../spell.c:5334 -#, c-format -msgid "Illegal flag in %s line %d: %s" -msgstr "%s %d УЧı־: %s" - -#: ../spell.c:5493 ../spell.c:5501 -#, c-format -msgid "%s value differs from what is used in another .aff file" -msgstr "%s ֵһ .aff ļʹõֵͬ" - -#: ../spell.c:5602 -#, c-format -msgid "Reading dictionary file %s ..." -msgstr "ȡֵļ %s " - -#: ../spell.c:5611 -#, c-format -msgid "E760: No word count in %s" -msgstr "E760: %s ûеʼ" - -#: ../spell.c:5669 -#, c-format -msgid "line %6d, word %6d - %s" -msgstr " %6d У %6d - %s" - -#: ../spell.c:5691 -#, c-format -msgid "Duplicate word in %s line %d: %s" -msgstr "%s %d Уظĵ: %s" - -#: ../spell.c:5694 -#, c-format -msgid "First duplicate word in %s line %d: %s" -msgstr "%s %d У״ظĵ: %s" - -#: ../spell.c:5746 -#, c-format -msgid "%d duplicate word(s) in %s" -msgstr " %d ظĵʣ %s " - -#: ../spell.c:5748 -#, c-format -msgid "Ignored %d word(s) with non-ASCII characters in %s" -msgstr "˺з ASCII ַ %d ʣ %s " - -#: ../spell.c:6115 -#, c-format -msgid "Reading word file %s ..." -msgstr "ȡļ %s " - -#: ../spell.c:6155 -#, c-format -msgid "Duplicate /encoding= line ignored in %s line %d: %s" -msgstr "" - -#: ../spell.c:6159 -#, c-format -msgid "/encoding= line after word ignored in %s line %d: %s" -msgstr "%s %d Уʺ /encoding= ѱ: %s" - -#: ../spell.c:6180 -#, c-format -msgid "Duplicate /regions= line ignored in %s line %d: %s" -msgstr "%s %d Уظ /regions= ѱ: %s" - -#: ../spell.c:6185 -#, c-format -msgid "Too many regions in %s line %d: %s" -msgstr "%s %d У̫: %s" - -#: ../spell.c:6198 -#, c-format -msgid "/ line ignored in %s line %d: %s" -msgstr "%s %d У/ ѱ: %s" - -#: ../spell.c:6224 -#, c-format -msgid "Invalid region nr in %s line %d: %s" -msgstr "%s %d УЧ: %s" - -#: ../spell.c:6230 -#, c-format -msgid "Unrecognized flags in %s line %d: %s" -msgstr "%s %d Уʶı־: %s" - -#: ../spell.c:6257 -#, c-format -msgid "Ignored %d words with non-ASCII characters" -msgstr "˺з ASCII ַ %d " - -#: ../spell.c:6656 -#, c-format -msgid "Compressed %d of %d nodes; %d (%d%%) remaining" -msgstr "ѹ %d/%d ڵ㣻ʣ %d (%d%%)" - -#: ../spell.c:7340 -msgid "Reading back spell file..." -msgstr "ȡƴдļ" - -#. Go through the trie of good words, soundfold each word and add it to -#. the soundfold trie. -#: ../spell.c:7357 -msgid "Performing soundfolding..." -msgstr " soundfolding" - -#: ../spell.c:7368 -#, c-format -msgid "Number of words after soundfolding: %<PRId64>" -msgstr "soundfolding ĵ: %<PRId64>" - -#: ../spell.c:7476 -#, c-format -msgid "Total number of words: %d" -msgstr ": %d" - -#: ../spell.c:7655 -#, c-format -msgid "Writing suggestion file %s ..." -msgstr "д뽨ļ %s " - -#: ../spell.c:7707 ../spell.c:7927 -#, c-format -msgid "Estimated runtime memory use: %d bytes" -msgstr "ʱڴ: %d ֽ" - -#: ../spell.c:7820 -msgid "E751: Output file name must not have region name" -msgstr "E751: ļܺ" - -#: ../spell.c:7822 -msgid "E754: Only up to 8 regions supported" -msgstr "E754: ֻ֧ 8 " - -#: ../spell.c:7846 -#, c-format -msgid "E755: Invalid region in %s" -msgstr "E755: %s ЧķΧ" - -#: ../spell.c:7907 -msgid "Warning: both compounding and NOBREAK specified" -msgstr ": ͬʱָ compounding NOBREAK" - -#: ../spell.c:7920 -#, c-format -msgid "Writing spell file %s ..." -msgstr "дƴдļ %s " - -#: ../spell.c:7925 -msgid "Done!" -msgstr "ɣ" - -#: ../spell.c:8034 -#, c-format -msgid "E765: 'spellfile' does not have %<PRId64> entries" -msgstr "E765: 'spellfile' û %<PRId64> " - -#: ../spell.c:8074 -#, fuzzy, c-format -msgid "Word '%.*s' removed from %s" -msgstr " %s ɾ˵" - -#: ../spell.c:8117 -#, fuzzy, c-format -msgid "Word '%.*s' added to %s" -msgstr " %s ˵" - -#: ../spell.c:8381 -msgid "E763: Word characters differ between spell files" -msgstr "E763: ƴдļַ֮ͬ" - -#: ../spell.c:8684 -msgid "Sorry, no suggestions" -msgstr "Ǹûн" - -#: ../spell.c:8687 -#, c-format -msgid "Sorry, only %<PRId64> suggestions" -msgstr "Ǹֻ %<PRId64> " - -#. for when 'cmdheight' > 1 -#. avoid more prompt -#: ../spell.c:8704 -#, c-format -msgid "Change \"%.*s\" to:" -msgstr " \"%.*s\" Ϊ" - -#: ../spell.c:8737 -#, c-format -msgid " < \"%.*s\"" -msgstr " < \"%.*s\"" - -#: ../spell.c:8882 -msgid "E752: No previous spell replacement" -msgstr "E752: ֮ǰûƴд滻" - -#: ../spell.c:8925 -#, c-format -msgid "E753: Not found: %s" -msgstr "E753: Ҳ: %s" - -#: ../spell.c:9276 -#, c-format -msgid "E778: This does not look like a .sug file: %s" -msgstr "E778: .sug ļ: %s" - -#: ../spell.c:9282 -#, c-format -msgid "E779: Old .sug file, needs to be updated: %s" -msgstr "" - -#: ../spell.c:9286 -#, c-format -msgid "E780: .sug file is for newer version of Vim: %s" -msgstr "" - -#: ../spell.c:9295 -#, c-format -msgid "E781: .sug file doesn't match .spl file: %s" -msgstr "" - -#: ../spell.c:9305 -#, fuzzy, c-format -msgid "E782: error while reading .sug file: %s" -msgstr "E47: ȡļʧ" - -#. This should have been checked when generating the .spl -#. file. -#: ../spell.c:11575 -msgid "E783: duplicate char in MAP entry" -msgstr "" - -#: ../syntax.c:266 -msgid "No Syntax items defined for this buffer" -msgstr "ûжκ" - -#: ../syntax.c:3083 ../syntax.c:3104 ../syntax.c:3127 -#, c-format -msgid "E390: Illegal argument: %s" -msgstr "E390: ЧIJ: %s" - -#: ../syntax.c:3299 -#, c-format -msgid "E391: No such syntax cluster: %s" -msgstr "E391: cluster: \"%s\"" - -#: ../syntax.c:3433 -msgid "syncing on C-style comments" -msgstr "Cעͬ" - -#: ../syntax.c:3439 -msgid "no syncing" -msgstr "ûͬ" - -#: ../syntax.c:3441 -msgid "syncing starts " -msgstr "ͬʼ" - -#: ../syntax.c:3443 ../syntax.c:3506 -msgid " lines before top line" -msgstr "кųΧ" - -#: ../syntax.c:3448 -msgid "" -"\n" -"--- Syntax sync items ---" -msgstr "" -"\n" -"--- ͬĿ (Syntax sync items) ---" - -#: ../syntax.c:3452 -msgid "" -"\n" -"syncing on items" -msgstr "" -"\n" -"ͬ:" - -#: ../syntax.c:3457 -msgid "" -"\n" -"--- Syntax items ---" -msgstr "" -"\n" -"--- Ŀ ---" - -#: ../syntax.c:3475 -#, c-format -msgid "E392: No such syntax cluster: %s" -msgstr "E392: cluster: \"%s\"" - -#: ../syntax.c:3497 -msgid "minimal " -msgstr "С" - -#: ../syntax.c:3503 -msgid "maximal " -msgstr "" - -#: ../syntax.c:3513 -#, fuzzy -msgid "; match " -msgstr "ƥ %d" - -#: ../syntax.c:3515 -#, fuzzy -msgid " line breaks" -msgstr "һ" - -#: ../syntax.c:4076 -msgid "E395: contains argument not accepted here" -msgstr "E395: ʹ˲ȷIJ" - -#: ../syntax.c:4096 -#, fuzzy -msgid "E844: invalid cchar value" -msgstr "E474: ЧIJ" - -#: ../syntax.c:4107 -msgid "E393: group[t]here not accepted here" -msgstr "E393: ʹ˲ȷIJ" - -#: ../syntax.c:4126 -#, c-format -msgid "E394: Didn't find region item for %s" -msgstr "E394: Ҳ %s region item" - -#: ../syntax.c:4188 -msgid "E397: Filename required" -msgstr "E397: Ҫļ" - -#: ../syntax.c:4221 -#, fuzzy -msgid "E847: Too many syntax includes" -msgstr "E77: ļ" - -#: ../syntax.c:4303 -#, fuzzy, c-format -msgid "E789: Missing ']': %s" -msgstr "E747: ȱ ']': %s" - -#: ../syntax.c:4531 -#, c-format -msgid "E398: Missing '=': %s" -msgstr "E398: ȱ '=': %s" - -#: ../syntax.c:4666 -#, c-format -msgid "E399: Not enough arguments: syntax region %s" -msgstr "E399: syntax region %s IJ̫" - -#: ../syntax.c:4870 -#, fuzzy -msgid "E848: Too many syntax clusters" -msgstr "E391: cluster: \"%s\"" - -#: ../syntax.c:4954 -msgid "E400: No cluster specified" -msgstr "E400: ûָ" - -#. end delimiter not found -#: ../syntax.c:4986 -#, c-format -msgid "E401: Pattern delimiter not found: %s" -msgstr "E401: Ҳָ: %s" - -#: ../syntax.c:5049 -#, c-format -msgid "E402: Garbage after pattern: %s" -msgstr "E402: '%s' Ķʶ" - -#: ../syntax.c:5120 -msgid "E403: syntax sync: line continuations pattern specified twice" -msgstr "E403: ͬ: зָ" - -#: ../syntax.c:5169 -#, c-format -msgid "E404: Illegal arguments: %s" -msgstr "E404: ЧIJ: %s" - -#: ../syntax.c:5217 -#, c-format -msgid "E405: Missing equal sign: %s" -msgstr "E405: ȱٵȺ: %s" - -#: ../syntax.c:5222 -#, c-format -msgid "E406: Empty argument: %s" -msgstr "E406: յIJ: %s" - -#: ../syntax.c:5240 -#, c-format -msgid "E407: %s not allowed here" -msgstr "E407: %s ڴ˳" - -#: ../syntax.c:5246 -#, c-format -msgid "E408: %s must be first in contains list" -msgstr "E408: %s бĵһ" - -#: ../syntax.c:5304 -#, c-format -msgid "E409: Unknown group name: %s" -msgstr "E409: ȷ: %s" - -#: ../syntax.c:5512 -#, c-format -msgid "E410: Invalid :syntax subcommand: %s" -msgstr "E410: ȷ :syntax : %s" - -#: ../syntax.c:5854 -msgid "" -" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN" -msgstr "" - -#: ../syntax.c:6146 -msgid "E679: recursive loop loading syncolor.vim" -msgstr "E679: syncolor.vim ʱǶѭ" - -#: ../syntax.c:6256 -#, c-format -msgid "E411: highlight group not found: %s" -msgstr "E411: Ҳ highlight group: %s" - -#: ../syntax.c:6278 -#, c-format -msgid "E412: Not enough arguments: \":highlight link %s\"" -msgstr "E412: ̫: \":highlight link %s\"" - -#: ../syntax.c:6284 -#, c-format -msgid "E413: Too many arguments: \":highlight link %s\"" -msgstr "E413: : \":highlight link %s\"" - -#: ../syntax.c:6302 -msgid "E414: group has settings, highlight link ignored" -msgstr "E414: 趨, highlight link" - -#: ../syntax.c:6367 -#, c-format -msgid "E415: unexpected equal sign: %s" -msgstr "E415: еĵȺ: %s" - -#: ../syntax.c:6395 -#, c-format -msgid "E416: missing equal sign: %s" -msgstr "E416: ȱٵȺ: %s" - -#: ../syntax.c:6418 -#, c-format -msgid "E417: missing argument: %s" -msgstr "E417: ȱٲ: %s" - -#: ../syntax.c:6446 -#, c-format -msgid "E418: Illegal value: %s" -msgstr "E418: Ϸֵ: %s" - -#: ../syntax.c:6496 -msgid "E419: FG color unknown" -msgstr "E419: ǰɫ" - -#: ../syntax.c:6504 -msgid "E420: BG color unknown" -msgstr "E420: ıɫ" - -#: ../syntax.c:6564 -#, c-format -msgid "E421: Color name or number not recognized: %s" -msgstr "E421: ɫƻֵ: %s" - -#: ../syntax.c:6714 -#, c-format -msgid "E422: terminal code too long: %s" -msgstr "E422: ն˱̫: %s" - -#: ../syntax.c:6753 -#, c-format -msgid "E423: Illegal argument: %s" -msgstr "E423: ЧIJ: %s" - -#: ../syntax.c:6925 -msgid "E424: Too many different highlighting attributes in use" -msgstr "E424: ʹ̫ͬĸ" - -#: ../syntax.c:7427 -msgid "E669: Unprintable character in group name" -msgstr "E669: дڲʾַ" - -#: ../syntax.c:7434 -msgid "W18: Invalid character in group name" -msgstr "W18: кЧַ" - -#: ../syntax.c:7448 -msgid "E849: Too many highlight and syntax groups" -msgstr "" - -#: ../tag.c:104 -msgid "E555: at bottom of tag stack" -msgstr "E555: tag ջײ" - -#: ../tag.c:105 -msgid "E556: at top of tag stack" -msgstr "E556: tag ջ" - -#: ../tag.c:380 -msgid "E425: Cannot go before first matching tag" -msgstr "E425: ѵһƥ tag" - -#: ../tag.c:504 -#, c-format -msgid "E426: tag not found: %s" -msgstr "E426: Ҳ tag: %s" - -#: ../tag.c:528 -msgid " # pri kind tag" -msgstr " # pri kind tag" - -#: ../tag.c:531 -msgid "file\n" -msgstr "ļ\n" - -#: ../tag.c:829 -msgid "E427: There is only one matching tag" -msgstr "E427: ֻһƥ tag" - -#: ../tag.c:831 -msgid "E428: Cannot go beyond last matching tag" -msgstr "E428: һƥ tag" - -#: ../tag.c:850 -#, c-format -msgid "File \"%s\" does not exist" -msgstr "ļ \"%s\" " - -#. Give an indication of the number of matching tags -#: ../tag.c:859 -#, c-format -msgid "tag %d of %d%s" -msgstr "ҵ tag: %d / %d%s" - -#: ../tag.c:862 -msgid " or more" -msgstr " " - -#: ../tag.c:864 -msgid " Using tag with different case!" -msgstr " ԲͬСдʹ tag" - -#: ../tag.c:909 -#, c-format -msgid "E429: File \"%s\" does not exist" -msgstr "E429: ļ \"%s\" " - -#. Highlight title -#: ../tag.c:960 -msgid "" -"\n" -" # TO tag FROM line in file/text" -msgstr "" -"\n" -" # tag ļ/ı" - -#: ../tag.c:1303 -#, c-format -msgid "Searching tags file %s" -msgstr " tag ļ %s" - -#: ../tag.c:1545 -msgid "Ignoring long line in tags file" -msgstr "" - -#: ../tag.c:1915 -#, c-format -msgid "E431: Format error in tags file \"%s\"" -msgstr "E431: Tag ļ \"%s\" ʽ" - -#: ../tag.c:1917 -#, c-format -msgid "Before byte %<PRId64>" -msgstr "ڵ %<PRId64> ֽ֮ǰ" - -#: ../tag.c:1929 -#, c-format -msgid "E432: Tags file not sorted: %s" -msgstr "E432: Tag ļδ: %s" - -#. never opened any tags file -#: ../tag.c:1960 -msgid "E433: No tags file" -msgstr "E433: û tag ļ" - -#: ../tag.c:2536 -msgid "E434: Can't find tag pattern" -msgstr "E434: Ҳ tag ģʽ" - -#: ../tag.c:2544 -msgid "E435: Couldn't find tag, just guessing!" -msgstr "E435: Ҳ tagŲ£" - -#: ../tag.c:2797 -#, fuzzy, c-format -msgid "Duplicate field name: %s" -msgstr "%s %d Уظĸ: %s" - -#: ../term.c:1442 -msgid "' not known. Available builtin terminals are:" -msgstr "' δ֪õڽն:" - -#: ../term.c:1463 -msgid "defaulting to '" -msgstr "ĬֵΪ: '" - -#: ../term.c:1731 -msgid "E557: Cannot open termcap file" -msgstr "E557: termcap ļ" - -#: ../term.c:1735 -msgid "E558: Terminal entry not found in terminfo" -msgstr "E558: terminfo Ҳն" - -#: ../term.c:1737 -msgid "E559: Terminal entry not found in termcap" -msgstr "E559: termcap Ҳն" - -#: ../term.c:1878 -#, c-format -msgid "E436: No \"%s\" entry in termcap" -msgstr "E436: termcap û \"%s\" " - -#: ../term.c:2249 -msgid "E437: terminal capability \"cm\" required" -msgstr "E437: նҪ \"cm\"" - -#. Highlight title -#: ../term.c:4376 -msgid "" -"\n" -"--- Terminal keys ---" -msgstr "" -"\n" -"--- ն˰ ---" - -#: ../ui.c:481 -msgid "Vim: Error reading input, exiting...\n" -msgstr "Vim: ˳...\n" - -#. This happens when the FileChangedRO autocommand changes the -#. * file in a way it becomes shorter. -#: ../undo.c:379 -#, fuzzy -msgid "E881: Line count changed unexpectedly" -msgstr "E787: ظı˻" - -#: ../undo.c:627 -#, fuzzy, c-format -msgid "E828: Cannot open undo file for writing: %s" -msgstr "E212: дļ" - -#: ../undo.c:717 -#, c-format -msgid "E825: Corrupted undo file (%s): %s" -msgstr "" - -#: ../undo.c:1039 -msgid "Cannot write undo file in any directory in 'undodir'" -msgstr "" - -#: ../undo.c:1074 -#, c-format -msgid "Will not overwrite with undo file, cannot read: %s" -msgstr "" - -#: ../undo.c:1092 -#, c-format -msgid "Will not overwrite, this is not an undo file: %s" -msgstr "" - -#: ../undo.c:1108 -msgid "Skipping undo file write, nothing to undo" -msgstr "" - -#: ../undo.c:1121 -#, fuzzy, c-format -msgid "Writing undo file: %s" -msgstr "д viminfo ļ \"%s\"" - -#: ../undo.c:1213 -#, fuzzy, c-format -msgid "E829: write error in undo file: %s" -msgstr "E297: ļд" - -#: ../undo.c:1280 -#, c-format -msgid "Not reading undo file, owner differs: %s" -msgstr "" - -#: ../undo.c:1292 -#, fuzzy, c-format -msgid "Reading undo file: %s" -msgstr "ȡļ %s " - -#: ../undo.c:1299 -#, fuzzy, c-format -msgid "E822: Cannot open undo file for reading: %s" -msgstr "E195: ȡ viminfo ļ" - -#: ../undo.c:1308 -#, fuzzy, c-format -msgid "E823: Not an undo file: %s" -msgstr "E753: Ҳ: %s" - -#: ../undo.c:1313 -#, fuzzy, c-format -msgid "E824: Incompatible undo file: %s" -msgstr "E484: ļ %s" - -#: ../undo.c:1328 -msgid "File contents changed, cannot use undo info" -msgstr "" - -#: ../undo.c:1497 -#, fuzzy, c-format -msgid "Finished reading undo file %s" -msgstr "ִ %s" - -#: ../undo.c:1586 ../undo.c:1812 -msgid "Already at oldest change" -msgstr "λɵĸı" - -#: ../undo.c:1597 ../undo.c:1814 -msgid "Already at newest change" -msgstr "λµĸı" - -#: ../undo.c:1806 -#, fuzzy, c-format -msgid "E830: Undo number %<PRId64> not found" -msgstr "Ҳ %<PRId64>" - -#: ../undo.c:1979 -msgid "E438: u_undo: line numbers wrong" -msgstr "E438: u_undo: кŴ" - -#: ../undo.c:2183 -msgid "more line" -msgstr "б" - -#: ../undo.c:2185 -msgid "more lines" -msgstr "б" - -#: ../undo.c:2187 -msgid "line less" -msgstr "бȥ" - -#: ../undo.c:2189 -msgid "fewer lines" -msgstr "бȥ" - -#: ../undo.c:2193 -msgid "change" -msgstr "зı" - -#: ../undo.c:2195 -msgid "changes" -msgstr "зı" - -#: ../undo.c:2225 -#, c-format -msgid "%<PRId64> %s; %s #%<PRId64> %s" -msgstr "%<PRId64> %s%s #%<PRId64> %s" - -#: ../undo.c:2228 -msgid "before" -msgstr "before" - -#: ../undo.c:2228 -msgid "after" -msgstr "after" - -#: ../undo.c:2325 -msgid "Nothing to undo" -msgstr "ɳ" - -#: ../undo.c:2330 -msgid "number changes when saved" -msgstr "" - -#: ../undo.c:2360 -#, fuzzy, c-format -msgid "%<PRId64> seconds ago" -msgstr "%<PRId64> ; " - -#: ../undo.c:2372 -#, fuzzy -msgid "E790: undojoin is not allowed after undo" -msgstr "E407: %s ڴ˳" - -#: ../undo.c:2466 -msgid "E439: undo list corrupt" -msgstr "E439: б" - -#: ../undo.c:2495 -msgid "E440: undo line missing" -msgstr "E440: ҲҪ" - -#: ../version.c:600 -msgid "" -"\n" -"Included patches: " -msgstr "" -"\n" -": " - -#: ../version.c:627 -#, fuzzy -msgid "" -"\n" -"Extra patches: " -msgstr "ⲿ:\n" - -#: ../version.c:639 ../version.c:864 -msgid "Modified by " -msgstr " " - -#: ../version.c:646 -msgid "" -"\n" -"Compiled " -msgstr "" -"\n" -"" - -#: ../version.c:649 -msgid "by " -msgstr " " - -#: ../version.c:660 -msgid "" -"\n" -"Huge version " -msgstr "" -"\n" -"Ͱ汾 " - -#: ../version.c:661 -msgid "without GUI." -msgstr "ͼν档" - -#: ../version.c:662 -msgid " Features included (+) or not (-):\n" -msgstr " ʹ(+)벻ʹ(-)Ĺ:\n" - -#: ../version.c:667 -msgid " system vimrc file: \"" -msgstr " ϵͳ vimrc ļ: \"" - -#: ../version.c:672 -msgid " user vimrc file: \"" -msgstr " û vimrc ļ: \"" - -#: ../version.c:677 -msgid " 2nd user vimrc file: \"" -msgstr " ڶû vimrc ļ: \"" - -#: ../version.c:682 -msgid " 3rd user vimrc file: \"" -msgstr " û vimrc ļ: \"" - -#: ../version.c:687 -msgid " user exrc file: \"" -msgstr " û exrc ļ: \"" - -#: ../version.c:692 -msgid " 2nd user exrc file: \"" -msgstr " ڶû exrc ļ: \"" - -#: ../version.c:699 -msgid " fall-back for $VIM: \"" -msgstr " $VIM Ԥֵ: \"" - -#: ../version.c:705 -msgid " f-b for $VIMRUNTIME: \"" -msgstr " $VIMRUNTIME Ԥֵ: \"" - -#: ../version.c:709 -msgid "Compilation: " -msgstr "뷽ʽ: " - -#: ../version.c:712 -msgid "Linking: " -msgstr "ӷʽ: " - -#: ../version.c:717 -msgid " DEBUG BUILD" -msgstr " 汾" - -#: ../version.c:767 -msgid "VIM - Vi IMproved" -msgstr "VIM - Vi IMproved" - -#: ../version.c:769 -msgid "version " -msgstr "汾 " - -#: ../version.c:770 -msgid "by Bram Moolenaar et al." -msgstr "ά Bram Moolenaar " - -#: ../version.c:774 -msgid "Vim is open source and freely distributable" -msgstr "Vim ǿɷַĿԴ" - -#: ../version.c:776 -msgid "Help poor children in Uganda!" -msgstr "ڸɴĿͯ" - -#: ../version.c:777 -msgid "type :help iccf<Enter> for information " -msgstr " :help iccf<Enter> 鿴˵ " - -#: ../version.c:779 -msgid "type :q<Enter> to exit " -msgstr " :q<Enter> ˳ " - -#: ../version.c:780 -msgid "type :help<Enter> or <F1> for on-line help" -msgstr " :help<Enter> <F1> 鿴߰ " - -#: ../version.c:781 -msgid "type :help version7<Enter> for version info" -msgstr " :help version7<Enter> 鿴汾Ϣ " - -#: ../version.c:784 -msgid "Running in Vi compatible mode" -msgstr " Vi ģʽ" - -#: ../version.c:785 -msgid "type :set nocp<Enter> for Vim defaults" -msgstr " :set nocp<Enter> ָĬϵ Vim " - -#: ../version.c:786 -msgid "type :help cp-default<Enter> for info on this" -msgstr " :help cp-default<Enter> 鿴˵ " - -#: ../version.c:827 -msgid "Sponsor Vim development!" -msgstr " Vim Ŀ" - -#: ../version.c:828 -msgid "Become a registered Vim user!" -msgstr "Ϊ Vim עû" - -#: ../version.c:831 -msgid "type :help sponsor<Enter> for information " -msgstr " :help sponsor<Enter> 鿴˵ " - -#: ../version.c:832 -msgid "type :help register<Enter> for information " -msgstr " :help register<Enter> 鿴˵ " - -#: ../version.c:834 -msgid "menu Help->Sponsor/Register for information " -msgstr "˵ Help->Sponsor/Register 鿴˵ " - -#: ../window.c:119 -msgid "Already only one window" -msgstr "Ѿֻʣһ" - -#: ../window.c:224 -msgid "E441: There is no preview window" -msgstr "E441: ûԤ" - -#: ../window.c:559 -msgid "E442: Can't split topleft and botright at the same time" -msgstr "E442: ͬʱ topleft botright ָ" - -#: ../window.c:1228 -msgid "E443: Cannot rotate when another window is split" -msgstr "E443: ָʱת" - -#: ../window.c:1803 -msgid "E444: Cannot close last window" -msgstr "E444: ܹرһ" - -#: ../window.c:1810 -#, fuzzy -msgid "E813: Cannot close autocmd window" -msgstr "E444: ܹرһ" - -#: ../window.c:1814 -#, fuzzy -msgid "E814: Cannot close window, only autocmd window would remain" -msgstr "E444: ܹرһ" - -#: ../window.c:2717 -msgid "E445: Other window contains changes" -msgstr "E445: иı" - -#: ../window.c:4805 -msgid "E446: No file name under cursor" -msgstr "E446: 괦ûļ" - -#~ msgid "Patch file" -#~ msgstr "Patch ļ" - -#~ msgid "" -#~ "&OK\n" -#~ "&Cancel" -#~ msgstr "" -#~ "ȷ(&O)\n" -#~ "ȡ(&C)" - -#~ msgid "E240: No connection to Vim server" -#~ msgstr "E240: ûе Vim " - -#~ msgid "E241: Unable to send to %s" -#~ msgstr "E241: ͵ %s" - -#~ msgid "E277: Unable to read a server reply" -#~ msgstr "E277: ȡӦ" - -#~ msgid "E258: Unable to send to client" -#~ msgstr "E258: ͵ͻ" - -#~ msgid "Save As" -#~ msgstr "Ϊ" - -#~ msgid "Edit File" -#~ msgstr "༭ļ" - -#~ msgid " (NOT FOUND)" -#~ msgstr " (Ҳ)" - -#~ msgid "Source Vim script" -#~ msgstr "ִ Vim ű" - -#~ msgid "Edit File in new window" -#~ msgstr "´ڱ༭ļ" - -#~ msgid "Append File" -#~ msgstr "ļ" - -#~ msgid "Window position: X %d, Y %d" -#~ msgstr "λ: X %d, Y %d" - -#~ msgid "Save Redirection" -#~ msgstr "ض" - -#~ msgid "Save View" -#~ msgstr "ͼ" - -#~ msgid "Save Session" -#~ msgstr "Ự" - -#~ msgid "Save Setup" -#~ msgstr "趨" - -#~ msgid "E196: No digraphs in this version" -#~ msgstr "E196: ˰汾ַ(digraph)" - -#~ msgid "Reading from stdin..." -#~ msgstr "ӱȡ..." - -#~ msgid "[NL found]" -#~ msgstr "[ҵ NL]" - -#~ msgid "[crypted]" -#~ msgstr "[Ѽ]" - -#~ msgid "NetBeans disallows writes of unmodified buffers" -#~ msgstr "NetBeans δĵĻд" - -#~ msgid "Partial writes disallowed for NetBeans buffers" -#~ msgstr "NetBeans д" - -#~ msgid "E460: The resource fork would be lost (add ! to override)" -#~ msgstr "E460: Resource fork ᶪʧ ( ! ǿִ)" - -#~ msgid "E229: Cannot start the GUI" -#~ msgstr "E229: ͼν" - -#~ msgid "E230: Cannot read from \"%s\"" -#~ msgstr "E230: ȡļ \"%s\"" - -#~ msgid "E665: Cannot start GUI, no valid font found" -#~ msgstr "E665: ͼν棬ҲЧ" - -#~ msgid "E231: 'guifontwide' invalid" -#~ msgstr "E231: Ч 'guifontwide'" - -#~ msgid "E599: Value of 'imactivatekey' is invalid" -#~ msgstr "E599: 'imactivatekey' ֵЧ" - -#~ msgid "E254: Cannot allocate color %s" -#~ msgstr "E254: ɫ %s" - -#~ msgid "No match at cursor, finding next" -#~ msgstr "ڹ괦ûƥ䣬һ" - -#~ msgid "<cannot open> " -#~ msgstr "<>" - -#~ msgid "E616: vim_SelFile: can't get font %s" -#~ msgstr "E616: vim_SelFile: ȡ %s" - -#~ msgid "E614: vim_SelFile: can't return to current directory" -#~ msgstr "E614: vim_SelFile: صǰĿ¼" - -#~ msgid "Pathname:" -#~ msgstr "·:" - -#~ msgid "E615: vim_SelFile: can't get current directory" -#~ msgstr "E615: vim_SelFile: ȡǰĿ¼" - -#~ msgid "OK" -#~ msgstr "ȷ" - -#~ msgid "Cancel" -#~ msgstr "ȡ" - -#~ msgid "Scrollbar Widget: Could not get geometry of thumb pixmap." -#~ msgstr ": ȡͼļδС" - -#~ msgid "Vim dialog" -#~ msgstr "Vim Ի" - -#~ msgid "E232: Cannot create BalloonEval with both message and callback" -#~ msgstr "E232: ͬʱʹϢͻص BalloonEval" - -#~ msgid "Vim dialog..." -#~ msgstr "Vim Ի..." - -#~ msgid "Input _Methods" -#~ msgstr "뷨(_M)" - -#~ msgid "VIM - Search and Replace..." -#~ msgstr "VIM - Һ滻..." - -#~ msgid "VIM - Search..." -#~ msgstr "VIM - ..." - -#~ msgid "Find what:" -#~ msgstr ":" - -#~ msgid "Replace with:" -#~ msgstr "滻Ϊ:" - -#~ msgid "Match whole word only" -#~ msgstr "ƥĴ" - -#~ msgid "Match case" -#~ msgstr "ƥСд" - -#~ msgid "Direction" -#~ msgstr "" - -#~ msgid "Up" -#~ msgstr "" - -#~ msgid "Down" -#~ msgstr "" - -#~ msgid "Find Next" -#~ msgstr "һ" - -#~ msgid "Replace" -#~ msgstr "滻" - -#~ msgid "Replace All" -#~ msgstr "ȫ滻" - -#~ msgid "Vim: Received \"die\" request from session manager\n" -#~ msgstr "Vim: ӻỰյ \"die\" \n" - -#~ msgid "Close" -#~ msgstr "ر" - -#~ msgid "New tab" -#~ msgstr "½ǩ" - -#~ msgid "Open Tab..." -#~ msgstr "ǩ..." - -#~ msgid "Vim: Main window unexpectedly destroyed\n" -#~ msgstr "Vim: ڱشݻ\n" - -#~ msgid "Font Selection" -#~ msgstr "ѡ" - -#~ msgid "Used CUT_BUFFER0 instead of empty selection" -#~ msgstr "ʹ CUT_BUFFER0 ȡѡ" - -#~ msgid "&Filter" -#~ msgstr "(&F)" - -#~ msgid "&Cancel" -#~ msgstr "ȡ(&C)" - -#~ msgid "Directories" -#~ msgstr "Ŀ¼" - -#~ msgid "Filter" -#~ msgstr "" - -#~ msgid "&Help" -#~ msgstr "(&H)" - -#~ msgid "Files" -#~ msgstr "ļ" - -#~ msgid "&OK" -#~ msgstr "ȷ(&O)" - -#~ msgid "Selection" -#~ msgstr "ѡ" - -#~ msgid "Find &Next" -#~ msgstr "һ(&N)" - -#~ msgid "&Replace" -#~ msgstr "滻(&R)" - -#~ msgid "Replace &All" -#~ msgstr "ȫ滻(&A)" - -#~ msgid "&Undo" -#~ msgstr "(&U)" - -#~ msgid "E671: Cannot find window title \"%s\"" -#~ msgstr "E671: Ҳڱ \"%s\"" - -#~ msgid "E243: Argument not supported: \"-%s\"; Use the OLE version." -#~ msgstr "E243: ֵ֧IJ: \"-%s\"ʹ OLE 汾" - -#~ msgid "E672: Unable to open window inside MDI application" -#~ msgstr "E672: MDI Ӧóд" - -#~ msgid "Close tab" -#~ msgstr "رձǩ" - -#~ msgid "Open tab..." -#~ msgstr "ǩ..." - -#~ msgid "Find string (use '\\\\' to find a '\\')" -#~ msgstr "ַ (ʹ '\\\\' '\\')" - -#~ msgid "Find & Replace (use '\\\\' to find a '\\')" -#~ msgstr "Һ滻ַ (ʹ '\\\\' '\\')" - -#~ msgid "Not Used" -#~ msgstr "δʹ" - -#~ msgid "Directory\t*.nothing\n" -#~ msgstr "Ŀ¼\t*.nothing\n" - -#~ msgid "" -#~ "Vim E458: Cannot allocate colormap entry, some colors may be incorrect" -#~ msgstr "Vim E458: ɫijЩɫܲȷ" - -#~ msgid "E250: Fonts for the following charsets are missing in fontset %s:" -#~ msgstr "E250: Fontset %s ȱַ:" - -#~ msgid "E252: Fontset name: %s" -#~ msgstr "E252: Fontset : %s" - -#~ msgid "Font '%s' is not fixed-width" -#~ msgstr "'%s' ǹ̶ȵ" - -#~ msgid "E253: Fontset name: %s\n" -#~ msgstr "E253: Fontset : %s\n" - -#~ msgid "Font0: %s\n" -#~ msgstr "0: %s\n" - -#~ msgid "Font1: %s\n" -#~ msgstr "1: %s\n" - -#~ msgid "Font%<PRId64> width is not twice that of font0\n" -#~ msgstr "%<PRId64>ĿȲ0\n" - -#~ msgid "Font0 width: %<PRId64>\n" -#~ msgstr "0Ŀȣ%<PRId64>\n" - -#~ msgid "" -#~ "Font1 width: %<PRId64>\n" -#~ "\n" -#~ msgstr "" -#~ "1Ŀ: %<PRId64>\n" -#~ "\n" - -#~ msgid "Invalid font specification" -#~ msgstr "ָЧ" - -#~ msgid "&Dismiss" -#~ msgstr "ȡ(&D)" - -#~ msgid "no specific match" -#~ msgstr "Ҳƥ" - -#~ msgid "Vim - Font Selector" -#~ msgstr "Vim - ѡ" - -#~ msgid "Name:" -#~ msgstr ":" - -#~ msgid "Encoding:" -#~ msgstr ":" - -#~ msgid "Font:" -#~ msgstr ":" - -#~ msgid "Style:" -#~ msgstr ":" - -#~ msgid "Size:" -#~ msgstr "ߴ:" - -#~ msgid "E256: Hangul automata ERROR" -#~ msgstr "E256: Hangul automata " - -#~ msgid "E563: stat error" -#~ msgstr "E563: stat " - -#~ msgid "E625: cannot open cscope database: %s" -#~ msgstr "E625: cscope ݿ: %s" - -#~ msgid "E626: cannot get cscope database information" -#~ msgstr "E626: ȡ cscope ݿϢ" - -#~ msgid "E569: maximum number of cscope connections reached" -#~ msgstr "E569: Ѵﵽ cscope " - -#~ msgid "" -#~ "???: Sorry, this command is disabled, the MzScheme library could not be " -#~ "loaded." -#~ msgstr "???: Ǹã MzScheme " - -#~ msgid "invalid expression" -#~ msgstr "Чıʽ" - -#~ msgid "expressions disabled at compile time" -#~ msgstr "ʱûñʽ" - -#~ msgid "hidden option" -#~ msgstr "صѡ" - -#~ msgid "unknown option" -#~ msgstr "δ֪ѡ" - -#~ msgid "window index is out of range" -#~ msgstr "Χ" - -#~ msgid "couldn't open buffer" -#~ msgstr "" - -#~ msgid "cannot save undo information" -#~ msgstr "泷Ϣ" - -#~ msgid "cannot delete line" -#~ msgstr "ɾ" - -#~ msgid "cannot replace line" -#~ msgstr "滻" - -#~ msgid "cannot insert line" -#~ msgstr "" - -#~ msgid "string cannot contain newlines" -#~ msgstr "ַܰ(NL)" - -#~ msgid "Vim error: ~a" -#~ msgstr "Vim : ~a" - -#~ msgid "Vim error" -#~ msgstr "Vim " - -#~ msgid "buffer is invalid" -#~ msgstr "Ч" - -#~ msgid "window is invalid" -#~ msgstr "Ч" - -#~ msgid "linenr out of range" -#~ msgstr "кųΧ" - -#~ msgid "not allowed in the Vim sandbox" -#~ msgstr " sandbox ʹ" - -#~ msgid "" -#~ "E263: Sorry, this command is disabled, the Python library could not be " -#~ "loaded." -#~ msgstr "E263: Ǹã Python ⡣" - -#~ msgid "E659: Cannot invoke Python recursively" -#~ msgstr "E659: ܵݹ Python" - -#~ msgid "can't delete OutputObject attributes" -#~ msgstr "ɾ OutputObject " - -#~ msgid "softspace must be an integer" -#~ msgstr "softspace " - -#~ msgid "invalid attribute" -#~ msgstr "Ч" - -#~ msgid "writelines() requires list of strings" -#~ msgstr "writelines() Ҫַб" - -#~ msgid "E264: Python: Error initialising I/O objects" -#~ msgstr "E264: Python: ʼ I/O " - -#~ msgid "attempt to refer to deleted buffer" -#~ msgstr "ͼѱɾĻ" - -#~ msgid "line number out of range" -#~ msgstr "кųΧ" - -#~ msgid "<buffer object (deleted) at %8lX>" -#~ msgstr "<(ɾ): %8lX>" - -#~ msgid "invalid mark name" -#~ msgstr "Чı" - -#~ msgid "no such buffer" -#~ msgstr "˻" - -#~ msgid "attempt to refer to deleted window" -#~ msgstr "ͼѱɾĴ" - -#~ msgid "readonly attribute" -#~ msgstr "ֻ" - -#~ msgid "cursor position outside buffer" -#~ msgstr "λڻ" - -#~ msgid "<window object (deleted) at %.8lX>" -#~ msgstr "<ڶ(ɾ): %.8lX>" - -#~ msgid "<window object (unknown) at %.8lX>" -#~ msgstr "<ڶ(δ֪): %.8lX>" - -#~ msgid "<window %d>" -#~ msgstr "< %d>" - -#~ msgid "no such window" -#~ msgstr "˴" - -#~ msgid "" -#~ "E266: Sorry, this command is disabled, the Ruby library could not be " -#~ "loaded." -#~ msgstr "E266: Ǹã Ruby " - -#~ msgid "E273: unknown longjmp status %d" -#~ msgstr "E273: δ֪ longjmp ״̬ %d" - -#~ msgid "Toggle implementation/definition" -#~ msgstr "лʵ/" - -#~ msgid "Show base class of" -#~ msgstr "ʾ base class of:" - -#~ msgid "Show overridden member function" -#~ msgstr "ʾǵijԱ" - -#~ msgid "Retrieve from file" -#~ msgstr "ָ: ļ" - -#~ msgid "Retrieve from project" -#~ msgstr "ָ: Ӷ" - -#~ msgid "Retrieve from all projects" -#~ msgstr "ָ: Ŀ" - -#~ msgid "Retrieve" -#~ msgstr "ָ" - -#~ msgid "Show source of" -#~ msgstr "ʾԴ: " - -#~ msgid "Find symbol" -#~ msgstr " symbol" - -#~ msgid "Browse class" -#~ msgstr " class" - -#~ msgid "Show class in hierarchy" -#~ msgstr "ʾιϵ" - -#~ msgid "Show class in restricted hierarchy" -#~ msgstr "ʾ restricted ιϵ class" - -#~ msgid "Xref refers to" -#~ msgstr "Xref ο" - -#~ msgid "Xref referred by" -#~ msgstr "Xref ˭ο:" - -#~ msgid "Xref has a" -#~ msgstr "Xref " - -#~ msgid "Xref used by" -#~ msgstr "Xref ˭ʹ:" - -#~ msgid "Show docu of" -#~ msgstr "ʾļ: " - -#~ msgid "Generate docu for" -#~ msgstr "ļ: " - -#~ msgid "" -#~ "Cannot connect to SNiFF+. Check environment (sniffemacs must be found in " -#~ "$PATH).\n" -#~ msgstr "" -#~ "ӵ SNiFF+黷 ($PATH ҵ sniffemacs)\n" - -#~ msgid "E274: Sniff: Error during read. Disconnected" -#~ msgstr "E274: Sniff: ȡ. ȡ" - -#~ msgid "SNiFF+ is currently " -#~ msgstr "SNiFF+ Ŀǰ" - -#~ msgid "not " -#~ msgstr "δ" - -#~ msgid "connected" -#~ msgstr "" - -#~ msgid "E275: Unknown SNiFF+ request: %s" -#~ msgstr "E275: ȷ SNiff+ : %s" - -#~ msgid "E276: Error connecting to SNiFF+" -#~ msgstr "E276: ӵ SNiFF+ ʧ" - -#~ msgid "E278: SNiFF+ not connected" -#~ msgstr "E278: δӵ SNiFF+" - -#~ msgid "E279: Not a SNiFF+ buffer" -#~ msgstr "E279: SNiFF+ Ļ" - -#~ msgid "Sniff: Error during write. Disconnected" -#~ msgstr "Sniff: д" - -#~ msgid "invalid buffer number" -#~ msgstr "ЧĻ" - -#~ msgid "not implemented yet" -#~ msgstr "δʵ" - -#~ msgid "cannot set line(s)" -#~ msgstr "趨" - -#~ msgid "mark not set" -#~ msgstr "û趨" - -#~ msgid "row %d column %d" -#~ msgstr " %d %d " - -#~ msgid "cannot insert/append line" -#~ msgstr "/" - -#~ msgid "unknown flag: " -#~ msgstr "δ֪ı־: " - -#~ msgid "unknown vimOption" -#~ msgstr "δ֪ vim ѡ" - -#~ msgid "keyboard interrupt" -#~ msgstr "ж" - -#~ msgid "vim error" -#~ msgstr "vim " - -#~ msgid "cannot create buffer/window command: object is being deleted" -#~ msgstr "/: ɾ" - -#~ msgid "" -#~ "cannot register callback command: buffer/window is already being deleted" -#~ msgstr "עص: /ѱɾ" - -#~ msgid "" -#~ "E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-" -#~ "dev@vim.org" -#~ msgstr "E280: TCL ش: reflist 뱨 vim-dev@vim.org" - -#~ msgid "cannot register callback command: buffer/window reference not found" -#~ msgstr "עص: Ҳ/" - -#~ msgid "" -#~ "E571: Sorry, this command is disabled: the Tcl library could not be " -#~ "loaded." -#~ msgstr "E571: Ǹã Tcl " - -#~ msgid "" -#~ "E281: TCL ERROR: exit code is not int!? Please report this to vim-dev@vim." -#~ "org" -#~ msgstr "E281: TCL : ˳ֵ뱨 vim-dev@vim.org" - -#~ msgid "E572: exit code %d" -#~ msgstr "E572: ˳ֵ %d" - -#~ msgid "cannot get line" -#~ msgstr "ȡ" - -#~ msgid "Unable to register a command server name" -#~ msgstr "ע" - -#~ msgid "E248: Failed to send command to the destination program" -#~ msgstr "E248: Ŀij" - -#~ msgid "E573: Invalid server id used: %s" -#~ msgstr "E573: ʹЧķ id: %s" - -#~ msgid "E251: VIM instance registry property is badly formed. Deleted!" -#~ msgstr "E251: VIM ʵעɾ" - -#~ msgid "This Vim was not compiled with the diff feature." -#~ msgstr " Vim ʱûм diff " - -#~ msgid "Vim: Error: Failure to start gvim from NetBeans\n" -#~ msgstr "Vim: : NetBeans gvim\n" - -#~ msgid "-register\t\tRegister this gvim for OLE" -#~ msgstr "-register\t\tע gvim OLE" - -#~ msgid "-unregister\t\tUnregister gvim for OLE" -#~ msgstr "-unregister\t\tȡ OLE е gvim ע" - -#~ msgid "-g\t\t\tRun using GUI (like \"gvim\")" -#~ msgstr "-g\t\t\tʹͼν (ͬ \"gvim\")" - -#~ msgid "-f or --nofork\tForeground: Don't fork when starting GUI" -#~ msgstr "-f --nofork\tǰ̨: ͼνʱ fork" - -#~ msgid "-V[N]\t\tVerbose level" -#~ msgstr "-V[N]\t\tVerbose ȼ" - -#~ msgid "-f\t\t\tDon't use newcli to open window" -#~ msgstr "-f\t\t\tʹ newcli " - -#~ msgid "-dev <device>\t\tUse <device> for I/O" -#~ msgstr "-dev <device>\t\tʹ <device> " - -#~ msgid "-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc" -#~ msgstr "-U <gvimrc>\t\tʹ <gvimrc> κ .gvimrc" - -#~ msgid "-x\t\t\tEdit encrypted files" -#~ msgstr "-x\t\t\t༭ܵļ" - -#~ msgid "-display <display>\tConnect vim to this particular X-server" -#~ msgstr "-display <display>\t vim ָ X-server " - -#~ msgid "-X\t\t\tDo not connect to X server" -#~ msgstr "-X\t\t\tӵ X Server" - -#~ msgid "--remote <files>\tEdit <files> in a Vim server if possible" -#~ msgstr "--remote <files>\tпܣ Vim ϱ༭ļ <files>" - -#~ msgid "--remote-silent <files> Same, don't complain if there is no server" -#~ msgstr "--remote-silent <files> ͬϣҲʱԹ" - -#~ msgid "" -#~ "--remote-wait <files> As --remote but wait for files to have been edited" -#~ msgstr "--remote-wait <files> ͬ --remote ȴļɱ༭" - -#~ msgid "" -#~ "--remote-wait-silent <files> Same, don't complain if there is no server" -#~ msgstr "--remote-wait-silent <files> ͬϣҲʱԹ" - -#~ msgid "--remote-tab <files> As --remote but open tab page for each file" -#~ msgstr "--remote-tab <files> ͬ --remote ÿļһǩҳ" - -#~ msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit" -#~ msgstr "--remote-send <keys>\tͳ <keys> Vim ˳" - -#~ msgid "" -#~ "--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result" -#~ msgstr "--remote-expr <expr>\t Vim <expr> ֵӡ" - -#~ msgid "--serverlist\t\tList available Vim server names and exit" -#~ msgstr "--serverlist\t\tгõ Vim Ʋ˳" - -#~ msgid "--servername <name>\tSend to/become the Vim server <name>" -#~ msgstr "--servername <name>\t͵Ϊ Vim <name>" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Motif version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim (Motif 汾) ʶIJ:\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (neXtaw version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim (neXtaw 汾) ʶIJ:\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Athena version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim (Athena 汾) ʶIJ:\n" - -#~ msgid "-display <display>\tRun vim on <display>" -#~ msgstr "-display <display>\t <display> vim" - -#~ msgid "-iconic\t\tStart vim iconified" -#~ msgstr "-iconic\t\tС" - -#~ msgid "-name <name>\t\tUse resource as if vim was <name>" -#~ msgstr "-name <name>\t\tȡ Resource ʱ vim Ϊ <name>" - -#~ msgid "\t\t\t (Unimplemented)\n" -#~ msgstr "\t\t\t (δʵ)\n" - -#~ msgid "-background <color>\tUse <color> for the background (also: -bg)" -#~ msgstr "-background <color>\tʹ <color> Ϊɫ (Ҳ -bg)" - -#~ msgid "-foreground <color>\tUse <color> for normal text (also: -fg)" -#~ msgstr "-foreground <color>\tʹ <color> Ϊһɫ (Ҳ -fg)" - -#~ msgid "-font <font>\t\tUse <font> for normal text (also: -fn)" -#~ msgstr "-font <font>\tʹ <font> Ϊһ (Ҳ -fn)" - -#~ msgid "-boldfont <font>\tUse <font> for bold text" -#~ msgstr "-boldfont <font>\tʹ <font> Ϊ" - -#~ msgid "-italicfont <font>\tUse <font> for italic text" -#~ msgstr "-italicfont <font>\tʹ <font> Ϊб" - -#~ msgid "-geometry <geom>\tUse <geom> for initial geometry (also: -geom)" -#~ msgstr "-geometry <geom>\tʹ <geom> Ϊʼλ (Ҳ -geom)" - -#~ msgid "-borderwidth <width>\tUse a border width of <width> (also: -bw)" -#~ msgstr "-borderwidth <width>\t趨߿Ϊ <width> (Ҳ -bw)" - -#~ msgid "" -#~ "-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)" -#~ msgstr "-scrollbarwidth <width> 趨Ϊ <width> (Ҳ -sw)" - -#~ msgid "-menuheight <height>\tUse a menu bar height of <height> (also: -mh)" -#~ msgstr "-menuheight <height>\t趨˵߶Ϊ <height> (Ҳ -mh)" - -#~ msgid "-reverse\t\tUse reverse video (also: -rv)" -#~ msgstr "-reverse\t\tʹ÷ (Ҳ -rv)" - -#~ msgid "+reverse\t\tDon't use reverse video (also: +rv)" -#~ msgstr "+reverse\t\tʹ÷ (Ҳ +rv)" - -#~ msgid "-xrm <resource>\tSet the specified resource" -#~ msgstr "-xrm <resource>\t趨ָԴ" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (RISC OS version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim (RISC OS 汾) ʶIJ:\n" - -#~ msgid "--columns <number>\tInitial width of window in columns" -#~ msgstr "--columns <number>\tڳʼ" - -#~ msgid "--rows <number>\tInitial height of window in rows" -#~ msgstr "--rows <number>\tڳʼ߶" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (GTK+ version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim (GTK+ 汾) ʶIJ:\n" - -#~ msgid "-display <display>\tRun vim on <display> (also: --display)" -#~ msgstr "-display <display>\t <display> vim (Ҳ --display)" - -#~ msgid "--role <role>\tSet a unique role to identify the main window" -#~ msgstr "--role <role>\tڵĴڽɫ" - -#~ msgid "--socketid <xid>\tOpen Vim inside another GTK widget" -#~ msgstr "--socketid <xid>\tһ GTK д Vim" - -#~ msgid "-P <parent title>\tOpen Vim inside parent application" -#~ msgstr "-P <parent title>\tڸӦóд Vim" - -#~ msgid "No display" -#~ msgstr "û display" - -#~ msgid ": Send failed.\n" -#~ msgstr ": ʧܡ\n" - -#~ msgid ": Send failed. Trying to execute locally\n" -#~ msgstr ": ʧܡԱִ\n" - -#~ msgid "%d of %d edited" -#~ msgstr "%d %d ѱ༭" - -#~ msgid "No display: Send expression failed.\n" -#~ msgstr "û display: ͱʽʧܡ\n" - -#~ msgid ": Send expression failed.\n" -#~ msgstr ": ͱʽʧܡ\n" - -#~ msgid "E543: Not a valid codepage" -#~ msgstr "E543: ЧĴҳ" - -#~ msgid "E285: Failed to create input context" -#~ msgstr "E285: " - -#~ msgid "E286: Failed to open input method" -#~ msgstr "E286: 뷨" - -#~ msgid "E287: Warning: Could not set destroy callback to IM" -#~ msgstr "E287: : 趨뷨ͷŻص" - -#~ msgid "E288: input method doesn't support any style" -#~ msgstr "E288: 뷨֧κη" - -#~ msgid "E289: input method doesn't support my preedit type" -#~ msgstr "E289: 뷨֧ҵԤ༭" - -#~ msgid "E290: over-the-spot style requires fontset" -#~ msgstr "E290: over-the-spot Ҫ Fontset" - -#~ msgid "E291: Your GTK+ is older than 1.2.3. Status area disabled" -#~ msgstr "E291: GTK+ 1.2.3 ɡ״̬á" - -#~ msgid "E292: Input Method Server is not running" -#~ msgstr "E292: 뷨δ" - -#~ msgid "" -#~ "\n" -#~ " [not usable with this version of Vim]" -#~ msgstr "" -#~ "\n" -#~ " [ڸð汾 Vim ʹ]" - -#~ msgid "Tear off this menu" -#~ msgstr "˺´˲˵" - -#~ msgid "Select Directory dialog" -#~ msgstr "ѡĿ¼Ի" - -#~ msgid "Save File dialog" -#~ msgstr "ļԻ" - -#~ msgid "Open File dialog" -#~ msgstr "ļԻ" - -#~ msgid "E338: Sorry, no file browser in console mode" -#~ msgstr "E338: Ǹ̨ģʽûļ" - -#~ msgid "Vim: preserving files...\n" -#~ msgstr "Vim: ڱļ\n" - -#~ msgid "Vim: Finished.\n" -#~ msgstr "Vim: \n" - -#~ msgid "ERROR: " -#~ msgstr ": " - -#~ msgid "" -#~ "\n" -#~ "[bytes] total alloc-freed %<PRIu64>-%<PRIu64>, in use %<PRIu64>, peak use " -#~ "%<PRIu64>\n" -#~ msgstr "" -#~ "\n" -#~ "[ֽ] ܹ alloc-free %<PRIu64>-%<PRIu64>ʹ %<PRIu64>߷ʹ " -#~ "%<PRIu64>\n" - -#~ msgid "" -#~ "[calls] total re/malloc()'s %<PRIu64>, total free()'s %<PRIu64>\n" -#~ "\n" -#~ msgstr "" -#~ "[] ܹ re/malloc(): %<PRIu64>ܹ free()': %<PRIu64>\n" -#~ "\n" - -#~ msgid "E340: Line is becoming too long" -#~ msgstr "E340: й" - -#~ msgid "E341: Internal error: lalloc(%<PRId64>, )" -#~ msgstr "E341: ڲ: lalloc(%<PRId64>, )" - -#~ msgid "E547: Illegal mouseshape" -#~ msgstr "E547: Ч״" - -#~ msgid "Enter encryption key: " -#~ msgstr ": " - -#~ msgid "Enter same key again: " -#~ msgstr "һ: " - -#~ msgid "Keys don't match!" -#~ msgstr "벻ƥ䣡" - -#~ msgid "Cannot connect to Netbeans #2" -#~ msgstr "ӵ Netbeans #2" - -#~ msgid "Cannot connect to Netbeans" -#~ msgstr "ӵ Netbeans" - -#~ msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\"" -#~ msgstr "E668: NetBeans Ϣļдķģʽ: \"%s\"" - -#~ msgid "read from Netbeans socket" -#~ msgstr " Netbeans ֶȡ" - -#~ msgid "E658: NetBeans connection lost for buffer %<PRId64>" -#~ msgstr "E658: %<PRId64> ʧ NetBeans " - -#~ msgid "E505: " -#~ msgstr "E505: " - -#~ msgid "E775: Eval feature not available" -#~ msgstr "E775: ֵܲ" - -#~ msgid "freeing %<PRId64> lines" -#~ msgstr "ͷ %<PRId64> " - -#~ msgid "E530: Cannot change term in GUI" -#~ msgstr "E530: ͼνвܸıն" - -#~ msgid "E531: Use \":gui\" to start the GUI" -#~ msgstr "E531: \":gui\" ͼν" - -#~ msgid "E617: Cannot be changed in the GTK+ 2 GUI" -#~ msgstr "E617: GTK+ 2 ͼνвܸ" - -#~ msgid "E596: Invalid font(s)" -#~ msgstr "E596: Ч" - -#~ msgid "E597: can't select fontset" -#~ msgstr "E597: ѡ Fontset" - -#~ msgid "E598: Invalid fontset" -#~ msgstr "E598: Ч Fontset" - -#~ msgid "E533: can't select wide font" -#~ msgstr "E533: ѡ" - -#~ msgid "E534: Invalid wide font" -#~ msgstr "E534: ЧĿ" - -#~ msgid "E538: No mouse support" -#~ msgstr "E538: ֧" - -#~ msgid "cannot open " -#~ msgstr "ܴ" - -#~ msgid "VIM: Can't open window!\n" -#~ msgstr "VIM: ܴ!\n" - -#~ msgid "Need Amigados version 2.04 or later\n" -#~ msgstr "Ҫ Amigados 汾 2.04 \n" - -#~ msgid "Need %s version %<PRId64>\n" -#~ msgstr "Ҫ %s 汾 %<PRId64>\n" - -#~ msgid "Cannot open NIL:\n" -#~ msgstr "ܴ NIL:\n" - -#~ msgid "Cannot create " -#~ msgstr "ܴ " - -#~ msgid "Vim exiting with %d\n" -#~ msgstr "Vim ֵ: %d\n" - -#~ msgid "cannot change console mode ?!\n" -#~ msgstr "л̨(console)ģʽ !?\n" - -#~ msgid "mch_get_shellsize: not a console??\n" -#~ msgstr "mch_get_shellsize: ̨(console)??\n" - -#~ msgid "E360: Cannot execute shell with -f option" -#~ msgstr "E360: -f ѡִ shell" - -#~ msgid "Cannot execute " -#~ msgstr "ִ " - -#~ msgid "shell " -#~ msgstr "shell " - -#~ msgid " returned\n" -#~ msgstr " ѷ\n" - -#~ msgid "ANCHOR_BUF_SIZE too small." -#~ msgstr "ANCHOR_BUF_SIZE ̫С" - -#~ msgid "I/O ERROR" -#~ msgstr "I/O " - -#~ msgid "Message" -#~ msgstr "Ϣ" - -#~ msgid "'columns' is not 80, cannot execute external commands" -#~ msgstr "'columns' 80, ִⲿ" - -#~ msgid "E237: Printer selection failed" -#~ msgstr "E237: ѡӡʧ" - -#~ msgid "to %s on %s" -#~ msgstr " %s %s" - -#~ msgid "E613: Unknown printer font: %s" -#~ msgstr "E613: δ֪Ĵӡ: %s" - -#~ msgid "E238: Print error: %s" -#~ msgstr "E238: ӡ: %s" - -#~ msgid "Printing '%s'" -#~ msgstr "ӡ '%s'" - -#~ msgid "E244: Illegal charset name \"%s\" in font name \"%s\"" -#~ msgstr "E244: ַ \"%s\" ܶӦ\"%s\"" - -#~ msgid "E245: Illegal char '%c' in font name \"%s\"" -#~ msgstr "E245: ȷַ '%c' \"%s\" " - -#~ msgid "Vim: Double signal, exiting\n" -#~ msgstr "Vim: ˫źţ˳\n" - -#~ msgid "Vim: Caught deadly signal %s\n" -#~ msgstr "Vim: صź(deadly signal) %s\n" - -#~ msgid "Vim: Caught deadly signal\n" -#~ msgstr "Vim: صź(deadly signal)\n" - -#~ msgid "Opening the X display took %<PRId64> msec" -#~ msgstr " X display ʱ %<PRId64> " - -#~ msgid "" -#~ "\n" -#~ "Vim: Got X error\n" -#~ msgstr "" -#~ "\n" -#~ "Vim: X \n" - -#~ msgid "Testing the X display failed" -#~ msgstr " X display ʧ" - -#~ msgid "Opening the X display timed out" -#~ msgstr " X display ʱ" - -#~ msgid "" -#~ "\n" -#~ "Cannot execute shell sh\n" -#~ msgstr "" -#~ "\n" -#~ "ִ shell sh\n" - -#~ msgid "" -#~ "\n" -#~ "Cannot create pipes\n" -#~ msgstr "" -#~ "\n" -#~ "ܵ\n" - -#~ msgid "" -#~ "\n" -#~ "Cannot fork\n" -#~ msgstr "" -#~ "\n" -#~ " fork\n" - -#~ msgid "" -#~ "\n" -#~ "Command terminated\n" -#~ msgstr "" -#~ "\n" -#~ "ѽ\n" - -#~ msgid "XSMP lost ICE connection" -#~ msgstr "XSMP ʧ˵ ICE " - -#~ msgid "Opening the X display failed" -#~ msgstr " X display ʧ" - -#~ msgid "XSMP handling save-yourself request" -#~ msgstr "XSMP save-yourself " - -#~ msgid "XSMP opening connection" -#~ msgstr "XSMP " - -#~ msgid "XSMP ICE connection watch failed" -#~ msgstr "XSMP ICE Ӽʧ" - -#~ msgid "XSMP SmcOpenConnection failed: %s" -#~ msgstr "XSMP SmcOpenConnection ʧ: %s" - -#~ msgid "At line" -#~ msgstr "к " - -#~ msgid "Could not load vim32.dll!" -#~ msgstr " vim32.dll" - -#~ msgid "VIM Error" -#~ msgstr "VIM " - -#~ msgid "Could not fix up function pointers to the DLL!" -#~ msgstr " DLL ĺָ!" - -#~ msgid "shell returned %d" -#~ msgstr "Shell %d" - -#~ msgid "Vim: Caught %s event\n" -#~ msgstr "Vim: ص %s ¼\n" - -#~ msgid "close" -#~ msgstr "ر" - -#~ msgid "logoff" -#~ msgstr "ע" - -#~ msgid "shutdown" -#~ msgstr "ػ" - -#~ msgid "E371: Command not found" -#~ msgstr "E371: Ҳ" - -#~ msgid "" -#~ "VIMRUN.EXE not found in your $PATH.\n" -#~ "External commands will not pause after completion.\n" -#~ "See :help win32-vimrun for more information." -#~ msgstr "" -#~ " $PATH Ҳ VIMRUN.EXE\n" -#~ "ⲿִϺͣ\n" -#~ "һ˵ :help win32-vimrun" - -#~ msgid "Vim Warning" -#~ msgstr "Vim " - -#~ msgid "Conversion in %s not supported" -#~ msgstr "֧ %s еת" - -#~ msgid "E396: containedin argument not accepted here" -#~ msgstr "E396: ʹ˲ȷIJ" - -#~ msgid "E430: Tag file path truncated for %s\n" -#~ msgstr "E430: Tag ļ·ضΪ %s\n" - -#~ msgid "new shell started\n" -#~ msgstr " shell\n" - -#~ msgid "No undo possible; continue anyway" -#~ msgstr "" - -#~ msgid "number changes time" -#~ msgstr " ı ʱ" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16/32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 16/32 λͼν汾" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 32 λͼν汾" - -#~ msgid " in Win32s mode" -#~ msgstr " Win32s ģʽ" - -#~ msgid " with OLE support" -#~ msgstr " OLE ֧" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit console version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 32 λ̨汾" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16-bit version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 16 λ̨汾" - -#~ msgid "" -#~ "\n" -#~ "32-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ "32 λ MS-DOS 汾" - -#~ msgid "" -#~ "\n" -#~ "16-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ "16 λ MS-DOS 汾" - -#~ msgid "" -#~ "\n" -#~ "MacOS X (unix) version" -#~ msgstr "" -#~ "\n" -#~ "MacOS X (unix) 汾" - -#~ msgid "" -#~ "\n" -#~ "MacOS X version" -#~ msgstr "" -#~ "\n" -#~ "MacOS X 汾" - -#~ msgid "" -#~ "\n" -#~ "MacOS version" -#~ msgstr "" -#~ "\n" -#~ "MacOS 汾" - -#~ msgid "" -#~ "\n" -#~ "RISC OS version" -#~ msgstr "" -#~ "\n" -#~ "RISC OS 汾" - -#~ msgid "" -#~ "\n" -#~ "Big version " -#~ msgstr "" -#~ "\n" -#~ "Ͱ汾 " - -#~ msgid "" -#~ "\n" -#~ "Normal version " -#~ msgstr "" -#~ "\n" -#~ "汾 " - -#~ msgid "" -#~ "\n" -#~ "Small version " -#~ msgstr "" -#~ "\n" -#~ "СͰ汾 " - -#~ msgid "" -#~ "\n" -#~ "Tiny version " -#~ msgstr "" -#~ "\n" -#~ "Ͱ汾 " - -#~ msgid "with GTK2-GNOME GUI." -#~ msgstr " GTK2-GNOME ͼν档" - -#~ msgid "with GTK-GNOME GUI." -#~ msgstr " GTK-GNOME ͼν档" - -#~ msgid "with GTK2 GUI." -#~ msgstr " GTK2 ͼν档" - -#~ msgid "with GTK GUI." -#~ msgstr " GTK ͼν档" - -#~ msgid "with X11-Motif GUI." -#~ msgstr " X11-Motif ͼν档" - -#~ msgid "with X11-neXtaw GUI." -#~ msgstr " X11-neXtaw ͼν档" - -#~ msgid "with X11-Athena GUI." -#~ msgstr " X11-Athena ͼν档" - -#~ msgid "with Photon GUI." -#~ msgstr " Photon ͼν档" - -#~ msgid "with GUI." -#~ msgstr "ͼν档" - -#~ msgid "with Carbon GUI." -#~ msgstr " Carbon ͼν档" - -#~ msgid "with Cocoa GUI." -#~ msgstr " Cocoa ͼν档" - -#~ msgid "with (classic) GUI." -#~ msgstr "(ͳ)ͼν档" - -#~ msgid " system gvimrc file: \"" -#~ msgstr " ϵͳ gvimrc ļ: \"" - -#~ msgid " user gvimrc file: \"" -#~ msgstr " û gvimrc ļ: \"" - -#~ msgid "2nd user gvimrc file: \"" -#~ msgstr "ڶû gvimrc ļ: \"" - -#~ msgid "3rd user gvimrc file: \"" -#~ msgstr "û gvimrc ļ: \"" - -#~ msgid " system menu file: \"" -#~ msgstr " ϵͳ˵ļ: \"" - -#~ msgid "Compiler: " -#~ msgstr ": " - -#~ msgid "menu Help->Orphans for information " -#~ msgstr "˵ Help->Orphans 鿴˵ " - -#~ msgid "Running modeless, typed text is inserted" -#~ msgstr "ģʽУּ" - -#~ msgid "menu Edit->Global Settings->Toggle Insert Mode " -#~ msgstr "˵ Edit->Global Settings->Toggle Insert Mode " - -#, fuzzy -#~ msgid " for two modes " -#~ msgstr " # pid ݿ prepend path\n" - -#, fuzzy -#~ msgid " for Vim defaults " -#~ msgstr " # pid ݿ prepend path\n" - -#~ msgid "WARNING: Windows 95/98/ME detected" -#~ msgstr ": Windows 95/98/ME" - -#~ msgid "type :help windows95<Enter> for info on this" -#~ msgstr " :help windows95<Enter> 鿴˵ " - -#~ msgid "E370: Could not load library %s" -#~ msgstr "E370: ؿ %s" - -#~ msgid "" -#~ "Sorry, this command is disabled: the Perl library could not be loaded." -#~ msgstr "Ǹ: Perl ⡣" - -#~ msgid "Edit with &multiple Vims" -#~ msgstr "ö Vim ༭(&M)" - -#~ msgid "Edit with single &Vim" -#~ msgstr "õ Vim ༭(&V)" - -#~ msgid "Diff with Vim" -#~ msgstr " Vim Ƚ(diff)" - -#~ msgid "Edit with &Vim" -#~ msgstr " Vim ༭(&V)" - -#~ msgid "Edit with existing Vim - " -#~ msgstr "õǰ Vim ༭ - " - -#~ msgid "Edits the selected file(s) with Vim" -#~ msgstr " Vim ༭ѡеļ" - -#~ msgid "Error creating process: Check if gvim is in your path!" -#~ msgstr "ʧ: gvim Ƿ·У" - -#~ msgid "gvimext.dll error" -#~ msgstr "gvimext.dll " - -#~ msgid "Path length too long!" -#~ msgstr "·̫" - -#~ msgid "E234: Unknown fontset: %s" -#~ msgstr "E234: δ֪ Fontset: %s" - -#~ msgid "E235: Unknown font: %s" -#~ msgstr "E235: δ֪: %s" - -#~ msgid "E236: Font \"%s\" is not fixed-width" -#~ msgstr "E236: \"%s\" ǵȿ" - -#~ msgid "E448: Could not load library function %s" -#~ msgstr "E448: ؿ⺯ %s" - -#~ msgid "E26: Hebrew cannot be used: Not enabled at compile time\n" -#~ msgstr "E26: ʹ Hebrew: ʱû\n" - -#~ msgid "E27: Farsi cannot be used: Not enabled at compile time\n" -#~ msgstr "E27: ʹ Farsi: ʱû\n" - -#~ msgid "E800: Arabic cannot be used: Not enabled at compile time\n" -#~ msgstr "E800: ʹ Arabic: ʱû\n" - -#~ msgid "E247: no registered server named \"%s\"" -#~ msgstr "E247: û \"%s\" עķ" - -#~ msgid "E233: cannot open display" -#~ msgstr "E233: display" - -#~ msgid "E449: Invalid expression received" -#~ msgstr "E449: յЧıʽ" - -#~ msgid "E744: NetBeans does not allow changes in read-only files" -#~ msgstr "E744: NetBeans ıֻļ" - -#~ msgid "Affix flags ignored when PFXPOSTPONE used in %s line %d: %s" -#~ msgstr "%s %d Уʹ PFXPOSTPONE ʱӱ־: %s" - -#~ msgid "[No file]" -#~ msgstr "[δ]" - -#~ msgid "[Error List]" -#~ msgstr "[б]" - -#~ msgid "E106: Unknown variable: \"%s\"" -#~ msgstr "E106: δı: \"%s\"" - -#~ msgid "function " -#~ msgstr " " - -#~ msgid "E130: Undefined function: %s" -#~ msgstr "E130: %s δ" - -#~ msgid "Run Macro" -#~ msgstr "ִк" - -#~ msgid "E242: Color name not recognized: %s" -#~ msgstr "E242: %s Ϊʶɫ" - -#~ msgid "error reading cscope connection %d" -#~ msgstr "ȡ cscope %d ʱ" - -#~ msgid "E260: cscope connection not found" -#~ msgstr "E260: Ҳ cscope " - -#~ msgid "cscope connection closed" -#~ msgstr "cscope ѹر" - -#~ msgid "couldn't malloc\n" -#~ msgstr "ʹ malloc\n" - -#~ msgid "%2d %-5ld %-34s <none>\n" -#~ msgstr "%2d %-5ld %-34s <>\n" - -#~ msgid "E249: couldn't read VIM instance registry property" -#~ msgstr "E249: ܶȡ VIM ע" - -#~ msgid "\"\n" -#~ msgstr "\"\n" - -#~ msgid "--help\t\tShow Gnome arguments" -#~ msgstr "--help\t\tʾ Gnome ز" - -#~ msgid "[string too long]" -#~ msgstr "[ַ̫]" - -#~ msgid "Hit ENTER to continue" -#~ msgstr "밴 ENTER " - -#~ msgid " (RET/BS: line, SPACE/b: page, d/u: half page, q: quit)" -#~ msgstr " (RET/BS: /һ, ո/b: һҳ, d/u: ҳ, q: ˳)" - -#~ msgid " (RET: line, SPACE: page, d: half page, q: quit)" -#~ msgstr " (RET: һ, հ: һҳ, d: ҳ, q: ˳)" - -#~ msgid "E361: Crash intercepted; regexp too complex?" -#~ msgstr "E361: ִ; regular expression ̫?" - -#~ msgid "E363: pattern caused out-of-stack error" -#~ msgstr "E363: regular expression ɶջùĴ" - -#~ msgid " BLOCK" -#~ msgstr " " - -#~ msgid " LINE" -#~ msgstr " " - -#~ msgid "Enter nr of choice (<CR> to abort): " -#~ msgstr " nr ѡ (<CR> ˳): " - -#~ msgid "Linear tag search" -#~ msgstr "Բұǩ (Tags)" - -#~ msgid "Binary tag search" -#~ msgstr "Ʋ(Binary search) ǩ(Tags)" - -#~ msgid "with BeOS GUI." -#~ msgstr "ʹ BeOS ͼν档" diff --git a/src/nvim/po/zh_CN.po b/src/nvim/po/zh_CN.po deleted file mode 100644 index 6cc4dd42ac..0000000000 --- a/src/nvim/po/zh_CN.po +++ /dev/null @@ -1,7928 +0,0 @@ -# Chinese (simplified) Translation for Vim -# -# Do ":help uganda" in Vim to read copying and usage conditions. -# Do ":help credits" in Vim to see a list of people who contributed. -# -# FIRST AUTHOR Wang Jun <junw@turbolinux.com.cn> -# -# TRANSLATORS -# Edyfox <edyfox@gmail.com> -# Yuheng Xie <elephant@linux.net.cn> -# -# Original translations. -# -msgid "" -msgstr "" -"Project-Id-Version: Vim(Simplified Chinese)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-26 14:21+0200\n" -"PO-Revision-Date: 2006-04-21 14:00+0800\n" -"Last-Translator: Yuheng Xie <elephant@linux.net.cn>\n" -"Language-Team: Simplified Chinese <i18n-translation@lists.linux.net.cn>\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=gb2312\n" -"Content-Transfer-Encoding: 8-bit\n" - -#: ../api/private/helpers.c:201 -#, fuzzy -msgid "Unable to get option value" -msgstr "ѡЧ" - -#: ../api/private/helpers.c:204 -msgid "internal error: unknown option type" -msgstr "" - -#: ../buffer.c:92 -msgid "[Location List]" -msgstr "[Location б]" - -#: ../buffer.c:93 -msgid "[Quickfix List]" -msgstr "[Quickfix б]" - -#: ../buffer.c:94 -msgid "E855: Autocommands caused command to abort" -msgstr "" - -#: ../buffer.c:135 -msgid "E82: Cannot allocate any buffer, exiting..." -msgstr "E82: κλ˳..." - -#: ../buffer.c:138 -msgid "E83: Cannot allocate buffer, using other one..." -msgstr "E83: 仺ʹһ..." - -#: ../buffer.c:763 -msgid "E515: No buffers were unloaded" -msgstr "E515: ûͷκλ" - -#: ../buffer.c:765 -msgid "E516: No buffers were deleted" -msgstr "E516: ûɾκλ" - -#: ../buffer.c:767 -msgid "E517: No buffers were wiped out" -msgstr "E517: ûκλ" - -#: ../buffer.c:772 -msgid "1 buffer unloaded" -msgstr "ͷ 1 " - -#: ../buffer.c:774 -#, c-format -msgid "%d buffers unloaded" -msgstr "ͷ %d " - -#: ../buffer.c:777 -msgid "1 buffer deleted" -msgstr "ɾ 1 " - -#: ../buffer.c:779 -#, c-format -msgid "%d buffers deleted" -msgstr "ɾ %d " - -#: ../buffer.c:782 -msgid "1 buffer wiped out" -msgstr " 1 " - -#: ../buffer.c:784 -#, c-format -msgid "%d buffers wiped out" -msgstr " %d " - -#: ../buffer.c:806 -msgid "E90: Cannot unload last buffer" -msgstr "E90: ͷһ" - -#: ../buffer.c:874 -msgid "E84: No modified buffer found" -msgstr "E84: ûĹĻ" - -#. back where we started, didn't find anything. -#: ../buffer.c:903 -msgid "E85: There is no listed buffer" -msgstr "E85: ûпгĻ" - -#: ../buffer.c:913 -#, c-format -msgid "E86: Buffer %<PRId64> does not exist" -msgstr "E86: %<PRId64> " - -#: ../buffer.c:915 -msgid "E87: Cannot go beyond last buffer" -msgstr "E87: лһ" - -#: ../buffer.c:917 -msgid "E88: Cannot go before first buffer" -msgstr "E88: лǵһ" - -#: ../buffer.c:945 -#, c-format -msgid "" -"E89: No write since last change for buffer %<PRId64> (add ! to override)" -msgstr "E89: %<PRId64> ĵδ ( ! ǿִ)" - -#. wrap around (may cause duplicates) -#: ../buffer.c:1423 -msgid "W14: Warning: List of file names overflow" -msgstr "W14: : ļ" - -#: ../buffer.c:1555 ../quickfix.c:3361 -#, c-format -msgid "E92: Buffer %<PRId64> not found" -msgstr "E92: Ҳ %<PRId64>" - -#: ../buffer.c:1798 -#, c-format -msgid "E93: More than one match for %s" -msgstr "E93: ҵֹһ %s" - -#: ../buffer.c:1800 -#, c-format -msgid "E94: No matching buffer for %s" -msgstr "E94: ûƥĻ %s" - -#: ../buffer.c:2161 -#, c-format -msgid "line %<PRId64>" -msgstr " %<PRId64> " - -#: ../buffer.c:2233 -msgid "E95: Buffer with this name already exists" -msgstr "E95: лʹø" - -#: ../buffer.c:2498 -msgid " [Modified]" -msgstr " []" - -#: ../buffer.c:2501 -msgid "[Not edited]" -msgstr "[δ༭]" - -#: ../buffer.c:2504 -msgid "[New file]" -msgstr "[ļ]" - -#: ../buffer.c:2505 -msgid "[Read errors]" -msgstr "[]" - -#: ../buffer.c:2506 ../buffer.c:3217 ../fileio.c:1807 ../screen.c:4895 -msgid "[RO]" -msgstr "[ֻ]" - -#: ../buffer.c:2507 ../fileio.c:1807 -msgid "[readonly]" -msgstr "[ֻ]" - -#: ../buffer.c:2524 -#, c-format -msgid "1 line --%d%%--" -msgstr "1 --%d%%--" - -#: ../buffer.c:2526 -#, c-format -msgid "%<PRId64> lines --%d%%--" -msgstr "%<PRId64> --%d%%--" - -#: ../buffer.c:2530 -#, c-format -msgid "line %<PRId64> of %<PRId64> --%d%%-- col " -msgstr " %<PRId64> / %<PRId64> --%d%%-- " - -#: ../buffer.c:2632 ../buffer.c:4292 ../memline.c:1554 -msgid "[No Name]" -msgstr "[δ]" - -#. must be a help buffer -#: ../buffer.c:2667 -msgid "help" -msgstr "" - -#: ../buffer.c:3225 ../screen.c:4883 -msgid "[Help]" -msgstr "[]" - -#: ../buffer.c:3254 ../screen.c:4887 -msgid "[Preview]" -msgstr "[Ԥ]" - -#: ../buffer.c:3528 -msgid "All" -msgstr "ȫ" - -#: ../buffer.c:3528 -msgid "Bot" -msgstr "" - -#: ../buffer.c:3531 -msgid "Top" -msgstr "" - -#: ../buffer.c:4244 -msgid "" -"\n" -"# Buffer list:\n" -msgstr "" -"\n" -"# б:\n" - -#: ../buffer.c:4289 -msgid "[Scratch]" -msgstr "" - -#: ../buffer.c:4529 -msgid "" -"\n" -"--- Signs ---" -msgstr "" -"\n" -"--- Signs ---" - -#: ../buffer.c:4538 -#, c-format -msgid "Signs for %s:" -msgstr "%s Signs:" - -#: ../buffer.c:4543 -#, c-format -msgid " line=%<PRId64> id=%d name=%s" -msgstr " =%<PRId64> id=%d =%s" - -#: ../cursor_shape.c:68 -msgid "E545: Missing colon" -msgstr "E545: ȱð" - -#: ../cursor_shape.c:70 ../cursor_shape.c:94 -msgid "E546: Illegal mode" -msgstr "E546: Чģʽ" - -#: ../cursor_shape.c:134 -msgid "E548: digit expected" -msgstr "E548: ˴Ҫ" - -#: ../cursor_shape.c:138 -msgid "E549: Illegal percentage" -msgstr "E549: Чİٷֱ" - -#: ../diff.c:146 -#, c-format -msgid "E96: Can not diff more than %<PRId64> buffers" -msgstr "E96: ܱȽ(diff) %<PRId64> ϵĻ" - -#: ../diff.c:753 -#, fuzzy -msgid "E810: Cannot read or write temp files" -msgstr "E557: termcap ļ" - -#: ../diff.c:755 -msgid "E97: Cannot create diffs" -msgstr "E97: diff" - -#: ../diff.c:966 -#, fuzzy -msgid "E816: Cannot read patch output" -msgstr "E98: ȡ diff " - -#: ../diff.c:1220 -msgid "E98: Cannot read diff output" -msgstr "E98: ȡ diff " - -#: ../diff.c:2081 -msgid "E99: Current buffer is not in diff mode" -msgstr "E99: ǰ diff ģʽ" - -#: ../diff.c:2100 -#, fuzzy -msgid "E793: No other buffer in diff mode is modifiable" -msgstr "E100: û diff ģʽĻ" - -#: ../diff.c:2102 -msgid "E100: No other buffer in diff mode" -msgstr "E100: û diff ģʽĻ" - -#: ../diff.c:2112 -msgid "E101: More than two buffers in diff mode, don't know which one to use" -msgstr "E101: ϵĻ diff ģʽܾһ" - -#: ../diff.c:2141 -#, c-format -msgid "E102: Can't find buffer \"%s\"" -msgstr "E102: Ҳ \"%s\"" - -#: ../diff.c:2152 -#, c-format -msgid "E103: Buffer \"%s\" is not in diff mode" -msgstr "E103: \"%s\" diff ģʽ" - -#: ../diff.c:2193 -msgid "E787: Buffer changed unexpectedly" -msgstr "E787: ظı˻" - -#: ../digraph.c:1598 -msgid "E104: Escape not allowed in digraph" -msgstr "E104: ַ(digraph)вʹ Escape" - -#: ../digraph.c:1760 -msgid "E544: Keymap file not found" -msgstr "E544: Ҳ Keymap ļ" - -#: ../digraph.c:1785 -msgid "E105: Using :loadkeymap not in a sourced file" -msgstr "E105: ڽűļʹ :loadkeymap " - -#: ../digraph.c:1821 -msgid "E791: Empty keymap entry" -msgstr "" - -#: ../edit.c:82 -msgid " Keyword completion (^N^P)" -msgstr " ؼֲȫ (^N^P)" - -#. ctrl_x_mode == 0, ^P/^N compl. -#: ../edit.c:83 -msgid " ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" -msgstr " ^X ģʽ (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" - -#: ../edit.c:85 -msgid " Whole line completion (^L^N^P)" -msgstr " вȫ (^L^N^P)" - -#: ../edit.c:86 -msgid " File name completion (^F^N^P)" -msgstr " ļȫ (^F^N^P)" - -#: ../edit.c:87 -msgid " Tag completion (^]^N^P)" -msgstr " Tag ȫ (^]^N^P)" - -#: ../edit.c:88 -#, fuzzy -msgid " Path pattern completion (^N^P)" -msgstr " ·ģʽȫ (^N^P)" - -#: ../edit.c:89 -msgid " Definition completion (^D^N^P)" -msgstr " 岹ȫ (^D^N^P)" - -#: ../edit.c:91 -msgid " Dictionary completion (^K^N^P)" -msgstr " Dictionary ȫ (^K^N^P)" - -#: ../edit.c:92 -msgid " Thesaurus completion (^T^N^P)" -msgstr " Thesaurus ȫ (^T^N^P)" - -#: ../edit.c:93 -msgid " Command-line completion (^V^N^P)" -msgstr " вȫ (^V^N^P)" - -#: ../edit.c:94 -msgid " User defined completion (^U^N^P)" -msgstr " ûԶ岹ȫ (^U^N^P)" - -#: ../edit.c:95 -msgid " Omni completion (^O^N^P)" -msgstr " ȫܲȫ (^O^N^P)" - -#: ../edit.c:96 -msgid " Spelling suggestion (s^N^P)" -msgstr " ƴд (s^N^P)" - -#: ../edit.c:97 -msgid " Keyword Local completion (^N^P)" -msgstr " ؼ־ֲȫ (^N^P)" - -#: ../edit.c:100 -msgid "Hit end of paragraph" -msgstr "ѵβ" - -#: ../edit.c:101 -msgid "E839: Completion function changed window" -msgstr "" - -#: ../edit.c:102 -msgid "E840: Completion function deleted text" -msgstr "" - -#: ../edit.c:1847 -msgid "'dictionary' option is empty" -msgstr "ѡ 'dictionary' Ϊ" - -#: ../edit.c:1848 -msgid "'thesaurus' option is empty" -msgstr "ѡ 'thesaurus' Ϊ" - -#: ../edit.c:2655 -#, c-format -msgid "Scanning dictionary: %s" -msgstr "ɨ dictionary: %s" - -#: ../edit.c:3079 -msgid " (insert) Scroll (^E/^Y)" -msgstr " () Scroll (^E/^Y)" - -#: ../edit.c:3081 -msgid " (replace) Scroll (^E/^Y)" -msgstr " (滻) Scroll (^E/^Y)" - -#: ../edit.c:3587 -#, c-format -msgid "Scanning: %s" -msgstr "ɨ: %s" - -#: ../edit.c:3614 -msgid "Scanning tags." -msgstr "ɨǩ." - -#: ../edit.c:4519 -msgid " Adding" -msgstr " " - -#. showmode might reset the internal line pointers, so it must -#. * be called before line = ml_get(), or when this address is no -#. * longer needed. -- Acevedo. -#. -#: ../edit.c:4562 -msgid "-- Searching..." -msgstr "-- ..." - -#: ../edit.c:4618 -msgid "Back at original" -msgstr "ص" - -#: ../edit.c:4621 -msgid "Word from other line" -msgstr "һеĴ" - -#: ../edit.c:4624 -msgid "The only match" -msgstr "Ψһƥ" - -#: ../edit.c:4680 -#, c-format -msgid "match %d of %d" -msgstr "ƥ %d / %d" - -#: ../edit.c:4684 -#, c-format -msgid "match %d" -msgstr "ƥ %d" - -#: ../eval.c:137 -msgid "E18: Unexpected characters in :let" -msgstr "E18: :let г쳣ַ" - -#: ../eval.c:138 -#, c-format -msgid "E684: list index out of range: %<PRId64>" -msgstr "E684: List Χ: %<PRId64>" - -#: ../eval.c:139 -#, c-format -msgid "E121: Undefined variable: %s" -msgstr "E121: δı: %s" - -#: ../eval.c:140 -msgid "E111: Missing ']'" -msgstr "E111: ȱ ']'" - -#: ../eval.c:141 -#, c-format -msgid "E686: Argument of %s must be a List" -msgstr "E686: %s IJ List" - -#: ../eval.c:143 -#, c-format -msgid "E712: Argument of %s must be a List or Dictionary" -msgstr "E712: %s IJ List Dictionary" - -#: ../eval.c:144 -msgid "E713: Cannot use empty key for Dictionary" -msgstr "E713: Dictionary ļΪ" - -#: ../eval.c:145 -msgid "E714: List required" -msgstr "E714: Ҫ List" - -#: ../eval.c:146 -msgid "E715: Dictionary required" -msgstr "E715: Ҫ Dictionary" - -#: ../eval.c:147 -#, c-format -msgid "E118: Too many arguments for function: %s" -msgstr "E118: IJ: %s" - -#: ../eval.c:148 -#, c-format -msgid "E716: Key not present in Dictionary: %s" -msgstr "E716: Dictionary вڼ: %s" - -#: ../eval.c:150 -#, c-format -msgid "E122: Function %s already exists, add ! to replace it" -msgstr "E122: %s Ѵڣ ! ǿ滻" - -#: ../eval.c:151 -msgid "E717: Dictionary entry already exists" -msgstr "E717: Dictionary Ѵ" - -#: ../eval.c:152 -msgid "E718: Funcref required" -msgstr "E718: Ҫ Funcref" - -#: ../eval.c:153 -msgid "E719: Cannot use [:] with a Dictionary" -msgstr "E719: ܶ Dictionary ʹ [:]" - -#: ../eval.c:154 -#, c-format -msgid "E734: Wrong variable type for %s=" -msgstr "E734: %s= ıͲȷ" - -#: ../eval.c:155 -#, c-format -msgid "E130: Unknown function: %s" -msgstr "E130: δ֪ĺ: %s" - -#: ../eval.c:156 -#, c-format -msgid "E461: Illegal variable name: %s" -msgstr "E461: Чı: %s" - -#: ../eval.c:157 -#, fuzzy -msgid "E806: using Float as a String" -msgstr "E730: List String ʹ" - -#: ../eval.c:1830 -msgid "E687: Less targets than List items" -msgstr "E687: Ŀ List " - -#: ../eval.c:1834 -msgid "E688: More targets than List items" -msgstr "E688: Ŀ List " - -#: ../eval.c:1906 -msgid "Double ; in list of variables" -msgstr "бг ;" - -#: ../eval.c:2078 -#, c-format -msgid "E738: Can't list variables for %s" -msgstr "E738: г %s ı" - -#: ../eval.c:2391 -msgid "E689: Can only index a List or Dictionary" -msgstr "E689: ֻ List Dictionary" - -#: ../eval.c:2396 -msgid "E708: [:] must come last" -msgstr "E708: [:] " - -#: ../eval.c:2439 -msgid "E709: [:] requires a List value" -msgstr "E709: [:] Ҫһ List ֵ" - -#: ../eval.c:2674 -msgid "E710: List value has more items than target" -msgstr "E710: List ֵĿ" - -#: ../eval.c:2678 -msgid "E711: List value has not enough items" -msgstr "E711: List ֵû㹻" - -#: ../eval.c:2867 -msgid "E690: Missing \"in\" after :for" -msgstr "E690: :for ȱ \"in\"" - -#: ../eval.c:3063 -#, c-format -msgid "E107: Missing parentheses: %s" -msgstr "E107: ȱ: %s" - -#: ../eval.c:3263 -#, c-format -msgid "E108: No such variable: \"%s\"" -msgstr "E108: ˱: \"%s\"" - -#: ../eval.c:3333 -msgid "E743: variable nested too deep for (un)lock" -msgstr "E743: (un)lock ıǶ" - -#: ../eval.c:3630 -msgid "E109: Missing ':' after '?'" -msgstr "E109: '?' ȱ ':'" - -#: ../eval.c:3893 -msgid "E691: Can only compare List with List" -msgstr "E691: ֻܱȽ List List" - -#: ../eval.c:3895 -msgid "E692: Invalid operation for Lists" -msgstr "E692: List ЧIJ" - -#: ../eval.c:3915 -msgid "E735: Can only compare Dictionary with Dictionary" -msgstr "E735: ֻܱȽ Dictionary Dictionary" - -#: ../eval.c:3917 -msgid "E736: Invalid operation for Dictionary" -msgstr "E736: Dictionary ЧIJ" - -#: ../eval.c:3932 -msgid "E693: Can only compare Funcref with Funcref" -msgstr "E693: ֻܱȽ Funcref Funcref" - -#: ../eval.c:3934 -msgid "E694: Invalid operation for Funcrefs" -msgstr "E694: Funcrefs ЧIJ" - -#: ../eval.c:4277 -#, fuzzy -msgid "E804: Cannot use '%' with Float" -msgstr "E719: ܶ Dictionary ʹ [:]" - -#: ../eval.c:4478 -msgid "E110: Missing ')'" -msgstr "E110: ȱ ')'" - -#: ../eval.c:4609 -msgid "E695: Cannot index a Funcref" -msgstr "E695: һ Funcref" - -#: ../eval.c:4839 -#, c-format -msgid "E112: Option name missing: %s" -msgstr "E112: ȱѡ: %s" - -#: ../eval.c:4855 -#, c-format -msgid "E113: Unknown option: %s" -msgstr "E113: δ֪ѡ: %s" - -#: ../eval.c:4904 -#, c-format -msgid "E114: Missing quote: %s" -msgstr "E114: ȱ: %s" - -#: ../eval.c:5020 -#, c-format -msgid "E115: Missing quote: %s" -msgstr "E115: ȱ: %s" - -#: ../eval.c:5084 -#, c-format -msgid "E696: Missing comma in List: %s" -msgstr "E696: List ȱٶ: %s" - -#: ../eval.c:5091 -#, c-format -msgid "E697: Missing end of List ']': %s" -msgstr "E697: List ȱٽ ']': %s" - -#: ../eval.c:6475 -#, c-format -msgid "E720: Missing colon in Dictionary: %s" -msgstr "E720: Dictionary ȱð: %s" - -#: ../eval.c:6499 -#, c-format -msgid "E721: Duplicate key in Dictionary: \"%s\"" -msgstr "E721: Dictionary гظļ: \"%s\"" - -#: ../eval.c:6517 -#, c-format -msgid "E722: Missing comma in Dictionary: %s" -msgstr "E722: Dictionary ȱٶ: %s" - -#: ../eval.c:6524 -#, c-format -msgid "E723: Missing end of Dictionary '}': %s" -msgstr "E723: Dictionary ȱٽ '}': %s" - -#: ../eval.c:6555 -msgid "E724: variable nested too deep for displaying" -msgstr "E724: Ƕʾ" - -#: ../eval.c:7188 -#, fuzzy, c-format -msgid "E740: Too many arguments for function %s" -msgstr "E118: IJ: %s" - -#: ../eval.c:7190 -#, fuzzy, c-format -msgid "E116: Invalid arguments for function %s" -msgstr "E118: IJ: %s" - -#: ../eval.c:7377 -#, fuzzy, c-format -msgid "E117: Unknown function: %s" -msgstr "E130: δ֪ĺ: %s" - -#: ../eval.c:7383 -#, c-format -msgid "E119: Not enough arguments for function: %s" -msgstr "E119: %s IJ̫" - -#: ../eval.c:7387 -#, c-format -msgid "E120: Using <SID> not in a script context: %s" -msgstr "E120: <SID> script ʹ: %s" - -#: ../eval.c:7391 -#, fuzzy, c-format -msgid "E725: Calling dict function without Dictionary: %s" -msgstr "E720: Dictionary ȱð: %s" - -#: ../eval.c:7453 -#, fuzzy -msgid "E808: Number or Float required" -msgstr "E521: = Ҫ" - -#: ../eval.c:7503 -#, fuzzy -msgid "add() argument" -msgstr "-c " - -#: ../eval.c:7907 -msgid "E699: Too many arguments" -msgstr "E699: " - -#: ../eval.c:8073 -msgid "E785: complete() can only be used in Insert mode" -msgstr "E785: complete() ֻڲģʽʹ" - -#: ../eval.c:8156 -msgid "&Ok" -msgstr "ȷ(&O)" - -#: ../eval.c:8676 -#, c-format -msgid "E737: Key already exists: %s" -msgstr "E737: Ѵ: %s" - -#: ../eval.c:8692 -#, fuzzy -msgid "extend() argument" -msgstr "--cmd " - -#: ../eval.c:8915 -#, fuzzy -msgid "map() argument" -msgstr "-c " - -#: ../eval.c:8916 -#, fuzzy -msgid "filter() argument" -msgstr "-c " - -#: ../eval.c:9229 -#, c-format -msgid "+-%s%3ld lines: " -msgstr "+-%s%3ld : " - -#: ../eval.c:9291 -#, c-format -msgid "E700: Unknown function: %s" -msgstr "E700: δ֪ĺ: %s" - -#: ../eval.c:10729 -msgid "called inputrestore() more often than inputsave()" -msgstr "inputrestore() ĵô inputsave()" - -#: ../eval.c:10771 -#, fuzzy -msgid "insert() argument" -msgstr "-c " - -#: ../eval.c:10841 -msgid "E786: Range not allowed" -msgstr "E786: ķΧ" - -#: ../eval.c:11140 -msgid "E701: Invalid type for len()" -msgstr "E701: len() Ч" - -#: ../eval.c:11980 -msgid "E726: Stride is zero" -msgstr "E726: Ϊ" - -#: ../eval.c:11982 -msgid "E727: Start past end" -msgstr "E727: ʼֵֵֹ" - -#: ../eval.c:12024 ../eval.c:15297 -msgid "<empty>" -msgstr "<>" - -#: ../eval.c:12282 -#, fuzzy -msgid "remove() argument" -msgstr "--cmd " - -#: ../eval.c:12466 -msgid "E655: Too many symbolic links (cycle?)" -msgstr "E655: ӹ(ѭ)" - -#: ../eval.c:12593 -#, fuzzy -msgid "reverse() argument" -msgstr "-c " - -#: ../eval.c:13721 -#, fuzzy -msgid "sort() argument" -msgstr "-c " - -#: ../eval.c:13721 -#, fuzzy -msgid "uniq() argument" -msgstr "-c " - -#: ../eval.c:13776 -msgid "E702: Sort compare function failed" -msgstr "E702: Sort ȽϺʧ" - -#: ../eval.c:13806 -#, fuzzy -msgid "E882: Uniq compare function failed" -msgstr "E702: Sort ȽϺʧ" - -#: ../eval.c:14085 -msgid "(Invalid)" -msgstr "(Ч)" - -#: ../eval.c:14590 -msgid "E677: Error writing temp file" -msgstr "E677: дʱļ" - -#: ../eval.c:16159 -#, fuzzy -msgid "E805: Using a Float as a Number" -msgstr "E745: List ʹ" - -#: ../eval.c:16162 -msgid "E703: Using a Funcref as a Number" -msgstr "E703: Funcref ʹ" - -#: ../eval.c:16170 -msgid "E745: Using a List as a Number" -msgstr "E745: List ʹ" - -#: ../eval.c:16173 -msgid "E728: Using a Dictionary as a Number" -msgstr "E728: Dictionary ʹ" - -#: ../eval.c:16259 -msgid "E729: using Funcref as a String" -msgstr "E729: Funcref String ʹ" - -#: ../eval.c:16262 -msgid "E730: using List as a String" -msgstr "E730: List String ʹ" - -#: ../eval.c:16265 -msgid "E731: using Dictionary as a String" -msgstr "E731: Dictionary String ʹ" - -#: ../eval.c:16619 -#, c-format -msgid "E706: Variable type mismatch for: %s" -msgstr "E706: Ͳƥ: %s" - -#: ../eval.c:16705 -#, fuzzy, c-format -msgid "E795: Cannot delete variable %s" -msgstr "E738: г %s ı" - -#: ../eval.c:16724 -#, c-format -msgid "E704: Funcref variable name must start with a capital: %s" -msgstr "E704: Funcref Դдĸͷ: %s" - -#: ../eval.c:16732 -#, c-format -msgid "E705: Variable name conflicts with existing function: %s" -msgstr "E705: кͻ: %s" - -#: ../eval.c:16763 -#, c-format -msgid "E741: Value is locked: %s" -msgstr "E741: ֵ: %s" - -#: ../eval.c:16764 ../eval.c:16769 ../message.c:1839 -msgid "Unknown" -msgstr "δ֪" - -#: ../eval.c:16768 -#, c-format -msgid "E742: Cannot change value of %s" -msgstr "E742: ı %s ֵ" - -#: ../eval.c:16838 -msgid "E698: variable nested too deep for making a copy" -msgstr "E698: Ƕ" - -#: ../eval.c:17249 -#, c-format -msgid "E123: Undefined function: %s" -msgstr "E123: %s δ" - -#: ../eval.c:17260 -#, c-format -msgid "E124: Missing '(': %s" -msgstr "E124: ȱ '(': %s" - -#: ../eval.c:17293 -#, fuzzy -msgid "E862: Cannot use g: here" -msgstr "E284: 趨 IC ֵ" - -#: ../eval.c:17312 -#, c-format -msgid "E125: Illegal argument: %s" -msgstr "E125: ЧIJ: %s" - -#: ../eval.c:17323 -#, fuzzy, c-format -msgid "E853: Duplicate argument name: %s" -msgstr "E125: ЧIJ: %s" - -#: ../eval.c:17416 -msgid "E126: Missing :endfunction" -msgstr "E126: ȱ :endfunction" - -#: ../eval.c:17537 -#, fuzzy, c-format -msgid "E707: Function name conflicts with variable: %s" -msgstr "E746: űļƥ: %s" - -#: ../eval.c:17549 -#, c-format -msgid "E127: Cannot redefine function %s: It is in use" -msgstr "E127: %s ʹУ¶" - -#: ../eval.c:17604 -#, c-format -msgid "E746: Function name does not match script file name: %s" -msgstr "E746: űļƥ: %s" - -#: ../eval.c:17716 -msgid "E129: Function name required" -msgstr "E129: Ҫ" - -#: ../eval.c:17824 -#, fuzzy, c-format -msgid "E128: Function name must start with a capital or \"s:\": %s" -msgstr "E128: Դдĸͷ߰ð: %s" - -#: ../eval.c:17833 -#, fuzzy, c-format -msgid "E884: Function name cannot contain a colon: %s" -msgstr "E128: Դдĸͷ߰ð: %s" - -#: ../eval.c:18336 -#, c-format -msgid "E131: Cannot delete function %s: It is in use" -msgstr "E131: ɾ %s: ʹ" - -#: ../eval.c:18441 -msgid "E132: Function call depth is higher than 'maxfuncdepth'" -msgstr "E132: ȳ 'maxfuncdepth'" - -#: ../eval.c:18568 -#, c-format -msgid "calling %s" -msgstr " %s" - -#: ../eval.c:18651 -#, c-format -msgid "%s aborted" -msgstr "%s ֹ" - -#: ../eval.c:18653 -#, c-format -msgid "%s returning #%<PRId64>" -msgstr "%s #%<PRId64> " - -#: ../eval.c:18670 -#, c-format -msgid "%s returning %s" -msgstr "%s %s" - -#: ../eval.c:18691 ../ex_cmds2.c:2695 -#, c-format -msgid "continuing in %s" -msgstr " %s м" - -#: ../eval.c:18795 -msgid "E133: :return not inside a function" -msgstr "E133: :return ں" - -#: ../eval.c:19159 -msgid "" -"\n" -"# global variables:\n" -msgstr "" -"\n" -"# ȫֱ:\n" - -#: ../eval.c:19254 -msgid "" -"\n" -"\tLast set from " -msgstr "" -"\n" -"\t " - -#: ../eval.c:19272 -#, fuzzy -msgid "No old files" -msgstr "ûаļ" - -#: ../ex_cmds.c:122 -#, c-format -msgid "<%s>%s%s %d, Hex %02x, Octal %03o" -msgstr "<%s>%s%s %d, ʮ %02x, ˽ %03o" - -#: ../ex_cmds.c:145 -#, c-format -msgid "> %d, Hex %04x, Octal %o" -msgstr "> %d, ʮ %04x, ˽ %o" - -#: ../ex_cmds.c:146 -#, c-format -msgid "> %d, Hex %08x, Octal %o" -msgstr "> %d, ʮ %08x, ˽ %o" - -#: ../ex_cmds.c:684 -msgid "E134: Move lines into themselves" -msgstr "E134: ƶ" - -#: ../ex_cmds.c:747 -msgid "1 line moved" -msgstr "ƶ 1 " - -#: ../ex_cmds.c:749 -#, c-format -msgid "%<PRId64> lines moved" -msgstr "ƶ %<PRId64> " - -#: ../ex_cmds.c:1175 -#, c-format -msgid "%<PRId64> lines filtered" -msgstr " %<PRId64> " - -#: ../ex_cmds.c:1194 -msgid "E135: *Filter* Autocommands must not change current buffer" -msgstr "E135: *Filter* ԶԸı䵱ǰ" - -#: ../ex_cmds.c:1244 -msgid "[No write since last change]\n" -msgstr "[ĵδ]\n" - -# bad to translate -#: ../ex_cmds.c:1424 -#, c-format -msgid "%sviminfo: %s in line: " -msgstr "%sviminfo: %s λ: " - -#: ../ex_cmds.c:1431 -msgid "E136: viminfo: Too many errors, skipping rest of file" -msgstr "E136: viminfo: ࣬ļʣಿ" - -#: ../ex_cmds.c:1458 -#, c-format -msgid "Reading viminfo file \"%s\"%s%s%s" -msgstr "ȡ viminfo ļ \"%s\"%s%s%s" - -#: ../ex_cmds.c:1460 -msgid " info" -msgstr " Ϣ" - -#: ../ex_cmds.c:1461 -msgid " marks" -msgstr " " - -#: ../ex_cmds.c:1462 -#, fuzzy -msgid " oldfiles" -msgstr "ûаļ" - -#: ../ex_cmds.c:1463 -msgid " FAILED" -msgstr " ʧ" - -#. avoid a wait_return for this message, it's annoying -#: ../ex_cmds.c:1541 -#, c-format -msgid "E137: Viminfo file is not writable: %s" -msgstr "E137: Viminfo ļд: %s" - -#: ../ex_cmds.c:1626 -#, c-format -msgid "E138: Can't write viminfo file %s!" -msgstr "E138: д viminfo ļ %s" - -#: ../ex_cmds.c:1635 -#, c-format -msgid "Writing viminfo file \"%s\"" -msgstr "д viminfo ļ \"%s\"" - -# do not translate to avoid writing Chinese in files -#. Write the info: -#: ../ex_cmds.c:1720 -#, fuzzy, c-format -msgid "# This viminfo file was generated by Vim %s.\n" -msgstr "# viminfo ļ Vim %s ɵġ\n" - -# do not translate to avoid writing Chinese in files -#: ../ex_cmds.c:1722 -#, fuzzy -msgid "" -"# You may edit it if you're careful!\n" -"\n" -msgstr "" -"# ҪرСģ\n" -"\n" - -# do not translate to avoid writing Chinese in files -#: ../ex_cmds.c:1723 -#, fuzzy -msgid "# Value of 'encoding' when this file was written\n" -msgstr "# 'encoding' ڴļʱֵ\n" - -#: ../ex_cmds.c:1800 -msgid "Illegal starting char" -msgstr "Чַ" - -#: ../ex_cmds.c:2162 -msgid "Write partial file?" -msgstr "Ҫд벿ļ" - -#: ../ex_cmds.c:2166 -msgid "E140: Use ! to write partial buffer" -msgstr "E140: ʹ ! д벿ֻ" - -#: ../ex_cmds.c:2281 -#, c-format -msgid "Overwrite existing file \"%s\"?" -msgstr "Ѵڵļ \"%s\" " - -#: ../ex_cmds.c:2317 -#, c-format -msgid "Swap file \"%s\" exists, overwrite anyway?" -msgstr "ļ \"%s\" ѴڣȷʵҪ" - -#: ../ex_cmds.c:2326 -#, c-format -msgid "E768: Swap file exists: %s (:silent! overrides)" -msgstr "E768: ļѴ: %s (:silent! ǿִ)" - -#: ../ex_cmds.c:2381 -#, c-format -msgid "E141: No file name for buffer %<PRId64>" -msgstr "E141: %<PRId64> ûļ" - -#: ../ex_cmds.c:2412 -msgid "E142: File not written: Writing is disabled by 'write' option" -msgstr "E142: ļδд: д뱻 'write' ѡ" - -#: ../ex_cmds.c:2434 -#, c-format -msgid "" -"'readonly' option is set for \"%s\".\n" -"Do you wish to write anyway?" -msgstr "" -"\"%s\" 趨 'readonly' ѡ\n" -"ȷʵҪ" - -#: ../ex_cmds.c:2439 -#, c-format -msgid "" -"File permissions of \"%s\" are read-only.\n" -"It may still be possible to write it.\n" -"Do you wish to try?" -msgstr "" - -#: ../ex_cmds.c:2451 -#, fuzzy, c-format -msgid "E505: \"%s\" is read-only (add ! to override)" -msgstr "ֻ ( ! ǿִ)" - -#: ../ex_cmds.c:3120 -#, c-format -msgid "E143: Autocommands unexpectedly deleted new buffer %s" -msgstr "E143: Զɾ» %s" - -#: ../ex_cmds.c:3313 -msgid "E144: non-numeric argument to :z" -msgstr "E144: :z ֵܷIJ" - -#: ../ex_cmds.c:3404 -msgid "E145: Shell commands not allowed in rvim" -msgstr "E145: rvim нֹʹ shell " - -#: ../ex_cmds.c:3498 -msgid "E146: Regular expressions can't be delimited by letters" -msgstr "E146: ʽĸֽ" - -#: ../ex_cmds.c:3964 -#, c-format -msgid "replace with %s (y/n/a/q/l/^E/^Y)?" -msgstr "滻Ϊ %s (y/n/a/q/l/^E/^Y)" - -#: ../ex_cmds.c:4379 -msgid "(Interrupted) " -msgstr "(ж) " - -#: ../ex_cmds.c:4384 -msgid "1 match" -msgstr "1 ƥ䣬" - -#: ../ex_cmds.c:4384 -msgid "1 substitution" -msgstr "1 滻" - -#: ../ex_cmds.c:4387 -#, c-format -msgid "%<PRId64> matches" -msgstr "%<PRId64> ƥ䣬" - -#: ../ex_cmds.c:4388 -#, c-format -msgid "%<PRId64> substitutions" -msgstr "%<PRId64> 滻" - -#: ../ex_cmds.c:4392 -msgid " on 1 line" -msgstr " 1 " - -#: ../ex_cmds.c:4395 -#, c-format -msgid " on %<PRId64> lines" -msgstr " %<PRId64> " - -#: ../ex_cmds.c:4438 -msgid "E147: Cannot do :global recursive" -msgstr "E147: :global ܵݹִ" - -#: ../ex_cmds.c:4467 -msgid "E148: Regular expression missing from global" -msgstr "E148: global ȱʽ" - -#: ../ex_cmds.c:4508 -#, c-format -msgid "Pattern found in every line: %s" -msgstr "ÿжƥʽ: %s" - -#: ../ex_cmds.c:4510 -#, fuzzy, c-format -msgid "Pattern not found: %s" -msgstr "Ҳģʽ" - -# do not translate to avoid writing Chinese in files -#: ../ex_cmds.c:4587 -#, fuzzy -msgid "" -"\n" -"# Last Substitute String:\n" -"$" -msgstr "" -"\n" -"# 滻ַ:\n" -"$" - -#: ../ex_cmds.c:4679 -msgid "E478: Don't panic!" -msgstr "E478: Ҫţ" - -#: ../ex_cmds.c:4717 -#, c-format -msgid "E661: Sorry, no '%s' help for %s" -msgstr "E661: Ǹû '%s' %s ˵" - -#: ../ex_cmds.c:4719 -#, c-format -msgid "E149: Sorry, no help for %s" -msgstr "E149: Ǹû %s ˵" - -#: ../ex_cmds.c:4751 -#, c-format -msgid "Sorry, help file \"%s\" not found" -msgstr "ǸҲļ \"%s\"" - -#: ../ex_cmds.c:5323 -#, c-format -msgid "E150: Not a directory: %s" -msgstr "E150: Ŀ¼: %s" - -#: ../ex_cmds.c:5446 -#, c-format -msgid "E152: Cannot open %s for writing" -msgstr "E152: д %s" - -#: ../ex_cmds.c:5471 -#, c-format -msgid "E153: Unable to open %s for reading" -msgstr "E153: ȡ %s" - -#: ../ex_cmds.c:5500 -#, c-format -msgid "E670: Mix of help file encodings within a language: %s" -msgstr "E670: һл˶ְļ: %s" - -#: ../ex_cmds.c:5565 -#, c-format -msgid "E154: Duplicate tag \"%s\" in file %s/%s" -msgstr "E154: Tag \"%s\" ļ %s/%s ظ" - -#: ../ex_cmds.c:5687 -#, c-format -msgid "E160: Unknown sign command: %s" -msgstr "E160: δ֪ sign : %s" - -#: ../ex_cmds.c:5704 -msgid "E156: Missing sign name" -msgstr "E156: ȱ sign " - -#: ../ex_cmds.c:5746 -msgid "E612: Too many signs defined" -msgstr "E612: Signs " - -#: ../ex_cmds.c:5813 -#, c-format -msgid "E239: Invalid sign text: %s" -msgstr "E239: Ч sign : %s" - -#: ../ex_cmds.c:5844 ../ex_cmds.c:6035 -#, c-format -msgid "E155: Unknown sign: %s" -msgstr "E155: δ֪ sign: %s" - -#: ../ex_cmds.c:5877 -msgid "E159: Missing sign number" -msgstr "E159: ȱ sign " - -#: ../ex_cmds.c:5971 -#, c-format -msgid "E158: Invalid buffer name: %s" -msgstr "E158: ЧĻ: %s" - -#: ../ex_cmds.c:6008 -#, c-format -msgid "E157: Invalid sign ID: %<PRId64>" -msgstr "E157: Ч sign ID: %<PRId64>" - -#: ../ex_cmds.c:6066 -msgid " (not supported)" -msgstr " (֧)" - -#: ../ex_cmds.c:6169 -msgid "[Deleted]" -msgstr "[ɾ]" - -#: ../ex_cmds2.c:139 -msgid "Entering Debug mode. Type \"cont\" to continue." -msgstr "ģʽ \"cont\" С" - -#: ../ex_cmds2.c:143 ../ex_docmd.c:759 -#, c-format -msgid "line %<PRId64>: %s" -msgstr " %<PRId64> : %s" - -#: ../ex_cmds2.c:145 -#, c-format -msgid "cmd: %s" -msgstr ": %s" - -#: ../ex_cmds2.c:322 -#, c-format -msgid "Breakpoint in \"%s%s\" line %<PRId64>" -msgstr "ϵ \"%s%s\" %<PRId64> " - -#: ../ex_cmds2.c:581 -#, c-format -msgid "E161: Breakpoint not found: %s" -msgstr "E161: Ҳϵ: %s" - -#: ../ex_cmds2.c:611 -msgid "No breakpoints defined" -msgstr "ûжϵ" - -#: ../ex_cmds2.c:617 -#, c-format -msgid "%3d %s %s line %<PRId64>" -msgstr "%3d %s %s %<PRId64> " - -#: ../ex_cmds2.c:942 -#, fuzzy -msgid "E750: First use \":profile start {fname}\"" -msgstr "E750: ʹ :profile start <fname>" - -#: ../ex_cmds2.c:1269 -#, c-format -msgid "Save changes to \"%s\"?" -msgstr "ı䱣浽 \"%s\" " - -#: ../ex_cmds2.c:1271 ../ex_docmd.c:8851 -msgid "Untitled" -msgstr "δ" - -#: ../ex_cmds2.c:1421 -#, c-format -msgid "E162: No write since last change for buffer \"%s\"" -msgstr "E162: \"%s\" ĵδ" - -#: ../ex_cmds2.c:1480 -msgid "Warning: Entered other buffer unexpectedly (check autocommands)" -msgstr ": ؽ (Զ)" - -#: ../ex_cmds2.c:1826 -msgid "E163: There is only one file to edit" -msgstr "E163: ֻһļɱ༭" - -#: ../ex_cmds2.c:1828 -msgid "E164: Cannot go before first file" -msgstr "E164: лǵһļ" - -#: ../ex_cmds2.c:1830 -msgid "E165: Cannot go beyond last file" -msgstr "E165: лһļ" - -#: ../ex_cmds2.c:2175 -#, c-format -msgid "E666: compiler not supported: %s" -msgstr "E666: ֱ֧: %s" - -#: ../ex_cmds2.c:2257 -#, c-format -msgid "Searching for \"%s\" in \"%s\"" -msgstr "ڲ \"%s\" \"%s\" " - -#: ../ex_cmds2.c:2284 -#, c-format -msgid "Searching for \"%s\"" -msgstr "ڲ \"%s\"" - -#: ../ex_cmds2.c:2307 -#, c-format -msgid "not found in 'runtimepath': \"%s\"" -msgstr " 'runtimepath' Ҳ \"%s\"" - -#: ../ex_cmds2.c:2472 -#, c-format -msgid "Cannot source a directory: \"%s\"" -msgstr "ִĿ¼: \"%s\"" - -#: ../ex_cmds2.c:2518 -#, c-format -msgid "could not source \"%s\"" -msgstr "ִ \"%s\"" - -#: ../ex_cmds2.c:2520 -#, c-format -msgid "line %<PRId64>: could not source \"%s\"" -msgstr " %<PRId64> : ִ \"%s\"" - -#: ../ex_cmds2.c:2535 -#, c-format -msgid "sourcing \"%s\"" -msgstr "ִ \"%s\"" - -#: ../ex_cmds2.c:2537 -#, c-format -msgid "line %<PRId64>: sourcing \"%s\"" -msgstr " %<PRId64> : ִ \"%s\"" - -#: ../ex_cmds2.c:2693 -#, c-format -msgid "finished sourcing %s" -msgstr "ִ %s" - -#: ../ex_cmds2.c:2765 -msgid "modeline" -msgstr "modeline" - -#: ../ex_cmds2.c:2767 -msgid "--cmd argument" -msgstr "--cmd " - -#: ../ex_cmds2.c:2769 -msgid "-c argument" -msgstr "-c " - -#: ../ex_cmds2.c:2771 -msgid "environment variable" -msgstr "" - -#: ../ex_cmds2.c:2773 -msgid "error handler" -msgstr "" - -#: ../ex_cmds2.c:3020 -msgid "W15: Warning: Wrong line separator, ^M may be missing" -msgstr "W15: : зָ ^M" - -#: ../ex_cmds2.c:3139 -msgid "E167: :scriptencoding used outside of a sourced file" -msgstr "E167: ڽűļʹ :scriptencoding" - -#: ../ex_cmds2.c:3166 -msgid "E168: :finish used outside of a sourced file" -msgstr "E168: ڽűļʹ :finish" - -#: ../ex_cmds2.c:3389 -#, c-format -msgid "Current %slanguage: \"%s\"" -msgstr "ǰ %s: \"%s\"" - -#: ../ex_cmds2.c:3404 -#, c-format -msgid "E197: Cannot set language to \"%s\"" -msgstr "E197: 趨Ϊ \"%s\"" - -#. don't redisplay the window -#. don't wait for return -#: ../ex_docmd.c:387 -msgid "Entering Ex mode. Type \"visual\" to go to Normal mode." -msgstr " Ex ģʽ \"visual\" صģʽ" - -#: ../ex_docmd.c:428 -msgid "E501: At end-of-file" -msgstr "E501: ѵļĩβ" - -#: ../ex_docmd.c:513 -msgid "E169: Command too recursive" -msgstr "E169: ݹ" - -#: ../ex_docmd.c:1006 -#, c-format -msgid "E605: Exception not caught: %s" -msgstr "E605: 쳣ûб: %s" - -#: ../ex_docmd.c:1085 -msgid "End of sourced file" -msgstr "űļ" - -#: ../ex_docmd.c:1086 -msgid "End of function" -msgstr "" - -#: ../ex_docmd.c:1628 -msgid "E464: Ambiguous use of user-defined command" -msgstr "E464: ȷûԶ" - -#: ../ex_docmd.c:1638 -msgid "E492: Not an editor command" -msgstr "E492: DZ༭" - -#: ../ex_docmd.c:1729 -msgid "E493: Backwards range given" -msgstr "E493: ʹķΧ" - -#: ../ex_docmd.c:1733 -msgid "Backwards range given, OK to swap" -msgstr "ʹķΧȷ" - -#. append -#. typed wrong -#: ../ex_docmd.c:1787 -msgid "E494: Use w or w>>" -msgstr "E494: ʹ w w>>" - -#: ../ex_docmd.c:3454 -msgid "E319: The command is not available in this version" -msgstr "E319: Ǹڴ˰汾в" - -#: ../ex_docmd.c:3752 -msgid "E172: Only one file name allowed" -msgstr "E172: ֻһļ" - -#: ../ex_docmd.c:4238 -msgid "1 more file to edit. Quit anyway?" -msgstr " 1 ļδ༭ȷʵҪ˳" - -#: ../ex_docmd.c:4242 -#, c-format -msgid "%d more files to edit. Quit anyway?" -msgstr " %d ļδ༭ȷʵҪ˳" - -#: ../ex_docmd.c:4248 -msgid "E173: 1 more file to edit" -msgstr "E173: 1 ļδ༭" - -#: ../ex_docmd.c:4250 -#, c-format -msgid "E173: %<PRId64> more files to edit" -msgstr "E173: %<PRId64> ļδ༭" - -#: ../ex_docmd.c:4320 -msgid "E174: Command already exists: add ! to replace it" -msgstr "E174: Ѵ: ! ǿ滻" - -#: ../ex_docmd.c:4432 -msgid "" -"\n" -" Name Args Range Complete Definition" -msgstr "" -"\n" -" Χ ȫ " - -#: ../ex_docmd.c:4516 -msgid "No user-defined commands found" -msgstr "ҲûԶ" - -#: ../ex_docmd.c:4538 -msgid "E175: No attribute specified" -msgstr "E175: ûָ" - -#: ../ex_docmd.c:4583 -msgid "E176: Invalid number of arguments" -msgstr "E176: ЧIJ" - -#: ../ex_docmd.c:4594 -msgid "E177: Count cannot be specified twice" -msgstr "E177: ָμ" - -#: ../ex_docmd.c:4603 -msgid "E178: Invalid default value for count" -msgstr "E178: ЧļĬֵ" - -#: ../ex_docmd.c:4625 -msgid "E179: argument required for -complete" -msgstr "E179: -complete Ҫ" - -#: ../ex_docmd.c:4635 -#, c-format -msgid "E181: Invalid attribute: %s" -msgstr "E181: Ч: %s" - -#: ../ex_docmd.c:4678 -msgid "E182: Invalid command name" -msgstr "E182: Ч" - -#: ../ex_docmd.c:4691 -msgid "E183: User defined commands must start with an uppercase letter" -msgstr "E183: ûԶԴдĸͷ" - -#: ../ex_docmd.c:4696 -#, fuzzy -msgid "E841: Reserved name, cannot be used for user defined command" -msgstr "E464: ȷûԶ" - -#: ../ex_docmd.c:4751 -#, c-format -msgid "E184: No such user-defined command: %s" -msgstr "E184: ûûԶ: %s" - -#: ../ex_docmd.c:5219 -#, c-format -msgid "E180: Invalid complete value: %s" -msgstr "E180: ЧIJȫ: %s" - -#: ../ex_docmd.c:5225 -msgid "E468: Completion argument only allowed for custom completion" -msgstr "E468: ֻ custom ȫ" - -#: ../ex_docmd.c:5231 -msgid "E467: Custom completion requires a function argument" -msgstr "E467: Custom ȫҪһ" - -#: ../ex_docmd.c:5257 -#, fuzzy, c-format -msgid "E185: Cannot find color scheme '%s'" -msgstr "E185: Ҳɫ %s" - -#: ../ex_docmd.c:5263 -msgid "Greetings, Vim user!" -msgstr "ãVim û" - -#: ../ex_docmd.c:5431 -msgid "E784: Cannot close last tab page" -msgstr "E784: ܹرһ tab ҳ" - -#: ../ex_docmd.c:5462 -msgid "Already only one tab page" -msgstr "Ѿֻʣһ tab ҳ" - -#: ../ex_docmd.c:6004 -#, c-format -msgid "Tab page %d" -msgstr "Tab ҳ %d" - -#: ../ex_docmd.c:6295 -msgid "No swap file" -msgstr "ļ" - -#: ../ex_docmd.c:6478 -msgid "E747: Cannot change directory, buffer is modified (add ! to override)" -msgstr "E747: ܸıĿ¼ ( ! ǿִ)" - -#: ../ex_docmd.c:6485 -msgid "E186: No previous directory" -msgstr "E186: ǰһĿ¼" - -#: ../ex_docmd.c:6530 -msgid "E187: Unknown" -msgstr "E187: δ֪" - -#: ../ex_docmd.c:6610 -msgid "E465: :winsize requires two number arguments" -msgstr "E465: :winsize Ҫֲ" - -#: ../ex_docmd.c:6655 -msgid "E188: Obtaining window position not implemented for this platform" -msgstr "E188: ڴƽ̨ϲܻôλ" - -#: ../ex_docmd.c:6662 -msgid "E466: :winpos requires two number arguments" -msgstr "E466: :winpos Ҫֲ" - -#: ../ex_docmd.c:7241 -#, c-format -msgid "E739: Cannot create directory: %s" -msgstr "E739: Ŀ¼: %s" - -#: ../ex_docmd.c:7268 -#, c-format -msgid "E189: \"%s\" exists (add ! to override)" -msgstr "E189: \"%s\" Ѵ ( ! ǿִ)" - -#: ../ex_docmd.c:7273 -#, c-format -msgid "E190: Cannot open \"%s\" for writing" -msgstr "E190: д \"%s\"" - -#. set mark -#: ../ex_docmd.c:7294 -msgid "E191: Argument must be a letter or forward/backward quote" -msgstr "E191: һĸ/" - -#: ../ex_docmd.c:7333 -msgid "E192: Recursive use of :normal too deep" -msgstr "E192: :normal ݹ" - -#: ../ex_docmd.c:7807 -msgid "E194: No alternate file name to substitute for '#'" -msgstr "E194: û滻 '#' Ľļ" - -#: ../ex_docmd.c:7841 -msgid "E495: no autocommand file name to substitute for \"<afile>\"" -msgstr "E495: û滻 \"<afile>\" Զļ" - -#: ../ex_docmd.c:7850 -msgid "E496: no autocommand buffer number to substitute for \"<abuf>\"" -msgstr "E496: û滻 \"<abuf>\" Զ" - -#: ../ex_docmd.c:7861 -msgid "E497: no autocommand match name to substitute for \"<amatch>\"" -msgstr "E497: û滻 \"<amatch>\" Զƥ" - -#: ../ex_docmd.c:7870 -msgid "E498: no :source file name to substitute for \"<sfile>\"" -msgstr "E498: û滻 \"<sfile>\" :source ļ" - -#: ../ex_docmd.c:7876 -#, fuzzy -msgid "E842: no line number to use for \"<slnum>\"" -msgstr "E498: û滻 \"<sfile>\" :source ļ" - -#: ../ex_docmd.c:7903 -#, fuzzy, c-format -msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" -msgstr "E499: '%' '#' Ϊļֻ \":p:h\"" - -#: ../ex_docmd.c:7905 -msgid "E500: Evaluates to an empty string" -msgstr "E500: Ϊַ" - -#: ../ex_docmd.c:8838 -msgid "E195: Cannot open viminfo file for reading" -msgstr "E195: ȡ viminfo ļ" - -#: ../ex_eval.c:464 -msgid "E608: Cannot :throw exceptions with 'Vim' prefix" -msgstr "E608: :throw ǰΪ 'Vim' 쳣" - -#. always scroll up, don't overwrite -#: ../ex_eval.c:496 -#, c-format -msgid "Exception thrown: %s" -msgstr "׳쳣: %s" - -#: ../ex_eval.c:545 -#, c-format -msgid "Exception finished: %s" -msgstr "쳣: %s" - -#: ../ex_eval.c:546 -#, c-format -msgid "Exception discarded: %s" -msgstr "쳣: %s" - -#: ../ex_eval.c:588 ../ex_eval.c:634 -#, c-format -msgid "%s, line %<PRId64>" -msgstr "%s %<PRId64> " - -#. always scroll up, don't overwrite -#: ../ex_eval.c:608 -#, c-format -msgid "Exception caught: %s" -msgstr "쳣: %s" - -#: ../ex_eval.c:676 -#, c-format -msgid "%s made pending" -msgstr "" - -#: ../ex_eval.c:679 -#, fuzzy, c-format -msgid "%s resumed" -msgstr " ѷ\n" - -#: ../ex_eval.c:683 -#, c-format -msgid "%s discarded" -msgstr "" - -#: ../ex_eval.c:708 -msgid "Exception" -msgstr "쳣" - -#: ../ex_eval.c:713 -msgid "Error and interrupt" -msgstr "ж" - -#: ../ex_eval.c:715 -msgid "Error" -msgstr "" - -#. if (pending & CSTP_INTERRUPT) -#: ../ex_eval.c:717 -msgid "Interrupt" -msgstr "ж" - -#: ../ex_eval.c:795 -msgid "E579: :if nesting too deep" -msgstr "E579: :if Ƕײ" - -#: ../ex_eval.c:830 -msgid "E580: :endif without :if" -msgstr "E580: :endif ȱٶӦ :if" - -#: ../ex_eval.c:873 -msgid "E581: :else without :if" -msgstr "E581: :else ȱٶӦ :if" - -#: ../ex_eval.c:876 -msgid "E582: :elseif without :if" -msgstr "E582: :elseif ȱٶӦ :if" - -#: ../ex_eval.c:880 -msgid "E583: multiple :else" -msgstr "E583: :else" - -#: ../ex_eval.c:883 -msgid "E584: :elseif after :else" -msgstr "E584: :elseif :else " - -#: ../ex_eval.c:941 -msgid "E585: :while/:for nesting too deep" -msgstr "E585: :while/:for Ƕײ" - -#: ../ex_eval.c:1028 -msgid "E586: :continue without :while or :for" -msgstr "E586: :continue ȱٶӦ :while :for" - -#: ../ex_eval.c:1061 -msgid "E587: :break without :while or :for" -msgstr "E587: :break ȱٶӦ :while :for" - -#: ../ex_eval.c:1102 -msgid "E732: Using :endfor with :while" -msgstr "E732: :while :endfor β" - -#: ../ex_eval.c:1104 -msgid "E733: Using :endwhile with :for" -msgstr "E733: :for :endwhile β" - -#: ../ex_eval.c:1247 -msgid "E601: :try nesting too deep" -msgstr "E601: :try Ƕײ" - -#: ../ex_eval.c:1317 -msgid "E603: :catch without :try" -msgstr "E603: :catch ȱٶӦ :try" - -#. Give up for a ":catch" after ":finally" and ignore it. -#. * Just parse. -#: ../ex_eval.c:1332 -msgid "E604: :catch after :finally" -msgstr "E604: :catch :finally " - -#: ../ex_eval.c:1451 -msgid "E606: :finally without :try" -msgstr "E606: :finally ȱٶӦ :try" - -#. Give up for a multiple ":finally" and ignore it. -#: ../ex_eval.c:1467 -msgid "E607: multiple :finally" -msgstr "E607: :finally" - -#: ../ex_eval.c:1571 -msgid "E602: :endtry without :try" -msgstr "E602: :endtry ȱٶӦ :try" - -#: ../ex_eval.c:2026 -msgid "E193: :endfunction not inside a function" -msgstr "E193: :endfunction ں" - -#: ../ex_getln.c:1643 -msgid "E788: Not allowed to edit another buffer now" -msgstr "E788: Ŀǰ༭Ļ" - -#: ../ex_getln.c:1656 -#, fuzzy -msgid "E811: Not allowed to change buffer information now" -msgstr "E788: Ŀǰ༭Ļ" - -#: ../ex_getln.c:3178 -msgid "tagname" -msgstr "tag " - -#: ../ex_getln.c:3181 -msgid " kind file\n" -msgstr " ļ\n" - -#: ../ex_getln.c:4799 -msgid "'history' option is zero" -msgstr "ѡ 'history' Ϊ" - -# do not translate to avoid writing Chinese in files -#: ../ex_getln.c:5046 -#, fuzzy, c-format -msgid "" -"\n" -"# %s History (newest to oldest):\n" -msgstr "" -"\n" -"# %s ʷ¼ (µ):\n" - -# do not translate to avoid writing Chinese in files -#: ../ex_getln.c:5047 -#, fuzzy -msgid "Command Line" -msgstr "" - -# do not translate to avoid writing Chinese in files -#: ../ex_getln.c:5048 -#, fuzzy -msgid "Search String" -msgstr "ַ" - -# do not translate to avoid writing Chinese in files -#: ../ex_getln.c:5049 -#, fuzzy -msgid "Expression" -msgstr "ʽ" - -# do not translate to avoid writing Chinese in files -#: ../ex_getln.c:5050 -#, fuzzy -msgid "Input Line" -msgstr "" - -#: ../ex_getln.c:5117 -msgid "E198: cmd_pchar beyond the command length" -msgstr "E198: cmd_pchar " - -#: ../ex_getln.c:5279 -msgid "E199: Active window or buffer deleted" -msgstr "E199: ڻѱɾ" - -#: ../file_search.c:203 -msgid "E854: path too long for completion" -msgstr "" - -#: ../file_search.c:446 -#, c-format -msgid "" -"E343: Invalid path: '**[number]' must be at the end of the path or be " -"followed by '%s'." -msgstr "E343: Ч·: '**[number]' ·ĩβߺ '%s'" - -#: ../file_search.c:1505 -#, c-format -msgid "E344: Can't find directory \"%s\" in cdpath" -msgstr "E344: cdpath ҲĿ¼ \"%s\"" - -#: ../file_search.c:1508 -#, c-format -msgid "E345: Can't find file \"%s\" in path" -msgstr "E345: ·Ҳļ \"%s\"" - -#: ../file_search.c:1512 -#, c-format -msgid "E346: No more directory \"%s\" found in cdpath" -msgstr "E346: ·Ҳļ \"%s\"" - -#: ../file_search.c:1515 -#, c-format -msgid "E347: No more file \"%s\" found in path" -msgstr "E347: ·Ҳļ \"%s\"" - -#: ../fileio.c:137 -#, fuzzy -msgid "E812: Autocommands changed buffer or buffer name" -msgstr "E135: *Filter* ԶԸı䵱ǰ" - -#: ../fileio.c:368 -msgid "Illegal file name" -msgstr "Чļ" - -#: ../fileio.c:395 ../fileio.c:476 ../fileio.c:2543 ../fileio.c:2578 -msgid "is a directory" -msgstr "Ŀ¼" - -#: ../fileio.c:397 -msgid "is not a file" -msgstr "ļ" - -#: ../fileio.c:508 ../fileio.c:3522 -msgid "[New File]" -msgstr "[ļ]" - -#: ../fileio.c:511 -msgid "[New DIRECTORY]" -msgstr "[Ŀ¼]" - -#: ../fileio.c:529 ../fileio.c:532 -msgid "[File too big]" -msgstr "[ļ]" - -#: ../fileio.c:534 -msgid "[Permission Denied]" -msgstr "[Ȩ]" - -#: ../fileio.c:653 -msgid "E200: *ReadPre autocommands made the file unreadable" -msgstr "E200: *ReadPre Զļɶ" - -#: ../fileio.c:655 -msgid "E201: *ReadPre autocommands must not change current buffer" -msgstr "E201: *ReadPre Զı䵱ǰ" - -#: ../fileio.c:672 -msgid "Nvim: Reading from stdin...\n" -msgstr "Vim: ӱȡ...\n" - -#. Re-opening the original file failed! -#: ../fileio.c:909 -msgid "E202: Conversion made file unreadable!" -msgstr "E202: תļɶ" - -#. fifo or socket -#: ../fileio.c:1782 -msgid "[fifo/socket]" -msgstr "[fifo/socket]" - -#. fifo -#: ../fileio.c:1788 -msgid "[fifo]" -msgstr "[fifo]" - -#. or socket -#: ../fileio.c:1794 -msgid "[socket]" -msgstr "[socket]" - -#. or character special -#: ../fileio.c:1801 -#, fuzzy -msgid "[character special]" -msgstr "1 ַ" - -#: ../fileio.c:1815 -msgid "[CR missing]" -msgstr "[ȱ CR]'" - -#: ../fileio.c:1819 -msgid "[long lines split]" -msgstr "[зָ]" - -#: ../fileio.c:1823 ../fileio.c:3512 -msgid "[NOT converted]" -msgstr "[δת]" - -#: ../fileio.c:1826 ../fileio.c:3515 -msgid "[converted]" -msgstr "[ת]" - -#: ../fileio.c:1831 -#, c-format -msgid "[CONVERSION ERROR in line %<PRId64>]" -msgstr "[ %<PRId64> ת]" - -#: ../fileio.c:1835 -#, c-format -msgid "[ILLEGAL BYTE in line %<PRId64>]" -msgstr "[ %<PRId64> Чַ]" - -#: ../fileio.c:1838 -msgid "[READ ERRORS]" -msgstr "[]" - -#: ../fileio.c:2104 -msgid "Can't find temp file for conversion" -msgstr "Ҳתʱļ" - -#: ../fileio.c:2110 -msgid "Conversion with 'charconvert' failed" -msgstr "'charconvert' תʧ" - -#: ../fileio.c:2113 -msgid "can't read output of 'charconvert'" -msgstr "ȡ 'charconvert' " - -#: ../fileio.c:2437 -msgid "E676: No matching autocommands for acwrite buffer" -msgstr "E676: Ҳ acwrite ӦԶ" - -#: ../fileio.c:2466 -msgid "E203: Autocommands deleted or unloaded buffer to be written" -msgstr "E203: ԶɾͷҪдĻ" - -#: ../fileio.c:2486 -msgid "E204: Autocommand changed number of lines in unexpected way" -msgstr "E204: Զظı" - -#: ../fileio.c:2548 ../fileio.c:2565 -msgid "is not a file or writable device" -msgstr "ļд豸" - -#: ../fileio.c:2601 -msgid "is read-only (add ! to override)" -msgstr "ֻ ( ! ǿִ)" - -#: ../fileio.c:2886 -msgid "E506: Can't write to backup file (add ! to override)" -msgstr "E506: д뱸ļ ( ! ǿִ)" - -#: ../fileio.c:2898 -msgid "E507: Close error for backup file (add ! to override)" -msgstr "E507: رձļ ( ! ǿִ)" - -#: ../fileio.c:2901 -msgid "E508: Can't read file for backup (add ! to override)" -msgstr "E508: ȡļԹ ( ! ǿִ)" - -#: ../fileio.c:2923 -msgid "E509: Cannot create backup file (add ! to override)" -msgstr "E509: ļ ( ! ǿִ)" - -#: ../fileio.c:3008 -msgid "E510: Can't make backup file (add ! to override)" -msgstr "E510: ɱļ ( ! ǿִ)" - -#. Can't write without a tempfile! -#: ../fileio.c:3121 -msgid "E214: Can't find temp file for writing" -msgstr "E214: Ҳдʱļ" - -#: ../fileio.c:3134 -msgid "E213: Cannot convert (add ! to write without conversion)" -msgstr "E213: ת ( ! ǿƲתд)" - -#: ../fileio.c:3169 -msgid "E166: Can't open linked file for writing" -msgstr "E166: дļ" - -#: ../fileio.c:3173 -msgid "E212: Can't open file for writing" -msgstr "E212: дļ" - -#: ../fileio.c:3363 -msgid "E667: Fsync failed" -msgstr "E667: ͬʧ" - -#: ../fileio.c:3398 -msgid "E512: Close failed" -msgstr "E512: رʧ" - -#: ../fileio.c:3436 -msgid "E513: write error, conversion failed (make 'fenc' empty to override)" -msgstr "E513: дתʧ (뽫 'fenc' ÿǿִ)" - -#: ../fileio.c:3441 -#, fuzzy, c-format -msgid "" -"E513: write error, conversion failed in line %<PRId64> (make 'fenc' empty to " -"override)" -msgstr "E513: дתʧ (뽫 'fenc' ÿǿִ)" - -#: ../fileio.c:3448 -msgid "E514: write error (file system full?)" -msgstr "E514: д (ļϵͳ)" - -#: ../fileio.c:3506 -msgid " CONVERSION ERROR" -msgstr " ת" - -#: ../fileio.c:3509 -#, fuzzy, c-format -msgid " in line %<PRId64>;" -msgstr " %<PRId64> " - -#: ../fileio.c:3519 -msgid "[Device]" -msgstr "[豸]" - -#: ../fileio.c:3522 -msgid "[New]" -msgstr "[]" - -#: ../fileio.c:3535 -msgid " [a]" -msgstr " [a]" - -#: ../fileio.c:3535 -msgid " appended" -msgstr " " - -#: ../fileio.c:3537 -msgid " [w]" -msgstr " [w]" - -#: ../fileio.c:3537 -msgid " written" -msgstr " д" - -#: ../fileio.c:3579 -msgid "E205: Patchmode: can't save original file" -msgstr "E205: Patchmode: ԭʼļ" - -#: ../fileio.c:3602 -msgid "E206: patchmode: can't touch empty original file" -msgstr "E206: Patchmode: ɿյԭʼļ" - -#: ../fileio.c:3616 -msgid "E207: Can't delete backup file" -msgstr "E207: ɾļ" - -#: ../fileio.c:3672 -msgid "" -"\n" -"WARNING: Original file may be lost or damaged\n" -msgstr "" -"\n" -": ԭʼļѶʧ\n" - -#: ../fileio.c:3675 -msgid "don't quit the editor until the file is successfully written!" -msgstr "ļȷдǰ˳༭" - -#: ../fileio.c:3795 -msgid "[dos]" -msgstr "[dos]" - -#: ../fileio.c:3795 -msgid "[dos format]" -msgstr "[dos ʽ]" - -#: ../fileio.c:3801 -msgid "[mac]" -msgstr "[mac]" - -#: ../fileio.c:3801 -msgid "[mac format]" -msgstr "[mac ʽ]" - -#: ../fileio.c:3807 -msgid "[unix]" -msgstr "[unix]" - -#: ../fileio.c:3807 -msgid "[unix format]" -msgstr "[unix ʽ]" - -#: ../fileio.c:3831 -msgid "1 line, " -msgstr "1 У" - -#: ../fileio.c:3833 -#, c-format -msgid "%<PRId64> lines, " -msgstr "%<PRId64> У" - -#: ../fileio.c:3836 -msgid "1 character" -msgstr "1 ַ" - -#: ../fileio.c:3838 -#, c-format -msgid "%<PRId64> characters" -msgstr "%<PRId64> ַ" - -#: ../fileio.c:3849 -msgid "[noeol]" -msgstr "[noeol]" - -#: ../fileio.c:3849 -msgid "[Incomplete last line]" -msgstr "[һв]" - -#. don't overwrite messages here -#. must give this prompt -#. don't use emsg() here, don't want to flush the buffers -#: ../fileio.c:3865 -msgid "WARNING: The file has been changed since reading it!!!" -msgstr ": ļԶѷ䶯" - -#: ../fileio.c:3867 -msgid "Do you really want to write to it" -msgstr "ȷʵҪд" - -#: ../fileio.c:4648 -#, c-format -msgid "E208: Error writing to \"%s\"" -msgstr "E208: дļ \"%s\" " - -#: ../fileio.c:4655 -#, c-format -msgid "E209: Error closing \"%s\"" -msgstr "E209: رļ \"%s\" " - -#: ../fileio.c:4657 -#, c-format -msgid "E210: Error reading \"%s\"" -msgstr "E210: ȡļ \"%s\" " - -#: ../fileio.c:4883 -msgid "E246: FileChangedShell autocommand deleted buffer" -msgstr "E246: FileChangedShell Զɾ˻" - -#: ../fileio.c:4894 -#, c-format -msgid "E211: File \"%s\" no longer available" -msgstr "E211: ļ \"%s\" Ѿ" - -#: ../fileio.c:4906 -#, c-format -msgid "" -"W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as " -"well" -msgstr "W12: : ļ \"%s\" ѱ䶯 Vim еĻҲѱ䶯" - -#: ../fileio.c:4907 -msgid "See \":help W12\" for more info." -msgstr "һ˵ \":help W12\"" - -#: ../fileio.c:4910 -#, c-format -msgid "W11: Warning: File \"%s\" has changed since editing started" -msgstr "W11: : ༭ʼļ \"%s\" ѱ䶯" - -#: ../fileio.c:4911 -msgid "See \":help W11\" for more info." -msgstr "һ˵ \":help W11\"" - -#: ../fileio.c:4914 -#, c-format -msgid "W16: Warning: Mode of file \"%s\" has changed since editing started" -msgstr "W16: : ༭ʼļ \"%s\" ģʽѱ䶯" - -#: ../fileio.c:4915 -msgid "See \":help W16\" for more info." -msgstr "һ˵ \":help W16\"" - -#: ../fileio.c:4927 -#, c-format -msgid "W13: Warning: File \"%s\" has been created after editing started" -msgstr "W13: : ༭ʼļ \"%s\" ѱ" - -#: ../fileio.c:4947 -msgid "Warning" -msgstr "" - -#: ../fileio.c:4948 -msgid "" -"&OK\n" -"&Load File" -msgstr "" -"ȷ(&O)\n" -"ļ(&L)" - -#: ../fileio.c:5065 -#, c-format -msgid "E462: Could not prepare for reloading \"%s\"" -msgstr "E462: Ϊ¼ \"%s\" " - -#: ../fileio.c:5078 -#, c-format -msgid "E321: Could not reload \"%s\"" -msgstr "E321: ¼ \"%s\"" - -#: ../fileio.c:5601 -msgid "--Deleted--" -msgstr "--ɾ--" - -#: ../fileio.c:5732 -#, c-format -msgid "auto-removing autocommand: %s <buffer=%d>" -msgstr "" - -#. the group doesn't exist -#: ../fileio.c:5772 -#, c-format -msgid "E367: No such group: \"%s\"" -msgstr "E367: : \"%s\"" - -#: ../fileio.c:5897 -#, c-format -msgid "E215: Illegal character after *: %s" -msgstr "E215: * Чַ: %s" - -#: ../fileio.c:5905 -#, c-format -msgid "E216: No such event: %s" -msgstr "E216: ¼: %s" - -#: ../fileio.c:5907 -#, c-format -msgid "E216: No such group or event: %s" -msgstr "E216: ¼: %s" - -#. Highlight title -#: ../fileio.c:6090 -msgid "" -"\n" -"--- Auto-Commands ---" -msgstr "" -"\n" -"--- Զ ---" - -#: ../fileio.c:6293 -#, c-format -msgid "E680: <buffer=%d>: invalid buffer number " -msgstr "E680: <buffer=%d>: ЧĻ " - -#: ../fileio.c:6370 -msgid "E217: Can't execute autocommands for ALL events" -msgstr "E217: ܶ¼ִԶ" - -#: ../fileio.c:6393 -msgid "No matching autocommands" -msgstr "ûƥԶ" - -#: ../fileio.c:6831 -msgid "E218: autocommand nesting too deep" -msgstr "E218: ԶǶײ" - -#: ../fileio.c:7143 -#, c-format -msgid "%s Auto commands for \"%s\"" -msgstr "%s Զ \"%s\"" - -#: ../fileio.c:7149 -#, c-format -msgid "Executing %s" -msgstr "ִ %s" - -#: ../fileio.c:7211 -#, c-format -msgid "autocommand %s" -msgstr "Զ %s" - -#: ../fileio.c:7795 -msgid "E219: Missing {." -msgstr "E219: ȱ {" - -#: ../fileio.c:7797 -msgid "E220: Missing }." -msgstr "E220: ȱ }" - -#: ../fold.c:93 -msgid "E490: No fold found" -msgstr "E490: Ҳ۵" - -#: ../fold.c:544 -msgid "E350: Cannot create fold with current 'foldmethod'" -msgstr "E350: ڵǰ 'foldmethod' ´۵" - -#: ../fold.c:546 -msgid "E351: Cannot delete fold with current 'foldmethod'" -msgstr "E351: ڵǰ 'foldmethod' ɾ۵" - -#: ../fold.c:1784 -#, c-format -msgid "+--%3ld lines folded " -msgstr "+--۵ %3ld " - -#. buffer has already been read -#: ../getchar.c:273 -msgid "E222: Add to read buffer" -msgstr "E222: ӵѶ" - -#: ../getchar.c:2040 -msgid "E223: recursive mapping" -msgstr "E223: ݹӳ" - -#: ../getchar.c:2849 -#, c-format -msgid "E224: global abbreviation already exists for %s" -msgstr "E224: ȫд %s Ѵ" - -#: ../getchar.c:2852 -#, c-format -msgid "E225: global mapping already exists for %s" -msgstr "E225: ȫӳ %s Ѵ" - -#: ../getchar.c:2952 -#, c-format -msgid "E226: abbreviation already exists for %s" -msgstr "E226: д %s Ѵ" - -#: ../getchar.c:2955 -#, c-format -msgid "E227: mapping already exists for %s" -msgstr "E227: ӳ %s Ѵ" - -#: ../getchar.c:3008 -msgid "No abbreviation found" -msgstr "Ҳд" - -#: ../getchar.c:3010 -msgid "No mapping found" -msgstr "Ҳӳ" - -#: ../getchar.c:3974 -msgid "E228: makemap: Illegal mode" -msgstr "E228: makemap: Чģʽ" - -#. key value of 'cedit' option -#. type of cmdline window or 0 -#. result of cmdline window or 0 -#: ../globals.h:924 -msgid "--No lines in buffer--" -msgstr "----" - -#. -#. * The error messages that can be shared are included here. -#. * Excluded are errors that are only used once and debugging messages. -#. -#: ../globals.h:996 -msgid "E470: Command aborted" -msgstr "E470: ֹ" - -#: ../globals.h:997 -msgid "E471: Argument required" -msgstr "E471: Ҫ" - -#: ../globals.h:998 -msgid "E10: \\ should be followed by /, ? or &" -msgstr "E10: \\ Ӧø /? &" - -#: ../globals.h:1000 -msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits" -msgstr "E11: дЧ<CR> ִУCTRL-C ˳" - -#: ../globals.h:1002 -msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search" -msgstr "E12: ǰĿ¼е exrc/vimrc tag в" - -#: ../globals.h:1003 -msgid "E171: Missing :endif" -msgstr "E171: ȱ :endif" - -#: ../globals.h:1004 -msgid "E600: Missing :endtry" -msgstr "E600: ȱ :endtry" - -#: ../globals.h:1005 -msgid "E170: Missing :endwhile" -msgstr "E170: ȱ :endwhile" - -#: ../globals.h:1006 -msgid "E170: Missing :endfor" -msgstr "E170: ȱ :endfor" - -#: ../globals.h:1007 -msgid "E588: :endwhile without :while" -msgstr "E588: :endwhile ȱٶӦ :while" - -#: ../globals.h:1008 -msgid "E588: :endfor without :for" -msgstr "E588: :endfor ȱٶӦ :for" - -#: ../globals.h:1009 -msgid "E13: File exists (add ! to override)" -msgstr "E13: ļѴ ( ! ǿִ)" - -#: ../globals.h:1010 -msgid "E472: Command failed" -msgstr "E472: ִʧ" - -#: ../globals.h:1011 -msgid "E473: Internal error" -msgstr "E473: ڲ" - -#: ../globals.h:1012 -msgid "Interrupted" -msgstr "ж" - -#: ../globals.h:1013 -msgid "E14: Invalid address" -msgstr "E14: Чĵַ" - -#: ../globals.h:1014 -msgid "E474: Invalid argument" -msgstr "E474: ЧIJ" - -#: ../globals.h:1015 -#, c-format -msgid "E475: Invalid argument: %s" -msgstr "E475: ЧIJ: %s" - -#: ../globals.h:1016 -#, c-format -msgid "E15: Invalid expression: %s" -msgstr "E15: Чıʽ: %s" - -#: ../globals.h:1017 -msgid "E16: Invalid range" -msgstr "E16: ЧķΧ" - -#: ../globals.h:1018 -msgid "E476: Invalid command" -msgstr "E476: Ч" - -#: ../globals.h:1019 -#, c-format -msgid "E17: \"%s\" is a directory" -msgstr "E17: \"%s\" Ŀ¼" - -#: ../globals.h:1020 -#, fuzzy -msgid "E900: Invalid job id" -msgstr "E49: ЧĹС" - -#: ../globals.h:1021 -msgid "E901: Job table is full" -msgstr "" - -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - -#: ../globals.h:1024 -#, c-format -msgid "E364: Library call failed for \"%s()\"" -msgstr "E364: ú \"%s()\" ʧ" - -#: ../globals.h:1026 -msgid "E19: Mark has invalid line number" -msgstr "E19: ǵкЧ" - -#: ../globals.h:1027 -msgid "E20: Mark not set" -msgstr "E20: û趨" - -#: ../globals.h:1029 -msgid "E21: Cannot make changes, 'modifiable' is off" -msgstr "E21: ģΪѡ 'modifiable' ǹص" - -#: ../globals.h:1030 -msgid "E22: Scripts nested too deep" -msgstr "E22: űǶ" - -#: ../globals.h:1031 -msgid "E23: No alternate file" -msgstr "E23: ûнļ" - -#: ../globals.h:1032 -msgid "E24: No such abbreviation" -msgstr "E24: ûд" - -#: ../globals.h:1033 -msgid "E477: No ! allowed" -msgstr "E477: ʹ \"!\"" - -#: ../globals.h:1035 -msgid "E25: Nvim does not have a built-in GUI" -msgstr "E25: ʹͼν: ʱû" - -#: ../globals.h:1036 -#, c-format -msgid "E28: No such highlight group name: %s" -msgstr "E28: ûȺ: %s" - -#: ../globals.h:1037 -msgid "E29: No inserted text yet" -msgstr "E29: ûв" - -#: ../globals.h:1038 -msgid "E30: No previous command line" -msgstr "E30: ûǰһ" - -#: ../globals.h:1039 -msgid "E31: No such mapping" -msgstr "E31: ûӳ" - -#: ../globals.h:1040 -msgid "E479: No match" -msgstr "E479: ûƥ" - -#: ../globals.h:1041 -#, c-format -msgid "E480: No match: %s" -msgstr "E480: ûƥ: %s" - -#: ../globals.h:1042 -msgid "E32: No file name" -msgstr "E32: ûļ" - -#: ../globals.h:1044 -msgid "E33: No previous substitute regular expression" -msgstr "E33: ûǰһ滻ʽ" - -#: ../globals.h:1045 -msgid "E34: No previous command" -msgstr "E34: ûǰһ" - -#: ../globals.h:1046 -msgid "E35: No previous regular expression" -msgstr "E35: ûǰһʽ" - -#: ../globals.h:1047 -msgid "E481: No range allowed" -msgstr "E481: ʹ÷Χ" - -#: ../globals.h:1048 -msgid "E36: Not enough room" -msgstr "E36: û㹻Ŀռ" - -#: ../globals.h:1049 -#, c-format -msgid "E482: Can't create file %s" -msgstr "E482: ļ %s" - -#: ../globals.h:1050 -msgid "E483: Can't get temp file name" -msgstr "E483: ȡʱļ" - -#: ../globals.h:1051 -#, c-format -msgid "E484: Can't open file %s" -msgstr "E484: ļ %s" - -#: ../globals.h:1052 -#, c-format -msgid "E485: Can't read file %s" -msgstr "E485: ȡļ %s" - -#: ../globals.h:1054 -msgid "E37: No write since last change (add ! to override)" -msgstr "E37: ĵδ ( ! ǿִ)" - -#: ../globals.h:1055 -#, fuzzy -msgid "E37: No write since last change" -msgstr "[ĵδ]\n" - -#: ../globals.h:1056 -msgid "E38: Null argument" -msgstr "E38: յIJ" - -#: ../globals.h:1057 -msgid "E39: Number expected" -msgstr "E39: ˴Ҫ" - -#: ../globals.h:1058 -#, c-format -msgid "E40: Can't open errorfile %s" -msgstr "E40: ļ %s" - -#: ../globals.h:1059 -msgid "E41: Out of memory!" -msgstr "E41: ڴ治㣡" - -#: ../globals.h:1060 -msgid "Pattern not found" -msgstr "Ҳģʽ" - -#: ../globals.h:1061 -#, c-format -msgid "E486: Pattern not found: %s" -msgstr "E486: Ҳģʽ: %s" - -#: ../globals.h:1062 -msgid "E487: Argument must be positive" -msgstr "E487: " - -#: ../globals.h:1064 -msgid "E459: Cannot go back to previous directory" -msgstr "E459: صǰһĿ¼" - -#: ../globals.h:1066 -msgid "E42: No Errors" -msgstr "E42: ûд" - -#: ../globals.h:1067 -msgid "E776: No location list" -msgstr "E776: û location б" - -#: ../globals.h:1068 -msgid "E43: Damaged match string" -msgstr "E43: ƥַ" - -#: ../globals.h:1069 -msgid "E44: Corrupted regexp program" -msgstr "E44: ʽ" - -#: ../globals.h:1071 -msgid "E45: 'readonly' option is set (add ! to override)" -msgstr "E45: 趨ѡ 'readonly' ( ! ǿִ)" - -#: ../globals.h:1073 -#, c-format -msgid "E46: Cannot change read-only variable \"%s\"" -msgstr "E46: ܸıֻ \"%s\"" - -#: ../globals.h:1075 -#, fuzzy, c-format -msgid "E794: Cannot set variable in the sandbox: \"%s\"" -msgstr "E46: sandbox 趨: \"%s\"" - -#: ../globals.h:1076 -msgid "E47: Error while reading errorfile" -msgstr "E47: ȡļʧ" - -#: ../globals.h:1078 -msgid "E48: Not allowed in sandbox" -msgstr "E48: sandbox ʹ" - -#: ../globals.h:1080 -msgid "E523: Not allowed here" -msgstr "E523: ڴʹ" - -#: ../globals.h:1082 -msgid "E359: Screen mode setting not supported" -msgstr "E359: ֧趨Ļģʽ" - -#: ../globals.h:1083 -msgid "E49: Invalid scroll size" -msgstr "E49: ЧĹС" - -#: ../globals.h:1084 -msgid "E91: 'shell' option is empty" -msgstr "E91: ѡ 'shell' Ϊ" - -#: ../globals.h:1085 -msgid "E255: Couldn't read in sign data!" -msgstr "E255: ȡ sign ݣ" - -#: ../globals.h:1086 -msgid "E72: Close error on swap file" -msgstr "E72: ļرմ" - -#: ../globals.h:1087 -msgid "E73: tag stack empty" -msgstr "E73: tag ջΪ" - -#: ../globals.h:1088 -msgid "E74: Command too complex" -msgstr "E74: " - -#: ../globals.h:1089 -msgid "E75: Name too long" -msgstr "E75: ֹ" - -#: ../globals.h:1090 -msgid "E76: Too many [" -msgstr "E76: [ " - -#: ../globals.h:1091 -msgid "E77: Too many file names" -msgstr "E77: ļ" - -#: ../globals.h:1092 -msgid "E488: Trailing characters" -msgstr "E488: βַ" - -#: ../globals.h:1093 -msgid "E78: Unknown mark" -msgstr "E78: δ֪ı" - -#: ../globals.h:1094 -msgid "E79: Cannot expand wildcards" -msgstr "E79: չͨ" - -#: ../globals.h:1096 -msgid "E591: 'winheight' cannot be smaller than 'winminheight'" -msgstr "E591: 'winheight' С 'winminheight'" - -#: ../globals.h:1098 -msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'" -msgstr "E592: 'winwidth' С 'winminwidth'" - -#: ../globals.h:1099 -msgid "E80: Error while writing" -msgstr "E80: д" - -#: ../globals.h:1100 -msgid "Zero count" -msgstr "Ϊ" - -#: ../globals.h:1101 -msgid "E81: Using <SID> not in a script context" -msgstr "E81: ڽűʹ <SID>" - -#: ../globals.h:1102 -#, c-format -msgid "E685: Internal error: %s" -msgstr "E685: ڲ: %s" - -#: ../globals.h:1104 -msgid "E363: pattern uses more memory than 'maxmempattern'" -msgstr "E363: ʽڴʹó 'maxmempattern'" - -#: ../globals.h:1105 -msgid "E749: empty buffer" -msgstr "E749: յĻ" - -#: ../globals.h:1108 -msgid "E682: Invalid search pattern or delimiter" -msgstr "E682: Чʽָ" - -#: ../globals.h:1109 -msgid "E139: File is loaded in another buffer" -msgstr "E139: ļһб" - -#: ../globals.h:1110 -#, c-format -msgid "E764: Option '%s' is not set" -msgstr "E764: û趨ѡ '%s'" - -#: ../globals.h:1111 -#, fuzzy -msgid "E850: Invalid register name" -msgstr "E354: ЧļĴ: '%s'" - -#: ../globals.h:1114 -msgid "search hit TOP, continuing at BOTTOM" -msgstr "Ѳҵļͷٴӽβ" - -#: ../globals.h:1115 -msgid "search hit BOTTOM, continuing at TOP" -msgstr "Ѳҵļβٴӿͷ" - -#: ../hardcopy.c:240 -msgid "E550: Missing colon" -msgstr "E550: ȱð" - -#: ../hardcopy.c:252 -msgid "E551: Illegal component" -msgstr "E551: ЧIJ" - -#: ../hardcopy.c:259 -msgid "E552: digit expected" -msgstr "E552: ӦҪ" - -#: ../hardcopy.c:473 -#, c-format -msgid "Page %d" -msgstr " %d ҳ" - -#: ../hardcopy.c:597 -msgid "No text to be printed" -msgstr "ûҪӡ" - -#: ../hardcopy.c:668 -#, c-format -msgid "Printing page %d (%d%%)" -msgstr "ڴӡ %d ҳ (%d%%)" - -#: ../hardcopy.c:680 -#, c-format -msgid " Copy %d of %d" -msgstr " %d / %d" - -#: ../hardcopy.c:733 -#, c-format -msgid "Printed: %s" -msgstr "Ѵӡ: %s" - -#: ../hardcopy.c:740 -msgid "Printing aborted" -msgstr "ӡֹ" - -#: ../hardcopy.c:1365 -msgid "E455: Error writing to PostScript output file" -msgstr "E455: д PostScript ļ" - -#: ../hardcopy.c:1747 -#, c-format -msgid "E624: Can't open file \"%s\"" -msgstr "E624: ļ \"%s\"" - -#: ../hardcopy.c:1756 ../hardcopy.c:2470 -#, c-format -msgid "E457: Can't read PostScript resource file \"%s\"" -msgstr "E457: ȡ PostScript Դļ \"%s\"" - -#: ../hardcopy.c:1772 -#, c-format -msgid "E618: file \"%s\" is not a PostScript resource file" -msgstr "E618: ļ \"%s\" PostScript Դļ" - -#: ../hardcopy.c:1788 ../hardcopy.c:1805 ../hardcopy.c:1844 -#, c-format -msgid "E619: file \"%s\" is not a supported PostScript resource file" -msgstr "E619: ļ \"%s\" ֵ֧ PostScript Դļ" - -#: ../hardcopy.c:1856 -#, c-format -msgid "E621: \"%s\" resource file has wrong version" -msgstr "E621: \"%s\" Դļ汾ȷ" - -#: ../hardcopy.c:2225 -msgid "E673: Incompatible multi-byte encoding and character set." -msgstr "E673: ݵĶֽڱַ" - -#: ../hardcopy.c:2238 -msgid "E674: printmbcharset cannot be empty with multi-byte encoding." -msgstr "E674: printmbcharset ڶֽڱ²Ϊա" - -#: ../hardcopy.c:2254 -msgid "E675: No default font specified for multi-byte printing." -msgstr "E675: ûָֽڴӡĬ塣" - -#: ../hardcopy.c:2426 -msgid "E324: Can't open PostScript output file" -msgstr "E324: PostScript ļ" - -#: ../hardcopy.c:2458 -#, c-format -msgid "E456: Can't open file \"%s\"" -msgstr "E456: ļ \"%s\"" - -#: ../hardcopy.c:2583 -msgid "E456: Can't find PostScript resource file \"prolog.ps\"" -msgstr "E456: Ҳ PostScript Դļ \"prolog.ps\"" - -#: ../hardcopy.c:2593 -msgid "E456: Can't find PostScript resource file \"cidfont.ps\"" -msgstr "E456: Ҳ PostScript Դļ \"cidfont.ps\"" - -#: ../hardcopy.c:2622 ../hardcopy.c:2639 ../hardcopy.c:2665 -#, c-format -msgid "E456: Can't find PostScript resource file \"%s.ps\"" -msgstr "E456: Ҳ PostScript Դļ \"%s.ps\"" - -#: ../hardcopy.c:2654 -#, c-format -msgid "E620: Unable to convert to print encoding \"%s\"" -msgstr "E620: תӡ \"%s\"" - -#: ../hardcopy.c:2877 -msgid "Sending to printer..." -msgstr "͵ӡ" - -#: ../hardcopy.c:2881 -msgid "E365: Failed to print PostScript file" -msgstr "E365: ӡ PostScript ļ" - -#: ../hardcopy.c:2883 -msgid "Print job sent." -msgstr "ӡѱ͡" - -#: ../if_cscope.c:85 -msgid "Add a new database" -msgstr "һµݿ" - -#: ../if_cscope.c:87 -msgid "Query for a pattern" -msgstr "ѯһģʽ" - -#: ../if_cscope.c:89 -msgid "Show this message" -msgstr "ʾϢ" - -#: ../if_cscope.c:91 -msgid "Kill a connection" -msgstr "һ" - -#: ../if_cscope.c:93 -msgid "Reinit all connections" -msgstr "" - -#: ../if_cscope.c:95 -msgid "Show connections" -msgstr "ʾ" - -#: ../if_cscope.c:101 -#, c-format -msgid "E560: Usage: cs[cope] %s" -msgstr "E560: ÷: cs[cope] %s" - -#: ../if_cscope.c:225 -msgid "This cscope command does not support splitting the window.\n" -msgstr " cscope ַָ֧ڡ\n" - -#: ../if_cscope.c:266 -msgid "E562: Usage: cstag <ident>" -msgstr "E562: ÷: cstag <ident>" - -#: ../if_cscope.c:313 -msgid "E257: cstag: tag not found" -msgstr "E257: cstag: Ҳ tag" - -#: ../if_cscope.c:461 -#, c-format -msgid "E563: stat(%s) error: %d" -msgstr "E563: stat(%s) : %d" - -#: ../if_cscope.c:551 -#, c-format -msgid "E564: %s is not a directory or a valid cscope database" -msgstr "E564: %s Ŀ¼Ч cscope ݿ" - -#: ../if_cscope.c:566 -#, c-format -msgid "Added cscope database %s" -msgstr " cscope ݿ %s" - -#: ../if_cscope.c:616 -#, c-format -msgid "E262: error reading cscope connection %<PRId64>" -msgstr "E262: ȡ cscope %<PRId64> " - -#: ../if_cscope.c:711 -msgid "E561: unknown cscope search type" -msgstr "E561: δ֪ cscope " - -#: ../if_cscope.c:752 ../if_cscope.c:789 -msgid "E566: Could not create cscope pipes" -msgstr "E566: cscope ܵ" - -#: ../if_cscope.c:767 -msgid "E622: Could not fork for cscope" -msgstr "E622: cscope fork" - -#: ../if_cscope.c:849 -#, fuzzy -msgid "cs_create_connection setpgid failed" -msgstr "cs_create_connection ִʧ" - -#: ../if_cscope.c:853 ../if_cscope.c:889 -msgid "cs_create_connection exec failed" -msgstr "cs_create_connection ִʧ" - -#: ../if_cscope.c:863 ../if_cscope.c:902 -msgid "cs_create_connection: fdopen for to_fp failed" -msgstr "cs_create_connection: fdopen to_fp ʧ" - -#: ../if_cscope.c:865 ../if_cscope.c:906 -msgid "cs_create_connection: fdopen for fr_fp failed" -msgstr "cs_create_connection: fdopen fr_fp ʧ" - -#: ../if_cscope.c:890 -msgid "E623: Could not spawn cscope process" -msgstr "E623: cscope " - -#: ../if_cscope.c:932 -msgid "E567: no cscope connections" -msgstr "E567: û cscope " - -#: ../if_cscope.c:1009 -#, c-format -msgid "E469: invalid cscopequickfix flag %c for %c" -msgstr "E469: cscopequickfix ־ %c %c Ч" - -#: ../if_cscope.c:1058 -#, c-format -msgid "E259: no matches found for cscope query %s of %s" -msgstr "E259: cscope ѯ %s %s ûҵƥĽ" - -#: ../if_cscope.c:1142 -msgid "cscope commands:\n" -msgstr "cscope :\n" - -#: ../if_cscope.c:1150 -#, fuzzy, c-format -msgid "%-5s: %s%*s (Usage: %s)" -msgstr "%-5s: %-30s (÷: %s)" - -#: ../if_cscope.c:1155 -msgid "" -"\n" -" c: Find functions calling this function\n" -" d: Find functions called by this function\n" -" e: Find this egrep pattern\n" -" f: Find this file\n" -" g: Find this definition\n" -" i: Find files #including this file\n" -" s: Find this C symbol\n" -" t: Find this text string\n" -msgstr "" - -#: ../if_cscope.c:1226 -msgid "E568: duplicate cscope database not added" -msgstr "E568: ظ cscope ݿδ" - -#: ../if_cscope.c:1335 -#, c-format -msgid "E261: cscope connection %s not found" -msgstr "E261: Ҳ cscope %s" - -#: ../if_cscope.c:1364 -#, c-format -msgid "cscope connection %s closed" -msgstr "cscope %s ѹر" - -#. should not reach here -#: ../if_cscope.c:1486 -msgid "E570: fatal error in cs_manage_matches" -msgstr "E570: cs_manage_matches ش" - -#: ../if_cscope.c:1693 -#, c-format -msgid "Cscope tag: %s" -msgstr "Cscope tag: %s" - -#: ../if_cscope.c:1711 -msgid "" -"\n" -" # line" -msgstr "" -"\n" -" # " - -#: ../if_cscope.c:1713 -msgid "filename / context / line\n" -msgstr "ļ / / \n" - -#: ../if_cscope.c:1809 -#, c-format -msgid "E609: Cscope error: %s" -msgstr "E609: Cscope : %s" - -#: ../if_cscope.c:2053 -msgid "All cscope databases reset" -msgstr " cscope ݿѱ" - -#: ../if_cscope.c:2123 -msgid "no cscope connections\n" -msgstr "û cscope \n" - -#: ../if_cscope.c:2126 -msgid " # pid database name prepend path\n" -msgstr " # pid ݿ prepend path\n" - -#: ../main.c:144 -msgid "Unknown option argument" -msgstr "δ֪ѡ" - -#: ../main.c:146 -msgid "Too many edit arguments" -msgstr "༭" - -#: ../main.c:148 -msgid "Argument missing after" -msgstr "ȱٱҪIJ" - -#: ../main.c:150 -msgid "Garbage after option argument" -msgstr "ѡЧ" - -#: ../main.c:152 -msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments" -msgstr "\"+command\"\"-c command\" \"--cmd command\" " - -#: ../main.c:154 -msgid "Invalid argument for" -msgstr "ЧIJ" - -#: ../main.c:294 -#, c-format -msgid "%d files to edit\n" -msgstr " %d ļȴ༭\n" - -#: ../main.c:1342 -msgid "Attempt to open script file again: \"" -msgstr "ͼٴδűļ: \"" - -#: ../main.c:1350 -msgid "Cannot open for reading: \"" -msgstr "ȡ: \"" - -#: ../main.c:1393 -msgid "Cannot open for script output: \"" -msgstr "ű: \"" - -#: ../main.c:1622 -msgid "Vim: Warning: Output is not to a terminal\n" -msgstr "Vim: : ǵն(Ļ)\n" - -#: ../main.c:1624 -msgid "Vim: Warning: Input is not from a terminal\n" -msgstr "Vim: : 벻ն()\n" - -#. just in case.. -#: ../main.c:1891 -msgid "pre-vimrc command line" -msgstr "pre-vimrc " - -#: ../main.c:1964 -#, c-format -msgid "E282: Cannot read from \"%s\"" -msgstr "E282: ȡ \"%s\"" - -#: ../main.c:2149 -msgid "" -"\n" -"More info with: \"vim -h\"\n" -msgstr "" -"\n" -"Ϣ: \"vim -h\"\n" - -#: ../main.c:2178 -msgid "[file ..] edit specified file(s)" -msgstr "[ļ ..] ༭ָļ" - -#: ../main.c:2179 -msgid "- read text from stdin" -msgstr "- ӱ(stdin)ȡı" - -#: ../main.c:2180 -msgid "-t tag edit file where tag is defined" -msgstr "-t tag ༭ tag 崦ļ" - -#: ../main.c:2181 -msgid "-q [errorfile] edit file with first error" -msgstr "-q [errorfile] ༭һļ" - -#: ../main.c:2187 -msgid "" -"\n" -"\n" -"usage:" -msgstr "" -"\n" -"\n" -"÷:" - -#: ../main.c:2189 -msgid " vim [arguments] " -msgstr " vim [] " - -#: ../main.c:2193 -msgid "" -"\n" -" or:" -msgstr "" -"\n" -" :" - -#: ../main.c:2196 -msgid "" -"\n" -"\n" -"Arguments:\n" -msgstr "" -"\n" -"\n" -":\n" - -#: ../main.c:2197 -msgid "--\t\t\tOnly file names after this" -msgstr "--\t\t\tԺֻļ" - -#: ../main.c:2199 -msgid "--literal\t\tDon't expand wildcards" -msgstr "--literal\t\tչͨ" - -#: ../main.c:2201 -msgid "-v\t\t\tVi mode (like \"vi\")" -msgstr "-v\t\t\tVi ģʽ (ͬ \"vi\")" - -#: ../main.c:2202 -msgid "-e\t\t\tEx mode (like \"ex\")" -msgstr "-e\t\t\tEx ģʽ (ͬ \"ex\")" - -#: ../main.c:2203 -msgid "-E\t\t\tImproved Ex mode" -msgstr "" - -#: ../main.c:2204 -msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")" -msgstr "-s\t\t\t()ģʽ (ֻ \"ex\" һʹ)" - -#: ../main.c:2205 -msgid "-d\t\t\tDiff mode (like \"vimdiff\")" -msgstr "-d\t\t\tDiff ģʽ (ͬ \"vimdiff\")" - -#: ../main.c:2206 -msgid "-y\t\t\tEasy mode (like \"evim\", modeless)" -msgstr "-y\t\t\tģʽ (ͬ \"evim\"ģʽ)" - -#: ../main.c:2207 -msgid "-R\t\t\tReadonly mode (like \"view\")" -msgstr "-R\t\t\tֻģʽ (ͬ \"view\")" - -#: ../main.c:2208 -msgid "-Z\t\t\tRestricted mode (like \"rvim\")" -msgstr "-Z\t\t\tģʽ (ͬ \"rvim\")" - -#: ../main.c:2209 -msgid "-m\t\t\tModifications (writing files) not allowed" -msgstr "-m\t\t\t(дļ)" - -#: ../main.c:2210 -msgid "-M\t\t\tModifications in text not allowed" -msgstr "-M\t\t\tı" - -#: ../main.c:2211 -msgid "-b\t\t\tBinary mode" -msgstr "-b\t\t\tģʽ" - -#: ../main.c:2212 -msgid "-l\t\t\tLisp mode" -msgstr "-l\t\t\tLisp ģʽ" - -#: ../main.c:2213 -msgid "-C\t\t\tCompatible with Vi: 'compatible'" -msgstr "-C\t\t\tݴͳ Vi: 'compatible'" - -#: ../main.c:2214 -msgid "-N\t\t\tNot fully Vi compatible: 'nocompatible'" -msgstr "-N\t\t\tȫݴͳ Vi: 'nocompatible'" - -#: ../main.c:2215 -msgid "-V[N][fname]\t\tBe verbose [level N] [log messages to fname]" -msgstr "" - -#: ../main.c:2216 -msgid "-D\t\t\tDebugging mode" -msgstr "-D\t\t\tģʽ" - -#: ../main.c:2217 -msgid "-n\t\t\tNo swap file, use memory only" -msgstr "-n\t\t\tʹýļֻʹڴ" - -#: ../main.c:2218 -msgid "-r\t\t\tList swap files and exit" -msgstr "-r\t\t\tгļ˳" - -#: ../main.c:2219 -msgid "-r (with file name)\tRecover crashed session" -msgstr "-r (ļ)\t\tָĻỰ" - -#: ../main.c:2220 -msgid "-L\t\t\tSame as -r" -msgstr "-L\t\t\tͬ -r" - -#: ../main.c:2221 -msgid "-A\t\t\tstart in Arabic mode" -msgstr "-A\t\t\t Arabic ģʽ" - -#: ../main.c:2222 -msgid "-H\t\t\tStart in Hebrew mode" -msgstr "-H\t\t\t Hebrew ģʽ" - -#: ../main.c:2223 -msgid "-F\t\t\tStart in Farsi mode" -msgstr "-F\t\t\t Farsi ģʽ" - -#: ../main.c:2224 -msgid "-T <terminal>\tSet terminal type to <terminal>" -msgstr "-T <terminal>\t趨նΪ <terminal>" - -#: ../main.c:2225 -msgid "-u <vimrc>\t\tUse <vimrc> instead of any .vimrc" -msgstr "-u <vimrc>\t\tʹ <vimrc> κ .vimrc" - -#: ../main.c:2226 -msgid "--noplugin\t\tDon't load plugin scripts" -msgstr "--noplugin\t\t plugin ű" - -#: ../main.c:2227 -msgid "-p[N]\t\tOpen N tab pages (default: one for each file)" -msgstr "-P[N]\t\t N ǩҳ (Ĭֵ: ÿļһ)" - -#: ../main.c:2228 -msgid "-o[N]\t\tOpen N windows (default: one for each file)" -msgstr "-o[N]\t\t N (Ĭֵ: ÿļһ)" - -#: ../main.c:2229 -msgid "-O[N]\t\tLike -o but split vertically" -msgstr "-O[N]\t\tͬ -o ֱָ" - -#: ../main.c:2230 -msgid "+\t\t\tStart at end of file" -msgstr "+\t\t\tļĩβ" - -#: ../main.c:2231 -msgid "+<lnum>\t\tStart at line <lnum>" -msgstr "+<lnum>\t\t <lnum> " - -#: ../main.c:2232 -msgid "--cmd <command>\tExecute <command> before loading any vimrc file" -msgstr "--cmd <command>\tκ vimrc ļǰִ <command>" - -#: ../main.c:2233 -msgid "-c <command>\t\tExecute <command> after loading the first file" -msgstr "-c <command>\t\tصһļִ <command>" - -#: ../main.c:2235 -msgid "-S <session>\t\tSource file <session> after loading the first file" -msgstr "-S <session>\t\tصһļִļ <session>" - -#: ../main.c:2236 -msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>" -msgstr "-s <scriptin>\tļ <scriptin> ģʽ" - -#: ../main.c:2237 -msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>" -msgstr "-w <scriptout>\tӵļ <scriptout>" - -#: ../main.c:2238 -msgid "-W <scriptout>\tWrite all typed commands to file <scriptout>" -msgstr "-W <scriptout>\tд뵽ļ <scriptout>" - -#: ../main.c:2240 -msgid "--startuptime <file>\tWrite startup timing messages to <file>" -msgstr "" - -#: ../main.c:2242 -msgid "-i <viminfo>\t\tUse <viminfo> instead of .viminfo" -msgstr "-i <viminfo>\t\tʹ <viminfo> ȡ .viminfo" - -#: ../main.c:2243 -msgid "-h or --help\tPrint Help (this message) and exit" -msgstr "-h --help\tӡ(Ϣ)˳" - -#: ../main.c:2244 -msgid "--version\t\tPrint version information and exit" -msgstr "--version\t\tӡ汾Ϣ˳" - -#: ../mark.c:676 -msgid "No marks set" -msgstr "û趨" - -#: ../mark.c:678 -#, c-format -msgid "E283: No marks matching \"%s\"" -msgstr "E283: ûƥ \"%s\" ı" - -#. Highlight title -#: ../mark.c:687 -msgid "" -"\n" -"mark line col file/text" -msgstr "" -"\n" -" ļ/ı" - -#. Highlight title -#: ../mark.c:789 -msgid "" -"\n" -" jump line col file/text" -msgstr "" -"\n" -" ת ļ/ı" - -#. Highlight title -#: ../mark.c:831 -msgid "" -"\n" -"change line col text" -msgstr "" -"\n" -" ı ı" - -#: ../mark.c:1238 -msgid "" -"\n" -"# File marks:\n" -msgstr "" -"\n" -"# ļ:\n" - -#. Write the jumplist with -' -#: ../mark.c:1271 -msgid "" -"\n" -"# Jumplist (newest first):\n" -msgstr "" -"\n" -"# תб (µ):\n" - -#: ../mark.c:1352 -msgid "" -"\n" -"# History of marks within files (newest to oldest):\n" -msgstr "" -"\n" -"# ļڵıʷ¼ (µ):\n" - -#: ../mark.c:1431 -msgid "Missing '>'" -msgstr "ȱ '>'" - -#: ../memfile.c:426 -msgid "E293: block was not locked" -msgstr "E293: δ" - -#: ../memfile.c:799 -msgid "E294: Seek error in swap file read" -msgstr "E294: ļȡλ" - -#: ../memfile.c:803 -msgid "E295: Read error in swap file" -msgstr "E295: ļȡ" - -#: ../memfile.c:849 -msgid "E296: Seek error in swap file write" -msgstr "E296: ļд붨λ" - -#: ../memfile.c:865 -msgid "E297: Write error in swap file" -msgstr "E297: ļд" - -#: ../memfile.c:1036 -msgid "E300: Swap file already exists (symlink attack?)" -msgstr "E300: ļѴ (ӹ)" - -#: ../memline.c:318 -msgid "E298: Didn't get block nr 0?" -msgstr "E298: Ҳ 0" - -#: ../memline.c:361 -msgid "E298: Didn't get block nr 1?" -msgstr "E298: Ҳ 1" - -#: ../memline.c:377 -msgid "E298: Didn't get block nr 2?" -msgstr "E298: Ҳ 2" - -#. could not (re)open the swap file, what can we do???? -#: ../memline.c:465 -msgid "E301: Oops, lost the swap file!!!" -msgstr "E301: ޣļˣ" - -#: ../memline.c:477 -msgid "E302: Could not rename swap file" -msgstr "E302: ļ" - -#: ../memline.c:554 -#, c-format -msgid "E303: Unable to open swap file for \"%s\", recovery impossible" -msgstr "E303: \"%s\" Ľļָ" - -#: ../memline.c:666 -msgid "E304: ml_upd_block0(): Didn't get block 0??" -msgstr "E304: ml_upd_block0(): Ҳ 0" - -#. no swap files found -#: ../memline.c:830 -#, c-format -msgid "E305: No swap file found for %s" -msgstr "E305: Ҳ %s Ľļ" - -#: ../memline.c:839 -msgid "Enter number of swap file to use (0 to quit): " -msgstr "ҪʹõĽļ (0 ˳): " - -#: ../memline.c:879 -#, c-format -msgid "E306: Cannot open %s" -msgstr "E306: %s" - -#: ../memline.c:897 -msgid "Unable to read block 0 from " -msgstr "ȡ 0: " - -#: ../memline.c:900 -msgid "" -"\n" -"Maybe no changes were made or Vim did not update the swap file." -msgstr "" -"\n" -"ûκĻ Vim ½ļ" - -#: ../memline.c:909 -msgid " cannot be used with this version of Vim.\n" -msgstr " ڸð汾 Vim ʹá\n" - -#: ../memline.c:911 -msgid "Use Vim version 3.0.\n" -msgstr "ʹ Vim 3.0\n" - -#: ../memline.c:916 -#, c-format -msgid "E307: %s does not look like a Vim swap file" -msgstr "E307: %s Vim ļ" - -#: ../memline.c:922 -msgid " cannot be used on this computer.\n" -msgstr " ̨ʹá\n" - -#: ../memline.c:924 -msgid "The file was created on " -msgstr "ļ " - -#: ../memline.c:928 -msgid "" -",\n" -"or the file has been damaged." -msgstr "" -"\n" -"Ǵļ" - -#: ../memline.c:945 -msgid " has been damaged (page size is smaller than minimum value).\n" -msgstr "" - -#: ../memline.c:974 -#, c-format -msgid "Using swap file \"%s\"" -msgstr "ʹýļ \"%s\"" - -#: ../memline.c:980 -#, c-format -msgid "Original file \"%s\"" -msgstr "ԭʼļ \"%s\"" - -#: ../memline.c:995 -msgid "E308: Warning: Original file may have been changed" -msgstr "E308: : ԭʼļѱ" - -#: ../memline.c:1061 -#, c-format -msgid "E309: Unable to read block 1 from %s" -msgstr "E309: %s ȡ 1" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1065 -#, fuzzy -msgid "???MANY LINES MISSING" -msgstr "???ȱ̫" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1076 -#, fuzzy -msgid "???LINE COUNT WRONG" -msgstr "???" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1082 -#, fuzzy -msgid "???EMPTY BLOCK" -msgstr "???յĿ" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1103 -#, fuzzy -msgid "???LINES MISSING" -msgstr "???ȱһЩ" - -#: ../memline.c:1128 -#, c-format -msgid "E310: Block 1 ID wrong (%s not a .swp file?)" -msgstr "E310: 1 ID (%s ǽļ)" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1133 -#, fuzzy -msgid "???BLOCK MISSING" -msgstr "???ȱٿ" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1147 -#, fuzzy -msgid "??? from here until ???END lines may be messed up" -msgstr "??? ﵽ ???END пѻ" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1164 -#, fuzzy -msgid "??? from here until ???END lines may have been inserted/deleted" -msgstr "??? ﵽ ???END пѱ/ɾ" - -# do not translate to avoid writing Chinese in files -#: ../memline.c:1181 -#, fuzzy -msgid "???END" -msgstr "???END" - -#: ../memline.c:1238 -msgid "E311: Recovery Interrupted" -msgstr "E311: ָѱж" - -#: ../memline.c:1243 -msgid "" -"E312: Errors detected while recovering; look for lines starting with ???" -msgstr "E312: ָʱעͷΪ ??? " - -#: ../memline.c:1245 -msgid "See \":help E312\" for more information." -msgstr "Ϣ \":help E312\"" - -#: ../memline.c:1249 -msgid "Recovery completed. You should check if everything is OK." -msgstr "ָϡȷһ" - -#: ../memline.c:1251 -msgid "" -"\n" -"(You might want to write out this file under another name\n" -msgstr "" -"\n" -"(ҪļΪļ\n" - -#: ../memline.c:1252 -#, fuzzy -msgid "and run diff with the original file to check for changes)" -msgstr " diff ԭļȽԼǷиı)\n" - -#: ../memline.c:1254 -msgid "Recovery completed. Buffer contents equals file contents." -msgstr "" - -#: ../memline.c:1255 -#, fuzzy -msgid "" -"\n" -"You may want to delete the .swp file now.\n" -"\n" -msgstr "" -"Ȼ .swp ļɾ\n" -"\n" - -#. use msg() to start the scrolling properly -#: ../memline.c:1327 -msgid "Swap files found:" -msgstr "ҵļ:" - -#: ../memline.c:1446 -msgid " In current directory:\n" -msgstr " λڵǰĿ¼:\n" - -#: ../memline.c:1448 -msgid " Using specified name:\n" -msgstr " ʹָ:\n" - -#: ../memline.c:1450 -msgid " In directory " -msgstr " λĿ¼ " - -#: ../memline.c:1465 -msgid " -- none --\n" -msgstr " -- --\n" - -#: ../memline.c:1527 -msgid " owned by: " -msgstr " : " - -#: ../memline.c:1529 -msgid " dated: " -msgstr " : " - -#: ../memline.c:1532 ../memline.c:3231 -msgid " dated: " -msgstr " : " - -#: ../memline.c:1548 -msgid " [from Vim version 3.0]" -msgstr " [ Vim 汾 3.0]" - -#: ../memline.c:1550 -msgid " [does not look like a Vim swap file]" -msgstr " [ Vim ļ]" - -#: ../memline.c:1552 -msgid " file name: " -msgstr " ļ: " - -#: ../memline.c:1558 -msgid "" -"\n" -" modified: " -msgstr "" -"\n" -" Ĺ: " - -#: ../memline.c:1559 -msgid "YES" -msgstr "" - -#: ../memline.c:1559 -msgid "no" -msgstr "" - -#: ../memline.c:1562 -msgid "" -"\n" -" user name: " -msgstr "" -"\n" -" û: " - -#: ../memline.c:1568 -msgid " host name: " -msgstr " : " - -#: ../memline.c:1570 -msgid "" -"\n" -" host name: " -msgstr "" -"\n" -" : " - -#: ../memline.c:1575 -msgid "" -"\n" -" process ID: " -msgstr "" -"\n" -" ID: " - -#: ../memline.c:1579 -msgid " (still running)" -msgstr " ()" - -#: ../memline.c:1586 -msgid "" -"\n" -" [not usable on this computer]" -msgstr "" -"\n" -" [ڱʹ]" - -#: ../memline.c:1590 -msgid " [cannot be read]" -msgstr " [ȡ]" - -#: ../memline.c:1593 -msgid " [cannot be opened]" -msgstr " []" - -#: ../memline.c:1698 -msgid "E313: Cannot preserve, there is no swap file" -msgstr "E313: ûнļ" - -#: ../memline.c:1747 -msgid "File preserved" -msgstr "ļѱ" - -#: ../memline.c:1749 -msgid "E314: Preserve failed" -msgstr "E314: ʧ" - -#: ../memline.c:1819 -#, c-format -msgid "E315: ml_get: invalid lnum: %<PRId64>" -msgstr "E315: ml_get: Ч lnum: %<PRId64>" - -#: ../memline.c:1851 -#, c-format -msgid "E316: ml_get: cannot find line %<PRId64>" -msgstr "E316: ml_get: Ҳ %<PRId64> " - -#: ../memline.c:2236 -msgid "E317: pointer block id wrong 3" -msgstr "E317: ָ id 3" - -#: ../memline.c:2311 -msgid "stack_idx should be 0" -msgstr "stack_idx Ӧ 0" - -#: ../memline.c:2369 -msgid "E318: Updated too many blocks?" -msgstr "E318: ̫Ŀ飿" - -#: ../memline.c:2511 -msgid "E317: pointer block id wrong 4" -msgstr "E317: ָ id 4" - -#: ../memline.c:2536 -msgid "deleted block 1?" -msgstr "ɾ˿ 1" - -#: ../memline.c:2707 -#, c-format -msgid "E320: Cannot find line %<PRId64>" -msgstr "E320: Ҳ %<PRId64> " - -#: ../memline.c:2916 -msgid "E317: pointer block id wrong" -msgstr "E317: ָ id " - -#: ../memline.c:2930 -msgid "pe_line_count is zero" -msgstr "pe_line_count Ϊ" - -#: ../memline.c:2955 -#, c-format -msgid "E322: line number out of range: %<PRId64> past the end" -msgstr "E322: кųΧ: %<PRId64> β" - -#: ../memline.c:2959 -#, c-format -msgid "E323: line count wrong in block %<PRId64>" -msgstr "E323: %<PRId64> " - -#: ../memline.c:2999 -msgid "Stack size increases" -msgstr "ջС" - -#: ../memline.c:3038 -msgid "E317: pointer block id wrong 2" -msgstr "E317: ָ id 2" - -#: ../memline.c:3070 -#, c-format -msgid "E773: Symlink loop for \"%s\"" -msgstr "E773: \"%s\" ӳѭ" - -#: ../memline.c:3221 -msgid "E325: ATTENTION" -msgstr "E325: ע" - -#: ../memline.c:3222 -msgid "" -"\n" -"Found a swap file by the name \"" -msgstr "" -"\n" -"ֽļ \"" - -#: ../memline.c:3226 -msgid "While opening file \"" -msgstr "ڴļ \"" - -#: ../memline.c:3239 -msgid " NEWER than swap file!\n" -msgstr " Ƚļ£\n" - -#: ../memline.c:3244 -#, fuzzy -msgid "" -"\n" -"(1) Another program may be editing the same file. If this is the case,\n" -" be careful not to end up with two different instances of the same\n" -" file when making changes." -msgstr "" -"\n" -"(1) һҲڱ༭ͬһļ\n" -" ʱעͬһļͬİ汾\n" -"\n" - -#: ../memline.c:3245 -#, fuzzy -msgid " Quit, or continue with caution.\n" -msgstr " ˳Сĵؼ\n" - -#: ../memline.c:3246 -#, fuzzy -msgid "(2) An edit session for this file crashed.\n" -msgstr "" -"\n" -"(2) ϴα༭ļʱ\n" - -#: ../memline.c:3247 -msgid " If this is the case, use \":recover\" or \"vim -r " -msgstr " \":recover\" \"vim -r " - -#: ../memline.c:3249 -msgid "" -"\"\n" -" to recover the changes (see \":help recovery\").\n" -msgstr "" -"\"\n" -" ָĵ ( \":help recovery\")\n" - -#: ../memline.c:3250 -msgid " If you did this already, delete the swap file \"" -msgstr " Ѿ˻ָɾļ \"" - -#: ../memline.c:3252 -msgid "" -"\"\n" -" to avoid this message.\n" -msgstr "" -"\"\n" -" ԱٿϢ\n" - -#: ../memline.c:3450 ../memline.c:3452 -msgid "Swap file \"" -msgstr "ļ \"" - -#: ../memline.c:3451 ../memline.c:3455 -msgid "\" already exists!" -msgstr "\" Ѵڣ" - -#: ../memline.c:3457 -msgid "VIM - ATTENTION" -msgstr "VIM - ע" - -#: ../memline.c:3459 -msgid "Swap file already exists!" -msgstr "ļѴڣ" - -#: ../memline.c:3464 -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Quit\n" -"&Abort" -msgstr "" -"ֻʽ(&O)\n" -"ֱӱ༭(&E)\n" -"ָ(&R)\n" -"˳(&Q)\n" -"ֹ(&A)" - -#: ../memline.c:3467 -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Delete it\n" -"&Quit\n" -"&Abort" -msgstr "" -"ֻʽ(&O)\n" -"ֱӱ༭(&E)\n" -"ָ(&R)\n" -"ɾļ(&D)\n" -"˳(&Q)\n" -"ֹ(&A)" - -#. -#. * Change the ".swp" extension to find another file that can be used. -#. * First decrement the last char: ".swo", ".swn", etc. -#. * If that still isn't enough decrement the last but one char: ".svz" -#. * Can happen when editing many "No Name" buffers. -#. -#. ".s?a" -#. ".saa": tried enough, give up -#: ../memline.c:3528 -msgid "E326: Too many swap files found" -msgstr "E326: ҵཻ̫ļ" - -#: ../memory.c:227 -#, c-format -msgid "E342: Out of memory! (allocating %<PRIu64> bytes)" -msgstr "E342: ڴ治㣡( %<PRIu64> ֽ)" - -#: ../menu.c:62 -msgid "E327: Part of menu-item path is not sub-menu" -msgstr "E327: ˵ij·Ӳ˵" - -#: ../menu.c:63 -msgid "E328: Menu only exists in another mode" -msgstr "E328: ˵ֻģʽд" - -#: ../menu.c:64 -#, c-format -msgid "E329: No menu \"%s\"" -msgstr "E329: ûв˵ \"%s\"" - -#. Only a mnemonic or accelerator is not valid. -#: ../menu.c:329 -#, fuzzy -msgid "E792: Empty menu name" -msgstr "E749: յĻ" - -#: ../menu.c:340 -msgid "E330: Menu path must not lead to a sub-menu" -msgstr "E330: ˵·ָӲ˵" - -#: ../menu.c:365 -msgid "E331: Must not add menu items directly to menu bar" -msgstr "E331: ܰѲ˵ֱӼӵ˵" - -#: ../menu.c:370 -msgid "E332: Separator cannot be part of a menu path" -msgstr "E332: ָ߲Dz˵·һ" - -#. Now we have found the matching menu, and we list the mappings -#. Highlight title -#: ../menu.c:762 -msgid "" -"\n" -"--- Menus ---" -msgstr "" -"\n" -"--- ˵ ---" - -#: ../menu.c:1313 -msgid "E333: Menu path must lead to a menu item" -msgstr "E333: ˵·ָ˵" - -#: ../menu.c:1330 -#, c-format -msgid "E334: Menu not found: %s" -msgstr "E334: Ҳ˵: %s" - -#: ../menu.c:1396 -#, c-format -msgid "E335: Menu not defined for %s mode" -msgstr "E335: %s ģʽв˵δ" - -#: ../menu.c:1426 -msgid "E336: Menu path must lead to a sub-menu" -msgstr "E336: ˵·ָӲ˵" - -#: ../menu.c:1447 -msgid "E337: Menu not found - check menu names" -msgstr "E337: Ҳ˵ - ˵" - -#: ../message.c:423 -#, c-format -msgid "Error detected while processing %s:" -msgstr " %s ʱ:" - -#: ../message.c:445 -#, c-format -msgid "line %4ld:" -msgstr " %4ld :" - -#: ../message.c:617 -#, c-format -msgid "E354: Invalid register name: '%s'" -msgstr "E354: ЧļĴ: '%s'" - -#: ../message.c:986 -msgid "Interrupt: " -msgstr "ж: " - -#: ../message.c:988 -msgid "Press ENTER or type command to continue" -msgstr "밴 ENTER " - -#: ../message.c:1843 -#, c-format -msgid "%s line %<PRId64>" -msgstr "%s %<PRId64> " - -#: ../message.c:2392 -msgid "-- More --" -msgstr "-- --" - -#: ../message.c:2398 -msgid " SPACE/d/j: screen/page/line down, b/u/k: up, q: quit " -msgstr " ո/d/j: Ļ/ҳ/ ·b/u/k: Ϸq: ˳ " - -#: ../message.c:3021 ../message.c:3031 -msgid "Question" -msgstr "" - -#: ../message.c:3023 -msgid "" -"&Yes\n" -"&No" -msgstr "" -"(&Y)\n" -"(&N)" - -#: ../message.c:3033 -msgid "" -"&Yes\n" -"&No\n" -"&Cancel" -msgstr "" -"(&Y)\n" -"(&N)\n" -"ȡ(&C)" - -#: ../message.c:3045 -msgid "" -"&Yes\n" -"&No\n" -"Save &All\n" -"&Discard All\n" -"&Cancel" -msgstr "" -"(&Y)\n" -"(&N)\n" -"ȫ(&A)\n" -"ȫ(&D)\n" -"ȡ(&C)" - -#: ../message.c:3058 -msgid "E766: Insufficient arguments for printf()" -msgstr "E766: printf() IJ" - -#: ../message.c:3119 -#, fuzzy -msgid "E807: Expected Float argument for printf()" -msgstr "E766: printf() IJ" - -#: ../message.c:3873 -msgid "E767: Too many arguments to printf()" -msgstr "E767: printf() IJ" - -#: ../misc1.c:2256 -msgid "W10: Warning: Changing a readonly file" -msgstr "W10: : һֻļ" - -#: ../misc1.c:2537 -#, fuzzy -msgid "Type number and <Enter> or click with mouse (empty cancels): " -msgstr "ֻ (<Enter> ȡ): " - -#: ../misc1.c:2539 -#, fuzzy -msgid "Type number and <Enter> (empty cancels): " -msgstr "ѡ (<Enter> ȡ): " - -#: ../misc1.c:2585 -msgid "1 more line" -msgstr " 1 " - -#: ../misc1.c:2588 -msgid "1 line less" -msgstr " 1 " - -#: ../misc1.c:2593 -#, c-format -msgid "%<PRId64> more lines" -msgstr " %<PRId64> " - -#: ../misc1.c:2596 -#, c-format -msgid "%<PRId64> fewer lines" -msgstr " %<PRId64> " - -#: ../misc1.c:2599 -msgid " (Interrupted)" -msgstr " (ж)" - -#: ../misc1.c:2635 -msgid "Beep!" -msgstr "Beep!" - -#: ../misc2.c:738 -#, c-format -msgid "Calling shell to execute: \"%s\"" -msgstr " shell ִ: \"%s\"" - -#: ../normal.c:183 -msgid "E349: No identifier under cursor" -msgstr "E349: 괦ûʶ" - -#: ../normal.c:1866 -msgid "E774: 'operatorfunc' is empty" -msgstr "E774: 'operatorfunc' Ϊ" - -#: ../normal.c:2637 -msgid "Warning: terminal cannot highlight" -msgstr ": ն˲ʾ" - -#: ../normal.c:2807 -msgid "E348: No string under cursor" -msgstr "E348: 괦ûַ" - -#: ../normal.c:3937 -msgid "E352: Cannot erase folds with current 'foldmethod'" -msgstr "E352: ڵǰ 'foldmethod' ɾ fold" - -#: ../normal.c:5897 -msgid "E664: changelist is empty" -msgstr "E664: ıбΪ" - -#: ../normal.c:5899 -msgid "E662: At start of changelist" -msgstr "E662: ڸıбĿʼ" - -#: ../normal.c:5901 -msgid "E663: At end of changelist" -msgstr "E663: ڸıбĩβ" - -#: ../normal.c:7053 -msgid "Type :quit<Enter> to exit Nvim" -msgstr " :quit<Enter> ˳ Vim" - -#: ../ops.c:248 -#, c-format -msgid "1 line %sed 1 time" -msgstr "1 %s 1 " - -#: ../ops.c:250 -#, c-format -msgid "1 line %sed %d times" -msgstr "1 %s %d " - -#: ../ops.c:253 -#, c-format -msgid "%<PRId64> lines %sed 1 time" -msgstr "%<PRId64> %s 1 " - -#: ../ops.c:256 -#, c-format -msgid "%<PRId64> lines %sed %d times" -msgstr "%<PRId64> %s %d " - -#: ../ops.c:592 -#, c-format -msgid "%<PRId64> lines to indent... " -msgstr " %<PRId64> С " - -#: ../ops.c:634 -msgid "1 line indented " -msgstr " 1 " - -#: ../ops.c:636 -#, c-format -msgid "%<PRId64> lines indented " -msgstr " %<PRId64> " - -#: ../ops.c:938 -msgid "E748: No previously used register" -msgstr "E748: ûǰһʹõļĴ" - -#. must display the prompt -#: ../ops.c:1433 -msgid "cannot yank; delete anyway" -msgstr "ƣΪɾ" - -#: ../ops.c:1929 -msgid "1 line changed" -msgstr "ı 1 " - -#: ../ops.c:1931 -#, c-format -msgid "%<PRId64> lines changed" -msgstr "ı %<PRId64> " - -#: ../ops.c:2521 -msgid "block of 1 line yanked" -msgstr " 1 еĿ" - -#: ../ops.c:2523 -msgid "1 line yanked" -msgstr " 1 " - -#: ../ops.c:2525 -#, c-format -msgid "block of %<PRId64> lines yanked" -msgstr " %<PRId64> еĿ" - -#: ../ops.c:2528 -#, c-format -msgid "%<PRId64> lines yanked" -msgstr " %<PRId64> " - -#: ../ops.c:2710 -#, c-format -msgid "E353: Nothing in register %s" -msgstr "E353: Ĵ %s ûж" - -#. Highlight title -#: ../ops.c:3185 -msgid "" -"\n" -"--- Registers ---" -msgstr "" -"\n" -"--- Ĵ ---" - -#: ../ops.c:4455 -msgid "Illegal register name" -msgstr "ЧļĴ" - -#: ../ops.c:4533 -msgid "" -"\n" -"# Registers:\n" -msgstr "" -"\n" -"# Ĵ:\n" - -#: ../ops.c:4575 -#, c-format -msgid "E574: Unknown register type %d" -msgstr "E574: δ֪ļĴ %d" - -#: ../ops.c:5089 -#, c-format -msgid "%<PRId64> Cols; " -msgstr "%<PRId64> ; " - -#: ../ops.c:5097 -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Bytes" -msgstr "" -"ѡ %s%<PRId64>/%<PRId64> ; %<PRId64>/%<PRId64> ; %<PRId64>/" -"%<PRId64> ֽ" - -#: ../ops.c:5105 -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Chars; %<PRId64> of %<PRId64> Bytes" -msgstr "" -"ѡ %s%<PRId64>/%<PRId64> ; %<PRId64>/%<PRId64> ; %<PRId64>/" -"%<PRId64> ַ; %<PRId64>/%<PRId64> ֽ" - -#: ../ops.c:5123 -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Byte " -"%<PRId64> of %<PRId64>" -msgstr "" -" %s/%s ; %<PRId64>/%<PRId64> ; %<PRId64>/%<PRId64> ; " -"%<PRId64>/%<PRId64> ֽ" - -#: ../ops.c:5133 -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Char " -"%<PRId64> of %<PRId64>; Byte %<PRId64> of %<PRId64>" -msgstr "" -" %s/%s ; %<PRId64>/%<PRId64> ; %<PRId64>/%<PRId64> ; " -"%<PRId64>/%<PRId64> ַ; %<PRId64>/%<PRId64> ֽ" - -#: ../ops.c:5146 -#, c-format -msgid "(+%<PRId64> for BOM)" -msgstr "" - -#: ../option.c:1238 -msgid "%<%f%h%m%=Page %N" -msgstr "" - -#: ../option.c:1574 -msgid "Thanks for flying Vim" -msgstr "лѡ Vim" - -#. found a mismatch: skip -#: ../option.c:2698 -msgid "E518: Unknown option" -msgstr "E518: δ֪ѡ" - -#: ../option.c:2709 -msgid "E519: Option not supported" -msgstr "E519: ָ֧ѡ" - -#: ../option.c:2740 -msgid "E520: Not allowed in a modeline" -msgstr "E520: modeline ʹ" - -#: ../option.c:2815 -msgid "E846: Key code not set" -msgstr "" - -#: ../option.c:2924 -msgid "E521: Number required after =" -msgstr "E521: = Ҫ" - -#: ../option.c:3226 ../option.c:3864 -msgid "E522: Not found in termcap" -msgstr "E522: Termcap Ҳ" - -#: ../option.c:3335 -#, c-format -msgid "E539: Illegal character <%s>" -msgstr "E539: Чַ <%s>" - -#: ../option.c:3862 -msgid "E529: Cannot set 'term' to empty string" -msgstr "E529: 趨 'term' Ϊַ" - -#: ../option.c:3885 -msgid "E589: 'backupext' and 'patchmode' are equal" -msgstr "E589: 'backupext' 'patchmode' " - -#: ../option.c:3964 -msgid "E834: Conflicts with value of 'listchars'" -msgstr "" - -#: ../option.c:3966 -msgid "E835: Conflicts with value of 'fillchars'" -msgstr "" - -#: ../option.c:4163 -msgid "E524: Missing colon" -msgstr "E524: ȱð" - -#: ../option.c:4165 -msgid "E525: Zero length string" -msgstr "E525: ַΪ" - -#: ../option.c:4220 -#, c-format -msgid "E526: Missing number after <%s>" -msgstr "E526: <%s> ȱ" - -#: ../option.c:4232 -msgid "E527: Missing comma" -msgstr "E527: ȱٶ" - -#: ../option.c:4239 -msgid "E528: Must specify a ' value" -msgstr "E528: ָһ ' ֵ" - -#: ../option.c:4271 -msgid "E595: contains unprintable or wide character" -msgstr "E595: ʾַַ" - -#: ../option.c:4469 -#, c-format -msgid "E535: Illegal character after <%c>" -msgstr "E535: <%c> Чַ" - -#: ../option.c:4534 -msgid "E536: comma required" -msgstr "E536: Ҫ" - -#: ../option.c:4543 -#, c-format -msgid "E537: 'commentstring' must be empty or contain %s" -msgstr "E537: 'commentstring' Ϊջ %s" - -#: ../option.c:4928 -msgid "E540: Unclosed expression sequence" -msgstr "E540: ûнıʽ" - -#: ../option.c:4932 -msgid "E541: too many items" -msgstr "E541: Ŀ" - -#: ../option.c:4934 -msgid "E542: unbalanced groups" -msgstr "E542: ҵ" - -#: ../option.c:5148 -msgid "E590: A preview window already exists" -msgstr "E590: ԤѴ" - -#: ../option.c:5311 -msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'" -msgstr "W17: Arabic Ҫ UTF-8ִ ':set encoding=utf-8'" - -#: ../option.c:5623 -#, c-format -msgid "E593: Need at least %d lines" -msgstr "E593: Ҫ %d " - -#: ../option.c:5631 -#, c-format -msgid "E594: Need at least %d columns" -msgstr "E594: Ҫ %d " - -#: ../option.c:6011 -#, c-format -msgid "E355: Unknown option: %s" -msgstr "E355: δ֪ѡ: %s" - -#. There's another character after zeros or the string -#. * is empty. In both cases, we are trying to set a -#. * num option using a string. -#: ../option.c:6037 -#, fuzzy, c-format -msgid "E521: Number required: &%s = '%s'" -msgstr "E521: = Ҫ" - -#: ../option.c:6149 -msgid "" -"\n" -"--- Terminal codes ---" -msgstr "" -"\n" -"--- ն˱ ---" - -#: ../option.c:6151 -msgid "" -"\n" -"--- Global option values ---" -msgstr "" -"\n" -"--- ȫѡֵ ---" - -#: ../option.c:6153 -msgid "" -"\n" -"--- Local option values ---" -msgstr "" -"\n" -"--- ֲѡֵ ---" - -#: ../option.c:6155 -msgid "" -"\n" -"--- Options ---" -msgstr "" -"\n" -"--- ѡ ---" - -#: ../option.c:6816 -msgid "E356: get_varp ERROR" -msgstr "E356: get_varp " - -#: ../option.c:7696 -#, c-format -msgid "E357: 'langmap': Matching character missing for %s" -msgstr "E357: 'langmap': Ҳ %s Ӧַ" - -#: ../option.c:7715 -#, c-format -msgid "E358: 'langmap': Extra characters after semicolon: %s" -msgstr "E358: 'langmap': ֺźжַ: %s" - -#: ../os/shell.c:194 -msgid "" -"\n" -"Cannot execute shell " -msgstr "" -"\n" -"ִ shell" - -#: ../os/shell.c:439 -msgid "" -"\n" -"shell returned " -msgstr "" -"\n" -"Shell ѷ" - -#: ../os_unix.c:465 ../os_unix.c:471 -msgid "" -"\n" -"Could not get security context for " -msgstr "" - -#: ../os_unix.c:479 -msgid "" -"\n" -"Could not set security context for " -msgstr "" - -# do not translate -#: ../os_unix.c:1558 ../os_unix.c:1647 -#, c-format -msgid "dlerror = \"%s\"" -msgstr "dlerror = \"%s\"" - -#: ../path.c:1449 -#, c-format -msgid "E447: Can't find file \"%s\" in path" -msgstr "E447: ·Ҳļ \"%s\"" - -#: ../quickfix.c:359 -#, c-format -msgid "E372: Too many %%%c in format string" -msgstr "E372: ʽַ̫ %%%c " - -#: ../quickfix.c:371 -#, c-format -msgid "E373: Unexpected %%%c in format string" -msgstr "E373: ʽַӦó %%%c " - -#: ../quickfix.c:420 -msgid "E374: Missing ] in format string" -msgstr "E374: ʽַ ]" - -#: ../quickfix.c:431 -#, c-format -msgid "E375: Unsupported %%%c in format string" -msgstr "E375: ʽַвֵ֧ %%%c " - -#: ../quickfix.c:448 -#, c-format -msgid "E376: Invalid %%%c in format string prefix" -msgstr "E376: ʽַͷвȷ %%%c " - -#: ../quickfix.c:454 -#, c-format -msgid "E377: Invalid %%%c in format string" -msgstr "E377: ʽַвȷ %%%c " - -#. nothing found -#: ../quickfix.c:477 -msgid "E378: 'errorformat' contains no pattern" -msgstr "E378: 'errorformat' δ趨" - -#: ../quickfix.c:695 -msgid "E379: Missing or empty directory name" -msgstr "E379: ҲĿ¼ƻǿյĿ¼" - -#: ../quickfix.c:1305 -msgid "E553: No more items" -msgstr "E553: ûи" - -#: ../quickfix.c:1674 -#, c-format -msgid "(%d of %d)%s%s: " -msgstr "(%d / %d)%s%s: " - -#: ../quickfix.c:1676 -msgid " (line deleted)" -msgstr " (ɾ)" - -#: ../quickfix.c:1863 -msgid "E380: At bottom of quickfix stack" -msgstr "E380: Quickfix ջ" - -#: ../quickfix.c:1869 -msgid "E381: At top of quickfix stack" -msgstr "E381: Quickfix ջ" - -#: ../quickfix.c:1880 -#, c-format -msgid "error list %d of %d; %d errors" -msgstr "б %d / %d %d " - -#: ../quickfix.c:2427 -msgid "E382: Cannot write, 'buftype' option is set" -msgstr "E382: д룬趨ѡ 'buftype'" - -#: ../quickfix.c:2812 -msgid "E683: File name missing or invalid pattern" -msgstr "E683: ȱļģʽЧ" - -#: ../quickfix.c:2911 -#, c-format -msgid "Cannot open file \"%s\"" -msgstr "ļ \"%s\"" - -#: ../quickfix.c:3429 -msgid "E681: Buffer is not loaded" -msgstr "E681: δ" - -#: ../quickfix.c:3487 -msgid "E777: String or List expected" -msgstr "E777: ˴Ҫ String List" - -#: ../regexp.c:359 -#, c-format -msgid "E369: invalid item in %s%%[]" -msgstr "E369: %s%%[] Ч" - -#: ../regexp.c:374 -#, c-format -msgid "E769: Missing ] after %s[" -msgstr "E769: %s[ ȱ ]" - -#: ../regexp.c:375 -#, c-format -msgid "E53: Unmatched %s%%(" -msgstr "E53: ƥ %s%%(" - -#: ../regexp.c:376 -#, c-format -msgid "E54: Unmatched %s(" -msgstr "E54: ƥ %s(" - -#: ../regexp.c:377 -#, c-format -msgid "E55: Unmatched %s)" -msgstr "E55: ƥ %s)" - -#: ../regexp.c:378 -msgid "E66: \\z( not allowed here" -msgstr "E66: ˴ \\z(" - -#: ../regexp.c:379 -msgid "E67: \\z1 et al. not allowed here" -msgstr "E67: ˴ \\z1 " - -#: ../regexp.c:380 -#, c-format -msgid "E69: Missing ] after %s%%[" -msgstr "E69: %s%%[ ȱ ]" - -#: ../regexp.c:381 -#, c-format -msgid "E70: Empty %s%%[]" -msgstr "E70: յ %s%%[]" - -#: ../regexp.c:1209 ../regexp.c:1224 -msgid "E339: Pattern too long" -msgstr "E339: ģʽ̫" - -#: ../regexp.c:1371 -msgid "E50: Too many \\z(" -msgstr "E50: ̫ \\z(" - -#: ../regexp.c:1378 -#, c-format -msgid "E51: Too many %s(" -msgstr "E51: ̫ %s(" - -#: ../regexp.c:1427 -msgid "E52: Unmatched \\z(" -msgstr "E52: ƥ \\z(" - -#: ../regexp.c:1637 -#, c-format -msgid "E59: invalid character after %s@" -msgstr "E59: %s@ Чַ" - -#: ../regexp.c:1672 -#, c-format -msgid "E60: Too many complex %s{...}s" -msgstr "E60: ̫ิӵ %s{...}s" - -#: ../regexp.c:1687 -#, c-format -msgid "E61: Nested %s*" -msgstr "E61: Ƕ %s*" - -#: ../regexp.c:1690 -#, c-format -msgid "E62: Nested %s%c" -msgstr "E62: Ƕ %s%c" - -#: ../regexp.c:1800 -msgid "E63: invalid use of \\_" -msgstr "E63: ȷʹ \\_" - -#: ../regexp.c:1850 -#, c-format -msgid "E64: %s%c follows nothing" -msgstr "E64: %s%c ǰ" - -#: ../regexp.c:1902 -msgid "E65: Illegal back reference" -msgstr "E65: ЧĻ" - -#: ../regexp.c:1943 -msgid "E68: Invalid character after \\z" -msgstr "E68: \\z Чַ" - -#: ../regexp.c:2049 ../regexp_nfa.c:1296 -#, c-format -msgid "E678: Invalid character after %s%%[dxouU]" -msgstr "E678: %s%%[dxouU] Чַ" - -#: ../regexp.c:2107 -#, c-format -msgid "E71: Invalid character after %s%%" -msgstr "E71: %s%% Чַ" - -#: ../regexp.c:3017 -#, c-format -msgid "E554: Syntax error in %s{...}" -msgstr "E554: %s{...} " - -#: ../regexp.c:3805 -msgid "External submatches:\n" -msgstr "ⲿ:\n" - -#: ../regexp.c:7022 -msgid "" -"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be " -"used " -msgstr "" - -#: ../regexp_nfa.c:239 -msgid "E865: (NFA) Regexp end encountered prematurely" -msgstr "" - -#: ../regexp_nfa.c:240 -#, c-format -msgid "E866: (NFA regexp) Misplaced %c" -msgstr "" - -#: ../regexp_nfa.c:242 -#, c-format -msgid "E877: (NFA regexp) Invalid character class: %<PRId64>" -msgstr "" - -#: ../regexp_nfa.c:1261 -#, c-format -msgid "E867: (NFA) Unknown operator '\\z%c'" -msgstr "" - -#: ../regexp_nfa.c:1387 -#, c-format -msgid "E867: (NFA) Unknown operator '\\%%%c'" -msgstr "" - -#: ../regexp_nfa.c:1802 -#, c-format -msgid "E869: (NFA) Unknown operator '\\@%c'" -msgstr "" - -#: ../regexp_nfa.c:1831 -msgid "E870: (NFA regexp) Error reading repetition limits" -msgstr "" - -#. Can't have a multi follow a multi. -#: ../regexp_nfa.c:1895 -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" -msgstr "" - -#. Too many `(' -#: ../regexp_nfa.c:2037 -msgid "E872: (NFA regexp) Too many '('" -msgstr "" - -#: ../regexp_nfa.c:2042 -#, fuzzy -msgid "E879: (NFA regexp) Too many \\z(" -msgstr "E50: ̫ \\z(" - -#: ../regexp_nfa.c:2066 -msgid "E873: (NFA regexp) proper termination error" -msgstr "" - -#: ../regexp_nfa.c:2599 -msgid "E874: (NFA) Could not pop the stack !" -msgstr "" - -#: ../regexp_nfa.c:3298 -msgid "" -"E875: (NFA regexp) (While converting from postfix to NFA), too many states " -"left on stack" -msgstr "" - -#: ../regexp_nfa.c:3302 -msgid "E876: (NFA regexp) Not enough space to store the whole NFA " -msgstr "" - -#: ../regexp_nfa.c:4571 ../regexp_nfa.c:4869 -msgid "" -"Could not open temporary log file for writing, displaying on stderr ... " -msgstr "" - -#: ../regexp_nfa.c:4840 -#, c-format -msgid "(NFA) COULD NOT OPEN %s !" -msgstr "" - -#: ../regexp_nfa.c:6049 -#, fuzzy -msgid "Could not open temporary log file for writing " -msgstr "E214: Ҳдʱļ" - -#: ../screen.c:7435 -msgid " VREPLACE" -msgstr " V-滻" - -#: ../screen.c:7437 -msgid " REPLACE" -msgstr " 滻" - -#: ../screen.c:7440 -msgid " REVERSE" -msgstr " " - -#: ../screen.c:7441 -msgid " INSERT" -msgstr " " - -#: ../screen.c:7443 -msgid " (insert)" -msgstr " ()" - -#: ../screen.c:7445 -msgid " (replace)" -msgstr " (滻)" - -#: ../screen.c:7447 -msgid " (vreplace)" -msgstr " (V-滻)" - -#: ../screen.c:7449 -msgid " Hebrew" -msgstr " Hebrew" - -#: ../screen.c:7454 -msgid " Arabic" -msgstr " Arabic" - -#: ../screen.c:7456 -msgid " (lang)" -msgstr " ()" - -#: ../screen.c:7459 -msgid " (paste)" -msgstr " (ճ)" - -#: ../screen.c:7469 -msgid " VISUAL" -msgstr " " - -#: ../screen.c:7470 -msgid " VISUAL LINE" -msgstr " " - -#: ../screen.c:7471 -msgid " VISUAL BLOCK" -msgstr " " - -#: ../screen.c:7472 -msgid " SELECT" -msgstr " ѡ" - -#: ../screen.c:7473 -msgid " SELECT LINE" -msgstr " ѡ " - -#: ../screen.c:7474 -msgid " SELECT BLOCK" -msgstr " ѡ " - -#: ../screen.c:7486 ../screen.c:7541 -msgid "recording" -msgstr "¼" - -#: ../search.c:487 -#, c-format -msgid "E383: Invalid search string: %s" -msgstr "E383: ЧIJַ: %s" - -#: ../search.c:832 -#, c-format -msgid "E384: search hit TOP without match for: %s" -msgstr "E384: ѲҵļͷҲ %s" - -#: ../search.c:835 -#, c-format -msgid "E385: search hit BOTTOM without match for: %s" -msgstr "E385: ѲҵļβҲ %s" - -#: ../search.c:1200 -msgid "E386: Expected '?' or '/' after ';'" -msgstr "E386: ';' Ӧ '?' '/'" - -#: ../search.c:4085 -msgid " (includes previously listed match)" -msgstr " (ϴг)" - -#. cursor at status line -#: ../search.c:4104 -msgid "--- Included files " -msgstr "--- ļ " - -#: ../search.c:4106 -msgid "not found " -msgstr "Ҳ " - -#: ../search.c:4107 -msgid "in path ---\n" -msgstr "· ---\n" - -#: ../search.c:4168 -msgid " (Already listed)" -msgstr " (г)" - -#: ../search.c:4170 -msgid " NOT FOUND" -msgstr " Ҳ" - -#: ../search.c:4211 -#, c-format -msgid "Scanning included file: %s" -msgstr "Ұļ: %s" - -#: ../search.c:4216 -#, c-format -msgid "Searching included file %s" -msgstr "Ұļ %s" - -#: ../search.c:4405 -msgid "E387: Match is on current line" -msgstr "E387: ǰƥ" - -#: ../search.c:4517 -msgid "All included files were found" -msgstr "аļҵ" - -#: ../search.c:4519 -msgid "No included files" -msgstr "ûаļ" - -#: ../search.c:4527 -msgid "E388: Couldn't find definition" -msgstr "E388: Ҳ" - -#: ../search.c:4529 -msgid "E389: Couldn't find pattern" -msgstr "E389: Ҳ pattern" - -#: ../search.c:4668 -#, fuzzy -msgid "Substitute " -msgstr "1 滻" - -#: ../search.c:4681 -#, c-format -msgid "" -"\n" -"# Last %sSearch Pattern:\n" -"~" -msgstr "" - -#: ../spell.c:951 -msgid "E759: Format error in spell file" -msgstr "E759: ƴдļʽ" - -#: ../spell.c:952 -msgid "E758: Truncated spell file" -msgstr "E758: ѽضϵƴдļ" - -#: ../spell.c:953 -#, c-format -msgid "Trailing text in %s line %d: %s" -msgstr "%s %d Уĺַ: %s" - -#: ../spell.c:954 -#, c-format -msgid "Affix name too long in %s line %d: %s" -msgstr "%s %d У̫: %s" - -#: ../spell.c:955 -msgid "E761: Format error in affix file FOL, LOW or UPP" -msgstr "E761: ļ FOLLOW UPP иʽ" - -#: ../spell.c:957 -msgid "E762: Character in FOL, LOW or UPP is out of range" -msgstr "E762: FOLLOW UPP ַΧ" - -#: ../spell.c:958 -msgid "Compressing word tree..." -msgstr "ѹ" - -#: ../spell.c:1951 -msgid "E756: Spell checking is not enabled" -msgstr "E756: ƴдδ" - -#: ../spell.c:2249 -#, c-format -msgid "Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\"" -msgstr ": Ҳб \"%s.%s.spl\" or \"%s.ascii.spl\"" - -#: ../spell.c:2473 -#, c-format -msgid "Reading spell file \"%s\"" -msgstr "ȡƴдļ \"%s\"" - -#: ../spell.c:2496 -msgid "E757: This does not look like a spell file" -msgstr "E757: ⿴ƴдļ" - -#: ../spell.c:2501 -msgid "E771: Old spell file, needs to be updated" -msgstr "E771: ɰ汾ƴдļҪ" - -#: ../spell.c:2504 -msgid "E772: Spell file is for newer version of Vim" -msgstr "E772: Ϊ߰汾 Vim õƴдļ" - -#: ../spell.c:2602 -msgid "E770: Unsupported section in spell file" -msgstr "E770: ƴдļдڲֵ֧Ľ" - -#: ../spell.c:3762 -#, c-format -msgid "Warning: region %s not supported" -msgstr ": %s ֧" - -#: ../spell.c:4550 -#, c-format -msgid "Reading affix file %s ..." -msgstr "ȡļ %s " - -#: ../spell.c:4589 ../spell.c:5635 ../spell.c:6140 -#, c-format -msgid "Conversion failure for word in %s line %d: %s" -msgstr " %s תʧܣ %d : %s" - -#: ../spell.c:4630 ../spell.c:6170 -#, c-format -msgid "Conversion in %s not supported: from %s to %s" -msgstr "֧ %s еת: %s %s" - -#: ../spell.c:4642 -#, c-format -msgid "Invalid value for FLAG in %s line %d: %s" -msgstr "%s %d УFLAG ֵЧ: %s" - -#: ../spell.c:4655 -#, c-format -msgid "FLAG after using flags in %s line %d: %s" -msgstr "%s %d Уʹñ־ FLAG: %s" - -#: ../spell.c:4723 -#, c-format -msgid "" -"Defining COMPOUNDFORBIDFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" - -#: ../spell.c:4731 -#, c-format -msgid "" -"Defining COMPOUNDPERMITFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" - -#: ../spell.c:4747 -#, fuzzy, c-format -msgid "Wrong COMPOUNDRULES value in %s line %d: %s" -msgstr "%s %d У COMPOUNDMIN ֵ: %s" - -#: ../spell.c:4771 -#, c-format -msgid "Wrong COMPOUNDWORDMAX value in %s line %d: %s" -msgstr "%s %d У COMPOUNDWORDMAX ֵ: %s" - -#: ../spell.c:4777 -#, c-format -msgid "Wrong COMPOUNDMIN value in %s line %d: %s" -msgstr "%s %d У COMPOUNDMIN ֵ: %s" - -#: ../spell.c:4783 -#, c-format -msgid "Wrong COMPOUNDSYLMAX value in %s line %d: %s" -msgstr "%s %d У COMPOUNDSYLMAX ֵ: %s" - -#: ../spell.c:4795 -#, c-format -msgid "Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s" -msgstr "%s %d У CHECKCOMPOUNDPATTERN ֵ: %s" - -#: ../spell.c:4847 -#, c-format -msgid "Different combining flag in continued affix block in %s line %d: %s" -msgstr "%s %d Уĸӿгֲͬϱ־: %s" - -#: ../spell.c:4850 -#, c-format -msgid "Duplicate affix in %s line %d: %s" -msgstr "%s %d Уظĸ: %s" - -#: ../spell.c:4871 -#, c-format -msgid "" -"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s " -"line %d: %s" -msgstr "" -"%s %d У BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST ʹ" -": %s" - -#: ../spell.c:4893 -#, c-format -msgid "Expected Y or N in %s line %d: %s" -msgstr "%s %d У˴Ҫ Y N: %s" - -#: ../spell.c:4968 -#, c-format -msgid "Broken condition in %s line %d: %s" -msgstr "%s %d У: %s" - -#: ../spell.c:5091 -#, c-format -msgid "Expected REP(SAL) count in %s line %d" -msgstr "%s %d У˴Ҫ REP(SAL) " - -#: ../spell.c:5120 -#, c-format -msgid "Expected MAP count in %s line %d" -msgstr "%s %d У˴Ҫ MAP " - -#: ../spell.c:5132 -#, c-format -msgid "Duplicate character in MAP in %s line %d" -msgstr "%s %d УMAP дظַ" - -#: ../spell.c:5176 -#, c-format -msgid "Unrecognized or duplicate item in %s line %d: %s" -msgstr "%s %d Уʶظ: %s" - -#: ../spell.c:5197 -#, c-format -msgid "Missing FOL/LOW/UPP line in %s" -msgstr "%s ȱ FOL/LOW/UPP " - -#: ../spell.c:5220 -msgid "COMPOUNDSYLMAX used without SYLLABLE" -msgstr "û SYLLABLE ʹ COMPOUNDSYLMAX" - -#: ../spell.c:5236 -msgid "Too many postponed prefixes" -msgstr "̫ӳǰ" - -#: ../spell.c:5238 -msgid "Too many compound flags" -msgstr "̫ϱ־" - -#: ../spell.c:5240 -msgid "Too many postponed prefixes and/or compound flags" -msgstr "̫ӳǰ/ϱ־" - -#: ../spell.c:5250 -#, c-format -msgid "Missing SOFO%s line in %s" -msgstr "%s ȱ SOFO%s " - -#: ../spell.c:5253 -#, c-format -msgid "Both SAL and SOFO lines in %s" -msgstr "%s ͬʱ SQL SOFO " - -#: ../spell.c:5331 -#, c-format -msgid "Flag is not a number in %s line %d: %s" -msgstr "%s %d У־: %s" - -#: ../spell.c:5334 -#, c-format -msgid "Illegal flag in %s line %d: %s" -msgstr "%s %d УЧı־: %s" - -#: ../spell.c:5493 ../spell.c:5501 -#, c-format -msgid "%s value differs from what is used in another .aff file" -msgstr "%s ֵһ .aff ļʹõֵͬ" - -#: ../spell.c:5602 -#, c-format -msgid "Reading dictionary file %s ..." -msgstr "ȡֵļ %s " - -#: ../spell.c:5611 -#, c-format -msgid "E760: No word count in %s" -msgstr "E760: %s ûеʼ" - -#: ../spell.c:5669 -#, c-format -msgid "line %6d, word %6d - %s" -msgstr " %6d У %6d - %s" - -#: ../spell.c:5691 -#, c-format -msgid "Duplicate word in %s line %d: %s" -msgstr "%s %d Уظĵ: %s" - -#: ../spell.c:5694 -#, c-format -msgid "First duplicate word in %s line %d: %s" -msgstr "%s %d У״ظĵ: %s" - -#: ../spell.c:5746 -#, c-format -msgid "%d duplicate word(s) in %s" -msgstr " %d ظĵʣ %s " - -#: ../spell.c:5748 -#, c-format -msgid "Ignored %d word(s) with non-ASCII characters in %s" -msgstr "˺з ASCII ַ %d ʣ %s " - -#: ../spell.c:6115 -#, c-format -msgid "Reading word file %s ..." -msgstr "ȡļ %s " - -#: ../spell.c:6155 -#, c-format -msgid "Duplicate /encoding= line ignored in %s line %d: %s" -msgstr "" - -#: ../spell.c:6159 -#, c-format -msgid "/encoding= line after word ignored in %s line %d: %s" -msgstr "%s %d Уʺ /encoding= ѱ: %s" - -#: ../spell.c:6180 -#, c-format -msgid "Duplicate /regions= line ignored in %s line %d: %s" -msgstr "%s %d Уظ /regions= ѱ: %s" - -#: ../spell.c:6185 -#, c-format -msgid "Too many regions in %s line %d: %s" -msgstr "%s %d У̫: %s" - -#: ../spell.c:6198 -#, c-format -msgid "/ line ignored in %s line %d: %s" -msgstr "%s %d У/ ѱ: %s" - -#: ../spell.c:6224 -#, c-format -msgid "Invalid region nr in %s line %d: %s" -msgstr "%s %d УЧ: %s" - -#: ../spell.c:6230 -#, c-format -msgid "Unrecognized flags in %s line %d: %s" -msgstr "%s %d Уʶı־: %s" - -#: ../spell.c:6257 -#, c-format -msgid "Ignored %d words with non-ASCII characters" -msgstr "˺з ASCII ַ %d " - -#: ../spell.c:6656 -#, c-format -msgid "Compressed %d of %d nodes; %d (%d%%) remaining" -msgstr "ѹ %d/%d ڵ㣻ʣ %d (%d%%)" - -#: ../spell.c:7340 -msgid "Reading back spell file..." -msgstr "ȡƴдļ" - -#. Go through the trie of good words, soundfold each word and add it to -#. the soundfold trie. -#: ../spell.c:7357 -msgid "Performing soundfolding..." -msgstr " soundfolding" - -#: ../spell.c:7368 -#, c-format -msgid "Number of words after soundfolding: %<PRId64>" -msgstr "soundfolding ĵ: %<PRId64>" - -#: ../spell.c:7476 -#, c-format -msgid "Total number of words: %d" -msgstr ": %d" - -#: ../spell.c:7655 -#, c-format -msgid "Writing suggestion file %s ..." -msgstr "д뽨ļ %s " - -#: ../spell.c:7707 ../spell.c:7927 -#, c-format -msgid "Estimated runtime memory use: %d bytes" -msgstr "ʱڴ: %d ֽ" - -#: ../spell.c:7820 -msgid "E751: Output file name must not have region name" -msgstr "E751: ļܺ" - -#: ../spell.c:7822 -msgid "E754: Only up to 8 regions supported" -msgstr "E754: ֻ֧ 8 " - -#: ../spell.c:7846 -#, c-format -msgid "E755: Invalid region in %s" -msgstr "E755: %s ЧķΧ" - -#: ../spell.c:7907 -msgid "Warning: both compounding and NOBREAK specified" -msgstr ": ͬʱָ compounding NOBREAK" - -#: ../spell.c:7920 -#, c-format -msgid "Writing spell file %s ..." -msgstr "дƴдļ %s " - -#: ../spell.c:7925 -msgid "Done!" -msgstr "ɣ" - -#: ../spell.c:8034 -#, c-format -msgid "E765: 'spellfile' does not have %<PRId64> entries" -msgstr "E765: 'spellfile' û %<PRId64> " - -#: ../spell.c:8074 -#, fuzzy, c-format -msgid "Word '%.*s' removed from %s" -msgstr " %s ɾ˵" - -#: ../spell.c:8117 -#, fuzzy, c-format -msgid "Word '%.*s' added to %s" -msgstr " %s ˵" - -#: ../spell.c:8381 -msgid "E763: Word characters differ between spell files" -msgstr "E763: ƴдļַ֮ͬ" - -#: ../spell.c:8684 -msgid "Sorry, no suggestions" -msgstr "Ǹûн" - -#: ../spell.c:8687 -#, c-format -msgid "Sorry, only %<PRId64> suggestions" -msgstr "Ǹֻ %<PRId64> " - -#. for when 'cmdheight' > 1 -#. avoid more prompt -#: ../spell.c:8704 -#, c-format -msgid "Change \"%.*s\" to:" -msgstr " \"%.*s\" Ϊ" - -#: ../spell.c:8737 -#, c-format -msgid " < \"%.*s\"" -msgstr " < \"%.*s\"" - -#: ../spell.c:8882 -msgid "E752: No previous spell replacement" -msgstr "E752: ֮ǰûƴд滻" - -#: ../spell.c:8925 -#, c-format -msgid "E753: Not found: %s" -msgstr "E753: Ҳ: %s" - -#: ../spell.c:9276 -#, c-format -msgid "E778: This does not look like a .sug file: %s" -msgstr "E778: .sug ļ: %s" - -#: ../spell.c:9282 -#, c-format -msgid "E779: Old .sug file, needs to be updated: %s" -msgstr "" - -#: ../spell.c:9286 -#, c-format -msgid "E780: .sug file is for newer version of Vim: %s" -msgstr "" - -#: ../spell.c:9295 -#, c-format -msgid "E781: .sug file doesn't match .spl file: %s" -msgstr "" - -#: ../spell.c:9305 -#, fuzzy, c-format -msgid "E782: error while reading .sug file: %s" -msgstr "E47: ȡļʧ" - -#. This should have been checked when generating the .spl -#. file. -#: ../spell.c:11575 -msgid "E783: duplicate char in MAP entry" -msgstr "" - -#: ../syntax.c:266 -msgid "No Syntax items defined for this buffer" -msgstr "ûжκ" - -#: ../syntax.c:3083 ../syntax.c:3104 ../syntax.c:3127 -#, c-format -msgid "E390: Illegal argument: %s" -msgstr "E390: ЧIJ: %s" - -#: ../syntax.c:3299 -#, c-format -msgid "E391: No such syntax cluster: %s" -msgstr "E391: cluster: \"%s\"" - -#: ../syntax.c:3433 -msgid "syncing on C-style comments" -msgstr "Cעͬ" - -#: ../syntax.c:3439 -msgid "no syncing" -msgstr "ûͬ" - -#: ../syntax.c:3441 -msgid "syncing starts " -msgstr "ͬʼ" - -#: ../syntax.c:3443 ../syntax.c:3506 -msgid " lines before top line" -msgstr "кųΧ" - -#: ../syntax.c:3448 -msgid "" -"\n" -"--- Syntax sync items ---" -msgstr "" -"\n" -"--- ͬĿ (Syntax sync items) ---" - -#: ../syntax.c:3452 -msgid "" -"\n" -"syncing on items" -msgstr "" -"\n" -"ͬ:" - -#: ../syntax.c:3457 -msgid "" -"\n" -"--- Syntax items ---" -msgstr "" -"\n" -"--- Ŀ ---" - -#: ../syntax.c:3475 -#, c-format -msgid "E392: No such syntax cluster: %s" -msgstr "E392: cluster: \"%s\"" - -#: ../syntax.c:3497 -msgid "minimal " -msgstr "С" - -#: ../syntax.c:3503 -msgid "maximal " -msgstr "" - -#: ../syntax.c:3513 -#, fuzzy -msgid "; match " -msgstr "ƥ %d" - -#: ../syntax.c:3515 -#, fuzzy -msgid " line breaks" -msgstr "һ" - -#: ../syntax.c:4076 -msgid "E395: contains argument not accepted here" -msgstr "E395: ʹ˲ȷIJ" - -#: ../syntax.c:4096 -#, fuzzy -msgid "E844: invalid cchar value" -msgstr "E474: ЧIJ" - -#: ../syntax.c:4107 -msgid "E393: group[t]here not accepted here" -msgstr "E393: ʹ˲ȷIJ" - -#: ../syntax.c:4126 -#, c-format -msgid "E394: Didn't find region item for %s" -msgstr "E394: Ҳ %s region item" - -#: ../syntax.c:4188 -msgid "E397: Filename required" -msgstr "E397: Ҫļ" - -#: ../syntax.c:4221 -#, fuzzy -msgid "E847: Too many syntax includes" -msgstr "E77: ļ" - -#: ../syntax.c:4303 -#, fuzzy, c-format -msgid "E789: Missing ']': %s" -msgstr "E747: ȱ ']': %s" - -#: ../syntax.c:4531 -#, c-format -msgid "E398: Missing '=': %s" -msgstr "E398: ȱ '=': %s" - -#: ../syntax.c:4666 -#, c-format -msgid "E399: Not enough arguments: syntax region %s" -msgstr "E399: syntax region %s IJ̫" - -#: ../syntax.c:4870 -#, fuzzy -msgid "E848: Too many syntax clusters" -msgstr "E391: cluster: \"%s\"" - -#: ../syntax.c:4954 -msgid "E400: No cluster specified" -msgstr "E400: ûָ" - -#. end delimiter not found -#: ../syntax.c:4986 -#, c-format -msgid "E401: Pattern delimiter not found: %s" -msgstr "E401: Ҳָ: %s" - -#: ../syntax.c:5049 -#, c-format -msgid "E402: Garbage after pattern: %s" -msgstr "E402: '%s' Ķʶ" - -#: ../syntax.c:5120 -msgid "E403: syntax sync: line continuations pattern specified twice" -msgstr "E403: ͬ: зָ" - -#: ../syntax.c:5169 -#, c-format -msgid "E404: Illegal arguments: %s" -msgstr "E404: ЧIJ: %s" - -#: ../syntax.c:5217 -#, c-format -msgid "E405: Missing equal sign: %s" -msgstr "E405: ȱٵȺ: %s" - -#: ../syntax.c:5222 -#, c-format -msgid "E406: Empty argument: %s" -msgstr "E406: յIJ: %s" - -#: ../syntax.c:5240 -#, c-format -msgid "E407: %s not allowed here" -msgstr "E407: %s ڴ˳" - -#: ../syntax.c:5246 -#, c-format -msgid "E408: %s must be first in contains list" -msgstr "E408: %s бĵһ" - -#: ../syntax.c:5304 -#, c-format -msgid "E409: Unknown group name: %s" -msgstr "E409: ȷ: %s" - -#: ../syntax.c:5512 -#, c-format -msgid "E410: Invalid :syntax subcommand: %s" -msgstr "E410: ȷ :syntax : %s" - -#: ../syntax.c:5854 -msgid "" -" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN" -msgstr "" - -#: ../syntax.c:6146 -msgid "E679: recursive loop loading syncolor.vim" -msgstr "E679: syncolor.vim ʱǶѭ" - -#: ../syntax.c:6256 -#, c-format -msgid "E411: highlight group not found: %s" -msgstr "E411: Ҳ highlight group: %s" - -#: ../syntax.c:6278 -#, c-format -msgid "E412: Not enough arguments: \":highlight link %s\"" -msgstr "E412: ̫: \":highlight link %s\"" - -#: ../syntax.c:6284 -#, c-format -msgid "E413: Too many arguments: \":highlight link %s\"" -msgstr "E413: : \":highlight link %s\"" - -#: ../syntax.c:6302 -msgid "E414: group has settings, highlight link ignored" -msgstr "E414: 趨, highlight link" - -#: ../syntax.c:6367 -#, c-format -msgid "E415: unexpected equal sign: %s" -msgstr "E415: еĵȺ: %s" - -#: ../syntax.c:6395 -#, c-format -msgid "E416: missing equal sign: %s" -msgstr "E416: ȱٵȺ: %s" - -#: ../syntax.c:6418 -#, c-format -msgid "E417: missing argument: %s" -msgstr "E417: ȱٲ: %s" - -#: ../syntax.c:6446 -#, c-format -msgid "E418: Illegal value: %s" -msgstr "E418: Ϸֵ: %s" - -#: ../syntax.c:6496 -msgid "E419: FG color unknown" -msgstr "E419: ǰɫ" - -#: ../syntax.c:6504 -msgid "E420: BG color unknown" -msgstr "E420: ıɫ" - -#: ../syntax.c:6564 -#, c-format -msgid "E421: Color name or number not recognized: %s" -msgstr "E421: ɫƻֵ: %s" - -#: ../syntax.c:6714 -#, c-format -msgid "E422: terminal code too long: %s" -msgstr "E422: ն˱̫: %s" - -#: ../syntax.c:6753 -#, c-format -msgid "E423: Illegal argument: %s" -msgstr "E423: ЧIJ: %s" - -#: ../syntax.c:6925 -msgid "E424: Too many different highlighting attributes in use" -msgstr "E424: ʹ̫ͬĸ" - -#: ../syntax.c:7427 -msgid "E669: Unprintable character in group name" -msgstr "E669: дڲʾַ" - -#: ../syntax.c:7434 -msgid "W18: Invalid character in group name" -msgstr "W18: кЧַ" - -#: ../syntax.c:7448 -msgid "E849: Too many highlight and syntax groups" -msgstr "" - -#: ../tag.c:104 -msgid "E555: at bottom of tag stack" -msgstr "E555: tag ջײ" - -#: ../tag.c:105 -msgid "E556: at top of tag stack" -msgstr "E556: tag ջ" - -#: ../tag.c:380 -msgid "E425: Cannot go before first matching tag" -msgstr "E425: ѵһƥ tag" - -#: ../tag.c:504 -#, c-format -msgid "E426: tag not found: %s" -msgstr "E426: Ҳ tag: %s" - -#: ../tag.c:528 -msgid " # pri kind tag" -msgstr " # pri kind tag" - -#: ../tag.c:531 -msgid "file\n" -msgstr "ļ\n" - -#: ../tag.c:829 -msgid "E427: There is only one matching tag" -msgstr "E427: ֻһƥ tag" - -#: ../tag.c:831 -msgid "E428: Cannot go beyond last matching tag" -msgstr "E428: һƥ tag" - -#: ../tag.c:850 -#, c-format -msgid "File \"%s\" does not exist" -msgstr "ļ \"%s\" " - -#. Give an indication of the number of matching tags -#: ../tag.c:859 -#, c-format -msgid "tag %d of %d%s" -msgstr "ҵ tag: %d / %d%s" - -#: ../tag.c:862 -msgid " or more" -msgstr " " - -#: ../tag.c:864 -msgid " Using tag with different case!" -msgstr " ԲͬСдʹ tag" - -#: ../tag.c:909 -#, c-format -msgid "E429: File \"%s\" does not exist" -msgstr "E429: ļ \"%s\" " - -#. Highlight title -#: ../tag.c:960 -msgid "" -"\n" -" # TO tag FROM line in file/text" -msgstr "" -"\n" -" # tag ļ/ı" - -#: ../tag.c:1303 -#, c-format -msgid "Searching tags file %s" -msgstr " tag ļ %s" - -#: ../tag.c:1545 -msgid "Ignoring long line in tags file" -msgstr "" - -#: ../tag.c:1915 -#, c-format -msgid "E431: Format error in tags file \"%s\"" -msgstr "E431: Tag ļ \"%s\" ʽ" - -#: ../tag.c:1917 -#, c-format -msgid "Before byte %<PRId64>" -msgstr "ڵ %<PRId64> ֽ֮ǰ" - -#: ../tag.c:1929 -#, c-format -msgid "E432: Tags file not sorted: %s" -msgstr "E432: Tag ļδ: %s" - -#. never opened any tags file -#: ../tag.c:1960 -msgid "E433: No tags file" -msgstr "E433: û tag ļ" - -#: ../tag.c:2536 -msgid "E434: Can't find tag pattern" -msgstr "E434: Ҳ tag ģʽ" - -#: ../tag.c:2544 -msgid "E435: Couldn't find tag, just guessing!" -msgstr "E435: Ҳ tagŲ£" - -#: ../tag.c:2797 -#, fuzzy, c-format -msgid "Duplicate field name: %s" -msgstr "%s %d Уظĸ: %s" - -#: ../term.c:1442 -msgid "' not known. Available builtin terminals are:" -msgstr "' δ֪õڽն:" - -#: ../term.c:1463 -msgid "defaulting to '" -msgstr "ĬֵΪ: '" - -#: ../term.c:1731 -msgid "E557: Cannot open termcap file" -msgstr "E557: termcap ļ" - -#: ../term.c:1735 -msgid "E558: Terminal entry not found in terminfo" -msgstr "E558: terminfo Ҳն" - -#: ../term.c:1737 -msgid "E559: Terminal entry not found in termcap" -msgstr "E559: termcap Ҳն" - -#: ../term.c:1878 -#, c-format -msgid "E436: No \"%s\" entry in termcap" -msgstr "E436: termcap û \"%s\" " - -#: ../term.c:2249 -msgid "E437: terminal capability \"cm\" required" -msgstr "E437: նҪ \"cm\"" - -#. Highlight title -#: ../term.c:4376 -msgid "" -"\n" -"--- Terminal keys ---" -msgstr "" -"\n" -"--- ն˰ ---" - -#: ../ui.c:481 -msgid "Vim: Error reading input, exiting...\n" -msgstr "Vim: ˳...\n" - -#. This happens when the FileChangedRO autocommand changes the -#. * file in a way it becomes shorter. -#: ../undo.c:379 -#, fuzzy -msgid "E881: Line count changed unexpectedly" -msgstr "E787: ظı˻" - -#: ../undo.c:627 -#, fuzzy, c-format -msgid "E828: Cannot open undo file for writing: %s" -msgstr "E212: дļ" - -#: ../undo.c:717 -#, c-format -msgid "E825: Corrupted undo file (%s): %s" -msgstr "" - -#: ../undo.c:1039 -msgid "Cannot write undo file in any directory in 'undodir'" -msgstr "" - -#: ../undo.c:1074 -#, c-format -msgid "Will not overwrite with undo file, cannot read: %s" -msgstr "" - -#: ../undo.c:1092 -#, c-format -msgid "Will not overwrite, this is not an undo file: %s" -msgstr "" - -#: ../undo.c:1108 -msgid "Skipping undo file write, nothing to undo" -msgstr "" - -#: ../undo.c:1121 -#, fuzzy, c-format -msgid "Writing undo file: %s" -msgstr "д viminfo ļ \"%s\"" - -#: ../undo.c:1213 -#, fuzzy, c-format -msgid "E829: write error in undo file: %s" -msgstr "E297: ļд" - -#: ../undo.c:1280 -#, c-format -msgid "Not reading undo file, owner differs: %s" -msgstr "" - -#: ../undo.c:1292 -#, fuzzy, c-format -msgid "Reading undo file: %s" -msgstr "ȡļ %s " - -#: ../undo.c:1299 -#, fuzzy, c-format -msgid "E822: Cannot open undo file for reading: %s" -msgstr "E195: ȡ viminfo ļ" - -#: ../undo.c:1308 -#, fuzzy, c-format -msgid "E823: Not an undo file: %s" -msgstr "E753: Ҳ: %s" - -#: ../undo.c:1313 -#, fuzzy, c-format -msgid "E824: Incompatible undo file: %s" -msgstr "E484: ļ %s" - -#: ../undo.c:1328 -msgid "File contents changed, cannot use undo info" -msgstr "" - -#: ../undo.c:1497 -#, fuzzy, c-format -msgid "Finished reading undo file %s" -msgstr "ִ %s" - -#: ../undo.c:1586 ../undo.c:1812 -msgid "Already at oldest change" -msgstr "λɵĸı" - -#: ../undo.c:1597 ../undo.c:1814 -msgid "Already at newest change" -msgstr "λµĸı" - -#: ../undo.c:1806 -#, fuzzy, c-format -msgid "E830: Undo number %<PRId64> not found" -msgstr "Ҳ %<PRId64>" - -#: ../undo.c:1979 -msgid "E438: u_undo: line numbers wrong" -msgstr "E438: u_undo: кŴ" - -#: ../undo.c:2183 -msgid "more line" -msgstr "б" - -#: ../undo.c:2185 -msgid "more lines" -msgstr "б" - -#: ../undo.c:2187 -msgid "line less" -msgstr "бȥ" - -#: ../undo.c:2189 -msgid "fewer lines" -msgstr "бȥ" - -#: ../undo.c:2193 -msgid "change" -msgstr "зı" - -#: ../undo.c:2195 -msgid "changes" -msgstr "зı" - -#: ../undo.c:2225 -#, c-format -msgid "%<PRId64> %s; %s #%<PRId64> %s" -msgstr "%<PRId64> %s%s #%<PRId64> %s" - -#: ../undo.c:2228 -msgid "before" -msgstr "before" - -#: ../undo.c:2228 -msgid "after" -msgstr "after" - -#: ../undo.c:2325 -msgid "Nothing to undo" -msgstr "ɳ" - -#: ../undo.c:2330 -msgid "number changes when saved" -msgstr "" - -#: ../undo.c:2360 -#, fuzzy, c-format -msgid "%<PRId64> seconds ago" -msgstr "%<PRId64> ; " - -#: ../undo.c:2372 -#, fuzzy -msgid "E790: undojoin is not allowed after undo" -msgstr "E407: %s ڴ˳" - -#: ../undo.c:2466 -msgid "E439: undo list corrupt" -msgstr "E439: б" - -#: ../undo.c:2495 -msgid "E440: undo line missing" -msgstr "E440: ҲҪ" - -#: ../version.c:600 -msgid "" -"\n" -"Included patches: " -msgstr "" -"\n" -": " - -#: ../version.c:627 -#, fuzzy -msgid "" -"\n" -"Extra patches: " -msgstr "ⲿ:\n" - -#: ../version.c:639 ../version.c:864 -msgid "Modified by " -msgstr " " - -#: ../version.c:646 -msgid "" -"\n" -"Compiled " -msgstr "" -"\n" -"" - -#: ../version.c:649 -msgid "by " -msgstr " " - -#: ../version.c:660 -msgid "" -"\n" -"Huge version " -msgstr "" -"\n" -"Ͱ汾 " - -#: ../version.c:661 -msgid "without GUI." -msgstr "ͼν档" - -#: ../version.c:662 -msgid " Features included (+) or not (-):\n" -msgstr " ʹ(+)벻ʹ(-)Ĺ:\n" - -#: ../version.c:667 -msgid " system vimrc file: \"" -msgstr " ϵͳ vimrc ļ: \"" - -#: ../version.c:672 -msgid " user vimrc file: \"" -msgstr " û vimrc ļ: \"" - -#: ../version.c:677 -msgid " 2nd user vimrc file: \"" -msgstr " ڶû vimrc ļ: \"" - -#: ../version.c:682 -msgid " 3rd user vimrc file: \"" -msgstr " û vimrc ļ: \"" - -#: ../version.c:687 -msgid " user exrc file: \"" -msgstr " û exrc ļ: \"" - -#: ../version.c:692 -msgid " 2nd user exrc file: \"" -msgstr " ڶû exrc ļ: \"" - -#: ../version.c:699 -msgid " fall-back for $VIM: \"" -msgstr " $VIM Ԥֵ: \"" - -#: ../version.c:705 -msgid " f-b for $VIMRUNTIME: \"" -msgstr " $VIMRUNTIME Ԥֵ: \"" - -#: ../version.c:709 -msgid "Compilation: " -msgstr "뷽ʽ: " - -#: ../version.c:712 -msgid "Linking: " -msgstr "ӷʽ: " - -#: ../version.c:717 -msgid " DEBUG BUILD" -msgstr " 汾" - -#: ../version.c:767 -msgid "VIM - Vi IMproved" -msgstr "VIM - Vi IMproved" - -#: ../version.c:769 -msgid "version " -msgstr "汾 " - -#: ../version.c:770 -msgid "by Bram Moolenaar et al." -msgstr "ά Bram Moolenaar " - -#: ../version.c:774 -msgid "Vim is open source and freely distributable" -msgstr "Vim ǿɷַĿԴ" - -#: ../version.c:776 -msgid "Help poor children in Uganda!" -msgstr "ڸɴĿͯ" - -#: ../version.c:777 -msgid "type :help iccf<Enter> for information " -msgstr " :help iccf<Enter> 鿴˵ " - -#: ../version.c:779 -msgid "type :q<Enter> to exit " -msgstr " :q<Enter> ˳ " - -#: ../version.c:780 -msgid "type :help<Enter> or <F1> for on-line help" -msgstr " :help<Enter> <F1> 鿴߰ " - -#: ../version.c:781 -msgid "type :help version7<Enter> for version info" -msgstr " :help version7<Enter> 鿴汾Ϣ " - -#: ../version.c:784 -msgid "Running in Vi compatible mode" -msgstr " Vi ģʽ" - -#: ../version.c:785 -msgid "type :set nocp<Enter> for Vim defaults" -msgstr " :set nocp<Enter> ָĬϵ Vim " - -#: ../version.c:786 -msgid "type :help cp-default<Enter> for info on this" -msgstr " :help cp-default<Enter> 鿴˵ " - -#: ../version.c:827 -msgid "Sponsor Vim development!" -msgstr " Vim Ŀ" - -#: ../version.c:828 -msgid "Become a registered Vim user!" -msgstr "Ϊ Vim עû" - -#: ../version.c:831 -msgid "type :help sponsor<Enter> for information " -msgstr " :help sponsor<Enter> 鿴˵ " - -#: ../version.c:832 -msgid "type :help register<Enter> for information " -msgstr " :help register<Enter> 鿴˵ " - -#: ../version.c:834 -msgid "menu Help->Sponsor/Register for information " -msgstr "˵ Help->Sponsor/Register 鿴˵ " - -#: ../window.c:119 -msgid "Already only one window" -msgstr "Ѿֻʣһ" - -#: ../window.c:224 -msgid "E441: There is no preview window" -msgstr "E441: ûԤ" - -#: ../window.c:559 -msgid "E442: Can't split topleft and botright at the same time" -msgstr "E442: ͬʱ topleft botright ָ" - -#: ../window.c:1228 -msgid "E443: Cannot rotate when another window is split" -msgstr "E443: ָʱת" - -#: ../window.c:1803 -msgid "E444: Cannot close last window" -msgstr "E444: ܹرһ" - -#: ../window.c:1810 -#, fuzzy -msgid "E813: Cannot close autocmd window" -msgstr "E444: ܹرһ" - -#: ../window.c:1814 -#, fuzzy -msgid "E814: Cannot close window, only autocmd window would remain" -msgstr "E444: ܹرһ" - -#: ../window.c:2717 -msgid "E445: Other window contains changes" -msgstr "E445: иı" - -#: ../window.c:4805 -msgid "E446: No file name under cursor" -msgstr "E446: 괦ûļ" - -#~ msgid "Patch file" -#~ msgstr "Patch ļ" - -#~ msgid "" -#~ "&OK\n" -#~ "&Cancel" -#~ msgstr "" -#~ "ȷ(&O)\n" -#~ "ȡ(&C)" - -#~ msgid "E240: No connection to Vim server" -#~ msgstr "E240: ûе Vim " - -#~ msgid "E241: Unable to send to %s" -#~ msgstr "E241: ͵ %s" - -#~ msgid "E277: Unable to read a server reply" -#~ msgstr "E277: ȡӦ" - -#~ msgid "E258: Unable to send to client" -#~ msgstr "E258: ͵ͻ" - -#~ msgid "Save As" -#~ msgstr "Ϊ" - -#~ msgid "Edit File" -#~ msgstr "༭ļ" - -#~ msgid " (NOT FOUND)" -#~ msgstr " (Ҳ)" - -#~ msgid "Source Vim script" -#~ msgstr "ִ Vim ű" - -#~ msgid "Edit File in new window" -#~ msgstr "´ڱ༭ļ" - -#~ msgid "Append File" -#~ msgstr "ļ" - -#~ msgid "Window position: X %d, Y %d" -#~ msgstr "λ: X %d, Y %d" - -#~ msgid "Save Redirection" -#~ msgstr "ض" - -#~ msgid "Save View" -#~ msgstr "ͼ" - -#~ msgid "Save Session" -#~ msgstr "Ự" - -#~ msgid "Save Setup" -#~ msgstr "趨" - -#~ msgid "E196: No digraphs in this version" -#~ msgstr "E196: ˰汾ַ(digraph)" - -#~ msgid "Reading from stdin..." -#~ msgstr "ӱȡ..." - -#~ msgid "[NL found]" -#~ msgstr "[ҵ NL]" - -#~ msgid "[crypted]" -#~ msgstr "[Ѽ]" - -#~ msgid "NetBeans disallows writes of unmodified buffers" -#~ msgstr "NetBeans δĵĻд" - -#~ msgid "Partial writes disallowed for NetBeans buffers" -#~ msgstr "NetBeans д" - -#~ msgid "E460: The resource fork would be lost (add ! to override)" -#~ msgstr "E460: Resource fork ᶪʧ ( ! ǿִ)" - -#~ msgid "E229: Cannot start the GUI" -#~ msgstr "E229: ͼν" - -#~ msgid "E230: Cannot read from \"%s\"" -#~ msgstr "E230: ȡļ \"%s\"" - -#~ msgid "E665: Cannot start GUI, no valid font found" -#~ msgstr "E665: ͼν棬ҲЧ" - -#~ msgid "E231: 'guifontwide' invalid" -#~ msgstr "E231: Ч 'guifontwide'" - -#~ msgid "E599: Value of 'imactivatekey' is invalid" -#~ msgstr "E599: 'imactivatekey' ֵЧ" - -#~ msgid "E254: Cannot allocate color %s" -#~ msgstr "E254: ɫ %s" - -#~ msgid "No match at cursor, finding next" -#~ msgstr "ڹ괦ûƥ䣬һ" - -#~ msgid "<cannot open> " -#~ msgstr "<>" - -#~ msgid "E616: vim_SelFile: can't get font %s" -#~ msgstr "E616: vim_SelFile: ȡ %s" - -#~ msgid "E614: vim_SelFile: can't return to current directory" -#~ msgstr "E614: vim_SelFile: صǰĿ¼" - -#~ msgid "Pathname:" -#~ msgstr "·:" - -#~ msgid "E615: vim_SelFile: can't get current directory" -#~ msgstr "E615: vim_SelFile: ȡǰĿ¼" - -#~ msgid "OK" -#~ msgstr "ȷ" - -#~ msgid "Cancel" -#~ msgstr "ȡ" - -#~ msgid "Scrollbar Widget: Could not get geometry of thumb pixmap." -#~ msgstr ": ȡͼļδС" - -#~ msgid "Vim dialog" -#~ msgstr "Vim Ի" - -#~ msgid "E232: Cannot create BalloonEval with both message and callback" -#~ msgstr "E232: ͬʱʹϢͻص BalloonEval" - -#~ msgid "Vim dialog..." -#~ msgstr "Vim Ի..." - -#~ msgid "Input _Methods" -#~ msgstr "뷨(_M)" - -#~ msgid "VIM - Search and Replace..." -#~ msgstr "VIM - Һ滻..." - -#~ msgid "VIM - Search..." -#~ msgstr "VIM - ..." - -#~ msgid "Find what:" -#~ msgstr ":" - -#~ msgid "Replace with:" -#~ msgstr "滻Ϊ:" - -#~ msgid "Match whole word only" -#~ msgstr "ƥĴ" - -#~ msgid "Match case" -#~ msgstr "ƥСд" - -#~ msgid "Direction" -#~ msgstr "" - -#~ msgid "Up" -#~ msgstr "" - -#~ msgid "Down" -#~ msgstr "" - -#~ msgid "Find Next" -#~ msgstr "һ" - -#~ msgid "Replace" -#~ msgstr "滻" - -#~ msgid "Replace All" -#~ msgstr "ȫ滻" - -#~ msgid "Vim: Received \"die\" request from session manager\n" -#~ msgstr "Vim: ӻỰյ \"die\" \n" - -#~ msgid "Close" -#~ msgstr "ر" - -#~ msgid "New tab" -#~ msgstr "½ǩ" - -#~ msgid "Open Tab..." -#~ msgstr "ǩ..." - -#~ msgid "Vim: Main window unexpectedly destroyed\n" -#~ msgstr "Vim: ڱشݻ\n" - -#~ msgid "Font Selection" -#~ msgstr "ѡ" - -#~ msgid "Used CUT_BUFFER0 instead of empty selection" -#~ msgstr "ʹ CUT_BUFFER0 ȡѡ" - -#~ msgid "&Filter" -#~ msgstr "(&F)" - -#~ msgid "&Cancel" -#~ msgstr "ȡ(&C)" - -#~ msgid "Directories" -#~ msgstr "Ŀ¼" - -#~ msgid "Filter" -#~ msgstr "" - -#~ msgid "&Help" -#~ msgstr "(&H)" - -#~ msgid "Files" -#~ msgstr "ļ" - -#~ msgid "&OK" -#~ msgstr "ȷ(&O)" - -#~ msgid "Selection" -#~ msgstr "ѡ" - -#~ msgid "Find &Next" -#~ msgstr "һ(&N)" - -#~ msgid "&Replace" -#~ msgstr "滻(&R)" - -#~ msgid "Replace &All" -#~ msgstr "ȫ滻(&A)" - -#~ msgid "&Undo" -#~ msgstr "(&U)" - -#~ msgid "E671: Cannot find window title \"%s\"" -#~ msgstr "E671: Ҳڱ \"%s\"" - -#~ msgid "E243: Argument not supported: \"-%s\"; Use the OLE version." -#~ msgstr "E243: ֵ֧IJ: \"-%s\"ʹ OLE 汾" - -#~ msgid "E672: Unable to open window inside MDI application" -#~ msgstr "E672: MDI Ӧóд" - -#~ msgid "Close tab" -#~ msgstr "رձǩ" - -#~ msgid "Open tab..." -#~ msgstr "ǩ..." - -#~ msgid "Find string (use '\\\\' to find a '\\')" -#~ msgstr "ַ (ʹ '\\\\' '\\')" - -#~ msgid "Find & Replace (use '\\\\' to find a '\\')" -#~ msgstr "Һ滻ַ (ʹ '\\\\' '\\')" - -#~ msgid "Not Used" -#~ msgstr "δʹ" - -#~ msgid "Directory\t*.nothing\n" -#~ msgstr "Ŀ¼\t*.nothing\n" - -#~ msgid "" -#~ "Vim E458: Cannot allocate colormap entry, some colors may be incorrect" -#~ msgstr "Vim E458: ɫijЩɫܲȷ" - -#~ msgid "E250: Fonts for the following charsets are missing in fontset %s:" -#~ msgstr "E250: Fontset %s ȱַ:" - -#~ msgid "E252: Fontset name: %s" -#~ msgstr "E252: Fontset : %s" - -#~ msgid "Font '%s' is not fixed-width" -#~ msgstr "'%s' ǹ̶ȵ" - -#~ msgid "E253: Fontset name: %s\n" -#~ msgstr "E253: Fontset : %s\n" - -#~ msgid "Font0: %s\n" -#~ msgstr "0: %s\n" - -#~ msgid "Font1: %s\n" -#~ msgstr "1: %s\n" - -#~ msgid "Font%<PRId64> width is not twice that of font0\n" -#~ msgstr "%<PRId64>ĿȲ0\n" - -#~ msgid "Font0 width: %<PRId64>\n" -#~ msgstr "0Ŀȣ%<PRId64>\n" - -#~ msgid "" -#~ "Font1 width: %<PRId64>\n" -#~ "\n" -#~ msgstr "" -#~ "1Ŀ: %<PRId64>\n" -#~ "\n" - -#~ msgid "Invalid font specification" -#~ msgstr "ָЧ" - -#~ msgid "&Dismiss" -#~ msgstr "ȡ(&D)" - -#~ msgid "no specific match" -#~ msgstr "Ҳƥ" - -#~ msgid "Vim - Font Selector" -#~ msgstr "Vim - ѡ" - -#~ msgid "Name:" -#~ msgstr ":" - -#~ msgid "Encoding:" -#~ msgstr ":" - -#~ msgid "Font:" -#~ msgstr ":" - -#~ msgid "Style:" -#~ msgstr ":" - -#~ msgid "Size:" -#~ msgstr "ߴ:" - -#~ msgid "E256: Hangul automata ERROR" -#~ msgstr "E256: Hangul automata " - -#~ msgid "E563: stat error" -#~ msgstr "E563: stat " - -#~ msgid "E625: cannot open cscope database: %s" -#~ msgstr "E625: cscope ݿ: %s" - -#~ msgid "E626: cannot get cscope database information" -#~ msgstr "E626: ȡ cscope ݿϢ" - -#~ msgid "E569: maximum number of cscope connections reached" -#~ msgstr "E569: Ѵﵽ cscope " - -#~ msgid "" -#~ "???: Sorry, this command is disabled, the MzScheme library could not be " -#~ "loaded." -#~ msgstr "???: Ǹã MzScheme " - -#~ msgid "invalid expression" -#~ msgstr "Чıʽ" - -#~ msgid "expressions disabled at compile time" -#~ msgstr "ʱûñʽ" - -#~ msgid "hidden option" -#~ msgstr "صѡ" - -#~ msgid "unknown option" -#~ msgstr "δ֪ѡ" - -#~ msgid "window index is out of range" -#~ msgstr "Χ" - -#~ msgid "couldn't open buffer" -#~ msgstr "" - -#~ msgid "cannot save undo information" -#~ msgstr "泷Ϣ" - -#~ msgid "cannot delete line" -#~ msgstr "ɾ" - -#~ msgid "cannot replace line" -#~ msgstr "滻" - -#~ msgid "cannot insert line" -#~ msgstr "" - -#~ msgid "string cannot contain newlines" -#~ msgstr "ַܰ(NL)" - -#~ msgid "Vim error: ~a" -#~ msgstr "Vim : ~a" - -#~ msgid "Vim error" -#~ msgstr "Vim " - -#~ msgid "buffer is invalid" -#~ msgstr "Ч" - -#~ msgid "window is invalid" -#~ msgstr "Ч" - -#~ msgid "linenr out of range" -#~ msgstr "кųΧ" - -#~ msgid "not allowed in the Vim sandbox" -#~ msgstr " sandbox ʹ" - -#~ msgid "" -#~ "E263: Sorry, this command is disabled, the Python library could not be " -#~ "loaded." -#~ msgstr "E263: Ǹã Python ⡣" - -#~ msgid "E659: Cannot invoke Python recursively" -#~ msgstr "E659: ܵݹ Python" - -#~ msgid "can't delete OutputObject attributes" -#~ msgstr "ɾ OutputObject " - -#~ msgid "softspace must be an integer" -#~ msgstr "softspace " - -#~ msgid "invalid attribute" -#~ msgstr "Ч" - -#~ msgid "writelines() requires list of strings" -#~ msgstr "writelines() Ҫַб" - -#~ msgid "E264: Python: Error initialising I/O objects" -#~ msgstr "E264: Python: ʼ I/O " - -#~ msgid "attempt to refer to deleted buffer" -#~ msgstr "ͼѱɾĻ" - -#~ msgid "line number out of range" -#~ msgstr "кųΧ" - -#~ msgid "<buffer object (deleted) at %8lX>" -#~ msgstr "<(ɾ): %8lX>" - -#~ msgid "invalid mark name" -#~ msgstr "Чı" - -#~ msgid "no such buffer" -#~ msgstr "˻" - -#~ msgid "attempt to refer to deleted window" -#~ msgstr "ͼѱɾĴ" - -#~ msgid "readonly attribute" -#~ msgstr "ֻ" - -#~ msgid "cursor position outside buffer" -#~ msgstr "λڻ" - -#~ msgid "<window object (deleted) at %.8lX>" -#~ msgstr "<ڶ(ɾ): %.8lX>" - -#~ msgid "<window object (unknown) at %.8lX>" -#~ msgstr "<ڶ(δ֪): %.8lX>" - -#~ msgid "<window %d>" -#~ msgstr "< %d>" - -#~ msgid "no such window" -#~ msgstr "˴" - -#~ msgid "" -#~ "E266: Sorry, this command is disabled, the Ruby library could not be " -#~ "loaded." -#~ msgstr "E266: Ǹã Ruby " - -#~ msgid "E273: unknown longjmp status %d" -#~ msgstr "E273: δ֪ longjmp ״̬ %d" - -#~ msgid "Toggle implementation/definition" -#~ msgstr "лʵ/" - -#~ msgid "Show base class of" -#~ msgstr "ʾ base class of:" - -#~ msgid "Show overridden member function" -#~ msgstr "ʾǵijԱ" - -#~ msgid "Retrieve from file" -#~ msgstr "ָ: ļ" - -#~ msgid "Retrieve from project" -#~ msgstr "ָ: Ӷ" - -#~ msgid "Retrieve from all projects" -#~ msgstr "ָ: Ŀ" - -#~ msgid "Retrieve" -#~ msgstr "ָ" - -#~ msgid "Show source of" -#~ msgstr "ʾԴ: " - -#~ msgid "Find symbol" -#~ msgstr " symbol" - -#~ msgid "Browse class" -#~ msgstr " class" - -#~ msgid "Show class in hierarchy" -#~ msgstr "ʾιϵ" - -#~ msgid "Show class in restricted hierarchy" -#~ msgstr "ʾ restricted ιϵ class" - -#~ msgid "Xref refers to" -#~ msgstr "Xref ο" - -#~ msgid "Xref referred by" -#~ msgstr "Xref ˭ο:" - -#~ msgid "Xref has a" -#~ msgstr "Xref " - -#~ msgid "Xref used by" -#~ msgstr "Xref ˭ʹ:" - -#~ msgid "Show docu of" -#~ msgstr "ʾļ: " - -#~ msgid "Generate docu for" -#~ msgstr "ļ: " - -#~ msgid "" -#~ "Cannot connect to SNiFF+. Check environment (sniffemacs must be found in " -#~ "$PATH).\n" -#~ msgstr "" -#~ "ӵ SNiFF+黷 ($PATH ҵ sniffemacs)\n" - -#~ msgid "E274: Sniff: Error during read. Disconnected" -#~ msgstr "E274: Sniff: ȡ. ȡ" - -#~ msgid "SNiFF+ is currently " -#~ msgstr "SNiFF+ Ŀǰ" - -#~ msgid "not " -#~ msgstr "δ" - -#~ msgid "connected" -#~ msgstr "" - -#~ msgid "E275: Unknown SNiFF+ request: %s" -#~ msgstr "E275: ȷ SNiff+ : %s" - -#~ msgid "E276: Error connecting to SNiFF+" -#~ msgstr "E276: ӵ SNiFF+ ʧ" - -#~ msgid "E278: SNiFF+ not connected" -#~ msgstr "E278: δӵ SNiFF+" - -#~ msgid "E279: Not a SNiFF+ buffer" -#~ msgstr "E279: SNiFF+ Ļ" - -#~ msgid "Sniff: Error during write. Disconnected" -#~ msgstr "Sniff: д" - -#~ msgid "invalid buffer number" -#~ msgstr "ЧĻ" - -#~ msgid "not implemented yet" -#~ msgstr "δʵ" - -#~ msgid "cannot set line(s)" -#~ msgstr "趨" - -#~ msgid "mark not set" -#~ msgstr "û趨" - -#~ msgid "row %d column %d" -#~ msgstr " %d %d " - -#~ msgid "cannot insert/append line" -#~ msgstr "/" - -#~ msgid "unknown flag: " -#~ msgstr "δ֪ı־: " - -#~ msgid "unknown vimOption" -#~ msgstr "δ֪ vim ѡ" - -#~ msgid "keyboard interrupt" -#~ msgstr "ж" - -#~ msgid "vim error" -#~ msgstr "vim " - -#~ msgid "cannot create buffer/window command: object is being deleted" -#~ msgstr "/: ɾ" - -#~ msgid "" -#~ "cannot register callback command: buffer/window is already being deleted" -#~ msgstr "עص: /ѱɾ" - -#~ msgid "" -#~ "E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-" -#~ "dev@vim.org" -#~ msgstr "E280: TCL ش: reflist 뱨 vim-dev@vim.org" - -#~ msgid "cannot register callback command: buffer/window reference not found" -#~ msgstr "עص: Ҳ/" - -#~ msgid "" -#~ "E571: Sorry, this command is disabled: the Tcl library could not be " -#~ "loaded." -#~ msgstr "E571: Ǹã Tcl " - -#~ msgid "" -#~ "E281: TCL ERROR: exit code is not int!? Please report this to vim-dev@vim." -#~ "org" -#~ msgstr "E281: TCL : ˳ֵ뱨 vim-dev@vim.org" - -#~ msgid "E572: exit code %d" -#~ msgstr "E572: ˳ֵ %d" - -#~ msgid "cannot get line" -#~ msgstr "ȡ" - -#~ msgid "Unable to register a command server name" -#~ msgstr "ע" - -#~ msgid "E248: Failed to send command to the destination program" -#~ msgstr "E248: Ŀij" - -#~ msgid "E573: Invalid server id used: %s" -#~ msgstr "E573: ʹЧķ id: %s" - -#~ msgid "E251: VIM instance registry property is badly formed. Deleted!" -#~ msgstr "E251: VIM ʵעɾ" - -#~ msgid "This Vim was not compiled with the diff feature." -#~ msgstr " Vim ʱûм diff " - -#~ msgid "Vim: Error: Failure to start gvim from NetBeans\n" -#~ msgstr "Vim: : NetBeans gvim\n" - -#~ msgid "-register\t\tRegister this gvim for OLE" -#~ msgstr "-register\t\tע gvim OLE" - -#~ msgid "-unregister\t\tUnregister gvim for OLE" -#~ msgstr "-unregister\t\tȡ OLE е gvim ע" - -#~ msgid "-g\t\t\tRun using GUI (like \"gvim\")" -#~ msgstr "-g\t\t\tʹͼν (ͬ \"gvim\")" - -#~ msgid "-f or --nofork\tForeground: Don't fork when starting GUI" -#~ msgstr "-f --nofork\tǰ̨: ͼνʱ fork" - -#~ msgid "-V[N]\t\tVerbose level" -#~ msgstr "-V[N]\t\tVerbose ȼ" - -#~ msgid "-f\t\t\tDon't use newcli to open window" -#~ msgstr "-f\t\t\tʹ newcli " - -#~ msgid "-dev <device>\t\tUse <device> for I/O" -#~ msgstr "-dev <device>\t\tʹ <device> " - -#~ msgid "-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc" -#~ msgstr "-U <gvimrc>\t\tʹ <gvimrc> κ .gvimrc" - -#~ msgid "-x\t\t\tEdit encrypted files" -#~ msgstr "-x\t\t\t༭ܵļ" - -#~ msgid "-display <display>\tConnect vim to this particular X-server" -#~ msgstr "-display <display>\t vim ָ X-server " - -#~ msgid "-X\t\t\tDo not connect to X server" -#~ msgstr "-X\t\t\tӵ X Server" - -#~ msgid "--remote <files>\tEdit <files> in a Vim server if possible" -#~ msgstr "--remote <files>\tпܣ Vim ϱ༭ļ <files>" - -#~ msgid "--remote-silent <files> Same, don't complain if there is no server" -#~ msgstr "--remote-silent <files> ͬϣҲʱԹ" - -#~ msgid "" -#~ "--remote-wait <files> As --remote but wait for files to have been edited" -#~ msgstr "--remote-wait <files> ͬ --remote ȴļɱ༭" - -#~ msgid "" -#~ "--remote-wait-silent <files> Same, don't complain if there is no server" -#~ msgstr "--remote-wait-silent <files> ͬϣҲʱԹ" - -#~ msgid "--remote-tab <files> As --remote but open tab page for each file" -#~ msgstr "--remote-tab <files> ͬ --remote ÿļһǩҳ" - -#~ msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit" -#~ msgstr "--remote-send <keys>\tͳ <keys> Vim ˳" - -#~ msgid "" -#~ "--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result" -#~ msgstr "--remote-expr <expr>\t Vim <expr> ֵӡ" - -#~ msgid "--serverlist\t\tList available Vim server names and exit" -#~ msgstr "--serverlist\t\tгõ Vim Ʋ˳" - -#~ msgid "--servername <name>\tSend to/become the Vim server <name>" -#~ msgstr "--servername <name>\t͵Ϊ Vim <name>" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Motif version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim (Motif 汾) ʶIJ:\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (neXtaw version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim (neXtaw 汾) ʶIJ:\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Athena version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim (Athena 汾) ʶIJ:\n" - -#~ msgid "-display <display>\tRun vim on <display>" -#~ msgstr "-display <display>\t <display> vim" - -#~ msgid "-iconic\t\tStart vim iconified" -#~ msgstr "-iconic\t\tС" - -#~ msgid "-name <name>\t\tUse resource as if vim was <name>" -#~ msgstr "-name <name>\t\tȡ Resource ʱ vim Ϊ <name>" - -#~ msgid "\t\t\t (Unimplemented)\n" -#~ msgstr "\t\t\t (δʵ)\n" - -#~ msgid "-background <color>\tUse <color> for the background (also: -bg)" -#~ msgstr "-background <color>\tʹ <color> Ϊɫ (Ҳ -bg)" - -#~ msgid "-foreground <color>\tUse <color> for normal text (also: -fg)" -#~ msgstr "-foreground <color>\tʹ <color> Ϊһɫ (Ҳ -fg)" - -#~ msgid "-font <font>\t\tUse <font> for normal text (also: -fn)" -#~ msgstr "-font <font>\tʹ <font> Ϊһ (Ҳ -fn)" - -#~ msgid "-boldfont <font>\tUse <font> for bold text" -#~ msgstr "-boldfont <font>\tʹ <font> Ϊ" - -#~ msgid "-italicfont <font>\tUse <font> for italic text" -#~ msgstr "-italicfont <font>\tʹ <font> Ϊб" - -#~ msgid "-geometry <geom>\tUse <geom> for initial geometry (also: -geom)" -#~ msgstr "-geometry <geom>\tʹ <geom> Ϊʼλ (Ҳ -geom)" - -#~ msgid "-borderwidth <width>\tUse a border width of <width> (also: -bw)" -#~ msgstr "-borderwidth <width>\t趨߿Ϊ <width> (Ҳ -bw)" - -#~ msgid "" -#~ "-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)" -#~ msgstr "-scrollbarwidth <width> 趨Ϊ <width> (Ҳ -sw)" - -#~ msgid "-menuheight <height>\tUse a menu bar height of <height> (also: -mh)" -#~ msgstr "-menuheight <height>\t趨˵߶Ϊ <height> (Ҳ -mh)" - -#~ msgid "-reverse\t\tUse reverse video (also: -rv)" -#~ msgstr "-reverse\t\tʹ÷ (Ҳ -rv)" - -#~ msgid "+reverse\t\tDon't use reverse video (also: +rv)" -#~ msgstr "+reverse\t\tʹ÷ (Ҳ +rv)" - -#~ msgid "-xrm <resource>\tSet the specified resource" -#~ msgstr "-xrm <resource>\t趨ָԴ" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (RISC OS version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim (RISC OS 汾) ʶIJ:\n" - -#~ msgid "--columns <number>\tInitial width of window in columns" -#~ msgstr "--columns <number>\tڳʼ" - -#~ msgid "--rows <number>\tInitial height of window in rows" -#~ msgstr "--rows <number>\tڳʼ߶" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (GTK+ version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim (GTK+ 汾) ʶIJ:\n" - -#~ msgid "-display <display>\tRun vim on <display> (also: --display)" -#~ msgstr "-display <display>\t <display> vim (Ҳ --display)" - -#~ msgid "--role <role>\tSet a unique role to identify the main window" -#~ msgstr "--role <role>\tڵĴڽɫ" - -#~ msgid "--socketid <xid>\tOpen Vim inside another GTK widget" -#~ msgstr "--socketid <xid>\tһ GTK д Vim" - -#~ msgid "-P <parent title>\tOpen Vim inside parent application" -#~ msgstr "-P <parent title>\tڸӦóд Vim" - -#~ msgid "No display" -#~ msgstr "û display" - -#~ msgid ": Send failed.\n" -#~ msgstr ": ʧܡ\n" - -#~ msgid ": Send failed. Trying to execute locally\n" -#~ msgstr ": ʧܡԱִ\n" - -#~ msgid "%d of %d edited" -#~ msgstr "%d %d ѱ༭" - -#~ msgid "No display: Send expression failed.\n" -#~ msgstr "û display: ͱʽʧܡ\n" - -#~ msgid ": Send expression failed.\n" -#~ msgstr ": ͱʽʧܡ\n" - -#~ msgid "E543: Not a valid codepage" -#~ msgstr "E543: ЧĴҳ" - -#~ msgid "E285: Failed to create input context" -#~ msgstr "E285: " - -#~ msgid "E286: Failed to open input method" -#~ msgstr "E286: 뷨" - -#~ msgid "E287: Warning: Could not set destroy callback to IM" -#~ msgstr "E287: : 趨뷨ͷŻص" - -#~ msgid "E288: input method doesn't support any style" -#~ msgstr "E288: 뷨֧κη" - -#~ msgid "E289: input method doesn't support my preedit type" -#~ msgstr "E289: 뷨֧ҵԤ༭" - -#~ msgid "E290: over-the-spot style requires fontset" -#~ msgstr "E290: over-the-spot Ҫ Fontset" - -#~ msgid "E291: Your GTK+ is older than 1.2.3. Status area disabled" -#~ msgstr "E291: GTK+ 1.2.3 ɡ״̬á" - -#~ msgid "E292: Input Method Server is not running" -#~ msgstr "E292: 뷨δ" - -#~ msgid "" -#~ "\n" -#~ " [not usable with this version of Vim]" -#~ msgstr "" -#~ "\n" -#~ " [ڸð汾 Vim ʹ]" - -#~ msgid "Tear off this menu" -#~ msgstr "˺´˲˵" - -#~ msgid "Select Directory dialog" -#~ msgstr "ѡĿ¼Ի" - -#~ msgid "Save File dialog" -#~ msgstr "ļԻ" - -#~ msgid "Open File dialog" -#~ msgstr "ļԻ" - -#~ msgid "E338: Sorry, no file browser in console mode" -#~ msgstr "E338: Ǹ̨ģʽûļ" - -#~ msgid "Vim: preserving files...\n" -#~ msgstr "Vim: ڱļ\n" - -#~ msgid "Vim: Finished.\n" -#~ msgstr "Vim: \n" - -#~ msgid "ERROR: " -#~ msgstr ": " - -#~ msgid "" -#~ "\n" -#~ "[bytes] total alloc-freed %<PRIu64>-%<PRIu64>, in use %<PRIu64>, peak use " -#~ "%<PRIu64>\n" -#~ msgstr "" -#~ "\n" -#~ "[ֽ] ܹ alloc-free %<PRIu64>-%<PRIu64>ʹ %<PRIu64>߷ʹ " -#~ "%<PRIu64>\n" - -#~ msgid "" -#~ "[calls] total re/malloc()'s %<PRIu64>, total free()'s %<PRIu64>\n" -#~ "\n" -#~ msgstr "" -#~ "[] ܹ re/malloc(): %<PRIu64>ܹ free()': %<PRIu64>\n" -#~ "\n" - -#~ msgid "E340: Line is becoming too long" -#~ msgstr "E340: й" - -#~ msgid "E341: Internal error: lalloc(%<PRId64>, )" -#~ msgstr "E341: ڲ: lalloc(%<PRId64>, )" - -#~ msgid "E547: Illegal mouseshape" -#~ msgstr "E547: Ч״" - -#~ msgid "Enter encryption key: " -#~ msgstr ": " - -#~ msgid "Enter same key again: " -#~ msgstr "һ: " - -#~ msgid "Keys don't match!" -#~ msgstr "벻ƥ䣡" - -#~ msgid "Cannot connect to Netbeans #2" -#~ msgstr "ӵ Netbeans #2" - -#~ msgid "Cannot connect to Netbeans" -#~ msgstr "ӵ Netbeans" - -#~ msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\"" -#~ msgstr "E668: NetBeans Ϣļдķģʽ: \"%s\"" - -#~ msgid "read from Netbeans socket" -#~ msgstr " Netbeans ֶȡ" - -#~ msgid "E658: NetBeans connection lost for buffer %<PRId64>" -#~ msgstr "E658: %<PRId64> ʧ NetBeans " - -#~ msgid "E505: " -#~ msgstr "E505: " - -#~ msgid "E775: Eval feature not available" -#~ msgstr "E775: ֵܲ" - -#~ msgid "freeing %<PRId64> lines" -#~ msgstr "ͷ %<PRId64> " - -#~ msgid "E530: Cannot change term in GUI" -#~ msgstr "E530: ͼνвܸıն" - -#~ msgid "E531: Use \":gui\" to start the GUI" -#~ msgstr "E531: \":gui\" ͼν" - -#~ msgid "E617: Cannot be changed in the GTK+ 2 GUI" -#~ msgstr "E617: GTK+ 2 ͼνвܸ" - -#~ msgid "E596: Invalid font(s)" -#~ msgstr "E596: Ч" - -#~ msgid "E597: can't select fontset" -#~ msgstr "E597: ѡ Fontset" - -#~ msgid "E598: Invalid fontset" -#~ msgstr "E598: Ч Fontset" - -#~ msgid "E533: can't select wide font" -#~ msgstr "E533: ѡ" - -#~ msgid "E534: Invalid wide font" -#~ msgstr "E534: ЧĿ" - -#~ msgid "E538: No mouse support" -#~ msgstr "E538: ֧" - -#~ msgid "cannot open " -#~ msgstr "ܴ" - -#~ msgid "VIM: Can't open window!\n" -#~ msgstr "VIM: ܴ!\n" - -#~ msgid "Need Amigados version 2.04 or later\n" -#~ msgstr "Ҫ Amigados 汾 2.04 \n" - -#~ msgid "Need %s version %<PRId64>\n" -#~ msgstr "Ҫ %s 汾 %<PRId64>\n" - -#~ msgid "Cannot open NIL:\n" -#~ msgstr "ܴ NIL:\n" - -#~ msgid "Cannot create " -#~ msgstr "ܴ " - -#~ msgid "Vim exiting with %d\n" -#~ msgstr "Vim ֵ: %d\n" - -#~ msgid "cannot change console mode ?!\n" -#~ msgstr "л̨(console)ģʽ !?\n" - -#~ msgid "mch_get_shellsize: not a console??\n" -#~ msgstr "mch_get_shellsize: ̨(console)??\n" - -#~ msgid "E360: Cannot execute shell with -f option" -#~ msgstr "E360: -f ѡִ shell" - -#~ msgid "Cannot execute " -#~ msgstr "ִ " - -#~ msgid "shell " -#~ msgstr "shell " - -#~ msgid " returned\n" -#~ msgstr " ѷ\n" - -#~ msgid "ANCHOR_BUF_SIZE too small." -#~ msgstr "ANCHOR_BUF_SIZE ̫С" - -#~ msgid "I/O ERROR" -#~ msgstr "I/O " - -#~ msgid "Message" -#~ msgstr "Ϣ" - -#~ msgid "'columns' is not 80, cannot execute external commands" -#~ msgstr "'columns' 80, ִⲿ" - -#~ msgid "E237: Printer selection failed" -#~ msgstr "E237: ѡӡʧ" - -#~ msgid "to %s on %s" -#~ msgstr " %s %s" - -#~ msgid "E613: Unknown printer font: %s" -#~ msgstr "E613: δ֪Ĵӡ: %s" - -#~ msgid "E238: Print error: %s" -#~ msgstr "E238: ӡ: %s" - -#~ msgid "Printing '%s'" -#~ msgstr "ӡ '%s'" - -#~ msgid "E244: Illegal charset name \"%s\" in font name \"%s\"" -#~ msgstr "E244: ַ \"%s\" ܶӦ\"%s\"" - -#~ msgid "E245: Illegal char '%c' in font name \"%s\"" -#~ msgstr "E245: ȷַ '%c' \"%s\" " - -#~ msgid "Vim: Double signal, exiting\n" -#~ msgstr "Vim: ˫źţ˳\n" - -#~ msgid "Vim: Caught deadly signal %s\n" -#~ msgstr "Vim: صź(deadly signal) %s\n" - -#~ msgid "Vim: Caught deadly signal\n" -#~ msgstr "Vim: صź(deadly signal)\n" - -#~ msgid "Opening the X display took %<PRId64> msec" -#~ msgstr " X display ʱ %<PRId64> " - -#~ msgid "" -#~ "\n" -#~ "Vim: Got X error\n" -#~ msgstr "" -#~ "\n" -#~ "Vim: X \n" - -#~ msgid "Testing the X display failed" -#~ msgstr " X display ʧ" - -#~ msgid "Opening the X display timed out" -#~ msgstr " X display ʱ" - -#~ msgid "" -#~ "\n" -#~ "Cannot execute shell sh\n" -#~ msgstr "" -#~ "\n" -#~ "ִ shell sh\n" - -#~ msgid "" -#~ "\n" -#~ "Cannot create pipes\n" -#~ msgstr "" -#~ "\n" -#~ "ܵ\n" - -#~ msgid "" -#~ "\n" -#~ "Cannot fork\n" -#~ msgstr "" -#~ "\n" -#~ " fork\n" - -#~ msgid "" -#~ "\n" -#~ "Command terminated\n" -#~ msgstr "" -#~ "\n" -#~ "ѽ\n" - -#~ msgid "XSMP lost ICE connection" -#~ msgstr "XSMP ʧ˵ ICE " - -#~ msgid "Opening the X display failed" -#~ msgstr " X display ʧ" - -#~ msgid "XSMP handling save-yourself request" -#~ msgstr "XSMP save-yourself " - -#~ msgid "XSMP opening connection" -#~ msgstr "XSMP " - -#~ msgid "XSMP ICE connection watch failed" -#~ msgstr "XSMP ICE Ӽʧ" - -#~ msgid "XSMP SmcOpenConnection failed: %s" -#~ msgstr "XSMP SmcOpenConnection ʧ: %s" - -#~ msgid "At line" -#~ msgstr "к " - -#~ msgid "Could not load vim32.dll!" -#~ msgstr " vim32.dll" - -#~ msgid "VIM Error" -#~ msgstr "VIM " - -#~ msgid "Could not fix up function pointers to the DLL!" -#~ msgstr " DLL ĺָ!" - -#~ msgid "shell returned %d" -#~ msgstr "Shell %d" - -#~ msgid "Vim: Caught %s event\n" -#~ msgstr "Vim: ص %s ¼\n" - -#~ msgid "close" -#~ msgstr "ر" - -#~ msgid "logoff" -#~ msgstr "ע" - -#~ msgid "shutdown" -#~ msgstr "ػ" - -#~ msgid "E371: Command not found" -#~ msgstr "E371: Ҳ" - -#~ msgid "" -#~ "VIMRUN.EXE not found in your $PATH.\n" -#~ "External commands will not pause after completion.\n" -#~ "See :help win32-vimrun for more information." -#~ msgstr "" -#~ " $PATH Ҳ VIMRUN.EXE\n" -#~ "ⲿִϺͣ\n" -#~ "һ˵ :help win32-vimrun" - -#~ msgid "Vim Warning" -#~ msgstr "Vim " - -#~ msgid "Conversion in %s not supported" -#~ msgstr "֧ %s еת" - -#~ msgid "E396: containedin argument not accepted here" -#~ msgstr "E396: ʹ˲ȷIJ" - -#~ msgid "E430: Tag file path truncated for %s\n" -#~ msgstr "E430: Tag ļ·ضΪ %s\n" - -#~ msgid "new shell started\n" -#~ msgstr " shell\n" - -#~ msgid "No undo possible; continue anyway" -#~ msgstr "" - -#~ msgid "number changes time" -#~ msgstr " ı ʱ" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16/32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 16/32 λͼν汾" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 32 λͼν汾" - -#~ msgid " in Win32s mode" -#~ msgstr " Win32s ģʽ" - -#~ msgid " with OLE support" -#~ msgstr " OLE ֧" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit console version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 32 λ̨汾" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16-bit version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 16 λ̨汾" - -#~ msgid "" -#~ "\n" -#~ "32-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ "32 λ MS-DOS 汾" - -#~ msgid "" -#~ "\n" -#~ "16-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ "16 λ MS-DOS 汾" - -#~ msgid "" -#~ "\n" -#~ "MacOS X (unix) version" -#~ msgstr "" -#~ "\n" -#~ "MacOS X (unix) 汾" - -#~ msgid "" -#~ "\n" -#~ "MacOS X version" -#~ msgstr "" -#~ "\n" -#~ "MacOS X 汾" - -#~ msgid "" -#~ "\n" -#~ "MacOS version" -#~ msgstr "" -#~ "\n" -#~ "MacOS 汾" - -#~ msgid "" -#~ "\n" -#~ "RISC OS version" -#~ msgstr "" -#~ "\n" -#~ "RISC OS 汾" - -#~ msgid "" -#~ "\n" -#~ "Big version " -#~ msgstr "" -#~ "\n" -#~ "Ͱ汾 " - -#~ msgid "" -#~ "\n" -#~ "Normal version " -#~ msgstr "" -#~ "\n" -#~ "汾 " - -#~ msgid "" -#~ "\n" -#~ "Small version " -#~ msgstr "" -#~ "\n" -#~ "СͰ汾 " - -#~ msgid "" -#~ "\n" -#~ "Tiny version " -#~ msgstr "" -#~ "\n" -#~ "Ͱ汾 " - -#~ msgid "with GTK2-GNOME GUI." -#~ msgstr " GTK2-GNOME ͼν档" - -#~ msgid "with GTK-GNOME GUI." -#~ msgstr " GTK-GNOME ͼν档" - -#~ msgid "with GTK2 GUI." -#~ msgstr " GTK2 ͼν档" - -#~ msgid "with GTK GUI." -#~ msgstr " GTK ͼν档" - -#~ msgid "with X11-Motif GUI." -#~ msgstr " X11-Motif ͼν档" - -#~ msgid "with X11-neXtaw GUI." -#~ msgstr " X11-neXtaw ͼν档" - -#~ msgid "with X11-Athena GUI." -#~ msgstr " X11-Athena ͼν档" - -#~ msgid "with Photon GUI." -#~ msgstr " Photon ͼν档" - -#~ msgid "with GUI." -#~ msgstr "ͼν档" - -#~ msgid "with Carbon GUI." -#~ msgstr " Carbon ͼν档" - -#~ msgid "with Cocoa GUI." -#~ msgstr " Cocoa ͼν档" - -#~ msgid "with (classic) GUI." -#~ msgstr "(ͳ)ͼν档" - -#~ msgid " system gvimrc file: \"" -#~ msgstr " ϵͳ gvimrc ļ: \"" - -#~ msgid " user gvimrc file: \"" -#~ msgstr " û gvimrc ļ: \"" - -#~ msgid "2nd user gvimrc file: \"" -#~ msgstr "ڶû gvimrc ļ: \"" - -#~ msgid "3rd user gvimrc file: \"" -#~ msgstr "û gvimrc ļ: \"" - -#~ msgid " system menu file: \"" -#~ msgstr " ϵͳ˵ļ: \"" - -#~ msgid "Compiler: " -#~ msgstr ": " - -#~ msgid "menu Help->Orphans for information " -#~ msgstr "˵ Help->Orphans 鿴˵ " - -#~ msgid "Running modeless, typed text is inserted" -#~ msgstr "ģʽУּ" - -#~ msgid "menu Edit->Global Settings->Toggle Insert Mode " -#~ msgstr "˵ Edit->Global Settings->Toggle Insert Mode " - -#, fuzzy -#~ msgid " for two modes " -#~ msgstr " # pid ݿ prepend path\n" - -#, fuzzy -#~ msgid " for Vim defaults " -#~ msgstr " # pid ݿ prepend path\n" - -#~ msgid "WARNING: Windows 95/98/ME detected" -#~ msgstr ": Windows 95/98/ME" - -#~ msgid "type :help windows95<Enter> for info on this" -#~ msgstr " :help windows95<Enter> 鿴˵ " - -#~ msgid "E370: Could not load library %s" -#~ msgstr "E370: ؿ %s" - -#~ msgid "" -#~ "Sorry, this command is disabled: the Perl library could not be loaded." -#~ msgstr "Ǹ: Perl ⡣" - -#~ msgid "Edit with &multiple Vims" -#~ msgstr "ö Vim ༭(&M)" - -#~ msgid "Edit with single &Vim" -#~ msgstr "õ Vim ༭(&V)" - -#~ msgid "Diff with Vim" -#~ msgstr " Vim Ƚ(diff)" - -#~ msgid "Edit with &Vim" -#~ msgstr " Vim ༭(&V)" - -#~ msgid "Edit with existing Vim - " -#~ msgstr "õǰ Vim ༭ - " - -#~ msgid "Edits the selected file(s) with Vim" -#~ msgstr " Vim ༭ѡеļ" - -#~ msgid "Error creating process: Check if gvim is in your path!" -#~ msgstr "ʧ: gvim Ƿ·У" - -#~ msgid "gvimext.dll error" -#~ msgstr "gvimext.dll " - -#~ msgid "Path length too long!" -#~ msgstr "·̫" - -#~ msgid "E234: Unknown fontset: %s" -#~ msgstr "E234: δ֪ Fontset: %s" - -#~ msgid "E235: Unknown font: %s" -#~ msgstr "E235: δ֪: %s" - -#~ msgid "E236: Font \"%s\" is not fixed-width" -#~ msgstr "E236: \"%s\" ǵȿ" - -#~ msgid "E448: Could not load library function %s" -#~ msgstr "E448: ؿ⺯ %s" - -#~ msgid "E26: Hebrew cannot be used: Not enabled at compile time\n" -#~ msgstr "E26: ʹ Hebrew: ʱû\n" - -#~ msgid "E27: Farsi cannot be used: Not enabled at compile time\n" -#~ msgstr "E27: ʹ Farsi: ʱû\n" - -#~ msgid "E800: Arabic cannot be used: Not enabled at compile time\n" -#~ msgstr "E800: ʹ Arabic: ʱû\n" - -#~ msgid "E247: no registered server named \"%s\"" -#~ msgstr "E247: û \"%s\" עķ" - -#~ msgid "E233: cannot open display" -#~ msgstr "E233: display" - -#~ msgid "E449: Invalid expression received" -#~ msgstr "E449: յЧıʽ" - -#~ msgid "E744: NetBeans does not allow changes in read-only files" -#~ msgstr "E744: NetBeans ıֻļ" - -#~ msgid "Affix flags ignored when PFXPOSTPONE used in %s line %d: %s" -#~ msgstr "%s %d Уʹ PFXPOSTPONE ʱӱ־: %s" - -#~ msgid "[No file]" -#~ msgstr "[δ]" - -#~ msgid "[Error List]" -#~ msgstr "[б]" - -#~ msgid "E106: Unknown variable: \"%s\"" -#~ msgstr "E106: δı: \"%s\"" - -#~ msgid "function " -#~ msgstr " " - -#~ msgid "E130: Undefined function: %s" -#~ msgstr "E130: %s δ" - -#~ msgid "Run Macro" -#~ msgstr "ִк" - -#~ msgid "E242: Color name not recognized: %s" -#~ msgstr "E242: %s Ϊʶɫ" - -#~ msgid "error reading cscope connection %d" -#~ msgstr "ȡ cscope %d ʱ" - -#~ msgid "E260: cscope connection not found" -#~ msgstr "E260: Ҳ cscope " - -#~ msgid "cscope connection closed" -#~ msgstr "cscope ѹر" - -#~ msgid "couldn't malloc\n" -#~ msgstr "ʹ malloc\n" - -#~ msgid "%2d %-5ld %-34s <none>\n" -#~ msgstr "%2d %-5ld %-34s <>\n" - -#~ msgid "E249: couldn't read VIM instance registry property" -#~ msgstr "E249: ܶȡ VIM ע" - -#~ msgid "\"\n" -#~ msgstr "\"\n" - -#~ msgid "--help\t\tShow Gnome arguments" -#~ msgstr "--help\t\tʾ Gnome ز" - -#~ msgid "[string too long]" -#~ msgstr "[ַ̫]" - -#~ msgid "Hit ENTER to continue" -#~ msgstr "밴 ENTER " - -#~ msgid " (RET/BS: line, SPACE/b: page, d/u: half page, q: quit)" -#~ msgstr " (RET/BS: /һ, ո/b: һҳ, d/u: ҳ, q: ˳)" - -#~ msgid " (RET: line, SPACE: page, d: half page, q: quit)" -#~ msgstr " (RET: һ, հ: һҳ, d: ҳ, q: ˳)" - -#~ msgid "E361: Crash intercepted; regexp too complex?" -#~ msgstr "E361: ִ; regular expression ̫?" - -#~ msgid "E363: pattern caused out-of-stack error" -#~ msgstr "E363: regular expression ɶջùĴ" - -#~ msgid " BLOCK" -#~ msgstr " " - -#~ msgid " LINE" -#~ msgstr " " - -#~ msgid "Enter nr of choice (<CR> to abort): " -#~ msgstr " nr ѡ (<CR> ˳): " - -#~ msgid "Linear tag search" -#~ msgstr "Բұǩ (Tags)" - -#~ msgid "Binary tag search" -#~ msgstr "Ʋ(Binary search) ǩ(Tags)" - -#~ msgid "with BeOS GUI." -#~ msgstr "ʹ BeOS ͼν档" diff --git a/src/nvim/po/zh_TW.UTF-8.po b/src/nvim/po/zh_TW.UTF-8.po index da86d80c27..af8c3fff48 100644 --- a/src/nvim/po/zh_TW.UTF-8.po +++ b/src/nvim/po/zh_TW.UTF-8.po @@ -2725,11 +2725,6 @@ msgstr "E49: 錯誤的捲動大小" msgid "E901: Job table is full" msgstr "" -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - #: ../globals.h:1024 #, c-format msgid "E364: Library call failed for \"%s()\"" diff --git a/src/nvim/po/zh_TW.po b/src/nvim/po/zh_TW.po deleted file mode 100644 index 977f18086e..0000000000 --- a/src/nvim/po/zh_TW.po +++ /dev/null @@ -1,7904 +0,0 @@ -# Traditional Chinese Translation for Vim vim:set foldmethod=marker: -# -# Do ":help uganda" in Vim to read copying and usage conditions. -# Do ":help credits" in Vim to see a list of people who contributed. -# -# FIRST AUTHOR Francis S.Lin <piaip@csie.ntu.edu.tw>, 2000 -# FIRST RELEASE Thu Jun 14 14:24:17 CST 2001 -# -# Last update: 2005/01/27 07:03 (6.3) -# -# To update, search pattern: /fuzzy\|^msgstr ""\(\n"\)\@! -# -# DO NOT USE WORDS WITH BACKSLASH ('\') AS SECOND BYTE OF BIG5 CHARS -# EG: '\', # \\# [blacklist: \\\\\\\\\\\\\\\\] -# [blacklist: \\\\\\\\\\\\\\] -# you can replace these characters with alternative words. -# THIS WILL CAUSE INCOMPATIBLE ON gettext 0.10.36+ -# -# Note (2005.01.27): -# A bug was found for UTF8 mode. -# > msgid "%<PRId64> fewer lines" "on %<PRId64> lines" -# If you don't put more (at least 2) spaces after %<PRId64> -# gvim/win32 will crash (no reason). -# So please change ["] to [ "] -# -# Q. How to use UTF8 mode on Win32? -# A. A simple configuration: -# set encoding=utf-8; let $LANG='zh_TW.UTF-8'; -# (set langmenu=none or ..) -# set fileencodings=ucs-bom,utf-8,japan,taiwan,prc -# set fileencoding=taiwan (or utf-8) -# -msgid "" -msgstr "" -"Project-Id-Version: Vim(Traditional Chinese)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-26 14:21+0200\n" -"PO-Revision-Date: Mon Feb 19 22:49:21 CST 2001\n" -"Last-Translator: Hung-Te Lin <piaip@csie.ntu.edu.tw>\n" -"Language-Team: Hung-Te Lin <piaip@csie.ntu.edu.tw>, Cecil Sheng " -"<b7506022@csie.ntu.edu.tw>\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=big5\n" -"Content-Transfer-Encoding: 8-bit\n" - -#: ../api/private/helpers.c:201 -#, fuzzy -msgid "Unable to get option value" -msgstr "Lkǰe^T" - -#: ../api/private/helpers.c:204 -msgid "internal error: unknown option type" -msgstr "" - -#: ../buffer.c:92 -msgid "[Location List]" -msgstr "" - -#: ../buffer.c:93 -msgid "[Quickfix List]" -msgstr "" - -#: ../buffer.c:94 -msgid "E855: Autocommands caused command to abort" -msgstr "" - -#: ../buffer.c:135 -msgid "E82: Cannot allocate any buffer, exiting..." -msgstr "E82: LktmwİϡA}{..." - -#: ../buffer.c:138 -msgid "E83: Cannot allocate buffer, using other one..." -msgstr "E83: LktmwİϡAϥΥt@ӽwİ...." - -#: ../buffer.c:763 -msgid "E515: No buffers were unloaded" -msgstr "E515: Swİ" - -#: ../buffer.c:765 -msgid "E516: No buffers were deleted" -msgstr "E516: SRwİ" - -#: ../buffer.c:767 -msgid "E517: No buffers were wiped out" -msgstr "E517: SMwİ" - -#: ../buffer.c:772 -msgid "1 buffer unloaded" -msgstr "w@ӽwİ" - -#: ../buffer.c:774 -#, c-format -msgid "%d buffers unloaded" -msgstr "w %d ӽwİ" - -#: ../buffer.c:777 -msgid "1 buffer deleted" -msgstr "wR@ӽwİ" - -#: ../buffer.c:779 -#, c-format -msgid "%d buffers deleted" -msgstr "wR %d ӽwİ" - -#: ../buffer.c:782 -msgid "1 buffer wiped out" -msgstr "wR@ӽwİ" - -#: ../buffer.c:784 -#, c-format -msgid "%d buffers wiped out" -msgstr "wR %d ӽwİ" - -#: ../buffer.c:806 -msgid "E90: Cannot unload last buffer" -msgstr "E90: Lk̫@ӽwİ" - -#: ../buffer.c:874 -msgid "E84: No modified buffer found" -msgstr "E84: SקLwİ" - -#. back where we started, didn't find anything. -#: ../buffer.c:903 -msgid "E85: There is no listed buffer" -msgstr "E85: SCXwİ" - -#: ../buffer.c:913 -#, c-format -msgid "E86: Buffer %<PRId64> does not exist" -msgstr "E86: wİ %<PRId64> sb" - -#: ../buffer.c:915 -msgid "E87: Cannot go beyond last buffer" -msgstr "E87: Lk᭱wİ" - -#: ../buffer.c:917 -msgid "E88: Cannot go before first buffer" -msgstr "E88: Lkewİ" - -#: ../buffer.c:945 -#, c-format -msgid "" -"E89: No write since last change for buffer %<PRId64> (add ! to override)" -msgstr "E89: wLwİ %<PRId64> |s (i ! j)" - -#. wrap around (may cause duplicates) -#: ../buffer.c:1423 -msgid "W14: Warning: List of file names overflow" -msgstr "W14: ĵi: ɦWLh" - -#: ../buffer.c:1555 ../quickfix.c:3361 -#, c-format -msgid "E92: Buffer %<PRId64> not found" -msgstr "E92: 䤣 %<PRId64> ӽwİ" - -#: ../buffer.c:1798 -#, c-format -msgid "E93: More than one match for %s" -msgstr "E93: @ӥHW %s" - -#: ../buffer.c:1800 -#, c-format -msgid "E94: No matching buffer for %s" -msgstr "E94: 䤣 %s" - -#: ../buffer.c:2161 -#, c-format -msgid "line %<PRId64>" -msgstr " %<PRId64>" - -#: ../buffer.c:2233 -msgid "E95: Buffer with this name already exists" -msgstr "E95: wwİϨϥγoӦWr" - -#: ../buffer.c:2498 -msgid " [Modified]" -msgstr " [wק]" - -#: ../buffer.c:2501 -msgid "[Not edited]" -msgstr "[s]" - -#: ../buffer.c:2504 -msgid "[New file]" -msgstr "[sɮ]" - -#: ../buffer.c:2505 -msgid "[Read errors]" -msgstr "[Ū~]" - -#: ../buffer.c:2506 ../buffer.c:3217 ../fileio.c:1807 ../screen.c:4895 -msgid "[RO]" -msgstr "[Ū]" - -#: ../buffer.c:2507 ../fileio.c:1807 -msgid "[readonly]" -msgstr "[Ū]" - -#: ../buffer.c:2524 -#, c-format -msgid "1 line --%d%%--" -msgstr " 1 --%d%%--" - -#: ../buffer.c:2526 -#, c-format -msgid "%<PRId64> lines --%d%%--" -msgstr " %<PRId64> --%d%%--" - -#: ../buffer.c:2530 -#, c-format -msgid "line %<PRId64> of %<PRId64> --%d%%-- col " -msgstr " %<PRId64>/%<PRId64> --%d%%-- " - -#: ../buffer.c:2632 ../buffer.c:4292 ../memline.c:1554 -#, fuzzy -msgid "[No Name]" -msgstr "[RW]" - -#. must be a help buffer -#: ../buffer.c:2667 -msgid "help" -msgstr "[U]" - -#: ../buffer.c:3225 ../screen.c:4883 -#, fuzzy -msgid "[Help]" -msgstr "[U]" - -#: ../buffer.c:3254 ../screen.c:4887 -msgid "[Preview]" -msgstr "[w]" - -#: ../buffer.c:3528 -msgid "All" -msgstr "" - -#: ../buffer.c:3528 -msgid "Bot" -msgstr "" - -#: ../buffer.c:3531 -msgid "Top" -msgstr "" - -#: ../buffer.c:4244 -msgid "" -"\n" -"# Buffer list:\n" -msgstr "" -"\n" -"# wİϦC:\n" - -#: ../buffer.c:4289 -msgid "[Scratch]" -msgstr "" - -#: ../buffer.c:4529 -msgid "" -"\n" -"--- Signs ---" -msgstr "" -"\n" -"--- Ÿ ---" - -#: ../buffer.c:4538 -#, c-format -msgid "Signs for %s:" -msgstr "%s Ÿ:" - -#: ../buffer.c:4543 -#, c-format -msgid " line=%<PRId64> id=%d name=%s" -msgstr " =%<PRId64> id=%d W=%s" - -#: ../cursor_shape.c:68 -msgid "E545: Missing colon" -msgstr "E545: ʤ colon" - -#: ../cursor_shape.c:70 ../cursor_shape.c:94 -msgid "E546: Illegal mode" -msgstr "E546: TҦ" - -#: ../cursor_shape.c:134 -msgid "E548: digit expected" -msgstr "E548: ӭnƦr" - -#: ../cursor_shape.c:138 -msgid "E549: Illegal percentage" -msgstr "E549: Tʤ" - -#: ../diff.c:146 -#, c-format -msgid "E96: Can not diff more than %<PRId64> buffers" -msgstr "E96: Lk(diff) %<PRId64>ӥHWwİ" - -#: ../diff.c:753 -#, fuzzy -msgid "E810: Cannot read or write temp files" -msgstr "E557: Lk} termcap ɮ" - -#: ../diff.c:755 -msgid "E97: Cannot create diffs" -msgstr "E97: إ " - -#: ../diff.c:966 -#, fuzzy -msgid "E816: Cannot read patch output" -msgstr "E98: LkŪ diff X" - -#: ../diff.c:1220 -msgid "E98: Cannot read diff output" -msgstr "E98: LkŪ diff X" - -#: ../diff.c:2081 -msgid "E99: Current buffer is not in diff mode" -msgstr "E99: ثewİϤOb diff Ҧ" - -#: ../diff.c:2100 -#, fuzzy -msgid "E793: No other buffer in diff mode is modifiable" -msgstr "E100: SwİϦb diff Ҧ" - -#: ../diff.c:2102 -msgid "E100: No other buffer in diff mode" -msgstr "E100: SwİϦb diff Ҧ" - -#: ../diff.c:2112 -msgid "E101: More than two buffers in diff mode, don't know which one to use" -msgstr "E101: ӥHWwİϦb diff ҦALkMwnέ@" - -#: ../diff.c:2141 -#, c-format -msgid "E102: Can't find buffer \"%s\"" -msgstr "E102: 䤣wİ: \"%s\"" - -#: ../diff.c:2152 -#, c-format -msgid "E103: Buffer \"%s\" is not in diff mode" -msgstr "E103: wİ \"%s\" Ob diff Ҧ" - -#: ../diff.c:2193 -msgid "E787: Buffer changed unexpectedly" -msgstr "" - -#: ../digraph.c:1598 -msgid "E104: Escape not allowed in digraph" -msgstr "E104: ƦXr(digraph)ϥ Escape" - -#: ../digraph.c:1760 -msgid "E544: Keymap file not found" -msgstr "E544: 䤣 keymap " - -#: ../digraph.c:1785 -msgid "E105: Using :loadkeymap not in a sourced file" -msgstr "E105: ϥ :loadkeymap " - -#: ../digraph.c:1821 -msgid "E791: Empty keymap entry" -msgstr "" - -#: ../edit.c:82 -msgid " Keyword completion (^N^P)" -msgstr " r۰ʧ (^N^P)" - -#. ctrl_x_mode == 0, ^P/^N compl. -#: ../edit.c:83 -#, fuzzy -msgid " ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)" -msgstr " ^X Ҧ (^E^Y^L^]^F^I^K^D^N^P)" - -#: ../edit.c:85 -msgid " Whole line completion (^L^N^P)" -msgstr " ۰ʧ (^L^N^P)" - -#: ../edit.c:86 -msgid " File name completion (^F^N^P)" -msgstr " ɦW۰ʧ (^F^N^P)" - -#: ../edit.c:87 -msgid " Tag completion (^]^N^P)" -msgstr " Ҧ۰ʧ (^]^N^P)" - -#: ../edit.c:88 -msgid " Path pattern completion (^N^P)" -msgstr " |۰ʧ (^N^P)" - -#: ../edit.c:89 -msgid " Definition completion (^D^N^P)" -msgstr " wq۰ʧ (^D^N^P)" - -#: ../edit.c:91 -msgid " Dictionary completion (^K^N^P)" -msgstr " r۰ʧ (^K^N^P)" - -#: ../edit.c:92 -msgid " Thesaurus completion (^T^N^P)" -msgstr " Thesaurus ۰ʧ (^T^N^P)" - -#: ../edit.c:93 -msgid " Command-line completion (^V^N^P)" -msgstr " ROC۰ʧ (^V^N^P)" - -#: ../edit.c:94 -#, fuzzy -msgid " User defined completion (^U^N^P)" -msgstr " ۰ʧ (^L^N^P)" - -#: ../edit.c:95 -#, fuzzy -msgid " Omni completion (^O^N^P)" -msgstr " Ҧ۰ʧ (^]^N^P)" - -#: ../edit.c:96 -#, fuzzy -msgid " Spelling suggestion (s^N^P)" -msgstr " ۰ʧ (^L^N^P)" - -#: ../edit.c:97 -msgid " Keyword Local completion (^N^P)" -msgstr " ϰr۰ʧ (^N^P)" - -#: ../edit.c:100 -msgid "Hit end of paragraph" -msgstr "wq" - -#: ../edit.c:101 -msgid "E839: Completion function changed window" -msgstr "" - -#: ../edit.c:102 -msgid "E840: Completion function deleted text" -msgstr "" - -#: ../edit.c:1847 -msgid "'dictionary' option is empty" -msgstr "ﶵ 'dictionary' ]w" - -#: ../edit.c:1848 -msgid "'thesaurus' option is empty" -msgstr "ﶵ 'thesaurus' ]w" - -#: ../edit.c:2655 -#, c-format -msgid "Scanning dictionary: %s" -msgstr "˦r: %s" - -#: ../edit.c:3079 -msgid " (insert) Scroll (^E/^Y)" -msgstr " (J) Scroll (^E/^Y)" - -#: ../edit.c:3081 -msgid " (replace) Scroll (^E/^Y)" -msgstr " (N) Scroll (^E/^Y)" - -#: ../edit.c:3587 -#, c-format -msgid "Scanning: %s" -msgstr "ˤ: %s" - -#: ../edit.c:3614 -msgid "Scanning tags." -msgstr "˼." - -#: ../edit.c:4519 -msgid " Adding" -msgstr " W[" - -#. showmode might reset the internal line pointers, so it must -#. * be called before line = ml_get(), or when this address is no -#. * longer needed. -- Acevedo. -#. -#: ../edit.c:4562 -msgid "-- Searching..." -msgstr "-- jM..." - -#: ../edit.c:4618 -msgid "Back at original" -msgstr "^_I" - -#: ../edit.c:4621 -msgid "Word from other line" -msgstr "qO}lr (?)" - -#: ../edit.c:4624 -msgid "The only match" -msgstr "uŦX" - -#: ../edit.c:4680 -#, c-format -msgid "match %d of %d" -msgstr " %d / %d" - -#: ../edit.c:4684 -#, c-format -msgid "match %d" -msgstr "ŦX %d" - -#: ../eval.c:137 -#, fuzzy -msgid "E18: Unexpected characters in :let" -msgstr "E18: '=' eX{F~r" - -#: ../eval.c:138 -#, fuzzy, c-format -msgid "E684: list index out of range: %<PRId64>" -msgstr "E322: 渹WXd: %<PRId64> WL" - -#: ../eval.c:139 -#, c-format -msgid "E121: Undefined variable: %s" -msgstr "E121: ܼ %s |wq" - -#: ../eval.c:140 -msgid "E111: Missing ']'" -msgstr "E111: ʤֹ \"]\"" - -#: ../eval.c:141 -#, fuzzy, c-format -msgid "E686: Argument of %s must be a List" -msgstr "E487: ѼӬO" - -#: ../eval.c:143 -#, fuzzy, c-format -msgid "E712: Argument of %s must be a List or Dictionary" -msgstr "E487: ѼӬO" - -#: ../eval.c:144 -#, fuzzy -msgid "E713: Cannot use empty key for Dictionary" -msgstr "E214: 䤣gJΪȦs" - -#: ../eval.c:145 -#, fuzzy -msgid "E714: List required" -msgstr "E471: ݭnOѼ" - -#: ../eval.c:146 -#, fuzzy -msgid "E715: Dictionary required" -msgstr "E129: ݭn禡W" - -#: ../eval.c:147 -#, c-format -msgid "E118: Too many arguments for function: %s" -msgstr "E118: 禡 %s ƹLh" - -#: ../eval.c:148 -#, c-format -msgid "E716: Key not present in Dictionary: %s" -msgstr "" - -#: ../eval.c:150 -#, c-format -msgid "E122: Function %s already exists, add ! to replace it" -msgstr "E122: 禡 %s wgsb, Шϥ ! jN" - -#: ../eval.c:151 -#, fuzzy -msgid "E717: Dictionary entry already exists" -msgstr "E95: wwİϨϥγoӦWr" - -#: ../eval.c:152 -#, fuzzy -msgid "E718: Funcref required" -msgstr "E129: ݭn禡W" - -#: ../eval.c:153 -#, fuzzy -msgid "E719: Cannot use [:] with a Dictionary" -msgstr "E360: -f ﶵ shell" - -#: ../eval.c:154 -#, c-format -msgid "E734: Wrong variable type for %s=" -msgstr "" - -#: ../eval.c:155 -#, fuzzy, c-format -msgid "E130: Unknown function: %s" -msgstr "E117: wq禡: %s" - -#: ../eval.c:156 -#, c-format -msgid "E461: Illegal variable name: %s" -msgstr "E461: XkܼƦW: %s" - -#: ../eval.c:157 -msgid "E806: using Float as a String" -msgstr "" - -#: ../eval.c:1830 -msgid "E687: Less targets than List items" -msgstr "" - -#: ../eval.c:1834 -msgid "E688: More targets than List items" -msgstr "" - -#: ../eval.c:1906 -msgid "Double ; in list of variables" -msgstr "" - -#: ../eval.c:2078 -#, fuzzy, c-format -msgid "E738: Can't list variables for %s" -msgstr "E138: LkgJ viminfo ɮ %s !" - -#: ../eval.c:2391 -msgid "E689: Can only index a List or Dictionary" -msgstr "" - -#: ../eval.c:2396 -msgid "E708: [:] must come last" -msgstr "" - -#: ../eval.c:2439 -msgid "E709: [:] requires a List value" -msgstr "" - -#: ../eval.c:2674 -msgid "E710: List value has more items than target" -msgstr "" - -#: ../eval.c:2678 -msgid "E711: List value has not enough items" -msgstr "" - -#: ../eval.c:2867 -#, fuzzy -msgid "E690: Missing \"in\" after :for" -msgstr "E69: %s%%[ ʤ ]" - -#: ../eval.c:3063 -#, c-format -msgid "E107: Missing parentheses: %s" -msgstr "E107: ʤֹA: %s" - -#: ../eval.c:3263 -#, c-format -msgid "E108: No such variable: \"%s\"" -msgstr "E108: Lܼ: \"%s\"" - -#: ../eval.c:3333 -msgid "E743: variable nested too deep for (un)lock" -msgstr "" - -#: ../eval.c:3630 -msgid "E109: Missing ':' after '?'" -msgstr "E109: '?' ʤ ':'" - -#: ../eval.c:3893 -msgid "E691: Can only compare List with List" -msgstr "" - -#: ../eval.c:3895 -#, fuzzy -msgid "E692: Invalid operation for Lists" -msgstr "E449: 줣TB⦡" - -#: ../eval.c:3915 -msgid "E735: Can only compare Dictionary with Dictionary" -msgstr "" - -#: ../eval.c:3917 -#, fuzzy -msgid "E736: Invalid operation for Dictionary" -msgstr "E116: 禡 %s ƤT" - -#: ../eval.c:3932 -msgid "E693: Can only compare Funcref with Funcref" -msgstr "" - -#: ../eval.c:3934 -#, fuzzy -msgid "E694: Invalid operation for Funcrefs" -msgstr "E116: 禡 %s ƤT" - -#: ../eval.c:4277 -#, fuzzy -msgid "E804: Cannot use '%' with Float" -msgstr "E360: -f ﶵ shell" - -#: ../eval.c:4478 -msgid "E110: Missing ')'" -msgstr "E110: ʤֹ \")\"" - -#: ../eval.c:4609 -#, fuzzy -msgid "E695: Cannot index a Funcref" -msgstr "E90: Lk̫@ӽwİ" - -#: ../eval.c:4839 -#, c-format -msgid "E112: Option name missing: %s" -msgstr "E112: ʤֿﶵW: %s" - -#: ../eval.c:4855 -#, c-format -msgid "E113: Unknown option: %s" -msgstr "E113: Tﶵ: %s" - -#: ../eval.c:4904 -#, c-format -msgid "E114: Missing quote: %s" -msgstr "E114: ʤ֤: %s" - -#: ../eval.c:5020 -#, c-format -msgid "E115: Missing quote: %s" -msgstr "E115: ʤ֤: %s" - -#: ../eval.c:5084 -#, fuzzy, c-format -msgid "E696: Missing comma in List: %s" -msgstr "E405: ʤ֬۵Ÿ: %s" - -#: ../eval.c:5091 -#, fuzzy, c-format -msgid "E697: Missing end of List ']': %s" -msgstr "E398: ʤ \"=\": %s" - -#: ../eval.c:6475 -#, fuzzy, c-format -msgid "E720: Missing colon in Dictionary: %s" -msgstr "E242: 䤣C: %s" - -#: ../eval.c:6499 -#, c-format -msgid "E721: Duplicate key in Dictionary: \"%s\"" -msgstr "" - -#: ../eval.c:6517 -#, fuzzy, c-format -msgid "E722: Missing comma in Dictionary: %s" -msgstr "E242: 䤣C: %s" - -#: ../eval.c:6524 -#, fuzzy, c-format -msgid "E723: Missing end of Dictionary '}': %s" -msgstr "E126: ʤ :endfunction" - -#: ../eval.c:6555 -#, fuzzy -msgid "E724: variable nested too deep for displaying" -msgstr "E22: _jIsӦhh" - -#: ../eval.c:7188 -#, fuzzy, c-format -msgid "E740: Too many arguments for function %s" -msgstr "E118: 禡 %s ƹLh" - -#: ../eval.c:7190 -#, c-format -msgid "E116: Invalid arguments for function %s" -msgstr "E116: 禡 %s ƤT" - -#: ../eval.c:7377 -#, c-format -msgid "E117: Unknown function: %s" -msgstr "E117: wq禡: %s" - -#: ../eval.c:7383 -#, c-format -msgid "E119: Not enough arguments for function: %s" -msgstr "E119: 禡 %s ƤӤ" - -#: ../eval.c:7387 -#, c-format -msgid "E120: Using <SID> not in a script context: %s" -msgstr "E120: <SID> b script ~ϥ: %s" - -#: ../eval.c:7391 -#, c-format -msgid "E725: Calling dict function without Dictionary: %s" -msgstr "" - -#: ../eval.c:7453 -#, fuzzy -msgid "E808: Number or Float required" -msgstr "E521: = ݭnƦr" - -#: ../eval.c:7503 -#, fuzzy -msgid "add() argument" -msgstr "TѼ: " - -#: ../eval.c:7907 -#, fuzzy -msgid "E699: Too many arguments" -msgstr "ӦhsѼ" - -#: ../eval.c:8073 -#, fuzzy -msgid "E785: complete() can only be used in Insert mode" -msgstr "E328: ub䥦Ҧϥ" - -#: ../eval.c:8156 -msgid "&Ok" -msgstr "Tw(&O)" - -#: ../eval.c:8676 -#, fuzzy, c-format -msgid "E737: Key already exists: %s" -msgstr "E227: %s mapping wgsb" - -#: ../eval.c:8692 -msgid "extend() argument" -msgstr "" - -#: ../eval.c:8915 -#, fuzzy -msgid "map() argument" -msgstr "vim [Ѽ] " - -#: ../eval.c:8916 -msgid "filter() argument" -msgstr "" - -#: ../eval.c:9229 -#, c-format -msgid "+-%s%3ld lines: " -msgstr "+-%s%3ld : " - -#: ../eval.c:9291 -#, fuzzy, c-format -msgid "E700: Unknown function: %s" -msgstr "E117: wq禡: %s" - -#: ../eval.c:10729 -msgid "called inputrestore() more often than inputsave()" -msgstr "Is inputrestore() Ƥ inputsave() ٦h" - -#: ../eval.c:10771 -#, fuzzy -msgid "insert() argument" -msgstr "ӦhsѼ" - -#: ../eval.c:10841 -#, fuzzy -msgid "E786: Range not allowed" -msgstr "E481: iϥνdO" - -#: ../eval.c:11140 -#, fuzzy -msgid "E701: Invalid type for len()" -msgstr "E596: Tr" - -#: ../eval.c:11980 -msgid "E726: Stride is zero" -msgstr "" - -#: ../eval.c:11982 -msgid "E727: Start past end" -msgstr "" - -#: ../eval.c:12024 ../eval.c:15297 -msgid "<empty>" -msgstr "" - -#: ../eval.c:12282 -msgid "remove() argument" -msgstr "" - -#: ../eval.c:12466 -msgid "E655: Too many symbolic links (cycle?)" -msgstr "E655: ӦhhŸ쵲(symlink) (`?)" - -#: ../eval.c:12593 -msgid "reverse() argument" -msgstr "" - -#: ../eval.c:13721 -msgid "sort() argument" -msgstr "" - -#: ../eval.c:13721 -#, fuzzy -msgid "uniq() argument" -msgstr "TѼ: " - -#: ../eval.c:13776 -#, fuzzy -msgid "E702: Sort compare function failed" -msgstr "E237: LkܦL" - -#: ../eval.c:13806 -msgid "E882: Uniq compare function failed" -msgstr "" - -#: ../eval.c:14085 -msgid "(Invalid)" -msgstr "(T)" - -#: ../eval.c:14590 -#, fuzzy -msgid "E677: Error writing temp file" -msgstr "E208: gJɮ \"%s\" ~" - -#: ../eval.c:16159 -msgid "E805: Using a Float as a Number" -msgstr "" - -#: ../eval.c:16162 -msgid "E703: Using a Funcref as a Number" -msgstr "" - -#: ../eval.c:16170 -msgid "E745: Using a List as a Number" -msgstr "" - -#: ../eval.c:16173 -msgid "E728: Using a Dictionary as a Number" -msgstr "" - -#: ../eval.c:16259 -msgid "E729: using Funcref as a String" -msgstr "" - -#: ../eval.c:16262 -#, fuzzy -msgid "E730: using List as a String" -msgstr "E374: 榡Ʀr̤֤F ]" - -#: ../eval.c:16265 -msgid "E731: using Dictionary as a String" -msgstr "" - -#: ../eval.c:16619 -#, fuzzy, c-format -msgid "E706: Variable type mismatch for: %s" -msgstr "E93: @ӥHW %s" - -#: ../eval.c:16705 -#, fuzzy, c-format -msgid "E795: Cannot delete variable %s" -msgstr "E46: Lk]wŪܼ \"%s\"" - -#: ../eval.c:16724 -#, fuzzy, c-format -msgid "E704: Funcref variable name must start with a capital: %s" -msgstr "E128: 禡WٲĤ@Ӧrjg: %s" - -#: ../eval.c:16732 -#, c-format -msgid "E705: Variable name conflicts with existing function: %s" -msgstr "" - -#: ../eval.c:16763 -#, c-format -msgid "E741: Value is locked: %s" -msgstr "" - -#: ../eval.c:16764 ../eval.c:16769 ../message.c:1839 -msgid "Unknown" -msgstr "" - -#: ../eval.c:16768 -#, fuzzy, c-format -msgid "E742: Cannot change value of %s" -msgstr "E284: ]w IC ƭ" - -#: ../eval.c:16838 -msgid "E698: variable nested too deep for making a copy" -msgstr "" - -#: ../eval.c:17249 -#, c-format -msgid "E123: Undefined function: %s" -msgstr "E123: 禡 %s |wq" - -#: ../eval.c:17260 -#, c-format -msgid "E124: Missing '(': %s" -msgstr "E124: ʤ \"(\": %s" - -#: ../eval.c:17293 -#, fuzzy -msgid "E862: Cannot use g: here" -msgstr "E284: ]w IC ƭ" - -#: ../eval.c:17312 -#, c-format -msgid "E125: Illegal argument: %s" -msgstr "E125: ѼƤT: %s" - -#: ../eval.c:17323 -#, fuzzy, c-format -msgid "E853: Duplicate argument name: %s" -msgstr "E154: (tag) \"%s\" bɮ %s ̭ƥX{h" - -#: ../eval.c:17416 -msgid "E126: Missing :endfunction" -msgstr "E126: ʤ :endfunction" - -#: ../eval.c:17537 -#, fuzzy, c-format -msgid "E707: Function name conflicts with variable: %s" -msgstr "E128: 禡WٲĤ@Ӧrjg: %s" - -#: ../eval.c:17549 -#, c-format -msgid "E127: Cannot redefine function %s: It is in use" -msgstr "E127: 禡 %s bϥΤALkswq" - -#: ../eval.c:17604 -#, fuzzy, c-format -msgid "E746: Function name does not match script file name: %s" -msgstr "E128: 禡WٲĤ@Ӧrjg: %s" - -#: ../eval.c:17716 -msgid "E129: Function name required" -msgstr "E129: ݭn禡W" - -#: ../eval.c:17824 -#, fuzzy, c-format -msgid "E128: Function name must start with a capital or \"s:\": %s" -msgstr "E128: 禡WٲĤ@Ӧrjg: %s" - -#: ../eval.c:17833 -#, fuzzy, c-format -msgid "E884: Function name cannot contain a colon: %s" -msgstr "E128: 禡WٲĤ@Ӧrjg: %s" - -#: ../eval.c:18336 -#, c-format -msgid "E131: Cannot delete function %s: It is in use" -msgstr "E131: 禡 %s bϥΤALkR" - -#: ../eval.c:18441 -msgid "E132: Function call depth is higher than 'maxfuncdepth'" -msgstr "E132: 禡jIshƶWL 'maxfuncdepth'" - -#: ../eval.c:18568 -#, c-format -msgid "calling %s" -msgstr "Is %s" - -#: ../eval.c:18651 -#, c-format -msgid "%s aborted" -msgstr "%s Qj_ " - -#: ../eval.c:18653 -#, c-format -msgid "%s returning #%<PRId64>" -msgstr "%s Ǧ^ #%<PRId64> " - -#: ../eval.c:18670 -#, fuzzy, c-format -msgid "%s returning %s" -msgstr "%s Ǧ^ \"%s\"" - -#: ../eval.c:18691 ../ex_cmds2.c:2695 -#, c-format -msgid "continuing in %s" -msgstr "~: %s" - -#: ../eval.c:18795 -msgid "E133: :return not inside a function" -msgstr "E133: :return b禡̨ϥ" - -#: ../eval.c:19159 -msgid "" -"\n" -"# global variables:\n" -msgstr "" -"\n" -"# ܼ:\n" - -#: ../eval.c:19254 -msgid "" -"\n" -"\tLast set from " -msgstr "" -"\n" -"\tW]w: " - -#: ../eval.c:19272 -#, fuzzy -msgid "No old files" -msgstr "SޤJɮ" - -#: ../ex_cmds.c:122 -#, c-format -msgid "<%s>%s%s %d, Hex %02x, Octal %03o" -msgstr "<%s>%s%s %d, Qi %02x, Ki %03o" - -#: ../ex_cmds.c:145 -#, c-format -msgid "> %d, Hex %04x, Octal %o" -msgstr "> %d, Qi %04x, Ki %o" - -#: ../ex_cmds.c:146 -#, c-format -msgid "> %d, Hex %08x, Octal %o" -msgstr "> %d, Qi %08x, Ki %o" - -#: ../ex_cmds.c:684 -msgid "E134: Move lines into themselves" -msgstr "E134: Lk沾쥦ۤw" - -#: ../ex_cmds.c:747 -msgid "1 line moved" -msgstr "wh 1 " - -#: ../ex_cmds.c:749 -#, c-format -msgid "%<PRId64> lines moved" -msgstr "wh %<PRId64> " - -#: ../ex_cmds.c:1175 -#, c-format -msgid "%<PRId64> lines filtered" -msgstr "wBz %<PRId64> " - -#: ../ex_cmds.c:1194 -msgid "E135: *Filter* Autocommands must not change current buffer" -msgstr "E135: *Filter* Autocommand iHwİϪe" - -#: ../ex_cmds.c:1244 -msgid "[No write since last change]\n" -msgstr "[s|xs]\n" - -#: ../ex_cmds.c:1424 -#, c-format -msgid "%sviminfo: %s in line: " -msgstr "%sviminfo: %s b椤: " - -#: ../ex_cmds.c:1431 -msgid "E136: viminfo: Too many errors, skipping rest of file" -msgstr "E136: viminfo: Lh~, ɮרl" - -#: ../ex_cmds.c:1458 -#, c-format -msgid "Reading viminfo file \"%s\"%s%s%s" -msgstr "Ū viminfo ɮ \"%s\"%s%s%s" - -#: ../ex_cmds.c:1460 -msgid " info" -msgstr " T" - -#: ../ex_cmds.c:1461 -msgid " marks" -msgstr " аO" - -#: ../ex_cmds.c:1462 -#, fuzzy -msgid " oldfiles" -msgstr "SޤJɮ" - -#: ../ex_cmds.c:1463 -msgid " FAILED" -msgstr " " - -#. avoid a wait_return for this message, it's annoying -#: ../ex_cmds.c:1541 -#, c-format -msgid "E137: Viminfo file is not writable: %s" -msgstr "E137: Viminfo ɮLkgJ: %s" - -#: ../ex_cmds.c:1626 -#, c-format -msgid "E138: Can't write viminfo file %s!" -msgstr "E138: LkgJ viminfo ɮ %s !" - -#: ../ex_cmds.c:1635 -#, c-format -msgid "Writing viminfo file \"%s\"" -msgstr "gJ viminfo ɮ \"%s\" " - -#. Write the info: -#: ../ex_cmds.c:1720 -#, c-format -msgid "# This viminfo file was generated by Vim %s.\n" -msgstr "# viminfo ɮO Vim %s Ҳ.\n" - -#: ../ex_cmds.c:1722 -msgid "" -"# You may edit it if you're careful!\n" -"\n" -msgstr "" -"# pGQnۦקЯSOpߡI\n" -"\n" - -#: ../ex_cmds.c:1723 -msgid "# Value of 'encoding' when this file was written\n" -msgstr "# 'encoding' bɫإ߮ɪ\n" - -#: ../ex_cmds.c:1800 -msgid "Illegal starting char" -msgstr "LĪ_lr" - -#: ../ex_cmds.c:2162 -msgid "Write partial file?" -msgstr "ngJɮܡH" - -#: ../ex_cmds.c:2166 -msgid "E140: Use ! to write partial buffer" -msgstr "E140: Шϥ ! HgJwİ" - -#: ../ex_cmds.c:2281 -#, fuzzy, c-format -msgid "Overwrite existing file \"%s\"?" -msgstr "nмgwsbɮ \"%.*s\"H" - -#: ../ex_cmds.c:2317 -#, c-format -msgid "Swap file \"%s\" exists, overwrite anyway?" -msgstr "" - -#: ../ex_cmds.c:2326 -#, fuzzy, c-format -msgid "E768: Swap file exists: %s (:silent! overrides)" -msgstr "E13: ɮפwgsb (i ! jN)" - -#: ../ex_cmds.c:2381 -#, c-format -msgid "E141: No file name for buffer %<PRId64>" -msgstr "E141: wİ %<PRId64> SɮצW" - -#: ../ex_cmds.c:2412 -msgid "E142: File not written: Writing is disabled by 'write' option" -msgstr "E142: ɮץgJA] 'write' ﶵQ" - -#: ../ex_cmds.c:2434 -#, fuzzy, c-format -msgid "" -"'readonly' option is set for \"%s\".\n" -"Do you wish to write anyway?" -msgstr "" -"\"%.*s\" w]w 'readonly' ﶵ.\n" -"TwnмgܡH" - -#: ../ex_cmds.c:2439 -#, c-format -msgid "" -"File permissions of \"%s\" are read-only.\n" -"It may still be possible to write it.\n" -"Do you wish to try?" -msgstr "" - -#: ../ex_cmds.c:2451 -#, fuzzy, c-format -msgid "E505: \"%s\" is read-only (add ! to override)" -msgstr "OŪ (Шϥ ! j)" - -#: ../ex_cmds.c:3120 -#, c-format -msgid "E143: Autocommands unexpectedly deleted new buffer %s" -msgstr "E143: Autocommands N~aRswİ %s" - -#: ../ex_cmds.c:3313 -msgid "E144: non-numeric argument to :z" -msgstr "E144: :z DƦrѼ" - -#: ../ex_cmds.c:3404 -msgid "E145: Shell commands not allowed in rvim" -msgstr "E145: rvim Tϥ shell RO" - -#: ../ex_cmds.c:3498 -msgid "E146: Regular expressions can't be delimited by letters" -msgstr "E146: Regular expression LkΦrj (?)" - -#: ../ex_cmds.c:3964 -#, c-format -msgid "replace with %s (y/n/a/q/l/^E/^Y)?" -msgstr "N %s (y/n/a/q/^E/^Y)?" - -#: ../ex_cmds.c:4379 -msgid "(Interrupted) " -msgstr "(w_) " - -#: ../ex_cmds.c:4384 -#, fuzzy -msgid "1 match" -msgstr "; ŦX " - -#: ../ex_cmds.c:4384 -msgid "1 substitution" -msgstr "N@ " - -#: ../ex_cmds.c:4387 -#, fuzzy, c-format -msgid "%<PRId64> matches" -msgstr "%<PRId64> " - -#: ../ex_cmds.c:4388 -#, c-format -msgid "%<PRId64> substitutions" -msgstr "N %<PRId64> " - -#: ../ex_cmds.c:4392 -msgid " on 1 line" -msgstr "AdG@ " - -#: ../ex_cmds.c:4395 -#, c-format -msgid " on %<PRId64> lines" -msgstr "AdG %<PRId64> " - -#: ../ex_cmds.c:4438 -msgid "E147: Cannot do :global recursive" -msgstr "E147: :global Lkj " - -#: ../ex_cmds.c:4467 -msgid "E148: Regular expression missing from global" -msgstr "E148: SϥιL Regular expression (?)" - -#: ../ex_cmds.c:4508 -#, c-format -msgid "Pattern found in every line: %s" -msgstr "C@泣䤣: %s" - -#: ../ex_cmds.c:4510 -#, fuzzy, c-format -msgid "Pattern not found: %s" -msgstr "䤣" - -#: ../ex_cmds.c:4587 -msgid "" -"\n" -"# Last Substitute String:\n" -"$" -msgstr "" -"\n" -"# e@մNr:\n" -"$" - -#: ../ex_cmds.c:4679 -msgid "E478: Don't panic!" -msgstr "E478: nW!" - -#: ../ex_cmds.c:4717 -#, c-format -msgid "E661: Sorry, no '%s' help for %s" -msgstr "E661: p, S %s-%s " - -#: ../ex_cmds.c:4719 -#, c-format -msgid "E149: Sorry, no help for %s" -msgstr "E149: p, S %s " - -#: ../ex_cmds.c:4751 -#, c-format -msgid "Sorry, help file \"%s\" not found" -msgstr "p, 䤣컡 \"%s\"" - -#: ../ex_cmds.c:5323 -#, c-format -msgid "E150: Not a directory: %s" -msgstr "E150: %s Oؿ" - -#: ../ex_cmds.c:5446 -#, c-format -msgid "E152: Cannot open %s for writing" -msgstr "E152: LkHgJҦ} \"%s\"" - -#: ../ex_cmds.c:5471 -#, c-format -msgid "E153: Unable to open %s for reading" -msgstr "E153: LkŪɮ: %s" - -#: ../ex_cmds.c:5500 -#, c-format -msgid "E670: Mix of help file encodings within a language: %s" -msgstr "E670: P@y (%s) VXPrsX" - -#: ../ex_cmds.c:5565 -#, fuzzy, c-format -msgid "E154: Duplicate tag \"%s\" in file %s/%s" -msgstr "E154: (tag) \"%s\" bɮ %s ̭ƥX{h" - -#: ../ex_cmds.c:5687 -#, c-format -msgid "E160: Unknown sign command: %s" -msgstr "E160: wq sign command: %s" - -#: ../ex_cmds.c:5704 -msgid "E156: Missing sign name" -msgstr "E156: ʤ sign W" - -#: ../ex_cmds.c:5746 -msgid "E612: Too many signs defined" -msgstr "E612: wwqӦh signs" - -#: ../ex_cmds.c:5813 -#, c-format -msgid "E239: Invalid sign text: %s" -msgstr "E239: T sign r: %s" - -#: ../ex_cmds.c:5844 ../ex_cmds.c:6035 -#, c-format -msgid "E155: Unknown sign: %s" -msgstr "E155: T sign: %s" - -#: ../ex_cmds.c:5877 -msgid "E159: Missing sign number" -msgstr "E159: ʤ sign number" - -#: ../ex_cmds.c:5971 -#, c-format -msgid "E158: Invalid buffer name: %s" -msgstr "E158: wİϦWٿ~: %s" - -#: ../ex_cmds.c:6008 -#, c-format -msgid "E157: Invalid sign ID: %<PRId64>" -msgstr "E157: Sign ID ~: %<PRId64>" - -#: ../ex_cmds.c:6066 -msgid " (not supported)" -msgstr " (䴩) " - -#: ../ex_cmds.c:6169 -msgid "[Deleted]" -msgstr "[wR]" - -#: ../ex_cmds2.c:139 -msgid "Entering Debug mode. Type \"cont\" to continue." -msgstr "iJҦ. J \"cont\" H^쥿`Ҧ." - -#: ../ex_cmds2.c:143 ../ex_docmd.c:759 -#, c-format -msgid "line %<PRId64>: %s" -msgstr " %<PRId64>: %s" - -#: ../ex_cmds2.c:145 -#, c-format -msgid "cmd: %s" -msgstr "cmd: %s" - -#: ../ex_cmds2.c:322 -#, c-format -msgid "Breakpoint in \"%s%s\" line %<PRId64>" -msgstr "\"%s%s\" _I: %<PRId64> " - -#: ../ex_cmds2.c:581 -#, c-format -msgid "E161: Breakpoint not found: %s" -msgstr "E161: 䤣줤_I: %s" - -#: ../ex_cmds2.c:611 -msgid "No breakpoints defined" -msgstr "Swq_I" - -#: ../ex_cmds2.c:617 -#, c-format -msgid "%3d %s %s line %<PRId64>" -msgstr "%3d %s %s %<PRId64> " - -#: ../ex_cmds2.c:942 -msgid "E750: First use \":profile start {fname}\"" -msgstr "" - -#: ../ex_cmds2.c:1269 -#, fuzzy, c-format -msgid "Save changes to \"%s\"?" -msgstr "Nܰʦsx \"%.*s\"?" - -#: ../ex_cmds2.c:1271 ../ex_docmd.c:8851 -msgid "Untitled" -msgstr "RW" - -#: ../ex_cmds2.c:1421 -#, c-format -msgid "E162: No write since last change for buffer \"%s\"" -msgstr "E162: wLwİ \"%s\" |s (i ! j)" - -#: ../ex_cmds2.c:1480 -msgid "Warning: Entered other buffer unexpectedly (check autocommands)" -msgstr "`N: w䥦wİ (ˬd Autocommands L~)" - -#: ../ex_cmds2.c:1826 -msgid "E163: There is only one file to edit" -msgstr "E163: u@ɮץis" - -#: ../ex_cmds2.c:1828 -msgid "E164: Cannot go before first file" -msgstr "E164: wgbĤ@ɮפF" - -#: ../ex_cmds2.c:1830 -msgid "E165: Cannot go beyond last file" -msgstr "E165: wgb̫@ɮפF" - -#: ../ex_cmds2.c:2175 -#, c-format -msgid "E666: compiler not supported: %s" -msgstr "E666: sĶ䴩: %s" - -#: ../ex_cmds2.c:2257 -#, c-format -msgid "Searching for \"%s\" in \"%s\"" -msgstr "jM: \"%s\" -- \"%s\"" - -#: ../ex_cmds2.c:2284 -#, c-format -msgid "Searching for \"%s\"" -msgstr "jM: \"%s\"" - -#: ../ex_cmds2.c:2307 -#, c-format -msgid "not found in 'runtimepath': \"%s\"" -msgstr "b 'runtimepath' ̧䤣 \"%s\"" - -#: ../ex_cmds2.c:2472 -#, c-format -msgid "Cannot source a directory: \"%s\"" -msgstr "LkؿG \"%s\"" - -#: ../ex_cmds2.c:2518 -#, c-format -msgid "could not source \"%s\"" -msgstr "Lk \"%s\"" - -#: ../ex_cmds2.c:2520 -#, c-format -msgid "line %<PRId64>: could not source \"%s\"" -msgstr " %<PRId64> : Lk \"%s\"" - -#: ../ex_cmds2.c:2535 -#, c-format -msgid "sourcing \"%s\"" -msgstr " \"%s\" " - -#: ../ex_cmds2.c:2537 -#, c-format -msgid "line %<PRId64>: sourcing \"%s\"" -msgstr " %<PRId64> : %s" - -#: ../ex_cmds2.c:2693 -#, c-format -msgid "finished sourcing %s" -msgstr " %s" - -#: ../ex_cmds2.c:2765 -#, fuzzy -msgid "modeline" -msgstr "٦@ " - -#: ../ex_cmds2.c:2767 -#, fuzzy -msgid "--cmd argument" -msgstr "vim [Ѽ] " - -#: ../ex_cmds2.c:2769 -#, fuzzy -msgid "-c argument" -msgstr "vim [Ѽ] " - -#: ../ex_cmds2.c:2771 -msgid "environment variable" -msgstr "" - -#: ../ex_cmds2.c:2773 -#, fuzzy -msgid "error handler" -msgstr "~P_" - -#: ../ex_cmds2.c:3020 -msgid "W15: Warning: Wrong line separator, ^M may be missing" -msgstr "W15: `N: ~jrAiO֤F ^M" - -#: ../ex_cmds2.c:3139 -msgid "E167: :scriptencoding used outside of a sourced file" -msgstr "E167: b script ɮץ~iϥ :scriptencoding" - -#: ../ex_cmds2.c:3166 -msgid "E168: :finish used outside of a sourced file" -msgstr "E168: b script ɮץ~iϥ :finish" - -#: ../ex_cmds2.c:3389 -#, c-format -msgid "Current %slanguage: \"%s\"" -msgstr "ثe %sy: \"%s\"" - -#: ../ex_cmds2.c:3404 -#, c-format -msgid "E197: Cannot set language to \"%s\"" -msgstr "E197: ]wy \"%s\"" - -#. don't redisplay the window -#. don't wait for return -#: ../ex_docmd.c:387 -msgid "Entering Ex mode. Type \"visual\" to go to Normal mode." -msgstr "iJ Ex Ҧ. J \"visua\" H^쥿`Ҧ." - -#: ../ex_docmd.c:428 -msgid "E501: At end-of-file" -msgstr "E501: wɮ" - -#: ../ex_docmd.c:513 -msgid "E169: Command too recursive" -msgstr "E169: ROjhƹLh" - -#: ../ex_docmd.c:1006 -#, c-format -msgid "E605: Exception not caught: %s" -msgstr "E605: dIҥ~G %s" - -#: ../ex_docmd.c:1085 -msgid "End of sourced file" -msgstr "ROɵ" - -#: ../ex_docmd.c:1086 -msgid "End of function" -msgstr "禡" - -#: ../ex_docmd.c:1628 -msgid "E464: Ambiguous use of user-defined command" -msgstr "E464: ϥΪ̩wqRO|Vc" - -#: ../ex_docmd.c:1638 -msgid "E492: Not an editor command" -msgstr "E492: Os边RO" - -#: ../ex_docmd.c:1729 -msgid "E493: Backwards range given" -msgstr "E493: wFVeѦҪd" - -#: ../ex_docmd.c:1733 -msgid "Backwards range given, OK to swap" -msgstr "wFVeѦҪdAOK to swap" - -#. append -#. typed wrong -#: ../ex_docmd.c:1787 -msgid "E494: Use w or w>>" -msgstr "E494: Шϥ w w>>" - -#: ../ex_docmd.c:3454 -msgid "E319: The command is not available in this version" -msgstr "E319: p, RObS@" - -#: ../ex_docmd.c:3752 -msgid "E172: Only one file name allowed" -msgstr "E172: u@" - -#: ../ex_docmd.c:4238 -msgid "1 more file to edit. Quit anyway?" -msgstr "٦@ɮץs. Twn}H" - -#: ../ex_docmd.c:4242 -#, c-format -msgid "%d more files to edit. Quit anyway?" -msgstr "٦ %d ɮץs. Twn}H" - -#: ../ex_docmd.c:4248 -msgid "E173: 1 more file to edit" -msgstr "E173: ٦@ɮץs " - -#: ../ex_docmd.c:4250 -#, c-format -msgid "E173: %<PRId64> more files to edit" -msgstr "E173: ٦ %<PRId64> ɮץs" - -#: ../ex_docmd.c:4320 -msgid "E174: Command already exists: add ! to replace it" -msgstr "E174: ROwgsb, Шϥ ! jswq" - -#: ../ex_docmd.c:4432 -msgid "" -"\n" -" Name Args Range Complete Definition" -msgstr "" -"\n" -" W Ѽ d wq " - -#: ../ex_docmd.c:4516 -msgid "No user-defined commands found" -msgstr "䤣ϥΪ̩wqRO" - -#: ../ex_docmd.c:4538 -msgid "E175: No attribute specified" -msgstr "E175: Swݩ" - -#: ../ex_docmd.c:4583 -msgid "E176: Invalid number of arguments" -msgstr "E176: TѼƼƥ" - -#: ../ex_docmd.c:4594 -msgid "E177: Count cannot be specified twice" -msgstr "E177: w⦸ƥ" - -#: ../ex_docmd.c:4603 -msgid "E178: Invalid default value for count" -msgstr "E178: ƥتw]ѼƤT" - -#: ../ex_docmd.c:4625 -#, fuzzy -msgid "E179: argument required for -complete" -msgstr "E179: OݭnѼƤ~৹" - -#: ../ex_docmd.c:4635 -#, c-format -msgid "E181: Invalid attribute: %s" -msgstr "E181: Tݩ: %s" - -#: ../ex_docmd.c:4678 -msgid "E182: Invalid command name" -msgstr "E182: OW٤T" - -#: ../ex_docmd.c:4691 -msgid "E183: User defined commands must start with an uppercase letter" -msgstr "E183: ϥΪ̦۩wOHjgr}l" - -#: ../ex_docmd.c:4696 -#, fuzzy -msgid "E841: Reserved name, cannot be used for user defined command" -msgstr "E464: ϥΪ̩wqRO|Vc" - -#: ../ex_docmd.c:4751 -#, c-format -msgid "E184: No such user-defined command: %s" -msgstr "E184: SϥΪ̦۩wROG %s" - -#: ../ex_docmd.c:5219 -#, c-format -msgid "E180: Invalid complete value: %s" -msgstr "E180: 㪺: '%s'" - -#: ../ex_docmd.c:5225 -msgid "E468: Completion argument only allowed for custom completion" -msgstr "E468: ۭqɧɤ~iɧѼ" - -#: ../ex_docmd.c:5231 -msgid "E467: Custom completion requires a function argument" -msgstr "E467: ۭqɧݭn禡Ѽ" - -#: ../ex_docmd.c:5257 -#, fuzzy, c-format -msgid "E185: Cannot find color scheme '%s'" -msgstr "E185: 䤣C˦ %s" - -#: ../ex_docmd.c:5263 -msgid "Greetings, Vim user!" -msgstr ", Vim ϥΪ̡I" - -#: ../ex_docmd.c:5431 -#, fuzzy -msgid "E784: Cannot close last tab page" -msgstr "E444: ̫@ӵ" - -#: ../ex_docmd.c:5462 -#, fuzzy -msgid "Already only one tab page" -msgstr "wguѤ@ӵF" - -#: ../ex_docmd.c:6004 -#, fuzzy, c-format -msgid "Tab page %d" -msgstr " %d " - -#: ../ex_docmd.c:6295 -msgid "No swap file" -msgstr "LȦs" - -#: ../ex_docmd.c:6478 -#, fuzzy -msgid "E747: Cannot change directory, buffer is modified (add ! to override)" -msgstr "E509: Lkإ߳ƥ (Шϥ ! j)" - -#: ../ex_docmd.c:6485 -msgid "E186: No previous directory" -msgstr "E186: Se@ӥؿ" - -#: ../ex_docmd.c:6530 -msgid "E187: Unknown" -msgstr "E187: LkѪаO" - -#: ../ex_docmd.c:6610 -msgid "E465: :winsize requires two number arguments" -msgstr "E465: :winsize ݭnӰѼ" - -#: ../ex_docmd.c:6655 -msgid "E188: Obtaining window position not implemented for this platform" -msgstr "E188: bzxWLkom" - -#: ../ex_docmd.c:6662 -msgid "E466: :winpos requires two number arguments" -msgstr "E466: :winpos ݭnӰѼ" - -#: ../ex_docmd.c:7241 -#, fuzzy, c-format -msgid "E739: Cannot create directory: %s" -msgstr "LkؿG \"%s\"" - -#: ../ex_docmd.c:7268 -#, c-format -msgid "E189: \"%s\" exists (add ! to override)" -msgstr "E189: \"%s\" wsb (Х ! j)" - -#: ../ex_docmd.c:7273 -#, c-format -msgid "E190: Cannot open \"%s\" for writing" -msgstr "E190: LkHgJҦ} \"%s\"" - -#. set mark -#: ../ex_docmd.c:7294 -msgid "E191: Argument must be a letter or forward/backward quote" -msgstr "E191: ѼƥO^rΦVe/᪺" - -#: ../ex_docmd.c:7333 -msgid "E192: Recursive use of :normal too deep" -msgstr "E192: :normal jhƹL`" - -#: ../ex_docmd.c:7807 -msgid "E194: No alternate file name to substitute for '#'" -msgstr "E194: S '#' iNɦW" - -#: ../ex_docmd.c:7841 -msgid "E495: no autocommand file name to substitute for \"<afile>\"" -msgstr "E495: S Autocommand ɦWHN \"<afile>\"" - -#: ../ex_docmd.c:7850 -msgid "E496: no autocommand buffer number to substitute for \"<abuf>\"" -msgstr "E496: S Autocommand wİϦW٥HN \"<abuf>\"" - -#: ../ex_docmd.c:7861 -msgid "E497: no autocommand match name to substitute for \"<amatch>\"" -msgstr "E497: S Autocommand ŦXW٥HN \"<amatch>\"" - -#: ../ex_docmd.c:7870 -msgid "E498: no :source file name to substitute for \"<sfile>\"" -msgstr "E498: S :source ɦWHN \"<sfile>\"" - -#: ../ex_docmd.c:7876 -#, fuzzy -msgid "E842: no line number to use for \"<slnum>\"" -msgstr "E498: S :source ɦWHN \"<sfile>\"" - -#: ../ex_docmd.c:7903 -#, fuzzy, c-format -msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" -msgstr "E499: '%' '#' VɦWAuΩ \":p:h\"" - -#: ../ex_docmd.c:7905 -msgid "E500: Evaluates to an empty string" -msgstr "E500: JŦr" - -#: ../ex_docmd.c:8838 -msgid "E195: Cannot open viminfo file for reading" -msgstr "E195: LkŪ viminfo" - -#: ../ex_eval.c:464 -msgid "E608: Cannot :throw exceptions with 'Vim' prefix" -msgstr "E608: :throw 'Vim' }Yҥ~" - -#. always scroll up, don't overwrite -#: ../ex_eval.c:496 -#, c-format -msgid "Exception thrown: %s" -msgstr "Xҥ~G %s" - -#: ../ex_eval.c:545 -#, c-format -msgid "Exception finished: %s" -msgstr "ҥ~G %s" - -#: ../ex_eval.c:546 -#, c-format -msgid "Exception discarded: %s" -msgstr "wҥ~G %s" - -#: ../ex_eval.c:588 ../ex_eval.c:634 -#, c-format -msgid "%s, line %<PRId64>" -msgstr "%s, %<PRId64>" - -#. always scroll up, don't overwrite -#: ../ex_eval.c:608 -#, c-format -msgid "Exception caught: %s" -msgstr "oͨҥ~G%s" - -#: ../ex_eval.c:676 -#, c-format -msgid "%s made pending" -msgstr "%s y pending" - -#: ../ex_eval.c:679 -#, c-format -msgid "%s resumed" -msgstr "%s w^_" - -#: ../ex_eval.c:683 -#, c-format -msgid "%s discarded" -msgstr "%s w" - -#: ../ex_eval.c:708 -msgid "Exception" -msgstr "ҥ~" - -#: ../ex_eval.c:713 -msgid "Error and interrupt" -msgstr "~P_" - -#: ../ex_eval.c:715 -msgid "Error" -msgstr "~" - -#. if (pending & CSTP_INTERRUPT) -#: ../ex_eval.c:717 -msgid "Interrupt" -msgstr "_" - -#: ../ex_eval.c:795 -msgid "E579: :if nesting too deep" -msgstr "E579: :if hƹL`" - -#: ../ex_eval.c:830 -msgid "E580: :endif without :if" -msgstr "E580: :endif ʤֹ :if" - -#: ../ex_eval.c:873 -msgid "E581: :else without :if" -msgstr "E581: :else ʤֹ :if" - -#: ../ex_eval.c:876 -msgid "E582: :elseif without :if" -msgstr "E582: :elseif ʤֹ :if" - -#: ../ex_eval.c:880 -msgid "E583: multiple :else" -msgstr "E583: h :else" - -#: ../ex_eval.c:883 -msgid "E584: :elseif after :else" -msgstr "E584: :elseif b :else " - -#: ../ex_eval.c:941 -#, fuzzy -msgid "E585: :while/:for nesting too deep" -msgstr "E585: :while hƹL`" - -#: ../ex_eval.c:1028 -#, fuzzy -msgid "E586: :continue without :while or :for" -msgstr "E586: :continue ʤֹ :while" - -#: ../ex_eval.c:1061 -#, fuzzy -msgid "E587: :break without :while or :for" -msgstr "E587: :break ʤֹ :while" - -#: ../ex_eval.c:1102 -#, fuzzy -msgid "E732: Using :endfor with :while" -msgstr "E170: ʤ :endwhile" - -#: ../ex_eval.c:1104 -#, fuzzy -msgid "E733: Using :endwhile with :for" -msgstr "E170: ʤ :endwhile" - -#: ../ex_eval.c:1247 -msgid "E601: :try nesting too deep" -msgstr "E601: :if hƹL`" - -#: ../ex_eval.c:1317 -msgid "E603: :catch without :try" -msgstr "E603: :catch S :try" - -#. Give up for a ":catch" after ":finally" and ignore it. -#. * Just parse. -#: ../ex_eval.c:1332 -msgid "E604: :catch after :finally" -msgstr "E604: :catch b :finally " - -#: ../ex_eval.c:1451 -msgid "E606: :finally without :try" -msgstr "E606: :finally S :try" - -#. Give up for a multiple ":finally" and ignore it. -#: ../ex_eval.c:1467 -msgid "E607: multiple :finally" -msgstr "E607: h :finally" - -#: ../ex_eval.c:1571 -msgid "E602: :endtry without :try" -msgstr "E602: :endif ʤֹ :if" - -#: ../ex_eval.c:2026 -msgid "E193: :endfunction not inside a function" -msgstr "E193: :endfunction b禡ϥ" - -#: ../ex_getln.c:1643 -#, fuzzy -msgid "E788: Not allowed to edit another buffer now" -msgstr "E48: b sandbox ̥X{" - -#: ../ex_getln.c:1656 -#, fuzzy -msgid "E811: Not allowed to change buffer information now" -msgstr "E94: 䤣 %s" - -#: ../ex_getln.c:3178 -msgid "tagname" -msgstr "ҦW" - -#: ../ex_getln.c:3181 -msgid " kind file\n" -msgstr "ɮ\n" - -#: ../ex_getln.c:4799 -msgid "'history' option is zero" -msgstr "ﶵ 'history' Os" - -#: ../ex_getln.c:5046 -#, c-format -msgid "" -"\n" -"# %s History (newest to oldest):\n" -msgstr "" -"\n" -"# %s vO (s):\n" - -#: ../ex_getln.c:5047 -msgid "Command Line" -msgstr "ROC" - -#: ../ex_getln.c:5048 -msgid "Search String" -msgstr "jMr" - -#: ../ex_getln.c:5049 -msgid "Expression" -msgstr "B⦡" - -#: ../ex_getln.c:5050 -msgid "Input Line" -msgstr "J " - -#: ../ex_getln.c:5117 -msgid "E198: cmd_pchar beyond the command length" -msgstr "E198: cmd_pchar WLRO" - -#: ../ex_getln.c:5279 -msgid "E199: Active window or buffer deleted" -msgstr "E199: wR@ΤμȦs" - -#: ../file_search.c:203 -msgid "E854: path too long for completion" -msgstr "" - -#: ../file_search.c:446 -#, c-format -msgid "" -"E343: Invalid path: '**[number]' must be at the end of the path or be " -"followed by '%s'." -msgstr "E343: T|: '**[number]' ݭnb|έn '%s'" - -#: ../file_search.c:1505 -#, c-format -msgid "E344: Can't find directory \"%s\" in cdpath" -msgstr "E344: cdpath Sؿ \"%s\"" - -#: ../file_search.c:1508 -#, c-format -msgid "E345: Can't find file \"%s\" in path" -msgstr "E345: b|䤣ɮ \"%s\"" - -#: ../file_search.c:1512 -#, c-format -msgid "E346: No more directory \"%s\" found in cdpath" -msgstr "E346: b|䤣hɮ \"%s\"" - -#: ../file_search.c:1515 -#, c-format -msgid "E347: No more file \"%s\" found in path" -msgstr "E347: b|䤣hɮ \"%s\"" - -#: ../fileio.c:137 -#, fuzzy -msgid "E812: Autocommands changed buffer or buffer name" -msgstr "E135: *Filter* Autocommand iHwİϪe" - -#: ../fileio.c:368 -msgid "Illegal file name" -msgstr "TɦW" - -#: ../fileio.c:395 ../fileio.c:476 ../fileio.c:2543 ../fileio.c:2578 -msgid "is a directory" -msgstr "Oؿ" - -#: ../fileio.c:397 -msgid "is not a file" -msgstr "Oɮ" - -#: ../fileio.c:508 ../fileio.c:3522 -msgid "[New File]" -msgstr "[RW]" - -#: ../fileio.c:511 -msgid "[New DIRECTORY]" -msgstr "" - -#: ../fileio.c:529 ../fileio.c:532 -msgid "[File too big]" -msgstr "" - -#: ../fileio.c:534 -msgid "[Permission Denied]" -msgstr "[v]" - -#: ../fileio.c:653 -msgid "E200: *ReadPre autocommands made the file unreadable" -msgstr "E200: *ReadPre Autocommand ϵ{LkŪ" - -#: ../fileio.c:655 -msgid "E201: *ReadPre autocommands must not change current buffer" -msgstr "E201: *Filter* Autocommand iHwİϪe" - -#: ../fileio.c:672 -msgid "Nvim: Reading from stdin...\n" -msgstr "Vim: qзǿJŪ...\n" - -#. Re-opening the original file failed! -#: ../fileio.c:909 -msgid "E202: Conversion made file unreadable!" -msgstr "E202: ഫ~" - -#. fifo or socket -#: ../fileio.c:1782 -msgid "[fifo/socket]" -msgstr "[fifo/socket]" - -#. fifo -#: ../fileio.c:1788 -msgid "[fifo]" -msgstr "[fifo]" - -#. or socket -#: ../fileio.c:1794 -msgid "[socket]" -msgstr "[socket]" - -#. or character special -#: ../fileio.c:1801 -#, fuzzy -msgid "[character special]" -msgstr "@Ӧr" - -#: ../fileio.c:1815 -msgid "[CR missing]" -msgstr "[ʤCR]'" - -#: ../fileio.c:1819 -msgid "[long lines split]" -msgstr "[ιL]" - -#: ../fileio.c:1823 ../fileio.c:3512 -msgid "[NOT converted]" -msgstr "[ഫ]" - -#: ../fileio.c:1826 ../fileio.c:3515 -msgid "[converted]" -msgstr "[wഫ]" - -#: ../fileio.c:1831 -#, fuzzy, c-format -msgid "[CONVERSION ERROR in line %<PRId64>]" -msgstr "[ %<PRId64> T줸]" - -#: ../fileio.c:1835 -#, c-format -msgid "[ILLEGAL BYTE in line %<PRId64>]" -msgstr "[ %<PRId64> T줸]" - -#: ../fileio.c:1838 -msgid "[READ ERRORS]" -msgstr "[Ū~]" - -#: ../fileio.c:2104 -msgid "Can't find temp file for conversion" -msgstr "䤣ഫΪȦs" - -#: ../fileio.c:2110 -msgid "Conversion with 'charconvert' failed" -msgstr "rഫ~" - -#: ../fileio.c:2113 -msgid "can't read output of 'charconvert'" -msgstr "LkŪ 'charconvert' X" - -#: ../fileio.c:2437 -#, fuzzy -msgid "E676: No matching autocommands for acwrite buffer" -msgstr "䤣 autocommand" - -#: ../fileio.c:2466 -msgid "E203: Autocommands deleted or unloaded buffer to be written" -msgstr "E203: Autocommand RFngJwİ" - -#: ../fileio.c:2486 -msgid "E204: Autocommand changed number of lines in unexpected way" -msgstr "E204: Autocommand N~aܤF渹" - -#: ../fileio.c:2548 ../fileio.c:2565 -msgid "is not a file or writable device" -msgstr "OɮשΥigJ˸m" - -#: ../fileio.c:2601 -msgid "is read-only (add ! to override)" -msgstr "OŪ (Шϥ ! j)" - -#: ../fileio.c:2886 -msgid "E506: Can't write to backup file (add ! to override)" -msgstr "E506: LkgJƥ (Шϥ ! j)" - -#: ../fileio.c:2898 -msgid "E507: Close error for backup file (add ! to override)" -msgstr "E507: Lkƥ (Шϥ ! j)" - -#: ../fileio.c:2901 -msgid "E508: Can't read file for backup (add ! to override)" -msgstr "E508: LkŪɮץHѳƥ (Шϥ ! j)" - -#: ../fileio.c:2923 -msgid "E509: Cannot create backup file (add ! to override)" -msgstr "E509: Lkإ߳ƥ (Шϥ ! j)" - -#: ../fileio.c:3008 -msgid "E510: Can't make backup file (add ! to override)" -msgstr "E510: Lks@ƥ (Шϥ ! j)" - -#. Can't write without a tempfile! -#: ../fileio.c:3121 -msgid "E214: Can't find temp file for writing" -msgstr "E214: 䤣gJΪȦs" - -#: ../fileio.c:3134 -msgid "E213: Cannot convert (add ! to write without conversion)" -msgstr "E213: Lkഫ (Шϥ ! jഫgJ)" - -#: ../fileio.c:3169 -msgid "E166: Can't open linked file for writing" -msgstr "E166: LkHgJҦ}ҳsɮ" - -#: ../fileio.c:3173 -msgid "E212: Can't open file for writing" -msgstr "E212: LkHgJҦ}" - -#: ../fileio.c:3363 -msgid "E667: Fsync failed" -msgstr "E667: Fsync RO楢" - -#: ../fileio.c:3398 -msgid "E512: Close failed" -msgstr "E512: " - -#: ../fileio.c:3436 -#, fuzzy -msgid "E513: write error, conversion failed (make 'fenc' empty to override)" -msgstr "E513: LkgJ -- ഫ" - -#: ../fileio.c:3441 -#, c-format -msgid "" -"E513: write error, conversion failed in line %<PRId64> (make 'fenc' empty to " -"override)" -msgstr "" - -#: ../fileio.c:3448 -msgid "E514: write error (file system full?)" -msgstr "E514: gJ~ (ɮרtΤwH)" - -#: ../fileio.c:3506 -msgid " CONVERSION ERROR" -msgstr "ഫ~" - -#: ../fileio.c:3509 -#, fuzzy, c-format -msgid " in line %<PRId64>;" -msgstr " %<PRId64>" - -#: ../fileio.c:3519 -msgid "[Device]" -msgstr "[˸m]" - -#: ../fileio.c:3522 -msgid "[New]" -msgstr "[s]" - -#: ../fileio.c:3535 -msgid " [a]" -msgstr "[a]" - -#: ../fileio.c:3535 -msgid " appended" -msgstr " w[" - -#: ../fileio.c:3537 -msgid " [w]" -msgstr "[w]" - -#: ../fileio.c:3537 -msgid " written" -msgstr " wgJ" - -#: ../fileio.c:3579 -msgid "E205: Patchmode: can't save original file" -msgstr "E205: Patch Ҧ: Lkxslɮ" - -#: ../fileio.c:3602 -msgid "E206: patchmode: can't touch empty original file" -msgstr "E206: Patch Ҧ: LkܧŪlɮ" - -#: ../fileio.c:3616 -msgid "E207: Can't delete backup file" -msgstr "E207: LkRƥ" - -#: ../fileio.c:3672 -msgid "" -"\n" -"WARNING: Original file may be lost or damaged\n" -msgstr "" -"\n" -"ĵi: lɮyηla\n" - -#: ../fileio.c:3675 -msgid "don't quit the editor until the file is successfully written!" -msgstr "bɮץTgJeФ}s边!" - -#: ../fileio.c:3795 -msgid "[dos]" -msgstr "[dos]" - -#: ../fileio.c:3795 -msgid "[dos format]" -msgstr "[dos 榡]" - -#: ../fileio.c:3801 -msgid "[mac]" -msgstr "[mac]" - -#: ../fileio.c:3801 -msgid "[mac format]" -msgstr "[mac 榡]" - -#: ../fileio.c:3807 -msgid "[unix]" -msgstr "[unix]" - -#: ../fileio.c:3807 -msgid "[unix format]" -msgstr "[unix 榡]" - -#: ../fileio.c:3831 -msgid "1 line, " -msgstr "1 , " - -#: ../fileio.c:3833 -#, c-format -msgid "%<PRId64> lines, " -msgstr "%<PRId64> , " - -#: ../fileio.c:3836 -msgid "1 character" -msgstr "@Ӧr" - -#: ../fileio.c:3838 -#, c-format -msgid "%<PRId64> characters" -msgstr "%<PRId64>Ӧr" - -#: ../fileio.c:3849 -msgid "[noeol]" -msgstr "[noeol]" - -#: ../fileio.c:3849 -msgid "[Incomplete last line]" -msgstr "[椣]" - -#. don't overwrite messages here -#. must give this prompt -#. don't use emsg() here, don't want to flush the buffers -#: ../fileio.c:3865 -msgid "WARNING: The file has been changed since reading it!!!" -msgstr "ĵi: ɮצۤWŪJwܰ!!!" - -#: ../fileio.c:3867 -msgid "Do you really want to write to it" -msgstr "TwngJ" - -#: ../fileio.c:4648 -#, c-format -msgid "E208: Error writing to \"%s\"" -msgstr "E208: gJɮ \"%s\" ~" - -#: ../fileio.c:4655 -#, c-format -msgid "E209: Error closing \"%s\"" -msgstr "E209: ɮ \"%s\" ~" - -#: ../fileio.c:4657 -#, c-format -msgid "E210: Error reading \"%s\"" -msgstr "E210: Ūɮ \"%s\" ~" - -#: ../fileio.c:4883 -msgid "E246: FileChangedShell autocommand deleted buffer" -msgstr "E246: FileChangedShell autocommand Rwİ" - -#: ../fileio.c:4894 -#, fuzzy, c-format -msgid "E211: File \"%s\" no longer available" -msgstr "E211: ĵi: ɮ \"%s\" wgsb" - -#: ../fileio.c:4906 -#, c-format -msgid "" -"W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as " -"well" -msgstr "W12: ĵi: ɮ \"%s\" ۤWŪJwܰ, ӥBs褤wİϤ]ʤF" - -#: ../fileio.c:4907 -#, fuzzy -msgid "See \":help W12\" for more info." -msgstr "i@BШ \":help W11\"C" - -#: ../fileio.c:4910 -#, c-format -msgid "W11: Warning: File \"%s\" has changed since editing started" -msgstr "W11: ĵi: ɮ \"%s\" ۤWŪJwܰ" - -#: ../fileio.c:4911 -msgid "See \":help W11\" for more info." -msgstr "i@BШ \":help W11\"C" - -#: ../fileio.c:4914 -#, c-format -msgid "W16: Warning: Mode of file \"%s\" has changed since editing started" -msgstr "W16: ĵi: ɮ \"%s\" vPWŪJɤ@ (ܰʹL)" - -#: ../fileio.c:4915 -#, fuzzy -msgid "See \":help W16\" for more info." -msgstr "i@BШ \":help W11\"C" - -# 'mode' seems better as translated to 'permission'? -#: ../fileio.c:4927 -#, c-format -msgid "W13: Warning: File \"%s\" has been created after editing started" -msgstr "W13: ĵi: ɮ \"%s\" b}lsSQإߤF" - -#: ../fileio.c:4947 -msgid "Warning" -msgstr "ĵi" - -#: ../fileio.c:4948 -msgid "" -"&OK\n" -"&Load File" -msgstr "" -"Tw(&O)\n" -"Jɮ(&L)" - -#: ../fileio.c:5065 -#, c-format -msgid "E462: Could not prepare for reloading \"%s\"" -msgstr "E462: LkdzƭsJ \"%s\"" - -#: ../fileio.c:5078 -#, c-format -msgid "E321: Could not reload \"%s\"" -msgstr "E321: LksJ \"%s\"" - -#: ../fileio.c:5601 -msgid "--Deleted--" -msgstr "--wR--" - -#: ../fileio.c:5732 -#, c-format -msgid "auto-removing autocommand: %s <buffer=%d>" -msgstr "" - -#. the group doesn't exist -#: ../fileio.c:5772 -#, c-format -msgid "E367: No such group: \"%s\"" -msgstr "E367: Ls: \"%s\"" - -#: ../fileio.c:5897 -#, c-format -msgid "E215: Illegal character after *: %s" -msgstr "E215: * ᭱Tr: %s" - -#: ../fileio.c:5905 -#, c-format -msgid "E216: No such event: %s" -msgstr "E216: Lƥ: %s" - -#: ../fileio.c:5907 -#, c-format -msgid "E216: No such group or event: %s" -msgstr "E216: LsթΨƥ: %s" - -#. Highlight title -#: ../fileio.c:6090 -msgid "" -"\n" -"--- Auto-Commands ---" -msgstr "" -"\n" -"--- Auto-Commands ---" - -#: ../fileio.c:6293 -#, fuzzy, c-format -msgid "E680: <buffer=%d>: invalid buffer number " -msgstr "wİϸX~" - -#: ../fileio.c:6370 -msgid "E217: Can't execute autocommands for ALL events" -msgstr "E217: LkҦƥ autocommand" - -#: ../fileio.c:6393 -msgid "No matching autocommands" -msgstr "䤣 autocommand" - -#: ../fileio.c:6831 -msgid "E218: autocommand nesting too deep" -msgstr "E218: autocommand hƹL`" - -#: ../fileio.c:7143 -#, c-format -msgid "%s Auto commands for \"%s\"" -msgstr "%s Auto commands: \"%s\"" - -#: ../fileio.c:7149 -#, c-format -msgid "Executing %s" -msgstr " %s" - -#: ../fileio.c:7211 -#, c-format -msgid "autocommand %s" -msgstr "autocommand %s" - -#: ../fileio.c:7795 -msgid "E219: Missing {." -msgstr "E219: ʤ {." - -#: ../fileio.c:7797 -msgid "E220: Missing }." -msgstr "E220: ʤ }." - -#: ../fold.c:93 -msgid "E490: No fold found" -msgstr "E490: 䤣 fold" - -#: ../fold.c:544 -msgid "E350: Cannot create fold with current 'foldmethod'" -msgstr "E350: Lkbثe 'foldmethod' Uإ fold" - -#: ../fold.c:546 -msgid "E351: Cannot delete fold with current 'foldmethod'" -msgstr "E351: Lkbثe 'foldmethod' UR fold" - -#: ../fold.c:1784 -#, c-format -msgid "+--%3ld lines folded " -msgstr "+--w fold %3ld " - -#. buffer has already been read -#: ../getchar.c:273 -msgid "E222: Add to read buffer" -msgstr "E222: [JŪwİϤ" - -#: ../getchar.c:2040 -msgid "E223: recursive mapping" -msgstr "E223: j mapping" - -#: ../getchar.c:2849 -#, c-format -msgid "E224: global abbreviation already exists for %s" -msgstr "E224: %s wg abbreviation F" - -#: ../getchar.c:2852 -#, c-format -msgid "E225: global mapping already exists for %s" -msgstr "E225: %s wg mapping F" - -#: ../getchar.c:2952 -#, c-format -msgid "E226: abbreviation already exists for %s" -msgstr "E226: %s wg abbreviation F" - -#: ../getchar.c:2955 -#, c-format -msgid "E227: mapping already exists for %s" -msgstr "E227: %s mapping wgsb" - -#: ../getchar.c:3008 -msgid "No abbreviation found" -msgstr "䤣 abbreviation" - -#: ../getchar.c:3010 -msgid "No mapping found" -msgstr "So mapping " - -#: ../getchar.c:3974 -msgid "E228: makemap: Illegal mode" -msgstr "E228: makemap: TҦ" - -#. key value of 'cedit' option -#. type of cmdline window or 0 -#. result of cmdline window or 0 -#: ../globals.h:924 -msgid "--No lines in buffer--" -msgstr "--wİϵL--" - -#. -#. * The error messages that can be shared are included here. -#. * Excluded are errors that are only used once and debugging messages. -#. -#: ../globals.h:996 -msgid "E470: Command aborted" -msgstr "E470: ROQj_ " - -#: ../globals.h:997 -msgid "E471: Argument required" -msgstr "E471: ݭnOѼ" - -#: ../globals.h:998 -msgid "E10: \\ should be followed by /, ? or &" -msgstr "E10: \\ ᭱Ӧ / ? &" - -#: ../globals.h:1000 -msgid "E11: Invalid in command-line window; <CR> executes, CTRL-C quits" -msgstr "E11: bROCϥΡC<CR>ACTRL-C }" - -#: ../globals.h:1002 -msgid "E12: Command not allowed from exrc/vimrc in current dir or tag search" -msgstr "E12: exrc/vimrc ̪OLk " - -#: ../globals.h:1003 -msgid "E171: Missing :endif" -msgstr "E171: ʤ :endif" - -#: ../globals.h:1004 -msgid "E600: Missing :endtry" -msgstr "E600: ʤ :endtry" - -#: ../globals.h:1005 -msgid "E170: Missing :endwhile" -msgstr "E170: ʤ :endwhile" - -#: ../globals.h:1006 -#, fuzzy -msgid "E170: Missing :endfor" -msgstr "E171: ʤ :endif" - -#: ../globals.h:1007 -msgid "E588: :endwhile without :while" -msgstr "E588: :endwhile ʤֹ :while" - -#: ../globals.h:1008 -#, fuzzy -msgid "E588: :endfor without :for" -msgstr "E580: :endif ʤֹ :if" - -#: ../globals.h:1009 -msgid "E13: File exists (add ! to override)" -msgstr "E13: ɮפwgsb (i ! jN)" - -#: ../globals.h:1010 -msgid "E472: Command failed" -msgstr "E472: RO楢" - -#: ../globals.h:1011 -msgid "E473: Internal error" -msgstr "E473: ~" - -#: ../globals.h:1012 -msgid "Interrupted" -msgstr "w_" - -#: ../globals.h:1013 -msgid "E14: Invalid address" -msgstr "E14: T}" - -#: ../globals.h:1014 -msgid "E474: Invalid argument" -msgstr "E474: TѼ" - -#: ../globals.h:1015 -#, c-format -msgid "E475: Invalid argument: %s" -msgstr "E475: TѼ: %s" - -#: ../globals.h:1016 -#, c-format -msgid "E15: Invalid expression: %s" -msgstr "E15: TB⦡: %s" - -#: ../globals.h:1017 -msgid "E16: Invalid range" -msgstr "E16: Td" - -#: ../globals.h:1018 -msgid "E476: Invalid command" -msgstr "E476: TRO" - -#: ../globals.h:1019 -#, c-format -msgid "E17: \"%s\" is a directory" -msgstr "E17: \"%s\" Oؿ" - -#: ../globals.h:1020 -#, fuzzy -msgid "E900: Invalid job id" -msgstr "E49: ~ʤjp" - -#: ../globals.h:1021 -msgid "E901: Job table is full" -msgstr "" - -#: ../globals.h:1022 -#, c-format -msgid "E902: \"%s\" is not an executable" -msgstr "" - -#: ../globals.h:1024 -#, c-format -msgid "E364: Library call failed for \"%s()\"" -msgstr "E364: Is禡w \"%s\"() " - -#: ../globals.h:1026 -msgid "E19: Mark has invalid line number" -msgstr "E19: аO渹~" - -#: ../globals.h:1027 -msgid "E20: Mark not set" -msgstr "E20: S]wаO" - -#: ../globals.h:1029 -msgid "E21: Cannot make changes, 'modifiable' is off" -msgstr "E21: ] 'modifiable' ﶵOAҥHק" - -#: ../globals.h:1030 -msgid "E22: Scripts nested too deep" -msgstr "E22: _jIsӦhh" - -#: ../globals.h:1031 -msgid "E23: No alternate file" -msgstr "E23: SNɮ" - -#: ../globals.h:1032 -msgid "E24: No such abbreviation" -msgstr "E24: So abbreviation " - -#: ../globals.h:1033 -msgid "E477: No ! allowed" -msgstr "E477: iϥ '!'" - -#: ../globals.h:1035 -msgid "E25: Nvim does not have a built-in GUI" -msgstr "E25: ]sĶɨS[Jϫɭ{XAҥHLkϥιϫɭ" - -#: ../globals.h:1036 -#, c-format -msgid "E28: No such highlight group name: %s" -msgstr "E28: SW '%s' highlight group" - -#: ../globals.h:1037 -msgid "E29: No inserted text yet" -msgstr "E29: ٨SJrL" - -#: ../globals.h:1038 -msgid "E30: No previous command line" -msgstr "E30: Se@RO" - -#: ../globals.h:1039 -msgid "E31: No such mapping" -msgstr "E31: So mapping " - -#: ../globals.h:1040 -msgid "E479: No match" -msgstr "E479: 䤣" - -#: ../globals.h:1041 -#, c-format -msgid "E480: No match: %s" -msgstr "E480: 䤣: %s" - -#: ../globals.h:1042 -msgid "E32: No file name" -msgstr "E32: SɦW" - -#: ../globals.h:1044 -msgid "E33: No previous substitute regular expression" -msgstr "E33: Se@ӷjM/NRO" - -#: ../globals.h:1045 -msgid "E34: No previous command" -msgstr "E34: Se@өRO" - -#: ../globals.h:1046 -msgid "E35: No previous regular expression" -msgstr "E35: Se@ӷjMO" - -#: ../globals.h:1047 -msgid "E481: No range allowed" -msgstr "E481: iϥνdO" - -#: ../globals.h:1048 -msgid "E36: Not enough room" -msgstr "E36: SŶ" - -#: ../globals.h:1049 -#, c-format -msgid "E482: Can't create file %s" -msgstr "E482: إɮ %s" - -#: ../globals.h:1050 -msgid "E483: Can't get temp file name" -msgstr "E483: LkoȦsɦW" - -#: ../globals.h:1051 -#, c-format -msgid "E484: Can't open file %s" -msgstr "E484: Lk}ɮ %s" - -#: ../globals.h:1052 -#, c-format -msgid "E485: Can't read file %s" -msgstr "E485: LkŪɮ %s" - -#: ../globals.h:1054 -msgid "E37: No write since last change (add ! to override)" -msgstr "E37: wLɮצ|s (i ! j)" - -#: ../globals.h:1055 -#, fuzzy -msgid "E37: No write since last change" -msgstr "[s|xs]\n" - -#: ../globals.h:1056 -msgid "E38: Null argument" -msgstr "E38: Ū (Null) Ѽ" - -#: ../globals.h:1057 -msgid "E39: Number expected" -msgstr "E39: ӭnƦr" - -#: ../globals.h:1058 -#, c-format -msgid "E40: Can't open errorfile %s" -msgstr "E40: Lk}ҿ~ɮ %s" - -#: ../globals.h:1059 -msgid "E41: Out of memory!" -msgstr "E41: O餣!" - -#: ../globals.h:1060 -msgid "Pattern not found" -msgstr "䤣" - -#: ../globals.h:1061 -#, c-format -msgid "E486: Pattern not found: %s" -msgstr "E486: 䤣 %s" - -#: ../globals.h:1062 -msgid "E487: Argument must be positive" -msgstr "E487: ѼӬO" - -#: ../globals.h:1064 -msgid "E459: Cannot go back to previous directory" -msgstr "E459: Lk^e@ӥؿ" - -#: ../globals.h:1066 -msgid "E42: No Errors" -msgstr "E42: S~" - -#: ../globals.h:1067 -msgid "E776: No location list" -msgstr "" - -#: ../globals.h:1068 -msgid "E43: Damaged match string" -msgstr "E43: ŦXr꦳D" - -#: ../globals.h:1069 -msgid "E44: Corrupted regexp program" -msgstr "E44: regexp D" - -#: ../globals.h:1071 -msgid "E45: 'readonly' option is set (add ! to override)" -msgstr "E45: ]w 'readonly' ﶵ(Ū) (i ! j)" - -#: ../globals.h:1073 -#, fuzzy, c-format -msgid "E46: Cannot change read-only variable \"%s\"" -msgstr "E46: Lk]wŪܼ \"%s\"" - -#: ../globals.h:1075 -#, fuzzy, c-format -msgid "E794: Cannot set variable in the sandbox: \"%s\"" -msgstr "E46: Lk]wŪܼ \"%s\"" - -#: ../globals.h:1076 -msgid "E47: Error while reading errorfile" -msgstr "E47: Ū~ɮץ" - -#: ../globals.h:1078 -msgid "E48: Not allowed in sandbox" -msgstr "E48: b sandbox ̥X{" - -#: ../globals.h:1080 -msgid "E523: Not allowed here" -msgstr "E523: o̤iϥ" - -#: ../globals.h:1082 -msgid "E359: Screen mode setting not supported" -msgstr "E359: 䴩]wùҦ" - -#: ../globals.h:1083 -msgid "E49: Invalid scroll size" -msgstr "E49: ~ʤjp" - -#: ../globals.h:1084 -msgid "E91: 'shell' option is empty" -msgstr "E91: 'E71: ﶵ 'shell' ]w" - -#: ../globals.h:1085 -msgid "E255: Couldn't read in sign data!" -msgstr "E255: LkŪ sign data!" - -#: ../globals.h:1086 -msgid "E72: Close error on swap file" -msgstr "E72: Ȧs~" - -#: ../globals.h:1087 -msgid "E73: tag stack empty" -msgstr "E73: Ұ|w" - -#: ../globals.h:1088 -msgid "E74: Command too complex" -msgstr "E74: ROӽ" - -#: ../globals.h:1089 -msgid "E75: Name too long" -msgstr "E75: WrӪ" - -#: ../globals.h:1090 -msgid "E76: Too many [" -msgstr "E76: Ӧh [" - -#: ../globals.h:1091 -msgid "E77: Too many file names" -msgstr "E77: ӦhɦW" - -#: ../globals.h:1092 -msgid "E488: Trailing characters" -msgstr "E488: AJFhlr" - -#: ../globals.h:1093 -msgid "E78: Unknown mark" -msgstr "E78: LkѪаO" - -#: ../globals.h:1094 -msgid "E79: Cannot expand wildcards" -msgstr "E79: Lki}UΦr" - -#: ../globals.h:1096 -msgid "E591: 'winheight' cannot be smaller than 'winminheight'" -msgstr "E591: 'winheight' 'winminheight' " - -#: ../globals.h:1098 -msgid "E592: 'winwidth' cannot be smaller than 'winminwidth'" -msgstr "E592: 'winwidth' 'winminwidth' " - -#: ../globals.h:1099 -msgid "E80: Error while writing" -msgstr "E80: gJ~" - -#: ../globals.h:1100 -msgid "Zero count" -msgstr "ƨs (?)" - -#: ../globals.h:1101 -msgid "E81: Using <SID> not in a script context" -msgstr "E81: <SID> b script ~ϥ." - -#: ../globals.h:1102 -#, fuzzy, c-format -msgid "E685: Internal error: %s" -msgstr "E473: ~" - -#: ../globals.h:1104 -msgid "E363: pattern uses more memory than 'maxmempattern'" -msgstr "" - -#: ../globals.h:1105 -#, fuzzy -msgid "E749: empty buffer" -msgstr "E279: O SNiFF+ wİ" - -#: ../globals.h:1108 -#, fuzzy -msgid "E682: Invalid search pattern or delimiter" -msgstr "E383: ~jMr: %s" - -#: ../globals.h:1109 -msgid "E139: File is loaded in another buffer" -msgstr "E139: zbt@ӽwİϤ]JFoɮ" - -#: ../globals.h:1110 -#, fuzzy, c-format -msgid "E764: Option '%s' is not set" -msgstr "E236: \"%s\" OTweצr" - -#: ../globals.h:1111 -#, fuzzy -msgid "E850: Invalid register name" -msgstr "E354: ȦsWٿ~: '%s'" - -#: ../globals.h:1114 -msgid "search hit TOP, continuing at BOTTOM" -msgstr "wjMɮ}YFAq~jM" - -#: ../globals.h:1115 -msgid "search hit BOTTOM, continuing at TOP" -msgstr "wjMɮFAq}Y~jM" - -#: ../hardcopy.c:240 -msgid "E550: Missing colon" -msgstr "E550: ʤ colon" - -#: ../hardcopy.c:252 -msgid "E551: Illegal component" -msgstr "E551: TҦ" - -#: ../hardcopy.c:259 -msgid "E552: digit expected" -msgstr "E552: ӭnƦr" - -#: ../hardcopy.c:473 -#, c-format -msgid "Page %d" -msgstr " %d " - -#: ../hardcopy.c:597 -msgid "No text to be printed" -msgstr "SnCLr" - -#: ../hardcopy.c:668 -#, c-format -msgid "Printing page %d (%d%%)" -msgstr "CL: %d (%d%%)" - -#: ../hardcopy.c:680 -#, c-format -msgid " Copy %d of %d" -msgstr "ƻs %d / %d" - -#: ../hardcopy.c:733 -#, c-format -msgid "Printed: %s" -msgstr "wCL: %s" - -#: ../hardcopy.c:740 -msgid "Printing aborted" -msgstr "wCL" - -#: ../hardcopy.c:1365 -msgid "E455: Error writing to PostScript output file" -msgstr "E455: LkgJ PostScript X" - -#: ../hardcopy.c:1747 -#, c-format -msgid "E624: Can't open file \"%s\"" -msgstr "E624: Lk}ɮ \"%s\"" - -#: ../hardcopy.c:1756 ../hardcopy.c:2470 -#, c-format -msgid "E457: Can't read PostScript resource file \"%s\"" -msgstr "E457: LkŪ PostScript 귽 \"%s\"" - -#: ../hardcopy.c:1772 -#, c-format -msgid "E618: file \"%s\" is not a PostScript resource file" -msgstr "E618: ɮ \"%s\" O PostScript 귽 " - -#: ../hardcopy.c:1788 ../hardcopy.c:1805 ../hardcopy.c:1844 -#, c-format -msgid "E619: file \"%s\" is not a supported PostScript resource file" -msgstr "E619: 䴩 PostScript 귽 \"%s\"" - -#: ../hardcopy.c:1856 -#, c-format -msgid "E621: \"%s\" resource file has wrong version" -msgstr "E621: \"%s\" 귽ɪ~" - -#: ../hardcopy.c:2225 -msgid "E673: Incompatible multi-byte encoding and character set." -msgstr "" - -#: ../hardcopy.c:2238 -msgid "E674: printmbcharset cannot be empty with multi-byte encoding." -msgstr "" - -#: ../hardcopy.c:2254 -msgid "E675: No default font specified for multi-byte printing." -msgstr "" - -#: ../hardcopy.c:2426 -msgid "E324: Can't open PostScript output file" -msgstr "E324: Lk} PostScript X" - -#: ../hardcopy.c:2458 -#, c-format -msgid "E456: Can't open file \"%s\"" -msgstr "E456: Lk}ɮ \"%s\"" - -#: ../hardcopy.c:2583 -msgid "E456: Can't find PostScript resource file \"prolog.ps\"" -msgstr "E456: LkŪ PostScript 귽 \"prolog.ps\"" - -#: ../hardcopy.c:2593 -#, fuzzy -msgid "E456: Can't find PostScript resource file \"cidfont.ps\"" -msgstr "E456: LkŪ PostScript 귽 \"%s.ps\"" - -#: ../hardcopy.c:2622 ../hardcopy.c:2639 ../hardcopy.c:2665 -#, c-format -msgid "E456: Can't find PostScript resource file \"%s.ps\"" -msgstr "E456: LkŪ PostScript 귽 \"%s.ps\"" - -#: ../hardcopy.c:2654 -#, fuzzy, c-format -msgid "E620: Unable to convert to print encoding \"%s\"" -msgstr "E620:Lkഫ \"%s\" rsX" - -#: ../hardcopy.c:2877 -msgid "Sending to printer..." -msgstr "ǰeƨL..." - -#: ../hardcopy.c:2881 -msgid "E365: Failed to print PostScript file" -msgstr "E365: LkCL PostScript ɮ" - -#: ../hardcopy.c:2883 -msgid "Print job sent." -msgstr "weXCLu@C" - -#: ../if_cscope.c:85 -msgid "Add a new database" -msgstr "sWƮw" - -#: ../if_cscope.c:87 -msgid "Query for a pattern" -msgstr "J pattern" - -#: ../if_cscope.c:89 -msgid "Show this message" -msgstr "ܦT" - -#: ../if_cscope.c:91 -msgid "Kill a connection" -msgstr "su" - -#: ../if_cscope.c:93 -msgid "Reinit all connections" -msgstr "]Ҧsu" - -#: ../if_cscope.c:95 -msgid "Show connections" -msgstr "ܳsu" - -#: ../if_cscope.c:101 -#, c-format -msgid "E560: Usage: cs[cope] %s" -msgstr "E560: Ϊk: cs[cope] %s" - -#: ../if_cscope.c:225 -msgid "This cscope command does not support splitting the window.\n" -msgstr "o cscope RO䴩οù\n" - -#: ../if_cscope.c:266 -msgid "E562: Usage: cstag <ident>" -msgstr "E562: Ϊk: cstag <ѧOrident>" - -#: ../if_cscope.c:313 -msgid "E257: cstag: tag not found" -msgstr "E257: cstag: 䤣 tag" - -#: ../if_cscope.c:461 -#, c-format -msgid "E563: stat(%s) error: %d" -msgstr "E563: stat(%s) ~: %d" - -#: ../if_cscope.c:551 -#, c-format -msgid "E564: %s is not a directory or a valid cscope database" -msgstr "E564: %s Oؿ cscope Ʈw" - -#: ../if_cscope.c:566 -#, c-format -msgid "Added cscope database %s" -msgstr "sW cscope Ʈw %s" - -#: ../if_cscope.c:616 -#, c-format -msgid "E262: error reading cscope connection %<PRId64>" -msgstr "E262: Ū cscope su %<PRId64> ~" - -#: ../if_cscope.c:711 -msgid "E561: unknown cscope search type" -msgstr "E561: cscope jMκA" - -#: ../if_cscope.c:752 ../if_cscope.c:789 -msgid "E566: Could not create cscope pipes" -msgstr "E566: LkإP cscope pipe su" - -#: ../if_cscope.c:767 -msgid "E622: Could not fork for cscope" -msgstr "E622: Lk fork H cscope " - -#: ../if_cscope.c:849 -#, fuzzy -msgid "cs_create_connection setpgid failed" -msgstr "cs_create_connection 楢" - -#: ../if_cscope.c:853 ../if_cscope.c:889 -msgid "cs_create_connection exec failed" -msgstr "cs_create_connection 楢" - -#: ../if_cscope.c:863 ../if_cscope.c:902 -msgid "cs_create_connection: fdopen for to_fp failed" -msgstr "cs_create_connection: fdopen (to_fp)" - -#: ../if_cscope.c:865 ../if_cscope.c:906 -msgid "cs_create_connection: fdopen for fr_fp failed" -msgstr "cs_create_connection: fdopen (fr_fp)" - -#: ../if_cscope.c:890 -msgid "E623: Could not spawn cscope process" -msgstr "E623: Lk cscope " - -#: ../if_cscope.c:932 -msgid "E567: no cscope connections" -msgstr "E567: S cscope su" - -#: ../if_cscope.c:1009 -#, c-format -msgid "E469: invalid cscopequickfix flag %c for %c" -msgstr "E469: cscopequickfix flac %c (%c) T" - -#: ../if_cscope.c:1058 -#, c-format -msgid "E259: no matches found for cscope query %s of %s" -msgstr "E259: 䤣ŦX cscope jM %s / %s" - -#: ../if_cscope.c:1142 -msgid "cscope commands:\n" -msgstr "cscope RO:\n" - -#: ../if_cscope.c:1150 -#, fuzzy, c-format -msgid "%-5s: %s%*s (Usage: %s)" -msgstr "%-5s: %-30s (Ϊk: %s)" - -#: ../if_cscope.c:1155 -msgid "" -"\n" -" c: Find functions calling this function\n" -" d: Find functions called by this function\n" -" e: Find this egrep pattern\n" -" f: Find this file\n" -" g: Find this definition\n" -" i: Find files #including this file\n" -" s: Find this C symbol\n" -" t: Find this text string\n" -msgstr "" - -#: ../if_cscope.c:1226 -msgid "E568: duplicate cscope database not added" -msgstr "E568: ƪ cscope ƮwQ[J" - -#: ../if_cscope.c:1335 -#, c-format -msgid "E261: cscope connection %s not found" -msgstr "E261: 䤣 cscope su %s" - -#: ../if_cscope.c:1364 -#, c-format -msgid "cscope connection %s closed" -msgstr "cscope su %s w" - -#. should not reach here -#: ../if_cscope.c:1486 -msgid "E570: fatal error in cs_manage_matches" -msgstr "E570: cs_manage_matches Y~" - -#: ../if_cscope.c:1693 -#, c-format -msgid "Cscope tag: %s" -msgstr "Cscope (tag): %s" - -#: ../if_cscope.c:1711 -msgid "" -"\n" -" # line" -msgstr "" -"\n" -" # " - -#: ../if_cscope.c:1713 -msgid "filename / context / line\n" -msgstr "ɦW / / 渹\n" - -#: ../if_cscope.c:1809 -#, c-format -msgid "E609: Cscope error: %s" -msgstr "E609: Csope ~: %s" - -#: ../if_cscope.c:2053 -msgid "All cscope databases reset" -msgstr "]Ҧ cscope Ʈw" - -#: ../if_cscope.c:2123 -msgid "no cscope connections\n" -msgstr "S cscope su\n" - -#: ../if_cscope.c:2126 -msgid " # pid database name prepend path\n" -msgstr " # pid ƮwW prepend path\n" - -#: ../main.c:144 -#, fuzzy -msgid "Unknown option argument" -msgstr "Tﶵ" - -#: ../main.c:146 -msgid "Too many edit arguments" -msgstr "ӦhsѼ" - -#: ../main.c:148 -msgid "Argument missing after" -msgstr "ʤ֥nѼ:" - -#: ../main.c:150 -#, fuzzy -msgid "Garbage after option argument" -msgstr "Lk{ﶵ᪺RO: " - -#: ../main.c:152 -msgid "Too many \"+command\", \"-c command\" or \"--cmd command\" arguments" -msgstr "Ӧh \"+command\" B \"-c command\" \"--cmd command\" Ѽ" - -#: ../main.c:154 -msgid "Invalid argument for" -msgstr "TѼ: " - -#: ../main.c:294 -#, c-format -msgid "%d files to edit\n" -msgstr "٦ %d ɮݽs\n" - -#: ../main.c:1342 -msgid "Attempt to open script file again: \"" -msgstr "չϦA} script : \"" - -#: ../main.c:1350 -msgid "Cannot open for reading: \"" -msgstr "Lk}ҥHŪ: \"" - -#: ../main.c:1393 -msgid "Cannot open for script output: \"" -msgstr "Lk}Ҭ script X: \"" - -#: ../main.c:1622 -msgid "Vim: Warning: Output is not to a terminal\n" -msgstr "Vim: `N: XOݾ(ù)\n" - -#: ../main.c:1624 -msgid "Vim: Warning: Input is not from a terminal\n" -msgstr "Vim: `N: JOݾ(L)\n" - -#. just in case.. -#: ../main.c:1891 -msgid "pre-vimrc command line" -msgstr "vimrc eROC" - -#: ../main.c:1964 -#, c-format -msgid "E282: Cannot read from \"%s\"" -msgstr "E282: LkŪɮ \"%s\"" - -#: ../main.c:2149 -msgid "" -"\n" -"More info with: \"vim -h\"\n" -msgstr "" -"\n" -"dߧhTа: \"vim -h\"\n" - -#: ../main.c:2178 -msgid "[file ..] edit specified file(s)" -msgstr "[ɮ ..] swɮ" - -#: ../main.c:2179 -msgid "- read text from stdin" -msgstr "- qзǿJ(stdin)Ūɮ" - -#: ../main.c:2180 -msgid "-t tag edit file where tag is defined" -msgstr "-t tag sɨϥΫw tag" - -#: ../main.c:2181 -msgid "-q [errorfile] edit file with first error" -msgstr "-q [errorfile] sɸJĤ@ӿ~" - -#: ../main.c:2187 -msgid "" -"\n" -"\n" -"usage:" -msgstr "" -"\n" -"\n" -" Ϊk:" - -#: ../main.c:2189 -msgid " vim [arguments] " -msgstr "vim [Ѽ] " - -#: ../main.c:2193 -msgid "" -"\n" -" or:" -msgstr "" -"\n" -" :" - -#: ../main.c:2196 -msgid "" -"\n" -"\n" -"Arguments:\n" -msgstr "" -"\n" -"\n" -"Ѽ:\n" - -#: ../main.c:2197 -msgid "--\t\t\tOnly file names after this" -msgstr "--\t\t\tubo᪺ɮ" - -#: ../main.c:2199 -msgid "--literal\t\tDon't expand wildcards" -msgstr "--literal\t\ti}UΦr" - -#: ../main.c:2201 -msgid "-v\t\t\tVi mode (like \"vi\")" -msgstr "-v\t\t\tVi Ҧ (P \"vi\")" - -#: ../main.c:2202 -msgid "-e\t\t\tEx mode (like \"ex\")" -msgstr "-e\t\t\tEx Ҧ (P \"ex\")" - -#: ../main.c:2203 -msgid "-E\t\t\tImproved Ex mode" -msgstr "" - -#: ../main.c:2204 -msgid "-s\t\t\tSilent (batch) mode (only for \"ex\")" -msgstr "-s\t\t\twR (batch) Ҧ (uP \"ex\" @_ϥ)" - -#: ../main.c:2205 -msgid "-d\t\t\tDiff mode (like \"vimdiff\")" -msgstr "-d\t\t\tDiff Ҧ (P \"vimdiff\", itɮפPB)" - -#: ../main.c:2206 -msgid "-y\t\t\tEasy mode (like \"evim\", modeless)" -msgstr "-y\t\t\t²Ҧ (P \"evim\", modeless)" - -#: ../main.c:2207 -msgid "-R\t\t\tReadonly mode (like \"view\")" -msgstr "-R\t\t\tŪҦ (P \"view\")" - -#: ../main.c:2208 -msgid "-Z\t\t\tRestricted mode (like \"rvim\")" -msgstr "-Z\t\t\tҦ (P \"rvim\")" - -#: ../main.c:2209 -msgid "-m\t\t\tModifications (writing files) not allowed" -msgstr "-m\t\t\tiק (gJɮ)" - -#: ../main.c:2210 -msgid "-M\t\t\tModifications in text not allowed" -msgstr "-M\t\t\tiקr" - -#: ../main.c:2211 -msgid "-b\t\t\tBinary mode" -msgstr "-b\t\t\tGiҦ" - -#: ../main.c:2212 -msgid "-l\t\t\tLisp mode" -msgstr "-l\t\t\tLisp Ҧ" - -#: ../main.c:2213 -msgid "-C\t\t\tCompatible with Vi: 'compatible'" -msgstr "-C\t\t\t'compatible' Dz Vi ۮeҦ" - -#: ../main.c:2214 -msgid "-N\t\t\tNot fully Vi compatible: 'nocompatible'" -msgstr "-N\t\t\t'nocompatible' PDz Vi ۮeAiϥ Vim [jO" - -#: ../main.c:2215 -msgid "-V[N][fname]\t\tBe verbose [level N] [log messages to fname]" -msgstr "" - -#: ../main.c:2216 -msgid "-D\t\t\tDebugging mode" -msgstr "-D\t\t\tҦ" - -#: ../main.c:2217 -msgid "-n\t\t\tNo swap file, use memory only" -msgstr "-n\t\t\tϥμȦs, uϥΰO" - -#: ../main.c:2218 -msgid "-r\t\t\tList swap files and exit" -msgstr "-r\t\t\tCXȦsɫ}" - -#: ../main.c:2219 -msgid "-r (with file name)\tRecover crashed session" -msgstr "-r ([ɦW) \t״_Wl(Recover crashed session)" - -#: ../main.c:2220 -msgid "-L\t\t\tSame as -r" -msgstr "-L\t\t\tP -r" - -#: ../main.c:2221 -msgid "-A\t\t\tstart in Arabic mode" -msgstr "-A\t\t\tҰʬ Arabic Ҧ" - -#: ../main.c:2222 -msgid "-H\t\t\tStart in Hebrew mode" -msgstr "-H\t\t\tҰʬ Hebrew Ҧ" - -#: ../main.c:2223 -msgid "-F\t\t\tStart in Farsi mode" -msgstr "-F\t\t\tҰʬ Farsi Ҧ" - -#: ../main.c:2224 -msgid "-T <terminal>\tSet terminal type to <terminal>" -msgstr "-T <terminal>\t]wݾ <terminal>" - -#: ../main.c:2225 -msgid "-u <vimrc>\t\tUse <vimrc> instead of any .vimrc" -msgstr "-u <vimrc>\t\tϥ <vimrc> N .vimrc" - -#: ../main.c:2226 -msgid "--noplugin\t\tDon't load plugin scripts" -msgstr "--noplugin\t\tJ plugin" - -#: ../main.c:2227 -#, fuzzy -msgid "-p[N]\t\tOpen N tab pages (default: one for each file)" -msgstr "-o[N]\t\t} N ӵ (w]OCɮפ@)" - -#: ../main.c:2228 -msgid "-o[N]\t\tOpen N windows (default: one for each file)" -msgstr "-o[N]\t\t} N ӵ (w]OCɮפ@)" - -#: ../main.c:2229 -msgid "-O[N]\t\tLike -o but split vertically" -msgstr "-O[N]\t\tP -o ϥΫ" - -#: ../main.c:2230 -msgid "+\t\t\tStart at end of file" -msgstr "+\t\t\tҰʫɮ" - -#: ../main.c:2231 -msgid "+<lnum>\t\tStart at line <lnum>" -msgstr "+<lnum>\t\tҰʫ <lnum> " - -#: ../main.c:2232 -msgid "--cmd <command>\tExecute <command> before loading any vimrc file" -msgstr "--cmd <command>\tJ vimrc e <command>" - -#: ../main.c:2233 -msgid "-c <command>\t\tExecute <command> after loading the first file" -msgstr "-c <command>\t\tJĤ@ɮ <command>" - -#: ../main.c:2235 -msgid "-S <session>\t\tSource file <session> after loading the first file" -msgstr "-S <session>\t\tJĤ@ɮJ Session <session>" - -#: ../main.c:2236 -msgid "-s <scriptin>\tRead Normal mode commands from file <scriptin>" -msgstr "-s <scriptin>\tq <scriptin> ŪJ@ҦRO" - -#: ../main.c:2237 -msgid "-w <scriptout>\tAppend all typed commands to file <scriptout>" -msgstr "-w <scriptout>\tɮ <scriptout> [(append)ҦJRO" - -#: ../main.c:2238 -msgid "-W <scriptout>\tWrite all typed commands to file <scriptout>" -msgstr "-W <scriptout>\tɮ <scriptout> gJҦJRO" - -#: ../main.c:2240 -msgid "--startuptime <file>\tWrite startup timing messages to <file>" -msgstr "" - -#: ../main.c:2242 -msgid "-i <viminfo>\t\tUse <viminfo> instead of .viminfo" -msgstr "-i <viminfo>\t\tϥ <viminfo> ӫD .viminfo" - -#: ../main.c:2243 -msgid "-h or --help\tPrint Help (this message) and exit" -msgstr "-h --help\tLX(]NOT)}" - -#: ../main.c:2244 -msgid "--version\t\tPrint version information and exit" -msgstr "--version\t\tLXT}" - -#: ../mark.c:676 -msgid "No marks set" -msgstr "S]wаO (mark)" - -#: ../mark.c:678 -#, c-format -msgid "E283: No marks matching \"%s\"" -msgstr "E283: 䤣ŦX \"%s\" аO(mark)" - -#. Highlight title -#: ../mark.c:687 -msgid "" -"\n" -"mark line col file/text" -msgstr "" -"\n" -"аO 渹 ɮ/r" - -#. Highlight title -#: ../mark.c:789 -msgid "" -"\n" -" jump line col file/text" -msgstr "" -"\n" -" jump 渹 ɮ/r" - -#. Highlight title -#: ../mark.c:831 -msgid "" -"\n" -"change line col text" -msgstr "" -"\n" -" 渹 r" - -#: ../mark.c:1238 -msgid "" -"\n" -"# File marks:\n" -msgstr "" -"\n" -"# ɮаO:\n" - -#. Write the jumplist with -' -#: ../mark.c:1271 -msgid "" -"\n" -"# Jumplist (newest first):\n" -msgstr "" -"\n" -"# Jumplist (ѷs):\n" - -#: ../mark.c:1352 -msgid "" -"\n" -"# History of marks within files (newest to oldest):\n" -msgstr "" -"\n" -"# ɮפ Mark O (ѷs):\n" - -#: ../mark.c:1431 -msgid "Missing '>'" -msgstr "ʤֹ '>'" - -#: ../memfile.c:426 -msgid "E293: block was not locked" -msgstr "E293: ϶Qw" - -#: ../memfile.c:799 -msgid "E294: Seek error in swap file read" -msgstr "E294: ȦsŪ~" - -#: ../memfile.c:803 -msgid "E295: Read error in swap file" -msgstr "E295: ȦsŪ~" - -#: ../memfile.c:849 -msgid "E296: Seek error in swap file write" -msgstr "E296: ȦsɼgJ~" - -#: ../memfile.c:865 -msgid "E297: Write error in swap file" -msgstr "E297: ȦsɼgJ~" - -#: ../memfile.c:1036 -msgid "E300: Swap file already exists (symlink attack?)" -msgstr "E300: Ȧsɤwgsb! (p߲Ÿsw|}!?)" - -#: ../memline.c:318 -msgid "E298: Didn't get block nr 0?" -msgstr "E298: 䤣϶ 0?" - -#: ../memline.c:361 -msgid "E298: Didn't get block nr 1?" -msgstr "E298: 䤣϶ 1?" - -#: ../memline.c:377 -msgid "E298: Didn't get block nr 2?" -msgstr "E298: 䤣϶ 2?" - -#. could not (re)open the swap file, what can we do???? -#: ../memline.c:465 -msgid "E301: Oops, lost the swap file!!!" -msgstr "E301: , ȦsɤF!!!" - -#: ../memline.c:477 -msgid "E302: Could not rename swap file" -msgstr "E302: LkܼȦsɪW" - -#: ../memline.c:554 -#, c-format -msgid "E303: Unable to open swap file for \"%s\", recovery impossible" -msgstr "E303: Lk}ҼȦs \"%s\", i״_F" - -#: ../memline.c:666 -#, fuzzy -msgid "E304: ml_upd_block0(): Didn't get block 0??" -msgstr "E304: ml_timestamp: 䤣϶ 0??" - -#. no swap files found -#: ../memline.c:830 -#, c-format -msgid "E305: No swap file found for %s" -msgstr "E305: 䤣 %s Ȧs" - -#: ../memline.c:839 -msgid "Enter number of swap file to use (0 to quit): " -msgstr "пܧAnϥΪȦs (0 }): " - -#: ../memline.c:879 -#, c-format -msgid "E306: Cannot open %s" -msgstr "E306: Lk} %s" - -#: ../memline.c:897 -msgid "Unable to read block 0 from " -msgstr "LkŪ϶ 0:" - -#: ../memline.c:900 -msgid "" -"\n" -"Maybe no changes were made or Vim did not update the swap file." -msgstr "" -"\n" -"iOASLקάO Vim ٨ӤΧsȦs." - -#: ../memline.c:909 -msgid " cannot be used with this version of Vim.\n" -msgstr " Lkb Vim ϥ.\n" - -#: ../memline.c:911 -msgid "Use Vim version 3.0.\n" -msgstr "ϥ Vim 3.0C\n" - -#: ../memline.c:916 -#, c-format -msgid "E307: %s does not look like a Vim swap file" -msgstr "E307: %s ݰ_ӤO Vim Ȧs" - -#: ../memline.c:922 -msgid " cannot be used on this computer.\n" -msgstr " LkboOqWϥ.\n" - -#: ../memline.c:924 -msgid "The file was created on " -msgstr "ɮإߩ " - -#: ../memline.c:928 -msgid "" -",\n" -"or the file has been damaged." -msgstr "" -",\n" -"άOoɮפwglC" - -#: ../memline.c:945 -msgid " has been damaged (page size is smaller than minimum value).\n" -msgstr "" - -#: ../memline.c:974 -#, c-format -msgid "Using swap file \"%s\"" -msgstr "ϥμȦs \"%s\"" - -#: ../memline.c:980 -#, c-format -msgid "Original file \"%s\"" -msgstr "l \"%s\"" - -#: ../memline.c:995 -msgid "E308: Warning: Original file may have been changed" -msgstr "E308: ĵi: lɮץiwgקLF" - -#: ../memline.c:1061 -#, c-format -msgid "E309: Unable to read block 1 from %s" -msgstr "E309: Lkq %s Ū϶ 1" - -#: ../memline.c:1065 -msgid "???MANY LINES MISSING" -msgstr "???ʤ֤Ӧh " - -#: ../memline.c:1076 -msgid "???LINE COUNT WRONG" -msgstr "???渹~" - -#: ../memline.c:1082 -msgid "???EMPTY BLOCK" -msgstr "???Ū BLOCK" - -#: ../memline.c:1103 -msgid "???LINES MISSING" -msgstr "???䤣@Ǧ " - -#: ../memline.c:1128 -#, c-format -msgid "E310: Block 1 ID wrong (%s not a .swp file?)" -msgstr "E310: ϶ 1 ID ~ (%s OȦs?)" - -#: ../memline.c:1133 -msgid "???BLOCK MISSING" -msgstr "???䤣BLOCK" - -#: ../memline.c:1147 -msgid "??? from here until ???END lines may be messed up" -msgstr "??? qǫ ???END eiD" - -#: ../memline.c:1164 -msgid "??? from here until ???END lines may have been inserted/deleted" -msgstr "??? qǫ ???END eiQR/JL" - -# do not translate -#: ../memline.c:1181 -msgid "???END" -msgstr "???END" - -#: ../memline.c:1238 -msgid "E311: Recovery Interrupted" -msgstr "E311: ״_w_" - -#: ../memline.c:1243 -msgid "" -"E312: Errors detected while recovering; look for lines starting with ???" -msgstr "E312: ״_ɵoͿ~; Ъ`N}Y ??? " - -#: ../memline.c:1245 -msgid "See \":help E312\" for more information." -msgstr "ԲӻШ \":help E312\"" - -#: ../memline.c:1249 -msgid "Recovery completed. You should check if everything is OK." -msgstr "_짹. нTw@`." - -#: ../memline.c:1251 -msgid "" -"\n" -"(You might want to write out this file under another name\n" -msgstr "" -"\n" -"(Ai|QnoɮץtsOɦWA\n" - -#: ../memline.c:1252 -#, fuzzy -msgid "and run diff with the original file to check for changes)" -msgstr "A diff PɮפHˬdO_)\n" - -#: ../memline.c:1254 -msgid "Recovery completed. Buffer contents equals file contents." -msgstr "" - -#: ../memline.c:1255 -#, fuzzy -msgid "" -"\n" -"You may want to delete the .swp file now.\n" -"\n" -msgstr "" -"(D)R .swp Ȧs\n" -"\n" - -#. use msg() to start the scrolling properly -#: ../memline.c:1327 -msgid "Swap files found:" -msgstr "HUȦs:" - -#: ../memline.c:1446 -msgid " In current directory:\n" -msgstr " bثeؿ:\n" - -#: ../memline.c:1448 -msgid " Using specified name:\n" -msgstr " Using specified name:\n" - -#: ../memline.c:1450 -msgid " In directory " -msgstr " bؿ " - -#: ../memline.c:1465 -msgid " -- none --\n" -msgstr " -- L --\n" - -#: ../memline.c:1527 -msgid " owned by: " -msgstr " ֦: " - -#: ../memline.c:1529 -msgid " dated: " -msgstr " : " - -#: ../memline.c:1532 ../memline.c:3231 -msgid " dated: " -msgstr " : " - -#: ../memline.c:1548 -msgid " [from Vim version 3.0]" -msgstr " [q Vim 3.0]" - -#: ../memline.c:1550 -msgid " [does not look like a Vim swap file]" -msgstr " [ Vim Ȧs]" - -#: ../memline.c:1552 -msgid " file name: " -msgstr " ɦW: " - -#: ../memline.c:1558 -msgid "" -"\n" -" modified: " -msgstr "" -"\n" -" קL: " - -#: ../memline.c:1559 -msgid "YES" -msgstr "O" - -#: ../memline.c:1559 -msgid "no" -msgstr "_" - -#: ../memline.c:1562 -msgid "" -"\n" -" user name: " -msgstr "" -"\n" -" ϥΪ: " - -#: ../memline.c:1568 -msgid " host name: " -msgstr " DW: " - -#: ../memline.c:1570 -msgid "" -"\n" -" host name: " -msgstr "" -"\n" -" DW: " - -#: ../memline.c:1575 -msgid "" -"\n" -" process ID: " -msgstr "" -"\n" -" process ID: " - -#: ../memline.c:1579 -msgid " (still running)" -msgstr " (椤)" - -#: ../memline.c:1586 -msgid "" -"\n" -" [not usable on this computer]" -msgstr "" -"\n" -" [LkbqWϥ]" - -#: ../memline.c:1590 -msgid " [cannot be read]" -msgstr " [LkŪ]" - -#: ../memline.c:1593 -msgid " [cannot be opened]" -msgstr " [Lk}]" - -#: ../memline.c:1698 -msgid "E313: Cannot preserve, there is no swap file" -msgstr "E313: LkOd, ϥμȦs" - -#: ../memline.c:1747 -msgid "File preserved" -msgstr "ɮפwOd" - -#: ../memline.c:1749 -msgid "E314: Preserve failed" -msgstr "E314: Od" - -#: ../memline.c:1819 -#, c-format -msgid "E315: ml_get: invalid lnum: %<PRId64>" -msgstr "E315: ml_get: ~ lnum: %<PRId64>" - -#: ../memline.c:1851 -#, c-format -msgid "E316: ml_get: cannot find line %<PRId64>" -msgstr "E316: ml_get: 䤣 %<PRId64> " - -#: ../memline.c:2236 -msgid "E317: pointer block id wrong 3" -msgstr "E317: а϶ id ~ 3" - -#: ../memline.c:2311 -msgid "stack_idx should be 0" -msgstr "stack_idx ӬO 0" - -#: ../memline.c:2369 -msgid "E318: Updated too many blocks?" -msgstr "E318: sӦh϶?" - -#: ../memline.c:2511 -msgid "E317: pointer block id wrong 4" -msgstr "E317: а϶ id ~ 4" - -#: ../memline.c:2536 -msgid "deleted block 1?" -msgstr "R϶ 1?" - -#: ../memline.c:2707 -#, c-format -msgid "E320: Cannot find line %<PRId64>" -msgstr "E320: 䤣 %<PRId64> " - -#: ../memline.c:2916 -msgid "E317: pointer block id wrong" -msgstr "E317: а϶ id ~" - -#: ../memline.c:2930 -msgid "pe_line_count is zero" -msgstr "pe_line_count s" - -#: ../memline.c:2955 -#, c-format -msgid "E322: line number out of range: %<PRId64> past the end" -msgstr "E322: 渹WXd: %<PRId64> WL" - -#: ../memline.c:2959 -#, c-format -msgid "E323: line count wrong in block %<PRId64>" -msgstr "E323: ϶ %<PRId64> ƿ~" - -#: ../memline.c:2999 -msgid "Stack size increases" -msgstr "|jpW[" - -#: ../memline.c:3038 -msgid "E317: pointer block id wrong 2" -msgstr "E317: а϶ id 2" - -#: ../memline.c:3070 -#, c-format -msgid "E773: Symlink loop for \"%s\"" -msgstr "" - -#: ../memline.c:3221 -msgid "E325: ATTENTION" -msgstr "E325: `N" - -#: ../memline.c:3222 -msgid "" -"\n" -"Found a swap file by the name \"" -msgstr "" -"\n" -"Ȧs \"" - -#: ../memline.c:3226 -msgid "While opening file \"" -msgstr "b}ɮ \"" - -#: ../memline.c:3239 -msgid " NEWER than swap file!\n" -msgstr " Ȧsɧs!\n" - -#: ../memline.c:3244 -#, fuzzy -msgid "" -"\n" -"(1) Another program may be editing the same file. If this is the case,\n" -" be careful not to end up with two different instances of the same\n" -" file when making changes." -msgstr "" -"\n" -"(1) it@ӵ{]bsP@ɮ.\n" -" pGOoˡAФpߤn@_gJAMAVO|tѬyC\n" - -#: ../memline.c:3245 -#, fuzzy -msgid " Quit, or continue with caution.\n" -msgstr " }AάO~sC\n" - -#: ../memline.c:3246 -#, fuzzy -msgid "(2) An edit session for this file crashed.\n" -msgstr "" -"\n" -"(2) es覹ɮɷ\n" - -#: ../memline.c:3247 -msgid " If this is the case, use \":recover\" or \"vim -r " -msgstr " pGOo, Х \":recover\" \"vim -r" - -#: ../memline.c:3249 -msgid "" -"\"\n" -" to recover the changes (see \":help recovery\").\n" -msgstr "" -"\"\n" -" ӱϦ^ק (ԲӻЬ \":help recovery\").\n" - -#: ../memline.c:3250 -msgid " If you did this already, delete the swap file \"" -msgstr " pGӱϪwgϤF, ЪRȦs \"" - -#: ../memline.c:3252 -msgid "" -"\"\n" -" to avoid this message.\n" -msgstr "" -"\"\n" -" HקKAݨ즹T.\n" - -#: ../memline.c:3450 ../memline.c:3452 -msgid "Swap file \"" -msgstr "Ȧs \"" - -#: ../memline.c:3451 ../memline.c:3455 -msgid "\" already exists!" -msgstr "\" wgsbF!" - -#: ../memline.c:3457 -msgid "VIM - ATTENTION" -msgstr "VIM - `N" - -#: ../memline.c:3459 -msgid "Swap file already exists!" -msgstr "Ȧsɤwgsb!" - -#: ../memline.c:3464 -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Quit\n" -"&Abort" -msgstr "" -"HŪ覡}(&O)\n" -"s(&E)\n" -"״_(&R)\n" -"}(&Q)\n" -"X(&A)" - -#: ../memline.c:3467 -#, fuzzy -msgid "" -"&Open Read-Only\n" -"&Edit anyway\n" -"&Recover\n" -"&Delete it\n" -"&Quit\n" -"&Abort" -msgstr "" -"HŪ覡}(&O)\n" -"s(&E)\n" -"״_(&R)\n" -"}(&Q)\n" -"X(&A)" - -#. -#. * Change the ".swp" extension to find another file that can be used. -#. * First decrement the last char: ".swo", ".swn", etc. -#. * If that still isn't enough decrement the last but one char: ".svz" -#. * Can happen when editing many "No Name" buffers. -#. -#. ".s?a" -#. ".saa": tried enough, give up -#: ../memline.c:3528 -msgid "E326: Too many swap files found" -msgstr "E326: ӦhȦs" - -#: ../memory.c:227 -#, c-format -msgid "E342: Out of memory! (allocating %<PRIu64> bytes)" -msgstr "E342: O餣! (հtm %<PRIu64> 줸)" - -#: ../menu.c:62 -msgid "E327: Part of menu-item path is not sub-menu" -msgstr "E327: ﶵ|Ol" - -#: ../menu.c:63 -msgid "E328: Menu only exists in another mode" -msgstr "E328: ub䥦Ҧϥ" - -#: ../menu.c:64 -#, fuzzy, c-format -msgid "E329: No menu \"%s\"" -msgstr "E329: S˪" - -#. Only a mnemonic or accelerator is not valid. -#: ../menu.c:329 -msgid "E792: Empty menu name" -msgstr "" - -#: ../menu.c:340 -msgid "E330: Menu path must not lead to a sub-menu" -msgstr "E330: |Vl" - -#: ../menu.c:365 -msgid "E331: Must not add menu items directly to menu bar" -msgstr "E331: ઽﶵ[C" - -#: ../menu.c:370 -msgid "E332: Separator cannot be part of a menu path" -msgstr "E332: juO|@" - -#. Now we have found the matching menu, and we list the mappings -#. Highlight title -#: ../menu.c:762 -msgid "" -"\n" -"--- Menus ---" -msgstr "" -"\n" -"--- ---" - -#: ../menu.c:1313 -msgid "E333: Menu path must lead to a menu item" -msgstr "E333: |ݫV@ӿﶵ" - -#: ../menu.c:1330 -#, c-format -msgid "E334: Menu not found: %s" -msgstr "E334: [] 䤣 %s" - -#: ../menu.c:1396 -#, c-format -msgid "E335: Menu not defined for %s mode" -msgstr "E335: %s Ҧwq" - -#: ../menu.c:1426 -msgid "E336: Menu path must lead to a sub-menu" -msgstr "E336: |ݫVl" - -#: ../menu.c:1447 -msgid "E337: Menu not found - check menu names" -msgstr "E337: 䤣 - ˬdW" - -#: ../message.c:423 -#, c-format -msgid "Error detected while processing %s:" -msgstr "Bz %s ɵoͿ~:" - -#: ../message.c:445 -#, c-format -msgid "line %4ld:" -msgstr " %4ld:" - -#: ../message.c:617 -#, c-format -msgid "E354: Invalid register name: '%s'" -msgstr "E354: ȦsWٿ~: '%s'" - -#: ../message.c:986 -msgid "Interrupt: " -msgstr "w_: " - -#: ../message.c:988 -#, fuzzy -msgid "Press ENTER or type command to continue" -msgstr "Ы ENTER Ψ䥦ROH~" - -#: ../message.c:1843 -#, fuzzy, c-format -msgid "%s line %<PRId64>" -msgstr "%s, %<PRId64>" - -#: ../message.c:2392 -msgid "-- More --" -msgstr "-- | --" - -#: ../message.c:2398 -msgid " SPACE/d/j: screen/page/line down, b/u/k: up, q: quit " -msgstr "" - -#: ../message.c:3021 ../message.c:3031 -msgid "Question" -msgstr "D" - -#: ../message.c:3023 -msgid "" -"&Yes\n" -"&No" -msgstr "" -"&YO\n" -"&N_" - -#: ../message.c:3033 -msgid "" -"&Yes\n" -"&No\n" -"&Cancel" -msgstr "" -"&YO\n" -"&N_\n" -"&C" - -#: ../message.c:3045 -msgid "" -"&Yes\n" -"&No\n" -"Save &All\n" -"&Discard All\n" -"&Cancel" -msgstr "" -"&YO\n" -"&N_\n" -"&As\n" -"&Ds\n" -"&C" - -#: ../message.c:3058 -#, fuzzy -msgid "E766: Insufficient arguments for printf()" -msgstr "E116: 禡 %s ƤT" - -#: ../message.c:3119 -msgid "E807: Expected Float argument for printf()" -msgstr "" - -#: ../message.c:3873 -#, fuzzy -msgid "E767: Too many arguments to printf()" -msgstr "E118: 禡 %s ƹLh" - -#: ../misc1.c:2256 -msgid "W10: Warning: Changing a readonly file" -msgstr "W10: `N: Abק@ӰŪ" - -#: ../misc1.c:2537 -msgid "Type number and <Enter> or click with mouse (empty cancels): " -msgstr "" - -#: ../misc1.c:2539 -msgid "Type number and <Enter> (empty cancels): " -msgstr "" - -#: ../misc1.c:2585 -msgid "1 more line" -msgstr "٦@ " - -#: ../misc1.c:2588 -msgid "1 line less" -msgstr "֩@ " - -#: ../misc1.c:2593 -#, c-format -msgid "%<PRId64> more lines" -msgstr "٦ %<PRId64> " - -#: ../misc1.c:2596 -#, c-format -msgid "%<PRId64> fewer lines" -msgstr "u %<PRId64> " - -#: ../misc1.c:2599 -msgid " (Interrupted)" -msgstr " (w_)" - -#: ../misc1.c:2635 -msgid "Beep!" -msgstr "" - -#: ../misc2.c:738 -#, c-format -msgid "Calling shell to execute: \"%s\"" -msgstr "Is shell : \"%s\"" - -#: ../normal.c:183 -msgid "E349: No identifier under cursor" -msgstr "E349: гBSѧOr" - -#: ../normal.c:1866 -#, fuzzy -msgid "E774: 'operatorfunc' is empty" -msgstr "E221: ﶵ 'commentstring' ]w" - -#: ../normal.c:2637 -msgid "Warning: terminal cannot highlight" -msgstr "`N: AݾLkܰG" - -#: ../normal.c:2807 -msgid "E348: No string under cursor" -msgstr "E348: гBSr" - -#: ../normal.c:3937 -msgid "E352: Cannot erase folds with current 'foldmethod'" -msgstr "E352: Lkbثe 'foldmethod' UR fold" - -#: ../normal.c:5897 -msgid "E664: changelist is empty" -msgstr "E664: ܧCOŪ" - -#: ../normal.c:5899 -msgid "E662: At start of changelist" -msgstr "E662: wbܧC}Y" - -#: ../normal.c:5901 -msgid "E663: At end of changelist" -msgstr "E663: wbܧC" - -#: ../normal.c:7053 -msgid "Type :quit<Enter> to exit Nvim" -msgstr "n} Vim пJ :quit<Enter> " - -#: ../ops.c:248 -#, c-format -msgid "1 line %sed 1 time" -msgstr "@ %s L @" - -#: ../ops.c:250 -#, c-format -msgid "1 line %sed %d times" -msgstr "@ %s L %d " - -#: ../ops.c:253 -#, c-format -msgid "%<PRId64> lines %sed 1 time" -msgstr "%<PRId64> %s L @" - -#: ../ops.c:256 -#, c-format -msgid "%<PRId64> lines %sed %d times" -msgstr "%<PRId64> %s L %d " - -#: ../ops.c:592 -#, c-format -msgid "%<PRId64> lines to indent... " -msgstr "Y %<PRId64> ... " - -#: ../ops.c:634 -msgid "1 line indented " -msgstr "@wY" - -#: ../ops.c:636 -#, c-format -msgid "%<PRId64> lines indented " -msgstr "wY %<PRId64> " - -#: ../ops.c:938 -#, fuzzy -msgid "E748: No previously used register" -msgstr "E186: Se@ӥؿ" - -#. must display the prompt -#: ../ops.c:1433 -msgid "cannot yank; delete anyway" -msgstr "LkŤU; R" - -#: ../ops.c:1929 -msgid "1 line changed" -msgstr " 1 ~ed" - -#: ../ops.c:1931 -#, c-format -msgid "%<PRId64> lines changed" -msgstr "w %<PRId64> " - -#: ../ops.c:2521 -#, fuzzy -msgid "block of 1 line yanked" -msgstr "wƻs 1 " - -#: ../ops.c:2523 -msgid "1 line yanked" -msgstr "wƻs 1 " - -#: ../ops.c:2525 -#, fuzzy, c-format -msgid "block of %<PRId64> lines yanked" -msgstr "wƻs %<PRId64> " - -#: ../ops.c:2528 -#, c-format -msgid "%<PRId64> lines yanked" -msgstr "wƻs %<PRId64> " - -#: ../ops.c:2710 -#, c-format -msgid "E353: Nothing in register %s" -msgstr "E353: Ȧs %s ̨SF" - -#. Highlight title -#: ../ops.c:3185 -msgid "" -"\n" -"--- Registers ---" -msgstr "" -"\n" -"--- Ȧs ---" - -#: ../ops.c:4455 -msgid "Illegal register name" -msgstr "TȦsW" - -#: ../ops.c:4533 -msgid "" -"\n" -"# Registers:\n" -msgstr "" -"\n" -"# Ȧs:\n" - -#: ../ops.c:4575 -#, c-format -msgid "E574: Unknown register type %d" -msgstr "E574: UA: %d" - -#: ../ops.c:5089 -#, c-format -msgid "%<PRId64> Cols; " -msgstr "%<PRId64> ; " - -#: ../ops.c:5097 -#, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Bytes" -msgstr "" -"ܤF %s%<PRId64>/%<PRId64> ; %<PRId64>/%<PRId64> r(Word); %<PRId64>/" -"%<PRId64> r(Bytes)" - -#: ../ops.c:5105 -#, fuzzy, c-format -msgid "" -"Selected %s%<PRId64> of %<PRId64> Lines; %<PRId64> of %<PRId64> Words; " -"%<PRId64> of %<PRId64> Chars; %<PRId64> of %<PRId64> Bytes" -msgstr "" -"ܤF %s%<PRId64>/%<PRId64> ; %<PRId64>/%<PRId64> r(Word); %<PRId64>/" -"%<PRId64> r(Bytes)" - -#: ../ops.c:5123 -#, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Byte " -"%<PRId64> of %<PRId64>" -msgstr "" -" %s/%s; %<PRId64>/%<PRId64>; r(Word) %<PRId64>/%<PRId64>; r(Byte) " -"%<PRId64>/%<PRId64>" - -#: ../ops.c:5133 -#, fuzzy, c-format -msgid "" -"Col %s of %s; Line %<PRId64> of %<PRId64>; Word %<PRId64> of %<PRId64>; Char " -"%<PRId64> of %<PRId64>; Byte %<PRId64> of %<PRId64>" -msgstr "" -" %s/%s; %<PRId64>/%<PRId64>; r(Word) %<PRId64>/%<PRId64>; r(Byte) " -"%<PRId64>/%<PRId64>" - -#: ../ops.c:5146 -#, c-format -msgid "(+%<PRId64> for BOM)" -msgstr "(+%<PRId64> for BOM)" - -#: ../option.c:1238 -msgid "%<%f%h%m%=Page %N" -msgstr "%<%f%h%m%= %N " - -# ? what's this for? -#: ../option.c:1574 -msgid "Thanks for flying Vim" -msgstr "P±zR Vim" - -#. found a mismatch: skip -#: ../option.c:2698 -msgid "E518: Unknown option" -msgstr "E518: Tﶵ" - -#: ../option.c:2709 -msgid "E519: Option not supported" -msgstr "E519: 䴩ӿﶵ" - -#: ../option.c:2740 -msgid "E520: Not allowed in a modeline" -msgstr "E520: b Modeline ̥X{" - -#: ../option.c:2815 -msgid "E846: Key code not set" -msgstr "" - -#: ../option.c:2924 -msgid "E521: Number required after =" -msgstr "E521: = ݭnƦr" - -#: ../option.c:3226 ../option.c:3864 -msgid "E522: Not found in termcap" -msgstr "E522: Termcap ̭䤣" - -#: ../option.c:3335 -#, c-format -msgid "E539: Illegal character <%s>" -msgstr "E539: Tr <%s>" - -#: ../option.c:3862 -msgid "E529: Cannot set 'term' to empty string" -msgstr "E529: Lk]w 'term' Ŧr" - -#: ../option.c:3885 -msgid "E589: 'backupext' and 'patchmode' are equal" -msgstr "E589: 'backupext' 'patchmode' O@˪" - -#: ../option.c:3964 -msgid "E834: Conflicts with value of 'listchars'" -msgstr "" - -#: ../option.c:3966 -msgid "E835: Conflicts with value of 'fillchars'" -msgstr "" - -#: ../option.c:4163 -msgid "E524: Missing colon" -msgstr "E524: ʤ colon" - -#: ../option.c:4165 -msgid "E525: Zero length string" -msgstr "E525: sצr" - -#: ../option.c:4220 -#, c-format -msgid "E526: Missing number after <%s>" -msgstr "E526: <%s> ʤּƦr" - -#: ../option.c:4232 -msgid "E527: Missing comma" -msgstr "E527: ʤֳr" - -#: ../option.c:4239 -msgid "E528: Must specify a ' value" -msgstr "E528: ݫw@ ' " - -#: ../option.c:4271 -msgid "E595: contains unprintable or wide character" -msgstr "E595: tLkܪr" - -#: ../option.c:4469 -#, c-format -msgid "E535: Illegal character after <%c>" -msgstr "E535: <%c> ᦳTr" - -#: ../option.c:4534 -msgid "E536: comma required" -msgstr "E536: ݭnr" - -#: ../option.c:4543 -#, c-format -msgid "E537: 'commentstring' must be empty or contain %s" -msgstr "E537: 'commentstring' ݬOťթΥ]t %s" - -#: ../option.c:4928 -msgid "E540: Unclosed expression sequence" -msgstr "E540: SB⦡: " - -#: ../option.c:4932 -msgid "E541: too many items" -msgstr "E541: Ӧh" - -#: ../option.c:4934 -msgid "E542: unbalanced groups" -msgstr "E542: ٪ group" - -#: ../option.c:5148 -msgid "E590: A preview window already exists" -msgstr "E590: wwgsbF" - -#: ../option.c:5311 -msgid "W17: Arabic requires UTF-8, do ':set encoding=utf-8'" -msgstr "W17: Arabic ݭn UTF-8, а ':set encoding=utf-8'" - -#: ../option.c:5623 -#, c-format -msgid "E593: Need at least %d lines" -msgstr "E593: ܤֻݭn %d " - -#: ../option.c:5631 -#, c-format -msgid "E594: Need at least %d columns" -msgstr "E594: ܤֻݭn %d " - -#: ../option.c:6011 -#, c-format -msgid "E355: Unknown option: %s" -msgstr "E355: Tﶵ: %s" - -#. There's another character after zeros or the string -#. * is empty. In both cases, we are trying to set a -#. * num option using a string. -#: ../option.c:6037 -#, fuzzy, c-format -msgid "E521: Number required: &%s = '%s'" -msgstr "E521: = ݭnƦr" - -#: ../option.c:6149 -msgid "" -"\n" -"--- Terminal codes ---" -msgstr "" -"\n" -"--- ݾX ---" - -#: ../option.c:6151 -msgid "" -"\n" -"--- Global option values ---" -msgstr "" -"\n" -"--- Global ﶵ ---" - -#: ../option.c:6153 -msgid "" -"\n" -"--- Local option values ---" -msgstr "" -"\n" -"--- Local ﶵ ---" - -#: ../option.c:6155 -msgid "" -"\n" -"--- Options ---" -msgstr "" -"\n" -"--- ﶵ ---" - -#: ../option.c:6816 -msgid "E356: get_varp ERROR" -msgstr "E356: get_varp ~" - -#: ../option.c:7696 -#, c-format -msgid "E357: 'langmap': Matching character missing for %s" -msgstr "E357: 'langmap': 䤣 %s r" - -#: ../option.c:7715 -#, c-format -msgid "E358: 'langmap': Extra characters after semicolon: %s" -msgstr "E358: 'langmap': ᦳhlr: %s" - -#: ../os/shell.c:194 -msgid "" -"\n" -"Cannot execute shell " -msgstr "" -"\n" -" shell" - -#: ../os/shell.c:439 -msgid "" -"\n" -"shell returned " -msgstr "" -"\n" -"Shell w^" - -#: ../os_unix.c:465 ../os_unix.c:471 -msgid "" -"\n" -"Could not get security context for " -msgstr "" - -#: ../os_unix.c:479 -msgid "" -"\n" -"Could not set security context for " -msgstr "" - -#: ../os_unix.c:1558 ../os_unix.c:1647 -#, c-format -msgid "dlerror = \"%s\"" -msgstr "" - -#: ../path.c:1449 -#, c-format -msgid "E447: Can't find file \"%s\" in path" -msgstr "E447: b|䤣ɮ \"%s\"" - -#: ../quickfix.c:359 -#, c-format -msgid "E372: Too many %%%c in format string" -msgstr "E372: 榡Ʀr̦Ӧh %%%c " - -#: ../quickfix.c:371 -#, c-format -msgid "E373: Unexpected %%%c in format string" -msgstr "E373: 榡ƦrꤣӥX{ %%%c " - -#: ../quickfix.c:420 -msgid "E374: Missing ] in format string" -msgstr "E374: 榡Ʀr̤֤F ]" - -#: ../quickfix.c:431 -#, c-format -msgid "E375: Unsupported %%%c in format string" -msgstr "E375: 榡Ʀr̦䴩 %%%c " - -#: ../quickfix.c:448 -#, c-format -msgid "E376: Invalid %%%c in format string prefix" -msgstr "E376: 榡Ʀr}Y̦T %%%c " - -#: ../quickfix.c:454 -#, c-format -msgid "E377: Invalid %%%c in format string" -msgstr "E377: 榡Ʀr̦T %%%c " - -#. nothing found -#: ../quickfix.c:477 -msgid "E378: 'errorformat' contains no pattern" -msgstr "E378: 'errorformat' ]w" - -#: ../quickfix.c:695 -msgid "E379: Missing or empty directory name" -msgstr "E379: 䤣ؿW٩άOŪؿW" - -#: ../quickfix.c:1305 -msgid "E553: No more items" -msgstr "E553: S䥦" - -#: ../quickfix.c:1674 -#, c-format -msgid "(%d of %d)%s%s: " -msgstr "(%d / %d)%s%s: " - -#: ../quickfix.c:1676 -msgid " (line deleted)" -msgstr " (wR)" - -#: ../quickfix.c:1863 -msgid "E380: At bottom of quickfix stack" -msgstr "E380: Quickfix |" - -#: ../quickfix.c:1869 -msgid "E381: At top of quickfix stack" -msgstr "E381: Quickfix |" - -#: ../quickfix.c:1880 -#, c-format -msgid "error list %d of %d; %d errors" -msgstr "~C %d/%d; @ %d ~" - -#: ../quickfix.c:2427 -msgid "E382: Cannot write, 'buftype' option is set" -msgstr "E382: LkgJA'buftype' ﶵw]w" - -#: ../quickfix.c:2812 -msgid "E683: File name missing or invalid pattern" -msgstr "" - -#: ../quickfix.c:2911 -#, fuzzy, c-format -msgid "Cannot open file \"%s\"" -msgstr "Lk}ɮ %s" - -#: ../quickfix.c:3429 -#, fuzzy -msgid "E681: Buffer is not loaded" -msgstr "w@ӽwİ" - -#: ../quickfix.c:3487 -#, fuzzy -msgid "E777: String or List expected" -msgstr "E548: ӭnƦr" - -#: ../regexp.c:359 -#, c-format -msgid "E369: invalid item in %s%%[]" -msgstr "E369: TءG %s%%[]" - -#: ../regexp.c:374 -#, fuzzy, c-format -msgid "E769: Missing ] after %s[" -msgstr "E69: %s%%[ ʤ ]" - -#: ../regexp.c:375 -#, c-format -msgid "E53: Unmatched %s%%(" -msgstr "E53: L %s%%(" - -#: ../regexp.c:376 -#, c-format -msgid "E54: Unmatched %s(" -msgstr "E54: L %s(" - -#: ../regexp.c:377 -#, c-format -msgid "E55: Unmatched %s)" -msgstr "E55: L %s)" - -#: ../regexp.c:378 -msgid "E66: \\z( not allowed here" -msgstr "E66: \\z( bX{" - -#: ../regexp.c:379 -msgid "E67: \\z1 et al. not allowed here" -msgstr "E67: \\z1 et al. bX{" - -#: ../regexp.c:380 -#, c-format -msgid "E69: Missing ] after %s%%[" -msgstr "E69: %s%%[ ʤ ]" - -#: ../regexp.c:381 -#, c-format -msgid "E70: Empty %s%%[]" -msgstr "E70: Ū %s%%[]" - -#: ../regexp.c:1209 ../regexp.c:1224 -msgid "E339: Pattern too long" -msgstr "E339: WrӪ" - -#: ../regexp.c:1371 -msgid "E50: Too many \\z(" -msgstr "E50: Ӧh \\z(" - -#: ../regexp.c:1378 -#, c-format -msgid "E51: Too many %s(" -msgstr "E51: Ӧh %s(" - -#: ../regexp.c:1427 -msgid "E52: Unmatched \\z(" -msgstr "E52: L \\z(" - -#: ../regexp.c:1637 -#, c-format -msgid "E59: invalid character after %s@" -msgstr "E59: ᭱Tr: %s@" - -#: ../regexp.c:1672 -#, c-format -msgid "E60: Too many complex %s{...}s" -msgstr "E60: Ӧh %s{...}s" - -#: ../regexp.c:1687 -#, c-format -msgid "E61: Nested %s*" -msgstr "E61: _ %s*" - -#: ../regexp.c:1690 -#, c-format -msgid "E62: Nested %s%c" -msgstr "E62: _ %s%c" - -#: ../regexp.c:1800 -msgid "E63: invalid use of \\_" -msgstr "E63: Tϥ \\_" - -#: ../regexp.c:1850 -#, c-format -msgid "E64: %s%c follows nothing" -msgstr "E64: %s%c SF" - -#: ../regexp.c:1902 -msgid "E65: Illegal back reference" -msgstr "E65: TϦVѦ" - -#: ../regexp.c:1943 -msgid "E68: Invalid character after \\z" -msgstr "E68: ᭱Tr: \\z" - -#: ../regexp.c:2049 ../regexp_nfa.c:1296 -#, fuzzy, c-format -msgid "E678: Invalid character after %s%%[dxouU]" -msgstr "E71: ᭱Tr: %s%%" - -#: ../regexp.c:2107 -#, c-format -msgid "E71: Invalid character after %s%%" -msgstr "E71: ᭱Tr: %s%%" - -#: ../regexp.c:3017 -#, c-format -msgid "E554: Syntax error in %s{...}" -msgstr "E554: yk~: %s{...}" - -#: ../regexp.c:3805 -msgid "External submatches:\n" -msgstr "~ŦX:\n" - -#: ../regexp.c:7022 -msgid "" -"E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be " -"used " -msgstr "" - -#: ../regexp_nfa.c:239 -msgid "E865: (NFA) Regexp end encountered prematurely" -msgstr "" - -#: ../regexp_nfa.c:240 -#, c-format -msgid "E866: (NFA regexp) Misplaced %c" -msgstr "" - -#: ../regexp_nfa.c:242 -#, c-format -msgid "E877: (NFA regexp) Invalid character class: %<PRId64>" -msgstr "" - -#: ../regexp_nfa.c:1261 -#, c-format -msgid "E867: (NFA) Unknown operator '\\z%c'" -msgstr "" - -#: ../regexp_nfa.c:1387 -#, c-format -msgid "E867: (NFA) Unknown operator '\\%%%c'" -msgstr "" - -#: ../regexp_nfa.c:1802 -#, c-format -msgid "E869: (NFA) Unknown operator '\\@%c'" -msgstr "" - -#: ../regexp_nfa.c:1831 -msgid "E870: (NFA regexp) Error reading repetition limits" -msgstr "" - -#. Can't have a multi follow a multi. -#: ../regexp_nfa.c:1895 -msgid "E871: (NFA regexp) Can't have a multi follow a multi !" -msgstr "" - -#. Too many `(' -#: ../regexp_nfa.c:2037 -msgid "E872: (NFA regexp) Too many '('" -msgstr "" - -#: ../regexp_nfa.c:2042 -#, fuzzy -msgid "E879: (NFA regexp) Too many \\z(" -msgstr "E50: Ӧh \\z(" - -#: ../regexp_nfa.c:2066 -msgid "E873: (NFA regexp) proper termination error" -msgstr "" - -#: ../regexp_nfa.c:2599 -msgid "E874: (NFA) Could not pop the stack !" -msgstr "" - -#: ../regexp_nfa.c:3298 -msgid "" -"E875: (NFA regexp) (While converting from postfix to NFA), too many states " -"left on stack" -msgstr "" - -#: ../regexp_nfa.c:3302 -msgid "E876: (NFA regexp) Not enough space to store the whole NFA " -msgstr "" - -#: ../regexp_nfa.c:4571 ../regexp_nfa.c:4869 -msgid "" -"Could not open temporary log file for writing, displaying on stderr ... " -msgstr "" - -#: ../regexp_nfa.c:4840 -#, c-format -msgid "(NFA) COULD NOT OPEN %s !" -msgstr "" - -#: ../regexp_nfa.c:6049 -#, fuzzy -msgid "Could not open temporary log file for writing " -msgstr "E214: 䤣gJΪȦs" - -#: ../screen.c:7435 -msgid " VREPLACE" -msgstr " V-N" - -#: ../screen.c:7437 -msgid " REPLACE" -msgstr " N" - -#: ../screen.c:7440 -msgid " REVERSE" -msgstr " " - -#: ../screen.c:7441 -msgid " INSERT" -msgstr " J" - -#: ../screen.c:7443 -msgid " (insert)" -msgstr " (J)" - -#: ../screen.c:7445 -msgid " (replace)" -msgstr " (N)" - -#: ../screen.c:7447 -msgid " (vreplace)" -msgstr " (v-N)" - -#: ../screen.c:7449 -msgid " Hebrew" -msgstr " Hebrew" - -#: ../screen.c:7454 -msgid " Arabic" -msgstr " Arabic" - -#: ../screen.c:7456 -msgid " (lang)" -msgstr " (y)" - -#: ../screen.c:7459 -msgid " (paste)" -msgstr " (KW)" - -#: ../screen.c:7469 -msgid " VISUAL" -msgstr " " - -#: ../screen.c:7470 -msgid " VISUAL LINE" -msgstr " [] " - -#: ../screen.c:7471 -msgid " VISUAL BLOCK" -msgstr " [϶] " - -#: ../screen.c:7472 -msgid " SELECT" -msgstr " " - -#: ../screen.c:7473 -msgid " SELECT LINE" -msgstr " " - -#: ../screen.c:7474 -msgid " SELECT BLOCK" -msgstr " ϶" - -#: ../screen.c:7486 ../screen.c:7541 -msgid "recording" -msgstr "O" - -#: ../search.c:487 -#, c-format -msgid "E383: Invalid search string: %s" -msgstr "E383: ~jMr: %s" - -#: ../search.c:832 -#, c-format -msgid "E384: search hit TOP without match for: %s" -msgstr "E384: wjMɮ}Y䤣 %s" - -#: ../search.c:835 -#, c-format -msgid "E385: search hit BOTTOM without match for: %s" -msgstr "E385: wjMɮ䤣 %s" - -#: ../search.c:1200 -msgid "E386: Expected '?' or '/' after ';'" -msgstr "E386: b ';' ᭱Ӧ '?' '/'" - -#: ../search.c:4085 -msgid " (includes previously listed match)" -msgstr " (]AeCXŦX)" - -#. cursor at status line -#: ../search.c:4104 -msgid "--- Included files " -msgstr "--- ޤJɮ " - -#: ../search.c:4106 -msgid "not found " -msgstr "䤣 " - -#: ../search.c:4107 -msgid "in path ---\n" -msgstr "---\n" - -#: ../search.c:4168 -msgid " (Already listed)" -msgstr " (wCX)" - -#: ../search.c:4170 -msgid " NOT FOUND" -msgstr " 䤣" - -#: ../search.c:4211 -#, c-format -msgid "Scanning included file: %s" -msgstr "jMޤJɮ: %s" - -#: ../search.c:4216 -#, fuzzy, c-format -msgid "Searching included file %s" -msgstr "jMޤJɮ: %s" - -#: ../search.c:4405 -msgid "E387: Match is on current line" -msgstr "E387: ثeҦb椤@ǰt" - -#: ../search.c:4517 -msgid "All included files were found" -msgstr "ҦޤJɮ׳w" - -#: ../search.c:4519 -msgid "No included files" -msgstr "SޤJɮ" - -#: ../search.c:4527 -msgid "E388: Couldn't find definition" -msgstr "E388: 䤣wq" - -#: ../search.c:4529 -msgid "E389: Couldn't find pattern" -msgstr "E389: 䤣 pattern" - -#: ../search.c:4668 -#, fuzzy -msgid "Substitute " -msgstr "N@ " - -#: ../search.c:4681 -#, c-format -msgid "" -"\n" -"# Last %sSearch Pattern:\n" -"~" -msgstr "" - -#: ../spell.c:951 -#, fuzzy -msgid "E759: Format error in spell file" -msgstr "E297: ȦsɼgJ~" - -#: ../spell.c:952 -msgid "E758: Truncated spell file" -msgstr "" - -#: ../spell.c:953 -#, c-format -msgid "Trailing text in %s line %d: %s" -msgstr "" - -#: ../spell.c:954 -#, c-format -msgid "Affix name too long in %s line %d: %s" -msgstr "" - -#: ../spell.c:955 -#, fuzzy -msgid "E761: Format error in affix file FOL, LOW or UPP" -msgstr "E431: Tag \"%s\" 榡~" - -#: ../spell.c:957 -msgid "E762: Character in FOL, LOW or UPP is out of range" -msgstr "" - -#: ../spell.c:958 -msgid "Compressing word tree..." -msgstr "" - -#: ../spell.c:1951 -msgid "E756: Spell checking is not enabled" -msgstr "" - -#: ../spell.c:2249 -#, c-format -msgid "Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\"" -msgstr "" - -#: ../spell.c:2473 -#, fuzzy, c-format -msgid "Reading spell file \"%s\"" -msgstr "ϥμȦs \"%s\"" - -#: ../spell.c:2496 -#, fuzzy -msgid "E757: This does not look like a spell file" -msgstr "E307: %s ݰ_ӤO Vim Ȧs" - -#: ../spell.c:2501 -msgid "E771: Old spell file, needs to be updated" -msgstr "" - -#: ../spell.c:2504 -msgid "E772: Spell file is for newer version of Vim" -msgstr "" - -#: ../spell.c:2602 -#, fuzzy -msgid "E770: Unsupported section in spell file" -msgstr "E297: ȦsɼgJ~" - -#: ../spell.c:3762 -#, fuzzy, c-format -msgid "Warning: region %s not supported" -msgstr "E519: 䴩ӿﶵ" - -#: ../spell.c:4550 -#, fuzzy, c-format -msgid "Reading affix file %s ..." -msgstr "jM tag ɮ \"%s\"" - -#: ../spell.c:4589 ../spell.c:5635 ../spell.c:6140 -#, c-format -msgid "Conversion failure for word in %s line %d: %s" -msgstr "" - -#: ../spell.c:4630 ../spell.c:6170 -#, c-format -msgid "Conversion in %s not supported: from %s to %s" -msgstr "" - -#: ../spell.c:4642 -#, c-format -msgid "Invalid value for FLAG in %s line %d: %s" -msgstr "" - -#: ../spell.c:4655 -#, c-format -msgid "FLAG after using flags in %s line %d: %s" -msgstr "" - -#: ../spell.c:4723 -#, c-format -msgid "" -"Defining COMPOUNDFORBIDFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" - -#: ../spell.c:4731 -#, c-format -msgid "" -"Defining COMPOUNDPERMITFLAG after PFX item may give wrong results in %s line " -"%d" -msgstr "" - -#: ../spell.c:4747 -#, c-format -msgid "Wrong COMPOUNDRULES value in %s line %d: %s" -msgstr "" - -#: ../spell.c:4771 -#, c-format -msgid "Wrong COMPOUNDWORDMAX value in %s line %d: %s" -msgstr "" - -#: ../spell.c:4777 -#, c-format -msgid "Wrong COMPOUNDMIN value in %s line %d: %s" -msgstr "" - -#: ../spell.c:4783 -#, c-format -msgid "Wrong COMPOUNDSYLMAX value in %s line %d: %s" -msgstr "" - -#: ../spell.c:4795 -#, c-format -msgid "Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s" -msgstr "" - -#: ../spell.c:4847 -#, c-format -msgid "Different combining flag in continued affix block in %s line %d: %s" -msgstr "" - -#: ../spell.c:4850 -#, fuzzy, c-format -msgid "Duplicate affix in %s line %d: %s" -msgstr "E154: (tag) \"%s\" bɮ %s ̭ƥX{h" - -#: ../spell.c:4871 -#, c-format -msgid "" -"Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s " -"line %d: %s" -msgstr "" - -#: ../spell.c:4893 -#, c-format -msgid "Expected Y or N in %s line %d: %s" -msgstr "" - -#: ../spell.c:4968 -#, c-format -msgid "Broken condition in %s line %d: %s" -msgstr "" - -#: ../spell.c:5091 -#, c-format -msgid "Expected REP(SAL) count in %s line %d" -msgstr "" - -#: ../spell.c:5120 -#, c-format -msgid "Expected MAP count in %s line %d" -msgstr "" - -#: ../spell.c:5132 -#, c-format -msgid "Duplicate character in MAP in %s line %d" -msgstr "" - -#: ../spell.c:5176 -#, c-format -msgid "Unrecognized or duplicate item in %s line %d: %s" -msgstr "" - -#: ../spell.c:5197 -#, c-format -msgid "Missing FOL/LOW/UPP line in %s" -msgstr "" - -#: ../spell.c:5220 -msgid "COMPOUNDSYLMAX used without SYLLABLE" -msgstr "" - -#: ../spell.c:5236 -#, fuzzy -msgid "Too many postponed prefixes" -msgstr "ӦhsѼ" - -#: ../spell.c:5238 -#, fuzzy -msgid "Too many compound flags" -msgstr "ӦhsѼ" - -#: ../spell.c:5240 -msgid "Too many postponed prefixes and/or compound flags" -msgstr "" - -#: ../spell.c:5250 -#, c-format -msgid "Missing SOFO%s line in %s" -msgstr "" - -#: ../spell.c:5253 -#, c-format -msgid "Both SAL and SOFO lines in %s" -msgstr "" - -#: ../spell.c:5331 -#, c-format -msgid "Flag is not a number in %s line %d: %s" -msgstr "" - -#: ../spell.c:5334 -#, c-format -msgid "Illegal flag in %s line %d: %s" -msgstr "" - -#: ../spell.c:5493 ../spell.c:5501 -#, c-format -msgid "%s value differs from what is used in another .aff file" -msgstr "" - -#: ../spell.c:5602 -#, fuzzy, c-format -msgid "Reading dictionary file %s ..." -msgstr "˦r: %s" - -#: ../spell.c:5611 -#, c-format -msgid "E760: No word count in %s" -msgstr "" - -#: ../spell.c:5669 -#, c-format -msgid "line %6d, word %6d - %s" -msgstr "" - -#: ../spell.c:5691 -#, fuzzy, c-format -msgid "Duplicate word in %s line %d: %s" -msgstr "C@泣䤣: %s" - -#: ../spell.c:5694 -#, c-format -msgid "First duplicate word in %s line %d: %s" -msgstr "" - -#: ../spell.c:5746 -#, c-format -msgid "%d duplicate word(s) in %s" -msgstr "" - -#: ../spell.c:5748 -#, c-format -msgid "Ignored %d word(s) with non-ASCII characters in %s" -msgstr "" - -#: ../spell.c:6115 -#, fuzzy, c-format -msgid "Reading word file %s ..." -msgstr "qзǿJŪ..." - -#: ../spell.c:6155 -#, c-format -msgid "Duplicate /encoding= line ignored in %s line %d: %s" -msgstr "" - -#: ../spell.c:6159 -#, c-format -msgid "/encoding= line after word ignored in %s line %d: %s" -msgstr "" - -#: ../spell.c:6180 -#, c-format -msgid "Duplicate /regions= line ignored in %s line %d: %s" -msgstr "" - -#: ../spell.c:6185 -#, c-format -msgid "Too many regions in %s line %d: %s" -msgstr "" - -#: ../spell.c:6198 -#, c-format -msgid "/ line ignored in %s line %d: %s" -msgstr "" - -#: ../spell.c:6224 -#, fuzzy, c-format -msgid "Invalid region nr in %s line %d: %s" -msgstr "E573: TA id : %s" - -#: ../spell.c:6230 -#, c-format -msgid "Unrecognized flags in %s line %d: %s" -msgstr "" - -#: ../spell.c:6257 -#, c-format -msgid "Ignored %d words with non-ASCII characters" -msgstr "" - -#: ../spell.c:6656 -#, c-format -msgid "Compressed %d of %d nodes; %d (%d%%) remaining" -msgstr "" - -#: ../spell.c:7340 -msgid "Reading back spell file..." -msgstr "" - -#. Go through the trie of good words, soundfold each word and add it to -#. the soundfold trie. -#: ../spell.c:7357 -msgid "Performing soundfolding..." -msgstr "" - -#: ../spell.c:7368 -#, c-format -msgid "Number of words after soundfolding: %<PRId64>" -msgstr "" - -#: ../spell.c:7476 -#, c-format -msgid "Total number of words: %d" -msgstr "" - -#: ../spell.c:7655 -#, fuzzy, c-format -msgid "Writing suggestion file %s ..." -msgstr "gJ viminfo ɮ \"%s\" " - -#: ../spell.c:7707 ../spell.c:7927 -#, c-format -msgid "Estimated runtime memory use: %d bytes" -msgstr "" - -#: ../spell.c:7820 -msgid "E751: Output file name must not have region name" -msgstr "" - -#: ../spell.c:7822 -#, fuzzy -msgid "E754: Only up to 8 regions supported" -msgstr "E519: 䴩ӿﶵ" - -#: ../spell.c:7846 -#, fuzzy, c-format -msgid "E755: Invalid region in %s" -msgstr "E15: TB⦡: %s" - -#: ../spell.c:7907 -msgid "Warning: both compounding and NOBREAK specified" -msgstr "" - -#: ../spell.c:7920 -#, fuzzy, c-format -msgid "Writing spell file %s ..." -msgstr "gJ viminfo ɮ \"%s\" " - -#: ../spell.c:7925 -msgid "Done!" -msgstr "" - -#: ../spell.c:8034 -#, c-format -msgid "E765: 'spellfile' does not have %<PRId64> entries" -msgstr "" - -#: ../spell.c:8074 -#, c-format -msgid "Word '%.*s' removed from %s" -msgstr "" - -#: ../spell.c:8117 -#, c-format -msgid "Word '%.*s' added to %s" -msgstr "" - -#: ../spell.c:8381 -msgid "E763: Word characters differ between spell files" -msgstr "" - -#: ../spell.c:8684 -msgid "Sorry, no suggestions" -msgstr "" - -#: ../spell.c:8687 -#, fuzzy, c-format -msgid "Sorry, only %<PRId64> suggestions" -msgstr "AdG %<PRId64> " - -#. for when 'cmdheight' > 1 -#. avoid more prompt -#: ../spell.c:8704 -#, fuzzy, c-format -msgid "Change \"%.*s\" to:" -msgstr "Nܰʦsx \"%.*s\"?" - -#: ../spell.c:8737 -#, c-format -msgid " < \"%.*s\"" -msgstr "" - -#: ../spell.c:8882 -#, fuzzy -msgid "E752: No previous spell replacement" -msgstr "E35: Se@ӷjMO" - -#: ../spell.c:8925 -#, fuzzy, c-format -msgid "E753: Not found: %s" -msgstr "E334: [] 䤣 %s" - -#: ../spell.c:9276 -#, fuzzy, c-format -msgid "E778: This does not look like a .sug file: %s" -msgstr "E307: %s ݰ_ӤO Vim Ȧs" - -#: ../spell.c:9282 -#, c-format -msgid "E779: Old .sug file, needs to be updated: %s" -msgstr "" - -#: ../spell.c:9286 -#, c-format -msgid "E780: .sug file is for newer version of Vim: %s" -msgstr "" - -#: ../spell.c:9295 -#, c-format -msgid "E781: .sug file doesn't match .spl file: %s" -msgstr "" - -#: ../spell.c:9305 -#, fuzzy, c-format -msgid "E782: error while reading .sug file: %s" -msgstr "E47: Ū~ɮץ" - -#. This should have been checked when generating the .spl -#. file. -#: ../spell.c:11575 -msgid "E783: duplicate char in MAP entry" -msgstr "" - -#: ../syntax.c:266 -msgid "No Syntax items defined for this buffer" -msgstr "oӽwİϨSwqyk" - -#: ../syntax.c:3083 ../syntax.c:3104 ../syntax.c:3127 -#, c-format -msgid "E390: Illegal argument: %s" -msgstr "E390: ѼƤT: %s" - -#: ../syntax.c:3299 -#, c-format -msgid "E391: No such syntax cluster: %s" -msgstr "E391: L syntax cluster: \"%s\"" - -#: ../syntax.c:3433 -msgid "syncing on C-style comments" -msgstr "CyѦPBƤ" - -#: ../syntax.c:3439 -msgid "no syncing" -msgstr "SPB" - -#: ../syntax.c:3441 -msgid "syncing starts " -msgstr "PBƶ}l" - -#: ../syntax.c:3443 ../syntax.c:3506 -msgid " lines before top line" -msgstr "渹WXd" - -#: ../syntax.c:3448 -msgid "" -"\n" -"--- Syntax sync items ---" -msgstr "" -"\n" -"--- ykPB (Syntax sync items) ---" - -#: ../syntax.c:3452 -msgid "" -"\n" -"syncing on items" -msgstr "" -"\n" -"PBƤ:" - -#: ../syntax.c:3457 -msgid "" -"\n" -"--- Syntax items ---" -msgstr "" -"\n" -"--- yk ---" - -#: ../syntax.c:3475 -#, c-format -msgid "E392: No such syntax cluster: %s" -msgstr "E392: L syntax cluster: \"%s\"" - -#: ../syntax.c:3497 -msgid "minimal " -msgstr "̤p" - -#: ../syntax.c:3503 -msgid "maximal " -msgstr "̤j" - -#: ../syntax.c:3513 -msgid "; match " -msgstr "; ŦX " - -#: ../syntax.c:3515 -msgid " line breaks" -msgstr "_ " - -#: ../syntax.c:4076 -msgid "E395: contains argument not accepted here" -msgstr "E395: ϥΤFTѼ" - -#: ../syntax.c:4096 -#, fuzzy -msgid "E844: invalid cchar value" -msgstr "E474: TѼ" - -#: ../syntax.c:4107 -msgid "E393: group[t]here not accepted here" -msgstr "E393: ϥΤFTѼ" - -#: ../syntax.c:4126 -#, c-format -msgid "E394: Didn't find region item for %s" -msgstr "E394: 䤣 %s region item" - -#: ../syntax.c:4188 -msgid "E397: Filename required" -msgstr "E397: ݭnɮצW" - -#: ../syntax.c:4221 -#, fuzzy -msgid "E847: Too many syntax includes" -msgstr "E77: ӦhɦW" - -#: ../syntax.c:4303 -#, fuzzy, c-format -msgid "E789: Missing ']': %s" -msgstr "E398: ʤ \"=\": %s" - -#: ../syntax.c:4531 -#, c-format -msgid "E398: Missing '=': %s" -msgstr "E398: ʤ \"=\": %s" - -#: ../syntax.c:4666 -#, c-format -msgid "E399: Not enough arguments: syntax region %s" -msgstr "E399: syntax region %s ƤӤ" - -#: ../syntax.c:4870 -#, fuzzy -msgid "E848: Too many syntax clusters" -msgstr "E391: L syntax cluster: \"%s\"" - -#: ../syntax.c:4954 -msgid "E400: No cluster specified" -msgstr "E400: Swݩ" - -#. end delimiter not found -#: ../syntax.c:4986 -#, c-format -msgid "E401: Pattern delimiter not found: %s" -msgstr "E401: 䤣jŸ: %s" - -#: ../syntax.c:5049 -#, c-format -msgid "E402: Garbage after pattern: %s" -msgstr "E402: '%s' ᭱FLk" - -#: ../syntax.c:5120 -msgid "E403: syntax sync: line continuations pattern specified twice" -msgstr "E403: ykPB: sŸQwF⦸" - -#: ../syntax.c:5169 -#, c-format -msgid "E404: Illegal arguments: %s" -msgstr "E404: ѼƤT: %s" - -#: ../syntax.c:5217 -#, c-format -msgid "E405: Missing equal sign: %s" -msgstr "E405: ʤ֬۵Ÿ: %s" - -#: ../syntax.c:5222 -#, c-format -msgid "E406: Empty argument: %s" -msgstr "E406: ťհѼ: %s" - -#: ../syntax.c:5240 -#, c-format -msgid "E407: %s not allowed here" -msgstr "E407: %s bX{" - -#: ../syntax.c:5246 -#, c-format -msgid "E408: %s must be first in contains list" -msgstr "E408: %s OC̪Ĥ@" - -#: ../syntax.c:5304 -#, c-format -msgid "E409: Unknown group name: %s" -msgstr "E409: TsզW: %s" - -#: ../syntax.c:5512 -#, c-format -msgid "E410: Invalid :syntax subcommand: %s" -msgstr "E410: T :syntax lRO: %s" - -#: ../syntax.c:5854 -msgid "" -" TOTAL COUNT MATCH SLOWEST AVERAGE NAME PATTERN" -msgstr "" - -#: ../syntax.c:6146 -msgid "E679: recursive loop loading syncolor.vim" -msgstr "" - -#: ../syntax.c:6256 -#, c-format -msgid "E411: highlight group not found: %s" -msgstr "E411: 䤣 highlight group: %s" - -#: ../syntax.c:6278 -#, c-format -msgid "E412: Not enough arguments: \":highlight link %s\"" -msgstr "E412: ѼƤӤ: \":highlight link %s\"" - -#: ../syntax.c:6284 -#, c-format -msgid "E413: Too many arguments: \":highlight link %s\"" -msgstr "E413: ѼƹLh: \":highlight link %s\"" - -#: ../syntax.c:6302 -msgid "E414: group has settings, highlight link ignored" -msgstr "E414: w]ws, highlight link" - -#: ../syntax.c:6367 -#, c-format -msgid "E415: unexpected equal sign: %s" -msgstr "E415: Ӧ: %s" - -#: ../syntax.c:6395 -#, c-format -msgid "E416: missing equal sign: %s" -msgstr "E416: ʤ֬۵Ÿ: %s" - -#: ../syntax.c:6418 -#, c-format -msgid "E417: missing argument: %s" -msgstr "E417: ʤְѼ: %s" - -#: ../syntax.c:6446 -#, c-format -msgid "E418: Illegal value: %s" -msgstr "E418: Xk: %s" - -#: ../syntax.c:6496 -msgid "E419: FG color unknown" -msgstr "E419: ~eC" - -#: ../syntax.c:6504 -msgid "E420: BG color unknown" -msgstr "E420: ~IC" - -#: ../syntax.c:6564 -#, c-format -msgid "E421: Color name or number not recognized: %s" -msgstr "E421: ~CW٩μƭ: %s" - -#: ../syntax.c:6714 -#, c-format -msgid "E422: terminal code too long: %s" -msgstr "E422: ݾXӪ: %s" - -#: ../syntax.c:6753 -#, c-format -msgid "E423: Illegal argument: %s" -msgstr "E423: ѼƤT: %s" - -#: ../syntax.c:6925 -msgid "E424: Too many different highlighting attributes in use" -msgstr "E424: ϥΤFLh۲Gݩ" - -#: ../syntax.c:7427 -msgid "E669: Unprintable character in group name" -msgstr "E669: sզW٤LkCLr" - -#: ../syntax.c:7434 -msgid "W18: Invalid character in group name" -msgstr "W18: sզW٤Tr" - -#: ../syntax.c:7448 -msgid "E849: Too many highlight and syntax groups" -msgstr "" - -#: ../tag.c:104 -msgid "E555: at bottom of tag stack" -msgstr "E555: (tag)|" - -#: ../tag.c:105 -msgid "E556: at top of tag stack" -msgstr "E556: (tag)|}Y" - -#: ../tag.c:380 -msgid "E425: Cannot go before first matching tag" -msgstr "E425: wgb̫e(tag)F" - -#: ../tag.c:504 -#, c-format -msgid "E426: tag not found: %s" -msgstr "E426: 䤣(tag): %s" - -#: ../tag.c:528 -msgid " # pri kind tag" -msgstr " # pri kind tag" - -#: ../tag.c:531 -msgid "file\n" -msgstr "ɮ\n" - -#: ../tag.c:829 -msgid "E427: There is only one matching tag" -msgstr "E427: uŦX" - -#: ../tag.c:831 -msgid "E428: Cannot go beyond last matching tag" -msgstr "E428: vgb̫@ӲŦX tag F" - -#: ../tag.c:850 -#, c-format -msgid "File \"%s\" does not exist" -msgstr "ɮ \"%s\" sb" - -#. Give an indication of the number of matching tags -#: ../tag.c:859 -#, c-format -msgid "tag %d of %d%s" -msgstr " tag: %d/%d%s" - -#: ../tag.c:862 -msgid " or more" -msgstr " Χh" - -#: ../tag.c:864 -msgid " Using tag with different case!" -msgstr " HPjpgӨϥ tag!" - -#: ../tag.c:909 -#, c-format -msgid "E429: File \"%s\" does not exist" -msgstr "E429: ɮ \"%s\" sb" - -#. Highlight title -#: ../tag.c:960 -msgid "" -"\n" -" # TO tag FROM line in file/text" -msgstr "" -"\n" -" # tag q b ɮ/r" - -#: ../tag.c:1303 -#, c-format -msgid "Searching tags file %s" -msgstr "jM tag ɮ \"%s\"" - -#: ../tag.c:1545 -msgid "Ignoring long line in tags file" -msgstr "" - -#: ../tag.c:1915 -#, c-format -msgid "E431: Format error in tags file \"%s\"" -msgstr "E431: Tag \"%s\" 榡~" - -#: ../tag.c:1917 -#, c-format -msgid "Before byte %<PRId64>" -msgstr "b %<PRId64> 줸e" - -#: ../tag.c:1929 -#, c-format -msgid "E432: Tags file not sorted: %s" -msgstr "E432: Tag ɮץƧ: %s" - -#. never opened any tags file -#: ../tag.c:1960 -msgid "E433: No tags file" -msgstr "E433: S tag " - -#: ../tag.c:2536 -msgid "E434: Can't find tag pattern" -msgstr "E434: 䤣 tag" - -#: ../tag.c:2544 -msgid "E435: Couldn't find tag, just guessing!" -msgstr "E435: 䤣 tag, βq!" - -#: ../tag.c:2797 -#, c-format -msgid "Duplicate field name: %s" -msgstr "" - -#: ../term.c:1442 -msgid "' not known. Available builtin terminals are:" -msgstr "' LkJCiΪزݾΦ:" - -#: ../term.c:1463 -msgid "defaulting to '" -msgstr "w]: '" - -#: ../term.c:1731 -msgid "E557: Cannot open termcap file" -msgstr "E557: Lk} termcap ɮ" - -#: ../term.c:1735 -msgid "E558: Terminal entry not found in terminfo" -msgstr "E558: terminfo Sݾƶ" - -#: ../term.c:1737 -msgid "E559: Terminal entry not found in termcap" -msgstr "E559: termcap Sݾƶ" - -#: ../term.c:1878 -#, c-format -msgid "E436: No \"%s\" entry in termcap" -msgstr "E436: termcap S \"%s\" entry" - -#: ../term.c:2249 -msgid "E437: terminal capability \"cm\" required" -msgstr "E437: ݾݭn \"cm\" O" - -#. Highlight title -#: ../term.c:4376 -msgid "" -"\n" -"--- Terminal keys ---" -msgstr "" -"\n" -"--- ݾ ---" - -#: ../ui.c:481 -msgid "Vim: Error reading input, exiting...\n" -msgstr "Vim: ŪJ~A}...\n" - -#. This happens when the FileChangedRO autocommand changes the -#. * file in a way it becomes shorter. -#: ../undo.c:379 -msgid "E881: Line count changed unexpectedly" -msgstr "" - -#: ../undo.c:627 -#, fuzzy, c-format -msgid "E828: Cannot open undo file for writing: %s" -msgstr "E212: LkHgJҦ}" - -#: ../undo.c:717 -#, c-format -msgid "E825: Corrupted undo file (%s): %s" -msgstr "" - -#: ../undo.c:1039 -msgid "Cannot write undo file in any directory in 'undodir'" -msgstr "" - -#: ../undo.c:1074 -#, c-format -msgid "Will not overwrite with undo file, cannot read: %s" -msgstr "" - -#: ../undo.c:1092 -#, c-format -msgid "Will not overwrite, this is not an undo file: %s" -msgstr "" - -#: ../undo.c:1108 -msgid "Skipping undo file write, nothing to undo" -msgstr "" - -#: ../undo.c:1121 -#, fuzzy, c-format -msgid "Writing undo file: %s" -msgstr "gJ viminfo ɮ \"%s\" " - -#: ../undo.c:1213 -#, fuzzy, c-format -msgid "E829: write error in undo file: %s" -msgstr "E297: ȦsɼgJ~" - -#: ../undo.c:1280 -#, c-format -msgid "Not reading undo file, owner differs: %s" -msgstr "" - -#: ../undo.c:1292 -#, fuzzy, c-format -msgid "Reading undo file: %s" -msgstr "Ū viminfo ɮ \"%s\"%s%s%s" - -#: ../undo.c:1299 -#, fuzzy, c-format -msgid "E822: Cannot open undo file for reading: %s" -msgstr "E195: LkŪ viminfo" - -#: ../undo.c:1308 -#, fuzzy, c-format -msgid "E823: Not an undo file: %s" -msgstr "E484: Lk}ɮ %s" - -#: ../undo.c:1313 -#, fuzzy, c-format -msgid "E824: Incompatible undo file: %s" -msgstr "E484: Lk}ɮ %s" - -#: ../undo.c:1328 -msgid "File contents changed, cannot use undo info" -msgstr "" - -#: ../undo.c:1497 -#, fuzzy, c-format -msgid "Finished reading undo file %s" -msgstr " %s" - -#: ../undo.c:1586 ../undo.c:1812 -msgid "Already at oldest change" -msgstr "" - -#: ../undo.c:1597 ../undo.c:1814 -msgid "Already at newest change" -msgstr "" - -#: ../undo.c:1806 -#, fuzzy, c-format -msgid "E830: Undo number %<PRId64> not found" -msgstr "E92: 䤣 %<PRId64> ӽwİ" - -#: ../undo.c:1979 -msgid "E438: u_undo: line numbers wrong" -msgstr "E438: u_undo: 渹~" - -#: ../undo.c:2183 -#, fuzzy -msgid "more line" -msgstr "٦@ " - -#: ../undo.c:2185 -#, fuzzy -msgid "more lines" -msgstr "٦@ " - -#: ../undo.c:2187 -#, fuzzy -msgid "line less" -msgstr "֩@ " - -#: ../undo.c:2189 -#, fuzzy -msgid "fewer lines" -msgstr "u %<PRId64> " - -#: ../undo.c:2193 -#, fuzzy -msgid "change" -msgstr "@" - -#: ../undo.c:2195 -#, fuzzy -msgid "changes" -msgstr "@" - -#: ../undo.c:2225 -#, fuzzy, c-format -msgid "%<PRId64> %s; %s #%<PRId64> %s" -msgstr "%<PRId64> %s L %d " - -#: ../undo.c:2228 -msgid "before" -msgstr "" - -#: ../undo.c:2228 -msgid "after" -msgstr "" - -#: ../undo.c:2325 -#, fuzzy -msgid "Nothing to undo" -msgstr "So mapping " - -#: ../undo.c:2330 -msgid "number changes when saved" -msgstr "" - -#: ../undo.c:2360 -#, fuzzy, c-format -msgid "%<PRId64> seconds ago" -msgstr "%<PRId64> ; " - -#: ../undo.c:2372 -#, fuzzy -msgid "E790: undojoin is not allowed after undo" -msgstr "E407: %s bX{" - -#: ../undo.c:2466 -msgid "E439: undo list corrupt" -msgstr "E439: _Cla" - -#: ../undo.c:2495 -msgid "E440: undo line missing" -msgstr "E440: 䤣n undo " - -#: ../version.c:600 -msgid "" -"\n" -"Included patches: " -msgstr "" -"\n" -"ޤJץ: " - -#: ../version.c:627 -#, fuzzy -msgid "" -"\n" -"Extra patches: " -msgstr "~ŦX:\n" - -#: ../version.c:639 ../version.c:864 -msgid "Modified by " -msgstr "ק̬" - -#: ../version.c:646 -msgid "" -"\n" -"Compiled " -msgstr "" -"\n" -"sĶ" - -#: ../version.c:649 -msgid "by " -msgstr ":" - -#: ../version.c:660 -msgid "" -"\n" -"Huge version " -msgstr "" -"\n" -"Wj " - -#: ../version.c:661 -msgid "without GUI." -msgstr "ϥιϫɭC" - -#: ../version.c:662 -msgid " Features included (+) or not (-):\n" -msgstr " ثeiϥ(+)Piϥ(-)ҲզC:\n" - -#: ../version.c:667 -msgid " system vimrc file: \"" -msgstr " t vimrc ]w: \"" - -#: ../version.c:672 -msgid " user vimrc file: \"" -msgstr " ϥΪ̭ӤH vimrc ]w: \"" - -#: ../version.c:677 -msgid " 2nd user vimrc file: \"" -msgstr " ĤGխӤH vimrc ɮ: \"" - -#: ../version.c:682 -msgid " 3rd user vimrc file: \"" -msgstr " ĤTխӤH vimrc ɮ: \"" - -#: ../version.c:687 -msgid " user exrc file: \"" -msgstr " ϥΪ̭ӤH exrc ]w: \"" - -#: ../version.c:692 -msgid " 2nd user exrc file: \"" -msgstr " ĤGըϥΪ exrc ɮ: \"" - -#: ../version.c:699 -msgid " fall-back for $VIM: \"" -msgstr " $VIM w]: \"" - -#: ../version.c:705 -msgid " f-b for $VIMRUNTIME: \"" -msgstr " $VIMRUNTIME w]: \"" - -#: ../version.c:709 -msgid "Compilation: " -msgstr "sĶ覡: " - -#: ../version.c:712 -msgid "Linking: " -msgstr "쵲覡: " - -#: ../version.c:717 -msgid " DEBUG BUILD" -msgstr " " - -#: ../version.c:767 -msgid "VIM - Vi IMproved" -msgstr "VIM - Vi IMproved" - -#: ../version.c:769 -msgid "version " -msgstr " " - -#: ../version.c:770 -msgid "by Bram Moolenaar et al." -msgstr "@: Bram Moolenaar et al." - -#: ../version.c:774 -msgid "Vim is open source and freely distributable" -msgstr "Vim iۥѴG}lXn" - -#: ../version.c:776 -msgid "Help poor children in Uganda!" -msgstr "UQzFiĵ!" - -#: ../version.c:777 -msgid "type :help iccf<Enter> for information " -msgstr "i@BпJ :help iccf<Enter>" - -#: ../version.c:779 -msgid "type :q<Enter> to exit " -msgstr "n}пJ :q<Enter> " - -#: ../version.c:780 -msgid "type :help<Enter> or <F1> for on-line help" -msgstr "uWпJ :help<Enter> " - -#: ../version.c:781 -msgid "type :help version7<Enter> for version info" -msgstr "sTпJ :help version7<Enter>" - -#: ../version.c:784 -msgid "Running in Vi compatible mode" -msgstr "Vi ۮeҦ" - -#: ../version.c:785 -msgid "type :set nocp<Enter> for Vim defaults" -msgstr "pGnDz Vi пJ :set nocp<Enter>" - -#: ../version.c:786 -msgid "type :help cp-default<Enter> for info on this" -msgstr "pGݭn Vi ۮeҦi@BпJ :help cp-default<Enter>" - -#: ../version.c:827 -msgid "Sponsor Vim development!" -msgstr "٧U Vim }oPI" - -#: ../version.c:828 -msgid "Become a registered Vim user!" -msgstr " Vim UϥΪ̡I" - -#: ../version.c:831 -msgid "type :help sponsor<Enter> for information " -msgstr "ԲӻпJ :help sponsor<Enter>" - -#: ../version.c:832 -msgid "type :help register<Enter> for information " -msgstr "ԲӻпJ :help register<Enter> " - -#: ../version.c:834 -msgid "menu Help->Sponsor/Register for information " -msgstr "Բӻп檺 U->٧U/U " - -#: ../window.c:119 -msgid "Already only one window" -msgstr "wguѤ@ӵF" - -#: ../window.c:224 -msgid "E441: There is no preview window" -msgstr "E441: Sw" - -#: ../window.c:559 -msgid "E442: Can't split topleft and botright at the same time" -msgstr "E442: PɤεWMkU" - -#: ../window.c:1228 -msgid "E443: Cannot rotate when another window is split" -msgstr "E443: 䥦εɵLk" - -#: ../window.c:1803 -msgid "E444: Cannot close last window" -msgstr "E444: ̫@ӵ" - -#: ../window.c:1810 -#, fuzzy -msgid "E813: Cannot close autocmd window" -msgstr "E444: ̫@ӵ" - -#: ../window.c:1814 -#, fuzzy -msgid "E814: Cannot close window, only autocmd window would remain" -msgstr "E444: ̫@ӵ" - -#: ../window.c:2717 -msgid "E445: Other window contains changes" -msgstr "E445: 䥦ʸ" - -#: ../window.c:4805 -msgid "E446: No file name under cursor" -msgstr "E446: гBSɦW" - -#~ msgid "[Error List]" -#~ msgstr "[~C]" - -#~ msgid "[No File]" -#~ msgstr "[RW]" - -#~ msgid "Patch file" -#~ msgstr "Patch ɮ" - -#~ msgid "E106: Unknown variable: \"%s\"" -#~ msgstr "E106: wqܼ: \"%s\"" - -#~ msgid "" -#~ "&OK\n" -#~ "&Cancel" -#~ msgstr "" -#~ "Tw(&O)\n" -#~ "(&C)" - -#~ msgid "E240: No connection to Vim server" -#~ msgstr "E240: SP Vim Server إ߳su" - -#~ msgid "E277: Unable to read a server reply" -#~ msgstr "E277: LkŪA^" - -#~ msgid "E258: Unable to send to client" -#~ msgstr "E258: Lkǰe client" - -#~ msgid "E241: Unable to send to %s" -#~ msgstr "E241: Lkǰe %s" - -#~ msgid "E130: Undefined function: %s" -#~ msgstr "E130: 禡 %s |wq" - -#~ msgid "Save As" -#~ msgstr "tss" - -#~ msgid "Edit File" -#~ msgstr "sɮ" - -#~ msgid " (NOT FOUND)" -#~ msgstr " (䤣) " - -#~ msgid "Source Vim script" -#~ msgstr " Vim script" - -#~ msgid "Edit File in new window" -#~ msgstr "bssɮ" - -#~ msgid "Append File" -#~ msgstr "[ɮ" - -#~ msgid "Window position: X %d, Y %d" -#~ msgstr "m: X %d, Y %d" - -#~ msgid "Save Redirection" -#~ msgstr "xs Redirection" - -#~ msgid "Save View" -#~ msgstr "xs View" - -#~ msgid "Save Session" -#~ msgstr "xs Session" - -#~ msgid "Save Setup" -#~ msgstr "xs]w" - -#~ msgid "E196: No digraphs in this version" -#~ msgstr "E196: LƦXr(digraph)" - -#~ msgid "[NL found]" -#~ msgstr "[NL]" - -#~ msgid "[crypted]" -#~ msgstr "[w[K]" - -#~ msgid "[CONVERSION ERROR]" -#~ msgstr "ഫ~" - -#~ msgid "NetBeans disallows writes of unmodified buffers" -#~ msgstr "NetBeans gXק諸wİ" - -#~ msgid "Partial writes disallowed for NetBeans buffers" -#~ msgstr "eLkgJ Netbeans wİ" - -#~ msgid "E460: The resource fork would be lost (add ! to override)" -#~ msgstr "E460: Resource fork | (Шϥ ! j)" - -#~ msgid "E229: Cannot start the GUI" -#~ msgstr "E229: LkҰʹϫɭ" - -#~ msgid "E230: Cannot read from \"%s\"" -#~ msgstr "E230: LkŪɮ \"%s\"" - -#~ msgid "E665: Cannot start GUI, no valid font found" -#~ msgstr "E665: LkҰʹϫɭA䤣iΪr" - -#~ msgid "E231: 'guifontwide' invalid" -#~ msgstr "E231: T 'guifontwide'" - -#~ msgid "E599: Value of 'imactivatekey' is invalid" -#~ msgstr "E599: 'imactivatekey' ȤT" - -#~ msgid "E254: Cannot allocate color %s" -#~ msgstr "E254: tmC %s" - -#~ msgid "<cannot open> " -#~ msgstr "<}>" - -#~ msgid "E616: vim_SelFile: can't get font %s" -#~ msgstr "E616: vim_SelFile: ϥ %s r" - -#~ msgid "E614: vim_SelFile: can't return to current directory" -#~ msgstr "E614: vim_SelFile: Lk^ثeؿ" - -#~ msgid "Pathname:" -#~ msgstr "|:" - -#~ msgid "E615: vim_SelFile: can't get current directory" -#~ msgstr "E615: vim_SelFile: Lkoثeؿ" - -#~ msgid "OK" -#~ msgstr "Tw" - -#~ msgid "Cancel" -#~ msgstr "" - -#~ msgid "Scrollbar Widget: Could not get geometry of thumb pixmap." -#~ msgstr "ʶb: ]w thumb pixmap m" - -#~ msgid "Vim dialog" -#~ msgstr "Vim ܲ" - -#~ msgid "E232: Cannot create BalloonEval with both message and callback" -#~ msgstr "E232: TP callback إ BallonEval" - -#~ msgid "Vim dialog..." -#~ msgstr "Vim ܲ..." - -#~ msgid "Input _Methods" -#~ msgstr "Jk" - -#~ msgid "VIM - Search and Replace..." -#~ msgstr "VIM - MPN..." - -#~ msgid "VIM - Search..." -#~ msgstr "VIM - M..." - -#~ msgid "Find what:" -#~ msgstr "jM:" - -#~ msgid "Replace with:" -#~ msgstr "N:" - -#~ msgid "Match whole word only" -#~ msgstr "ujMۦPr" - -#~ msgid "Match case" -#~ msgstr "ŦXjpg" - -#~ msgid "Direction" -#~ msgstr "V" - -#~ msgid "Up" -#~ msgstr "VW" - -#~ msgid "Down" -#~ msgstr "VU" - -#~ msgid "Find Next" -#~ msgstr "U@" - -#~ msgid "Replace" -#~ msgstr "N" - -#~ msgid "Replace All" -#~ msgstr "N" - -#~ msgid "Vim: Received \"die\" request from session manager\n" -#~ msgstr "Vim: Session z \"die\" nD\n" - -#~ msgid "Vim: Main window unexpectedly destroyed\n" -#~ msgstr "Vim: D걼\n" - -#~ msgid "Font Selection" -#~ msgstr "r" - -#~ msgid "Used CUT_BUFFER0 instead of empty selection" -#~ msgstr "ϥ CUT_BUFFER0 ӨNſ" - -#~ msgid "Filter" -#~ msgstr "Lo" - -#~ msgid "Directories" -#~ msgstr "ؿ" - -#~ msgid "Help" -#~ msgstr "U" - -#~ msgid "Files" -#~ msgstr "ɮ" - -#~ msgid "Selection" -#~ msgstr "" - -#~ msgid "Undo" -#~ msgstr "_" - -#~ msgid "E671: Cannot find window title \"%s\"" -#~ msgstr "E671: 䤣D \"%s\" " - -#~ msgid "E243: Argument not supported: \"-%s\"; Use the OLE version." -#~ msgstr "E243: 䴩Ѽ \"-%s\"CХ OLE C" - -#~ msgid "E672: Unable to open window inside MDI application" -#~ msgstr "E672: Lkb MDI {}ҵ" - -#~ msgid "Find string (use '\\\\' to find a '\\')" -#~ msgstr "jMr (ϥ '\\\\' Ӫ '\\')" - -#~ msgid "Find & Replace (use '\\\\' to find a '\\')" -#~ msgstr "jMΨNr (ϥ '\\\\' Ӫ '\\')" - -#~ msgid "" -#~ "Vim E458: Cannot allocate colormap entry, some colors may be incorrect" -#~ msgstr "Vim E458: Lktm color map ءACݰ_ӷ|ǩǪ" - -#~ msgid "E250: Fonts for the following charsets are missing in fontset %s:" -#~ msgstr "E250: Fontset %s S]wTrHܳoǦr:" - -#~ msgid "E252: Fontset name: %s" -#~ msgstr "E252: r(Fontset)W: %s" - -#~ msgid "Font '%s' is not fixed-width" -#~ msgstr "'%s' OTweצr" - -#~ msgid "E253: Fontset name: %s\n" -#~ msgstr "E253: r(Fontset)W: %s\n" - -#~ msgid "Font0: %s\n" -#~ msgstr "Font0: %s\n" - -#~ msgid "Font1: %s\n" -#~ msgstr "Font1: %s\n" - -#~ msgid "Font%<PRId64> width is not twice that of font0\n" -#~ msgstr "r%<PRId64> eפO r0 ⭿\n" - -#~ msgid "Font0 width: %<PRId64>\n" -#~ msgstr "r0eסG%<PRId64>\n" - -#~ msgid "" -#~ "Font1 width: %<PRId64>\n" -#~ "\n" -#~ msgstr "" -#~ "r1e: %<PRId64>\n" -#~ "\n" - -#~ msgid "E256: Hangul automata ERROR" -#~ msgstr "E256: Hangul automata ~" - -#~ msgid "E563: stat error" -#~ msgstr "E563: stat ~" - -#~ msgid "E625: cannot open cscope database: %s" -#~ msgstr "E625: Lk} cscope Ʈw %s" - -#~ msgid "E626: cannot get cscope database information" -#~ msgstr "E626: Lko cscope ƮwT" - -#~ msgid "E569: maximum number of cscope connections reached" -#~ msgstr "E569: wF cscope ̤jsuƥ" - -#~ msgid "" -#~ "E263: Sorry, this command is disabled, the Python library could not be " -#~ "loaded." -#~ msgstr "E263: pAoөROLkϥΡAPython {wSJC" - -#~ msgid "E659: Cannot invoke Python recursively" -#~ msgstr "E659: Lkj Python " - -#~ msgid "can't delete OutputObject attributes" -#~ msgstr "LkR OutputObject ݩ" - -#~ msgid "softspace must be an integer" -#~ msgstr "softspace ݬO" - -#~ msgid "invalid attribute" -#~ msgstr "Tݩ" - -#~ msgid "writelines() requires list of strings" -#~ msgstr "writelines() ݭn string list Ѽ" - -#~ msgid "E264: Python: Error initialising I/O objects" -#~ msgstr "E264: Python: Lkl I/O " - -#~ msgid "invalid expression" -#~ msgstr "TB⦡" - -#~ msgid "expressions disabled at compile time" -#~ msgstr "]sĶɨS[JB⦡(expression){XAҥHLkϥιB⦡" - -#~ msgid "attempt to refer to deleted buffer" -#~ msgstr "չϨϥΤwQR buffer" - -#~ msgid "line number out of range" -#~ msgstr "渹WXd" - -#~ msgid "<buffer object (deleted) at %8lX>" -#~ msgstr "<buffer (wR): %8lX>" - -#~ msgid "invalid mark name" -#~ msgstr "аOW٤T" - -#~ msgid "no such buffer" -#~ msgstr "L buffer" - -#~ msgid "attempt to refer to deleted window" -#~ msgstr "չϨϥΤwQR" - -#~ msgid "readonly attribute" -#~ msgstr "Ūݩ" - -#~ msgid "cursor position outside buffer" -#~ msgstr "ЩwbwİϤ~" - -#~ msgid "<window object (deleted) at %.8lX>" -#~ msgstr "<(wR): %.8lX>" - -#~ msgid "<window object (unknown) at %.8lX>" -#~ msgstr "<(): %.8lX>" - -#~ msgid "<window %d>" -#~ msgstr "< %d>" - -#~ msgid "no such window" -#~ msgstr "L" - -#~ msgid "cannot save undo information" -#~ msgstr "Lkxs_T" - -#~ msgid "cannot delete line" -#~ msgstr "R " - -#~ msgid "cannot replace line" -#~ msgstr "N " - -#~ msgid "cannot insert line" -#~ msgstr "NJ " - -#~ msgid "string cannot contain newlines" -#~ msgstr "rLk]ts " - -#~ msgid "" -#~ "E266: Sorry, this command is disabled, the Ruby library could not be " -#~ "loaded." -#~ msgstr "E266: ROLkϥΡALkJ Ruby {w(Library)" - -#~ msgid "E273: unknown longjmp status %d" -#~ msgstr "E273: longjmp status %d" - -#~ msgid "Toggle implementation/definition" -#~ msgstr "@/wq" - -#~ msgid "Show base class of" -#~ msgstr " base class of:" - -#~ msgid "Show overridden member function" -#~ msgstr "ܳQ override member function" - -#~ msgid "Retrieve from file" -#~ msgstr "Ū: qɮ" - -#~ msgid "Retrieve from project" -#~ msgstr "Ū: q" - -#~ msgid "Retrieve from all projects" -#~ msgstr "Ū: qҦ project" - -#~ msgid "Retrieve" -#~ msgstr "Ū" - -#~ msgid "Show source of" -#~ msgstr "ܭlX: " - -#~ msgid "Find symbol" -#~ msgstr "jM symbol" - -#~ msgid "Browse class" -#~ msgstr "s class" - -#~ msgid "Show class in hierarchy" -#~ msgstr "ܶh class" - -#~ msgid "Show class in restricted hierarchy" -#~ msgstr " restricted h class" - -#~ msgid "Xref refers to" -#~ msgstr "Xref ѦҨ" - -#~ msgid "Xref referred by" -#~ msgstr "Xref QְѦ:" - -#~ msgid "Xref has a" -#~ msgstr "Xref " - -#~ msgid "Xref used by" -#~ msgstr "Xref Q֨ϥ:" - -#~ msgid "Show docu of" -#~ msgstr "ܤ: " - -#~ msgid "Generate docu for" -#~ msgstr "ͤ: " - -#~ msgid "" -#~ "Cannot connect to SNiFF+. Check environment (sniffemacs must be found in " -#~ "$PATH).\n" -#~ msgstr "" -#~ "Lksu SNiFF+Cˬdܼ ($PATH ̥ݥiH sniffemacs)\n" - -#~ msgid "E274: Sniff: Error during read. Disconnected" -#~ msgstr "E274: Sniff: Ū~. su" - -#~ msgid "SNiFF+ is currently " -#~ msgstr "SNiFF+ ثe" - -#~ msgid "not " -#~ msgstr "" - -#~ msgid "connected" -#~ msgstr "su" - -#~ msgid "E275: Unknown SNiFF+ request: %s" -#~ msgstr "E275: T SNiff+ Is: %s" - -#~ msgid "E276: Error connecting to SNiFF+" -#~ msgstr "E276: su SNiFF+ " - -#~ msgid "E278: SNiFF+ not connected" -#~ msgstr "E278: su SNiFF+" - -#~ msgid "Sniff: Error during write. Disconnected" -#~ msgstr "Sniff: gJ~Csu" - -#~ msgid "not implemented yet" -#~ msgstr "|@" - -#~ msgid "unknown option" -#~ msgstr "Tﶵ" - -#~ msgid "cannot set line(s)" -#~ msgstr "]w " - -#~ msgid "mark not set" -#~ msgstr "S]wаO" - -#~ msgid "row %d column %d" -#~ msgstr "C %d %d" - -#~ msgid "cannot insert/append line" -#~ msgstr "ഡJΪ[ " - -#~ msgid "unknown flag: " -#~ msgstr "~X: " - -#~ msgid "unknown vimOption" -#~ msgstr "T VIM ﶵ" - -#~ msgid "keyboard interrupt" -#~ msgstr "L_" - -#~ msgid "vim error" -#~ msgstr "vim ~" - -#~ msgid "cannot create buffer/window command: object is being deleted" -#~ msgstr "Lkإ߽wİ/RO: N|QR" - -#~ msgid "" -#~ "cannot register callback command: buffer/window is already being deleted" -#~ msgstr "LkU callback RO: wİ/wgQRF" - -#~ msgid "" -#~ "E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-" -#~ "dev@vim.org" -#~ msgstr "E280: TCL Y~: reflist 걼F!? гi to vim-dev@vim.org" - -#~ msgid "cannot register callback command: buffer/window reference not found" -#~ msgstr "LkU callback RO: 䤣wİ/" - -#~ msgid "" -#~ "E571: Sorry, this command is disabled: the Tcl library could not be " -#~ "loaded." -#~ msgstr "E571: ROLkϥ, ]LkJ Tcl {w(Library)" - -#~ msgid "" -#~ "E281: TCL ERROR: exit code is not int!? Please report this to vim-dev@vim." -#~ "org" -#~ msgstr "E281: TCL ~: XO!? гi to vim-dev@vim.org" - -#~ msgid "cannot get line" -#~ msgstr "o " - -#~ msgid "Unable to register a command server name" -#~ msgstr "LkUROAW" - -#~ msgid "E248: Failed to send command to the destination program" -#~ msgstr "E248: LkeXROتa{" - -#~ msgid "E251: VIM instance registry property is badly formed. Deleted!" -#~ msgstr "E251: VIM registry ]w~CwRC" - -#~ msgid "This Vim was not compiled with the diff feature." -#~ msgstr "z Vim sĶɨS[J diff O" - -#~ msgid "-register\t\tRegister this gvim for OLE" -#~ msgstr "-register\t\tU gvim OLE" - -#~ msgid "-unregister\t\tUnregister gvim for OLE" -#~ msgstr "-unregister\t\t OLE gvim U" - -#~ msgid "-g\t\t\tRun using GUI (like \"gvim\")" -#~ msgstr "-g\t\t\tϥιϧάɭ (P \"gvim\")" - -#~ msgid "-f or --nofork\tForeground: Don't fork when starting GUI" -#~ msgstr "-f --nofork\te: _lϧάɭɤ fork" - -#~ msgid "-V[N]\t\tVerbose level" -#~ msgstr "-V[N]\t\tVerbose " - -#~ msgid "-f\t\t\tDon't use newcli to open window" -#~ msgstr "-f\t\t\tϥ newcli Ӷ}ҵ" - -#~ msgid "-dev <device>\t\tUse <device> for I/O" -#~ msgstr "-dev <device>\t\tϥ <device> XJ" - -#~ msgid "-U <gvimrc>\t\tUse <gvimrc> instead of any .gvimrc" -#~ msgstr "-U <gvimrc>\t\tϥ <gvimrc> N .gvimrc" - -#~ msgid "-x\t\t\tEdit encrypted files" -#~ msgstr "-x\t\t\tssXLɮ" - -#~ msgid "-display <display>\tConnect vim to this particular X-server" -#~ msgstr "-display <display>\tN vim Pw X-server su" - -#~ msgid "-X\t\t\tDo not connect to X server" -#~ msgstr "-X\t\t\tnsu X Server" - -#~ msgid "--remote <files>\tEdit <files> in a Vim server if possible" -#~ msgstr "--remote <files>\ts Vim AW <files> }" - -#~ msgid "--remote-silent <files> Same, don't complain if there is no server" -#~ msgstr "--remote-silent <files> ۦPASAɤĵi" - -#~ msgid "" -#~ "--remote-wait <files> As --remote but wait for files to have been edited" -#~ msgstr "--remote-wait <files> P --remote, |ɮקs" - -#~ msgid "" -#~ "--remote-wait-silent <files> Same, don't complain if there is no server" -#~ msgstr "--remote-wait-silent <files> ۦPASAɤĵi" - -#~ msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit" -#~ msgstr "--remote-send <keys>\teX <keys> Vim A}" - -#~ msgid "" -#~ "--remote-expr <expr>\tEvaluate <expr> in a Vim server and print result" -#~ msgstr "--remote-expr <expr>\tbAW <expr> æLXG" - -#~ msgid "--serverlist\t\tList available Vim server names and exit" -#~ msgstr "--serverlist\t\tCXiΪ Vim AW٨}" - -#~ msgid "--servername <name>\tSend to/become the Vim server <name>" -#~ msgstr "--servername <name>\te/ Vim A <name>" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Motif version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim {oѼ (Motif ):\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (neXtaw version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim {oѼ (neXtaw ):\n" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (Athena version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim {oѼ (Athena ):\n" - -#~ msgid "-display <display>\tRun vim on <display>" -#~ msgstr "-display <display>\tb <display> vim" - -#~ msgid "-iconic\t\tStart vim iconified" -#~ msgstr "-iconic\t\tҰʫϥܤ(iconified)" - -#~ msgid "-name <name>\t\tUse resource as if vim was <name>" -#~ msgstr "-name <name>\t\tŪ Resource ɧ vim Wٵ <name>" - -#~ msgid "\t\t\t (Unimplemented)\n" -#~ msgstr "\t\t\t (|@)\n" - -#~ msgid "-background <color>\tUse <color> for the background (also: -bg)" -#~ msgstr "-background <color>\t]w <color> I (]i -bg)" - -#~ msgid "-foreground <color>\tUse <color> for normal text (also: -fg)" -#~ msgstr "-foreground <color>\t]w <color> @rC (]i -fg)" - -#~ msgid "-font <font>\t\tUse <font> for normal text (also: -fn)" -#~ msgstr "-font <font>\tϥ <font> @r (]i -fn)" - -#~ msgid "-boldfont <font>\tUse <font> for bold text" -#~ msgstr "-boldfont <font>\tϥ <font> r" - -#~ msgid "-italicfont <font>\tUse <font> for italic text" -#~ msgstr "-italicfont <font>\tϥ <font> r" - -#~ msgid "-geometry <geom>\tUse <geom> for initial geometry (also: -geom)" -#~ msgstr "-geometry <geom>\tϥ<geom>_lm (]i -geom)" - -#~ msgid "-borderwidth <width>\tUse a border width of <width> (also: -bw)" -#~ msgstr "-borderwidth <width>\tϥμe <width> (]i -bw)" - -#~ msgid "" -#~ "-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)" -#~ msgstr "-scrollbarwidth <width> ]wʶbe <width> (]i -sw)" - -#~ msgid "-menuheight <height>\tUse a menu bar height of <height> (also: -mh)" -#~ msgstr "-menuheight <height>\t]wC <height> (]i -mh)" - -#~ msgid "-reverse\t\tUse reverse video (also: -rv)" -#~ msgstr "-reverse\t\tϥΤϬ (]i -rv)" - -#~ msgid "+reverse\t\tDon't use reverse video (also: +rv)" -#~ msgstr "+reverse\t\tϥΤϬ (]i +rv)" - -#~ msgid "-xrm <resource>\tSet the specified resource" -#~ msgstr "-xrm <resource>\t]ww resource" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (RISC OS version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim {oѼ (RISC OS ):\n" - -#~ msgid "--columns <number>\tInitial width of window in columns" -#~ msgstr "--columns <number>\tlƼe" - -#~ msgid "--rows <number>\tInitial height of window in rows" -#~ msgstr "--rows <number>\tlư" - -#~ msgid "" -#~ "\n" -#~ "Arguments recognised by gvim (GTK+ version):\n" -#~ msgstr "" -#~ "\n" -#~ "gvim {oѼ (GTK+ ):\n" - -#~ msgid "-display <display>\tRun vim on <display> (also: --display)" -#~ msgstr "-display <display>\tb <display> vim (]i --display)" - -#~ msgid "--role <role>\tSet a unique role to identify the main window" -#~ msgstr "--role <role>\t]wWS(role)HϤD" - -#~ msgid "--socketid <xid>\tOpen Vim inside another GTK widget" -#~ msgstr "--socketid <xid>\tbt@ GTK widget } Vim" - -#~ msgid "-P <parent title>\tOpen Vim inside parent application" -#~ msgstr "-P <parent title>\tb{} Vim" - -#~ msgid "No display" -#~ msgstr "L" - -#~ msgid ": Send failed.\n" -#~ msgstr ": ǰeѡC\n" - -#~ msgid ": Send failed. Trying to execute locally\n" -#~ msgstr ": eXѡCչϦba\n" - -#~ msgid "%d of %d edited" -#~ msgstr "ws %d/%d ɮ" - -#~ msgid "No display: Send expression failed.\n" -#~ msgstr "L Display: LkǰeB⦡C\n" - -#~ msgid ": Send expression failed.\n" -#~ msgstr ": LkǰeB⦡C\n" - -#~ msgid "E543: Not a valid codepage" -#~ msgstr "E543: T codepage" - -#~ msgid "E285: Failed to create input context" -#~ msgstr "E285: Lkإ input context" - -#~ msgid "E286: Failed to open input method" -#~ msgstr "E286: Lk}ҿJk" - -#~ msgid "E287: Warning: Could not set destroy callback to IM" -#~ msgstr "E287: ĵi: Lk IM callback" - -#~ msgid "E288: input method doesn't support any style" -#~ msgstr "E288: Jk䴩 style" - -#~ msgid "E289: input method doesn't support my preedit type" -#~ msgstr "E289: Jk䴩 style" - -#~ msgid "E290: over-the-spot style requires fontset" -#~ msgstr "E290: over-the-spot ݭnr(Fontset)" - -#~ msgid "E291: Your GTK+ is older than 1.2.3. Status area disabled" -#~ msgstr "E291: A GTK+ 1.2.3 ¡CLkϥΪAϡC" - -#~ msgid "E292: Input Method Server is not running" -#~ msgstr "E292: S椤Jkz{(Input Method Server)" - -#~ msgid "" -#~ "\n" -#~ " [not usable with this version of Vim]" -#~ msgstr "" -#~ "\n" -#~ " [Lkb Vim Wϥ]" - -#~ msgid "" -#~ "&Open Read-Only\n" -#~ "&Edit anyway\n" -#~ "&Recover\n" -#~ "&Quit\n" -#~ "&Abort\n" -#~ "&Delete it" -#~ msgstr "" -#~ "HŪ覡}(&O)\n" -#~ "s(&E)\n" -#~ "״_(&R)\n" -#~ "}(&Q)\n" -#~ "X(&A)\n" -#~ "RȦs(&D)" - -#~ msgid "Tear off this menu" -#~ msgstr "U" - -#~ msgid "[string too long]" -#~ msgstr "[L]" - -#~ msgid "Hit ENTER to continue" -#~ msgstr "Ы ENTER ~" - -#~ msgid " (RET/BS: line, SPACE/b: page, d/u: half page, q: quit)" -#~ msgstr " (RET/BS: VU/VW@, ť/b: @, d/u: b, q: })" - -#~ msgid " (RET: line, SPACE: page, d: half page, q: quit)" -#~ msgstr " (RET: VU@, ť: @, d: b, q: })" - -#~ msgid "Save File dialog" -#~ msgstr "s" - -#~ msgid "Open File dialog" -#~ msgstr "}" - -#~ msgid "E338: Sorry, no file browser in console mode" -#~ msgstr "E338: Dx(Console)ҦɨSɮs(file browser)" - -#~ msgid "Vim: preserving files...\n" -#~ msgstr "Vim: Odɮפ...\n" - -#~ msgid "Vim: Finished.\n" -#~ msgstr "Vim: .\n" - -#~ msgid "ERROR: " -#~ msgstr "~: " - -#~ msgid "" -#~ "\n" -#~ "[bytes] total alloc-freed %<PRIu64>-%<PRIu64>, in use %<PRIu64>, peak use " -#~ "%<PRIu64>\n" -#~ msgstr "" -#~ "\n" -#~ "[bytes] alloc-freed %<PRIu64>-%<PRIu64>, ϥΤ %<PRIu64>, peak ϥ " -#~ "%<PRIu64>\n" - -#~ msgid "" -#~ "[calls] total re/malloc()'s %<PRIu64>, total free()'s %<PRIu64>\n" -#~ "\n" -#~ msgstr "" -#~ "[Is] re/malloc(): %<PRIu64>, free()': %<PRIu64>\n" -#~ "\n" - -#~ msgid "E340: Line is becoming too long" -#~ msgstr "E340: L" - -#~ msgid "E341: Internal error: lalloc(%<PRId64>, )" -#~ msgstr "E341: ~: lalloc(%<PRId64>, )" - -#~ msgid "E547: Illegal mouseshape" -#~ msgstr "E547: TƹΪ" - -#~ msgid "Enter encryption key: " -#~ msgstr "JKX: " - -#~ msgid "Enter same key again: " -#~ msgstr "ЦAJ@: " - -#~ msgid "Keys don't match!" -#~ msgstr "⦸JKXۦP!" - -#~ msgid "Cannot connect to Netbeans #2" -#~ msgstr "Lks Netbeans #2" - -#~ msgid "Cannot connect to Netbeans" -#~ msgstr "Lks Netbeans" - -#~ msgid "E668: Wrong access mode for NetBeans connection info file: \"%s\"" -#~ msgstr "E668: NetBeans suTɮ: \"%s\" sҦT" - -#~ msgid "read from Netbeans socket" -#~ msgstr " Netbeans socket Ū" - -#~ msgid "E658: NetBeans connection lost for buffer %<PRId64>" -#~ msgstr "E658: wİ %<PRId64> P NetBeans suw_" - -#~ msgid "freeing %<PRId64> lines" -#~ msgstr " %<PRId64> 椤 " - -#~ msgid "E530: Cannot change term in GUI" -#~ msgstr "E530: bϫɭLk term" - -#~ msgid "E531: Use \":gui\" to start the GUI" -#~ msgstr "E531: J \":gui\" ӱҰʹϧάɭ" - -#~ msgid "E617: Cannot be changed in the GTK+ 2 GUI" -#~ msgstr "E617: bϫɭLk term" - -#~ msgid "E597: can't select fontset" -#~ msgstr "E597: LkϥΦr(Fontset)" - -#~ msgid "E598: Invalid fontset" -#~ msgstr "E598: Tr(Fontset)" - -#~ msgid "E533: can't select wide font" -#~ msgstr "E533: Lkϥγ]wr(Widefont)" - -#~ msgid "E534: Invalid wide font" -#~ msgstr "E534: Tr(Widefont)" - -#~ msgid "E538: No mouse support" -#~ msgstr "E538: 䴩ƹ" - -#~ msgid "cannot open " -#~ msgstr "}" - -#~ msgid "VIM: Can't open window!\n" -#~ msgstr "VIM: Lk}ҵ!\n" - -#~ msgid "Need Amigados version 2.04 or later\n" -#~ msgstr "ݭn Amigados 2.04 HW\n" - -#~ msgid "Need %s version %<PRId64>\n" -#~ msgstr "ݭn %s %<PRId64>\n" - -#~ msgid "Cannot open NIL:\n" -#~ msgstr "Lk} NIL:\n" - -#~ msgid "Cannot create " -#~ msgstr "إ " - -#~ msgid "Vim exiting with %d\n" -#~ msgstr "Vim Ǧ^: %d\n" - -#~ msgid "cannot change console mode ?!\n" -#~ msgstr "LkDx(console)Ҧ !?\n" - -#~ msgid "mch_get_shellsize: not a console??\n" -#~ msgstr "mch_get_shellsize: ODx(console)??\n" - -#~ msgid "Cannot execute " -#~ msgstr " " - -#~ msgid "shell " -#~ msgstr "shell " - -#~ msgid " returned\n" -#~ msgstr " w^\n" - -#~ msgid "ANCHOR_BUF_SIZE too small." -#~ msgstr "ANCHOR_BUF_SIZE Ӥp" - -#~ msgid "I/O ERROR" -#~ msgstr "I/O ~" - -#~ msgid "...(truncated)" -#~ msgstr "...(w)" - -#~ msgid "'columns' is not 80, cannot execute external commands" -#~ msgstr "'columns' O 80, Lk~RO" - -#~ msgid "to %s on %s" -#~ msgstr " %s on %s" - -#~ msgid "E613: Unknown printer font: %s" -#~ msgstr "E613: TLr: %s" - -#~ msgid "E238: Print error: %s" -#~ msgstr "E238: CL~: %s" - -#~ msgid "Printing '%s'" -#~ msgstr "CL: '%s'" - -#~ msgid "E244: Illegal charset name \"%s\" in font name \"%s\"" -#~ msgstr "E244: r \"%s\" Lkr\"%s\"" - -#~ msgid "E245: Illegal char '%c' in font name \"%s\"" -#~ msgstr "E245: Tr '%c' X{brW \"%s\" " - -#~ msgid "Vim: Double signal, exiting\n" -#~ msgstr "Vim: signal, }\n" - -#~ msgid "Vim: Caught deadly signal %s\n" -#~ msgstr "Vim: CVim: dIH(signal) %s\n" - -#~ msgid "Vim: Caught deadly signal\n" -#~ msgstr "Vim: dIPRH(deadly signale)\n" - -#~ msgid "Opening the X display took %<PRId64> msec" -#~ msgstr "} X Window Ӯ %<PRId64> msec" - -#~ msgid "" -#~ "\n" -#~ "Vim: Got X error\n" -#~ msgstr "" -#~ "\n" -#~ "Vim: X ~\n" - -#~ msgid "Testing the X display failed" -#~ msgstr " X Window " - -#~ msgid "Opening the X display timed out" -#~ msgstr "} X Window O" - -#~ msgid "" -#~ "\n" -#~ "Cannot execute shell sh\n" -#~ msgstr "" -#~ "\n" -#~ " shell sh\n" - -#~ msgid "" -#~ "\n" -#~ "Cannot create pipes\n" -#~ msgstr "" -#~ "\n" -#~ "إ pipe u\n" - -#~ msgid "" -#~ "\n" -#~ "Cannot fork\n" -#~ msgstr "" -#~ "\n" -#~ " fork\n" - -#~ msgid "" -#~ "\n" -#~ "Command terminated\n" -#~ msgstr "" -#~ "\n" -#~ "ROw\n" - -#~ msgid "XSMP lost ICE connection" -#~ msgstr "XSMP h ICE su" - -#~ msgid "Opening the X display failed" -#~ msgstr "} X Window " - -#~ msgid "XSMP handling save-yourself request" -#~ msgstr "XSMP bBzۧxsnD" - -#~ msgid "XSMP opening connection" -#~ msgstr "} XSMP su" - -#~ msgid "XSMP ICE connection watch failed" -#~ msgstr "XSMP ICE suʬݥ" - -#~ msgid "XSMP SmcOpenConnection failed: %s" -#~ msgstr "XSMP SmcOpenConnection : %s" - -#~ msgid "At line" -#~ msgstr "b渹 " - -#~ msgid "Could not allocate memory for command line." -#~ msgstr "LkROCtmOC" - -#~ msgid "VIM Error" -#~ msgstr "VIM ~" - -#~ msgid "Could not load vim32.dll!" -#~ msgstr "LkJ vim32.dllI" - -#~ msgid "Could not fix up function pointers to the DLL!" -#~ msgstr "ץ禡Ш DLL!" - -#~ msgid "shell returned %d" -#~ msgstr "Shell Ǧ^ %d" - -#~ msgid "Vim: Caught %s event\n" -#~ msgstr "Vim: dI %s \n" - -#~ msgid "close" -#~ msgstr "" - -#~ msgid "logoff" -#~ msgstr "nX" - -#~ msgid "shutdown" -#~ msgstr "" - -#~ msgid "E371: Command not found" -#~ msgstr "E371: 䤣RO" - -#~ msgid "" -#~ "VIMRUN.EXE not found in your $PATH.\n" -#~ "External commands will not pause after completion.\n" -#~ "See :help win32-vimrun for more information." -#~ msgstr "" -#~ "bA $PATH 䤣 VIMRUN.EXE.\n" -#~ "~RO槹N|Ȱ.\n" -#~ "i@Bа :help win32-vimrun " - -#~ msgid "Vim Warning" -#~ msgstr "Vim ĵi" - -#~ msgid "E56: %s* operand could be empty" -#~ msgstr "E56: %s* B⤸iHOŪ" - -#~ msgid "E57: %s+ operand could be empty" -#~ msgstr "E57: %s+ B⤸iHOŪ" - -#~ msgid "E58: %s{ operand could be empty" -#~ msgstr "E58: %s{ B⤸iHOŪ" - -#~ msgid "E361: Crash intercepted; regexp too complex?" -#~ msgstr "E361: Lk; regular expression ӽ?" - -#~ msgid "E363: pattern caused out-of-stack error" -#~ msgstr "E363: regular expression y|Υ~" - -#~ msgid "E396: containedin argument not accepted here" -#~ msgstr "E396: ϥΤFTѼ" - -#~ msgid "Enter nr of choice (<CR> to abort): " -#~ msgstr "J nr ο (<CR> }): " - -#~ msgid "E430: Tag file path truncated for %s\n" -#~ msgstr "E430: Tag ɮ|QI_ %s\n" - -#~ msgid "new shell started\n" -#~ msgstr "_ʷs shell\n" - -#~ msgid "No undo possible; continue anyway" -#~ msgstr "Lk٭F~VO" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16/32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 16/32 Bit ϫɭ" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit GUI version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 32 Bit ϫɭ" - -#~ msgid " in Win32s mode" -#~ msgstr "Win32s Ҧ" - -#~ msgid " with OLE support" -#~ msgstr "䴩 OLE" - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 32-bit console version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 32 Bit console " - -#~ msgid "" -#~ "\n" -#~ "MS-Windows 16-bit version" -#~ msgstr "" -#~ "\n" -#~ "MS-Windows 32 Bit console " - -#~ msgid "" -#~ "\n" -#~ "32-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ "32 Bit MS-DOS " - -#~ msgid "" -#~ "\n" -#~ "16-bit MS-DOS version" -#~ msgstr "" -#~ "\n" -#~ "16 Bit MS-DOS " - -#~ msgid "" -#~ "\n" -#~ "MacOS X (unix) version" -#~ msgstr "" -#~ "\n" -#~ "MacOS X (unix) " - -#~ msgid "" -#~ "\n" -#~ "MacOS X version" -#~ msgstr "" -#~ "\n" -#~ "MacOS X " - -#~ msgid "" -#~ "\n" -#~ "MacOS version" -#~ msgstr "" -#~ "\n" -#~ "MacOS " - -#~ msgid "" -#~ "\n" -#~ "RISC OS version" -#~ msgstr "" -#~ "\n" -#~ "RISC OS " - -#~ msgid "" -#~ "\n" -#~ "Big version " -#~ msgstr "" -#~ "\n" -#~ "j " - -#~ msgid "" -#~ "\n" -#~ "Normal version " -#~ msgstr "" -#~ "\n" -#~ "@목 " - -#~ msgid "" -#~ "\n" -#~ "Small version " -#~ msgstr "" -#~ "\n" -#~ "² " - -#~ msgid "" -#~ "\n" -#~ "Tiny version " -#~ msgstr "" -#~ "\n" -#~ "² " - -#~ msgid "with GTK2-GNOME GUI." -#~ msgstr "ϥ GTK2-GNOME ϫɭC" - -#~ msgid "with GTK-GNOME GUI." -#~ msgstr "ϥ GTK-GNOME ϫɭC" - -#~ msgid "with GTK2 GUI." -#~ msgstr "ϥ GTK2 ϫɭC" - -#~ msgid "with GTK GUI." -#~ msgstr "ϥ GTK ϫɭC" - -#~ msgid "with X11-Motif GUI." -#~ msgstr "ϥ X11-Motif ϫɭC" - -#~ msgid "with X11-neXtaw GUI." -#~ msgstr "ϥ X11-neXtaw ϫɭC" - -#~ msgid "with X11-Athena GUI." -#~ msgstr "ϥ X11-Athena ϫɭC" - -#~ msgid "with BeOS GUI." -#~ msgstr "ϥ BeOS ϫɭC" - -#~ msgid "with Photon GUI." -#~ msgstr "ϥPhotonϫɭC" - -#~ msgid "with GUI." -#~ msgstr "ϥιϫɭC" - -#~ msgid "with Carbon GUI." -#~ msgstr "ϥ Carbon ϫɭC" - -#~ msgid "with Cocoa GUI." -#~ msgstr "ϥ Cocoa ϫɭC" - -#~ msgid "with (classic) GUI." -#~ msgstr "ϥ (Dz) ϫɭC" - -#~ msgid " system gvimrc file: \"" -#~ msgstr " t gvimrc ɮ: \"" - -#~ msgid " user gvimrc file: \"" -#~ msgstr " ϥΪ̭ӤH gvimrc : \"" - -#~ msgid "2nd user gvimrc file: \"" -#~ msgstr " ĤGխӤH gvimrc ɮ: \"" - -#~ msgid "3rd user gvimrc file: \"" -#~ msgstr " ĤTխӤH gvimrc ɮ: \"" - -#~ msgid " system menu file: \"" -#~ msgstr " tο]w: \"" - -#~ msgid "Compiler: " -#~ msgstr "sĶ: " - -#~ msgid "menu Help->Orphans for information " -#~ msgstr "i@Bп檺 U->@ϩt" - -#~ msgid "Running modeless, typed text is inserted" -#~ msgstr " Modeless ҦAJr|۰ʴJ" - -#~ msgid "menu Edit->Global Settings->Toggle Insert Mode " -#~ msgstr "檺usvu]wvuJҦv" - -#~ msgid " for two modes " -#~ msgstr " ؼҦ " - -#~ msgid "menu Edit->Global Settings->Toggle Vi Compatible" -#~ msgstr "檺usvu]wvuDzViۮeҦv" - -#~ msgid " for Vim defaults " -#~ msgstr " Ho Vim w] " - -#~ msgid "WARNING: Windows 95/98/ME detected" -#~ msgstr "`N: Windows 95/98/ME" - -#~ msgid "type :help windows95<Enter> for info on this" -#~ msgstr "pGݭn Windows 95 䴩hTпJ :help windows95<Enter>" - -#~ msgid "E370: Could not load library %s" -#~ msgstr "E370: LksJ{w %s" - -#~ msgid "" -#~ "Sorry, this command is disabled: the Perl library could not be loaded." -#~ msgstr "p, ROLkϥ. ]: LkJ Perl {w(Library)" - -#~ msgid "E299: Perl evaluation forbidden in sandbox without the Safe module" -#~ msgstr "E299: b sandbox L Safe ҲծɵLk Perl" - -#~ msgid "Edit with &multiple Vims" -#~ msgstr "ϥΦh Vim session s(&M)" - -#~ msgid "Edit with single &Vim" -#~ msgstr "uϥΦP@ Vim session s(&V)" - -#~ msgid "&Diff with Vim" -#~ msgstr "ϥ Vim Ӥ(&Diff)" - -#~ msgid "Edit with &Vim" -#~ msgstr "ϥ Vim s覹(&V)" - -#~ msgid "Edit with existing Vim - &" -#~ msgstr "ϥΰ椤 Vim session s - &" - -#~ msgid "Edits the selected file(s) with Vim" -#~ msgstr "ϥ Vim swɮ" - -#~ msgid "Error creating process: Check if gvim is in your path!" -#~ msgstr "Lk{: ˬd gvim SbA PATH ܼƸ!" - -#~ msgid "gvimext.dll error" -#~ msgstr "gvimext.dll ~" - -#~ msgid "Path length too long!" -#~ msgstr "|פӪ!" - -#~ msgid "E234: Unknown fontset: %s" -#~ msgstr "E234: Tr (Fontset): %s" - -#~ msgid "E235: Unknown font: %s" -#~ msgstr "E235: TrW: %s" - -#~ msgid "E448: Could not load library function %s" -#~ msgstr "E448: LkJ{w禡 %s" - -#~ msgid "E26: Hebrew cannot be used: Not enabled at compile time\n" -#~ msgstr "E26: ]sĶɨS[J Hebrew {XAҥHLkϥ Hebrew\n" - -#~ msgid "E27: Farsi cannot be used: Not enabled at compile time\n" -#~ msgstr "E27: ]sĶɨS[J Farsi {XAҥHLkϥ Farsi\n" - -#~ msgid "E800: Arabic cannot be used: Not enabled at compile time\n" -#~ msgstr "E800: ]sĶɨS[J Arabic {XAҥHLkϥ\n" - -#~ msgid "E247: no registered server named \"%s\"" -#~ msgstr "E247: SU \"%s\" A" - -#~ msgid "E233: cannot open display" -#~ msgstr "E233: <} X Server DISPLAY>" - -#~ msgid "E463: Region is guarded, cannot modify" -#~ msgstr "E463: ϰQO@ALkק" - -#~ msgid "E565: error reading cscope connection %d" -#~ msgstr "E565: Ū cscope su %d ~" - -#~ msgid "E260: cscope connection not found" -#~ msgstr "E260: 䤣 cscope su" - -#~ msgid "cscope connection closed" -#~ msgstr "cscope suw" - -#~ msgid "couldn't malloc\n" -#~ msgstr "Lkϥ malloc\n" - -#~ msgid "%2d %-5ld %-34s <none>\n" -#~ msgstr "%2d %-5ld %-34s <L>\n" - -#~ msgid "\"\n" -#~ msgstr "\"\n" - -#~ msgid "--help\t\tShow Gnome arguments" -#~ msgstr "--help\t\t Gnome Ѽ" - -#~ msgid " BLOCK" -#~ msgstr " ϶" - -#~ msgid " LINE" -#~ msgstr " " - -#~ msgid "Linear tag search" -#~ msgstr "uʷjM (Tags)" - -#~ msgid "Binary tag search" -#~ msgstr "GjM(Binary search) (Tags)" - -#~ msgid "function " -#~ msgstr "禡 " - -#~ msgid "Run Macro" -#~ msgstr "楨" - -#~ msgid "E242: Color name not recognized: %s" -#~ msgstr "E242: %s LkѧOCW" - -#~ msgid "error reading cscope connection %d" -#~ msgstr "Ū cscope su %d ɿ~" - -#~ msgid "E249: couldn't read VIM instance registry property" -#~ msgstr "E249: LkŪ VIM registry ]w" - -#~ msgid "E241: Unable to send to Vim server" -#~ msgstr "E241: Lkǰe Vim A" - -#~ msgid "" -#~ "\n" -#~ "Send failed. No command server present ?\n" -#~ msgstr "" -#~ "\n" -#~ "ǰeѡCSROAsb ?\n" - -#~ msgid "PC (32 bits Vim)" -#~ msgstr "PC (32 줸 Vim)" - -#~ msgid "PC (16 bits Vim)" -#~ msgstr "PC (16 줸 Vim)" - -#~ msgid "E362: Unsupported screen mode" -#~ msgstr "E362: ùҦ䴩" - -#~ msgid "No servers found for this display" -#~ msgstr "DisplaySA(Servers)" - -#~ msgid "E258: no matches found in cscope connections" -#~ msgstr "E258: cscope su䤣ŦX" - -#~ msgid "" -#~ "\n" -#~ "MacOS Carbon" -#~ msgstr "" -#~ "\n" -#~ "MacOS Carbon" - -#~ msgid "" -#~ "\n" -#~ "MacOS 8" -#~ msgstr "" -#~ "\n" -#~ "MacOS 8" - -#~ msgid "Retrieve next symbol" -#~ msgstr "Ū: qU symbol" - -#~ msgid "-- SNiFF+ commands --" -#~ msgstr "-- SNiFF+ RO --" - -#~ msgid "E277: Unrecognized sniff request [%s]" -#~ msgstr "E277: Lk sniff RO [%s]" diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index a7aff15121..f0d77f9e2b 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -482,9 +482,11 @@ qf_init_ext ( p_str += len; } else if (tv->v_type == VAR_LIST) { - /* Get the next line from the supplied list */ - while (p_li && p_li->li_tv.v_type != VAR_STRING) - p_li = p_li->li_next; /* Skip non-string items */ + // Get the next line from the supplied list + while (p_li && (p_li->li_tv.v_type != VAR_STRING + || p_li->li_tv.vval.v_string == NULL)) { + p_li = p_li->li_next; // Skip non-string items + } if (!p_li) /* End of the list */ break; @@ -910,7 +912,9 @@ static int qf_add_entry(qf_info_T *qi, qfline_T **prevp, char_u *dir, if (qi->qf_lists[qi->qf_curlist].qf_count == 0) { /* first element in the list */ qi->qf_lists[qi->qf_curlist].qf_start = qfp; - qfp->qf_prev = qfp; /* first element points to itself */ + qi->qf_lists[qi->qf_curlist].qf_ptr = qfp; + qi->qf_lists[qi->qf_curlist].qf_index = 0; + qfp->qf_prev = qfp; // first element points to itself } else { assert(*prevp); qfp->qf_prev = *prevp; @@ -1254,6 +1258,32 @@ static char_u *qf_guess_filepath(char_u *filename) } +/// When loading a file from the quickfix, the auto commands may modify it. +/// This may invalidate the current quickfix entry. This function checks +/// whether a entry is still present in the quickfix. +/// Similar to location list. +static bool is_qf_entry_present(qf_info_T *qi, qfline_T *qf_ptr) +{ + qf_list_T *qfl; + qfline_T *qfp; + int i; + + qfl = &qi->qf_lists[qi->qf_curlist]; + + // Search for the entry in the current list + for (i = 0, qfp = qfl->qf_start; i < qfl->qf_count; i++, qfp = qfp->qf_next) { + if (qfp == qf_ptr) { + break; + } + } + + if (i == qfl->qf_count) { // Entry is not found + return false; + } + + return true; +} + /* * jump to a quickfix line * if dir == FORWARD go "errornr" valid entries forward @@ -1585,14 +1615,29 @@ win_found: oldwin == curwin ? curwin : NULL); } } else { + int old_qf_curlist = qi->qf_curlist; + bool is_abort = false; + ok = buflist_getfile(qf_ptr->qf_fnum, (linenr_T)1, GETF_SETMARK | GETF_SWITCH, forceit); if (qi != &ql_info && !win_valid(oldwin)) { EMSG(_("E924: Current window was closed")); + is_abort = true; + opened_window = false; + } else if (old_qf_curlist != qi->qf_curlist + || !is_qf_entry_present(qi, qf_ptr)) { + if (qi == &ql_info) { + EMSG(_("E925: Current quickfix was changed")); + } else { + EMSG(_("E926: Current location list was changed")); + } + is_abort = true; + } + + if (is_abort) { ok = false; qi = NULL; qf_ptr = NULL; - opened_window = false; } } } @@ -2970,6 +3015,7 @@ void ex_vimgrep(exarg_T *eap) /* Get the search pattern: either white-separated or enclosed in // */ regmatch.regprog = NULL; + char_u *title = vim_strsave(*eap->cmdlinep); p = skip_vimgrep_pat(eap->arg, &s, &flags); if (p == NULL) { EMSG(_(e_invalpat)); @@ -3001,7 +3047,7 @@ void ex_vimgrep(exarg_T *eap) && eap->cmdidx != CMD_vimgrepadd && eap->cmdidx != CMD_lvimgrepadd) || qi->qf_curlist == qi->qf_listcount) { // make place for a new list - qf_new_list(qi, *eap->cmdlinep); + qf_new_list(qi, title != NULL ? title : *eap->cmdlinep); } else if (qi->qf_lists[qi->qf_curlist].qf_count > 0) { // Adding to existing list, find last entry. for (prevp = qi->qf_lists[qi->qf_curlist].qf_start; @@ -3229,6 +3275,7 @@ void ex_vimgrep(exarg_T *eap) } theend: + xfree(title); xfree(dirname_now); xfree(dirname_start); xfree(target_dir); @@ -3326,10 +3373,11 @@ load_dummy_buffer ( int failed = TRUE; aco_save_T aco; - /* Allocate a buffer without putting it in the buffer list. */ + // Allocate a buffer without putting it in the buffer list. newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY); - if (newbuf == NULL) + if (newbuf == NULL) { return NULL; + } /* Init the options. */ buf_copy_options(newbuf, BCO_ENTER | BCO_NOHELP); @@ -3577,7 +3625,9 @@ int set_errorlist(win_T *wp, list_T *list, int action, char_u *title) else qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE; qi->qf_lists[qi->qf_curlist].qf_ptr = qi->qf_lists[qi->qf_curlist].qf_start; - qi->qf_lists[qi->qf_curlist].qf_index = 1; + if (qi->qf_lists[qi->qf_curlist].qf_count > 0) { + qi->qf_lists[qi->qf_curlist].qf_index = 1; + } qf_update_buffer(qi); diff --git a/src/nvim/rbuffer.c b/src/nvim/rbuffer.c index a2cc432eca..111af0d0fb 100644 --- a/src/nvim/rbuffer.c +++ b/src/nvim/rbuffer.c @@ -18,7 +18,7 @@ RBuffer *rbuffer_new(size_t capacity) capacity = 0x10000; } - RBuffer *rv = xmalloc(sizeof(RBuffer) + capacity); + RBuffer *rv = xcalloc(1, sizeof(RBuffer) + capacity); rv->full_cb = rv->nonfull_cb = NULL; rv->data = NULL; rv->size = 0; @@ -78,7 +78,7 @@ void rbuffer_reset(RBuffer *buf) FUNC_ATTR_NONNULL_ALL size_t temp_size; if ((temp_size = rbuffer_size(buf))) { if (buf->temp == NULL) { - buf->temp = xmalloc(rbuffer_capacity(buf)); + buf->temp = xcalloc(1, rbuffer_capacity(buf)); } rbuffer_read(buf, buf->temp, buf->size); } diff --git a/src/nvim/regexp_nfa.c b/src/nvim/regexp_nfa.c index 35308b7411..d96858632f 100644 --- a/src/nvim/regexp_nfa.c +++ b/src/nvim/regexp_nfa.c @@ -723,13 +723,70 @@ static void nfa_emit_equi_class(int c) if (enc_utf8 || STRCMP(p_enc, "latin1") == 0 || STRCMP(p_enc, "iso-8859-15") == 0) { +#define A_grave 0xc0 +#define A_acute 0xc1 +#define A_circumflex 0xc2 +#define A_virguilla 0xc3 +#define A_diaeresis 0xc4 +#define A_ring 0xc5 +#define C_cedilla 0xc7 +#define E_grave 0xc8 +#define E_acute 0xc9 +#define E_circumflex 0xca +#define E_diaeresis 0xcb +#define I_grave 0xcc +#define I_acute 0xcd +#define I_circumflex 0xce +#define I_diaeresis 0xcf +#define N_virguilla 0xd1 +#define O_grave 0xd2 +#define O_acute 0xd3 +#define O_circumflex 0xd4 +#define O_virguilla 0xd5 +#define O_diaeresis 0xd6 +#define O_slash 0xd8 +#define U_grave 0xd9 +#define U_acute 0xda +#define U_circumflex 0xdb +#define U_diaeresis 0xdc +#define Y_acute 0xdd +#define a_grave 0xe0 +#define a_acute 0xe1 +#define a_circumflex 0xe2 +#define a_virguilla 0xe3 +#define a_diaeresis 0xe4 +#define a_ring 0xe5 +#define c_cedilla 0xe7 +#define e_grave 0xe8 +#define e_acute 0xe9 +#define e_circumflex 0xea +#define e_diaeresis 0xeb +#define i_grave 0xec +#define i_acute 0xed +#define i_circumflex 0xee +#define i_diaeresis 0xef +#define n_virguilla 0xf1 +#define o_grave 0xf2 +#define o_acute 0xf3 +#define o_circumflex 0xf4 +#define o_virguilla 0xf5 +#define o_diaeresis 0xf6 +#define o_slash 0xf8 +#define u_grave 0xf9 +#define u_acute 0xfa +#define u_circumflex 0xfb +#define u_diaeresis 0xfc +#define y_acute 0xfd +#define y_diaeresis 0xff switch (c) { - case 'A': case 0300: case 0301: case 0302: - case 0303: case 0304: case 0305: - CASEMBC(0x100) CASEMBC(0x102) CASEMBC(0x104) CASEMBC(0x1cd) - CASEMBC(0x1de) CASEMBC(0x1e0) CASEMBC(0x1ea2) - EMIT2('A'); EMIT2(0300); EMIT2(0301); EMIT2(0302); - EMIT2(0303); EMIT2(0304); EMIT2(0305); + case 'A': case A_grave: case A_acute: case A_circumflex: + case A_virguilla: case A_diaeresis: case A_ring: + CASEMBC(0x100) CASEMBC(0x102) CASEMBC(0x104) + CASEMBC(0x1cd) CASEMBC(0x1de) CASEMBC(0x1e0) + CASEMBC(0x1ea2) + EMIT2('A'); EMIT2(A_grave); EMIT2(A_acute); + EMIT2(A_circumflex); EMIT2(A_virguilla); + EMIT2(A_diaeresis); EMIT2(A_ring); EMITMBC(0x100) EMITMBC(0x102) EMITMBC(0x104) EMITMBC(0x1cd) EMITMBC(0x1de) EMITMBC(0x1e0) EMITMBC(0x1ea2) @@ -739,23 +796,24 @@ static void nfa_emit_equi_class(int c) EMIT2('B'); EMITMBC(0x1e02) EMITMBC(0x1e06) return; - case 'C': case 0307: - CASEMBC(0x106) CASEMBC(0x108) CASEMBC(0x10a) CASEMBC(0x10c) - EMIT2('C'); EMIT2(0307); EMITMBC(0x106) EMITMBC(0x108) + case 'C': case C_cedilla: CASEMBC(0x106) CASEMBC(0x108) CASEMBC(0x10a) + CASEMBC(0x10c) + EMIT2('C'); EMIT2(C_cedilla); EMITMBC(0x106) EMITMBC(0x108) EMITMBC(0x10a) EMITMBC(0x10c) return; case 'D': CASEMBC(0x10e) CASEMBC(0x110) CASEMBC(0x1e0a) - CASEMBC(0x1e0e) CASEMBC(0x1e10) + CASEMBC(0x1e0e) CASEMBC(0x1e10) EMIT2('D'); EMITMBC(0x10e) EMITMBC(0x110) EMITMBC(0x1e0a) EMITMBC(0x1e0e) EMITMBC(0x1e10) return; - case 'E': case 0310: case 0311: case 0312: case 0313: - CASEMBC(0x112) CASEMBC(0x114) CASEMBC(0x116) CASEMBC(0x118) - CASEMBC(0x11a) CASEMBC(0x1eba) CASEMBC(0x1ebc) - EMIT2('E'); EMIT2(0310); EMIT2(0311); EMIT2(0312); - EMIT2(0313); + case 'E': case E_grave: case E_acute: case E_circumflex: + case E_diaeresis: CASEMBC(0x112) CASEMBC(0x114) + CASEMBC(0x116) CASEMBC(0x118) CASEMBC(0x11a) + CASEMBC(0x1eba) CASEMBC(0x1ebc) + EMIT2('E'); EMIT2(E_grave); EMIT2(E_acute); + EMIT2(E_circumflex); EMIT2(E_diaeresis); EMITMBC(0x112) EMITMBC(0x114) EMITMBC(0x116) EMITMBC(0x118) EMITMBC(0x11a) EMITMBC(0x1eba) EMITMBC(0x1ebc) @@ -766,24 +824,26 @@ static void nfa_emit_equi_class(int c) return; case 'G': CASEMBC(0x11c) CASEMBC(0x11e) CASEMBC(0x120) - CASEMBC(0x122) CASEMBC(0x1e4) CASEMBC(0x1e6) CASEMBC(0x1f4) - CASEMBC(0x1e20) + CASEMBC(0x122) CASEMBC(0x1e4) CASEMBC(0x1e6) + CASEMBC(0x1f4) CASEMBC(0x1e20) EMIT2('G'); EMITMBC(0x11c) EMITMBC(0x11e) EMITMBC(0x120) EMITMBC(0x122) EMITMBC(0x1e4) EMITMBC(0x1e6) EMITMBC(0x1f4) EMITMBC(0x1e20) return; case 'H': CASEMBC(0x124) CASEMBC(0x126) CASEMBC(0x1e22) - CASEMBC(0x1e26) CASEMBC(0x1e28) + CASEMBC(0x1e26) CASEMBC(0x1e28) EMIT2('H'); EMITMBC(0x124) EMITMBC(0x126) EMITMBC(0x1e22) EMITMBC(0x1e26) EMITMBC(0x1e28) return; - case 'I': case 0314: case 0315: case 0316: case 0317: - CASEMBC(0x128) CASEMBC(0x12a) CASEMBC(0x12c) CASEMBC(0x12e) - CASEMBC(0x130) CASEMBC(0x1cf) CASEMBC(0x1ec8) - EMIT2('I'); EMIT2(0314); EMIT2(0315); EMIT2(0316); - EMIT2(0317); EMITMBC(0x128) EMITMBC(0x12a) + case 'I': case I_grave: case I_acute: case I_circumflex: + case I_diaeresis: CASEMBC(0x128) CASEMBC(0x12a) + CASEMBC(0x12c) CASEMBC(0x12e) CASEMBC(0x130) + CASEMBC(0x1cf) CASEMBC(0x1ec8) + EMIT2('I'); EMIT2(I_grave); EMIT2(I_acute); + EMIT2(I_circumflex); EMIT2(I_diaeresis); + EMITMBC(0x128) EMITMBC(0x12a) EMITMBC(0x12c) EMITMBC(0x12e) EMITMBC(0x130) EMITMBC(0x1cf) EMITMBC(0x1ec8) return; @@ -793,13 +853,13 @@ static void nfa_emit_equi_class(int c) return; case 'K': CASEMBC(0x136) CASEMBC(0x1e8) CASEMBC(0x1e30) - CASEMBC(0x1e34) + CASEMBC(0x1e34) EMIT2('K'); EMITMBC(0x136) EMITMBC(0x1e8) EMITMBC(0x1e30) EMITMBC(0x1e34) return; case 'L': CASEMBC(0x139) CASEMBC(0x13b) CASEMBC(0x13d) - CASEMBC(0x13f) CASEMBC(0x141) CASEMBC(0x1e3a) + CASEMBC(0x13f) CASEMBC(0x141) CASEMBC(0x1e3a) EMIT2('L'); EMITMBC(0x139) EMITMBC(0x13b) EMITMBC(0x13d) EMITMBC(0x13f) EMITMBC(0x141) EMITMBC(0x1e3a) return; @@ -808,19 +868,21 @@ static void nfa_emit_equi_class(int c) EMIT2('M'); EMITMBC(0x1e3e) EMITMBC(0x1e40) return; - case 'N': case 0321: - CASEMBC(0x143) CASEMBC(0x145) CASEMBC(0x147) CASEMBC(0x1e44) - CASEMBC(0x1e48) - EMIT2('N'); EMIT2(0321); EMITMBC(0x143) EMITMBC(0x145) + case 'N': case N_virguilla: CASEMBC(0x143) CASEMBC(0x145) + CASEMBC(0x147) CASEMBC(0x1e44) CASEMBC(0x1e48) + EMIT2('N'); EMIT2(N_virguilla); + EMITMBC(0x143) EMITMBC(0x145) EMITMBC(0x147) EMITMBC(0x1e44) EMITMBC(0x1e48) return; - case 'O': case 0322: case 0323: case 0324: case 0325: - case 0326: case 0330: - CASEMBC(0x14c) CASEMBC(0x14e) CASEMBC(0x150) CASEMBC(0x1a0) - CASEMBC(0x1d1) CASEMBC(0x1ea) CASEMBC(0x1ec) CASEMBC(0x1ece) - EMIT2('O'); EMIT2(0322); EMIT2(0323); EMIT2(0324); - EMIT2(0325); EMIT2(0326); EMIT2(0330); + case 'O': case O_grave: case O_acute: case O_circumflex: + case O_virguilla: case O_diaeresis: case O_slash: + CASEMBC(0x14c) CASEMBC(0x14e) CASEMBC(0x150) + CASEMBC(0x1a0) CASEMBC(0x1d1) CASEMBC(0x1ea) + CASEMBC(0x1ec) CASEMBC(0x1ece) + EMIT2('O'); EMIT2(O_grave); EMIT2(O_acute); + EMIT2(O_circumflex); EMIT2(O_virguilla); + EMIT2(O_diaeresis); EMIT2(O_slash); EMITMBC(0x14c) EMITMBC(0x14e) EMITMBC(0x150) EMITMBC(0x1a0) EMITMBC(0x1d1) EMITMBC(0x1ea) EMITMBC(0x1ec) EMITMBC(0x1ece) @@ -831,29 +893,31 @@ static void nfa_emit_equi_class(int c) return; case 'R': CASEMBC(0x154) CASEMBC(0x156) CASEMBC(0x158) - CASEMBC(0x1e58) CASEMBC(0x1e5e) + CASEMBC(0x1e58) CASEMBC(0x1e5e) EMIT2('R'); EMITMBC(0x154) EMITMBC(0x156) EMITMBC(0x158) EMITMBC(0x1e58) EMITMBC(0x1e5e) return; case 'S': CASEMBC(0x15a) CASEMBC(0x15c) CASEMBC(0x15e) - CASEMBC(0x160) CASEMBC(0x1e60) + CASEMBC(0x160) CASEMBC(0x1e60) EMIT2('S'); EMITMBC(0x15a) EMITMBC(0x15c) EMITMBC(0x15e) EMITMBC(0x160) EMITMBC(0x1e60) return; case 'T': CASEMBC(0x162) CASEMBC(0x164) CASEMBC(0x166) - CASEMBC(0x1e6a) CASEMBC(0x1e6e) + CASEMBC(0x1e6a) CASEMBC(0x1e6e) EMIT2('T'); EMITMBC(0x162) EMITMBC(0x164) EMITMBC(0x166) EMITMBC(0x1e6a) EMITMBC(0x1e6e) return; - case 'U': case 0331: case 0332: case 0333: case 0334: - CASEMBC(0x168) CASEMBC(0x16a) CASEMBC(0x16c) CASEMBC(0x16e) - CASEMBC(0x170) CASEMBC(0x172) CASEMBC(0x1af) CASEMBC(0x1d3) - CASEMBC(0x1ee6) - EMIT2('U'); EMIT2(0331); EMIT2(0332); EMIT2(0333); - EMIT2(0334); EMITMBC(0x168) EMITMBC(0x16a) + case 'U': case U_grave: case U_acute: case U_diaeresis: + case U_circumflex: CASEMBC(0x168) CASEMBC(0x16a) + CASEMBC(0x16c) CASEMBC(0x16e) CASEMBC(0x170) + CASEMBC(0x172) CASEMBC(0x1af) CASEMBC(0x1d3) + CASEMBC(0x1ee6) + EMIT2('U'); EMIT2(U_grave); EMIT2(U_acute); + EMIT2(U_diaeresis); EMIT2(U_circumflex); + EMITMBC(0x168) EMITMBC(0x16a) EMITMBC(0x16c) EMITMBC(0x16e) EMITMBC(0x170) EMITMBC(0x172) EMITMBC(0x1af) EMITMBC(0x1d3) EMITMBC(0x1ee6) @@ -864,7 +928,7 @@ static void nfa_emit_equi_class(int c) return; case 'W': CASEMBC(0x174) CASEMBC(0x1e80) CASEMBC(0x1e82) - CASEMBC(0x1e84) CASEMBC(0x1e86) + CASEMBC(0x1e84) CASEMBC(0x1e86) EMIT2('W'); EMITMBC(0x174) EMITMBC(0x1e80) EMITMBC(0x1e82) EMITMBC(0x1e84) EMITMBC(0x1e86) return; @@ -873,26 +937,29 @@ static void nfa_emit_equi_class(int c) EMIT2('X'); EMITMBC(0x1e8a) EMITMBC(0x1e8c) return; - case 'Y': case 0335: - CASEMBC(0x176) CASEMBC(0x178) CASEMBC(0x1e8e) CASEMBC(0x1ef2) - CASEMBC(0x1ef6) CASEMBC(0x1ef8) - EMIT2('Y'); EMIT2(0335); EMITMBC(0x176) EMITMBC(0x178) + case 'Y': case Y_acute: CASEMBC(0x176) CASEMBC(0x178) + CASEMBC(0x1e8e) CASEMBC(0x1ef2) CASEMBC(0x1ef6) + CASEMBC(0x1ef8) + EMIT2('Y'); EMIT2(Y_acute); + EMITMBC(0x176) EMITMBC(0x178) EMITMBC(0x1e8e) EMITMBC(0x1ef2) EMITMBC(0x1ef6) EMITMBC(0x1ef8) return; case 'Z': CASEMBC(0x179) CASEMBC(0x17b) CASEMBC(0x17d) - CASEMBC(0x1b5) CASEMBC(0x1e90) CASEMBC(0x1e94) + CASEMBC(0x1b5) CASEMBC(0x1e90) CASEMBC(0x1e94) EMIT2('Z'); EMITMBC(0x179) EMITMBC(0x17b) EMITMBC(0x17d) EMITMBC(0x1b5) EMITMBC(0x1e90) EMITMBC(0x1e94) return; - case 'a': case 0340: case 0341: case 0342: - case 0343: case 0344: case 0345: - CASEMBC(0x101) CASEMBC(0x103) CASEMBC(0x105) CASEMBC(0x1ce) - CASEMBC(0x1df) CASEMBC(0x1e1) CASEMBC(0x1ea3) - EMIT2('a'); EMIT2(0340); EMIT2(0341); EMIT2(0342); - EMIT2(0343); EMIT2(0344); EMIT2(0345); + case 'a': case a_grave: case a_acute: case a_circumflex: + case a_virguilla: case a_diaeresis: case a_ring: + CASEMBC(0x101) CASEMBC(0x103) CASEMBC(0x105) + CASEMBC(0x1ce) CASEMBC(0x1df) CASEMBC(0x1e1) + CASEMBC(0x1ea3) + EMIT2('a'); EMIT2(a_grave); EMIT2(a_acute); + EMIT2(a_circumflex); EMIT2(a_virguilla); + EMIT2(a_diaeresis); EMIT2(a_ring); EMITMBC(0x101) EMITMBC(0x103) EMITMBC(0x105) EMITMBC(0x1ce) EMITMBC(0x1df) EMITMBC(0x1e1) EMITMBC(0x1ea3) @@ -902,23 +969,26 @@ static void nfa_emit_equi_class(int c) EMIT2('b'); EMITMBC(0x1e03) EMITMBC(0x1e07) return; - case 'c': case 0347: - CASEMBC(0x107) CASEMBC(0x109) CASEMBC(0x10b) CASEMBC(0x10d) - EMIT2('c'); EMIT2(0347); EMITMBC(0x107) EMITMBC(0x109) + case 'c': case c_cedilla: CASEMBC(0x107) CASEMBC(0x109) + CASEMBC(0x10b) CASEMBC(0x10d) + EMIT2('c'); EMIT2(c_cedilla); + EMITMBC(0x107) EMITMBC(0x109) EMITMBC(0x10b) EMITMBC(0x10d) return; case 'd': CASEMBC(0x10f) CASEMBC(0x111) CASEMBC(0x1e0b) - CASEMBC(0x1e0f) CASEMBC(0x1e11) + CASEMBC(0x1e0f) CASEMBC(0x1e11) EMIT2('d'); EMITMBC(0x10f) EMITMBC(0x111) EMITMBC(0x1e0b) EMITMBC(0x1e0f) EMITMBC(0x1e11) return; - case 'e': case 0350: case 0351: case 0352: case 0353: - CASEMBC(0x113) CASEMBC(0x115) CASEMBC(0x117) CASEMBC(0x119) - CASEMBC(0x11b) CASEMBC(0x1ebb) CASEMBC(0x1ebd) - EMIT2('e'); EMIT2(0350); EMIT2(0351); EMIT2(0352); - EMIT2(0353); EMITMBC(0x113) EMITMBC(0x115) + case 'e': case e_grave: case e_acute: case e_circumflex: + case e_diaeresis: CASEMBC(0x113) CASEMBC(0x115) + CASEMBC(0x117) CASEMBC(0x119) CASEMBC(0x11b) + CASEMBC(0x1ebb) CASEMBC(0x1ebd) + EMIT2('e'); EMIT2(e_grave); EMIT2(e_acute); + EMIT2(e_circumflex); EMIT2(e_diaeresis); + EMITMBC(0x113) EMITMBC(0x115) EMITMBC(0x117) EMITMBC(0x119) EMITMBC(0x11b) EMITMBC(0x1ebb) EMITMBC(0x1ebd) return; @@ -928,24 +998,26 @@ static void nfa_emit_equi_class(int c) return; case 'g': CASEMBC(0x11d) CASEMBC(0x11f) CASEMBC(0x121) - CASEMBC(0x123) CASEMBC(0x1e5) CASEMBC(0x1e7) CASEMBC(0x1f5) - CASEMBC(0x1e21) + CASEMBC(0x123) CASEMBC(0x1e5) CASEMBC(0x1e7) + CASEMBC(0x1f5) CASEMBC(0x1e21) EMIT2('g'); EMITMBC(0x11d) EMITMBC(0x11f) EMITMBC(0x121) EMITMBC(0x123) EMITMBC(0x1e5) EMITMBC(0x1e7) EMITMBC(0x1f5) EMITMBC(0x1e21) return; case 'h': CASEMBC(0x125) CASEMBC(0x127) CASEMBC(0x1e23) - CASEMBC(0x1e27) CASEMBC(0x1e29) CASEMBC(0x1e96) + CASEMBC(0x1e27) CASEMBC(0x1e29) CASEMBC(0x1e96) EMIT2('h'); EMITMBC(0x125) EMITMBC(0x127) EMITMBC(0x1e23) EMITMBC(0x1e27) EMITMBC(0x1e29) EMITMBC(0x1e96) return; - case 'i': case 0354: case 0355: case 0356: case 0357: - CASEMBC(0x129) CASEMBC(0x12b) CASEMBC(0x12d) CASEMBC(0x12f) - CASEMBC(0x1d0) CASEMBC(0x1ec9) - EMIT2('i'); EMIT2(0354); EMIT2(0355); EMIT2(0356); - EMIT2(0357); EMITMBC(0x129) EMITMBC(0x12b) + case 'i': case i_grave: case i_acute: case i_circumflex: + case i_diaeresis: CASEMBC(0x129) CASEMBC(0x12b) + CASEMBC(0x12d) CASEMBC(0x12f) CASEMBC(0x1d0) + CASEMBC(0x1ec9) + EMIT2('i'); EMIT2(i_grave); EMIT2(i_acute); + EMIT2(i_circumflex); EMIT2(i_diaeresis); + EMITMBC(0x129) EMITMBC(0x12b) EMITMBC(0x12d) EMITMBC(0x12f) EMITMBC(0x1d0) EMITMBC(0x1ec9) return; @@ -955,13 +1027,13 @@ static void nfa_emit_equi_class(int c) return; case 'k': CASEMBC(0x137) CASEMBC(0x1e9) CASEMBC(0x1e31) - CASEMBC(0x1e35) + CASEMBC(0x1e35) EMIT2('k'); EMITMBC(0x137) EMITMBC(0x1e9) EMITMBC(0x1e31) EMITMBC(0x1e35) return; case 'l': CASEMBC(0x13a) CASEMBC(0x13c) CASEMBC(0x13e) - CASEMBC(0x140) CASEMBC(0x142) CASEMBC(0x1e3b) + CASEMBC(0x140) CASEMBC(0x142) CASEMBC(0x1e3b) EMIT2('l'); EMITMBC(0x13a) EMITMBC(0x13c) EMITMBC(0x13e) EMITMBC(0x140) EMITMBC(0x142) EMITMBC(0x1e3b) return; @@ -970,20 +1042,23 @@ static void nfa_emit_equi_class(int c) EMIT2('m'); EMITMBC(0x1e3f) EMITMBC(0x1e41) return; - case 'n': case 0361: - CASEMBC(0x144) CASEMBC(0x146) CASEMBC(0x148) CASEMBC(0x149) - CASEMBC(0x1e45) CASEMBC(0x1e49) - EMIT2('n'); EMIT2(0361); EMITMBC(0x144) EMITMBC(0x146) + case 'n': case n_virguilla: CASEMBC(0x144) CASEMBC(0x146) + CASEMBC(0x148) CASEMBC(0x149) CASEMBC(0x1e45) + CASEMBC(0x1e49) + EMIT2('n'); EMIT2(n_virguilla); + EMITMBC(0x144) EMITMBC(0x146) EMITMBC(0x148) EMITMBC(0x149) EMITMBC(0x1e45) EMITMBC(0x1e49) return; - case 'o': case 0362: case 0363: case 0364: case 0365: - case 0366: case 0370: - CASEMBC(0x14d) CASEMBC(0x14f) CASEMBC(0x151) CASEMBC(0x1a1) - CASEMBC(0x1d2) CASEMBC(0x1eb) CASEMBC(0x1ed) CASEMBC(0x1ecf) - EMIT2('o'); EMIT2(0362); EMIT2(0363); EMIT2(0364); - EMIT2(0365); EMIT2(0366); EMIT2(0370); + case 'o': case o_grave: case o_acute: case o_circumflex: + case o_virguilla: case o_diaeresis: case o_slash: + CASEMBC(0x14d) CASEMBC(0x14f) CASEMBC(0x151) + CASEMBC(0x1a1) CASEMBC(0x1d2) CASEMBC(0x1eb) + CASEMBC(0x1ed) CASEMBC(0x1ecf) + EMIT2('o'); EMIT2(o_grave); EMIT2(o_acute); + EMIT2(o_circumflex); EMIT2(o_virguilla); + EMIT2(o_diaeresis); EMIT2(o_slash); EMITMBC(0x14d) EMITMBC(0x14f) EMITMBC(0x151) EMITMBC(0x1a1) EMITMBC(0x1d2) EMITMBC(0x1eb) EMITMBC(0x1ed) EMITMBC(0x1ecf) @@ -994,29 +1069,31 @@ static void nfa_emit_equi_class(int c) return; case 'r': CASEMBC(0x155) CASEMBC(0x157) CASEMBC(0x159) - CASEMBC(0x1e59) CASEMBC(0x1e5f) + CASEMBC(0x1e59) CASEMBC(0x1e5f) EMIT2('r'); EMITMBC(0x155) EMITMBC(0x157) EMITMBC(0x159) EMITMBC(0x1e59) EMITMBC(0x1e5f) return; case 's': CASEMBC(0x15b) CASEMBC(0x15d) CASEMBC(0x15f) - CASEMBC(0x161) CASEMBC(0x1e61) + CASEMBC(0x161) CASEMBC(0x1e61) EMIT2('s'); EMITMBC(0x15b) EMITMBC(0x15d) EMITMBC(0x15f) EMITMBC(0x161) EMITMBC(0x1e61) return; case 't': CASEMBC(0x163) CASEMBC(0x165) CASEMBC(0x167) - CASEMBC(0x1e6b) CASEMBC(0x1e6f) CASEMBC(0x1e97) + CASEMBC(0x1e6b) CASEMBC(0x1e6f) CASEMBC(0x1e97) EMIT2('t'); EMITMBC(0x163) EMITMBC(0x165) EMITMBC(0x167) EMITMBC(0x1e6b) EMITMBC(0x1e6f) EMITMBC(0x1e97) return; - case 'u': case 0371: case 0372: case 0373: case 0374: - CASEMBC(0x169) CASEMBC(0x16b) CASEMBC(0x16d) CASEMBC(0x16f) - CASEMBC(0x171) CASEMBC(0x173) CASEMBC(0x1b0) CASEMBC(0x1d4) - CASEMBC(0x1ee7) - EMIT2('u'); EMIT2(0371); EMIT2(0372); EMIT2(0373); - EMIT2(0374); EMITMBC(0x169) EMITMBC(0x16b) + case 'u': case u_grave: case u_acute: case u_circumflex: + case u_diaeresis: CASEMBC(0x169) CASEMBC(0x16b) + CASEMBC(0x16d) CASEMBC(0x16f) CASEMBC(0x171) + CASEMBC(0x173) CASEMBC(0x1b0) CASEMBC(0x1d4) + CASEMBC(0x1ee7) + EMIT2('u'); EMIT2(u_grave); EMIT2(u_acute); + EMIT2(u_circumflex); EMIT2(u_diaeresis); + EMITMBC(0x169) EMITMBC(0x16b) EMITMBC(0x16d) EMITMBC(0x16f) EMITMBC(0x171) EMITMBC(0x173) EMITMBC(0x1b0) EMITMBC(0x1d4) EMITMBC(0x1ee7) @@ -1027,7 +1104,7 @@ static void nfa_emit_equi_class(int c) return; case 'w': CASEMBC(0x175) CASEMBC(0x1e81) CASEMBC(0x1e83) - CASEMBC(0x1e85) CASEMBC(0x1e87) CASEMBC(0x1e98) + CASEMBC(0x1e85) CASEMBC(0x1e87) CASEMBC(0x1e98) EMIT2('w'); EMITMBC(0x175) EMITMBC(0x1e81) EMITMBC(0x1e83) EMITMBC(0x1e85) EMITMBC(0x1e87) EMITMBC(0x1e98) return; @@ -1036,16 +1113,17 @@ static void nfa_emit_equi_class(int c) EMIT2('x'); EMITMBC(0x1e8b) EMITMBC(0x1e8d) return; - case 'y': case 0375: case 0377: - CASEMBC(0x177) CASEMBC(0x1e8f) CASEMBC(0x1e99) - CASEMBC(0x1ef3) CASEMBC(0x1ef7) CASEMBC(0x1ef9) - EMIT2('y'); EMIT2(0375); EMIT2(0377); EMITMBC(0x177) + case 'y': case y_acute: case y_diaeresis: CASEMBC(0x177) + CASEMBC(0x1e8f) CASEMBC(0x1e99) CASEMBC(0x1ef3) + CASEMBC(0x1ef7) CASEMBC(0x1ef9) + EMIT2('y'); EMIT2(y_acute); EMIT2(y_diaeresis); + EMITMBC(0x177) EMITMBC(0x1e8f) EMITMBC(0x1e99) EMITMBC(0x1ef3) EMITMBC(0x1ef7) EMITMBC(0x1ef9) return; case 'z': CASEMBC(0x17a) CASEMBC(0x17c) CASEMBC(0x17e) - CASEMBC(0x1b6) CASEMBC(0x1e91) CASEMBC(0x1e95) + CASEMBC(0x1b6) CASEMBC(0x1e91) CASEMBC(0x1e95) EMIT2('z'); EMITMBC(0x17a) EMITMBC(0x17c) EMITMBC(0x17e) EMITMBC(0x1b6) EMITMBC(0x1e91) EMITMBC(0x1e95) return; @@ -4560,9 +4638,11 @@ static int recursive_regmatch(nfa_state_T *state, nfa_pim_T *pim, nfa_regprog_T if (REG_MULTI) regline = reg_getline(reglnum); reginput = regline + save_reginput_col; - nfa_match = save_nfa_match; + if (result != NFA_TOO_EXPENSIVE) { + nfa_match = save_nfa_match; + nfa_listid = save_nfa_listid; + } nfa_endp = save_nfa_endp; - nfa_listid = save_nfa_listid; #ifdef REGEXP_DEBUG log_fd = fopen(NFA_REGEXP_RUN_LOG, "a"); diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 3e4d016fe7..50517d2829 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -2592,11 +2592,13 @@ win_line ( shl->startcol = MAXCOL; shl->endcol = MAXCOL; shl->attr_cur = 0; + shl->is_addpos = false; v = (long)(ptr - line); if (cur != NULL) { cur->pos.cur = 0; } - next_search_hl(wp, shl, lnum, (colnr_T)v, cur); + next_search_hl(wp, shl, lnum, (colnr_T)v, + shl == &search_hl ? NULL : cur); // Need to get the line again, a multi-line regexp may have made it // invalid. @@ -2925,7 +2927,8 @@ win_line ( shl->attr_cur = 0; prev_syntax_id = 0; - next_search_hl(wp, shl, lnum, (colnr_T)v, cur); + next_search_hl(wp, shl, lnum, (colnr_T)v, + shl == &search_hl ? NULL : cur); pos_inprogress = !(cur == NULL || cur->pos.cur == 0); /* Need to get the line again, a multi-line regexp @@ -3760,18 +3763,18 @@ win_line ( if ((long)(wp->w_p_wrap ? wp->w_skipcol : wp->w_leftcol) > prevcol) ++prevcol; - /* Invert at least one char, used for Visual and empty line or - * highlight match at end of line. If it's beyond the last - * char on the screen, just overwrite that one (tricky!) Not - * needed when a '$' was displayed for 'list'. */ - prevcol_hl_flag = FALSE; - if (prevcol == (long)search_hl.startcol) - prevcol_hl_flag = TRUE; - else { + // Invert at least one char, used for Visual and empty line or + // highlight match at end of line. If it's beyond the last + // char on the screen, just overwrite that one (tricky!) Not + // needed when a '$' was displayed for 'list'. + prevcol_hl_flag = false; + if (!search_hl.is_addpos && prevcol == (long)search_hl.startcol) { + prevcol_hl_flag = true; + } else { cur = wp->w_match_head; while (cur != NULL) { - if (prevcol == (long)cur->hl.startcol) { - prevcol_hl_flag = TRUE; + if (!cur->hl.is_addpos && prevcol == (long)cur->hl.startcol) { + prevcol_hl_flag = true; break; } cur = cur->next; @@ -3821,10 +3824,13 @@ win_line ( shl_flag = TRUE; } else shl = &cur->hl; - if ((ptr - line) - 1 == (long)shl->startcol) + if ((ptr - line) - 1 == (long)shl->startcol + && (shl == &search_hl || !shl->is_addpos)) { char_attr = shl->attr; - if (shl != &search_hl && cur != NULL) + } + if (shl != &search_hl && cur != NULL) { cur = cur->next; + } } } ScreenAttrs[off] = char_attr; @@ -4939,8 +4945,8 @@ void win_redr_status(win_T *wp) */ static void redraw_custom_statusline(win_T *wp) { - static int entered = FALSE; - int save_called_emsg = called_emsg; + static int entered = false; + int saved_did_emsg = did_emsg; /* When called recursively return. This can happen when the statusline * contains an expression that triggers a redraw. */ @@ -4948,18 +4954,18 @@ static void redraw_custom_statusline(win_T *wp) return; entered = TRUE; - called_emsg = FALSE; - win_redr_custom(wp, FALSE); - if (called_emsg) { - /* When there is an error disable the statusline, otherwise the - * display is messed up with errors and a redraw triggers the problem - * again and again. */ + did_emsg = false; + win_redr_custom(wp, false); + if (did_emsg) { + // When there is an error disable the statusline, otherwise the + // display is messed up with errors and a redraw triggers the problem + // again and again. set_string_option_direct((char_u *)"statusline", -1, (char_u *)"", OPT_FREE | (*wp->w_p_stl != NUL ? OPT_LOCAL : OPT_GLOBAL), SID_ERROR); } - called_emsg |= save_called_emsg; - entered = FALSE; + did_emsg |= saved_did_emsg; + entered = false; } /* @@ -5292,7 +5298,7 @@ void screen_puts_len(char_u *text, int textlen, int row, int col, int attr) int force_redraw_next = FALSE; int need_redraw; - const int l_has_mbyte = has_mbyte; + const bool l_has_mbyte = has_mbyte; const bool l_enc_utf8 = enc_utf8; const int l_enc_dbcs = enc_dbcs; @@ -5459,9 +5465,6 @@ void screen_puts_len(char_u *text, int textlen, int row, int col, int attr) /* If we detected the next character needs to be redrawn, but the text * doesn't extend up to there, update the character here. */ if (force_redraw_next && col < screen_Columns) { - if (l_enc_dbcs != 0 && dbcs_off2cells(off, max_off) > 1) - screen_char_2(off, row, col); - else screen_char(off, row, col); } } @@ -5560,8 +5563,9 @@ static void prepare_search_hl(win_T *wp, linenr_T lnum) // in progress n = 0; while (shl->first_lnum < lnum && (shl->rm.regprog != NULL - || (cur != NULL && pos_inprogress))) { - next_search_hl(wp, shl, shl->first_lnum, (colnr_T)n, cur); + || (cur != NULL && pos_inprogress))) { + next_search_hl(wp, shl, shl->first_lnum, (colnr_T)n, + shl == &search_hl ? NULL : cur); pos_inprogress = !(cur == NULL || cur->pos.cur == 0); if (shl->lnum != 0) { shl->first_lnum = shl->lnum @@ -5694,6 +5698,8 @@ next_search_hl ( } } +/// If there is a match fill "shl" and return one. +/// Return zero otherwise. static int next_search_hl_pos( match_T *shl, // points to a match @@ -5703,47 +5709,50 @@ next_search_hl_pos( ) { int i; - int bot = -1; + int found = -1; shl->lnum = 0; for (i = posmatch->cur; i < MAXPOSMATCH; i++) { - if (posmatch->pos[i].lnum == 0) { + llpos_T *pos = &posmatch->pos[i]; + + if (pos->lnum == 0) { break; } - if (posmatch->pos[i].col < mincol) { + if (pos->len == 0 && pos->col < mincol) { continue; } - if (posmatch->pos[i].lnum == lnum) { - if (bot != -1) { - // partially sort positions by column numbers - // on the same line - if (posmatch->pos[i].col < posmatch->pos[bot].col) { - llpos_T tmp = posmatch->pos[i]; + if (pos->lnum == lnum) { + if (found >= 0) { + // if this match comes before the one at "found" then swap + // them + if (pos->col < posmatch->pos[found].col) { + llpos_T tmp = *pos; - posmatch->pos[i] = posmatch->pos[bot]; - posmatch->pos[bot] = tmp; + *pos = posmatch->pos[found]; + posmatch->pos[found] = tmp; } } else { - bot = i; - shl->lnum = lnum; + found = i; } } } posmatch->cur = 0; - if (bot != -1) { - colnr_T start = posmatch->pos[bot].col == 0 - ? 0: posmatch->pos[bot].col - 1; - colnr_T end = posmatch->pos[bot].col == 0 - ? MAXCOL : start + posmatch->pos[bot].len; + if (found >= 0) { + colnr_T start = posmatch->pos[found].col == 0 + ? 0: posmatch->pos[found].col - 1; + colnr_T end = posmatch->pos[found].col == 0 + ? MAXCOL : start + posmatch->pos[found].len; + shl->lnum = lnum; shl->rm.startpos[0].lnum = 0; shl->rm.startpos[0].col = start; shl->rm.endpos[0].lnum = 0; shl->rm.endpos[0].col = end; - posmatch->cur = bot + 1; - return true; + shl->is_addpos = true; + posmatch->cur = found + 1; + return 1; } - return false; + return 0; } static void screen_start_highlight(int attr) @@ -6830,12 +6839,18 @@ void unshowmode(bool force) if (!redrawing() || (!force && char_avail() && !KeyTyped)) { redraw_cmdline = true; // delete mode later } else { + clearmode(); + } +} + +// Clear the mode message. +void clearmode(void) +{ msg_pos_mode(); if (Recording) { recording_mode(hl_attr(HLF_CM)); } msg_clr_eos(); - } } static void recording_mode(int attr) @@ -6885,16 +6900,17 @@ static void draw_tabline(void) /* Use the 'tabline' option if it's set. */ if (*p_tal != NUL) { - int save_called_emsg = called_emsg; + int saved_did_emsg = did_emsg; - /* Check for an error. If there is one we would loop in redrawing the - * screen. Avoid that by making 'tabline' empty. */ - called_emsg = FALSE; - win_redr_custom(NULL, FALSE); - if (called_emsg) + // Check for an error. If there is one we would loop in redrawing the + // screen. Avoid that by making 'tabline' empty. + did_emsg = false; + win_redr_custom(NULL, false); + if (did_emsg) { set_string_option_direct((char_u *)"tabline", -1, - (char_u *)"", OPT_FREE, SID_ERROR); - called_emsg |= save_called_emsg; + (char_u *)"", OPT_FREE, SID_ERROR); + } + did_emsg |= saved_did_emsg; } else { FOR_ALL_TABS(tp) { ++tabcount; diff --git a/src/nvim/search.c b/src/nvim/search.c index 5f4df3be92..1029190db4 100644 --- a/src/nvim/search.c +++ b/src/nvim/search.c @@ -4549,7 +4549,7 @@ exit_matched: } line_breakcheck(); if (action == ACTION_EXPAND) - ins_compl_check_keys(30); + ins_compl_check_keys(30, false); if (got_int || compl_interrupted) break; diff --git a/src/nvim/shada.c b/src/nvim/shada.c index 01c0807d82..d902079739 100644 --- a/src/nvim/shada.c +++ b/src/nvim/shada.c @@ -1575,7 +1575,9 @@ static char *shada_filename(const char *file) do { \ const String s_ = (s); \ msgpack_pack_bin(spacker, s_.size); \ - msgpack_pack_bin_body(spacker, s_.data, s_.size); \ + if (s_.size > 0) { \ + msgpack_pack_bin_body(spacker, s_.data, s_.size); \ + } \ } while (0) /// Write single ShaDa entry diff --git a/src/nvim/spell.c b/src/nvim/spell.c index ba7f31be25..7119ac6dc1 100644 --- a/src/nvim/spell.c +++ b/src/nvim/spell.c @@ -9266,9 +9266,7 @@ static void allcap_copy(char_u *word, char_u *wcopy) else c = *s++; - // We only change 0xdf to SS when we are certain latin1 is used. It - // would cause weird errors in other 8-bit encodings. - if (enc_latin1like && c == 0xdf) { + if (c == 0xdf) { c = 'S'; if (d - wcopy >= MAXWLEN - 1) break; @@ -12602,7 +12600,7 @@ static int spell_edit_score(slang_T *slang, char_u *badword, char_u *goodword) char_u *p; int wbadword[MAXWLEN]; int wgoodword[MAXWLEN]; - const int l_has_mbyte = has_mbyte; + const bool l_has_mbyte = has_mbyte; if (l_has_mbyte) { // Get the characters from the multi-byte strings and put them in an @@ -13162,7 +13160,7 @@ spell_dump_compl ( // Done all bytes at this node, go up one level. --depth; line_breakcheck(); - ins_compl_check_keys(50); + ins_compl_check_keys(50, false); } else { // Do one more byte at this node. n = arridx[depth] + curi[depth]; diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index b49ae9da21..aded08faee 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -392,7 +392,9 @@ void syntax_start(win_T *wp, linenr_T lnum) * Also do this when a change was made, the current state may be invalid * then. */ - if (syn_block != wp->w_s || changedtick != syn_buf->b_changedtick) { + if (syn_block != wp->w_s + || syn_buf != wp->w_buffer + || changedtick != syn_buf->b_changedtick) { invalidate_current_state(); syn_buf = wp->w_buffer; syn_block = wp->w_s; @@ -5902,6 +5904,7 @@ static char *highlight_init_both[] = "WildMenu ctermbg=Yellow ctermfg=Black guibg=Yellow guifg=Black", "default link EndOfBuffer NonText", "default link QuickFixLine Search", + "default link Substitute Search", NULL }; @@ -7159,16 +7162,13 @@ int syn_namen2id(char_u *linep, int len) */ int syn_check_group(char_u *pp, int len) { - int id; - char_u *name; - - name = vim_strnsave(pp, len); - - id = syn_name2id(name); - if (id == 0) /* doesn't exist yet */ + char_u *name = vim_strnsave(pp, len); + int id = syn_name2id(name); + if (id == 0) { // doesn't exist yet id = syn_add_group(name); - else + } else { xfree(name); + } return id; } @@ -7547,175 +7547,687 @@ char_u *get_highlight_name(expand_T *xp, int idx) } color_name_table_T color_name_table[] = { - // Color names taken from - // http://www.rapidtables.com/web/color/RGB_Color.htm - {"Maroon", RGB(0x80, 0x00, 0x00)}, - {"DarkRed", RGB(0x8b, 0x00, 0x00)}, - {"Brown", RGB(0xa5, 0x2a, 0x2a)}, - {"Firebrick", RGB(0xb2, 0x22, 0x22)}, - {"Crimson", RGB(0xdc, 0x14, 0x3c)}, - {"Red", RGB(0xff, 0x00, 0x00)}, - {"Tomato", RGB(0xff, 0x63, 0x47)}, - {"Coral", RGB(0xff, 0x7f, 0x50)}, - {"IndianRed", RGB(0xcd, 0x5c, 0x5c)}, - {"LightCoral", RGB(0xf0, 0x80, 0x80)}, - {"DarkSalmon", RGB(0xe9, 0x96, 0x7a)}, - {"Salmon", RGB(0xfa, 0x80, 0x72)}, - {"LightSalmon", RGB(0xff, 0xa0, 0x7a)}, - {"OrangeRed", RGB(0xff, 0x45, 0x00)}, - {"DarkOrange", RGB(0xff, 0x8c, 0x00)}, - {"Orange", RGB(0xff, 0xa5, 0x00)}, - {"Gold", RGB(0xff, 0xd7, 0x00)}, - {"DarkGoldenRod", RGB(0xb8, 0x86, 0x0b)}, - {"GoldenRod", RGB(0xda, 0xa5, 0x20)}, - {"PaleGoldenRod", RGB(0xee, 0xe8, 0xaa)}, - {"DarkKhaki", RGB(0xbd, 0xb7, 0x6b)}, - {"Khaki", RGB(0xf0, 0xe6, 0x8c)}, - {"Olive", RGB(0x80, 0x80, 0x00)}, - {"Yellow", RGB(0xff, 0xff, 0x00)}, - {"YellowGreen", RGB(0x9a, 0xcd, 0x32)}, - {"DarkOliveGreen", RGB(0x55, 0x6b, 0x2f)}, - {"OliveDrab", RGB(0x6b, 0x8e, 0x23)}, - {"LawnGreen", RGB(0x7c, 0xfc, 0x00)}, - {"ChartReuse", RGB(0x7f, 0xff, 0x00)}, - {"GreenYellow", RGB(0xad, 0xff, 0x2f)}, - {"DarkGreen", RGB(0x00, 0x64, 0x00)}, - {"Green", RGB(0x00, 0x80, 0x00)}, - {"ForestGreen", RGB(0x22, 0x8b, 0x22)}, - {"Lime", RGB(0x00, 0xff, 0x00)}, - {"LimeGreen", RGB(0x32, 0xcd, 0x32)}, - {"LightGreen", RGB(0x90, 0xee, 0x90)}, - {"PaleGreen", RGB(0x98, 0xfb, 0x98)}, - {"DarkSeaGreen", RGB(0x8f, 0xbc, 0x8f)}, - {"MediumSpringGreen", RGB(0x00, 0xfa, 0x9a)}, - {"SpringGreen", RGB(0x00, 0xff, 0x7f)}, - {"SeaGreen", RGB(0x2e, 0x8b, 0x57)}, - {"MediumAquamarine", RGB(0x66, 0xcd, 0xaa)}, - {"MediumSeaGreen", RGB(0x3c, 0xb3, 0x71)}, - {"LightSeaGreen", RGB(0x20, 0xb2, 0xaa)}, - {"DarkSlateGray", RGB(0x2f, 0x4f, 0x4f)}, - {"Teal", RGB(0x00, 0x80, 0x80)}, - {"DarkCyan", RGB(0x00, 0x8b, 0x8b)}, - {"Aqua", RGB(0x00, 0xff, 0xff)}, - {"Cyan", RGB(0x00, 0xff, 0xff)}, - {"LightCyan", RGB(0xe0, 0xff, 0xff)}, - {"DarkTurquoise", RGB(0x00, 0xce, 0xd1)}, - {"Turquoise", RGB(0x40, 0xe0, 0xd0)}, - {"MediumTurquoise", RGB(0x48, 0xd1, 0xcc)}, - {"PaleTurquoise", RGB(0xaf, 0xee, 0xee)}, - {"Aquamarine", RGB(0x7f, 0xff, 0xd4)}, - {"PowderBlue", RGB(0xb0, 0xe0, 0xe6)}, - {"CadetBlue", RGB(0x5f, 0x9e, 0xa0)}, - {"SteelBlue", RGB(0x46, 0x82, 0xb4)}, - {"CornFlowerBlue", RGB(0x64, 0x95, 0xed)}, - {"DeepSkyBlue", RGB(0x00, 0xbf, 0xff)}, - {"DodgerBlue", RGB(0x1e, 0x90, 0xff)}, - {"LightBlue", RGB(0xad, 0xd8, 0xe6)}, - {"SkyBlue", RGB(0x87, 0xce, 0xeb)}, - {"LightSkyBlue", RGB(0x87, 0xce, 0xfa)}, - {"MidnightBlue", RGB(0x19, 0x19, 0x70)}, - {"Navy", RGB(0x00, 0x00, 0x80)}, - {"DarkBlue", RGB(0x00, 0x00, 0x8b)}, - {"MediumBlue", RGB(0x00, 0x00, 0xcd)}, - {"Blue", RGB(0x00, 0x00, 0xff)}, - {"RoyalBlue", RGB(0x41, 0x69, 0xe1)}, - {"BlueViolet", RGB(0x8a, 0x2b, 0xe2)}, - {"Indigo", RGB(0x4b, 0x00, 0x82)}, - {"DarkSlateBlue", RGB(0x48, 0x3d, 0x8b)}, - {"SlateBlue", RGB(0x6a, 0x5a, 0xcd)}, - {"MediumSlateBlue", RGB(0x7b, 0x68, 0xee)}, - {"MediumPurple", RGB(0x93, 0x70, 0xdb)}, - {"DarkMagenta", RGB(0x8b, 0x00, 0x8b)}, - {"DarkViolet", RGB(0x94, 0x00, 0xd3)}, - {"DarkOrchid", RGB(0x99, 0x32, 0xcc)}, - {"MediumOrchid", RGB(0xba, 0x55, 0xd3)}, - {"Purple", RGB(0x80, 0x00, 0x80)}, - {"Thistle", RGB(0xd8, 0xbf, 0xd8)}, - {"Plum", RGB(0xdd, 0xa0, 0xdd)}, - {"Violet", RGB(0xee, 0x82, 0xee)}, - {"Magenta", RGB(0xff, 0x00, 0xff)}, - {"Fuchsia", RGB(0xff, 0x00, 0xff)}, - {"Orchid", RGB(0xda, 0x70, 0xd6)}, - {"MediumVioletRed", RGB(0xc7, 0x15, 0x85)}, - {"PaleVioletRed", RGB(0xdb, 0x70, 0x93)}, - {"DeepPink", RGB(0xff, 0x14, 0x93)}, - {"HotPink", RGB(0xff, 0x69, 0xb4)}, - {"LightPink", RGB(0xff, 0xb6, 0xc1)}, - {"Pink", RGB(0xff, 0xc0, 0xcb)}, - {"AntiqueWhite", RGB(0xfa, 0xeb, 0xd7)}, - {"Beige", RGB(0xf5, 0xf5, 0xdc)}, - {"Bisque", RGB(0xff, 0xe4, 0xc4)}, - {"BlanchedAlmond", RGB(0xff, 0xeb, 0xcd)}, - {"Wheat", RGB(0xf5, 0xde, 0xb3)}, - {"Cornsilk", RGB(0xff, 0xf8, 0xdc)}, - {"LemonChiffon", RGB(0xff, 0xfa, 0xcd)}, - {"LightGoldenRodYellow", RGB(0xfa, 0xfa, 0xd2)}, - {"LightYellow", RGB(0xff, 0xff, 0xe0)}, - {"SaddleBrown", RGB(0x8b, 0x45, 0x13)}, - {"Sienna", RGB(0xa0, 0x52, 0x2d)}, - {"Chocolate", RGB(0xd2, 0x69, 0x1e)}, - {"Peru", RGB(0xcd, 0x85, 0x3f)}, - {"SandyBrown", RGB(0xf4, 0xa4, 0x60)}, - {"BurlyWood", RGB(0xde, 0xb8, 0x87)}, - {"Tan", RGB(0xd2, 0xb4, 0x8c)}, - {"RosyBrown", RGB(0xbc, 0x8f, 0x8f)}, - {"Moccasin", RGB(0xff, 0xe4, 0xb5)}, - {"NavajoWhite", RGB(0xff, 0xde, 0xad)}, - {"PeachPuff", RGB(0xff, 0xda, 0xb9)}, - {"MistyRose", RGB(0xff, 0xe4, 0xe1)}, - {"LavenderBlush", RGB(0xff, 0xf0, 0xf5)}, - {"Linen", RGB(0xfa, 0xf0, 0xe6)}, - {"Oldlace", RGB(0xfd, 0xf5, 0xe6)}, - {"PapayaWhip", RGB(0xff, 0xef, 0xd5)}, - {"SeaShell", RGB(0xff, 0xf5, 0xee)}, - {"MintCream", RGB(0xf5, 0xff, 0xfa)}, - {"SlateGray", RGB(0x70, 0x80, 0x90)}, - {"LightSlateGray", RGB(0x77, 0x88, 0x99)}, - {"LightSteelBlue", RGB(0xb0, 0xc4, 0xde)}, - {"Lavender", RGB(0xe6, 0xe6, 0xfa)}, - {"FloralWhite", RGB(0xff, 0xfa, 0xf0)}, - {"AliceBlue", RGB(0xf0, 0xf8, 0xff)}, - {"GhostWhite", RGB(0xf8, 0xf8, 0xff)}, - {"Honeydew", RGB(0xf0, 0xff, 0xf0)}, - {"Ivory", RGB(0xff, 0xff, 0xf0)}, - {"Azure", RGB(0xf0, 0xff, 0xff)}, - {"Snow", RGB(0xff, 0xfa, 0xfa)}, - {"Black", RGB(0x00, 0x00, 0x00)}, - {"DimGray", RGB(0x69, 0x69, 0x69)}, - {"DimGrey", RGB(0x69, 0x69, 0x69)}, - {"Gray", RGB(0x80, 0x80, 0x80)}, - {"Grey", RGB(0x80, 0x80, 0x80)}, - {"DarkGray", RGB(0xa9, 0xa9, 0xa9)}, - {"DarkGrey", RGB(0xa9, 0xa9, 0xa9)}, - {"Silver", RGB(0xc0, 0xc0, 0xc0)}, - {"LightGray", RGB(0xd3, 0xd3, 0xd3)}, - {"LightGrey", RGB(0xd3, 0xd3, 0xd3)}, - {"Gainsboro", RGB(0xdc, 0xdc, 0xdc)}, - {"WhiteSmoke", RGB(0xf5, 0xf5, 0xf5)}, - {"White", RGB(0xff, 0xff, 0xff)}, - // The color names below were taken from gui_x11.c in vim source - {"LightRed", RGB(0xff, 0xbb, 0xbb)}, - {"LightMagenta",RGB(0xff, 0xbb, 0xff)}, - {"DarkYellow", RGB(0xbb, 0xbb, 0x00)}, - {"Gray10", RGB(0x1a, 0x1a, 0x1a)}, - {"Grey10", RGB(0x1a, 0x1a, 0x1a)}, - {"Gray20", RGB(0x33, 0x33, 0x33)}, - {"Grey20", RGB(0x33, 0x33, 0x33)}, - {"Gray30", RGB(0x4d, 0x4d, 0x4d)}, - {"Grey30", RGB(0x4d, 0x4d, 0x4d)}, - {"Gray40", RGB(0x66, 0x66, 0x66)}, - {"Grey40", RGB(0x66, 0x66, 0x66)}, - {"Gray50", RGB(0x7f, 0x7f, 0x7f)}, - {"Grey50", RGB(0x7f, 0x7f, 0x7f)}, - {"Gray60", RGB(0x99, 0x99, 0x99)}, - {"Grey60", RGB(0x99, 0x99, 0x99)}, - {"Gray70", RGB(0xb3, 0xb3, 0xb3)}, - {"Grey70", RGB(0xb3, 0xb3, 0xb3)}, - {"Gray80", RGB(0xcc, 0xcc, 0xcc)}, - {"Grey80", RGB(0xcc, 0xcc, 0xcc)}, - {"Gray90", RGB(0xe5, 0xe5, 0xe5)}, - {"Grey90", RGB(0xe5, 0xe5, 0xe5)}, - {NULL, 0}, + // Colors from rgb.txt + { "AliceBlue", RGB(0xf0, 0xf8, 0xff) }, + { "AntiqueWhite", RGB(0xfa, 0xeb, 0xd7) }, + { "AntiqueWhite1", RGB(0xff, 0xef, 0xdb) }, + { "AntiqueWhite2", RGB(0xee, 0xdf, 0xcc) }, + { "AntiqueWhite3", RGB(0xcd, 0xc0, 0xb0) }, + { "AntiqueWhite4", RGB(0x8b, 0x83, 0x78) }, + { "Aqua", RGB(0x00, 0xff, 0xff) }, + { "Aquamarine", RGB(0x7f, 0xff, 0xd4) }, + { "Aquamarine1", RGB(0x7f, 0xff, 0xd4) }, + { "Aquamarine2", RGB(0x76, 0xee, 0xc6) }, + { "Aquamarine3", RGB(0x66, 0xcd, 0xaa) }, + { "Aquamarine4", RGB(0x45, 0x8b, 0x74) }, + { "Azure", RGB(0xf0, 0xff, 0xff) }, + { "Azure1", RGB(0xf0, 0xff, 0xff) }, + { "Azure2", RGB(0xe0, 0xee, 0xee) }, + { "Azure3", RGB(0xc1, 0xcd, 0xcd) }, + { "Azure4", RGB(0x83, 0x8b, 0x8b) }, + { "Beige", RGB(0xf5, 0xf5, 0xdc) }, + { "Bisque", RGB(0xff, 0xe4, 0xc4) }, + { "Bisque1", RGB(0xff, 0xe4, 0xc4) }, + { "Bisque2", RGB(0xee, 0xd5, 0xb7) }, + { "Bisque3", RGB(0xcd, 0xb7, 0x9e) }, + { "Bisque4", RGB(0x8b, 0x7d, 0x6b) }, + { "Black", RGB(0x00, 0x00, 0x00) }, + { "BlanchedAlmond", RGB(0xff, 0xeb, 0xcd) }, + { "Blue", RGB(0x00, 0x00, 0xff) }, + { "Blue1", RGB(0x0, 0x0, 0xff) }, + { "Blue2", RGB(0x0, 0x0, 0xee) }, + { "Blue3", RGB(0x0, 0x0, 0xcd) }, + { "Blue4", RGB(0x0, 0x0, 0x8b) }, + { "BlueViolet", RGB(0x8a, 0x2b, 0xe2) }, + { "Brown", RGB(0xa5, 0x2a, 0x2a) }, + { "Brown1", RGB(0xff, 0x40, 0x40) }, + { "Brown2", RGB(0xee, 0x3b, 0x3b) }, + { "Brown3", RGB(0xcd, 0x33, 0x33) }, + { "Brown4", RGB(0x8b, 0x23, 0x23) }, + { "BurlyWood", RGB(0xde, 0xb8, 0x87) }, + { "Burlywood1", RGB(0xff, 0xd3, 0x9b) }, + { "Burlywood2", RGB(0xee, 0xc5, 0x91) }, + { "Burlywood3", RGB(0xcd, 0xaa, 0x7d) }, + { "Burlywood4", RGB(0x8b, 0x73, 0x55) }, + { "CadetBlue", RGB(0x5f, 0x9e, 0xa0) }, + { "CadetBlue1", RGB(0x98, 0xf5, 0xff) }, + { "CadetBlue2", RGB(0x8e, 0xe5, 0xee) }, + { "CadetBlue3", RGB(0x7a, 0xc5, 0xcd) }, + { "CadetBlue4", RGB(0x53, 0x86, 0x8b) }, + { "ChartReuse", RGB(0x7f, 0xff, 0x00) }, + { "Chartreuse1", RGB(0x7f, 0xff, 0x0) }, + { "Chartreuse2", RGB(0x76, 0xee, 0x0) }, + { "Chartreuse3", RGB(0x66, 0xcd, 0x0) }, + { "Chartreuse4", RGB(0x45, 0x8b, 0x0) }, + { "Chocolate", RGB(0xd2, 0x69, 0x1e) }, + { "Chocolate1", RGB(0xff, 0x7f, 0x24) }, + { "Chocolate2", RGB(0xee, 0x76, 0x21) }, + { "Chocolate3", RGB(0xcd, 0x66, 0x1d) }, + { "Chocolate4", RGB(0x8b, 0x45, 0x13) }, + { "Coral", RGB(0xff, 0x7f, 0x50) }, + { "Coral1", RGB(0xff, 0x72, 0x56) }, + { "Coral2", RGB(0xee, 0x6a, 0x50) }, + { "Coral3", RGB(0xcd, 0x5b, 0x45) }, + { "Coral4", RGB(0x8b, 0x3e, 0x2f) }, + { "CornFlowerBlue", RGB(0x64, 0x95, 0xed) }, + { "Cornsilk", RGB(0xff, 0xf8, 0xdc) }, + { "Cornsilk1", RGB(0xff, 0xf8, 0xdc) }, + { "Cornsilk2", RGB(0xee, 0xe8, 0xcd) }, + { "Cornsilk3", RGB(0xcd, 0xc8, 0xb1) }, + { "Cornsilk4", RGB(0x8b, 0x88, 0x78) }, + { "Crimson", RGB(0xdc, 0x14, 0x3c) }, + { "Cyan", RGB(0x00, 0xff, 0xff) }, + { "Cyan1", RGB(0x0, 0xff, 0xff) }, + { "Cyan2", RGB(0x0, 0xee, 0xee) }, + { "Cyan3", RGB(0x0, 0xcd, 0xcd) }, + { "Cyan4", RGB(0x0, 0x8b, 0x8b) }, + { "DarkBlue", RGB(0x00, 0x00, 0x8b) }, + { "DarkCyan", RGB(0x00, 0x8b, 0x8b) }, + { "DarkGoldenRod", RGB(0xb8, 0x86, 0x0b) }, + { "DarkGoldenrod1", RGB(0xff, 0xb9, 0xf) }, + { "DarkGoldenrod2", RGB(0xee, 0xad, 0xe) }, + { "DarkGoldenrod3", RGB(0xcd, 0x95, 0xc) }, + { "DarkGoldenrod4", RGB(0x8b, 0x65, 0x8) }, + { "DarkGray", RGB(0xa9, 0xa9, 0xa9) }, + { "DarkGreen", RGB(0x00, 0x64, 0x00) }, + { "DarkGrey", RGB(0xa9, 0xa9, 0xa9) }, + { "DarkKhaki", RGB(0xbd, 0xb7, 0x6b) }, + { "DarkMagenta", RGB(0x8b, 0x00, 0x8b) }, + { "DarkOliveGreen", RGB(0x55, 0x6b, 0x2f) }, + { "DarkOliveGreen1", RGB(0xca, 0xff, 0x70) }, + { "DarkOliveGreen2", RGB(0xbc, 0xee, 0x68) }, + { "DarkOliveGreen3", RGB(0xa2, 0xcd, 0x5a) }, + { "DarkOliveGreen4", RGB(0x6e, 0x8b, 0x3d) }, + { "DarkOrange", RGB(0xff, 0x8c, 0x00) }, + { "DarkOrange1", RGB(0xff, 0x7f, 0x0) }, + { "DarkOrange2", RGB(0xee, 0x76, 0x0) }, + { "DarkOrange3", RGB(0xcd, 0x66, 0x0) }, + { "DarkOrange4", RGB(0x8b, 0x45, 0x0) }, + { "DarkOrchid", RGB(0x99, 0x32, 0xcc) }, + { "DarkOrchid1", RGB(0xbf, 0x3e, 0xff) }, + { "DarkOrchid2", RGB(0xb2, 0x3a, 0xee) }, + { "DarkOrchid3", RGB(0x9a, 0x32, 0xcd) }, + { "DarkOrchid4", RGB(0x68, 0x22, 0x8b) }, + { "DarkRed", RGB(0x8b, 0x00, 0x00) }, + { "DarkSalmon", RGB(0xe9, 0x96, 0x7a) }, + { "DarkSeaGreen", RGB(0x8f, 0xbc, 0x8f) }, + { "DarkSeaGreen1", RGB(0xc1, 0xff, 0xc1) }, + { "DarkSeaGreen2", RGB(0xb4, 0xee, 0xb4) }, + { "DarkSeaGreen3", RGB(0x9b, 0xcd, 0x9b) }, + { "DarkSeaGreen4", RGB(0x69, 0x8b, 0x69) }, + { "DarkSlateBlue", RGB(0x48, 0x3d, 0x8b) }, + { "DarkSlateGray", RGB(0x2f, 0x4f, 0x4f) }, + { "DarkSlateGray1", RGB(0x97, 0xff, 0xff) }, + { "DarkSlateGray2", RGB(0x8d, 0xee, 0xee) }, + { "DarkSlateGray3", RGB(0x79, 0xcd, 0xcd) }, + { "DarkSlateGray4", RGB(0x52, 0x8b, 0x8b) }, + { "DarkSlateGrey", RGB(0x2f, 0x4f, 0x4f) }, + { "DarkTurquoise", RGB(0x00, 0xce, 0xd1) }, + { "DarkViolet", RGB(0x94, 0x00, 0xd3) }, + { "DarkYellow", RGB(0xbb, 0xbb, 0x00) }, + { "DeepPink", RGB(0xff, 0x14, 0x93) }, + { "DeepPink1", RGB(0xff, 0x14, 0x93) }, + { "DeepPink2", RGB(0xee, 0x12, 0x89) }, + { "DeepPink3", RGB(0xcd, 0x10, 0x76) }, + { "DeepPink4", RGB(0x8b, 0xa, 0x50) }, + { "DeepSkyBlue", RGB(0x00, 0xbf, 0xff) }, + { "DeepSkyBlue1", RGB(0x0, 0xbf, 0xff) }, + { "DeepSkyBlue2", RGB(0x0, 0xb2, 0xee) }, + { "DeepSkyBlue3", RGB(0x0, 0x9a, 0xcd) }, + { "DeepSkyBlue4", RGB(0x0, 0x68, 0x8b) }, + { "DimGray", RGB(0x69, 0x69, 0x69) }, + { "DimGrey", RGB(0x69, 0x69, 0x69) }, + { "DodgerBlue", RGB(0x1e, 0x90, 0xff) }, + { "DodgerBlue1", RGB(0x1e, 0x90, 0xff) }, + { "DodgerBlue2", RGB(0x1c, 0x86, 0xee) }, + { "DodgerBlue3", RGB(0x18, 0x74, 0xcd) }, + { "DodgerBlue4", RGB(0x10, 0x4e, 0x8b) }, + { "Firebrick", RGB(0xb2, 0x22, 0x22) }, + { "Firebrick1", RGB(0xff, 0x30, 0x30) }, + { "Firebrick2", RGB(0xee, 0x2c, 0x2c) }, + { "Firebrick3", RGB(0xcd, 0x26, 0x26) }, + { "Firebrick4", RGB(0x8b, 0x1a, 0x1a) }, + { "FloralWhite", RGB(0xff, 0xfa, 0xf0) }, + { "ForestGreen", RGB(0x22, 0x8b, 0x22) }, + { "Fuchsia", RGB(0xff, 0x00, 0xff) }, + { "Gainsboro", RGB(0xdc, 0xdc, 0xdc) }, + { "GhostWhite", RGB(0xf8, 0xf8, 0xff) }, + { "Gold", RGB(0xff, 0xd7, 0x00) }, + { "Gold1", RGB(0xff, 0xd7, 0x0) }, + { "Gold2", RGB(0xee, 0xc9, 0x0) }, + { "Gold3", RGB(0xcd, 0xad, 0x0) }, + { "Gold4", RGB(0x8b, 0x75, 0x0) }, + { "GoldenRod", RGB(0xda, 0xa5, 0x20) }, + { "Goldenrod1", RGB(0xff, 0xc1, 0x25) }, + { "Goldenrod2", RGB(0xee, 0xb4, 0x22) }, + { "Goldenrod3", RGB(0xcd, 0x9b, 0x1d) }, + { "Goldenrod4", RGB(0x8b, 0x69, 0x14) }, + { "Gray", RGB(0x80, 0x80, 0x80) }, + { "Gray0", RGB(0x0, 0x0, 0x0) }, + { "Gray1", RGB(0x3, 0x3, 0x3) }, + { "Gray10", RGB(0x1a, 0x1a, 0x1a) }, + { "Gray100", RGB(0xff, 0xff, 0xff) }, + { "Gray11", RGB(0x1c, 0x1c, 0x1c) }, + { "Gray12", RGB(0x1f, 0x1f, 0x1f) }, + { "Gray13", RGB(0x21, 0x21, 0x21) }, + { "Gray14", RGB(0x24, 0x24, 0x24) }, + { "Gray15", RGB(0x26, 0x26, 0x26) }, + { "Gray16", RGB(0x29, 0x29, 0x29) }, + { "Gray17", RGB(0x2b, 0x2b, 0x2b) }, + { "Gray18", RGB(0x2e, 0x2e, 0x2e) }, + { "Gray19", RGB(0x30, 0x30, 0x30) }, + { "Gray2", RGB(0x5, 0x5, 0x5) }, + { "Gray20", RGB(0x33, 0x33, 0x33) }, + { "Gray21", RGB(0x36, 0x36, 0x36) }, + { "Gray22", RGB(0x38, 0x38, 0x38) }, + { "Gray23", RGB(0x3b, 0x3b, 0x3b) }, + { "Gray24", RGB(0x3d, 0x3d, 0x3d) }, + { "Gray25", RGB(0x40, 0x40, 0x40) }, + { "Gray26", RGB(0x42, 0x42, 0x42) }, + { "Gray27", RGB(0x45, 0x45, 0x45) }, + { "Gray28", RGB(0x47, 0x47, 0x47) }, + { "Gray29", RGB(0x4a, 0x4a, 0x4a) }, + { "Gray3", RGB(0x8, 0x8, 0x8) }, + { "Gray30", RGB(0x4d, 0x4d, 0x4d) }, + { "Gray31", RGB(0x4f, 0x4f, 0x4f) }, + { "Gray32", RGB(0x52, 0x52, 0x52) }, + { "Gray33", RGB(0x54, 0x54, 0x54) }, + { "Gray34", RGB(0x57, 0x57, 0x57) }, + { "Gray35", RGB(0x59, 0x59, 0x59) }, + { "Gray36", RGB(0x5c, 0x5c, 0x5c) }, + { "Gray37", RGB(0x5e, 0x5e, 0x5e) }, + { "Gray38", RGB(0x61, 0x61, 0x61) }, + { "Gray39", RGB(0x63, 0x63, 0x63) }, + { "Gray4", RGB(0xa, 0xa, 0xa) }, + { "Gray40", RGB(0x66, 0x66, 0x66) }, + { "Gray41", RGB(0x69, 0x69, 0x69) }, + { "Gray42", RGB(0x6b, 0x6b, 0x6b) }, + { "Gray43", RGB(0x6e, 0x6e, 0x6e) }, + { "Gray44", RGB(0x70, 0x70, 0x70) }, + { "Gray45", RGB(0x73, 0x73, 0x73) }, + { "Gray46", RGB(0x75, 0x75, 0x75) }, + { "Gray47", RGB(0x78, 0x78, 0x78) }, + { "Gray48", RGB(0x7a, 0x7a, 0x7a) }, + { "Gray49", RGB(0x7d, 0x7d, 0x7d) }, + { "Gray5", RGB(0xd, 0xd, 0xd) }, + { "Gray50", RGB(0x7f, 0x7f, 0x7f) }, + { "Gray51", RGB(0x82, 0x82, 0x82) }, + { "Gray52", RGB(0x85, 0x85, 0x85) }, + { "Gray53", RGB(0x87, 0x87, 0x87) }, + { "Gray54", RGB(0x8a, 0x8a, 0x8a) }, + { "Gray55", RGB(0x8c, 0x8c, 0x8c) }, + { "Gray56", RGB(0x8f, 0x8f, 0x8f) }, + { "Gray57", RGB(0x91, 0x91, 0x91) }, + { "Gray58", RGB(0x94, 0x94, 0x94) }, + { "Gray59", RGB(0x96, 0x96, 0x96) }, + { "Gray6", RGB(0xf, 0xf, 0xf) }, + { "Gray60", RGB(0x99, 0x99, 0x99) }, + { "Gray61", RGB(0x9c, 0x9c, 0x9c) }, + { "Gray62", RGB(0x9e, 0x9e, 0x9e) }, + { "Gray63", RGB(0xa1, 0xa1, 0xa1) }, + { "Gray64", RGB(0xa3, 0xa3, 0xa3) }, + { "Gray65", RGB(0xa6, 0xa6, 0xa6) }, + { "Gray66", RGB(0xa8, 0xa8, 0xa8) }, + { "Gray67", RGB(0xab, 0xab, 0xab) }, + { "Gray68", RGB(0xad, 0xad, 0xad) }, + { "Gray69", RGB(0xb0, 0xb0, 0xb0) }, + { "Gray7", RGB(0x12, 0x12, 0x12) }, + { "Gray70", RGB(0xb3, 0xb3, 0xb3) }, + { "Gray71", RGB(0xb5, 0xb5, 0xb5) }, + { "Gray72", RGB(0xb8, 0xb8, 0xb8) }, + { "Gray73", RGB(0xba, 0xba, 0xba) }, + { "Gray74", RGB(0xbd, 0xbd, 0xbd) }, + { "Gray75", RGB(0xbf, 0xbf, 0xbf) }, + { "Gray76", RGB(0xc2, 0xc2, 0xc2) }, + { "Gray77", RGB(0xc4, 0xc4, 0xc4) }, + { "Gray78", RGB(0xc7, 0xc7, 0xc7) }, + { "Gray79", RGB(0xc9, 0xc9, 0xc9) }, + { "Gray8", RGB(0x14, 0x14, 0x14) }, + { "Gray80", RGB(0xcc, 0xcc, 0xcc) }, + { "Gray81", RGB(0xcf, 0xcf, 0xcf) }, + { "Gray82", RGB(0xd1, 0xd1, 0xd1) }, + { "Gray83", RGB(0xd4, 0xd4, 0xd4) }, + { "Gray84", RGB(0xd6, 0xd6, 0xd6) }, + { "Gray85", RGB(0xd9, 0xd9, 0xd9) }, + { "Gray86", RGB(0xdb, 0xdb, 0xdb) }, + { "Gray87", RGB(0xde, 0xde, 0xde) }, + { "Gray88", RGB(0xe0, 0xe0, 0xe0) }, + { "Gray89", RGB(0xe3, 0xe3, 0xe3) }, + { "Gray9", RGB(0x17, 0x17, 0x17) }, + { "Gray90", RGB(0xe5, 0xe5, 0xe5) }, + { "Gray91", RGB(0xe8, 0xe8, 0xe8) }, + { "Gray92", RGB(0xeb, 0xeb, 0xeb) }, + { "Gray93", RGB(0xed, 0xed, 0xed) }, + { "Gray94", RGB(0xf0, 0xf0, 0xf0) }, + { "Gray95", RGB(0xf2, 0xf2, 0xf2) }, + { "Gray96", RGB(0xf5, 0xf5, 0xf5) }, + { "Gray97", RGB(0xf7, 0xf7, 0xf7) }, + { "Gray98", RGB(0xfa, 0xfa, 0xfa) }, + { "Gray99", RGB(0xfc, 0xfc, 0xfc) }, + { "Green", RGB(0x00, 0x80, 0x00) }, + { "Green1", RGB(0x0, 0xff, 0x0) }, + { "Green2", RGB(0x0, 0xee, 0x0) }, + { "Green3", RGB(0x0, 0xcd, 0x0) }, + { "Green4", RGB(0x0, 0x8b, 0x0) }, + { "GreenYellow", RGB(0xad, 0xff, 0x2f) }, + { "Grey", RGB(0x80, 0x80, 0x80) }, + { "Grey0", RGB(0x0, 0x0, 0x0) }, + { "Grey1", RGB(0x3, 0x3, 0x3) }, + { "Grey10", RGB(0x1a, 0x1a, 0x1a) }, + { "Grey100", RGB(0xff, 0xff, 0xff) }, + { "Grey11", RGB(0x1c, 0x1c, 0x1c) }, + { "Grey12", RGB(0x1f, 0x1f, 0x1f) }, + { "Grey13", RGB(0x21, 0x21, 0x21) }, + { "Grey14", RGB(0x24, 0x24, 0x24) }, + { "Grey15", RGB(0x26, 0x26, 0x26) }, + { "Grey16", RGB(0x29, 0x29, 0x29) }, + { "Grey17", RGB(0x2b, 0x2b, 0x2b) }, + { "Grey18", RGB(0x2e, 0x2e, 0x2e) }, + { "Grey19", RGB(0x30, 0x30, 0x30) }, + { "Grey2", RGB(0x5, 0x5, 0x5) }, + { "Grey20", RGB(0x33, 0x33, 0x33) }, + { "Grey21", RGB(0x36, 0x36, 0x36) }, + { "Grey22", RGB(0x38, 0x38, 0x38) }, + { "Grey23", RGB(0x3b, 0x3b, 0x3b) }, + { "Grey24", RGB(0x3d, 0x3d, 0x3d) }, + { "Grey25", RGB(0x40, 0x40, 0x40) }, + { "Grey26", RGB(0x42, 0x42, 0x42) }, + { "Grey27", RGB(0x45, 0x45, 0x45) }, + { "Grey28", RGB(0x47, 0x47, 0x47) }, + { "Grey29", RGB(0x4a, 0x4a, 0x4a) }, + { "Grey3", RGB(0x8, 0x8, 0x8) }, + { "Grey30", RGB(0x4d, 0x4d, 0x4d) }, + { "Grey31", RGB(0x4f, 0x4f, 0x4f) }, + { "Grey32", RGB(0x52, 0x52, 0x52) }, + { "Grey33", RGB(0x54, 0x54, 0x54) }, + { "Grey34", RGB(0x57, 0x57, 0x57) }, + { "Grey35", RGB(0x59, 0x59, 0x59) }, + { "Grey36", RGB(0x5c, 0x5c, 0x5c) }, + { "Grey37", RGB(0x5e, 0x5e, 0x5e) }, + { "Grey38", RGB(0x61, 0x61, 0x61) }, + { "Grey39", RGB(0x63, 0x63, 0x63) }, + { "Grey4", RGB(0xa, 0xa, 0xa) }, + { "Grey40", RGB(0x66, 0x66, 0x66) }, + { "Grey41", RGB(0x69, 0x69, 0x69) }, + { "Grey42", RGB(0x6b, 0x6b, 0x6b) }, + { "Grey43", RGB(0x6e, 0x6e, 0x6e) }, + { "Grey44", RGB(0x70, 0x70, 0x70) }, + { "Grey45", RGB(0x73, 0x73, 0x73) }, + { "Grey46", RGB(0x75, 0x75, 0x75) }, + { "Grey47", RGB(0x78, 0x78, 0x78) }, + { "Grey48", RGB(0x7a, 0x7a, 0x7a) }, + { "Grey49", RGB(0x7d, 0x7d, 0x7d) }, + { "Grey5", RGB(0xd, 0xd, 0xd) }, + { "Grey50", RGB(0x7f, 0x7f, 0x7f) }, + { "Grey51", RGB(0x82, 0x82, 0x82) }, + { "Grey52", RGB(0x85, 0x85, 0x85) }, + { "Grey53", RGB(0x87, 0x87, 0x87) }, + { "Grey54", RGB(0x8a, 0x8a, 0x8a) }, + { "Grey55", RGB(0x8c, 0x8c, 0x8c) }, + { "Grey56", RGB(0x8f, 0x8f, 0x8f) }, + { "Grey57", RGB(0x91, 0x91, 0x91) }, + { "Grey58", RGB(0x94, 0x94, 0x94) }, + { "Grey59", RGB(0x96, 0x96, 0x96) }, + { "Grey6", RGB(0xf, 0xf, 0xf) }, + { "Grey60", RGB(0x99, 0x99, 0x99) }, + { "Grey61", RGB(0x9c, 0x9c, 0x9c) }, + { "Grey62", RGB(0x9e, 0x9e, 0x9e) }, + { "Grey63", RGB(0xa1, 0xa1, 0xa1) }, + { "Grey64", RGB(0xa3, 0xa3, 0xa3) }, + { "Grey65", RGB(0xa6, 0xa6, 0xa6) }, + { "Grey66", RGB(0xa8, 0xa8, 0xa8) }, + { "Grey67", RGB(0xab, 0xab, 0xab) }, + { "Grey68", RGB(0xad, 0xad, 0xad) }, + { "Grey69", RGB(0xb0, 0xb0, 0xb0) }, + { "Grey7", RGB(0x12, 0x12, 0x12) }, + { "Grey70", RGB(0xb3, 0xb3, 0xb3) }, + { "Grey71", RGB(0xb5, 0xb5, 0xb5) }, + { "Grey72", RGB(0xb8, 0xb8, 0xb8) }, + { "Grey73", RGB(0xba, 0xba, 0xba) }, + { "Grey74", RGB(0xbd, 0xbd, 0xbd) }, + { "Grey75", RGB(0xbf, 0xbf, 0xbf) }, + { "Grey76", RGB(0xc2, 0xc2, 0xc2) }, + { "Grey77", RGB(0xc4, 0xc4, 0xc4) }, + { "Grey78", RGB(0xc7, 0xc7, 0xc7) }, + { "Grey79", RGB(0xc9, 0xc9, 0xc9) }, + { "Grey8", RGB(0x14, 0x14, 0x14) }, + { "Grey80", RGB(0xcc, 0xcc, 0xcc) }, + { "Grey81", RGB(0xcf, 0xcf, 0xcf) }, + { "Grey82", RGB(0xd1, 0xd1, 0xd1) }, + { "Grey83", RGB(0xd4, 0xd4, 0xd4) }, + { "Grey84", RGB(0xd6, 0xd6, 0xd6) }, + { "Grey85", RGB(0xd9, 0xd9, 0xd9) }, + { "Grey86", RGB(0xdb, 0xdb, 0xdb) }, + { "Grey87", RGB(0xde, 0xde, 0xde) }, + { "Grey88", RGB(0xe0, 0xe0, 0xe0) }, + { "Grey89", RGB(0xe3, 0xe3, 0xe3) }, + { "Grey9", RGB(0x17, 0x17, 0x17) }, + { "Grey90", RGB(0xe5, 0xe5, 0xe5) }, + { "Grey91", RGB(0xe8, 0xe8, 0xe8) }, + { "Grey92", RGB(0xeb, 0xeb, 0xeb) }, + { "Grey93", RGB(0xed, 0xed, 0xed) }, + { "Grey94", RGB(0xf0, 0xf0, 0xf0) }, + { "Grey95", RGB(0xf2, 0xf2, 0xf2) }, + { "Grey96", RGB(0xf5, 0xf5, 0xf5) }, + { "Grey97", RGB(0xf7, 0xf7, 0xf7) }, + { "Grey98", RGB(0xfa, 0xfa, 0xfa) }, + { "Grey99", RGB(0xfc, 0xfc, 0xfc) }, + { "Honeydew", RGB(0xf0, 0xff, 0xf0) }, + { "Honeydew1", RGB(0xf0, 0xff, 0xf0) }, + { "Honeydew2", RGB(0xe0, 0xee, 0xe0) }, + { "Honeydew3", RGB(0xc1, 0xcd, 0xc1) }, + { "Honeydew4", RGB(0x83, 0x8b, 0x83) }, + { "HotPink", RGB(0xff, 0x69, 0xb4) }, + { "HotPink1", RGB(0xff, 0x6e, 0xb4) }, + { "HotPink2", RGB(0xee, 0x6a, 0xa7) }, + { "HotPink3", RGB(0xcd, 0x60, 0x90) }, + { "HotPink4", RGB(0x8b, 0x3a, 0x62) }, + { "IndianRed", RGB(0xcd, 0x5c, 0x5c) }, + { "IndianRed1", RGB(0xff, 0x6a, 0x6a) }, + { "IndianRed2", RGB(0xee, 0x63, 0x63) }, + { "IndianRed3", RGB(0xcd, 0x55, 0x55) }, + { "IndianRed4", RGB(0x8b, 0x3a, 0x3a) }, + { "Indigo", RGB(0x4b, 0x00, 0x82) }, + { "Ivory", RGB(0xff, 0xff, 0xf0) }, + { "Ivory1", RGB(0xff, 0xff, 0xf0) }, + { "Ivory2", RGB(0xee, 0xee, 0xe0) }, + { "Ivory3", RGB(0xcd, 0xcd, 0xc1) }, + { "Ivory4", RGB(0x8b, 0x8b, 0x83) }, + { "Khaki", RGB(0xf0, 0xe6, 0x8c) }, + { "Khaki1", RGB(0xff, 0xf6, 0x8f) }, + { "Khaki2", RGB(0xee, 0xe6, 0x85) }, + { "Khaki3", RGB(0xcd, 0xc6, 0x73) }, + { "Khaki4", RGB(0x8b, 0x86, 0x4e) }, + { "Lavender", RGB(0xe6, 0xe6, 0xfa) }, + { "LavenderBlush", RGB(0xff, 0xf0, 0xf5) }, + { "LavenderBlush1", RGB(0xff, 0xf0, 0xf5) }, + { "LavenderBlush2", RGB(0xee, 0xe0, 0xe5) }, + { "LavenderBlush3", RGB(0xcd, 0xc1, 0xc5) }, + { "LavenderBlush4", RGB(0x8b, 0x83, 0x86) }, + { "LawnGreen", RGB(0x7c, 0xfc, 0x00) }, + { "LemonChiffon", RGB(0xff, 0xfa, 0xcd) }, + { "LemonChiffon1", RGB(0xff, 0xfa, 0xcd) }, + { "LemonChiffon2", RGB(0xee, 0xe9, 0xbf) }, + { "LemonChiffon3", RGB(0xcd, 0xc9, 0xa5) }, + { "LemonChiffon4", RGB(0x8b, 0x89, 0x70) }, + { "LightBlue", RGB(0xad, 0xd8, 0xe6) }, + { "LightBlue1", RGB(0xbf, 0xef, 0xff) }, + { "LightBlue2", RGB(0xb2, 0xdf, 0xee) }, + { "LightBlue3", RGB(0x9a, 0xc0, 0xcd) }, + { "LightBlue4", RGB(0x68, 0x83, 0x8b) }, + { "LightCoral", RGB(0xf0, 0x80, 0x80) }, + { "LightCyan", RGB(0xe0, 0xff, 0xff) }, + { "LightCyan1", RGB(0xe0, 0xff, 0xff) }, + { "LightCyan2", RGB(0xd1, 0xee, 0xee) }, + { "LightCyan3", RGB(0xb4, 0xcd, 0xcd) }, + { "LightCyan4", RGB(0x7a, 0x8b, 0x8b) }, + { "LightGoldenrod", RGB(0xee, 0xdd, 0x82) }, + { "LightGoldenrod1", RGB(0xff, 0xec, 0x8b) }, + { "LightGoldenrod2", RGB(0xee, 0xdc, 0x82) }, + { "LightGoldenrod3", RGB(0xcd, 0xbe, 0x70) }, + { "LightGoldenrod4", RGB(0x8b, 0x81, 0x4c) }, + { "LightGoldenRodYellow", RGB(0xfa, 0xfa, 0xd2) }, + { "LightGray", RGB(0xd3, 0xd3, 0xd3) }, + { "LightGreen", RGB(0x90, 0xee, 0x90) }, + { "LightGrey", RGB(0xd3, 0xd3, 0xd3) }, + { "LightMagenta", RGB(0xff, 0xbb, 0xff) }, + { "LightPink", RGB(0xff, 0xb6, 0xc1) }, + { "LightPink1", RGB(0xff, 0xae, 0xb9) }, + { "LightPink2", RGB(0xee, 0xa2, 0xad) }, + { "LightPink3", RGB(0xcd, 0x8c, 0x95) }, + { "LightPink4", RGB(0x8b, 0x5f, 0x65) }, + { "LightRed", RGB(0xff, 0xbb, 0xbb) }, + { "LightSalmon", RGB(0xff, 0xa0, 0x7a) }, + { "LightSalmon1", RGB(0xff, 0xa0, 0x7a) }, + { "LightSalmon2", RGB(0xee, 0x95, 0x72) }, + { "LightSalmon3", RGB(0xcd, 0x81, 0x62) }, + { "LightSalmon4", RGB(0x8b, 0x57, 0x42) }, + { "LightSeaGreen", RGB(0x20, 0xb2, 0xaa) }, + { "LightSkyBlue", RGB(0x87, 0xce, 0xfa) }, + { "LightSkyBlue1", RGB(0xb0, 0xe2, 0xff) }, + { "LightSkyBlue2", RGB(0xa4, 0xd3, 0xee) }, + { "LightSkyBlue3", RGB(0x8d, 0xb6, 0xcd) }, + { "LightSkyBlue4", RGB(0x60, 0x7b, 0x8b) }, + { "LightSlateBlue", RGB(0x84, 0x70, 0xff) }, + { "LightSlateGray", RGB(0x77, 0x88, 0x99) }, + { "LightSlateGrey", RGB(0x77, 0x88, 0x99) }, + { "LightSteelBlue", RGB(0xb0, 0xc4, 0xde) }, + { "LightSteelBlue1", RGB(0xca, 0xe1, 0xff) }, + { "LightSteelBlue2", RGB(0xbc, 0xd2, 0xee) }, + { "LightSteelBlue3", RGB(0xa2, 0xb5, 0xcd) }, + { "LightSteelBlue4", RGB(0x6e, 0x7b, 0x8b) }, + { "LightYellow", RGB(0xff, 0xff, 0xe0) }, + { "LightYellow1", RGB(0xff, 0xff, 0xe0) }, + { "LightYellow2", RGB(0xee, 0xee, 0xd1) }, + { "LightYellow3", RGB(0xcd, 0xcd, 0xb4) }, + { "LightYellow4", RGB(0x8b, 0x8b, 0x7a) }, + { "Lime", RGB(0x00, 0xff, 0x00) }, + { "LimeGreen", RGB(0x32, 0xcd, 0x32) }, + { "Linen", RGB(0xfa, 0xf0, 0xe6) }, + { "Magenta", RGB(0xff, 0x00, 0xff) }, + { "Magenta1", RGB(0xff, 0x0, 0xff) }, + { "Magenta2", RGB(0xee, 0x0, 0xee) }, + { "Magenta3", RGB(0xcd, 0x0, 0xcd) }, + { "Magenta4", RGB(0x8b, 0x0, 0x8b) }, + { "Maroon", RGB(0x80, 0x00, 0x00) }, + { "Maroon1", RGB(0xff, 0x34, 0xb3) }, + { "Maroon2", RGB(0xee, 0x30, 0xa7) }, + { "Maroon3", RGB(0xcd, 0x29, 0x90) }, + { "Maroon4", RGB(0x8b, 0x1c, 0x62) }, + { "MediumAquamarine", RGB(0x66, 0xcd, 0xaa) }, + { "MediumBlue", RGB(0x00, 0x00, 0xcd) }, + { "MediumOrchid", RGB(0xba, 0x55, 0xd3) }, + { "MediumOrchid1", RGB(0xe0, 0x66, 0xff) }, + { "MediumOrchid2", RGB(0xd1, 0x5f, 0xee) }, + { "MediumOrchid3", RGB(0xb4, 0x52, 0xcd) }, + { "MediumOrchid4", RGB(0x7a, 0x37, 0x8b) }, + { "MediumPurple", RGB(0x93, 0x70, 0xdb) }, + { "MediumPurple1", RGB(0xab, 0x82, 0xff) }, + { "MediumPurple2", RGB(0x9f, 0x79, 0xee) }, + { "MediumPurple3", RGB(0x89, 0x68, 0xcd) }, + { "MediumPurple4", RGB(0x5d, 0x47, 0x8b) }, + { "MediumSeaGreen", RGB(0x3c, 0xb3, 0x71) }, + { "MediumSlateBlue", RGB(0x7b, 0x68, 0xee) }, + { "MediumSpringGreen", RGB(0x00, 0xfa, 0x9a) }, + { "MediumTurquoise", RGB(0x48, 0xd1, 0xcc) }, + { "MediumVioletRed", RGB(0xc7, 0x15, 0x85) }, + { "MidnightBlue", RGB(0x19, 0x19, 0x70) }, + { "MintCream", RGB(0xf5, 0xff, 0xfa) }, + { "MistyRose", RGB(0xff, 0xe4, 0xe1) }, + { "MistyRose1", RGB(0xff, 0xe4, 0xe1) }, + { "MistyRose2", RGB(0xee, 0xd5, 0xd2) }, + { "MistyRose3", RGB(0xcd, 0xb7, 0xb5) }, + { "MistyRose4", RGB(0x8b, 0x7d, 0x7b) }, + { "Moccasin", RGB(0xff, 0xe4, 0xb5) }, + { "NavajoWhite", RGB(0xff, 0xde, 0xad) }, + { "NavajoWhite1", RGB(0xff, 0xde, 0xad) }, + { "NavajoWhite2", RGB(0xee, 0xcf, 0xa1) }, + { "NavajoWhite3", RGB(0xcd, 0xb3, 0x8b) }, + { "NavajoWhite4", RGB(0x8b, 0x79, 0x5e) }, + { "Navy", RGB(0x00, 0x00, 0x80) }, + { "NavyBlue", RGB(0x0, 0x0, 0x80) }, + { "OldLace", RGB(0xfd, 0xf5, 0xe6) }, + { "Olive", RGB(0x80, 0x80, 0x00) }, + { "OliveDrab", RGB(0x6b, 0x8e, 0x23) }, + { "OliveDrab1", RGB(0xc0, 0xff, 0x3e) }, + { "OliveDrab2", RGB(0xb3, 0xee, 0x3a) }, + { "OliveDrab3", RGB(0x9a, 0xcd, 0x32) }, + { "OliveDrab4", RGB(0x69, 0x8b, 0x22) }, + { "Orange", RGB(0xff, 0xa5, 0x00) }, + { "Orange1", RGB(0xff, 0xa5, 0x0) }, + { "Orange2", RGB(0xee, 0x9a, 0x0) }, + { "Orange3", RGB(0xcd, 0x85, 0x0) }, + { "Orange4", RGB(0x8b, 0x5a, 0x0) }, + { "OrangeRed", RGB(0xff, 0x45, 0x00) }, + { "OrangeRed1", RGB(0xff, 0x45, 0x0) }, + { "OrangeRed2", RGB(0xee, 0x40, 0x0) }, + { "OrangeRed3", RGB(0xcd, 0x37, 0x0) }, + { "OrangeRed4", RGB(0x8b, 0x25, 0x0) }, + { "Orchid", RGB(0xda, 0x70, 0xd6) }, + { "Orchid1", RGB(0xff, 0x83, 0xfa) }, + { "Orchid2", RGB(0xee, 0x7a, 0xe9) }, + { "Orchid3", RGB(0xcd, 0x69, 0xc9) }, + { "Orchid4", RGB(0x8b, 0x47, 0x89) }, + { "PaleGoldenRod", RGB(0xee, 0xe8, 0xaa) }, + { "PaleGreen", RGB(0x98, 0xfb, 0x98) }, + { "PaleGreen1", RGB(0x9a, 0xff, 0x9a) }, + { "PaleGreen2", RGB(0x90, 0xee, 0x90) }, + { "PaleGreen3", RGB(0x7c, 0xcd, 0x7c) }, + { "PaleGreen4", RGB(0x54, 0x8b, 0x54) }, + { "PaleTurquoise", RGB(0xaf, 0xee, 0xee) }, + { "PaleTurquoise1", RGB(0xbb, 0xff, 0xff) }, + { "PaleTurquoise2", RGB(0xae, 0xee, 0xee) }, + { "PaleTurquoise3", RGB(0x96, 0xcd, 0xcd) }, + { "PaleTurquoise4", RGB(0x66, 0x8b, 0x8b) }, + { "PaleVioletRed", RGB(0xdb, 0x70, 0x93) }, + { "PaleVioletRed1", RGB(0xff, 0x82, 0xab) }, + { "PaleVioletRed2", RGB(0xee, 0x79, 0x9f) }, + { "PaleVioletRed3", RGB(0xcd, 0x68, 0x89) }, + { "PaleVioletRed4", RGB(0x8b, 0x47, 0x5d) }, + { "PapayaWhip", RGB(0xff, 0xef, 0xd5) }, + { "PeachPuff", RGB(0xff, 0xda, 0xb9) }, + { "PeachPuff1", RGB(0xff, 0xda, 0xb9) }, + { "PeachPuff2", RGB(0xee, 0xcb, 0xad) }, + { "PeachPuff3", RGB(0xcd, 0xaf, 0x95) }, + { "PeachPuff4", RGB(0x8b, 0x77, 0x65) }, + { "Peru", RGB(0xcd, 0x85, 0x3f) }, + { "Pink", RGB(0xff, 0xc0, 0xcb) }, + { "Pink1", RGB(0xff, 0xb5, 0xc5) }, + { "Pink2", RGB(0xee, 0xa9, 0xb8) }, + { "Pink3", RGB(0xcd, 0x91, 0x9e) }, + { "Pink4", RGB(0x8b, 0x63, 0x6c) }, + { "Plum", RGB(0xdd, 0xa0, 0xdd) }, + { "Plum1", RGB(0xff, 0xbb, 0xff) }, + { "Plum2", RGB(0xee, 0xae, 0xee) }, + { "Plum3", RGB(0xcd, 0x96, 0xcd) }, + { "Plum4", RGB(0x8b, 0x66, 0x8b) }, + { "PowderBlue", RGB(0xb0, 0xe0, 0xe6) }, + { "Purple", RGB(0x80, 0x00, 0x80) }, + { "Purple1", RGB(0x9b, 0x30, 0xff) }, + { "Purple2", RGB(0x91, 0x2c, 0xee) }, + { "Purple3", RGB(0x7d, 0x26, 0xcd) }, + { "Purple4", RGB(0x55, 0x1a, 0x8b) }, + { "RebeccaPurple", RGB(0x66, 0x33, 0x99) }, + { "Red", RGB(0xff, 0x00, 0x00) }, + { "Red1", RGB(0xff, 0x0, 0x0) }, + { "Red2", RGB(0xee, 0x0, 0x0) }, + { "Red3", RGB(0xcd, 0x0, 0x0) }, + { "Red4", RGB(0x8b, 0x0, 0x0) }, + { "RosyBrown", RGB(0xbc, 0x8f, 0x8f) }, + { "RosyBrown1", RGB(0xff, 0xc1, 0xc1) }, + { "RosyBrown2", RGB(0xee, 0xb4, 0xb4) }, + { "RosyBrown3", RGB(0xcd, 0x9b, 0x9b) }, + { "RosyBrown4", RGB(0x8b, 0x69, 0x69) }, + { "RoyalBlue", RGB(0x41, 0x69, 0xe1) }, + { "RoyalBlue1", RGB(0x48, 0x76, 0xff) }, + { "RoyalBlue2", RGB(0x43, 0x6e, 0xee) }, + { "RoyalBlue3", RGB(0x3a, 0x5f, 0xcd) }, + { "RoyalBlue4", RGB(0x27, 0x40, 0x8b) }, + { "SaddleBrown", RGB(0x8b, 0x45, 0x13) }, + { "Salmon", RGB(0xfa, 0x80, 0x72) }, + { "Salmon1", RGB(0xff, 0x8c, 0x69) }, + { "Salmon2", RGB(0xee, 0x82, 0x62) }, + { "Salmon3", RGB(0xcd, 0x70, 0x54) }, + { "Salmon4", RGB(0x8b, 0x4c, 0x39) }, + { "SandyBrown", RGB(0xf4, 0xa4, 0x60) }, + { "SeaGreen", RGB(0x2e, 0x8b, 0x57) }, + { "SeaGreen1", RGB(0x54, 0xff, 0x9f) }, + { "SeaGreen2", RGB(0x4e, 0xee, 0x94) }, + { "SeaGreen3", RGB(0x43, 0xcd, 0x80) }, + { "SeaGreen4", RGB(0x2e, 0x8b, 0x57) }, + { "SeaShell", RGB(0xff, 0xf5, 0xee) }, + { "Seashell1", RGB(0xff, 0xf5, 0xee) }, + { "Seashell2", RGB(0xee, 0xe5, 0xde) }, + { "Seashell3", RGB(0xcd, 0xc5, 0xbf) }, + { "Seashell4", RGB(0x8b, 0x86, 0x82) }, + { "Sienna", RGB(0xa0, 0x52, 0x2d) }, + { "Sienna1", RGB(0xff, 0x82, 0x47) }, + { "Sienna2", RGB(0xee, 0x79, 0x42) }, + { "Sienna3", RGB(0xcd, 0x68, 0x39) }, + { "Sienna4", RGB(0x8b, 0x47, 0x26) }, + { "Silver", RGB(0xc0, 0xc0, 0xc0) }, + { "SkyBlue", RGB(0x87, 0xce, 0xeb) }, + { "SkyBlue1", RGB(0x87, 0xce, 0xff) }, + { "SkyBlue2", RGB(0x7e, 0xc0, 0xee) }, + { "SkyBlue3", RGB(0x6c, 0xa6, 0xcd) }, + { "SkyBlue4", RGB(0x4a, 0x70, 0x8b) }, + { "SlateBlue", RGB(0x6a, 0x5a, 0xcd) }, + { "SlateBlue1", RGB(0x83, 0x6f, 0xff) }, + { "SlateBlue2", RGB(0x7a, 0x67, 0xee) }, + { "SlateBlue3", RGB(0x69, 0x59, 0xcd) }, + { "SlateBlue4", RGB(0x47, 0x3c, 0x8b) }, + { "SlateGray", RGB(0x70, 0x80, 0x90) }, + { "SlateGray1", RGB(0xc6, 0xe2, 0xff) }, + { "SlateGray2", RGB(0xb9, 0xd3, 0xee) }, + { "SlateGray3", RGB(0x9f, 0xb6, 0xcd) }, + { "SlateGray4", RGB(0x6c, 0x7b, 0x8b) }, + { "SlateGrey", RGB(0x70, 0x80, 0x90) }, + { "Snow", RGB(0xff, 0xfa, 0xfa) }, + { "Snow1", RGB(0xff, 0xfa, 0xfa) }, + { "Snow2", RGB(0xee, 0xe9, 0xe9) }, + { "Snow3", RGB(0xcd, 0xc9, 0xc9) }, + { "Snow4", RGB(0x8b, 0x89, 0x89) }, + { "SpringGreen", RGB(0x00, 0xff, 0x7f) }, + { "SpringGreen1", RGB(0x0, 0xff, 0x7f) }, + { "SpringGreen2", RGB(0x0, 0xee, 0x76) }, + { "SpringGreen3", RGB(0x0, 0xcd, 0x66) }, + { "SpringGreen4", RGB(0x0, 0x8b, 0x45) }, + { "SteelBlue", RGB(0x46, 0x82, 0xb4) }, + { "SteelBlue1", RGB(0x63, 0xb8, 0xff) }, + { "SteelBlue2", RGB(0x5c, 0xac, 0xee) }, + { "SteelBlue3", RGB(0x4f, 0x94, 0xcd) }, + { "SteelBlue4", RGB(0x36, 0x64, 0x8b) }, + { "Tan", RGB(0xd2, 0xb4, 0x8c) }, + { "Tan1", RGB(0xff, 0xa5, 0x4f) }, + { "Tan2", RGB(0xee, 0x9a, 0x49) }, + { "Tan3", RGB(0xcd, 0x85, 0x3f) }, + { "Tan4", RGB(0x8b, 0x5a, 0x2b) }, + { "Teal", RGB(0x00, 0x80, 0x80) }, + { "Thistle", RGB(0xd8, 0xbf, 0xd8) }, + { "Thistle1", RGB(0xff, 0xe1, 0xff) }, + { "Thistle2", RGB(0xee, 0xd2, 0xee) }, + { "Thistle3", RGB(0xcd, 0xb5, 0xcd) }, + { "Thistle4", RGB(0x8b, 0x7b, 0x8b) }, + { "Tomato", RGB(0xff, 0x63, 0x47) }, + { "Tomato1", RGB(0xff, 0x63, 0x47) }, + { "Tomato2", RGB(0xee, 0x5c, 0x42) }, + { "Tomato3", RGB(0xcd, 0x4f, 0x39) }, + { "Tomato4", RGB(0x8b, 0x36, 0x26) }, + { "Turquoise", RGB(0x40, 0xe0, 0xd0) }, + { "Turquoise1", RGB(0x0, 0xf5, 0xff) }, + { "Turquoise2", RGB(0x0, 0xe5, 0xee) }, + { "Turquoise3", RGB(0x0, 0xc5, 0xcd) }, + { "Turquoise4", RGB(0x0, 0x86, 0x8b) }, + { "Violet", RGB(0xee, 0x82, 0xee) }, + { "VioletRed", RGB(0xd0, 0x20, 0x90) }, + { "VioletRed1", RGB(0xff, 0x3e, 0x96) }, + { "VioletRed2", RGB(0xee, 0x3a, 0x8c) }, + { "VioletRed3", RGB(0xcd, 0x32, 0x78) }, + { "VioletRed4", RGB(0x8b, 0x22, 0x52) }, + { "WebGray", RGB(0x80, 0x80, 0x80) }, + { "WebGreen", RGB(0x0, 0x80, 0x0) }, + { "WebGrey", RGB(0x80, 0x80, 0x80) }, + { "WebMaroon", RGB(0x80, 0x0, 0x0) }, + { "WebPurple", RGB(0x80, 0x0, 0x80) }, + { "Wheat", RGB(0xf5, 0xde, 0xb3) }, + { "Wheat1", RGB(0xff, 0xe7, 0xba) }, + { "Wheat2", RGB(0xee, 0xd8, 0xae) }, + { "Wheat3", RGB(0xcd, 0xba, 0x96) }, + { "Wheat4", RGB(0x8b, 0x7e, 0x66) }, + { "White", RGB(0xff, 0xff, 0xff) }, + { "WhiteSmoke", RGB(0xf5, 0xf5, 0xf5) }, + { "X11Gray", RGB(0xbe, 0xbe, 0xbe) }, + { "X11Green", RGB(0x0, 0xff, 0x0) }, + { "X11Grey", RGB(0xbe, 0xbe, 0xbe) }, + { "X11Maroon", RGB(0xb0, 0x30, 0x60) }, + { "X11Purple", RGB(0xa0, 0x20, 0xf0) }, + { "Yellow", RGB(0xff, 0xff, 0x00) }, + { "Yellow1", RGB(0xff, 0xff, 0x0) }, + { "Yellow2", RGB(0xee, 0xee, 0x0) }, + { "Yellow3", RGB(0xcd, 0xcd, 0x0) }, + { "Yellow4", RGB(0x8b, 0x8b, 0x0) }, + { "YellowGreen", RGB(0x9a, 0xcd, 0x32) }, + { NULL, 0 }, }; RgbValue name_to_color(uint8_t *name) diff --git a/src/nvim/tag.c b/src/nvim/tag.c index 81256b4f01..1df1952f53 100644 --- a/src/nvim/tag.c +++ b/src/nvim/tag.c @@ -214,8 +214,12 @@ do_tag ( * Don't add a tag to the tagstack if 'tagstack' has been reset. */ if (!p_tgst && *tag != NUL) { - use_tagstack = FALSE; - new_tag = TRUE; + use_tagstack = false; + new_tag = true; + if (g_do_tagpreview != 0) { + xfree(ptag_entry.tagname); + ptag_entry.tagname = vim_strsave(tag); + } } else { if (g_do_tagpreview != 0) use_tagstack = FALSE; @@ -1295,7 +1299,7 @@ find_tags ( for (;; ) { line_breakcheck(); /* check for CTRL-C typed */ if ((flags & TAG_INS_COMP)) /* Double brackets for gcc */ - ins_compl_check_keys(30); + ins_compl_check_keys(30, false); if (got_int || compl_interrupted) { stop_searching = TRUE; break; diff --git a/src/nvim/terminal.c b/src/nvim/terminal.c index 499716a7a8..bd7b9fc58f 100644 --- a/src/nvim/terminal.c +++ b/src/nvim/terminal.c @@ -955,7 +955,6 @@ static void invalidate_terminal(Terminal *term, int start_row, int end_row) static void refresh_terminal(Terminal *term) { - // TODO(SplinterOfChaos): Find the condition that makes term->buf invalid. buf_T *buf = handle_get_buffer(term->buf_handle); bool valid = true; if (!buf || !(valid = buf_valid(buf))) { diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index 67e7c97905..dba8a8a877 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -32,17 +32,19 @@ SCRIPTS := \ # Keep test_alot*.res as the last one, sort the others. NEW_TESTS = \ test_cscope.res \ + test_cmdline.res \ test_hardcopy.res \ test_help_tagjump.res \ test_history.res \ test_langmap.res \ + test_match.res \ + test_matchadd_conceal.res \ test_syntax.res \ test_usercommands.res \ test_timers.res \ test_viml.res \ test_visual.res \ test_window_id.res \ - test_matchadd_conceal.res \ test_alot.res SCRIPTS_GUI := test16.out @@ -115,6 +117,7 @@ clean: valgrind.* \ .*.swp \ .*.swo \ + .gdbinit \ del test1.out: .gdbinit test1.in diff --git a/src/nvim/testdir/runtest.vim b/src/nvim/testdir/runtest.vim index e2d1e67a22..ac9774abc3 100644 --- a/src/nvim/testdir/runtest.vim +++ b/src/nvim/testdir/runtest.vim @@ -42,6 +42,14 @@ endif " This also enables use of line continuation. set viminfo+=nviminfo +" Use utf-8 or latin1 be default, instead of whatever the system default +" happens to be. Individual tests can overrule this at the top of the file. +if has('multi_byte') + set encoding=utf-8 +else + set encoding=latin1 +endif + " Avoid stopping at the "hit enter" prompt set nomore @@ -51,6 +59,13 @@ lang mess C " Always use forward slashes. set shellslash +" Make sure $HOME does not get read or written. +let $HOME = '/does/not/exist' + +" Align with vim defaults. +set directory^=. +set nohidden + function RunTheTest(test) echo 'Executing ' . a:test if exists("*SetUp") @@ -123,6 +138,9 @@ for s:test in sort(s:tests) endfor +" Don't write viminfo on exit. +set viminfo= + if s:fail == 0 " Success, create the .res file so that make knows it's done. exe 'split ' . fnamemodify(g:testname, ':r') . '.res' diff --git a/src/nvim/testdir/test64.in b/src/nvim/testdir/test64.in index c4585ecbce..ec11e15e35 100644 --- a/src/nvim/testdir/test64.in +++ b/src/nvim/testdir/test64.in @@ -20,6 +20,7 @@ STARTTEST :"""" Previously written tests """""""""""""""""""""""""""""""" :"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" :" +:set noautoindent :call add(tl, [2, 'ab', 'aab', 'ab']) :call add(tl, [2, 'b', 'abcdef', 'b']) :call add(tl, [2, 'bc*', 'abccccdef', 'bcccc']) @@ -577,7 +578,7 @@ Gop:" :" Check patterns matching cursor position. :func! Postest() new - call setline(1, ['ffooooo', 'boboooo', 'zoooooo', 'koooooo', 'moooooo', "\t\t\tfoo", 'abababababababfoo', 'bababababababafoo', '********_']) + call setline(1, ['ffooooo', 'boboooo', 'zoooooo', 'koooooo', 'moooooo', "\t\t\tfoo", 'abababababababfoo', 'bababababababafoo', '********_', ' xxxxxxxxxxxx xxxx xxxxxx xxxxxxx x xxxxxxxxx xx xxxxxx xxxxxx xxxxx xxxxxxx xx xxxx xxxxxxxx xxxx xxxxxxxxxxx xxx xxxxxxx xxxxxxxxx xx xxxxxx xx xxxxxxx xxxxxxxxxxxxxxxx xxxxxxxxx xxx xxxxxxxx xxxxxxxxx xxxx xxx xxxx xxx xxx xxxxx xxxxxxxxxxxx xxxx xxxxxxxxx xxxxxxxxxxx xx xxxxx xxx xxxxxxxx xxxxxx xxx xxx xxxxxxxxx xxxxxxx x xxxxxxxxx xx xxxxxx xxxxxxx xxxxxxxxxxxxxxxxxx xxxxxxx xxxxxxx xxx xxx xxxxxxxx xxxxxxx xxxx xxx xxxxxx xxxxx xxxxx xx xxxxxx xxxxxxx xxx xxxxxxxxxxxx xxxx xxxxxxxxx xxxxxx xxxxxx xxxxx xxx xxxxxxx xxxxxxxxxxxxxxxx xxxxxxxxx xxxxxxxxxx xxxx xx xxxxxxxx xxx xxxxxxxxxxx xxxxx']) call setpos('.', [0, 1, 0, 0]) s/\%>3c.//g call setpos('.', [0, 2, 4, 0]) @@ -589,6 +590,7 @@ Gop:" %s/\%>6l\%3c./!/g %s/\%>7l\%12c./?/g %s/\%>7l\%<9l\%>5v\%<8v./#/g + $s/\%(|\u.*\)\@<=[^|\t]\+$//ge 1,$yank quit! endfunc diff --git a/src/nvim/testdir/test64.ok b/src/nvim/testdir/test64.ok index 92f06ea9f3..c218f8ea17 100644 --- a/src/nvim/testdir/test64.ok +++ b/src/nvim/testdir/test64.ok @@ -1076,6 +1076,7 @@ moooooo ab!babababababfoo ba!ab##abab?bafoo **!*****_ + ! xxx?xxxxxxxx xxxx xxxxxx xxxxxxx x xxxxxxxxx xx xxxxxx xxxxxx xxxxx xxxxxxx xx xxxx xxxxxxxx xxxx xxxxxxxxxxx xxx xxxxxxx xxxxxxxxx xx xxxxxx xx xxxxxxx xxxxxxxxxxxxxxxx xxxxxxxxx xxx xxxxxxxx xxxxxxxxx xxxx xxx xxxx xxx xxx xxxxx xxxxxxxxxxxx xxxx xxxxxxxxx xxxxxxxxxxx xx xxxxx xxx xxxxxxxx xxxxxx xxx xxx xxxxxxxxx xxxxxxx x xxxxxxxxx xx xxxxxx xxxxxxx xxxxxxxxxxxxxxxxxx xxxxxxx xxxxxxx xxx xxx xxxxxxxx xxxxxxx xxxx xxx xxxxxx xxxxx xxxxx xx xxxxxx xxxxxxx xxx xxxxxxxxxxxx xxxx xxxxxxxxx xxxxxx xxxxxx xxxxx xxx xxxxxxx xxxxxxxxxxxxxxxx xxxxxxxxx xxxxxxxxxx xxxx xx xxxxxxxx xxx xxxxxxxxxxx xxxxx -1- ffo bob @@ -1086,6 +1087,7 @@ moooooo ab!babababababfoo ba!ab##abab?bafoo **!*****_ + ! xxx?xxxxxxxx xxxx xxxxxx xxxxxxx x xxxxxxxxx xx xxxxxx xxxxxx xxxxx xxxxxxx xx xxxx xxxxxxxx xxxx xxxxxxxxxxx xxx xxxxxxx xxxxxxxxx xx xxxxxx xx xxxxxxx xxxxxxxxxxxxxxxx xxxxxxxxx xxx xxxxxxxx xxxxxxxxx xxxx xxx xxxx xxx xxx xxxxx xxxxxxxxxxxx xxxx xxxxxxxxx xxxxxxxxxxx xx xxxxx xxx xxxxxxxx xxxxxx xxx xxx xxxxxxxxx xxxxxxx x xxxxxxxxx xx xxxxxx xxxxxxx xxxxxxxxxxxxxxxxxx xxxxxxx xxxxxxx xxx xxx xxxxxxxx xxxxxxx xxxx xxx xxxxxx xxxxx xxxxx xx xxxxxx xxxxxxx xxx xxxxxxxxxxxx xxxx xxxxxxxxx xxxxxx xxxxxx xxxxx xxx xxxxxxx xxxxxxxxxxxxxxxx xxxxxxxxx xxxxxxxxxx xxxx xx xxxxxxxx xxx xxxxxxxxxxx xxxxx -2- ffo bob @@ -1096,6 +1098,7 @@ moooooo ab!babababababfoo ba!ab##abab?bafoo **!*****_ + ! xxx?xxxxxxxx xxxx xxxxxx xxxxxxx x xxxxxxxxx xx xxxxxx xxxxxx xxxxx xxxxxxx xx xxxx xxxxxxxx xxxx xxxxxxxxxxx xxx xxxxxxx xxxxxxxxx xx xxxxxx xx xxxxxxx xxxxxxxxxxxxxxxx xxxxxxxxx xxx xxxxxxxx xxxxxxxxx xxxx xxx xxxx xxx xxx xxxxx xxxxxxxxxxxx xxxx xxxxxxxxx xxxxxxxxxxx xx xxxxx xxx xxxxxxxx xxxxxx xxx xxx xxxxxxxxx xxxxxxx x xxxxxxxxx xx xxxxxx xxxxxxx xxxxxxxxxxxxxxxxxx xxxxxxx xxxxxxx xxx xxx xxxxxxxx xxxxxxx xxxx xxx xxxxxx xxxxx xxxxx xx xxxxxx xxxxxxx xxx xxxxxxxxxxxx xxxx xxxxxxxxx xxxxxx xxxxxx xxxxx xxx xxxxxxx xxxxxxxxxxxxxxxx xxxxxxxxx xxxxxxxxxx xxxx xx xxxxxxxx xxx xxxxxxxxxxx xxxxx Test Test END EN diff --git a/src/nvim/testdir/test_alot.vim b/src/nvim/testdir/test_alot.vim index 036a4c0470..c79d9380d4 100644 --- a/src/nvim/testdir/test_alot.vim +++ b/src/nvim/testdir/test_alot.vim @@ -2,14 +2,24 @@ " This makes testing go faster, since Vim doesn't need to restart. source test_assign.vim +source test_autocmd.vim source test_cursor_func.vim source test_ex_undo.vim +source test_expr.vim +source test_expr_utf8.vim source test_feedkeys.vim -source test_cmdline.vim +source test_goto.vim +source test_match.vim +source test_matchadd_conceal_utf8.vim source test_menu.vim +source test_messages.vim +source test_options.vim source test_popup.vim source test_regexp_utf8.vim +source test_statusline.vim source test_syn_attr.vim +source test_tabline.vim source test_tabpage.vim +source test_tagjump.vim source test_unlet.vim -source test_matchadd_conceal_utf8.vim +source test_window_cmd.vim diff --git a/src/nvim/testdir/test_autocmd.vim b/src/nvim/testdir/test_autocmd.vim new file mode 100644 index 0000000000..d3e0981025 --- /dev/null +++ b/src/nvim/testdir/test_autocmd.vim @@ -0,0 +1,35 @@ +" Tests for autocommands + +func Test_vim_did_enter() + call assert_false(v:vim_did_enter) + + " This script will never reach the main loop, can't check if v:vim_did_enter + " becomes one. +endfunc + +if !has('timers') + finish +endif + +func ExitInsertMode(id) + call feedkeys("\<Esc>") +endfunc + +func Test_cursorhold_insert() + let g:triggered = 0 + au CursorHoldI * let g:triggered += 1 + set updatetime=20 + call timer_start(100, 'ExitInsertMode') + call feedkeys('a', 'x!') + call assert_equal(1, g:triggered) +endfunc + +func Test_cursorhold_insert_ctrl_x() + let g:triggered = 0 + au CursorHoldI * let g:triggered += 1 + set updatetime=20 + call timer_start(100, 'ExitInsertMode') + " CursorHoldI does not trigger after CTRL-X + call feedkeys("a\<C-X>", 'x!') + call assert_equal(0, g:triggered) +endfunc diff --git a/src/nvim/testdir/test_expr.vim b/src/nvim/testdir/test_expr.vim new file mode 100644 index 0000000000..66a10b05e1 --- /dev/null +++ b/src/nvim/testdir/test_expr.vim @@ -0,0 +1,54 @@ +" Tests for expressions. + +func Test_version() + call assert_true(has('patch-7.4.001')) + call assert_true(has('patch-7.4.01')) + call assert_true(has('patch-7.4.1')) + call assert_true(has('patch-6.9.999')) + call assert_true(has('patch-7.1.999')) + call assert_true(has('patch-7.4.123')) + + call assert_false(has('patch-7')) + call assert_false(has('patch-7.4')) + call assert_false(has('patch-7.4.')) + call assert_false(has('patch-9.1.0')) + call assert_false(has('patch-9.9.1')) +endfunc + +func Test_strgetchar() + call assert_equal(char2nr('a'), strgetchar('axb', 0)) + call assert_equal(char2nr('x'), strgetchar('axb', 1)) + call assert_equal(char2nr('b'), strgetchar('axb', 2)) + + call assert_equal(-1, strgetchar('axb', -1)) + call assert_equal(-1, strgetchar('axb', 3)) + call assert_equal(-1, strgetchar('', 0)) +endfunc + +func Test_strcharpart() + call assert_equal('a', strcharpart('axb', 0, 1)) + call assert_equal('x', strcharpart('axb', 1, 1)) + call assert_equal('b', strcharpart('axb', 2, 1)) + call assert_equal('xb', strcharpart('axb', 1)) + + call assert_equal('', strcharpart('axb', 1, 0)) + call assert_equal('', strcharpart('axb', 1, -1)) + call assert_equal('', strcharpart('axb', -1, 1)) + call assert_equal('', strcharpart('axb', -2, 2)) + + call assert_equal('a', strcharpart('axb', -1, 2)) +endfunc + +func Test_dict() + let d = {'': 'empty', 'a': 'a', 0: 'zero'} + call assert_equal('empty', d['']) + call assert_equal('a', d['a']) + call assert_equal('zero', d[0]) + call assert_true(has_key(d, '')) + call assert_true(has_key(d, 'a')) + + let d[''] = 'none' + let d['a'] = 'aaa' + call assert_equal('none', d['']) + call assert_equal('aaa', d['a']) +endfunc diff --git a/src/nvim/testdir/test_expr_utf8.vim b/src/nvim/testdir/test_expr_utf8.vim new file mode 100644 index 0000000000..9ea6d8872b --- /dev/null +++ b/src/nvim/testdir/test_expr_utf8.vim @@ -0,0 +1,37 @@ +" Tests for expressions using utf-8. +if !has('multi_byte') + finish +endif + +func Test_strgetchar_utf8() + call assert_equal(char2nr('á'), strgetchar('áxb', 0)) + call assert_equal(char2nr('x'), strgetchar('áxb', 1)) + + call assert_equal(char2nr('a'), strgetchar('àxb', 0)) + call assert_equal(char2nr('̀'), strgetchar('àxb', 1)) + call assert_equal(char2nr('x'), strgetchar('àxb', 2)) + + call assert_equal(char2nr('あ'), strgetchar('あaい', 0)) + call assert_equal(char2nr('a'), strgetchar('あaい', 1)) + call assert_equal(char2nr('い'), strgetchar('あaい', 2)) +endfunc + +func Test_strcharpart_utf8() + call assert_equal('áxb', strcharpart('áxb', 0)) + call assert_equal('á', strcharpart('áxb', 0, 1)) + call assert_equal('x', strcharpart('áxb', 1, 1)) + + call assert_equal('いうeお', strcharpart('あいうeお', 1)) + call assert_equal('い', strcharpart('あいうeお', 1, 1)) + call assert_equal('いう', strcharpart('あいうeお', 1, 2)) + call assert_equal('いうe', strcharpart('あいうeお', 1, 3)) + call assert_equal('いうeお', strcharpart('あいうeお', 1, 4)) + call assert_equal('eお', strcharpart('あいうeお', 3)) + call assert_equal('e', strcharpart('あいうeお', 3, 1)) + + call assert_equal('あ', strcharpart('あいうeお', -3, 4)) + + call assert_equal('a', strcharpart('àxb', 0, 1)) + call assert_equal('̀', strcharpart('àxb', 1, 1)) + call assert_equal('x', strcharpart('àxb', 2, 1)) +endfunc diff --git a/src/nvim/testdir/test_feedkeys.vim b/src/nvim/testdir/test_feedkeys.vim index 33cd58949d..70500f2bb5 100644 --- a/src/nvim/testdir/test_feedkeys.vim +++ b/src/nvim/testdir/test_feedkeys.vim @@ -6,5 +6,9 @@ func Test_feedkeys_x_with_empty_string() call assert_equal('', getline('.')) call feedkeys('', 'x') call assert_equal('foo', getline('.')) + + " check it goes back to normal mode immediately. + call feedkeys('i', 'x') + call assert_equal('foo', getline('.')) quit! endfunc diff --git a/src/nvim/testdir/test_goto.vim b/src/nvim/testdir/test_goto.vim new file mode 100644 index 0000000000..fb8f190fa6 --- /dev/null +++ b/src/nvim/testdir/test_goto.vim @@ -0,0 +1,10 @@ +" Test commands that jump somewhere. + +func Test_geedee() + new + call setline(1, ["Filename x;", "", "int Filename", "int func() {", "Filename y;"]) + /y;/ + normal gD + call assert_equal(1, line('.')) + quit! +endfunc diff --git a/src/nvim/testdir/test_hardcopy.vim b/src/nvim/testdir/test_hardcopy.vim index 4629d17dd2..ea9790d134 100644 --- a/src/nvim/testdir/test_hardcopy.vim +++ b/src/nvim/testdir/test_hardcopy.vim @@ -23,6 +23,10 @@ func Test_printoptions_parsing() set printoptions=formfeed:y set printoptions= set printoptions& + + call assert_fails('set printoptions=paper', 'E550:') + call assert_fails('set printoptions=shredder:on', 'E551:') + call assert_fails('set printoptions=left:no', 'E552:') endfunc func Test_printmbfont_parsing() diff --git a/src/nvim/testdir/test_match.vim b/src/nvim/testdir/test_match.vim new file mode 100644 index 0000000000..7748dee87f --- /dev/null +++ b/src/nvim/testdir/test_match.vim @@ -0,0 +1,234 @@ +" Test for :match, :2match, :3match, clearmatches(), getmatches(), matchadd(), +" matchaddpos(), matcharg(), matchdelete(), matchstrpos() and setmatches(). + +function Test_match() + highlight MyGroup1 term=bold ctermbg=red guibg=red + highlight MyGroup2 term=italic ctermbg=green guibg=green + highlight MyGroup3 term=underline ctermbg=blue guibg=blue + + " --- Check that "matcharg()" returns the correct group and pattern if a match + " --- is defined. + match MyGroup1 /TODO/ + 2match MyGroup2 /FIXME/ + 3match MyGroup3 /XXX/ + call assert_equal(['MyGroup1', 'TODO'], matcharg(1)) + call assert_equal(['MyGroup2', 'FIXME'], matcharg(2)) + call assert_equal(['MyGroup3', 'XXX'], matcharg(3)) + + " --- Check that "matcharg()" returns an empty list if the argument is not 1, + " --- 2 or 3 (only 0 and 4 are tested). + call assert_equal([], matcharg(0)) + call assert_equal([], matcharg(4)) + + " --- Check that "matcharg()" returns ['', ''] if a match is not defined. + match + 2match + 3match + call assert_equal(['', ''], matcharg(1)) + call assert_equal(['', ''], matcharg(2)) + call assert_equal(['', ''], matcharg(3)) + + " --- Check that "matchadd()" and "getmatches()" agree on added matches and + " --- that default values apply. + let m1 = matchadd("MyGroup1", "TODO") + let m2 = matchadd("MyGroup2", "FIXME", 42) + let m3 = matchadd("MyGroup3", "XXX", 60, 17) + let ans = [{'group': 'MyGroup1', 'pattern': 'TODO', 'priority': 10, 'id': 4}, + \ {'group': 'MyGroup2', 'pattern': 'FIXME', 'priority': 42, 'id': 5}, + \ {'group': 'MyGroup3', 'pattern': 'XXX', 'priority': 60, 'id': 17}] + call assert_equal(ans, getmatches()) + + " --- Check that "matchdelete()" deletes the matches defined in the previous + " --- test correctly. + call matchdelete(m1) + call matchdelete(m2) + call matchdelete(m3) + call assert_equal([], getmatches()) + + " --- Check that "matchdelete()" returns 0 if successful and otherwise -1. + let m = matchadd("MyGroup1", "TODO") + call assert_equal(0, matchdelete(m)) + call assert_fails('call matchdelete(42)', 'E803:') + + " --- Check that "clearmatches()" clears all matches defined by ":match" and + " --- "matchadd()". + let m1 = matchadd("MyGroup1", "TODO") + let m2 = matchadd("MyGroup2", "FIXME", 42) + let m3 = matchadd("MyGroup3", "XXX", 60, 17) + match MyGroup1 /COFFEE/ + 2match MyGroup2 /HUMPPA/ + 3match MyGroup3 /VIM/ + call clearmatches() + call assert_equal([], getmatches()) + + " --- Check that "setmatches()" restores a list of matches saved by + " --- "getmatches()" without changes. (Matches with equal priority must also + " --- remain in the same order.) + let m1 = matchadd("MyGroup1", "TODO") + let m2 = matchadd("MyGroup2", "FIXME", 42) + let m3 = matchadd("MyGroup3", "XXX", 60, 17) + match MyGroup1 /COFFEE/ + 2match MyGroup2 /HUMPPA/ + 3match MyGroup3 /VIM/ + let ml = getmatches() + call clearmatches() + call setmatches(ml) + call assert_equal(ml, getmatches()) + call clearmatches() + + " --- Check that "setmatches()" will not add two matches with the same ID. The + " --- expected behaviour (for now) is to add the first match but not the + " --- second and to return 0 (even though it is a matter of debate whether + " --- this can be considered successful behaviour). + let data = [{'group': 'MyGroup1', 'pattern': 'TODO', 'priority': 10, 'id': 1}, + \ {'group': 'MyGroup2', 'pattern': 'FIXME', 'priority': 10, 'id': 1}] + call assert_fails('call setmatches(data)', 'E801:') + call assert_equal([data[0]], getmatches()) + call clearmatches() + + " --- Check that "setmatches()" returns 0 if successful and otherwise -1. + " --- (A range of valid and invalid input values are tried out to generate the + " --- return values.) + call assert_equal(0, setmatches([])) + call assert_equal(0, setmatches([{'group': 'MyGroup1', 'pattern': 'TODO', 'priority': 10, 'id': 1}])) + call clearmatches() + call assert_fails('call setmatches(0)', 'E714:') + call assert_fails('call setmatches([0])', 'E474:') + call assert_fails("call setmatches([{'wrong key': 'wrong value'}])", 'E474:') + + call setline(1, 'abcdefghijklmnopq') + call matchaddpos("MyGroup1", [[1, 5], [1, 8, 3]], 10, 3) + 1 + redraw! + let v1 = screenattr(1, 1) + let v5 = screenattr(1, 5) + let v6 = screenattr(1, 6) + let v8 = screenattr(1, 8) + let v10 = screenattr(1, 10) + let v11 = screenattr(1, 11) + call assert_notequal(v1, v5) + call assert_equal(v6, v1) + call assert_equal(v8, v5) + call assert_equal(v10, v5) + call assert_equal(v11, v1) + call assert_equal([{'group': 'MyGroup1', 'id': 3, 'priority': 10, 'pos1': [1, 5, 1], 'pos2': [1, 8, 3]}], getmatches()) + call clearmatches() + + " + if has('multi_byte') + call setline(1, 'abcdΣabcdef') + call matchaddpos("MyGroup1", [[1, 4, 2], [1, 9, 2]]) + 1 + redraw! + let v1 = screenattr(1, 1) + let v4 = screenattr(1, 4) + let v5 = screenattr(1, 5) + let v6 = screenattr(1, 6) + let v7 = screenattr(1, 7) + let v8 = screenattr(1, 8) + let v9 = screenattr(1, 9) + let v10 = screenattr(1, 10) + call assert_equal([{'group': 'MyGroup1', 'id': 11, 'priority': 10, 'pos1': [1, 4, 2], 'pos2': [1, 9, 2]}], getmatches()) + call assert_notequal(v1, v4) + call assert_equal(v5, v4) + call assert_equal(v6, v1) + call assert_equal(v7, v1) + call assert_equal(v8, v4) + call assert_equal(v9, v4) + call assert_equal(v10, v1) + + " Check, that setmatches() can correctly restore the matches from matchaddpos() + call matchadd('MyGroup1', '\%2lmatchadd') + let m=getmatches() + call clearmatches() + call setmatches(m) + call assert_equal([{'group': 'MyGroup1', 'id': 11, 'priority': 10, 'pos1': [1, 4, 2], 'pos2': [1,9, 2]}, {'group': 'MyGroup1', 'pattern': '\%2lmatchadd', 'priority': 10, 'id': 12}], getmatches()) + endif + + highlight MyGroup1 NONE + highlight MyGroup2 NONE + highlight MyGroup3 NONE +endfunc + +func Test_matchstrpos() + call assert_equal(['ing', 4, 7], matchstrpos('testing', 'ing')) + + call assert_equal(['ing', 4, 7], matchstrpos('testing', 'ing', 2)) + + call assert_equal(['', -1, -1], matchstrpos('testing', 'ing', 5)) + + call assert_equal(['ing', 1, 4, 7], matchstrpos(['vim', 'testing', 'execute'], 'ing')) + + call assert_equal(['', -1, -1, -1], matchstrpos(['vim', 'testing', 'execute'], 'img')) +endfunc + +func Test_matchaddpos() + syntax on + set hlsearch + + call setline(1, ['12345', 'NP']) + call matchaddpos('Error', [[1,2], [1,6], [2,2]]) + redraw! + call assert_notequal(screenattr(2,2), 0) + call assert_equal(screenattr(2,2), screenattr(1,2)) + call assert_notequal(screenattr(2,2), screenattr(1,6)) + 1 + call matchadd('Search', 'N\|\n') + redraw! + call assert_notequal(screenattr(2,1), 0) + call assert_equal(screenattr(2,1), screenattr(1,6)) + exec "norm! i0\<Esc>" + redraw! + call assert_equal(screenattr(2,2), screenattr(1,6)) + + " Check overlapping pos + call clearmatches() + call setline(1, ['1234567890', 'NH']) + call matchaddpos('Error', [[1,1,5], [1,3,5], [2,2]]) + redraw! + call assert_notequal(screenattr(2,2), 0) + call assert_equal(screenattr(2,2), screenattr(1,5)) + call assert_equal(screenattr(2,2), screenattr(1,7)) + call assert_notequal(screenattr(2,2), screenattr(1,8)) + + call clearmatches() + call matchaddpos('Error', [[1], [2,2]]) + redraw! + call assert_equal(screenattr(2,2), screenattr(1,1)) + call assert_equal(screenattr(2,2), screenattr(1,10)) + call assert_notequal(screenattr(2,2), screenattr(1,11)) + + nohl + call clearmatches() + syntax off + set hlsearch& +endfunc + +func Test_matchaddpos_using_negative_priority() + set hlsearch + + call clearmatches() + + call setline(1, 'x') + let @/='x' + redraw! + let search_attr = screenattr(1,1) + + let @/='' + call matchaddpos('Error', [1], 10) + redraw! + let error_attr = screenattr(1,1) + + call setline(2, '-1 match priority') + call matchaddpos('Error', [2], -1) + redraw! + let negative_match_priority_attr = screenattr(2,1) + + call assert_notequal(negative_match_priority_attr, search_attr, "Match with negative priority is incorrectly highlighted with Search highlight.") + call assert_equal(negative_match_priority_attr, error_attr) + + nohl + set hlsearch& +endfunc + +" vim: et ts=2 sw=2 diff --git a/src/nvim/testdir/test_messages.vim b/src/nvim/testdir/test_messages.vim new file mode 100644 index 0000000000..188406e440 --- /dev/null +++ b/src/nvim/testdir/test_messages.vim @@ -0,0 +1,40 @@ +" Tests for :messages + +function Test_messages() + let oldmore = &more + try + set nomore + " Avoid the "message maintainer" line. + let $LANG = '' + + let arr = map(range(10), '"hello" . v:val') + for s in arr + echomsg s | redraw + endfor + let result = '' + + " get last two messages + redir => result + 2messages | redraw + redir END + let msg_list = split(result, "\n") + call assert_equal(["hello8", "hello9"], msg_list) + + " clear messages without last one + 1messages clear + redir => result + redraw | messages + redir END + let msg_list = split(result, "\n") + call assert_equal(['hello9'], msg_list) + + " clear all messages + messages clear + redir => result + redraw | messages + redir END + call assert_equal('', result) + finally + let &more = oldmore + endtry +endfunction diff --git a/src/nvim/testdir/test_options.vim b/src/nvim/testdir/test_options.vim new file mode 100644 index 0000000000..5ee0919e18 --- /dev/null +++ b/src/nvim/testdir/test_options.vim @@ -0,0 +1,99 @@ +" Test for options + +function! Test_whichwrap() + set whichwrap=b,s + call assert_equal('b,s', &whichwrap) + + set whichwrap+=h,l + call assert_equal('b,s,h,l', &whichwrap) + + set whichwrap+=h,l + call assert_equal('b,s,h,l', &whichwrap) + + set whichwrap+=h,l + call assert_equal('b,s,h,l', &whichwrap) + + set whichwrap& +endfunction + +function! Test_options() + let caught = 'ok' + try + options + catch + let caught = v:throwpoint . "\n" . v:exception + endtry + call assert_equal('ok', caught) + + " close option-window + close +endfunction + +function! Test_path_keep_commas() + " Test that changing 'path' keeps two commas. + set path=foo,,bar + set path-=bar + set path+=bar + call assert_equal('foo,,bar', &path) + + set path& +endfunction + +func Test_filetype_valid() + if !has('autocmd') + return + endif + set ft=valid_name + call assert_equal("valid_name", &filetype) + set ft=valid-name + call assert_equal("valid-name", &filetype) + + call assert_fails(":set ft=wrong;name", "E474:") + call assert_fails(":set ft=wrong\\\\name", "E474:") + call assert_fails(":set ft=wrong\\|name", "E474:") + call assert_fails(":set ft=wrong/name", "E474:") + call assert_fails(":set ft=wrong\\\nname", "E474:") + call assert_equal("valid-name", &filetype) + + exe "set ft=trunc\x00name" + call assert_equal("trunc", &filetype) +endfunc + +func Test_syntax_valid() + if !has('syntax') + return + endif + set syn=valid_name + call assert_equal("valid_name", &syntax) + set syn=valid-name + call assert_equal("valid-name", &syntax) + + call assert_fails(":set syn=wrong;name", "E474:") + call assert_fails(":set syn=wrong\\\\name", "E474:") + call assert_fails(":set syn=wrong\\|name", "E474:") + call assert_fails(":set syn=wrong/name", "E474:") + call assert_fails(":set syn=wrong\\\nname", "E474:") + call assert_equal("valid-name", &syntax) + + exe "set syn=trunc\x00name" + call assert_equal("trunc", &syntax) +endfunc + +func Test_keymap_valid() + if !has('keymap') + return + endif + call assert_fails(":set kmp=valid_name", "E544:") + call assert_fails(":set kmp=valid_name", "valid_name") + call assert_fails(":set kmp=valid-name", "E544:") + call assert_fails(":set kmp=valid-name", "valid-name") + + call assert_fails(":set kmp=wrong;name", "E474:") + call assert_fails(":set kmp=wrong\\\\name", "E474:") + call assert_fails(":set kmp=wrong\\|name", "E474:") + call assert_fails(":set kmp=wrong/name", "E474:") + call assert_fails(":set kmp=wrong\\\nname", "E474:") + + call assert_fails(":set kmp=trunc\x00name", "E544:") + call assert_fails(":set kmp=trunc\x00name", "trunc") +endfunc diff --git a/src/nvim/testdir/test_popup.vim b/src/nvim/testdir/test_popup.vim index 63be8bf609..8615e32cfd 100644 --- a/src/nvim/testdir/test_popup.vim +++ b/src/nvim/testdir/test_popup.vim @@ -63,3 +63,116 @@ func! Test_popup_completion_insertmode() bwipe! iunmap <F5> endfunc + +func DummyCompleteOne(findstart, base) + if a:findstart + return 0 + else + wincmd n + return ['onedef', 'oneDEF'] + endif +endfunc + +" Test that nothing happens if the 'completefunc' opens +" a new window (no completion, no crash) +func Test_completefunc_opens_new_window_one() + new + let winid = win_getid() + setlocal completefunc=DummyCompleteOne + call setline(1, 'one') + /^one + call assert_fails('call feedkeys("A\<C-X>\<C-U>\<C-N>\<Esc>", "x")', 'E839:') + call assert_notequal(winid, win_getid()) + q! + call assert_equal(winid, win_getid()) + call assert_equal('', getline(1)) + q! +endfunc + +" Test that nothing happens if the 'completefunc' opens +" a new window (no completion, no crash) +func DummyCompleteTwo(findstart, base) + if a:findstart + wincmd n + return 0 + else + return ['twodef', 'twoDEF'] + endif +endfunction + +" Test that nothing happens if the 'completefunc' opens +" a new window (no completion, no crash) +func Test_completefunc_opens_new_window_two() + new + let winid = win_getid() + setlocal completefunc=DummyCompleteTwo + call setline(1, 'two') + /^two + call assert_fails('call feedkeys("A\<C-X>\<C-U>\<C-N>\<Esc>", "x")', 'E764:') + call assert_notequal(winid, win_getid()) + q! + call assert_equal(winid, win_getid()) + call assert_equal('two', getline(1)) + q! +endfunc + +func DummyCompleteThree(findstart, base) + if a:findstart + return 0 + else + return ['threedef', 'threeDEF'] + endif +endfunc + +:"Test that 'completefunc' works when it's OK. +func Test_completefunc_works() + new + let winid = win_getid() + setlocal completefunc=DummyCompleteThree + call setline(1, 'three') + /^three + call feedkeys("A\<C-X>\<C-U>\<C-N>\<Esc>", "x") + call assert_equal(winid, win_getid()) + call assert_equal('threeDEF', getline(1)) + q! +endfunc + +func DummyCompleteFour(findstart, base) + if a:findstart + return 0 + else + call complete_add('four1') + call complete_add('four2') + call complete_check() + call complete_add('four3') + call complete_add('four4') + call complete_check() + call complete_add('four5') + call complete_add('four6') + return [] + endif +endfunc + +:"Test that 'completefunc' works when it's OK. +func Test_omnifunc_with_check() + new + setlocal omnifunc=DummyCompleteFour + call setline(1, 'four') + /^four + call feedkeys("A\<C-X>\<C-O>\<C-N>\<Esc>", "x") + call assert_equal('four2', getline(1)) + + call setline(1, 'four') + /^four + call feedkeys("A\<C-X>\<C-O>\<C-N>\<C-N>\<Esc>", "x") + call assert_equal('four3', getline(1)) + + call setline(1, 'four') + /^four + call feedkeys("A\<C-X>\<C-O>\<C-N>\<C-N>\<C-N>\<C-N>\<Esc>", "x") + call assert_equal('four5', getline(1)) + + q! +endfunc + +" vim: shiftwidth=2 sts=2 expandtab diff --git a/src/nvim/testdir/test_regexp_utf8.vim b/src/nvim/testdir/test_regexp_utf8.vim index 38f9ed41d5..ecb03a0f8c 100644 --- a/src/nvim/testdir/test_regexp_utf8.vim +++ b/src/nvim/testdir/test_regexp_utf8.vim @@ -1,5 +1,4 @@ " Tests for regexp in utf8 encoding -scriptencoding utf-8 func s:equivalence_test() let str = "AÀÁÂÃÄÅĀĂĄǍǞǠẢ BḂḆ CÇĆĈĊČ DĎĐḊḎḐ EÈÉÊËĒĔĖĘĚẺẼ FḞ GĜĞĠĢǤǦǴḠ HĤĦḢḦḨ IÌÍÎÏĨĪĬĮİǏỈ JĴ KĶǨḰḴ LĹĻĽĿŁḺ MḾṀ NÑŃŅŇṄṈ OÒÓÔÕÖØŌŎŐƠǑǪǬỎ PṔṖ Q RŔŖŘṘṞ SŚŜŞŠṠ TŢŤŦṪṮ UÙÚÛÜŨŪŬŮŰŲƯǓỦ VṼ WŴẀẂẄẆ XẊẌ YÝŶŸẎỲỶỸ ZŹŻŽƵẐẔ aàáâãäåāăąǎǟǡả bḃḇ cçćĉċč dďđḋḏḑ eèéêëēĕėęěẻẽ fḟ gĝğġģǥǧǵḡ hĥħḣḧḩẖ iìíîïĩīĭįǐỉ jĵǰ kķǩḱḵ lĺļľŀłḻ mḿṁ nñńņňʼnṅṉ oòóôõöøōŏőơǒǫǭỏ pṕṗ q rŕŗřṙṟ sśŝşšṡ tţťŧṫṯẗ uùúûüũūŭůűųưǔủ vṽ wŵẁẃẅẇẘ xẋẍ yýÿŷẏẙỳỷỹ zźżžƶẑẕ" diff --git a/src/nvim/testdir/test_statusline.vim b/src/nvim/testdir/test_statusline.vim new file mode 100644 index 0000000000..82898df92d --- /dev/null +++ b/src/nvim/testdir/test_statusline.vim @@ -0,0 +1,39 @@ +function! StatuslineWithCaughtError() + let s:func_in_statusline_called = 1 + try + call eval('unknown expression') + catch + endtry + return '' +endfunction + +function! StatuslineWithError() + let s:func_in_statusline_called = 1 + call eval('unknown expression') + return '' +endfunction + +function! Test_caught_error_in_statusline() + let s:func_in_statusline_called = 0 + set laststatus=2 + let statusline = '%{StatuslineWithCaughtError()}' + let &statusline = statusline + redrawstatus + call assert_true(s:func_in_statusline_called) + call assert_equal(statusline, &statusline) + set statusline= +endfunction + +function! Test_statusline_will_be_disabled_with_error() + let s:func_in_statusline_called = 0 + set laststatus=2 + let statusline = '%{StatuslineWithError()}' + try + let &statusline = statusline + redrawstatus + catch + endtry + call assert_true(s:func_in_statusline_called) + call assert_equal('', &statusline) + set statusline= +endfunction diff --git a/src/nvim/testdir/test_syntax.vim b/src/nvim/testdir/test_syntax.vim index 309c0f460b..af2cbbfe8e 100644 --- a/src/nvim/testdir/test_syntax.vim +++ b/src/nvim/testdir/test_syntax.vim @@ -61,3 +61,18 @@ func Test_syn_iskeyword() quit! endfunc + +func Test_syntax_after_reload() + split Xsomefile + call setline(1, ['hello', 'there']) + w! + only! + setl filetype=hello + au FileType hello let g:gotit = 1 + call assert_false(exists('g:gotit')) + edit other + buf Xsomefile + call assert_equal('hello', &filetype) + call assert_true(exists('g:gotit')) + call delete('Xsomefile') +endfunc diff --git a/src/nvim/testdir/test_tabline.vim b/src/nvim/testdir/test_tabline.vim new file mode 100644 index 0000000000..6c7a02d650 --- /dev/null +++ b/src/nvim/testdir/test_tabline.vim @@ -0,0 +1,43 @@ +function! TablineWithCaughtError() + let s:func_in_tabline_called = 1 + try + call eval('unknown expression') + catch + endtry + return '' +endfunction + +function! TablineWithError() + let s:func_in_tabline_called = 1 + call eval('unknown expression') + return '' +endfunction + +function! Test_caught_error_in_tabline() + let showtabline_save = &showtabline + set showtabline=2 + let s:func_in_tabline_called = 0 + let tabline = '%{TablineWithCaughtError()}' + let &tabline = tabline + redraw! + call assert_true(s:func_in_tabline_called) + call assert_equal(tabline, &tabline) + set tabline= + let &showtabline = showtabline_save +endfunction + +function! Test_tabline_will_be_disabled_with_error() + let showtabline_save = &showtabline + set showtabline=2 + let s:func_in_tabline_called = 0 + let tabline = '%{TablineWithError()}' + try + let &tabline = tabline + redraw! + catch + endtry + call assert_true(s:func_in_tabline_called) + call assert_equal('', &tabline) + set tabline= + let &showtabline = showtabline_save +endfunction diff --git a/src/nvim/testdir/test_tabpage.vim b/src/nvim/testdir/test_tabpage.vim index 0bf7d056de..7c3039ba24 100644 --- a/src/nvim/testdir/test_tabpage.vim +++ b/src/nvim/testdir/test_tabpage.vim @@ -40,7 +40,7 @@ function Test_tabpage() call assert_true(t:val_num == 100 && t:val_str == 'SetTabVar test' && t:val_list == ['red', 'blue', 'green']) tabclose - if has('gui') || has('clientserver') + if has('nvim') || has('gui') || has('clientserver') " Test for ":tab drop exist-file" to keep current window. sp test1 tab drop test1 @@ -64,6 +64,15 @@ function Test_tabpage() call assert_true(tabpagenr() == 2 && tabpagewinnr(2, '$') == 2 && tabpagewinnr(2) == 1) tabclose q + " + " + " Test for ":tab drop vertical-split-window" to jump test1 buffer + tabedit test1 + vnew + tabfirst + tab drop test1 + call assert_equal([2, 2, 2, 2], [tabpagenr('$'), tabpagenr(), tabpagewinnr(2, '$'), tabpagewinnr(2)]) + 1tabonly endif " " diff --git a/src/nvim/testdir/test_tagjump.vim b/src/nvim/testdir/test_tagjump.vim new file mode 100644 index 0000000000..d8a333f44c --- /dev/null +++ b/src/nvim/testdir/test_tagjump.vim @@ -0,0 +1,9 @@ +" Tests for tagjump (tags and special searches) + +" SEGV occurs in older versions. (At least 7.4.1748 or older) +func Test_ptag_with_notagstack() + set notagstack + call assert_fails('ptag does_not_exist_tag_name', 'E426') + set tagstack&vim +endfunc +" vim: sw=2 et diff --git a/src/nvim/testdir/test_viml.vim b/src/nvim/testdir/test_viml.vim index c39c5e6b28..a11d62f5cf 100644 --- a/src/nvim/testdir/test_viml.vim +++ b/src/nvim/testdir/test_viml.vim @@ -949,6 +949,14 @@ func Test_type() call assert_equal(6, type(v:false)) call assert_equal(6, type(v:true)) call assert_equal(7, type(v:null)) + call assert_equal(v:t_number, type(0)) + call assert_equal(v:t_string, type("")) + call assert_equal(v:t_func, type(function("tr"))) + call assert_equal(v:t_list, type([])) + call assert_equal(v:t_dict, type({})) + call assert_equal(v:t_float, type(0.0)) + call assert_equal(v:t_bool, type(v:false)) + call assert_equal(v:t_bool, type(v:true)) endfunc "------------------------------------------------------------------------------- diff --git a/src/nvim/testdir/test_visual.vim b/src/nvim/testdir/test_visual.vim index 83bae967e2..cf0e535937 100644 --- a/src/nvim/testdir/test_visual.vim +++ b/src/nvim/testdir/test_visual.vim @@ -2,7 +2,6 @@ if !has('multi_byte') finish endif -scriptencoding utf-8 if !has('visual') finish diff --git a/src/nvim/testdir/test_window_cmd.vim b/src/nvim/testdir/test_window_cmd.vim new file mode 100644 index 0000000000..b7f41a711b --- /dev/null +++ b/src/nvim/testdir/test_window_cmd.vim @@ -0,0 +1,70 @@ +" Tests for window cmd (:wincmd, :split, :vsplit, :resize and etc...) + +func Test_window_cmd_ls0_with_split() + set ls=0 + set splitbelow + split + quit + call assert_equal(0, &lines - &cmdheight - winheight(0)) + new | only! + " + set splitbelow&vim + botright split + quit + call assert_equal(0, &lines - &cmdheight - winheight(0)) + new | only! + set ls&vim +endfunc + +func Test_window_cmd_cmdwin_with_vsp() + let efmt='Expected 0 but got %d (in ls=%d, %s window)' + for v in range(0, 2) + exec "set ls=" . v + vsplit + call feedkeys("q:\<CR>") + let ac = &lines - (&cmdheight + winheight(0) + !!v) + let emsg = printf(efmt, ac, v, 'left') + call assert_equal(0, ac, emsg) + wincmd w + let ac = &lines - (&cmdheight + winheight(0) + !!v) + let emsg = printf(efmt, ac, v, 'right') + call assert_equal(0, ac, emsg) + new | only! + endfor + set ls&vim +endfunc + +function Test_window_cmd_wincmd_gf() + let fname = 'test_gf.txt' + let swp_fname = '.' . fname . '.swp' + call writefile([], fname) + call writefile([], swp_fname) + function s:swap_exists() + let v:swapchoice = s:swap_choice + endfunc + augroup test_window_cmd_wincmd_gf + autocmd! + exec "autocmd SwapExists " . fname . " call s:swap_exists()" + augroup END + + call setline(1, fname) + " (E)dit anyway + let s:swap_choice = 'e' + wincmd gf + call assert_equal(2, tabpagenr()) + call assert_equal(fname, bufname("%")) + quit! + + " (Q)uit + let s:swap_choice = 'q' + wincmd gf + call assert_equal(1, tabpagenr()) + call assert_notequal(fname, bufname("%")) + new | only! + + call delete(fname) + call delete(swp_fname) + augroup! test_window_cmd_wincmd_gf +endfunc + +" vim: sw=2 et diff --git a/src/nvim/tui/input.c b/src/nvim/tui/input.c index 740716f0ef..70d87a7ab2 100644 --- a/src/nvim/tui/input.c +++ b/src/nvim/tui/input.c @@ -31,8 +31,8 @@ void term_input_init(TermInput *input, Loop *loop) if (!term) { term = ""; // termkey_new_abstract assumes non-null (#2745) } - int enc_flag = enc_utf8 ? TERMKEY_FLAG_UTF8 : TERMKEY_FLAG_RAW; - input->tk = termkey_new_abstract(term, enc_flag); + + input->tk = termkey_new_abstract(term, TERMKEY_FLAG_UTF8); int curflags = termkey_get_canonflags(input->tk); termkey_set_canonflags(input->tk, curflags | TERMKEY_CANON_DELBS); @@ -319,8 +319,6 @@ static bool handle_forced_escape(TermInput *input) return false; } -static void restart_reading(void **argv); - static void read_cb(Stream *stream, RBuffer *buf, size_t c, void *data, bool eof) { diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index f252b00be2..bceb4ca4ff 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -11,6 +11,7 @@ #include "nvim/lib/kvec.h" #include "nvim/vim.h" +#include "nvim/log.h" #include "nvim/ui.h" #include "nvim/map.h" #include "nvim/main.h" @@ -32,6 +33,8 @@ #define CNORM_COMMAND_MAX_SIZE 32 #define OUTBUF_SIZE 0xffff +#define TOO_MANY_EVENTS 1000000 + typedef struct { int top, bot, left, right; } Rect; @@ -461,6 +464,10 @@ static void tui_mode_change(UI *ui, int mode) if (data->showing_mode != INSERT) { unibi_out(ui, data->unibi_ext.set_cursor_shape_bar); } + } else if (mode == CMDLINE) { + if (data->showing_mode != CMDLINE) { + unibi_out(ui, data->unibi_ext.set_cursor_shape_bar); + } } else if (mode == REPLACE) { if (data->showing_mode != REPLACE) { unibi_out(ui, data->unibi_ext.set_cursor_shape_ul); @@ -587,6 +594,18 @@ static void tui_flush(UI *ui) TUIData *data = ui->data; UGrid *grid = &data->grid; + size_t nrevents = loop_size(data->loop); + if (nrevents > TOO_MANY_EVENTS) { + ILOG("TUI event-queue flooded (thread_events=%zu); purging", nrevents); + // Back-pressure: UI events may accumulate much faster than the terminal + // device can serve them. Even if SIGINT/CTRL-C is received, user must still + // wait for the TUI event-queue to drain, and if there are ~millions of + // events in the queue, it could take hours. Clearing the queue allows the + // UI to recover. #1234 #5396 + loop_purge(data->loop); + tui_busy_stop(ui); // avoid hidden cursor + } + while (kv_size(data->invalid_regions)) { Rect r = kv_pop(data->invalid_regions); int currow = -1; @@ -611,6 +630,7 @@ static void suspend_event(void **argv) bool enable_mouse = data->mouse_enabled; tui_terminal_stop(ui); data->cont_received = false; + stream_set_blocking(input_global_fd(), true); // normalize stream (#2598) kill(0, SIGTSTP); while (!data->cont_received) { // poll the event loop until SIGCONT is received @@ -620,6 +640,7 @@ static void suspend_event(void **argv) if (enable_mouse) { tui_mouse_on(ui); } + stream_set_blocking(input_global_fd(), false); // libuv expects this // resume the main thread CONTINUE(data->bridge); } diff --git a/src/nvim/ui.c b/src/nvim/ui.c index eb500414a7..d3784b6cd3 100644 --- a/src/nvim/ui.c +++ b/src/nvim/ui.c @@ -88,18 +88,17 @@ void ui_builtin_start(void) #ifdef FEAT_TUI tui_start(); #else - fprintf(stderr, "Neovim was built without a Terminal UI," \ - "press Ctrl+C to exit\n"); - + fprintf(stderr, "Nvim headless-mode started.\n"); size_t len; char **addrs = server_address_list(&len); if (addrs != NULL) { - fprintf(stderr, "currently listening on the following address(es)\n"); + fprintf(stderr, "Listening on:\n"); for (size_t i = 0; i < len; i++) { fprintf(stderr, "\t%s\n", addrs[i]); } xfree(addrs); } + fprintf(stderr, "Press CTRL+C to exit.\n"); #endif } @@ -177,14 +176,14 @@ void ui_refresh(void) pum_set_external(pum_external); } -static void ui_refresh_handler(void **argv) +static void ui_refresh_event(void **argv) { ui_refresh(); } void ui_schedule_refresh(void) { - loop_schedule(&main_loop, event_create(1, ui_refresh_handler, 0)); + loop_schedule(&main_loop, event_create(1, ui_refresh_event, 0)); } void ui_resize(int new_width, int new_height) @@ -532,13 +531,16 @@ static void ui_mode_change(void) if (!full_screen) { return; } - /* Get a simple UI mode out of State. */ - if ((State & REPLACE) == REPLACE) + // Get a simple UI mode out of State. + if ((State & REPLACE) == REPLACE) { mode = REPLACE; - else if (State & INSERT) + } else if (State & INSERT) { mode = INSERT; - else + } else if (State & CMDLINE) { + mode = CMDLINE; + } else { mode = NORMAL; + } UI_CALL(mode_change, mode); conceal_check_cursur_line(); } diff --git a/src/nvim/ui_bridge.c b/src/nvim/ui_bridge.c index cc27c734e0..25861abc1b 100644 --- a/src/nvim/ui_bridge.c +++ b/src/nvim/ui_bridge.c @@ -1,11 +1,12 @@ -// UI wrapper that sends UI requests to the UI thread. -// Used by the built-in TUI and external libnvim-based UIs. +// UI wrapper that sends requests to the UI thread. +// Used by the built-in TUI and libnvim-based UIs. #include <assert.h> #include <stdbool.h> #include <stdio.h> #include <limits.h> +#include "nvim/log.h" #include "nvim/main.h" #include "nvim/vim.h" #include "nvim/ui.h" @@ -19,10 +20,30 @@ #define UI(b) (((UIBridgeData *)b)->ui) -// Call a function in the UI thread +#if MIN_LOG_LEVEL <= DEBUG_LOG_LEVEL +static size_t uilog_seen = 0; +static argv_callback uilog_event = NULL; +#define UI_CALL(ui, name, argc, ...) \ + do { \ + if (uilog_event == ui_bridge_##name##_event) { \ + uilog_seen++; \ + } else { \ + if (uilog_seen > 0) { \ + DLOG("UI bridge: ...%zu times", uilog_seen); \ + } \ + DLOG("UI bridge: " STR(name)); \ + uilog_seen = 0; \ + uilog_event = ui_bridge_##name##_event; \ + } \ + ((UIBridgeData *)ui)->scheduler( \ + event_create(1, ui_bridge_##name##_event, argc, __VA_ARGS__), UI(ui)); \ + } while (0) +#else +// Schedule a function call on the UI bridge thread. #define UI_CALL(ui, name, argc, ...) \ ((UIBridgeData *)ui)->scheduler( \ event_create(1, ui_bridge_##name##_event, argc, __VA_ARGS__), UI(ui)) +#endif #define INT2PTR(i) ((void *)(uintptr_t)i) #define PTR2INT(p) ((int)(uintptr_t)p) @@ -218,16 +239,16 @@ static void ui_bridge_mode_change_event(void **argv) } static void ui_bridge_set_scroll_region(UI *b, int top, int bot, int left, - int right) + int right) { UI_CALL(b, set_scroll_region, 5, b, INT2PTR(top), INT2PTR(bot), - INT2PTR(left), INT2PTR(right)); + INT2PTR(left), INT2PTR(right)); } static void ui_bridge_set_scroll_region_event(void **argv) { UI *ui = UI(argv[0]); ui->set_scroll_region(ui, PTR2INT(argv[1]), PTR2INT(argv[2]), - PTR2INT(argv[3]), PTR2INT(argv[4])); + PTR2INT(argv[3]), PTR2INT(argv[4])); } static void ui_bridge_scroll(UI *b, int count) diff --git a/src/nvim/ui_bridge.h b/src/nvim/ui_bridge.h index 9e4bf9f2a7..dba461550f 100644 --- a/src/nvim/ui_bridge.h +++ b/src/nvim/ui_bridge.h @@ -1,5 +1,5 @@ // Bridge for communication between a UI thread and nvim core. -// Used by the built-in TUI and external libnvim-based UIs. +// Used by the built-in TUI and libnvim-based UIs. #ifndef NVIM_UI_BRIDGE_H #define NVIM_UI_BRIDGE_H diff --git a/src/nvim/undo.c b/src/nvim/undo.c index d80aaf443a..4d56046bc1 100644 --- a/src/nvim/undo.c +++ b/src/nvim/undo.c @@ -691,7 +691,7 @@ char *u_get_undo_file_name(const char *const buf_ffname, const bool reading) int ret; char *failed_dir; if ((ret = os_mkdir_recurse(dir_name, 0755, &failed_dir)) != 0) { - EMSG3(_("E926: Unable to create directory \"%s\" for undo file: %s"), + EMSG3(_("E5003: Unable to create directory \"%s\" for undo file: %s"), failed_dir, os_strerror(ret)); xfree(failed_dir); } else { @@ -1669,7 +1669,7 @@ void u_undo(int count) undo_undoes = TRUE; else undo_undoes = !undo_undoes; - u_doit(count); + u_doit(count, false); } /* @@ -1678,15 +1678,57 @@ void u_undo(int count) */ void u_redo(int count) { - if (vim_strchr(p_cpo, CPO_UNDO) == NULL) - undo_undoes = FALSE; - u_doit(count); + if (vim_strchr(p_cpo, CPO_UNDO) == NULL) { + undo_undoes = false; + } + + u_doit(count, false); } -/* - * Undo or redo, depending on 'undo_undoes', 'count' times. - */ -static void u_doit(int startcount) +/// Undo and remove the branch from the undo tree. +/// Also moves the cursor (as a "normal" undo would). +bool u_undo_and_forget(int count) +{ + if (curbuf->b_u_synced == false) { + u_sync(true); + count = 1; + } + undo_undoes = true; + u_doit(count, true); + + if (curbuf->b_u_curhead == NULL) { + // nothing was undone. + return false; + } + + // Delete the current redo header + // set the redo header to the next alternative branch (if any) + // otherwise we will be in the leaf state + u_header_T *to_forget = curbuf->b_u_curhead; + curbuf->b_u_newhead = to_forget->uh_next.ptr; + curbuf->b_u_curhead = to_forget->uh_alt_next.ptr; + if (curbuf->b_u_curhead) { + to_forget->uh_alt_next.ptr = NULL; + curbuf->b_u_curhead->uh_alt_prev.ptr = to_forget->uh_alt_prev.ptr; + curbuf->b_u_seq_cur = curbuf->b_u_curhead->uh_seq-1; + } else if (curbuf->b_u_newhead) { + curbuf->b_u_seq_cur = curbuf->b_u_newhead->uh_seq; + } + if (to_forget->uh_alt_prev.ptr) { + to_forget->uh_alt_prev.ptr->uh_alt_next.ptr = curbuf->b_u_curhead; + } + if (curbuf->b_u_newhead) { + curbuf->b_u_newhead->uh_prev.ptr = curbuf->b_u_curhead; + } + if (curbuf->b_u_seq_last == to_forget->uh_seq) { + curbuf->b_u_seq_last--; + } + u_freebranch(curbuf, to_forget, NULL); + return true; +} + +/// Undo or redo, depending on `undo_undoes`, `count` times. +static void u_doit(int startcount, bool quiet) { int count = startcount; @@ -1722,7 +1764,7 @@ static void u_doit(int startcount) break; } - u_undoredo(TRUE); + u_undoredo(true); } else { if (curbuf->b_u_curhead == NULL || get_undolevel() <= 0) { beep_flush(); /* nothing to redo */ @@ -1742,7 +1784,7 @@ static void u_doit(int startcount) curbuf->b_u_curhead = curbuf->b_u_curhead->uh_prev.ptr; } } - u_undo_end(undo_undoes, FALSE); + u_undo_end(undo_undoes, false, quiet); } /* @@ -2055,7 +2097,7 @@ void undo_time(long step, int sec, int file, int absolute) } } } - u_undo_end(did_undo, absolute); + u_undo_end(did_undo, absolute, false); } /* @@ -2299,16 +2341,13 @@ static void u_undoredo(int undo) #endif } -/* - * If we deleted or added lines, report the number of less/more lines. - * Otherwise, report the number of changes (this may be incorrect - * in some cases, but it's better than nothing). - */ -static void -u_undo_end ( - int did_undo, /* just did an undo */ - int absolute /* used ":undo N" */ -) +/// If we deleted or added lines, report the number of less/more lines. +/// Otherwise, report the number of changes (this may be incorrect +/// in some cases, but it's better than nothing). +static void u_undo_end( + int did_undo, ///< just did an undo + int absolute, ///< used ":undo N" + bool quiet) { char *msgstr; u_header_T *uhp; @@ -2317,9 +2356,11 @@ u_undo_end ( if ((fdo_flags & FDO_UNDO) && KeyTyped) foldOpenCursor(); - if (global_busy /* no messages now, wait until global is finished */ - || !messaging()) /* 'lazyredraw' set, don't do messages now */ + if (quiet + || global_busy // no messages until global is finished + || !messaging()) { // 'lazyredraw' set, don't do messages now return; + } if (curbuf->b_ml.ml_flags & ML_EMPTY) --u_newcount; diff --git a/src/nvim/version.c b/src/nvim/version.c index 7ab8c84569..7e7080fd61 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -13,6 +13,7 @@ #include "nvim/iconv.h" #include "nvim/version.h" #include "nvim/charset.h" +#include "nvim/macros.h" #include "nvim/memline.h" #include "nvim/memory.h" #include "nvim/message.h" @@ -22,9 +23,6 @@ // version info generated by the build system #include "auto/versiondef.h" -#define STR_(x) #x -#define STR(x) STR_(x) - // for ":version", ":intro", and "nvim --version" #ifndef NVIM_VERSION_MEDIUM #define NVIM_VERSION_MEDIUM STR(NVIM_VERSION_MAJOR) "." STR(NVIM_VERSION_MINOR)\ @@ -131,7 +129,7 @@ static int included_patches[] = { // 2314, // 2313, 2312, - // 2311, + // 2311 NA // 2310 NA 2309, // 2308 NA @@ -191,7 +189,7 @@ static int included_patches[] = { // 2254 NA // 2253 NA // 2252 NA - // 2251, + 2251, // 2250, // 2249, // 2248, @@ -225,7 +223,7 @@ static int included_patches[] = { // 2220, 2219, // 2218 NA - // 2217, + 2217, // 2216 NA // 2215, // 2214 NA @@ -268,7 +266,7 @@ static int included_patches[] = { // 2177, // 2176 NA // 2175, - // 2174, + 2174, // 2173, // 2172, // 2171, @@ -279,7 +277,7 @@ static int included_patches[] = { // 2166 NA // 2165, // 2164, - // 2163, + 2163, 2162, // 2161, // 2160, @@ -356,7 +354,7 @@ static int included_patches[] = { // 2089 NA // 2088, // 2087, - // 2086, + 2086, // 2085, // 2084, // 2083, @@ -371,7 +369,7 @@ static int included_patches[] = { // 2074, // 2073, // 2072, - // 2071, + 2071, // 2070 NA // 2069, // 2068, @@ -435,7 +433,7 @@ static int included_patches[] = { // 2010, // 2009, // 2008, - // 2007, + 2007, // 2006, // 2005, // 2004 NA @@ -475,7 +473,7 @@ static int included_patches[] = { // 1970, // 1969 NA // 1968, - // 1967, + 1967, // 1966, // 1965 NA // 1964, @@ -486,7 +484,7 @@ static int included_patches[] = { // 1959 NA // 1958 NA // 1957 NA - // 1956, + 1956, // 1955, // 1954, // 1953, @@ -514,12 +512,12 @@ static int included_patches[] = { // 1931 NA // 1930 NA // 1929 NA - // 1928, + 1928, // 1927 NA // 1926 NA // 1925 NA // 1924 NA - // 1923, + 1923, // 1922 NA // 1921 NA // 1920 NA @@ -533,7 +531,7 @@ static int included_patches[] = { // 1912, // 1911, // 1910, - // 1909, + 1909, // 1908 NA // 1907, // 1906 NA @@ -545,12 +543,12 @@ static int included_patches[] = { 1900, // 1899 NA 1898, - // 1897, + 1897, 1896, 1895, - // 1894 NA + 1894, 1893, - // 1892 NA + 1892, // 1891 NA // 1890 NA // 1889, @@ -607,7 +605,7 @@ static int included_patches[] = { // 1838, // 1837, // 1836, - // 1835, + 1835, // 1834, 1833, 1832, @@ -661,10 +659,10 @@ static int included_patches[] = { // 1785, // 1784 NA // 1783, - // 1782, + 1782, // 1781, // 1780, - // 1779, + 1779, // 1778 NA // 1777 NA // 1776 NA @@ -684,44 +682,44 @@ static int included_patches[] = { // 1762, // 1761, // 1760 NA - // 1759, - // 1758, + 1759, + 1758, 1757, // 1756 NA 1755, - // 1754, + 1754, 1753, // 1753, // 1752, - // 1751, + 1751, // 1750 NA // 1749 NA - // 1748, + 1748, // 1747 NA // 1746 NA // 1745 NA // 1744 NA // 1743 NA - // 1742, - // 1741, + 1742, + 1741, 1740, - // 1739, - // 1738, + 1739, + 1738, // 1737 NA // 1736 NA - // 1735, - // 1734, + 1735, + 1734, // 1733 NA 1732, // 1731, - // 1730, + 1730, // 1729 NA 1728, // 1727, // 1726 NA // 1725 NA // 1724 NA - // 1723, + 1723, // 1722 NA // 1721 NA // 1720, @@ -733,33 +731,33 @@ static int included_patches[] = { 1714, // 1713 NA 1712, - // 1711, - // 1710, + 1711, + // 1710 NA // 1709 NA - // 1708, - // 1707, + 1708, + 1707, // 1706 NA // 1705 NA 1704, 1703, - // 1702, - // 1701, + 1702, + 1701, 1700, - // 1699, + 1699, // 1698 NA - // 1697, - // 1696, + 1697, + 1696, 1695, // 1694 NA // 1693 NA - // 1692, - // 1691, + 1692, + 1691, // 1690 NA // 1689 NA // 1688 NA // 1687 NA - // 1686, - // 1685, + 1686, + 1685, // 1684 NA // 1683 NA 1682, @@ -780,13 +778,13 @@ static int included_patches[] = { // 1667 NA // 1666 NA // 1665 NA - // 1664, + 1664, 1663, // 1662 NA // 1661 NA - // 1660, + 1660, // 1659 NA - // 1658, + 1658, // 1657 NA // 1656, // 1655 NA @@ -794,23 +792,23 @@ static int included_patches[] = { // 1653 NA 1652, // 1651 NA - // 1650, + 1650, 1649, 1648, - // 1647, + 1647, // 1646 NA // 1645, // 1644, 1643, 1642, 1641, - // 1640, + 1640, // 1639, // 1638, // 1637 NA // 1636 NA // 1635 NA - // 1634, + 1634, // 1633 NA // 1632 NA // 1631 NA @@ -830,7 +828,7 @@ static int included_patches[] = { // 1617 NA // 1616 NA // 1615 NA - // 1614, + 1614, // 1613 NA // 1612 NA // 1611 NA @@ -853,7 +851,7 @@ static int included_patches[] = { // 1594 NA // 1593 NA 1592, - // 1591, + 1591, // 1590, // 1589, 1588, diff --git a/src/nvim/vim.h b/src/nvim/vim.h index 6bbd9b58ef..8271abda8d 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -104,6 +104,7 @@ Error: configure did not run properly.Check auto/config.log. #define CONFIRM 0x800 /* ":confirm" prompt */ #define SELECTMODE 0x1000 /* Select mode, only for mappings */ #define TERM_FOCUS 0x2000 // Terminal focus mode +#define CMDPREVIEW 0x4000 // Showing 'inccommand' command "live" preview. // all mode bits used for mapping #define MAP_ALL_MODES (0x3f | SELECTMODE | TERM_FOCUS) @@ -122,6 +123,14 @@ Error: configure did not run properly.Check auto/config.log. #define FAIL 0 #define NOTDONE 2 /* not OK or FAIL but skipped */ +// Type values for type(). +#define VAR_TYPE_NUMBER 0 +#define VAR_TYPE_STRING 1 +#define VAR_TYPE_FUNC 2 +#define VAR_TYPE_LIST 3 +#define VAR_TYPE_DICT 4 +#define VAR_TYPE_FLOAT 5 +#define VAR_TYPE_BOOL 6 /* * values for xp_context when doing command line completion diff --git a/src/nvim/window.c b/src/nvim/window.c index 9c6a2e26a6..3e7aed7867 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -385,12 +385,16 @@ wingotofile: ptr = grab_file_name(Prenum1, &lnum); if (ptr != NULL) { + tabpage_T *oldtab = curtab; + win_T *oldwin = curwin; setpcmark(); if (win_split(0, 0) == OK) { RESET_BINDING(curwin); - (void)do_ecmd(0, ptr, NULL, NULL, ECMD_LASTL, - ECMD_HIDE, NULL); - if (nchar == 'F' && lnum >= 0) { + if (do_ecmd(0, ptr, NULL, NULL, ECMD_LASTL, ECMD_HIDE, NULL) == FAIL) { + // Failed to open the file, close the window opened for it. + win_close(curwin, false); + goto_tabpage_win(oldtab, oldwin); + } else if (nchar == 'F' && lnum >= 0) { curwin->w_cursor.lnum = lnum; check_cursor_lnum(); beginline(BL_SOL | BL_FIX); @@ -894,31 +898,31 @@ int win_split_ins(int size, int flags, win_T *new_wp, int dir) /* "new_size" of the current window goes to the new window, use * one row for the status line */ win_new_height(wp, new_size); - if (flags & (WSP_TOP | WSP_BOT)) - frame_new_height(curfrp, curfrp->fr_height - - (new_size + STATUS_HEIGHT), flags & WSP_TOP, FALSE); - else + if (flags & (WSP_TOP | WSP_BOT)) { + int new_fr_height = curfrp->fr_height - new_size; + + if (!((flags & WSP_BOT) && p_ls == 0)) { + new_fr_height -= STATUS_HEIGHT; + } + frame_new_height(curfrp, new_fr_height, flags & WSP_TOP, false); + } else { win_new_height(oldwin, oldwin_height - (new_size + STATUS_HEIGHT)); - if (before) { /* new window above current one */ + } + if (before) { // new window above current one wp->w_winrow = oldwin->w_winrow; wp->w_status_height = STATUS_HEIGHT; oldwin->w_winrow += wp->w_height + STATUS_HEIGHT; } else { /* new window below current one */ wp->w_winrow = oldwin->w_winrow + oldwin->w_height + STATUS_HEIGHT; wp->w_status_height = oldwin->w_status_height; - // Don't set the status_height for oldwin yet, this might break - // frame_fix_height(oldwin), therefore will be set below. + if (!(flags & WSP_BOT)) { + oldwin->w_status_height = STATUS_HEIGHT; + } } if (flags & WSP_BOT) frame_add_statusline(curfrp); frame_fix_height(wp); frame_fix_height(oldwin); - - if (!before) { - // New window above current one, set the status_height after - // frame_fix_height(oldwin) - oldwin->w_status_height = STATUS_HEIGHT; - } } if (flags & (WSP_TOP | WSP_BOT)) @@ -2904,8 +2908,9 @@ static int win_alloc_firstwin(win_T *oldwin) /* Very first window, need to create an empty buffer for it and * initialize from scratch. */ curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED); - if (curbuf == NULL) + if (curbuf == NULL) { return FAIL; + } curwin->w_buffer = curbuf; curwin->w_s = &(curbuf->b_s); curbuf->b_nwindows = 1; /* there is one window */ |