From f7a86505008bd3f98676d4aafcfa466952958bd3 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Mon, 26 Mar 2012 11:42:51 +0200 Subject: [PATCH] jscript: Added decoding support. --- dlls/jscript/Makefile.in | 1 + dlls/jscript/compile.c | 10 ++- dlls/jscript/decode.c | 180 +++++++++++++++++++++++++++++++++++++++ dlls/jscript/engine.h | 2 +- dlls/jscript/function.c | 2 +- dlls/jscript/global.c | 2 +- dlls/jscript/jscript.c | 4 +- dlls/jscript/jscript.h | 5 +- dlls/jscript/jscript.rc | 1 + dlls/jscript/resource.h | 1 + po/ar.po | 44 +++++----- po/bg.po | 45 +++++----- po/ca.po | 46 +++++----- po/cs.po | 45 +++++----- po/da.po | 46 +++++----- po/de.po | 46 +++++----- po/el.po | 45 +++++----- po/en.po | 44 +++++----- po/en_US.po | 44 +++++----- po/eo.po | 46 +++++----- po/es.po | 46 +++++----- po/fa.po | 44 +++++----- po/fi.po | 46 +++++----- po/fr.po | 46 +++++----- po/he.po | 45 +++++----- po/hi.po | 44 +++++----- po/hu.po | 46 +++++----- po/it.po | 46 +++++----- po/ja.po | 46 +++++----- po/ko.po | 46 +++++----- po/lt.po | 46 +++++----- po/ml.po | 44 +++++----- po/nb_NO.po | 46 +++++----- po/nl.po | 46 +++++----- po/or.po | 44 +++++----- po/pa.po | 44 +++++----- po/pl.po | 46 +++++----- po/pt_BR.po | 46 +++++----- po/pt_PT.po | 46 +++++----- po/rm.po | 44 +++++----- po/ro.po | 45 +++++----- po/ru.po | 46 +++++----- po/sk.po | 46 +++++----- po/sl.po | 46 +++++----- po/sr_RS@cyrillic.po | 46 +++++----- po/sr_RS@latin.po | 46 +++++----- po/sv.po | 46 +++++----- po/te.po | 44 +++++----- po/th.po | 44 +++++----- po/tr.po | 46 +++++----- po/uk.po | 46 +++++----- po/wa.po | 44 +++++----- po/wine.pot | 44 +++++----- po/zh_CN.po | 46 +++++----- po/zh_TW.po | 46 +++++----- 55 files changed, 1340 insertions(+), 907 deletions(-) create mode 100644 dlls/jscript/decode.c diff --git a/dlls/jscript/Makefile.in b/dlls/jscript/Makefile.in index 665b64decb..807f1927de 100644 --- a/dlls/jscript/Makefile.in +++ b/dlls/jscript/Makefile.in @@ -7,6 +7,7 @@ C_SRCS = \ bool.c \ compile.c \ date.c \ + decode.c \ dispex.c \ engine.c \ error.c \ diff --git a/dlls/jscript/compile.c b/dlls/jscript/compile.c index c9d814f0f7..1cbe5cbb46 100644 --- a/dlls/jscript/compile.c +++ b/dlls/jscript/compile.c @@ -1770,7 +1770,7 @@ static HRESULT compile_function(compiler_ctx_t *ctx, source_elements_t *source, return S_OK; } -HRESULT compile_script(script_ctx_t *ctx, const WCHAR *code, const WCHAR *delimiter, BOOL from_eval, +HRESULT compile_script(script_ctx_t *ctx, const WCHAR *code, const WCHAR *delimiter, BOOL from_eval, BOOL use_decode, bytecode_t **ret) { compiler_ctx_t compiler = {0}; @@ -1780,6 +1780,14 @@ HRESULT compile_script(script_ctx_t *ctx, const WCHAR *code, const WCHAR *delimi if(FAILED(hres)) return hres; + if(use_decode) { + hres = decode_source(compiler.code->source); + if(FAILED(hres)) { + WARN("Decoding failed\n"); + return hres; + } + } + hres = script_parse(ctx, compiler.code->source, delimiter, from_eval, &compiler.parser); if(FAILED(hres)) { release_bytecode(compiler.code); diff --git a/dlls/jscript/decode.c b/dlls/jscript/decode.c new file mode 100644 index 0000000000..2c39453db7 --- /dev/null +++ b/dlls/jscript/decode.c @@ -0,0 +1,180 @@ +/* + * Copyright 2012 Jacek Caban for CodeWeavers + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include "jscript.h" + +#include "wine/debug.h" + +WINE_DEFAULT_DEBUG_CHANNEL(jscript); + +/* + * This file implements algorithm for decoding scripts encoded by + * screnc.exe. The 'secret' algorithm that's well documented here: + * http://www.virtualconspiracy.com/content/articles/breaking-screnc + */ + +static const unsigned char pick_encoding[64] = { + 1,2,0,1,2,0,2,0,0,2,0,2,1,0,2,0, + 1,0,2,0,1,1,2,0,0,2,1,0,2,0,0,2, + 1,1,0,2,0,2,0,1,0,1,1,2,0,1,0,2, + 1,0,2,0,1,1,2,0,0,1,1,2,0,1,0,2}; + +static const unsigned char dictionary[][3] = { + {0x00,0x00,0x00}, {0x01,0x01,0x01}, {0x02,0x02,0x02}, {0x03,0x03,0x03}, + {0x04,0x04,0x04}, {0x05,0x05,0x05}, {0x06,0x06,0x06}, {0x07,0x07,0x07}, + {0x08,0x08,0x08}, {0x7b,0x57,0x6e}, {0x0a,0x0a,0x0a}, {0x0b,0x0b,0x0b}, + {0x0c,0x0c,0x0c}, {0x0d,0x0d,0x0d}, {0x0e,0x0e,0x0e}, {0x0f,0x0f,0x0f}, + {0x10,0x10,0x10}, {0x11,0x11,0x11}, {0x12,0x12,0x12}, {0x13,0x13,0x13}, + {0x14,0x14,0x14}, {0x15,0x15,0x15}, {0x16,0x16,0x16}, {0x17,0x17,0x17}, + {0x18,0x18,0x18}, {0x19,0x19,0x19}, {0x1a,0x1a,0x1a}, {0x1b,0x1b,0x1b}, + {0x1c,0x1c,0x1c}, {0x1d,0x1d,0x1d}, {0x1e,0x1e,0x1e}, {0x1f,0x1f,0x1f}, + {0x32,0x2e,0x2d}, {0x30,0x47,0x75}, {0x21,0x7a,0x52}, {0x29,0x56,0x60}, + {0x5b,0x42,0x71}, {0x38,0x6a,0x5e}, {0x33,0x2f,0x49}, {0x3d,0x26,0x5c}, + {0x58,0x49,0x62}, {0x3a,0x41,0x7d}, {0x35,0x34,0x29}, {0x65,0x32,0x36}, + {0x39,0x5b,0x20}, {0x5c,0x76,0x7c}, {0x56,0x72,0x7a}, {0x73,0x43,0x7f}, + {0x66,0x38,0x6b}, {0x4e,0x39,0x63}, {0x45,0x70,0x33}, {0x6b,0x45,0x2b}, + {0x62,0x68,0x68}, {0x59,0x71,0x51}, {0x78,0x4f,0x66}, {0x5e,0x09,0x76}, + {0x7d,0x62,0x31}, {0x4a,0x44,0x64}, {0x6d,0x23,0x54}, {0x71,0x75,0x43}, + {0x00,0x00,0x00}, {0x60,0x7e,0x3a}, {0x00,0x00,0x00}, {0x53,0x5e,0x7e}, + {0x00,0x00,0x00}, {0x42,0x77,0x45}, {0x27,0x4a,0x2c}, {0x48,0x61,0x2a}, + {0x72,0x5d,0x74}, {0x75,0x22,0x27}, {0x31,0x4b,0x37}, {0x37,0x6f,0x44}, + {0x4d,0x4e,0x79}, {0x52,0x3b,0x59}, {0x22,0x4c,0x2f}, {0x54,0x50,0x6f}, + {0x6a,0x67,0x26}, {0x47,0x2a,0x72}, {0x64,0x7d,0x6a}, {0x2d,0x74,0x39}, + {0x20,0x54,0x7b}, {0x7f,0x2b,0x3f}, {0x2e,0x2d,0x38}, {0x4c,0x2c,0x77}, + {0x5d,0x30,0x67}, {0x7e,0x6e,0x53}, {0x6c,0x6b,0x47}, {0x6f,0x66,0x34}, + {0x79,0x35,0x78}, {0x74,0x25,0x5d}, {0x43,0x21,0x30}, {0x26,0x64,0x23}, + {0x76,0x4d,0x5a}, {0x25,0x52,0x5b}, {0x24,0x63,0x6c}, {0x2b,0x3f,0x48}, + {0x28,0x7b,0x55}, {0x23,0x78,0x70}, {0x41,0x29,0x69}, {0x34,0x28,0x2e}, + {0x09,0x73,0x4c}, {0x2a,0x59,0x21}, {0x44,0x33,0x24}, {0x3f,0x7f,0x4e}, + {0x77,0x6d,0x50}, {0x3b,0x55,0x09}, {0x55,0x53,0x56}, {0x69,0x7c,0x73}, + {0x61,0x3a,0x35}, {0x63,0x5f,0x61}, {0x50,0x65,0x4b}, {0x67,0x46,0x58}, + {0x51,0x58,0x3b}, {0x49,0x31,0x57}, {0x4f,0x69,0x22}, {0x46,0x6c,0x6d}, + {0x68,0x5a,0x4d}, {0x7c,0x48,0x25}, {0x36,0x27,0x28}, {0x70,0x5c,0x46}, + {0x6e,0x3d,0x4a}, {0x7a,0x24,0x32}, {0x2f,0x79,0x41}, {0x5f,0x37,0x3d}, + {0x4b,0x60,0x5f}, {0x5a,0x51,0x4f}, {0x2c,0x20,0x42}, {0x57,0x36,0x65}}; + +static const int digits[] = { + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x3e, 0xff, 0xff, 0xff, 0x3f, + 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, + 0x3c, 0x3d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, + 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, + 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, + 0x17, 0x18, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, + 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, + 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, + 0x31, 0x32, 0x33, 0xff, 0xff, 0xff, 0xff, 0xff}; + +static BOOL decode_dword(const WCHAR *p, DWORD *ret) +{ + DWORD i; + + for(i=0; i<6; i++) { + if(p[i] > sizeof(digits)/sizeof(*digits) || digits[p[i]] == 0xff) + return FALSE; + } + if(p[6] != '=' || p[7] != '=') + return FALSE; + + *ret = (digits[p[0]] << 2) + + (digits[p[1]] >> 4) + + ((digits[p[1]] & 0xf) << 12) + + ((digits[p[2]] >> 2) << 8) + + ((digits[p[2]] & 0x3) << 22) + + (digits[p[3]] << 16) + + ((digits[p[4]] << 2) << 24) + + ((digits[p[5]] >> 4) << 24); + return TRUE; +} + +HRESULT decode_source(WCHAR *code) +{ + const WCHAR *src = code; + WCHAR *dst = code; + + static const WCHAR decode_beginW[] = {'#','@','~','^'}; + static const WCHAR decode_endW[] = {'^','#','~','@'}; + + while(*src) { + if(!strncmpW(src, decode_beginW, sizeof(decode_beginW)/sizeof(*decode_beginW))) { + DWORD len, i, j=0, csum, s=0; + + src += sizeof(decode_beginW)/sizeof(*decode_beginW); + + if(!decode_dword(src, &len)) + return JS_E_INVALID_CHAR; + + src += 8; + + for(i=0; i'; + break; + case '$': + s += dst[j++] = '@'; + break; + default: + FIXME("unescape %c\n", src[i]); + return E_FAIL; + } + }else if (src[i] < 128) { + s += dst[j] = dictionary[src[i]][pick_encoding[j%64]]; + j++; + }else { + FIXME("Unsupported char %c\n", src[i]); + return E_FAIL; + } + } + + src += len; + dst += j; + + if(!decode_dword(src, &csum) || s != csum) + return JS_E_INVALID_CHAR; + src += 8; + + if(strncmpW(src, decode_endW, sizeof(decode_endW)/sizeof(*decode_endW))) + return JS_E_INVALID_CHAR; + src += sizeof(decode_endW)/sizeof(*decode_endW); + }else { + *dst++ = *src++; + } + } + + *dst = 0; + + TRACE("decoded %s\n", debugstr_w(code)); + return S_OK; +} diff --git a/dlls/jscript/engine.h b/dlls/jscript/engine.h index 64c0feabad..bb6552e7b3 100644 --- a/dlls/jscript/engine.h +++ b/dlls/jscript/engine.h @@ -183,7 +183,7 @@ typedef struct _bytecode_t { struct _bytecode_t *next; } bytecode_t; -HRESULT compile_script(script_ctx_t*,const WCHAR*,const WCHAR*,BOOL,bytecode_t**) DECLSPEC_HIDDEN; +HRESULT compile_script(script_ctx_t*,const WCHAR*,const WCHAR*,BOOL,BOOL,bytecode_t**) DECLSPEC_HIDDEN; void release_bytecode(bytecode_t*) DECLSPEC_HIDDEN; static inline void bytecode_addref(bytecode_t *code) diff --git a/dlls/jscript/function.c b/dlls/jscript/function.c index 6e9d7f3845..8c7fff9efd 100644 --- a/dlls/jscript/function.c +++ b/dlls/jscript/function.c @@ -775,7 +775,7 @@ static HRESULT construct_function(script_ctx_t *ctx, DISPPARAMS *dp, jsexcept_t if(FAILED(hres)) return hres; - hres = compile_script(ctx, str, NULL, FALSE, &code); + hres = compile_script(ctx, str, NULL, FALSE, FALSE, &code); heap_free(str); if(FAILED(hres)) return hres; diff --git a/dlls/jscript/global.c b/dlls/jscript/global.c index 930b3e4173..4ed3940214 100644 --- a/dlls/jscript/global.c +++ b/dlls/jscript/global.c @@ -371,7 +371,7 @@ static HRESULT JSGlobal_eval(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DIS } TRACE("parsing %s\n", debugstr_w(V_BSTR(arg))); - hres = compile_script(ctx, V_BSTR(arg), NULL, TRUE, &code); + hres = compile_script(ctx, V_BSTR(arg), NULL, TRUE, FALSE, &code); if(FAILED(hres)) { WARN("parse (%s) failed: %08x\n", debugstr_w(V_BSTR(arg)), hres); return throw_syntax_error(ctx, ei, hres, NULL); diff --git a/dlls/jscript/jscript.c b/dlls/jscript/jscript.c index 4674ffc553..07f3efee44 100644 --- a/dlls/jscript/jscript.c +++ b/dlls/jscript/jscript.c @@ -763,7 +763,7 @@ static HRESULT WINAPI JScriptParse_ParseScriptText(IActiveScriptParse *iface, if(This->thread_id != GetCurrentThreadId() || This->ctx->state == SCRIPTSTATE_CLOSED) return E_UNEXPECTED; - hres = compile_script(This->ctx, pstrCode, pstrDelimiter, FALSE, &code); + hres = compile_script(This->ctx, pstrCode, pstrDelimiter, FALSE, This->is_encode, &code); if(FAILED(hres)) return hres; @@ -830,7 +830,7 @@ static HRESULT WINAPI JScriptParseProcedure_ParseProcedureText(IActiveScriptPars if(This->thread_id != GetCurrentThreadId() || This->ctx->state == SCRIPTSTATE_CLOSED) return E_UNEXPECTED; - hres = compile_script(This->ctx, pstrCode, pstrDelimiter, FALSE, &code); + hres = compile_script(This->ctx, pstrCode, pstrDelimiter, FALSE, This->is_encode, &code); if(FAILED(hres)) { WARN("Parse failed %08x\n", hres); return hres; diff --git a/dlls/jscript/jscript.h b/dlls/jscript/jscript.h index a64de90d3e..cd8ec4578c 100644 --- a/dlls/jscript/jscript.h +++ b/dlls/jscript/jscript.h @@ -260,7 +260,9 @@ HRESULT to_uint32(script_ctx_t*,VARIANT*,jsexcept_t*,DWORD*) DECLSPEC_HIDDEN; HRESULT to_string(script_ctx_t*,VARIANT*,jsexcept_t*,BSTR*) DECLSPEC_HIDDEN; HRESULT to_object(script_ctx_t*,VARIANT*,IDispatch**) DECLSPEC_HIDDEN; -HRESULT variant_change_type(script_ctx_t*,VARIANT*,VARIANT*,VARTYPE); +HRESULT variant_change_type(script_ctx_t*,VARIANT*,VARIANT*,VARTYPE) DECLSPEC_HIDDEN; + +HRESULT decode_source(WCHAR*) DECLSPEC_HIDDEN; BSTR int_to_bstr(int) DECLSPEC_HIDDEN; HRESULT double_to_bstr(double,BSTR*) DECLSPEC_HIDDEN; @@ -476,6 +478,7 @@ static inline DWORD make_grfdex(script_ctx_t *ctx, DWORD flags) #define JS_E_MISSING_SEMICOLON MAKE_JSERROR(IDS_SEMICOLON) #define JS_E_MISSING_LBRACKET MAKE_JSERROR(IDS_LBRACKET) #define JS_E_MISSING_RBRACKET MAKE_JSERROR(IDS_RBRACKET) +#define JS_E_INVALID_CHAR MAKE_JSERROR(IDS_INVALID_CHAR) #define JS_E_UNTERMINATED_STRING MAKE_JSERROR(IDS_UNTERMINATED_STR) #define JS_E_INVALID_BREAK MAKE_JSERROR(IDS_INVALID_BREAK) #define JS_E_INVALID_CONTINUE MAKE_JSERROR(IDS_INVALID_CONTINUE) diff --git a/dlls/jscript/jscript.rc b/dlls/jscript/jscript.rc index 8979f17689..e44a79ce7c 100644 --- a/dlls/jscript/jscript.rc +++ b/dlls/jscript/jscript.rc @@ -34,6 +34,7 @@ STRINGTABLE IDS_SEMICOLON "Expected ';'" IDS_LBRACKET "Expected '('" IDS_RBRACKET "Expected ')'" + IDS_INVALID_CHAR "Invalid character" IDS_UNTERMINATED_STR "Unterminated string constant" IDS_INVALID_BREAK "Can't have 'break' outside of loop" IDS_INVALID_CONTINUE "Can't have 'continue' outside of loop" diff --git a/dlls/jscript/resource.h b/dlls/jscript/resource.h index 326f1b4359..1f71406739 100644 --- a/dlls/jscript/resource.h +++ b/dlls/jscript/resource.h @@ -34,6 +34,7 @@ #define IDS_SEMICOLON 0x03EC #define IDS_LBRACKET 0x03ED #define IDS_RBRACKET 0x03EE +#define IDS_INVALID_CHAR 0x03F6 #define IDS_UNTERMINATED_STR 0x03F7 #define IDS_INVALID_BREAK 0x03FB #define IDS_INVALID_CONTINUE 0x03FC diff --git a/po/ar.po b/po/ar.po index 3859b9162c..cce5428cff 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3431,88 +3431,92 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:38 -msgid "Can't have 'break' outside of loop" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:40 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:41 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:42 #, fuzzy msgid "Label not found" msgstr "تعذّر إيجاد '%s'." -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 #, fuzzy msgid "Cannot delete '|'" msgstr "اح&ذف\tDel" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/bg.po b/po/bg.po index f384b0c10e..6c7714839b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3446,87 +3446,92 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 +#, fuzzy +msgid "Invalid character" +msgstr "Невалидни знаци в пътя.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy msgid "Label not found" msgstr "Файлът не е намерен" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/ca.po b/po/ca.po index 0532b0df95..290f54ecb2 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3477,86 +3477,92 @@ msgid "Expected ')'" msgstr "S'esperava ')'" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Paràmetre invàlid.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Cadena constant no finalitzat" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "No es pot tenir 'break' fora d'un bucle" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "No es pot tenir 'continue' fora d'un bucle" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Etiqueta redefinida" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Etiqueta no trobada" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "La compilació condicional està desactivada" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "S'esperava un nombre" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "S'esperava una funció" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[objecte]' no és un objecte de data" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "S'esperava un objecte" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Assignació il·legal" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' no està definit" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "S'esperava un objecte booleà" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "No es pot suprimir '|'" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "S'esperava un objecte VBArray" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "S'esperava un objecte JScript" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Error de sintaxi en l'expressió regular" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "URI per a codificar conté caràcters invàlids" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "URI per a descodificar és incorrecte" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Longitud del vector ha de ser un enter positiu finit" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "S'esperava un objecte Array" diff --git a/po/cs.po b/po/cs.po index 61a50ec352..d8b0495f60 100644 --- a/po/cs.po +++ b/po/cs.po @@ -3482,87 +3482,92 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 +#, fuzzy +msgid "Invalid character" +msgstr "Nedovolený(é) znak(y) v cestě k souboru." + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy msgid "Label not found" msgstr "Soubor nebyl nalezen" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/da.po b/po/da.po index f5f20f9f02..03b8206fcd 100644 --- a/po/da.po +++ b/po/da.po @@ -3507,90 +3507,96 @@ msgid "Expected ')'" msgstr "Forventet ')'" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Ugyldig parameter.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Uafsluttet strengkonstant" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "Kan ikke have 'break' udenfor en løkke" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "Kan ikke have 'continue' udenfor en løkke" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Etiket omdefineret" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy msgid "Label not found" msgstr "Etiket ikke fundet" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "Betinget kompilering er slået fra" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Nummer forventet" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Funktion forventet" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[objekt]' er ikke et dato objekt" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Objekt forventet" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Ulovlig tildeling" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' er ikke defineret" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Boolsk objekt forventet" -#: jscript.rc:50 +#: jscript.rc:51 #, fuzzy msgid "Cannot delete '|'" msgstr "Kan ikke slette '|'" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy msgid "VBArray object expected" msgstr "VBArray objekt forventet" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "JScript objekt forventet" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Syntaksfejl i regulært udtryk" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "URI, der skal kodes indeholder ugyldige tegn" -#: jscript.rc:54 +#: jscript.rc:55 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI, der skal kodes indeholder ugyldige tegn" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Array længde skal være et endeligt positivt heltal" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Array objekt forventet" diff --git a/po/de.po b/po/de.po index 8d7c47a451..2e3bacb62a 100644 --- a/po/de.po +++ b/po/de.po @@ -3457,86 +3457,92 @@ msgid "Expected ')'" msgstr "')' erwartet" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Ungültiger Parameter.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "konstante Zeichenkette nicht terminiert" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "Unerwartetes 'break' außerhalb einer Schleife" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "Unerwartetes 'continue' außerhalb einer Schleife" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Label neu definiert" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Label nicht gefunden" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "Bedingte Kompilierung ist ausgeschaltet" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Zahl erwartet" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Funktion erwartet" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[Objekt]' ist kein Datums-Objekt" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Objekt erwartet" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Unzulässige Zuweisung" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' nicht definiert" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Boolesches Objekt erwartet" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "Kann '|' nicht löschen" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "VBArray Objekt erwartet" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "JScript Objekt erwartet" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Syntaxfehler in regulärem Ausdruck" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "Zu entschlüsselnde URI ist ungültig" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Array-Größe muss eine natürliche Zahl sein" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Array Objekt erwartet" diff --git a/po/el.po b/po/el.po index edb67dae07..8f35fbd30f 100644 --- a/po/el.po +++ b/po/el.po @@ -3390,87 +3390,92 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 +#, fuzzy +msgid "Invalid character" +msgstr "Μη έγγυρος(οι) χαρακτήρας(ες) στο μονοπάτι.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy msgid "Label not found" msgstr "Το αρχείο δε βρέθηκε" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/en.po b/po/en.po index 1066902e81..b2db4d811a 100644 --- a/po/en.po +++ b/po/en.po @@ -3338,86 +3338,90 @@ msgid "Expected ')'" msgstr "Expected ')'" #: jscript.rc:37 +msgid "Invalid character" +msgstr "Invalid character" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Unterminated string constant" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Label not found" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "Conditional compilation is turned off" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Number expected" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Function expected" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[object]' is not a date object" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Object expected" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Illegal assignment" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' is undefined" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Boolean object expected" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "Cannot delete '|'" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "VBArray object expected" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "JScript object expected" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Syntax error in regular expression" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Array object expected" diff --git a/po/en_US.po b/po/en_US.po index 2454addaeb..459a586104 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -3451,86 +3451,90 @@ msgid "Expected ')'" msgstr "Expected ')'" #: jscript.rc:37 +msgid "Invalid character" +msgstr "Invalid character" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Unterminated string constant" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "Can't have 'break' outside of loop" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "Can't have 'continue' outside of loop" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Label redefined" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Label not found" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "Conditional compilation is turned off" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Number expected" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Function expected" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[object]' is not a date object" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Object expected" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Illegal assignment" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' is undefined" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Boolean object expected" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "Cannot delete '|'" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "VBArray object expected" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "JScript object expected" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Syntax error in regular expression" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Array object expected" diff --git a/po/eo.po b/po/eo.po index 75fabc18a9..2bf03ca76b 100644 --- a/po/eo.po +++ b/po/eo.po @@ -3361,86 +3361,92 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Nevalida parametro.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Etikedo ne trovita" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/es.po b/po/es.po index 78b2de09cc..60e5ada326 100644 --- a/po/es.po +++ b/po/es.po @@ -3468,86 +3468,92 @@ msgid "Expected ')'" msgstr "Esperado ')'" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Parámetro inválido.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Constante de cadena no terminada" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "No se puede usar 'break' fuera de un bucle" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "No se puede usar 'continue' fuera de un bucle" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Etiqueta vuelta a definir" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Etiqueta no encontrada" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "La compilación condicional está desactivada" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Número esperado" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Función esperada" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[objeto]' no es un objeto de fecha" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Objeto esperado" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Asignación ilegal" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' no está definido" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Objeto Booleano esperado" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "No se puede borrar '|'" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "Objeto VBArray esperado" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "Objeto JScript esperado" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Error de sintaxis en la expresión regular" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "URI a codificar contiene caracteres no válidos" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "URI a decodificar es incorrecta" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "La longitud del array debe ser un entero positivo finito" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Objeto array esperado" diff --git a/po/fa.po b/po/fa.po index 35b250b76d..be1297c0d4 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3431,88 +3431,92 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:38 -msgid "Can't have 'break' outside of loop" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:40 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:41 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:42 #, fuzzy msgid "Label not found" msgstr "'%s' پیدا نشد." -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 #, fuzzy msgid "Cannot delete '|'" msgstr "&حذف\tDel" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/fi.po b/po/fi.po index 239df7aafc..7e40c74dae 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3446,86 +3446,92 @@ msgid "Expected ')'" msgstr "Odotettiin merkkiä ')'" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Virheellinen parametri.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Päättymätön merkkijonovakio" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "'break' ei voi esiintyä silmukan ulkopuolella" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "'continue' ei voi esiintyä silmukan ulkopuolella" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Nimiö määritelty toistamiseen" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Nimiötä ei löydy" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "Ehdollinen kääntäminen on pois käytöstä" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Odotettiin lukua" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Odotettiin funktiota" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[objekti]' ei ole päivämääräobjekti" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Odotettiin objektia" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Virheellinen sijoitus" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' on määrittelemätön" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Odotettiin totuusarvoa" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "Ei voida poistaa '|':tä" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "Odotettiin VBArray-objektia" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "Odotettiin JScript-objektia" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Syntaksivirhe säännöllisessä lausekkeessa" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "Enkoodattava URI sisältää virheellisiä merkkejä" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "Dekoodattava URI on virheellinen" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Taulukon pituuden täytyy olla positiivinen kokonaisluku" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Odotettiin taulukkoa" diff --git a/po/fr.po b/po/fr.po index c2c6984471..0512fbb55e 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3474,86 +3474,92 @@ msgid "Expected ')'" msgstr "« ) » attendu" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Paramètre non valide.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Constante chaîne de caractères non clôturée" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "« break » impossible à l'extérieur d'une boucle" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "« continue » impossible à l'extérieur d'une boucle" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Étiquette redéfinie" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Étiquette introuvable" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "La compilation conditionnelle est désactivée" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Nombre attendu" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Fonction attendue" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "« [objet] » n'est pas un objet de type date" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Objet attendu" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Affectation illégale" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "« | » n'est pas défini" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Objet booléen attendu" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "Impossible de supprimer « | »" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "Objet VBArray attendu" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "Objet JScript attendu" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Erreur de syntaxe dans l'expression rationnelle" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "L'URI à coder contient des caractères invalides" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "L'URI à décoder est incorrecte" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "La longueur d'un tableau doit être un entier positif" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Objet tableau attendu" diff --git a/po/he.po b/po/he.po index 57253bee1f..24c20d1d24 100644 --- a/po/he.po +++ b/po/he.po @@ -3440,88 +3440,93 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 +#, fuzzy +msgid "Invalid character" +msgstr "Error: Invalid command line parameters.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy msgid "Label not found" msgstr "הקובץ לא נמצא" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' אינו מוגדר" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 #, fuzzy msgid "Cannot delete '|'" msgstr "תאריך המחיקה" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/hi.po b/po/hi.po index 3a0692021b..0b6c744cf1 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3369,86 +3369,90 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:38 -msgid "Can't have 'break' outside of loop" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:40 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:42 +msgid "Label not found" +msgstr "" + +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/hu.po b/po/hu.po index 4d9003a213..1dc7a0c509 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3469,86 +3469,92 @@ msgid "Expected ')'" msgstr "Hiányzó ')'" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Érvénytelen paraméter.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Lezáratlan sztring konstans" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "Nem lehet 'break' a cikluson kívűl" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "Nem lehet 'continue' a cikluson kívül" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Címke újradefiniált" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Címke nem található" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "Feltételes fordítás kikapcsolva" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Számot vártam" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Függvényt vártam" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'Az [object]' nem egy date (dátum) objektum" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Objektumot vártam" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Nem megengedett összerendelés" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "A '|' nem definiált" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Boolean (igaz-hamis) objektumot vártam" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "'|' nem törölhető" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "Tömb objektumot vártam" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "JScript objektumot vártam" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Szinttaktikai hiba a reguláris kifejezésben" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "A tömb hosszának egy véges pozitív egész számnak kell lennie" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Tömb objektumot vártam" diff --git a/po/it.po b/po/it.po index dd9f7442d3..ecff96ef29 100644 --- a/po/it.po +++ b/po/it.po @@ -3477,86 +3477,92 @@ msgid "Expected ')'" msgstr "Richiesto ')'" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Parametro non valido.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Costante stringa non terminata" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "Impossibile avere 'break' fuori dal ciclo" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "Impossibile avere 'continue' fuori dal ciclo" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Etichetta ridefinita" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Etichetta non trovata" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "Compilazione condizionale disattivata" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Richiesto un numero" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Richiesta una funzione" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[oggetto]' non è un oggetto data" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Previsto un oggetto" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Assegnamento illegale" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' non è definito" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Previsto un oggetto Booleano" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "Impossibile eliminare '|'" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "Previsto un oggetto VBArray" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "Previsto un oggetto JScript" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Errore di sintassi nell'espressione regolare" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "L'URI da codificare contiene caratteri non validi" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "L'URI da decodificare non è corretto" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "La lunghezza dell'array deve essere un intero finito e positivo" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Previsto un oggetto array" diff --git a/po/ja.po b/po/ja.po index 427f2697f8..61849e01ba 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3449,86 +3449,92 @@ msgid "Expected ')'" msgstr "')'を期待していました" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "パラメータは正しくありません。\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "文字列定数が終端していません" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "ループ外で break は使えません" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "ループ外で continue は使えません" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "ラベルが見つかりません" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "条件コンパイルはオフにされています" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "数値を期待していました" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "関数を期待していました" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[object]' は日付オブジェクトではありません" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "オブジェクトを期待していました" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "不正な代入です" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|'は未定義です" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Boolean オブジェクトを期待していました" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "'|'を削除できません" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "VBArray オブジェクトを期待していました" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "JScript オブジェクトを期待していました" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "正規表現に構文誤りがあります" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "エンコードされるURIに無効な文字が含まれています" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "デコードされるURIが正しくありません" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "配列の長さは有限の正整数でなければなりません" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "配列オブジェクトを期待していました" diff --git a/po/ko.po b/po/ko.po index e3f1ed2673..41669a1efc 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3440,86 +3440,92 @@ msgid "Expected ')'" msgstr "')' 가 필요합니다" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "잘못된 매개변수.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "끝나지 않은 문자열 상수" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "루프 바깥에는 'break'를 사용할 수 없음" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "루프 바깥에는 'continue'를 사용할 수 없음" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "라벨이 정의되지 않음" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "라벨을 찾을 수 없음" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "조건부 컴파일이 해제되어 있음" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "숫자가 필요합니다" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "함수가 필요합니다" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[객체]' 는 날짜 객체가 아님" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "객체가 필요합니다" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "잘못된 할당" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' 는 정의되지 않았음" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "볼린 객제가 필요함" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "'|'를 지울 수 없음" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "VBArray 갹체가 필요함" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "JScript 객체가 필요함" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "정규 표현식에 문법오류가 있음" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "URI 는 올바르지 않은 문자를 포함해서 인코딩되었음" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "해독하는 URI가 올바르지 않음" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "배열 길이는 반드시 한정된 양의 정수이어야 함" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "배열 객체가 필요함" diff --git a/po/lt.po b/po/lt.po index 85c26b9c70..d99d6b97d2 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3460,86 +3460,92 @@ msgid "Expected ')'" msgstr "Tikėtasi „)“" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Neteisingas parametras.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Nebaigta eilutės konstanta" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "Negalima turėti „break“ ne cikle" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "Negalima turėti „continue“ ne cikle" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Žymė apibrėžta iš naujo" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Žymė nerasta" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "Sąlyginis kompiliavimas yra išjungtas" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Tikėtasi skaičiaus" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Tikėtasi funkcijos" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "„[objektas]“ nėra datos objektas" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Tikėtasi objekto" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Neleistinas priskyrimas" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "„|“ yra neapibrėžtas" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Tikėtasi loginio objekto" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "Negalima pašalinti „|“" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "Tikėtasi VBArray objekto" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "Tikėtasi JScript objekto" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Sintaksės klaida reguliariajame reiškinyje" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "Koduotiname URI yra netinkamų simbolių" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "Dekoduojamas URI yra neteisingas" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Tikėtasi masyvo objekto" diff --git a/po/ml.po b/po/ml.po index 34528afd49..a79baa25ae 100644 --- a/po/ml.po +++ b/po/ml.po @@ -3369,86 +3369,90 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:38 -msgid "Can't have 'break' outside of loop" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:40 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:42 +msgid "Label not found" +msgstr "" + +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index 52a4695654..d607fa9275 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -3614,90 +3614,96 @@ msgid "Expected ')'" msgstr "Forventet ')'" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Ugyldig parameter.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Uavsluttet strengkonstant" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy msgid "Label not found" msgstr "Fant ikke filen" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Forventet nummer" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Forventet funksjon" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[object]' er ikke et dataobjekt" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Forventet objekt" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Ugyldig tilordning" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' er udefinert" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Forventet boolsk verdi" -#: jscript.rc:50 +#: jscript.rc:51 #, fuzzy msgid "Cannot delete '|'" msgstr "Klarte ikke fullføre\n" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy msgid "VBArray object expected" msgstr "Forventet rekke-objekt" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "Forventet JScript-objekt" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Syntaksfeil i regulært uttrykk" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "URI'en som skulle kodes inneholder ugyldige tegn" -#: jscript.rc:54 +#: jscript.rc:55 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI'en som skulle kodes inneholder ugyldige tegn" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Rekkens lengde må være et endelig, positivt tall" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Forventet rekke-objekt" diff --git a/po/nl.po b/po/nl.po index bea997a38d..fd6603091b 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3496,88 +3496,94 @@ msgid "Expected ')'" msgstr "')' verwacht" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Ongeldige parameter.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Onafgesloten tekenreeksconstante" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy msgid "Label not found" msgstr "Bestand niet gevonden" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "Conditionele compilatie is uitgeschakeld" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Getal verwacht" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Functie verwacht" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[object]' is geen datum object" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Object verwacht" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Ongeldige toekenning" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' is ongedefinieerd" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Boolean object verwacht" -#: jscript.rc:50 +#: jscript.rc:51 #, fuzzy msgid "Cannot delete '|'" msgstr "Kan niet voltooien\n" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "VBArray object verwacht" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "JScript object verwacht" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Syntax fout in reguliere expressie" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "De te coderen URI bevat ongeldige tekens" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "De te decoderen URI is niet correct" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Array lengte moet een eindig, positief geheel getal zijn" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Array object verwacht" diff --git a/po/or.po b/po/or.po index 67a5c00af4..1c08474700 100644 --- a/po/or.po +++ b/po/or.po @@ -3369,86 +3369,90 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:38 -msgid "Can't have 'break' outside of loop" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:40 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:42 +msgid "Label not found" +msgstr "" + +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/pa.po b/po/pa.po index c64a45f6c6..1f3744df60 100644 --- a/po/pa.po +++ b/po/pa.po @@ -3369,86 +3369,90 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:38 -msgid "Can't have 'break' outside of loop" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:40 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:42 +msgid "Label not found" +msgstr "" + +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/pl.po b/po/pl.po index ac1c794890..9dbe9cd0c5 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3483,86 +3483,92 @@ msgid "Expected ')'" msgstr "Oczekiwane ')'" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Niepoprawny parametr.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Niezakończona stała znakowa" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "Nie można umieścić 'break' poza pętlą" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "Nie można umieścić 'continue' poza pętlą" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Etykieta zdefiniowana ponownie" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Nie znaleziono etykiety" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "Warunkowa kompilacja jest wyłączona" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Oczekiwana liczba" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Oczekiwana funkcja" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[obiekt]' nie jest obiektem daty" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Oczekiwany obiekt" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Niepoprawne przypisanie" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' jest niezdefiniowany" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Oczekiwany obiekt boolean" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "Nie można usunąć '|'" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "Oczekiwany obiekt VBArray" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "Oczekiwany obiekt JScript" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Błąd składni w regularnym wyrażeniu" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "Kodowane URI zawiera niewłaściwe znaki" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "URI do dekodowania jest niepoprawny" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Oczekiwany obiekt tablicowy" diff --git a/po/pt_BR.po b/po/pt_BR.po index 7fbc8d035b..5238525d6c 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3475,86 +3475,92 @@ msgid "Expected ')'" msgstr "')' esperado" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Parâmetro inválido.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Constante de string não terminada" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "Não pode haver 'break' fora de um loop" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "Não pode haver 'continue' fora de um loop" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Rótulo redefinido" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Rótulo não encontrado" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "Compilação condicional está desligada" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Número esperado" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Função esperada" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[object]' não é um objeto de data" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Objeto esperado" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Atribuição ilegal" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' é indefinido" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Objeto booleano esperado" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "Não é possível excluir '|'" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "Objeto VBArray esperado" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "Objeto JScript esperado" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Erro de sintaxe na expressão regular" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "URI a ser codificado está incorreto" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Tamanho do vetor tem que ser um inteiro finito positivo" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Objeto Vetor esperado" diff --git a/po/pt_PT.po b/po/pt_PT.po index 091990723d..f935bf310c 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -3474,86 +3474,92 @@ msgid "Expected ')'" msgstr "')' esperado" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Parâmetro inválido.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Constante de string não terminada" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "Não pode ter um 'break' fora do ciclo" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "Não pode ter um 'continue' fora do ciclo" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Etiqueta redefinida" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Etiqueta não encontrada" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "A compilação condicional está desactivada" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Número esperado" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Função esperada" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[object]' não é um objecto de data" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Objecto esperado" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Atribuição ilegal" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' é indefinido" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Objecto boleano esperado" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "Não se pode apagar '|'" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "Objecto VBArray esperado" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "Objecto JScript esperado" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Erro de sintaxe na expressão regular" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "URI a ser descodificado é incorreto" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Tamanho do vector tem de ser um inteiro finito positivo" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Objecto Array esperado" diff --git a/po/rm.po b/po/rm.po index 3d1162e8de..d293e095b8 100644 --- a/po/rm.po +++ b/po/rm.po @@ -3397,86 +3397,90 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:38 -msgid "Can't have 'break' outside of loop" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:40 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:42 +msgid "Label not found" +msgstr "" + +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/ro.po b/po/ro.po index deef2fa2a0..dbe9c6c364 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3450,88 +3450,93 @@ msgid "Expected ')'" msgstr "Se așteaptă „)”" #: jscript.rc:37 +#, fuzzy +msgid "Invalid character" +msgstr "Eroare: Parametri nevalizi pentru linia de comandă.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Șir constant neterminat" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Eticheta nu a fost găsită" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Se așteaptă un număr" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Se așteaptă o funcție" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "„[obiect]” nu este un obiect de tip dată" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Se așteaptă un obiect" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Atribuire ilegală" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "„|” nu este definit" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Se așteaptă un obiect boolean" -#: jscript.rc:50 +#: jscript.rc:51 #, fuzzy msgid "Cannot delete '|'" msgstr "Data ștergerii" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "Se așteaptă un obiect VBArray" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "Se așteaptă un obiect JScript" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Eroare de sintaxă în expresia regulată" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "URI care trebuie codificat conține caractere nevalide" -#: jscript.rc:54 +#: jscript.rc:55 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI care trebuie codificat conține caractere nevalide" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Se așteaptă un obiect matrice" diff --git a/po/ru.po b/po/ru.po index 532fd6a7c5..75233b5fd5 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3458,86 +3458,92 @@ msgid "Expected ')'" msgstr "Ожидается ')'" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Неверный параметр.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Незавершённая строковая константа" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "Выражение 'break' не может находится вне цикла" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "Выражение 'continue' не может находится вне цикла" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Метка переопределена" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Метка не найдена" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "Условная компиляция отключена" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Ожидается число" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Ожидается функция" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[object]' не объект типа 'date'" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Ожидается объект" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Неверное присваивание" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' не определён" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Ожидается объект типа 'bool'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "Невозможно удалить '|'" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "Ожидается объект типа 'VBArray'" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "Ожидается объект типа 'JScript'" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Синтаксическая ошибка в регулярном выражении" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "В кодируемом URI обнаружен неверный символ" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "Декодируемый URI неверен" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Длиной массива должно быть конечное положительное число" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Ожидается объект типа 'Array'" diff --git a/po/sk.po b/po/sk.po index 4a8390677f..8a2ab0fc15 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3377,86 +3377,92 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Nesprávny parameter.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Pole nenájdené" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Očakávané číslo" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Očakávaná funkcia" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Očakávaný objekt" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/sl.po b/po/sl.po index 92ac7d9fa9..3066e1fa2c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3466,86 +3466,92 @@ msgid "Expected ')'" msgstr "Pričakovan je bil ')'" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Neveljaven parameter.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Nedoločena konstanta niza" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "Ni mogoče imeti 'premora' izven zanke" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "Izven zanke ni mogoče imeti 'continue'" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Ponovna definicija oznake" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Oznake ni mogoče najti" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "Pogojno kodno prevajanje je izklopljeno" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Pričakovano je bilo število" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Pričakovana je bila funkcija" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[object]' ni predmet datuma" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Pričakovan je bil predmet" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Neveljavna dodelitev" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' ni določen" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Pričakovan je bil Boolov predmet" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "Ni mogoče izbrisati '|'" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "Pričakovan je bil predmet VBArray" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "Pričakovan je bil predmet JScript" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Napaka skladnje v logičnem izrazu" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "URI za kodiranje vsebuje neveljavne znake" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "URI za odkodiranje je nepravilen" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Dolžina polja mora bit pozitivno celo število" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Pričakovan je bil predmet polja" diff --git a/po/sr_RS@cyrillic.po b/po/sr_RS@cyrillic.po index 08e13c2a3e..96360f5ba9 100644 --- a/po/sr_RS@cyrillic.po +++ b/po/sr_RS@cyrillic.po @@ -3476,89 +3476,95 @@ msgid "Expected ')'" msgstr "Очекивано ')'" #: jscript.rc:37 +#, fuzzy +msgid "Invalid character" +msgstr "" +"Грешка: унесени су непознати или неисправни параметри наредбене линије.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Незавршена константа ниски" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy msgid "Label not found" msgstr "Датотека није пронађена" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Очекивани број" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Очекивана функција" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "„[object]“ није временски објекат" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Очекивани објекат" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Недозвољен задатак" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "„|“ није одређено" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Очекивани објекат истинитосне вредности" -#: jscript.rc:50 +#: jscript.rc:51 #, fuzzy msgid "Cannot delete '|'" msgstr "Датум брисања" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "VBArray објекат се очекује" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "Очекивани објекат JScript врсте" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Синтаксна грешка у регуларном изразу" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "URI садржи неисправне знакове" -#: jscript.rc:54 +#: jscript.rc:55 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI садржи неисправне знакове" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Низ дужине мора бити коначан позитиван цео број" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Очекивани низ објекта" diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index 7c613e394b..2b6e9901d8 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.po @@ -3554,89 +3554,95 @@ msgid "Expected ')'" msgstr "Očekivano ')'" #: jscript.rc:37 +#, fuzzy +msgid "Invalid character" +msgstr "" +"Greška: uneseni su nepoznati ili neispravni parametri naredbene linije.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Nezavršena konstanta niski" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy msgid "Label not found" msgstr "Datoteka nije pronađena" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Očekivani broj" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Očekivana funkcija" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "„[object]“ nije vremenski objekat" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Očekivani objekat" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Nedozvoljen zadatak" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "„|“ nije određeno" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Očekivani objekat istinitosne vrednosti" -#: jscript.rc:50 +#: jscript.rc:51 #, fuzzy msgid "Cannot delete '|'" msgstr "Datum brisanja" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "VBArray objekat se očekuje" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "Očekivani objekat JScript vrste" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Sintaksna greška u regularnom izrazu" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "URI sadrži neispravne znakove" -#: jscript.rc:54 +#: jscript.rc:55 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI sadrži neispravne znakove" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Niz dužine mora biti konačan pozitivan ceo broj" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Očekivani niz objekta" diff --git a/po/sv.po b/po/sv.po index 982fa2b2c3..cdd3d3c0a9 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3448,86 +3448,92 @@ msgid "Expected ')'" msgstr "')' förväntades" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Ogiltig parameter.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Oterminerad strängkonstant" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Etiketten hittades inte" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "Villkorlig kompilering är avslagen" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Nummer förväntades" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Funktion förväntades" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[object]' är inte ett datumobjekt" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Objekt förväntades" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Ogiltig tilldelning" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' är odefinierat" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Boolskt objekt förväntades" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "'|' kan inte tas bort" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "VBArray-objekt förväntades" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "JScript-objekt förväntades" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Syntaxfel i reguljärt uttryck" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "Den URI som ska kodas innehåller ogiltiga tecken" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "Den URI som ska avkodas är felaktig" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Array-längd måste vara ett positivt ändligt heltal" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Array-objekt förväntades" diff --git a/po/te.po b/po/te.po index 83449081e1..36c9f809e9 100644 --- a/po/te.po +++ b/po/te.po @@ -3369,86 +3369,90 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:38 -msgid "Can't have 'break' outside of loop" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:40 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:42 +msgid "Label not found" +msgstr "" + +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/th.po b/po/th.po index c573cff707..9c93f500f0 100644 --- a/po/th.po +++ b/po/th.po @@ -3407,88 +3407,92 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:38 -msgid "Can't have 'break' outside of loop" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:40 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:41 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:42 #, fuzzy msgid "Label not found" msgstr "ไม่พบแฟ้ม" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 #, fuzzy msgid "Cannot delete '|'" msgstr "ลบ\tDel" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/tr.po b/po/tr.po index c2993d071b..f31afeb8e1 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3354,86 +3354,92 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Geçersiz parametre.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/uk.po b/po/uk.po index e68ab19916..d302de9084 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3460,86 +3460,92 @@ msgid "Expected ')'" msgstr "Очікується ')'" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "Невірний параметр.\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "Незавершена рядкова константа" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "'break' не може знаходитись за циклом" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "'continue' не може знаходитись за циклом" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "Мітка перевизначена" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "Мітку не знайдено" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "Умовна компіляція вимкнена" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "Очікується число" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "Очікується функція" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "'[object]' не об'єкт типу date" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "Очікується об'єкт" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "Невірне присвоєння" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "'|' не визначено" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "Очікується об'єкт Boolean" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "Неможливо видалити '|'" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "Очікується об'єкт VBArray" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "Очікується об'єкт JScript" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "Синтаксична помилка в регулярному виразі" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "URI, що буде закодований, містить неприпустимі символи" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "URI, що буде закодований, некоректний" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "Очікується об'єкт Array" diff --git a/po/wa.po b/po/wa.po index 241414190a..dc9a59d3d6 100644 --- a/po/wa.po +++ b/po/wa.po @@ -3416,88 +3416,92 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:38 -msgid "Can't have 'break' outside of loop" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:40 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:41 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:42 #, fuzzy msgid "Label not found" msgstr "'%s' pout nén esse trové." -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 #, fuzzy msgid "Cannot delete '|'" msgstr "&Rafacer\tDel" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/wine.pot b/po/wine.pot index 51ed6ce59a..d40fee1c9b 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -3331,86 +3331,90 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:38 -msgid "Can't have 'break' outside of loop" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:40 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:42 +msgid "Label not found" +msgstr "" + +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 45c92aba5c..360b932e2f 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3360,86 +3360,92 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "无效参数。\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "找不到标签" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "不能删除 '|'" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index a8c3528a38..b611fa1660 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3359,86 +3359,92 @@ msgid "Expected ')'" msgstr "" #: jscript.rc:37 +#, fuzzy +#| msgid "Invalid parameter.\n" +msgid "Invalid character" +msgstr "無效的參數。\n" + +#: jscript.rc:38 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Label redefined" msgstr "標籤重複定義" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label not found" msgstr "找不到標籤" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Conditional compilation is turned off" msgstr "條件編譯已被關閉" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Number expected" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Function expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Illegal assignment" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "'|' is undefined" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Boolean object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Cannot delete '|'" msgstr "無法刪除 '|'" -#: jscript.rc:51 +#: jscript.rc:52 msgid "VBArray object expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "JScript object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Array object expected" msgstr "" -- 2.32.0.93.g670b81a890