diff --git a/dlls/jscript/engine.c b/dlls/jscript/engine.c index 548bc2560c6..bca632129bc 100644 --- a/dlls/jscript/engine.c +++ b/dlls/jscript/engine.c @@ -67,7 +67,7 @@ static const size_t stack_size = 0x4000; static HRESULT stack_push(script_ctx_t *ctx, jsval_t v) { if(ctx->stack_top == stack_size) - return E_OUTOFMEMORY; + return JS_E_STACK_OVERFLOW; ctx->stack[ctx->stack_top++] = v; return S_OK; diff --git a/dlls/jscript/jscript.h b/dlls/jscript/jscript.h index 2a2250d3e91..b84f62ff336 100644 --- a/dlls/jscript/jscript.h +++ b/dlls/jscript/jscript.h @@ -522,6 +522,7 @@ static inline DWORD make_grfdex(script_ctx_t *ctx, DWORD flags) #define JS_E_TO_PRIMITIVE MAKE_JSERROR(IDS_TO_PRIMITIVE) #define JS_E_INVALIDARG MAKE_JSERROR(IDS_INVALID_CALL_ARG) #define JS_E_SUBSCRIPT_OUT_OF_RANGE MAKE_JSERROR(IDS_SUBSCRIPT_OUT_OF_RANGE) +#define JS_E_STACK_OVERFLOW MAKE_JSERROR(IDS_STACK_OVERFLOW) #define JS_E_OBJECT_REQUIRED MAKE_JSERROR(IDS_OBJECT_REQUIRED) #define JS_E_CANNOT_CREATE_OBJ MAKE_JSERROR(IDS_CREATE_OBJ_ERROR) #define JS_E_INVALID_PROPERTY MAKE_JSERROR(IDS_NO_PROPERTY) diff --git a/dlls/jscript/jscript.rc b/dlls/jscript/jscript.rc index b36e76b4ecb..ac280e3371a 100644 --- a/dlls/jscript/jscript.rc +++ b/dlls/jscript/jscript.rc @@ -27,6 +27,7 @@ STRINGTABLE IDS_TO_PRIMITIVE "Error converting object to primitive type" IDS_INVALID_CALL_ARG "Invalid procedure call or argument" IDS_SUBSCRIPT_OUT_OF_RANGE "Subscript out of range" + IDS_STACK_OVERFLOW "Out of stack space" IDS_OBJECT_REQUIRED "Object required" IDS_CREATE_OBJ_ERROR "Automation server can't create object" IDS_NO_PROPERTY "Object doesn't support this property or method" diff --git a/dlls/jscript/resource.h b/dlls/jscript/resource.h index fc51106482b..18c22bd04d9 100644 --- a/dlls/jscript/resource.h +++ b/dlls/jscript/resource.h @@ -25,6 +25,7 @@ #define IDS_TO_PRIMITIVE 0x0001 #define IDS_INVALID_CALL_ARG 0x0005 #define IDS_SUBSCRIPT_OUT_OF_RANGE 0x0009 +#define IDS_STACK_OVERFLOW 0x001C #define IDS_OBJECT_REQUIRED 0x01A8 #define IDS_CREATE_OBJ_ERROR 0x01AD #define IDS_NO_PROPERTY 0x01B6 diff --git a/dlls/jscript/tests/api.js b/dlls/jscript/tests/api.js index eeffa386efc..9c9d3fa56f9 100644 --- a/dlls/jscript/tests/api.js +++ b/dlls/jscript/tests/api.js @@ -2507,7 +2507,9 @@ var exception_array = { E_REGEXP_SYNTAX_ERROR: { type: "RegExpError", number: -2146823271 }, E_URI_INVALID_CHAR: { type: "URIError", number: -2146823264 }, - E_URI_INVALID_CODING: { type: "URIError", number: -2146823263 } + E_URI_INVALID_CODING: { type: "URIError", number: -2146823263 }, + + E_STACK_OVERFLOW: { type: "Error", number: -2146828260 } }; function testException(func, id) { @@ -2519,10 +2521,12 @@ function testException(func, id) { } catch(e) { ret = e.name; num = e.number; + trace(e.message); } ok(ret === ex.type, "Exception test, ret = " + ret + ", expected " + ex.type +". Executed function: " + func.toString()); - ok(num === ex.number, "Exception test, num = " + num + ", expected " + ex.number + ". Executed function: " + func.toString()); + ok(num === ex.number, "Exception test, num = " + num + " (" + (num + 0x80000000).toString(16) + "), expected " + ex.number + + ". Executed function: " + func.toString()); } // RangeError tests @@ -2565,6 +2569,8 @@ testException(function() {undefined.toString();}, "E_OBJECT_EXPECTED"); testException(function() {null.toString();}, "E_OBJECT_EXPECTED"); testException(function() {RegExp.prototype.toString.call(new Object());}, "E_REGEXP_EXPECTED"); +testException(function() { return arguments.callee(); }, "E_STACK_OVERFLOW"); + obj = new Object(); obj.prop = 1; tmp = false; diff --git a/po/ar.po b/po/ar.po index e919ec75070..b85b3b7b2b1 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3646,210 +3646,216 @@ msgid "Subscript out of range" msgstr "الأمر خارج المدى" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "لا يوجد أوراق; " + +#: jscript.rc:32 msgid "Object required" msgstr "العنصر ضروري" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "لم يستطع الخادم إنشاء العنصر" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "العنصر لا يدعم هذه الآلية" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "العنصر لا يدعم هذه الحركة" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "المتغير ليس اختياريًا" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "خطأ بنيوي" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "متوقع ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "متوقع '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "متوقع ')'" -#: jscript.rc:40 +#: jscript.rc:41 #, fuzzy #| msgid "Subject Key Identifier" msgid "Expected identifier" msgstr "معرف مفتاح الموضوع" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy #| msgid "Expected ';'" msgid "Expected '='" msgstr "متوقع ';'" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "محرف غير سليم" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "قيمة غير منتهية" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "جملة 'return' خارج العملية" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "لا يمكن استخدام 'break' خارج الدوامة" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "لا يمكن استخدام 'continue' خارج الدوامة" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "وسم معاد تعريفه" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "الوسم غير معروف" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@end'" msgstr "متوقع ';'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "البناء الشرطي معطل" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@'" msgstr "متوقع ';'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "خطأ غير معلوم" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "رقم متوقع" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "وظيفة متوقعة" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[object]' ليس عنصر تاريخ" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "عنصر متوقع" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "مهمة غير مسموحة" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' غير معرف" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "عنصر منطقي متوقع" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "لا يمكن حذف '|'" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "عنصر متغير VB متوقع" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "عنصر جافا سكربت متوقع" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "عنصر مصفوفة متوقع" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "عنصر منطقي متوقع" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "خطأ بنيوي في تفسير نظامي" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "الرابط المراد تشفيره يحوي محارف غير سليمة" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "الرابط المراد تشفيره غير صحيح" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "عدد الأرقام المجزأة خارج المدى" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "الدقة خارج المدى" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "يجب أن يكون طول المصفوفة عدد صحيح موجب محدود" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "عنصر مصفوفة متوقع" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ast.po b/po/ast.po index bccef330826..1d29f8ae96d 100644 --- a/po/ast.po +++ b/po/ast.po @@ -3539,196 +3539,200 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 -msgid "Object required" +msgid "Out of stack space" msgstr "" #: jscript.rc:32 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:33 +msgid "Automation server can't create object" +msgstr "" + +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "L'oxetu nun sofita esta propiedá o métodu" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "L'oxetu nun sofita esta aición" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "L'argumentu nun ye opcional" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Esperábase «;»" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Esperábase «(»" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Esperábase «)»" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "Esperábase «=»" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "El caráuter nun ye válidu" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "Esperábase «@end»" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "Esperábase «@»" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 msgid "Unknown runtime error" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Asignación illegal" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "«|» nun se definió" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "" -#: jscript.rc:62 +#: jscript.rc:63 msgid "Enumerator object expected" msgstr "" -#: jscript.rc:63 +#: jscript.rc:64 msgid "Regular Expression object expected" msgstr "" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/bg.po b/po/bg.po index 8c2f3d70249..c4342003089 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3662,201 +3662,207 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Няма хартия; " + +#: jscript.rc:32 msgid "Object required" msgstr "" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 #, fuzzy msgid "Invalid character" msgstr "Невалидни знаци в пътя.\n" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Label not found" msgstr "Файлът не е намерен" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy msgid "Unknown runtime error" msgstr "Пре&гледай изходния код" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "" -#: jscript.rc:62 +#: jscript.rc:63 msgid "Enumerator object expected" msgstr "" -#: jscript.rc:63 +#: jscript.rc:64 msgid "Regular Expression object expected" msgstr "" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:69 +#: jscript.rc:70 #, fuzzy #| msgid "Print range" msgid "Precision is out of range" msgstr "Разпечатай" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ca.po b/po/ca.po index 0d09c52aa50..c2c226bac3e 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3646,188 +3646,194 @@ msgid "Subscript out of range" msgstr "El subíndex és fora d'interval" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "No queda paper; " + +#: jscript.rc:32 msgid "Object required" msgstr "Es requereix un objecte" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "El servidor d'automatització no pot crear l'objecte" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "L'objecte no accepta aquesta propietat o mètode" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "L'objecte no accepta aquesta acció" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argument no opcional" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Error de sintaxi" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "S'esperava ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "S'esperava '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "S'esperava ')'" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "S'esperava un identificador" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "S'esperava '='" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Caràcter no vàlid" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Cadena constant no terminat" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "declaració 'return' fora d'una funció" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "No es pot tenir 'break' fora d'un bucle" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "No es pot tenir 'continue' fora d'un bucle" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "S'ha redefinit l'etiqueta" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "No s'ha trobat l'etiqueta" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "S'esperava '@end'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "La compilació condicional està desactivada" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "S'esperava '@'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Error desconegut" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "S'esperava un nombre" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "S'esperava una funció" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[objecte]' no és un objecte de data" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "S'esperava un objecte" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Assignació il·legal" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' no està definit" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "S'esperava un objecte booleà" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "No es pot suprimir '|'" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "S'esperava un objecte VBArray" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "S'esperava un objecte JScript" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "S'esperava un objecte Array" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "S'esperava un objecte booleà" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Error de sintaxi en l'expressió regular" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "L'URI a codificar conté caràcters no vàlids" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "L'URI a descodificar és incorrecte" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "El nombre de xifres de fracció és fora d'interval" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "La precisió és fora d'interval" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "La longitud del vector ha de ser un nombre enter positiu finit" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "S'esperava un objecte Array" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" @@ -3835,15 +3841,15 @@ msgstr "" "no es pot establir l'atribut 'writable' en el descriptor de propietat com a " "'true' en aquest objecte" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "No es pot redefinir la propietat no configurable '|'" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "No es pot modificar la propietat no escrivible '|'" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "La propietat no pot tenir ambdós mètodes d'accés i un valor" diff --git a/po/cs.po b/po/cs.po index 75198efe4c1..1a3a390fd3c 100644 --- a/po/cs.po +++ b/po/cs.po @@ -3595,202 +3595,208 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Došel papír; " + +#: jscript.rc:32 msgid "Object required" msgstr "Vyžadován objekt" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Automatizační server nemůže vytvořit objekt" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Objekt nepodporuje tuto akci" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argument je povinný" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Chybná syntaxe" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Očekáváno „;“" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Očekáváno „(“" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Očekáváno „)“" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "Očekáván identifikátor" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "Očekáváno „=“" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Chybný znak" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "„zarážku“ (break) nelze umístit mimo smyčku" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "„pokračuj“ (continue) nelze umístit mimo smyčku" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Označení bylo znovu definováno" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Označení nebylo nalezeno" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "Očekáváno „@end“" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Podmíněná kompilace je vypnutá" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "Očekáváno „@“" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Neznámá chyba" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Očekáváno číslo" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Očekávána funkce" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Očekáván objekt" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Nepovolené přiřazení" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "„|“ není definováno" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Očekáván boolean objekt" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "„|“ nelze smazat" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Očekáván objekt typu VBArray" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Očekáván objekt JScript" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Očekáván objekt typu pole" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Očekáván boolean objekt" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Počet desetinných čísel je mimo rozsah" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Přesnost je mimo rozsah" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Rozměr pole musí být konečné kladné celé číslo" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Očekáván objekt typu pole" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/da.po b/po/da.po index 38913bc5239..21665047417 100644 --- a/po/da.po +++ b/po/da.po @@ -3683,214 +3683,220 @@ msgid "Subscript out of range" msgstr "Indekset er uden for grænserne" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Ikke mere papir; " + +#: jscript.rc:32 msgid "Object required" msgstr "Objekt krævet" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Automations-serveren kan ikke oprette objektet" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Objektet understøtter ikke denne egenskab eller metode" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Objektet understøtter ikke denne metode" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argument ikke valgfrit" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Syntaksfejl" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Forventet ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Forventet '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Forventet ')'" -#: jscript.rc:40 +#: jscript.rc:41 #, fuzzy #| msgid "Subject Key Identifier" msgid "Expected identifier" msgstr "Emne nøgle identificering" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy #| msgid "Expected ';'" msgid "Expected '='" msgstr "Forventet ';'" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Ugyldig karakter" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Uafsluttet strengkonstant" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "Kan ikke have 'break' udenfor en løkke" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "Kan ikke have «continue» udenfor en løkke" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Etiket omdefineret" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Etiket ikke fundet" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@end'" msgstr "Forventet ';'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Betinget kompilering er slået fra" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@'" msgstr "Forventet ';'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Ukendt fejl" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Nummer forventet" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Funktion forventet" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "«[objekt]» er ikke et dato objekt" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Objekt forventet" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Ulovlig tildeling" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "«|» er ikke defineret" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Boolsk objekt forventet" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Kan ikke slette «|»" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "VBArray objekt forventet" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "JScript objekt forventet" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Array objekt forventet" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Boolsk objekt forventet" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Syntaksfejl i regulært udtryk" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "URI, der skal kodes indeholder ugyldige tegn" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "URI der skal afkodes er forkert" -#: jscript.rc:68 +#: jscript.rc:69 #, fuzzy #| msgid "Enumeration value out of range.\n" msgid "Number of fraction digits is out of range" msgstr "Opregnings værdi uden for intervallet.\n" -#: jscript.rc:69 +#: jscript.rc:70 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Indekset er uden for grænserne" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Array længde skal være et endeligt positivt heltal" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Array objekt forventet" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/de.po b/po/de.po index f929b0858da..dd932ce6d2a 100644 --- a/po/de.po +++ b/po/de.po @@ -3637,186 +3637,192 @@ msgid "Subscript out of range" msgstr "Index außerhalb des Bereichs" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Papierfach leer; " + +#: jscript.rc:32 msgid "Object required" msgstr "Objekt benötigt" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Automatisierungsserver konnte das Objekt nicht erstellen" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Das Objekt unterstützt diese Eigenschaft oder Methode nicht" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Das Objekt unterstützt diese Aktion nicht" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argument nicht optional" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Syntaxfehler" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "';' erwartet" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "'(' erwartet" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "')' erwartet" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "Bezeichner erwartet" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "'=' erwartet" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Ungültiges Zeichen" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "konstante Zeichenkette nicht terminiert" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "'return'-Anweisung außerhalb einer Funktion" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "Unerwartetes 'break' außerhalb einer Schleife" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "Unerwartetes 'continue' außerhalb einer Schleife" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Label neu definiert" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Label nicht gefunden" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "'@end' erwartet" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Bedingte Kompilierung ist ausgeschaltet" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "'@' erwartet" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript Übersetzungsfehler" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript Laufzeitfehler" -#: jscript.rc:79 +#: jscript.rc:80 msgid "Unknown runtime error" msgstr "Unbekannter Laufzeitfehler" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Zahl erwartet" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Funktion erwartet" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[Objekt]' ist kein Datums-Objekt" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Objekt erwartet" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Unzulässige Zuweisung" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' nicht definiert" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Boolesches Objekt erwartet" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Kann '|' nicht löschen" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "VBArray-Objekt erwartet" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "JScript-Objekt erwartet" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Array-Objekt erwartet" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Boolesches Objekt erwartet" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Syntaxfehler in regulärem Ausdruck" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "Exception ausgelöst und nicht abgefangen" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "Zu entschlüsselnde URI ist ungültig" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Anzahl der Nachkommastellen außerhalb des zulässigen Bereichs" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Genauigkeit außerhalb des zulässigen Bereichs" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Array-Größe muss eine natürliche Zahl sein" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Array-Objekt erwartet" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" @@ -3824,16 +3830,16 @@ msgstr "" "'writable'-Attribut des Eigenschaftendeskriptors kann bei diesem Objekt " "nicht auf 'true' gesetzt werden" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" "Nicht-konfigurierbare Eigenschaft '|' kann nicht erneut definiert werden" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "Nicht-schreibbare Eigenschaft '|' kann nicht geändert werden" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "Eigenschaft kann nicht sowohl Accessoren als auch einen Wert haben" diff --git a/po/el.po b/po/el.po index c0f05731b87..f6aea2adddf 100644 --- a/po/el.po +++ b/po/el.po @@ -3577,199 +3577,205 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Τέλος χαρτιού, " + +#: jscript.rc:32 msgid "Object required" msgstr "" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 #, fuzzy msgid "Invalid character" msgstr "Μη έγγυρος(οι) χαρακτήρας(ες) στο μονοπάτι.\n" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Label not found" msgstr "Το αρχείο δε βρέθηκε" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy msgid "Unknown runtime error" msgstr "&Περιεχόμενα" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "" -#: jscript.rc:62 +#: jscript.rc:63 msgid "Enumerator object expected" msgstr "" -#: jscript.rc:63 +#: jscript.rc:64 msgid "Regular Expression object expected" msgstr "" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/en.po b/po/en.po index bbdf046911a..4a12132c827 100644 --- a/po/en.po +++ b/po/en.po @@ -3629,182 +3629,186 @@ msgid "Subscript out of range" msgstr "Subscript out of range" #: jscript.rc:31 +msgid "Out of stack space" +msgstr "Out of stack space" + +#: jscript.rc:32 msgid "Object required" msgstr "Object required" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Automation server can't create object" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Object doesn't support this property or method" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Object doesn't support this action" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argument not optional" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Syntax error" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Expected ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Expected '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Expected ')'" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "Expected identifier" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "Expected '='" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Invalid character" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Unterminated string constant" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "'return' statement outside of function" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "Can't have 'break' outside of loop" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "Can't have 'continue' outside of loop" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Label redefined" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Label not found" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "Expected '@end'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Conditional compilation is turned off" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "Expected '@'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript compilation error" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript runtime error" -#: jscript.rc:79 +#: jscript.rc:80 msgid "Unknown runtime error" msgstr "Unknown runtime error" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Number expected" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Function expected" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[object]' is not a date object" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Object expected" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Illegal assignment" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' is undefined" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Boolean object expected" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Cannot delete '|'" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "VBArray object expected" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "JScript object expected" -#: jscript.rc:62 +#: jscript.rc:63 msgid "Enumerator object expected" msgstr "Enumerator object expected" -#: jscript.rc:63 +#: jscript.rc:64 msgid "Regular Expression object expected" msgstr "Regular Expression object expected" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Syntax error in regular expression" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "Exception thrown and not caught" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Number of fraction digits is out of range" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Precision is out of range" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Array object expected" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" @@ -3812,15 +3816,15 @@ msgstr "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "Cannot redefine non-configurable property '|'" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "Cannot modify non-writable property '|'" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "Property cannot have both accessors and a value" diff --git a/po/en_US.po b/po/en_US.po index f9e50374814..809713b8243 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -3629,182 +3629,186 @@ msgid "Subscript out of range" msgstr "Subscript out of range" #: jscript.rc:31 +msgid "Out of stack space" +msgstr "Out of stack space" + +#: jscript.rc:32 msgid "Object required" msgstr "Object required" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Automation server can't create object" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Object doesn't support this property or method" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Object doesn't support this action" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argument not optional" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Syntax error" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Expected ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Expected '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Expected ')'" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "Expected identifier" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "Expected '='" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Invalid character" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Unterminated string constant" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "'return' statement outside of function" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "Can't have 'break' outside of loop" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "Can't have 'continue' outside of loop" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Label redefined" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Label not found" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "Expected '@end'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Conditional compilation is turned off" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "Expected '@'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript compilation error" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript runtime error" -#: jscript.rc:79 +#: jscript.rc:80 msgid "Unknown runtime error" msgstr "Unknown runtime error" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Number expected" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Function expected" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[object]' is not a date object" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Object expected" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Illegal assignment" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' is undefined" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Boolean object expected" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Cannot delete '|'" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "VBArray object expected" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "JScript object expected" -#: jscript.rc:62 +#: jscript.rc:63 msgid "Enumerator object expected" msgstr "Enumerator object expected" -#: jscript.rc:63 +#: jscript.rc:64 msgid "Regular Expression object expected" msgstr "Regular Expression object expected" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Syntax error in regular expression" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "Exception thrown and not caught" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Number of fraction digits is out of range" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Precision is out of range" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Array object expected" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" @@ -3812,15 +3816,15 @@ msgstr "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "Cannot redefine non-configurable property '|'" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "Cannot modify non-writable property '|'" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "Property cannot have both accessors and a value" diff --git a/po/eo.po b/po/eo.po index 7943662de4c..628c3472d8f 100644 --- a/po/eo.po +++ b/po/eo.po @@ -3569,202 +3569,208 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Elĉerpita papero; " + +#: jscript.rc:32 msgid "Object required" msgstr "" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 #, fuzzy #| msgid "Invalid parameter.\n" msgid "Invalid character" msgstr "Nevalida parametro.\n" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Etikedo ne trovita" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown printer driver." msgid "Unknown runtime error" msgstr "Nekonata printilzorgilo." -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "" -#: jscript.rc:62 +#: jscript.rc:63 msgid "Enumerator object expected" msgstr "" -#: jscript.rc:63 +#: jscript.rc:64 msgid "Regular Expression object expected" msgstr "" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:69 +#: jscript.rc:70 #, fuzzy #| msgid "Print range" msgid "Precision is out of range" msgstr "Etendiĝon" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/es.po b/po/es.po index 36d47c56fdf..59c5aad6510 100644 --- a/po/es.po +++ b/po/es.po @@ -3690,216 +3690,222 @@ msgid "Subscript out of range" msgstr "Subíndice fuera de rango" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Sin papel; " + +#: jscript.rc:32 msgid "Object required" msgstr "Objeto esperado" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Servidor de automatización no puede crear el objeto" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "El objeto no acepta esta propiedad o método" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "El objeto no acepta esta acción" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argumento no opcional" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Error de sintaxis" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Esperado ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Esperado '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Esperado ')'" -#: jscript.rc:40 +#: jscript.rc:41 #, fuzzy #| msgid "Subject Key Identifier" msgid "Expected identifier" msgstr "Identificador del Sujeto de la Clave" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy #| msgid "Expected ';'" msgid "Expected '='" msgstr "Esperado ';'" -#: jscript.rc:42 +#: jscript.rc:43 #, fuzzy #| msgid "Invalid parameter.\n" msgid "Invalid character" msgstr "Parámetro inválido.\n" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Constante de cadena no terminada" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "No se puede usar 'break' fuera de un bucle" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "No se puede usar 'continue' fuera de un bucle" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Etiqueta vuelta a definir" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Etiqueta no encontrada" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@end'" msgstr "Esperado ';'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "La compilación condicional está desactivada" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@'" msgstr "Esperado ';'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Error desconocido" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Número esperado" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Función esperada" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[objeto]' no es un objeto de fecha" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Objeto esperado" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Asignación ilegal" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' no está definido" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Objeto Booleano esperado" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "No se puede borrar '|'" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Objeto VBArray esperado" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Objeto JScript esperado" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Objeto array esperado" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Objeto Booleano esperado" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Error de sintaxis en la expresión regular" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "URI a codificar contiene caracteres no válidos" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "URI a decodificar es incorrecta" -#: jscript.rc:68 +#: jscript.rc:69 #, fuzzy #| msgid "Enumeration value out of range.\n" msgid "Number of fraction digits is out of range" msgstr "Valor de la enumeración fuera de rango.\n" -#: jscript.rc:69 +#: jscript.rc:70 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Subíndice fuera de rango" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "La longitud del array debe ser un entero positivo finito" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Objeto array esperado" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/fa.po b/po/fa.po index 8d1d717a4db..1958a49cd73 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3607,199 +3607,203 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 -msgid "Object required" +msgid "Out of stack space" msgstr "" #: jscript.rc:32 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:33 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:34 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:35 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:36 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:37 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:38 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:39 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:40 -msgid "Expected identifier" +msgid "Expected ')'" msgstr "" #: jscript.rc:41 -msgid "Expected '='" +msgid "Expected identifier" msgstr "" #: jscript.rc:42 -msgid "Invalid character" +msgid "Expected '='" msgstr "" #: jscript.rc:43 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:44 -msgid "'return' statement outside of function" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:45 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:46 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:47 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:48 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:49 #, fuzzy msgid "Label not found" msgstr "'%s' پیدا نشد." -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 msgid "Unknown runtime error" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "" -#: jscript.rc:59 +#: jscript.rc:60 #, fuzzy msgid "Cannot delete '|'" msgstr "&حذف\tDel" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "" -#: jscript.rc:62 +#: jscript.rc:63 msgid "Enumerator object expected" msgstr "" -#: jscript.rc:63 +#: jscript.rc:64 msgid "Regular Expression object expected" msgstr "" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:69 +#: jscript.rc:70 #, fuzzy msgid "Precision is out of range" msgstr "&حذف\tDel" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/fi.po b/po/fi.po index 1a49ff8f620..5dded3a08be 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3623,201 +3623,207 @@ msgid "Subscript out of range" msgstr "Indeksi alueen ulkopuolella" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Paperi loppu; " + +#: jscript.rc:32 msgid "Object required" msgstr "Vaaditaan objekti" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Automaatiopalvelin ei voi luoda objektia" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Objekti ei tue tätä ominaisuutta tai metodia" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Objekti ei tue tätä toimintoa" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argumentti ei ole valinnainen" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Syntaksivirhe" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Odotettiin merkkiä ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Odotettiin merkkiä '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Odotettiin merkkiä ')'" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "Odotettiin tunnistetta" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "Odotettiin merkkiä '='" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Virheellinen merkki" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Päättymätön merkkijonovakio" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "'return' funktion ulkopuolella" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "'break' ei voi esiintyä silmukan ulkopuolella" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "'continue' ei voi esiintyä silmukan ulkopuolella" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Nimiö määritelty toistamiseen" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Nimiötä ei löydy" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "Odotettiin sanaa '@end'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Ehdollinen kääntäminen on pois käytöstä" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "Odotettiin merkkiä '@'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript -käännösvirhe" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript -suoritusvirhe" -#: jscript.rc:79 +#: jscript.rc:80 msgid "Unknown runtime error" msgstr "Tuntematon ajonaikainen virhe" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Odotettiin lukua" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Odotettiin funktiota" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[objekti]' ei ole päivämääräobjekti" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Odotettiin objektia" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Virheellinen sijoitus" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' on määrittelemätön" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Odotettiin totuusarvoa" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Ei voida poistaa '|':tä" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Odotettiin VBArray-objektia" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Odotettiin JScript-objektia" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Odotettiin taulukkoa" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Odotettiin totuusarvoa" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Syntaksivirhe säännöllisessä lausekkeessa" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "Poikkeusta ei otettu kiinni" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "Enkoodattava URI sisältää virheellisiä merkkejä" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "Dekoodattava URI on virheellinen" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Desimaalien määrä ei kelpaa" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Tarkkuus ei kelpaa" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Taulukon pituuden täytyy olla positiivinen kokonaisluku" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Odotettiin taulukkoa" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" "Attribuutti 'writable' ei voi olla 'true' tämän objektin ominaisuuksissa" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "Ei-konfiguroitavaa ominaisuutta '|' ei voi määritellä uudestaan" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "Kirjoitussuojattua ominaisuutta '|' ei voi muokata" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "Ominaisuudella ei voi olla sekä hakufunktiota että arvoa" diff --git a/po/fr.po b/po/fr.po index f296463a8ea..bcb233f97a7 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3679,202 +3679,208 @@ msgid "Subscript out of range" msgstr "Indice hors limites" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Plus de papier ; " + +#: jscript.rc:32 msgid "Object required" msgstr "Objet requis" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Le serveur d'automatisation ne peut créer l'objet" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Cet objet ne supporte pas cette propriété ou méthode" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Cet objet ne supporte pas cette action" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argument non optionnel" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Erreur de syntaxe" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "« ; » attendu" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "« ( » attendu" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "« ) » attendu" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "Identifiant attendu" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "« = » attendu" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Caractère non valide" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Constante chaîne de caractères non clôturée" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "Instruction « return » en dehors d'une fonction" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "« break » impossible à l'extérieur d'une boucle" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "« continue » impossible à l'extérieur d'une boucle" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Étiquette redéfinie" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Étiquette introuvable" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "« @end » attendu" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "La compilation conditionnelle est désactivée" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "« @ » attendu" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Erreur inconnue" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Nombre attendu" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Fonction attendue" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "« [objet] » n'est pas un objet de type date" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Objet attendu" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Affectation illégale" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "« | » n'est pas défini" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Objet booléen attendu" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Impossible de supprimer « | »" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Objet VBArray attendu" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Objet JScript attendu" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Objet tableau attendu" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Objet booléen attendu" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Erreur de syntaxe dans l'expression rationnelle" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "L'URI à coder contient des caractères invalides" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "L'URI à décoder est incorrecte" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Nombre de décimales hors plage" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Précision hors limites" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "La longueur d'un tableau doit être un entier positif" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Objet tableau attendu" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/he.po b/po/he.po index 221e79b8b65..b4f581c0f0e 100644 --- a/po/he.po +++ b/po/he.po @@ -3650,207 +3650,213 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "נגמר הנייר; " + +#: jscript.rc:32 msgid "Object required" msgstr "" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "שגיאת תחביר" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 #, fuzzy #| msgid "Expected an operand.\n" msgid "Expected identifier" msgstr "Expected an operand.\n" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 #, fuzzy msgid "Invalid character" msgstr "Error: Invalid command line parameters.\n" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Label not found" msgstr "הקובץ לא נמצא" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy #| msgid "Expected an operand.\n" msgid "Expected '@end'" msgstr "Expected an operand.\n" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "שגיאה בלתי ידועה" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' אינו מוגדר" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "" -#: jscript.rc:59 +#: jscript.rc:60 #, fuzzy msgid "Cannot delete '|'" msgstr "תאריך המחיקה" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "" -#: jscript.rc:62 +#: jscript.rc:63 msgid "Enumerator object expected" msgstr "" -#: jscript.rc:63 +#: jscript.rc:64 msgid "Regular Expression object expected" msgstr "" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:69 +#: jscript.rc:70 #, fuzzy #| msgid "Print range" msgid "Precision is out of range" msgstr "טווח ההדפסה" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/hi.po b/po/hi.po index 02364ba5d98..96f0ed94b68 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3541,197 +3541,201 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 -msgid "Object required" +msgid "Out of stack space" msgstr "" #: jscript.rc:32 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:33 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:34 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:35 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:36 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:37 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:38 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:39 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:40 -msgid "Expected identifier" +msgid "Expected ')'" msgstr "" #: jscript.rc:41 -msgid "Expected '='" +msgid "Expected identifier" msgstr "" #: jscript.rc:42 -msgid "Invalid character" +msgid "Expected '='" msgstr "" #: jscript.rc:43 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:44 -msgid "'return' statement outside of function" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:45 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:46 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:47 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:48 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:49 -msgid "Expected '@end'" +msgid "Label not found" msgstr "" #: jscript.rc:50 -msgid "Conditional compilation is turned off" +msgid "Expected '@end'" msgstr "" #: jscript.rc:51 -msgid "Expected '@'" -msgstr "" - -#: jscript.rc:77 -msgid "Microsoft JScript compilation error" -msgstr "" - -#: jscript.rc:78 -msgid "Microsoft JScript runtime error" -msgstr "" - -#: jscript.rc:79 -msgid "Unknown runtime error" -msgstr "" - -#: jscript.rc:54 -msgid "Number expected" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:52 -msgid "Function expected" +msgid "Expected '@'" msgstr "" -#: jscript.rc:53 -msgid "'[object]' is not a date object" +#: jscript.rc:78 +msgid "Microsoft JScript compilation error" +msgstr "" + +#: jscript.rc:79 +msgid "Microsoft JScript runtime error" +msgstr "" + +#: jscript.rc:80 +msgid "Unknown runtime error" msgstr "" #: jscript.rc:55 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:53 +msgid "Function expected" +msgstr "" + +#: jscript.rc:54 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:56 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:57 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:58 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:59 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:60 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:61 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:62 -msgid "Enumerator object expected" +msgid "JScript object expected" msgstr "" #: jscript.rc:63 -msgid "Regular Expression object expected" +msgid "Enumerator object expected" msgstr "" #: jscript.rc:64 -msgid "Syntax error in regular expression" +msgid "Regular Expression object expected" msgstr "" #: jscript.rc:65 -msgid "Exception thrown and not caught" -msgstr "" - -#: jscript.rc:67 -msgid "URI to be encoded contains invalid characters" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:66 -msgid "URI to be decoded is incorrect" +msgid "Exception thrown and not caught" msgstr "" #: jscript.rc:68 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:67 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:69 +msgid "Number of fraction digits is out of range" +msgstr "" + +#: jscript.rc:70 #, fuzzy msgid "Precision is out of range" msgstr "फ़ॉन्ट (&F)..." -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/hr.po b/po/hr.po index 8eb070e188b..df2958bed25 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3651,210 +3651,216 @@ msgid "Subscript out of range" msgstr "Potpis je van dometa" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Nema papira; " + +#: jscript.rc:32 msgid "Object required" msgstr "Potreban objekt" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Poslužitelj automatizacije ne može stvoriti objekt" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Objekt ne podržava ovo svojstvo ili metodu" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Objekt ne podržava ovu radnju" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argument nije opcionalan" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Greška u sintaksi" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Očekivano ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Očekivano '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Očekivano ')'" -#: jscript.rc:40 +#: jscript.rc:41 #, fuzzy #| msgid "Expected an operand.\n" msgid "Expected identifier" msgstr "Očekivan operand.\n" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy #| msgid "Expected ';'" msgid "Expected '='" msgstr "Očekivano ';'" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Neispravan znak" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Nezavršen niz znakova" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "'return' naredba izvan funkcije" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "'break' ne može biti izvan petlje" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "'continue' ne može biti izvan petlje" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Oznaka redefinirana" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Oznaka nije pronađena" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@end'" msgstr "Očekivano ';'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Kondicionalna kompilacija je isključena" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@'" msgstr "Očekivano ';'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Nepoznata greška" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Očekivan broj" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Očekivana funkcija" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[object]' nije vremenski objekt" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Očekivan objekt" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Nedozvoljeno pridruživanje" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' nije definiran" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Očekivani objekt istinitosne vrijednosti" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Ne mogu izbrisati '|'" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Očekivan VBArray objekt" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Očekivan JScript objekt" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Očekivan niz objekata" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Očekivani objekt istinitosne vrijednosti" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Sintaksna greška u regularnom izrazu" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "URI za kodiranje sadrži neispravne znakove" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "URI za dekodiranje je neispravan" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Broj decimalnih znamenki je izvan dosega" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Preciznost je izvan dosega" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Duljina niza treba biti konačan prirodan broj" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Očekivan niz objekata" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/hu.po b/po/hu.po index e6cb7f97349..1dca812ea95 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3699,216 +3699,222 @@ msgid "Subscript out of range" msgstr "Érvénytelen alszkript" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Elfogyott a papír; " + +#: jscript.rc:32 msgid "Object required" msgstr "Objektum szükséges" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Az automatizáló (automation) kiszolgáló nem tud objektumot létrehozni" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Az objektum nem támogatja ezt a tulajdonságot vagy metódust" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Az objektum nem támogatja ezt a műveletet" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Az argumentum nem opcionális" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Szinttaktikai hiba" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Hiányzó ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Hiányzó '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Hiányzó ')'" -#: jscript.rc:40 +#: jscript.rc:41 #, fuzzy #| msgid "Subject Key Identifier" msgid "Expected identifier" msgstr "Tárgy kulcs azonosító" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy #| msgid "Expected ';'" msgid "Expected '='" msgstr "Hiányzó ';'" -#: jscript.rc:42 +#: jscript.rc:43 #, fuzzy #| msgid "Invalid parameter.\n" msgid "Invalid character" msgstr "Érvénytelen paraméter.\n" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Lezáratlan sztring konstans" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "Nem lehet 'break' a cikluson kívűl" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "Nem lehet 'continue' a cikluson kívül" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Címke újradefiniált" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Címke nem található" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@end'" msgstr "Hiányzó ';'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Feltételes fordítás kikapcsolva" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@'" msgstr "Hiányzó ';'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Ismeretlen hiba" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Számot vártam" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Függvényt vártam" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'Az [object]' nem egy date (dátum) objektum" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Objektumot vártam" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Nem megengedett összerendelés" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "A '|' nem definiált" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Boolean (igaz-hamis) objektumot vártam" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "'|' nem törölhető" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Tömb objektumot vártam" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "JScript objektumot vártam" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Tömb objektumot vártam" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Boolean (igaz-hamis) objektumot vártam" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Szinttaktikai hiba a reguláris kifejezésben" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" -#: jscript.rc:68 +#: jscript.rc:69 #, fuzzy #| msgid "Enumeration value out of range.\n" msgid "Number of fraction digits is out of range" msgstr "Felsorolási érték határon kívül esik.\n" -#: jscript.rc:69 +#: jscript.rc:70 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Érvénytelen alszkript" -#: jscript.rc:70 +#: jscript.rc:71 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:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Tömb objektumot vártam" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/it.po b/po/it.po index d0f3fef100a..51f764df605 100644 --- a/po/it.po +++ b/po/it.po @@ -3707,216 +3707,222 @@ msgid "Subscript out of range" msgstr "Sottoscript fuori portata" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Carta esaurita; " + +#: jscript.rc:32 msgid "Object required" msgstr "Richiesto un oggetto" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Il server di automazione non può creare l'oggetto" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "L'oggetto non supporta questa proprietà o metodo" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "L'oggetto non supporta questa azione" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argomento non opzionale" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Errore di sintassi" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Richiesto ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Richiesto '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Richiesto ')'" -#: jscript.rc:40 +#: jscript.rc:41 #, fuzzy #| msgid "Subject Key Identifier" msgid "Expected identifier" msgstr "Identificatore della chiave del soggetto" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy #| msgid "Expected ';'" msgid "Expected '='" msgstr "Richiesto ';'" -#: jscript.rc:42 +#: jscript.rc:43 #, fuzzy #| msgid "Invalid parameter.\n" msgid "Invalid character" msgstr "Parametro non valido.\n" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Costante stringa non terminata" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "Impossibile avere 'break' fuori dal ciclo" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "Impossibile avere 'continue' fuori dal ciclo" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Etichetta ridefinita" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Etichetta non trovata" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@end'" msgstr "Richiesto ';'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Compilazione condizionale disattivata" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@'" msgstr "Richiesto ';'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Errore sconosciuto" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Richiesto un numero" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Richiesta una funzione" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[oggetto]' non è un oggetto data" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Previsto un oggetto" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Assegnamento illegale" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' non è definito" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Previsto un oggetto Booleano" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Impossibile eliminare '|'" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Previsto un oggetto VBArray" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Previsto un oggetto JScript" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Previsto un oggetto array" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Previsto un oggetto Booleano" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Errore di sintassi nell'espressione regolare" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "L'URI da codificare contiene caratteri non validi" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "L'URI da decodificare non è corretto" -#: jscript.rc:68 +#: jscript.rc:69 #, fuzzy #| msgid "Enumeration value out of range.\n" msgid "Number of fraction digits is out of range" msgstr "Valore dell'enumerazione fuori portata.\n" -#: jscript.rc:69 +#: jscript.rc:70 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Sottoscript fuori portata" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "La lunghezza dell'array deve essere un intero finito e positivo" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Previsto un oggetto array" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ja.po b/po/ja.po index f5a308027b7..7366aae95bd 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3621,186 +3621,192 @@ msgid "Subscript out of range" msgstr "添字が範囲外です" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "用紙切れ - " + +#: jscript.rc:32 msgid "Object required" msgstr "オブジェクトが必要です" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "オートメーション サーバはオブジェクトを生成できません" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "オブジェクトはこのプロパティまたはメソッドをサポートしていません" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "オブジェクトはこの操作をサポートしていません" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "引数は省略できません" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "構文エラー" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "';'を期待していました" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "'('を期待していました" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "')'を期待していました" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "識別子を期待していました" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "'='を期待していました" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "無効な文字です" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "文字列定数が終端していません" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "return 文が関数外にあります" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "ループ外で break は使えません" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "ループ外で continue は使えません" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "ラベルが再定義されました" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "ラベルが見つかりません" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "'@end'を期待していました" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "条件コンパイルはオフにされています" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "'@'を期待していました" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript コンパイル エラー" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript 実行時エラー" -#: jscript.rc:79 +#: jscript.rc:80 msgid "Unknown runtime error" msgstr "未知の実行時エラー" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "数値を期待していました" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "関数を期待していました" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[object]' は日付オブジェクトではありません" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "オブジェクトを期待していました" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "不正な代入です" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|'は未定義です" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Boolean オブジェクトを期待していました" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "'|'を削除できません" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "VBArray オブジェクトを期待していました" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "JScript オブジェクトを期待していました" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "配列オブジェクトを期待していました" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Boolean オブジェクトを期待していました" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "正規表現に構文誤りがあります" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "例外が送出されましたが捕捉されませんでした" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "エンコードされる URI に無効な文字が含まれています" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "デコードされる URI が正しくありません" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "小数点以下の桁数が範囲外です" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "精度指定が範囲外です" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "配列の長さは有限の正整数でなければなりません" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "配列オブジェクトを期待していました" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" @@ -3808,15 +3814,15 @@ msgstr "" "このオブジェクトにおけるプロパティ記述子の 'writable' 属性は 'true' に設定で" "きません" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "変更不可のプロパティ '|' は再定義できません" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "書換不可のプロパティ '|' は変更できません" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "プロパティはアクセサと値の両方になることはできません" diff --git a/po/ko.po b/po/ko.po index 60bc1120a45..914a2cf5908 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3613,203 +3613,209 @@ msgid "Subscript out of range" msgstr "첨자가 범위를 벗어남" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "종이 초과; " + +#: jscript.rc:32 msgid "Object required" msgstr "객체가 필요함" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "자동화 서버가 객체를 만들 수 없음" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "객체는 이 속성이나 메소드를 지원하지 않음" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "객체는 이 행동을 지원하지 않음" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "인수는 옵션이 아닙니다" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "문법 오류" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "';' 필요" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "'(' 필요" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "')' 필요" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "필요한 식별자" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "'=' 필요" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "잘못된 문자" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "끝나지 않은 문자열 상수" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "함수 밖에 'return'문장이 있음" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "루프 바깥에는 'break'를 사용할 수 없음" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "루프 바깥에는 'continue'를 사용할 수 없음" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "레이블이 중복정의됨" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "레이블을 찾을 수 없음" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "'@end'가 필요합니다" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "조건부 컴파일이 해제되어 있음" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "'@'가 필요합니다" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "알 수 없는 오류" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "숫자가 필요합니다" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "함수가 필요합니다" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[object]'가 날짜 객체가 아닙니다" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "객체가 필요합니다" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "잘못된 할당" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|'가 정의도지 않았습니다" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "볼린 객제가 필요함" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "'|'를 지울 수 없음" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "VBArray 갹체가 필요함" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "JScript 객체가 필요함" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "배열 객체가 필요합니다" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "볼린 객제가 필요함" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "정규 표현식에 문법오류가 있음" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "인코딩할 URI에 올바르지 않은 문자가 들어 있습니다" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "디코딩할 URI가 올바르지 않습니다" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "분수 자리수 값이 범위를 벗어났습니다" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "정밀도가 범위를 벗어났습니다" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "배열 길이는 유한한 양의 정수이어야 합니다" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "배열 객체가 필요합니다" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" "속성 설명자의 'writable' 특성은 이 개체에서 'true'로 설정할 수 없습니다" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "구성되지 않은 요소 '|'를 재처리할 수 없습니다" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "쓰기 가능하지 않은 요소 '|'를 편집할 수 없습니다" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "속성은 접근자와 값을 모두 가질 수 없습니다" diff --git a/po/lt.po b/po/lt.po index 2cabfbbe173..c61d89b1d14 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3632,182 +3632,188 @@ msgid "Subscript out of range" msgstr "Indeksas nepatenka į rėžius" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Pasibaigęs popierius; " + +#: jscript.rc:32 msgid "Object required" msgstr "Reikalingas objektas" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Automatizavimo serveriui nepavyko sukurti objekto" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Objektas nepalaiko šios savybės ar metodo" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Objektas nepalaiko šio veiksmo" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argumentas yra privalomas" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Sintaksės klaida" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Tikėtasi „;“" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Tikėtasi „(“" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Tikėtasi „)“" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "Tikėtasi identifikatoriaus" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "Tikėtasi „=“" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Neteisingas simbolis" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Nebaigta eilutės konstanta" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "Sakinys „return“ ne funkcijoje" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "Negalima turėti „break“ ne cikle" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "Negalima turėti „continue“ ne cikle" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Žymė apibrėžta iš naujo" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Žymė nerasta" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "Tikėtasi „@end“" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Sąlyginis kompiliavimas išjungtas" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "Tikėtasi „@“" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript kompiliavimo klaida" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript vykdymo klaida" -#: jscript.rc:79 +#: jscript.rc:80 msgid "Unknown runtime error" msgstr "Nežinoma vykdymo klaida" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Tikėtasi skaičiaus" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Tikėtasi funkcijos" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "„[objektas]“ nėra datos objektas" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Tikėtasi objekto" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Neleistinas priskyrimas" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "„|“ neapibrėžtas" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Tikėtasi loginio objekto" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Negalima pašalinti „|“" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Tikėtasi VBArray objekto" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Tikėtasi JScript objekto" -#: jscript.rc:62 +#: jscript.rc:63 msgid "Enumerator object expected" msgstr "Tikėtasi enumeratoriaus objekto" -#: jscript.rc:63 +#: jscript.rc:64 msgid "Regular Expression object expected" msgstr "Tikėtasi reguliariojo reiškinio objekto" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Sintaksės klaida reguliariajame reiškinyje" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "Išimtinė situacija sugeneruota ir neapdorota" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "Koduotiname URI yra netinkamų simbolių" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "Dekoduojamas URI neteisingas" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Trupmeninės dalies skaitmenų skaičius nepatenka į rėžius" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Tikslumas nepatenka į rėžius" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Tikėtasi masyvo objekto" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" @@ -3815,15 +3821,15 @@ msgstr "" "savybės aprašo atributas „writable“ negali būti nustatytas į „tiesa“ šiam " "objektui" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "Negalima iš naujo apibrėžti nekonfigūruojamos savybės „|“" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "Negalima modifikuoti nerašomos savybės „|“" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "Savybė negali turėti ir kreipiklių, ir reikšmės" diff --git a/po/ml.po b/po/ml.po index 39d2b3bb2fb..f5bf3970e01 100644 --- a/po/ml.po +++ b/po/ml.po @@ -3543,197 +3543,201 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 -msgid "Object required" +msgid "Out of stack space" msgstr "" #: jscript.rc:32 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:33 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:34 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:35 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:36 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:37 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:38 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:39 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:40 -msgid "Expected identifier" +msgid "Expected ')'" msgstr "" #: jscript.rc:41 -msgid "Expected '='" +msgid "Expected identifier" msgstr "" #: jscript.rc:42 -msgid "Invalid character" +msgid "Expected '='" msgstr "" #: jscript.rc:43 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:44 -msgid "'return' statement outside of function" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:45 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:46 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:47 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:48 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:49 -msgid "Expected '@end'" +msgid "Label not found" msgstr "" #: jscript.rc:50 -msgid "Conditional compilation is turned off" +msgid "Expected '@end'" msgstr "" #: jscript.rc:51 -msgid "Expected '@'" -msgstr "" - -#: jscript.rc:77 -msgid "Microsoft JScript compilation error" -msgstr "" - -#: jscript.rc:78 -msgid "Microsoft JScript runtime error" -msgstr "" - -#: jscript.rc:79 -msgid "Unknown runtime error" -msgstr "" - -#: jscript.rc:54 -msgid "Number expected" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:52 -msgid "Function expected" +msgid "Expected '@'" msgstr "" -#: jscript.rc:53 -msgid "'[object]' is not a date object" +#: jscript.rc:78 +msgid "Microsoft JScript compilation error" +msgstr "" + +#: jscript.rc:79 +msgid "Microsoft JScript runtime error" +msgstr "" + +#: jscript.rc:80 +msgid "Unknown runtime error" msgstr "" #: jscript.rc:55 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:53 +msgid "Function expected" +msgstr "" + +#: jscript.rc:54 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:56 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:57 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:58 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:59 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:60 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:61 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:62 -msgid "Enumerator object expected" +msgid "JScript object expected" msgstr "" #: jscript.rc:63 -msgid "Regular Expression object expected" +msgid "Enumerator object expected" msgstr "" #: jscript.rc:64 -msgid "Syntax error in regular expression" +msgid "Regular Expression object expected" msgstr "" #: jscript.rc:65 -msgid "Exception thrown and not caught" -msgstr "" - -#: jscript.rc:67 -msgid "URI to be encoded contains invalid characters" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:66 -msgid "URI to be decoded is incorrect" +msgid "Exception thrown and not caught" msgstr "" #: jscript.rc:68 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:67 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:69 +msgid "Number of fraction digits is out of range" +msgstr "" + +#: jscript.rc:70 #, fuzzy msgid "Precision is out of range" msgstr "_അക്ഷരസഞ്ചയം..." -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index 5534a1a8bd2..1ea04819e47 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -3635,202 +3635,208 @@ msgid "Subscript out of range" msgstr "ID'ene er utenfor rekkevidde" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Tom for papir; " + +#: jscript.rc:32 msgid "Object required" msgstr "Trenger et objekt" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Automatiseringstjeneren klarte ikke opprette objekt" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Objektet støtter ikke denne egenskapen eller metoden" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Objektet støtter ikke denne handlingen" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argumentet er ikke valgfritt" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Syntaksfeil" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Forventet ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Forventet '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Forventet ')'" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "Forventet identifiserer" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "Forventet '='" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Ugyldig tegn" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Uavsluttet strengkonstant" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "'return' utenfor en funksjon" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "'break' kan kun forekomme i en løkke" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "'continue' kan kun forekomme i en løkke" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Etiketten ble omdefinert" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Fant ikke etiketten" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "Forventet '@end'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Avhengig kompilering er skrudd av" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "Forventet '@'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Ukjent feil" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Forventet nummer" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Forventet funksjon" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[object]' er ikke et dataobjekt" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Forventet objekt" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Ugyldig tilordning" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' er udefinert" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Forventet boolsk verdi" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Kan ikke slette '|'" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Forventet et VBArray-objekt" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Forventet JScript-objekt" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Forventet rekke-objekt" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Forventet boolsk verdi" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Syntaksfeil i regulært uttrykk" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "URI'en som skal kodes inneholder ugyldige tegn" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "URI'en som skal dekodes er feil" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Antall brøktegn er utenfor rekken av gyldige verdier" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Presisjonen er utenfor rekken av gyldige verdier" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Rekkens lengde må være et endelig, positivt tall" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Forventet rekke-objekt" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/nl.po b/po/nl.po index 5fa61533505..b8b6c9722f0 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3686,210 +3686,216 @@ msgid "Subscript out of range" msgstr "Index buiten bereik" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Papier is op; " + +#: jscript.rc:32 msgid "Object required" msgstr "Object noodzakelijk" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Automatiseringsserver kan het object niet creëren" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Dit object ondersteunt deze eigenschap of methode niet" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Dit object ondersteunt deze actie niet" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argument is niet optioneel" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Syntax fout" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "';' verwacht" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "'(' verwacht" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "')' verwacht" -#: jscript.rc:40 +#: jscript.rc:41 #, fuzzy #| msgid "Subject Key Identifier" msgid "Expected identifier" msgstr "Onderwerp's Sleutel Identificatie nummer" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy #| msgid "Expected ';'" msgid "Expected '='" msgstr "';' verwacht" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Ongeldig teken" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Onafgesloten tekenreeksconstante" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "'return' verklaring buiten functie" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "'break' kan zich niet buiten loop bevinden" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "'continue' kan zich niet buiten loop bevinden" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Label hergedefinieerd" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Label niet gevonden" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@end'" msgstr "';' verwacht" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Conditionele compilatie is uitgeschakeld" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@'" msgstr "';' verwacht" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Onbekende fout" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Getal verwacht" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Functie verwacht" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[object]' is geen datum object" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Object verwacht" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Ongeldige toekenning" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' is ongedefinieerd" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Boolean object verwacht" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Kan '|' niet verwijderen" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "VBArray object verwacht" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "JScript object verwacht" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Array object verwacht" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Boolean object verwacht" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Syntax fout in reguliere expressie" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "De te coderen URI bevat ongeldige tekens" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "De te decoderen URI is niet correct" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Aantal getallen achter de komma buiten bereik" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Precisie is buiten bereik" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Array lengte moet een eindig, positief geheel getal zijn" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Array object verwacht" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/or.po b/po/or.po index 70704956cad..2cc03aa0708 100644 --- a/po/or.po +++ b/po/or.po @@ -3541,197 +3541,201 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 -msgid "Object required" +msgid "Out of stack space" msgstr "" #: jscript.rc:32 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:33 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:34 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:35 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:36 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:37 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:38 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:39 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:40 -msgid "Expected identifier" +msgid "Expected ')'" msgstr "" #: jscript.rc:41 -msgid "Expected '='" +msgid "Expected identifier" msgstr "" #: jscript.rc:42 -msgid "Invalid character" +msgid "Expected '='" msgstr "" #: jscript.rc:43 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:44 -msgid "'return' statement outside of function" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:45 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:46 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:47 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:48 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:49 -msgid "Expected '@end'" +msgid "Label not found" msgstr "" #: jscript.rc:50 -msgid "Conditional compilation is turned off" +msgid "Expected '@end'" msgstr "" #: jscript.rc:51 -msgid "Expected '@'" -msgstr "" - -#: jscript.rc:77 -msgid "Microsoft JScript compilation error" -msgstr "" - -#: jscript.rc:78 -msgid "Microsoft JScript runtime error" -msgstr "" - -#: jscript.rc:79 -msgid "Unknown runtime error" -msgstr "" - -#: jscript.rc:54 -msgid "Number expected" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:52 -msgid "Function expected" +msgid "Expected '@'" msgstr "" -#: jscript.rc:53 -msgid "'[object]' is not a date object" +#: jscript.rc:78 +msgid "Microsoft JScript compilation error" +msgstr "" + +#: jscript.rc:79 +msgid "Microsoft JScript runtime error" +msgstr "" + +#: jscript.rc:80 +msgid "Unknown runtime error" msgstr "" #: jscript.rc:55 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:53 +msgid "Function expected" +msgstr "" + +#: jscript.rc:54 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:56 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:57 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:58 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:59 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:60 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:61 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:62 -msgid "Enumerator object expected" +msgid "JScript object expected" msgstr "" #: jscript.rc:63 -msgid "Regular Expression object expected" +msgid "Enumerator object expected" msgstr "" #: jscript.rc:64 -msgid "Syntax error in regular expression" +msgid "Regular Expression object expected" msgstr "" #: jscript.rc:65 -msgid "Exception thrown and not caught" -msgstr "" - -#: jscript.rc:67 -msgid "URI to be encoded contains invalid characters" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:66 -msgid "URI to be decoded is incorrect" +msgid "Exception thrown and not caught" msgstr "" #: jscript.rc:68 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:67 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:69 +msgid "Number of fraction digits is out of range" +msgstr "" + +#: jscript.rc:70 #, fuzzy msgid "Precision is out of range" msgstr "ଅକ୍ଷରରୂପ (&F)..." -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/pa.po b/po/pa.po index 9eab885d2b1..96268a9a6fa 100644 --- a/po/pa.po +++ b/po/pa.po @@ -3541,197 +3541,201 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 -msgid "Object required" +msgid "Out of stack space" msgstr "" #: jscript.rc:32 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:33 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:34 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:35 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:36 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:37 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:38 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:39 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:40 -msgid "Expected identifier" +msgid "Expected ')'" msgstr "" #: jscript.rc:41 -msgid "Expected '='" +msgid "Expected identifier" msgstr "" #: jscript.rc:42 -msgid "Invalid character" +msgid "Expected '='" msgstr "" #: jscript.rc:43 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:44 -msgid "'return' statement outside of function" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:45 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:46 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:47 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:48 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:49 -msgid "Expected '@end'" +msgid "Label not found" msgstr "" #: jscript.rc:50 -msgid "Conditional compilation is turned off" +msgid "Expected '@end'" msgstr "" #: jscript.rc:51 -msgid "Expected '@'" -msgstr "" - -#: jscript.rc:77 -msgid "Microsoft JScript compilation error" -msgstr "" - -#: jscript.rc:78 -msgid "Microsoft JScript runtime error" -msgstr "" - -#: jscript.rc:79 -msgid "Unknown runtime error" -msgstr "" - -#: jscript.rc:54 -msgid "Number expected" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:52 -msgid "Function expected" +msgid "Expected '@'" msgstr "" -#: jscript.rc:53 -msgid "'[object]' is not a date object" +#: jscript.rc:78 +msgid "Microsoft JScript compilation error" +msgstr "" + +#: jscript.rc:79 +msgid "Microsoft JScript runtime error" +msgstr "" + +#: jscript.rc:80 +msgid "Unknown runtime error" msgstr "" #: jscript.rc:55 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:53 +msgid "Function expected" +msgstr "" + +#: jscript.rc:54 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:56 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:57 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:58 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:59 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:60 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:61 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:62 -msgid "Enumerator object expected" +msgid "JScript object expected" msgstr "" #: jscript.rc:63 -msgid "Regular Expression object expected" +msgid "Enumerator object expected" msgstr "" #: jscript.rc:64 -msgid "Syntax error in regular expression" +msgid "Regular Expression object expected" msgstr "" #: jscript.rc:65 -msgid "Exception thrown and not caught" -msgstr "" - -#: jscript.rc:67 -msgid "URI to be encoded contains invalid characters" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:66 -msgid "URI to be decoded is incorrect" +msgid "Exception thrown and not caught" msgstr "" #: jscript.rc:68 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:67 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:69 +msgid "Number of fraction digits is out of range" +msgstr "" + +#: jscript.rc:70 #, fuzzy msgid "Precision is out of range" msgstr "ਫੌਂਟ(&F)..." -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/pl.po b/po/pl.po index 51ffdce6134..f31e00794fc 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3673,202 +3673,208 @@ msgid "Subscript out of range" msgstr "Indeks dolny poza zakresem" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Brak papieru; " + +#: jscript.rc:32 msgid "Object required" msgstr "Wymagany obiekt" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Serwer automatyzacji nie może stworzyć obiektu" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Obiekt nie wspiera tej właściwości lub metody" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Obiekt nie wspiera tej akcji" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argument nieopcjonalny" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Błąd składni" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Oczekiwano ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Oczekiwano '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Oczekiwano ')'" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "Oczekiwano identyfikatora" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "Oczekiwano ';'" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Nieprawidłowy znak" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Niezakończona stała znakowa" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "polecenie powrotu 'return' jest poza funkcją" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "Nie można umieścić 'break' poza pętlą" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "Nie można umieścić 'continue' poza pętlą" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Etykieta zdefiniowana ponownie" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Nie znaleziono etykiety" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "Oczekiwano '@end'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Warunkowa kompilacja jest wyłączona" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "Oczekiwano '@'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Nieznany błąd" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Oczekiwana liczba" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Oczekiwana funkcja" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[obiekt]' nie jest obiektem daty" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Oczekiwany obiekt" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Niepoprawne przypisanie" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' jest niezdefiniowany" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Oczekiwany obiekt boolean" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Nie można usunąć '|'" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Oczekiwany obiekt VBArray" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Oczekiwany obiekt JScript" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Oczekiwany obiekt tablicowy" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Oczekiwany obiekt boolean" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Błąd składni w regularnym wyrażeniu" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "Kodowane URI zawiera niewłaściwe znaki" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "URI do dekodowania jest niepoprawny" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Ilość cyfr znaczących jest poza zakresem" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Precyzja jest poza poza zakresem" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Oczekiwany obiekt tablicowy" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index dbaaf99b1b6..5eda7d3c8f1 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3644,188 +3644,194 @@ msgid "Subscript out of range" msgstr "Índice fora do intervalo" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Sem papel; " + +#: jscript.rc:32 msgid "Object required" msgstr "Objeto requerido" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "O servidor de automação não conseguiu criar o objeto" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "O objeto não suporta esta propriedade ou método" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "O objeto não suporta esta ação" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argumento não opcional" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Erro de sintaxe" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "';' esperado" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "'(' esperado" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "')' esperado" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "Identificador esperado" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "'=' esperado" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Caractere inválido" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Cadeia constante não terminada" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "'return' fora de função" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "Não pode haver 'break' fora de um laço" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "Não pode haver 'continue' fora de um laço" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Rótulo redefinido" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Rótulo não encontrado" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "'@end' esperado" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Compilação condicional está desligada" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "'@' esperado" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Erro desconhecido" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Número esperado" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Função esperada" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[object]' não é um objeto de data" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Objeto esperado" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Atribuição ilegal" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' é indefinido" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Objeto booleano esperado" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Não é possível excluir '|'" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Objeto VBArray esperado" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Objeto JScript esperado" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Objeto tipo vetor esperado" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Objeto booleano esperado" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Erro de sintaxe na expressão regular" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "URI a ser decodificado está incorreto" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Número de dígitos fracionários fora do limite" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Precisão fora do limite" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Tamanho do vetor tem que ser um inteiro finito positivo" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Objeto tipo vetor esperado" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" @@ -3833,15 +3839,15 @@ msgstr "" "atributo 'gravável' no descritor de propriedades não pode ser setado para " "'verdade' neste objeto" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "Não pode redefinir propriedade não configurável '|'" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "Não pode modificar propriedade não gravável '|'" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "Propriedade não pode ter ambos acessores e valor" diff --git a/po/pt_PT.po b/po/pt_PT.po index a1c842cc96c..70bf547d9ef 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -3677,202 +3677,208 @@ msgid "Subscript out of range" msgstr "Subscripto fora de alcance" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Sem papel; " + +#: jscript.rc:32 msgid "Object required" msgstr "Objecto esperado" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "O servidor de automação não conseguiu criar o objecto" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "O objecto não suporta esta propriedade ou método" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "O objecto não suporta esta acção" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argumento não opcional" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Erro de sintaxe" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "';' esperado" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "'(' esperado" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "')' esperado" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "Identificador esperado" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "Esperado '='" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Caractere inválido" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Constante de string não terminada" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "Não pode ter um 'break' fora do ciclo" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "Não pode ter um 'continue' fora do ciclo" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Etiqueta redefinida" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Etiqueta não encontrada" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "Esperado '@end'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "A compilação condicional está desactivada" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "Esperado '@'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Erro desconhecido" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Número esperado" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Função esperada" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[object]' não é um objecto de data" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Objecto esperado" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Atribuição ilegal" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' é indefinido" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Objecto boleano esperado" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Não se pode apagar '|'" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Objecto VBArray esperado" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Objecto JScript esperado" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Objecto Array esperado" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Objecto boleano esperado" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Erro de sintaxe na expressão regular" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "URI a ser descodificado é incorreto" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Número de dígitos fraccionários está fora de alcance" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Precisão fora de alcance" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Tamanho do vector tem de ser um inteiro finito positivo" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Objecto Array esperado" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/rm.po b/po/rm.po index ad071f01bda..abfecd61545 100644 --- a/po/rm.po +++ b/po/rm.po @@ -3570,197 +3570,201 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 -msgid "Object required" +msgid "Out of stack space" msgstr "" #: jscript.rc:32 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:33 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:34 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:35 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:36 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:37 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:38 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:39 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:40 -msgid "Expected identifier" +msgid "Expected ')'" msgstr "" #: jscript.rc:41 -msgid "Expected '='" +msgid "Expected identifier" msgstr "" #: jscript.rc:42 -msgid "Invalid character" +msgid "Expected '='" msgstr "" #: jscript.rc:43 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:44 -msgid "'return' statement outside of function" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:45 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:46 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:47 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:48 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:49 -msgid "Expected '@end'" +msgid "Label not found" msgstr "" #: jscript.rc:50 -msgid "Conditional compilation is turned off" +msgid "Expected '@end'" msgstr "" #: jscript.rc:51 -msgid "Expected '@'" -msgstr "" - -#: jscript.rc:77 -msgid "Microsoft JScript compilation error" -msgstr "" - -#: jscript.rc:78 -msgid "Microsoft JScript runtime error" -msgstr "" - -#: jscript.rc:79 -msgid "Unknown runtime error" -msgstr "" - -#: jscript.rc:54 -msgid "Number expected" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:52 -msgid "Function expected" +msgid "Expected '@'" msgstr "" -#: jscript.rc:53 -msgid "'[object]' is not a date object" +#: jscript.rc:78 +msgid "Microsoft JScript compilation error" +msgstr "" + +#: jscript.rc:79 +msgid "Microsoft JScript runtime error" +msgstr "" + +#: jscript.rc:80 +msgid "Unknown runtime error" msgstr "" #: jscript.rc:55 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:53 +msgid "Function expected" +msgstr "" + +#: jscript.rc:54 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:56 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:57 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:58 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:59 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:60 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:61 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:62 -msgid "Enumerator object expected" +msgid "JScript object expected" msgstr "" #: jscript.rc:63 -msgid "Regular Expression object expected" +msgid "Enumerator object expected" msgstr "" #: jscript.rc:64 -msgid "Syntax error in regular expression" +msgid "Regular Expression object expected" msgstr "" #: jscript.rc:65 -msgid "Exception thrown and not caught" -msgstr "" - -#: jscript.rc:67 -msgid "URI to be encoded contains invalid characters" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:66 -msgid "URI to be decoded is incorrect" +msgid "Exception thrown and not caught" msgstr "" #: jscript.rc:68 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:67 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:69 +msgid "Number of fraction digits is out of range" +msgstr "" + +#: jscript.rc:70 #, fuzzy msgid "Precision is out of range" msgstr "&Stampar tema" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ro.po b/po/ro.po index 7f7239fb25a..fa117c1f3fc 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3632,204 +3632,210 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Fără hârtia; " + +#: jscript.rc:32 msgid "Object required" msgstr "Se necesită un obiect" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Serverul de automatizare nu poate crea obiectul" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Obiectul nu suportă această proprietate sau metodă" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Obiectul nu suportă această acțiune" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argumentul nu este opțional" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Eroare de sintaxă" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Se așteaptă „;”" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Se așteaptă „(”" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Se așteaptă „)”" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "Se așteaptă un identificator" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "Se așteaptă „=”" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Caracter invalid" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Șir constant neterminat" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "Instrucțiunea „return” nu poate apărea în afara unei funcții" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "„break” nu poate apărea în afara unei bucle" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "„continue” nu poate apărea în afara unei bucle" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Etichetă redefinită" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Eticheta nu a fost găsită" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "Se așteaptă „@end”" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Compilarea condițională este dezactivată" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "Se așteaptă „@”" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Eroare necunoscută" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Se așteaptă un număr" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Se așteaptă o funcție" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "„[obiect]” nu este un obiect de tip dată" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Se așteaptă un obiect" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Atribuire ilegală" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "„|” nu este definit" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Se așteaptă un obiect boolean" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Nu se poate șterge „|”" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Se așteaptă un obiect VBArray" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Se așteaptă un obiect JScript" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Se așteaptă un obiect matrice" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Se așteaptă un obiect boolean" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Eroare de sintaxă în expresia regulată" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "URI care trebuie codificat conține caractere nevalide" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "URI care trebuie decodat este incorect" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:69 +#: jscript.rc:70 #, fuzzy #| msgid "Print range" msgid "Precision is out of range" msgstr "Interval tipărire" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Se așteaptă un obiect matrice" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ru.po b/po/ru.po index b8cf9d8d1ab..81edc04b64b 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3639,202 +3639,208 @@ msgid "Subscript out of range" msgstr "Индекс вне диапазона" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Не хватило бумаги; " + +#: jscript.rc:32 msgid "Object required" msgstr "Требуется объект" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Сервер автоматизации не может создать объект" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Объект не поддерживает это свойство или метод" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Объект не поддерживает это действие" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Отсутствует обязательный аргумент" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Синтаксическая ошибка" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Ожидается «;»" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Ожидается «(»" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Ожидается «)»" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "Ожидается идентификатор" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "Ожидается «=»" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Неверный символ" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Незавершённая строковая константа" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "Оператор «return» вне функции" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "Оператор «break» не может находиться вне цикла" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "Оператор «continue» не может находиться вне цикла" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Метка переопределена" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Метка не найдена" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "Ожидается «@end»" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Условная компиляция отключена" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "Ожидается «@»" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Неизвестная ошибка" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Ожидается число" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Ожидается функция" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "«[object]» не объект типа «date»" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Ожидается объект" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Неверное присваивание" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "«|» не определён" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Ожидается объект типа «bool»" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Невозможно удалить «|»" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Ожидается объект типа «VBArray»" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Ожидается объект типа «JScript»" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Ожидается объект типа «Array»" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Ожидается объект типа «bool»" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Синтаксическая ошибка в регулярном выражении" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "В кодируемом URI обнаружен неверный символ" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "Декодируемый URI неверен" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Количество знаков после запятой вне диапазона" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Точность представления вне диапазона" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Длиной массива должно быть конечное положительное число" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Ожидается объект типа «Array»" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "Невозможно установить атрибут «writable» в «true» для этого объекта" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "Невозможно переопределить ненастраиваемое свойство «|»" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "Невозможно изменить свойство «|»" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "Свойство не может одновременно иметь методы для доступа и значение" diff --git a/po/si.po b/po/si.po index adb8c358602..534c005d358 100644 --- a/po/si.po +++ b/po/si.po @@ -3563,203 +3563,209 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "කඩදාසි ඉවරයි; " + +#: jscript.rc:32 msgid "Object required" msgstr "වස්තුවක් ඕනේ" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "වාග් රීතියේ දෝෂයක්" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "අපේක්ෂා කරේ ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "අපේක්ෂා කරේ '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "අපේක්ෂා කරේ ')'" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "අපේක්ෂා කරේ අනන්යකාරකයක්" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "අපේක්ෂා කරේ '='" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "අවලංගු අනුලකුණක්" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "ලූපයක් එළියේ 'break' තියෙන්න බැහැ" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "ලූපයක් එළියේ 'continue' තියෙන්න බැහැ" -#: jscript.rc:47 +#: jscript.rc:48 #, fuzzy msgid "Label redefined" msgstr "ලේබලය" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "ලේබලය හම්බු උනේ නැහැ" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "අපේක්ෂා කරේ '@end'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "අපේක්ෂා කරේ '='" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "දන්නේ නැති දෝෂයක්" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "නොම්බරයක් අපේක්ෂා කරේ" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "ශ්රිතයක් අපේක්ෂා කරේ" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "වස්තුවක් අපේක්ෂා කරේ" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' නිර්ණය නොකළ" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "බූලීය වස්තුවක් අපේක්ෂා කරේ" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "'|' මකන්න බැහැ" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "VBArray වස්තුවක් අපේක්ෂා කරේ" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "JScript වස්තුවක් අපේක්ෂා කරේ" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "ආරාව වස්තුවක් අපේක්ෂා කරේ" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "බූලීය වස්තුවක් අපේක්ෂා කරේ" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "ආරාව වස්තුවක් අපේක්ෂා කරේ" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sk.po b/po/sk.po index f3f6d741212..1db1ae9c166 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3606,204 +3606,210 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Chýba papier; " + +#: jscript.rc:32 msgid "Object required" msgstr "" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 #, fuzzy #| msgid "Invalid parameter.\n" msgid "Invalid character" msgstr "Nesprávny parameter.\n" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Pole nenájdené" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Neznáma chyba" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Očakávané číslo" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Očakávaná funkcia" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Očakávaný objekt" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Object expected" msgid "Enumerator object expected" msgstr "Očakávaný objekt" -#: jscript.rc:63 +#: jscript.rc:64 msgid "Regular Expression object expected" msgstr "" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:69 +#: jscript.rc:70 #, fuzzy #| msgid "Print range" msgid "Precision is out of range" msgstr "Rozsah tlače" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sl.po b/po/sl.po index 6dc8d16b6fe..36e599f07d6 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3701,216 +3701,222 @@ msgid "Subscript out of range" msgstr "Podskript je izven obsega" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Zmanjkalo je papirja; " + +#: jscript.rc:32 msgid "Object required" msgstr "Zahtevan je predmet" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Strežnik izvajanja ne more ustvariti predmeta" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Predmet ne podpira te lastnosti ali načina" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Predmet ne podpira tega dejanja" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argument je obvezen" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Skladenjska napaka" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Pričakovan je bil ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Pričakovan je bil '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Pričakovan je bil ')'" -#: jscript.rc:40 +#: jscript.rc:41 #, fuzzy #| msgid "Subject Key Identifier" msgid "Expected identifier" msgstr "Določilo ključa zahteve" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy #| msgid "Expected ';'" msgid "Expected '='" msgstr "Pričakovan je bil ';'" -#: jscript.rc:42 +#: jscript.rc:43 #, fuzzy #| msgid "Invalid parameter.\n" msgid "Invalid character" msgstr "Neveljaven parameter.\n" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Nedoločena konstanta niza" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "Ni mogoče imeti 'premora' izven zanke" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "Izven zanke ni mogoče imeti 'continue'" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Ponovna definicija oznake" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Oznake ni mogoče najti" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@end'" msgstr "Pričakovan je bil ';'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Pogojno kodno prevajanje je izklopljeno" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@'" msgstr "Pričakovan je bil ';'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Neznana napaka" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Pričakovano je bilo število" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Pričakovana je bila funkcija" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[object]' ni predmet datuma" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Pričakovan je bil predmet" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Neveljavna dodelitev" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' ni določen" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Pričakovan je bil Boolov predmet" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Ni mogoče izbrisati '|'" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Pričakovan je bil predmet VBArray" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Pričakovan je bil predmet JScript" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Pričakovan je bil predmet polja" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Pričakovan je bil Boolov predmet" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Napaka skladnje v logičnem izrazu" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "URI za kodiranje vsebuje neveljavne znake" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "URI za odkodiranje je nepravilen" -#: jscript.rc:68 +#: jscript.rc:69 #, fuzzy #| msgid "Enumeration value out of range.\n" msgid "Number of fraction digits is out of range" msgstr "Vrednost oštevilčenja je izven obsega.\n" -#: jscript.rc:69 +#: jscript.rc:70 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Podskript je izven obsega" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Dolžina polja mora bit pozitivno celo število" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Pričakovan je bil predmet polja" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sr_RS@cyrillic.po b/po/sr_RS@cyrillic.po index ec8be07e0a3..985d2c4516b 100644 --- a/po/sr_RS@cyrillic.po +++ b/po/sr_RS@cyrillic.po @@ -3681,215 +3681,221 @@ msgstr "Потпис је ван домета" #: jscript.rc:31 #, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Нема папира; " + +#: jscript.rc:32 +#, fuzzy msgid "Object required" msgstr "Очекивани објекат" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Аутоматизовани сервер не може да створи објекат" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Објекат не подржава ово својство или методу" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Објекат не подржава ову радњу" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Аргумент је обавезан" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Грешка у синтакси" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Очекивано ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Очекивано '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Очекивано ')'" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy #| msgid "Expected ';'" msgid "Expected '='" msgstr "Очекивано ';'" -#: jscript.rc:42 +#: jscript.rc:43 #, fuzzy msgid "Invalid character" msgstr "" "Грешка: унесени су непознати или неисправни параметри наредбене линије.\n" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Незавршена константа ниски" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Label not found" msgstr "Датотека није пронађена" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@end'" msgstr "Очекивано ';'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@'" msgstr "Очекивано ';'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy msgid "Unknown runtime error" msgstr "Непознат извор" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Очекивани број" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Очекивана функција" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "„[object]“ није временски објекат" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Очекивани објекат" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Недозвољен задатак" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "„|“ није одређено" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Очекивани објекат истинитосне вредности" -#: jscript.rc:59 +#: jscript.rc:60 #, fuzzy msgid "Cannot delete '|'" msgstr "Датум брисања" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "VBArray објекат се очекује" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Очекивани објекат JScript врсте" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Очекивани низ објекта" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Очекивани објекат истинитосне вредности" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Синтаксна грешка у регуларном изразу" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "URI садржи неисправне знакове" -#: jscript.rc:66 +#: jscript.rc:67 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI садржи неисправне знакове" -#: jscript.rc:68 +#: jscript.rc:69 #, fuzzy msgid "Number of fraction digits is out of range" msgstr "Потпис је ван домета.\n" -#: jscript.rc:69 +#: jscript.rc:70 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Потпис је ван домета" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Низ дужине мора бити коначан позитиван цео број" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Очекивани низ објекта" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index efb70b7a078..0da8cb931b4 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.po @@ -3761,215 +3761,221 @@ msgstr "Potpis je van dometa" #: jscript.rc:31 #, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Nema papira; " + +#: jscript.rc:32 +#, fuzzy msgid "Object required" msgstr "Očekivani objekat" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Automatizovani server ne može da stvori objekat" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Objekat ne podržava ovo svojstvo ili metodu" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Objekat ne podržava ovu radnju" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argument je obavezan" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Greška u sintaksi" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Očekivano ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Očekivano '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Očekivano ')'" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy #| msgid "Expected ';'" msgid "Expected '='" msgstr "Očekivano ';'" -#: jscript.rc:42 +#: jscript.rc:43 #, fuzzy msgid "Invalid character" msgstr "" "Greška: uneseni su nepoznati ili neispravni parametri naredbene linije.\n" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Nezavršena konstanta niski" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Label not found" msgstr "Datoteka nije pronađena" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@end'" msgstr "Očekivano ';'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@'" msgstr "Očekivano ';'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy msgid "Unknown runtime error" msgstr "Nepoznat izvor" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Očekivani broj" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Očekivana funkcija" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "„[object]“ nije vremenski objekat" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Očekivani objekat" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Nedozvoljen zadatak" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "„|“ nije određeno" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Očekivani objekat istinitosne vrednosti" -#: jscript.rc:59 +#: jscript.rc:60 #, fuzzy msgid "Cannot delete '|'" msgstr "Datum brisanja" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "VBArray objekat se očekuje" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Očekivani objekat JScript vrste" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Očekivani niz objekta" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Očekivani objekat istinitosne vrednosti" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Sintaksna greška u regularnom izrazu" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "URI sadrži neispravne znakove" -#: jscript.rc:66 +#: jscript.rc:67 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI sadrži neispravne znakove" -#: jscript.rc:68 +#: jscript.rc:69 #, fuzzy msgid "Number of fraction digits is out of range" msgstr "Potpis je van dometa.\n" -#: jscript.rc:69 +#: jscript.rc:70 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Potpis je van dometa" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Niz dužine mora biti konačan pozitivan ceo broj" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Očekivani niz objekta" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sv.po b/po/sv.po index 59f411337c0..97981865721 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3656,202 +3656,208 @@ msgid "Subscript out of range" msgstr "Index utanför giltigt intervall" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Slut på papper; " + +#: jscript.rc:32 msgid "Object required" msgstr "Objekt krävs" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Automationsservern kunde inte skapa objekt" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Objektet stöder inte denna egenskap eller metod" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Objektet stöder inte denna handling" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Argumentet är inte valfritt" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Syntaxfel" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "';' förväntades" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "'(' förväntades" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "')' förväntades" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "Identifierare förväntades" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "'=' förväntades" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Ogiltigt tecken" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Oterminerad strängkonstant" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "'return' utanför funktion" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "Går ej att ha 'break' utanför loop" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "Går ej att ha 'continue' utanför loop" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Etiketten är redan definierat" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Etiketten hittades inte" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "'@end' förväntades" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Villkorlig kompilering är avslagen" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "'@' förväntades" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Okänt fel" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Nummer förväntades" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Funktion förväntades" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[object]' är inte ett datumobjekt" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Objekt förväntades" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Ogiltig tilldelning" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' är odefinierat" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Booleskt objekt förväntades" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "'|' kan inte tas bort" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "VBArray-objekt förväntades" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "JScript-objekt förväntades" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Array-objekt förväntades" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Booleskt objekt förväntades" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Syntaxfel i reguljärt uttryck" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "Den URI som ska kodas innehåller ogiltiga tecken" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "Den URI som ska avkodas är felaktig" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Antal decimaler är utanför giltigt intervall" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Precision är utanför giltigt intervall" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Array-längd måste vara ett positivt ändligt heltal" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Array-objekt förväntades" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ta.po b/po/ta.po index 737230c213d..121cd80fa49 100644 --- a/po/ta.po +++ b/po/ta.po @@ -3505,196 +3505,200 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 -msgid "Object required" +msgid "Out of stack space" msgstr "" #: jscript.rc:32 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:33 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:34 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:35 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:36 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:37 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:38 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:39 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:40 -msgid "Expected identifier" +msgid "Expected ')'" msgstr "" #: jscript.rc:41 -msgid "Expected '='" +msgid "Expected identifier" msgstr "" #: jscript.rc:42 -msgid "Invalid character" +msgid "Expected '='" msgstr "" #: jscript.rc:43 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:44 -msgid "'return' statement outside of function" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:45 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:46 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:47 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:48 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:49 -msgid "Expected '@end'" +msgid "Label not found" msgstr "" #: jscript.rc:50 -msgid "Conditional compilation is turned off" +msgid "Expected '@end'" msgstr "" #: jscript.rc:51 -msgid "Expected '@'" -msgstr "" - -#: jscript.rc:77 -msgid "Microsoft JScript compilation error" -msgstr "" - -#: jscript.rc:78 -msgid "Microsoft JScript runtime error" -msgstr "" - -#: jscript.rc:79 -msgid "Unknown runtime error" -msgstr "" - -#: jscript.rc:54 -msgid "Number expected" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:52 -msgid "Function expected" +msgid "Expected '@'" msgstr "" -#: jscript.rc:53 -msgid "'[object]' is not a date object" +#: jscript.rc:78 +msgid "Microsoft JScript compilation error" +msgstr "" + +#: jscript.rc:79 +msgid "Microsoft JScript runtime error" +msgstr "" + +#: jscript.rc:80 +msgid "Unknown runtime error" msgstr "" #: jscript.rc:55 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:53 +msgid "Function expected" +msgstr "" + +#: jscript.rc:54 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:56 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:57 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:58 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:59 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:60 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:61 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:62 -msgid "Enumerator object expected" +msgid "JScript object expected" msgstr "" #: jscript.rc:63 -msgid "Regular Expression object expected" +msgid "Enumerator object expected" msgstr "" #: jscript.rc:64 -msgid "Syntax error in regular expression" +msgid "Regular Expression object expected" msgstr "" #: jscript.rc:65 -msgid "Exception thrown and not caught" -msgstr "" - -#: jscript.rc:67 -msgid "URI to be encoded contains invalid characters" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:66 -msgid "URI to be decoded is incorrect" +msgid "Exception thrown and not caught" msgstr "" #: jscript.rc:68 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:67 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:69 -msgid "Precision is out of range" +msgid "Number of fraction digits is out of range" msgstr "" #: jscript.rc:70 -msgid "Array length must be a finite positive integer" +msgid "Precision is out of range" msgstr "" #: jscript.rc:71 -msgid "Array object expected" +msgid "Array length must be a finite positive integer" msgstr "" #: jscript.rc:72 +msgid "Array object expected" +msgstr "" + +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/te.po b/po/te.po index f822b03da3e..9f66c06b751 100644 --- a/po/te.po +++ b/po/te.po @@ -3541,197 +3541,201 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 -msgid "Object required" +msgid "Out of stack space" msgstr "" #: jscript.rc:32 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:33 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:34 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:35 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:36 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:37 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:38 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:39 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:40 -msgid "Expected identifier" +msgid "Expected ')'" msgstr "" #: jscript.rc:41 -msgid "Expected '='" +msgid "Expected identifier" msgstr "" #: jscript.rc:42 -msgid "Invalid character" +msgid "Expected '='" msgstr "" #: jscript.rc:43 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:44 -msgid "'return' statement outside of function" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:45 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:46 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:47 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:48 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:49 -msgid "Expected '@end'" +msgid "Label not found" msgstr "" #: jscript.rc:50 -msgid "Conditional compilation is turned off" +msgid "Expected '@end'" msgstr "" #: jscript.rc:51 -msgid "Expected '@'" -msgstr "" - -#: jscript.rc:77 -msgid "Microsoft JScript compilation error" -msgstr "" - -#: jscript.rc:78 -msgid "Microsoft JScript runtime error" -msgstr "" - -#: jscript.rc:79 -msgid "Unknown runtime error" -msgstr "" - -#: jscript.rc:54 -msgid "Number expected" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:52 -msgid "Function expected" +msgid "Expected '@'" msgstr "" -#: jscript.rc:53 -msgid "'[object]' is not a date object" +#: jscript.rc:78 +msgid "Microsoft JScript compilation error" +msgstr "" + +#: jscript.rc:79 +msgid "Microsoft JScript runtime error" +msgstr "" + +#: jscript.rc:80 +msgid "Unknown runtime error" msgstr "" #: jscript.rc:55 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:53 +msgid "Function expected" +msgstr "" + +#: jscript.rc:54 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:56 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:57 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:58 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:59 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:60 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:61 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:62 -msgid "Enumerator object expected" +msgid "JScript object expected" msgstr "" #: jscript.rc:63 -msgid "Regular Expression object expected" +msgid "Enumerator object expected" msgstr "" #: jscript.rc:64 -msgid "Syntax error in regular expression" +msgid "Regular Expression object expected" msgstr "" #: jscript.rc:65 -msgid "Exception thrown and not caught" -msgstr "" - -#: jscript.rc:67 -msgid "URI to be encoded contains invalid characters" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:66 -msgid "URI to be decoded is incorrect" +msgid "Exception thrown and not caught" msgstr "" #: jscript.rc:68 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:67 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:69 +msgid "Number of fraction digits is out of range" +msgstr "" + +#: jscript.rc:70 #, fuzzy msgid "Precision is out of range" msgstr "ఫాంట్... (&F)" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/th.po b/po/th.po index 4a67928f02d..a615347f005 100644 --- a/po/th.po +++ b/po/th.po @@ -3595,202 +3595,208 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "กระดาษหมด; " + +#: jscript.rc:32 msgid "Object required" msgstr "" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Label not found" msgstr "ไม่พบแฟ้ม" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown printer driver." msgid "Unknown runtime error" msgstr "ไม่รู้จักดไร์เวอร์์เครื่องพิมพ์" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "" -#: jscript.rc:59 +#: jscript.rc:60 #, fuzzy msgid "Cannot delete '|'" msgstr "ลบ\tDel" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "" -#: jscript.rc:62 +#: jscript.rc:63 msgid "Enumerator object expected" msgstr "" -#: jscript.rc:63 +#: jscript.rc:64 msgid "Regular Expression object expected" msgstr "" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:69 +#: jscript.rc:70 #, fuzzy #| msgid "Print range" msgid "Precision is out of range" msgstr "ย่อ" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/tr.po b/po/tr.po index a6aa9d2c328..9de30d9a169 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3630,188 +3630,194 @@ msgid "Subscript out of range" msgstr "Alt indis kapsama dışında" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Kağıt yok; " + +#: jscript.rc:32 msgid "Object required" msgstr "Nesne gerekli" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Otomasyon sunucusu nesneyi oluşturamadı" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Nesne bu özelliği veya yöntemi desteklemiyor" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Nesne bu işlemi desteklemiyor" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Değişken isteğe bağlı değil" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Sözdizimi hatası" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Beklenen ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Beklenen '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Beklenen ')'" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "Beklenen kimlik" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "Beklenen '='" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Geçersiz karakter" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Sonlandırılmamış dize sabiti" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "'return' komutu fonksiyon dışında" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "Döngü dışında 'break' olamaz" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "Döngü dışında 'continue' olamaz" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Etiket tekrar tanımlandı" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Etiket bulunamadı" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "Beklenen '@end'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Şartlı derleme kapatıldı" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "Beklenen '@'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Bilinmeyen hata" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Beklenen sayı" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Beklenen fonksiyon" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[object]' bir tarih nesnesi değil" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Nesne beklendi" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Geçersiz atama" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' tanımsız" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Beklenen mantıksal nesne" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "'|' silinemedi" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Beklenen VBArray nesnesi" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Beklenen JScript nesnesi" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Beklenen dizi nesnesi" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Beklenen mantıksal nesne" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Düzenli ifadede sözdizimi hatası" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "Kodlanacak URI geçersiz karakterler içeriyor" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "Kodu çözülecek URI geçersiz" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Kesirli rakam sayısı aralık dışı" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Aralık erişim dışında" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Dizi adı pozitif sonlu bir sayı olmalıdır" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Beklenen dizi nesnesi" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" @@ -3819,15 +3825,15 @@ msgstr "" "Nesne açıklayıcısındaki 'yazılabilir' özelliği bu nesnede 'doğru' olarak " "ayarlananmıyor" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "'|' yapılandırılamayan nesnesi yeniden tanımlanamıyor" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "'|' yazılamayan nesnesi değiştirilemiyor" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "Nesnenin erişimcisi ve değeri birden olamaz" diff --git a/po/uk.po b/po/uk.po index c4e69bbe89c..3931bd61123 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3633,211 +3633,217 @@ msgid "Subscript out of range" msgstr "Індекс поза діапазоном" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "Не вистачає паперу; " + +#: jscript.rc:32 msgid "Object required" msgstr "Вимагається об'єкт" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "Сервер автоматизації не може створити об'єкт" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "Об'єкт не підтримує цю властивість чи метод" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "Об'єкт не підтримує цю дію" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "Відсутній обов'язковий аргумент" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "Синтаксична помилка" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "Очікується ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "Очікується '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "Очікується ')'" -#: jscript.rc:40 +#: jscript.rc:41 #, fuzzy #| msgid "Subject Key Identifier" msgid "Expected identifier" msgstr "Ідентифікатор ключа суб’єкта" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy #| msgid "Expected ';'" msgid "Expected '='" msgstr "Очікується ';'" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "Невірний символ" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "Незавершена рядкова константа" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "'break' не може знаходитись за циклом" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "'continue' не може знаходитись за циклом" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "Мітка перевизначена" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "Мітку не знайдено" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@end'" msgstr "Очікується ';'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "Умовна компіляція вимкнена" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@'" msgstr "Очікується ';'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "Невідома помилка" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "Очікується число" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "Очікується функція" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[object]' не об'єкт типу date" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "Очікується об'єкт" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "Невірне присвоєння" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' не визначено" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "Очікується об'єкт Boolean" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "Неможливо видалити '|'" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "Очікується об'єкт VBArray" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "Очікується об'єкт JScript" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "Очікується об'єкт Array" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "Очікується об'єкт Boolean" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "Синтаксична помилка в регулярному виразі" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "URI, що буде закодований, містить неприпустимі символи" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "URI, що буде закодований, некоректний" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "Кількість знаків після коми поза діапазоном" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "Точність поза діапазоном" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "Очікується об'єкт Array" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" "Властивість 'writable' не може бути встановлена на 'true' для цього об'єкта" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "Неможливо перевизначити властивість, яка не підлягає налаштуванню '|'" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "Неможливо змінити властивість, яка не підлягає запису '|'" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "Властивість не може одночасно мати доступ і значення" diff --git a/po/wa.po b/po/wa.po index 694c3c87f80..431fffb5bce 100644 --- a/po/wa.po +++ b/po/wa.po @@ -3602,199 +3602,203 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 -msgid "Object required" +msgid "Out of stack space" msgstr "" #: jscript.rc:32 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:33 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:34 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:35 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:36 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:37 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:38 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:39 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:40 -msgid "Expected identifier" +msgid "Expected ')'" msgstr "" #: jscript.rc:41 -msgid "Expected '='" +msgid "Expected identifier" msgstr "" #: jscript.rc:42 -msgid "Invalid character" +msgid "Expected '='" msgstr "" #: jscript.rc:43 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:44 -msgid "'return' statement outside of function" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:45 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:46 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:47 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:48 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:49 #, fuzzy msgid "Label not found" msgstr "'%s' pout nén esse trové." -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 msgid "Unknown runtime error" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "" -#: jscript.rc:59 +#: jscript.rc:60 #, fuzzy msgid "Cannot delete '|'" msgstr "&Rafacer\tDel" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "" -#: jscript.rc:62 +#: jscript.rc:63 msgid "Enumerator object expected" msgstr "" -#: jscript.rc:63 +#: jscript.rc:64 msgid "Regular Expression object expected" msgstr "" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:69 +#: jscript.rc:70 #, fuzzy msgid "Precision is out of range" msgstr "Cwé rexhe" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/wine.pot b/po/wine.pot index c6691c18495..7d570af7333 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -3498,196 +3498,200 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:31 -msgid "Object required" +msgid "Out of stack space" msgstr "" #: jscript.rc:32 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:33 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:34 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:35 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:36 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:37 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:38 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:39 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:40 -msgid "Expected identifier" +msgid "Expected ')'" msgstr "" #: jscript.rc:41 -msgid "Expected '='" +msgid "Expected identifier" msgstr "" #: jscript.rc:42 -msgid "Invalid character" +msgid "Expected '='" msgstr "" #: jscript.rc:43 -msgid "Unterminated string constant" +msgid "Invalid character" msgstr "" #: jscript.rc:44 -msgid "'return' statement outside of function" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:45 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:46 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:47 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:48 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:49 -msgid "Expected '@end'" +msgid "Label not found" msgstr "" #: jscript.rc:50 -msgid "Conditional compilation is turned off" +msgid "Expected '@end'" msgstr "" #: jscript.rc:51 -msgid "Expected '@'" -msgstr "" - -#: jscript.rc:77 -msgid "Microsoft JScript compilation error" -msgstr "" - -#: jscript.rc:78 -msgid "Microsoft JScript runtime error" -msgstr "" - -#: jscript.rc:79 -msgid "Unknown runtime error" -msgstr "" - -#: jscript.rc:54 -msgid "Number expected" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:52 -msgid "Function expected" +msgid "Expected '@'" msgstr "" -#: jscript.rc:53 -msgid "'[object]' is not a date object" +#: jscript.rc:78 +msgid "Microsoft JScript compilation error" +msgstr "" + +#: jscript.rc:79 +msgid "Microsoft JScript runtime error" +msgstr "" + +#: jscript.rc:80 +msgid "Unknown runtime error" msgstr "" #: jscript.rc:55 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:53 +msgid "Function expected" +msgstr "" + +#: jscript.rc:54 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:56 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:57 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:58 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:59 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:60 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:61 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:62 -msgid "Enumerator object expected" +msgid "JScript object expected" msgstr "" #: jscript.rc:63 -msgid "Regular Expression object expected" +msgid "Enumerator object expected" msgstr "" #: jscript.rc:64 -msgid "Syntax error in regular expression" +msgid "Regular Expression object expected" msgstr "" #: jscript.rc:65 -msgid "Exception thrown and not caught" -msgstr "" - -#: jscript.rc:67 -msgid "URI to be encoded contains invalid characters" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:66 -msgid "URI to be decoded is incorrect" +msgid "Exception thrown and not caught" msgstr "" #: jscript.rc:68 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:67 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:69 -msgid "Precision is out of range" +msgid "Number of fraction digits is out of range" msgstr "" #: jscript.rc:70 -msgid "Array length must be a finite positive integer" +msgid "Precision is out of range" msgstr "" #: jscript.rc:71 -msgid "Array object expected" +msgid "Array length must be a finite positive integer" msgstr "" #: jscript.rc:72 +msgid "Array object expected" +msgstr "" + +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 2d7620fd22c..ece14e54ce5 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3576,200 +3576,206 @@ msgid "Subscript out of range" msgstr "标记越界" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "缺纸;" + +#: jscript.rc:32 msgid "Object required" msgstr "需要对象" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "自动化服务器无法创建对象" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "对象不支持此属性或方式" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "对象不支持此动作" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "参数不是可选参数" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "语法错误" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "期望得到 ';'" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "期望得到 '('" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "期望得到 ')'" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Expected identifier" msgstr "期望标识符" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Expected '='" msgstr "期望得到 '='" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "无效字符" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "未终止的字符串常量" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "函数外的 'return' 语句" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "循环外不能存在 'break'" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "循环外不能存在 'continue'" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "标签被重复定义" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "找不到标签" -#: jscript.rc:49 +#: jscript.rc:50 msgid "Expected '@end'" msgstr "期望 '@end'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "条件编译已关闭" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Expected '@'" msgstr "期望 '@'" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript 编译错误" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript 运行时错误" -#: jscript.rc:79 +#: jscript.rc:80 msgid "Unknown runtime error" msgstr "未知运行时错误" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "期望得到数字" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "期望得到函数" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "'[object]' 不是日期对象" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "期望得到对象" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "非法赋值" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "'|' 未被定义" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "期望得到布尔型对象" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "不能删除 '|'" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "期望得到 VBArray 对象" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "期望得到 JScript 对象" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "期望得到 Array 对象" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "期望得到布尔型对象" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "正则表达式中出现语法错误" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "发生异常且未被捕捉" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "待编码的 URI 包含无效字符" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "待解码的 URI 不正确" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "分数位数的数字超出范围" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "精度超出范围" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "数组的长度必须为一个有限正整数" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "期望得到 Array 对象" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "无法在此对象上更改属性描述符中的“writable”属性为“true”" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "无法重定义不可配置的属性“|”" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "无法更改不可写的属性“|”" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr "属性不能同时包含存取器和值" diff --git a/po/zh_TW.po b/po/zh_TW.po index cc89d07841f..0599cc7b887 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3616,210 +3616,216 @@ msgid "Subscript out of range" msgstr "註標超出範圍" #: jscript.rc:31 +#, fuzzy +#| msgid "Out of paper; " +msgid "Out of stack space" +msgstr "無紙;" + +#: jscript.rc:32 msgid "Object required" msgstr "需要物件" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Automation server can't create object" msgstr "自動作業伺服器無法建立物件" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Object doesn't support this property or method" msgstr "物件不支援這個屬性或方法" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Object doesn't support this action" msgstr "物件不支援此動作" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Argument not optional" msgstr "引數並非可選的" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Syntax error" msgstr "語法錯誤" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Expected ';'" msgstr "預期為 ;" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Expected '('" msgstr "預期為 (" -#: jscript.rc:39 +#: jscript.rc:40 msgid "Expected ')'" msgstr "預期為 )" -#: jscript.rc:40 +#: jscript.rc:41 #, fuzzy #| msgid "Subject Key Identifier" msgid "Expected identifier" msgstr "主體金鑰識別碼" -#: jscript.rc:41 +#: jscript.rc:42 #, fuzzy #| msgid "Expected ';'" msgid "Expected '='" msgstr "預期為 ;" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Invalid character" msgstr "無效的字元" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Unterminated string constant" msgstr "未終結的字串常數" -#: jscript.rc:44 +#: jscript.rc:45 msgid "'return' statement outside of function" msgstr "return 敘述位於函式之外" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Can't have 'break' outside of loop" msgstr "在迴圈之外不可有 break" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Can't have 'continue' outside of loop" msgstr "在迴圈之外不可有 continue" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Label redefined" msgstr "標貼重複定義" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Label not found" msgstr "找不到標貼" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@end'" msgstr "預期為 ;" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Conditional compilation is turned off" msgstr "條件編譯已被關閉" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy #| msgid "Expected ';'" msgid "Expected '@'" msgstr "預期為 ;" -#: jscript.rc:77 +#: jscript.rc:78 msgid "Microsoft JScript compilation error" msgstr "" -#: jscript.rc:78 +#: jscript.rc:79 msgid "Microsoft JScript runtime error" msgstr "" -#: jscript.rc:79 +#: jscript.rc:80 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" msgstr "未知錯誤" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Number expected" msgstr "預期為編號" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Function expected" msgstr "預期為函式" -#: jscript.rc:53 +#: jscript.rc:54 msgid "'[object]' is not a date object" msgstr "[object] 並非日期物件" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Object expected" msgstr "預期為物件" -#: jscript.rc:56 +#: jscript.rc:57 msgid "Illegal assignment" msgstr "不合法的指派" -#: jscript.rc:57 +#: jscript.rc:58 msgid "'|' is undefined" msgstr "| 未定義" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Boolean object expected" msgstr "預期為布林物件" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Cannot delete '|'" msgstr "無法刪除 '|'" -#: jscript.rc:60 +#: jscript.rc:61 msgid "VBArray object expected" msgstr "預期為 VBArray 物件" -#: jscript.rc:61 +#: jscript.rc:62 msgid "JScript object expected" msgstr "預期為 JScript 物件" -#: jscript.rc:62 +#: jscript.rc:63 #, fuzzy #| msgid "Array object expected" msgid "Enumerator object expected" msgstr "預期為陣列物件" -#: jscript.rc:63 +#: jscript.rc:64 #, fuzzy #| msgid "Boolean object expected" msgid "Regular Expression object expected" msgstr "預期為布林物件" -#: jscript.rc:64 +#: jscript.rc:65 msgid "Syntax error in regular expression" msgstr "正規表示式語法發生錯誤" -#: jscript.rc:65 +#: jscript.rc:66 msgid "Exception thrown and not caught" msgstr "" -#: jscript.rc:67 +#: jscript.rc:68 msgid "URI to be encoded contains invalid characters" msgstr "要編碼的 URI 內含無效字元" -#: jscript.rc:66 +#: jscript.rc:67 msgid "URI to be decoded is incorrect" msgstr "要解碼的 URI 不正確" -#: jscript.rc:68 +#: jscript.rc:69 msgid "Number of fraction digits is out of range" msgstr "小數位數超出範圍" -#: jscript.rc:69 +#: jscript.rc:70 msgid "Precision is out of range" msgstr "精確度超出範圍" -#: jscript.rc:70 +#: jscript.rc:71 msgid "Array length must be a finite positive integer" msgstr "陣列長度必須是有限正整數" -#: jscript.rc:71 +#: jscript.rc:72 msgid "Array object expected" msgstr "預期為陣列物件" -#: jscript.rc:72 +#: jscript.rc:73 msgid "" "'writable' attribute on the property descriptor cannot be set to 'true' on " "this object" msgstr "" -#: jscript.rc:73 +#: jscript.rc:74 msgid "Cannot redefine non-configurable property '|'" msgstr "" -#: jscript.rc:74 +#: jscript.rc:75 msgid "Cannot modify non-writable property '|'" msgstr "" -#: jscript.rc:75 +#: jscript.rc:76 msgid "Property cannot have both accessors and a value" msgstr ""