jscript: Convert translations to po files.
authorAlexandre Julliard <julliard@winehq.org>
Thu, 6 Jan 2011 12:38:57 +0000 (13:38 +0100)
committerAlexandre Julliard <julliard@winehq.org>
Thu, 6 Jan 2011 14:03:31 +0000 (15:03 +0100)
65 files changed:
configure
configure.ac
dlls/jscript/Makefile.in
dlls/jscript/jscript.rc [moved from dlls/jscript/jscript_En.rc with 93% similarity]
dlls/jscript/jscript_Da.rc [deleted file]
dlls/jscript/jscript_De.rc [deleted file]
dlls/jscript/jscript_Es.rc [deleted file]
dlls/jscript/jscript_Fr.rc [deleted file]
dlls/jscript/jscript_Hu.rc [deleted file]
dlls/jscript/jscript_It.rc [deleted file]
dlls/jscript/jscript_Ja.rc [deleted file]
dlls/jscript/jscript_Ko.rc [deleted file]
dlls/jscript/jscript_Lt.rc [deleted file]
dlls/jscript/jscript_Nl.rc [deleted file]
dlls/jscript/jscript_No.rc [deleted file]
dlls/jscript/jscript_Pl.rc [deleted file]
dlls/jscript/jscript_Pt.rc [deleted file]
dlls/jscript/jscript_Ro.rc [deleted file]
dlls/jscript/jscript_Ru.rc [deleted file]
dlls/jscript/jscript_Si.rc [deleted file]
dlls/jscript/jscript_Sr.rc [deleted file]
dlls/jscript/jscript_Sv.rc [deleted file]
dlls/jscript/jscript_Uk.rc [deleted file]
dlls/jscript/rsrc.rc [deleted file]
po/bg.po
po/cs.po
po/da.po
po/de.po
po/el.po
po/en.po
po/en_US.po
po/eo.po
po/es.po
po/fi.po
po/fr.po
po/he.po
po/hi.po
po/hu.po
po/it.po
po/ja.po
po/ko.po
po/lt.po
po/ml.po
po/nb_NO.po
po/nl.po
po/or.po
po/pa.po
po/pl.po
po/pt_BR.po
po/pt_PT.po
po/ro.po
po/ru.po
po/sk.po
po/sl.po
po/sr_Latn_SP.po
po/sr_SP.po
po/sv.po
po/te.po
po/th.po
po/tr.po
po/uk.po
po/wa.po
po/wine.pot
po/zh_CN.po
po/zh_TW.po

index 632ac5f435bc9c2888f28f39d99824149366e27b..3758f868b5e7a36fb486f8098b2f90da3376347e 100755 (executable)
--- a/configure
+++ b/configure
@@ -14996,7 +14996,7 @@ wine_fn_config_test dlls/iphlpapi/tests iphlpapi_test
 wine_fn_config_dll itircl enable_itircl
 wine_fn_config_dll itss enable_itss
 wine_fn_config_test dlls/itss/tests itss_test
-wine_fn_config_dll jscript enable_jscript
+wine_fn_config_dll jscript enable_jscript po
 wine_fn_config_test dlls/jscript/tests jscript_test
 wine_fn_config_dll kernel32 enable_kernel32 implib
 wine_fn_config_test dlls/kernel32/tests kernel32_test
index 30a4e53d6c43e4353173bace7f2b09adf81f653d..bd7f9108879ffdc69f3833f97d56826597663856 100644 (file)
@@ -2525,7 +2525,7 @@ WINE_CONFIG_TEST(dlls/iphlpapi/tests)
 WINE_CONFIG_DLL(itircl)
 WINE_CONFIG_DLL(itss)
 WINE_CONFIG_TEST(dlls/itss/tests)
-WINE_CONFIG_DLL(jscript)
+WINE_CONFIG_DLL(jscript,,[po])
 WINE_CONFIG_TEST(dlls/jscript/tests)
 WINE_CONFIG_DLL(kernel32,,[implib])
 WINE_CONFIG_TEST(dlls/kernel32/tests)
index 58197531df05f8fb3858ab28fa45657ffecab827..36268ab41645516e9f8e5c2be9fdea91bf3a216f 100644 (file)
@@ -1,29 +1,6 @@
 MODULE    = jscript.dll
 IMPORTS   = oleaut32 ole32 user32 advapi32
 
-RC_SRCS = \
-       jscript_Da.rc \
-       jscript_De.rc \
-       jscript_En.rc \
-       jscript_Es.rc \
-       jscript_Fr.rc \
-       jscript_Hu.rc \
-       jscript_It.rc \
-       jscript_Ja.rc \
-       jscript_Ko.rc \
-       jscript_Lt.rc \
-       jscript_Nl.rc \
-       jscript_No.rc \
-       jscript_Pl.rc \
-       jscript_Pt.rc \
-       jscript_Ro.rc \
-       jscript_Ru.rc \
-       jscript_Si.rc \
-       jscript_Sr.rc \
-       jscript_Sv.rc \
-       jscript_Uk.rc \
-       rsrc.rc
-
 C_SRCS = \
        activex.c \
        array.c \
@@ -45,6 +22,9 @@ C_SRCS = \
        string.c \
        vbarray.c
 
+RC_SRCS = jscript.rc
+PO_SRCS = jscript.rc
+
 IDL_TLB_SRCS = jsglobal.idl
 IDL_R_SRCS = jscript_classes.idl
 IDL_H_SRCS = jscript_classes.idl
similarity index 93%
rename from dlls/jscript/jscript_En.rc
rename to dlls/jscript/jscript.rc
index cff24bf7513de6d8df979a061c10af9f3c82b9e1..8717cf502a971cbd7f0442682324d98ad626c4cd 100644 (file)
@@ -49,3 +49,11 @@ STRINGTABLE
     IDS_INVALID_LENGTH      "Array length must be a finite positive integer"
     IDS_ARRAY_EXPECTED      "Array object expected"
 }
+
+LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
+
+/* @makedep: jscript.rgs */
+2 WINE_REGISTRY jscript.rgs
+
+/* @makedep: jsglobal.tlb */
+1 TYPELIB jsglobal.tlb
diff --git a/dlls/jscript/jscript_Da.rc b/dlls/jscript/jscript_Da.rc
deleted file mode 100644 (file)
index 133c095..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Copyright 2010 Thomas Larsen
- *                Paul Vriens
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-#pragma code_page(65001)
-
-LANGUAGE LANG_DANISH, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Fejl ved konvertering af objekt til primitiv type"
-    IDS_INVALID_CALL_ARG    "Ugyldig procedure kald eller argument"
-    IDS_CREATE_OBJ_ERROR    "Automations-serveren kan ikke oprette objektet"
-    IDS_NO_PROPERTY         "Objektet understøtter ikke denne egenskab eller metode"
-    IDS_ARG_NOT_OPT         "Argument ikke valgfrit"
-    IDS_SYNTAX_ERROR        "Syntaksfejl"
-    IDS_SEMICOLON           "Forventet ';'"
-    IDS_LBRACKET            "Forventet '('"
-    IDS_RBRACKET            "Forventet ')'"
-    IDS_UNTERMINATED_STR    "Uafsluttet streng konstant"
-    IDS_NOT_FUNC            "Funktion forventet"
-    IDS_NOT_DATE            "[objekt]' er ikke en dato objekt"
-    IDS_NOT_NUM             "Nummer forventet"
-    IDS_OBJECT_EXPECTED     "objekt forventet"
-    IDS_ILLEGAL_ASSIGN      "Ulovlig tildeling"
-    IDS_UNDEFINED           "'|' er ikke defineret"
-    IDS_NOT_BOOL            "Boolean objekt forventet"
-    IDS_JSCRIPT_EXPECTED    "JScript objekt forventet"
-    IDS_REGEXP_SYNTAX_ERROR "Syntax fejl i regulært udtryk"
-    IDS_URI_INVALID_CHAR    "URI, der skal kodes indeholder ugyldige tegn"
-    IDS_INVALID_LENGTH      "Array længde skal være et endeligt positivt heltal"
-    IDS_ARRAY_EXPECTED      "Array objekt forventet"
-}
diff --git a/dlls/jscript/jscript_De.rc b/dlls/jscript/jscript_De.rc
deleted file mode 100644 (file)
index a60d569..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Copyright 2009 André Hentschel
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-#pragma code_page(65001)
-
-LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Fehler beim umwandeln des Objektes in einen Grundtyp"
-    IDS_INVALID_CALL_ARG    "Ungültiger Funktionsaufruf oder Argument"
-    IDS_SUBSCRIPT_OUT_OF_RANGE "Index außerhalb des Bereichs"
-    IDS_CREATE_OBJ_ERROR    "Automatisierungsserver konnte das Objekt nicht erstellen"
-    IDS_NO_PROPERTY         "Das Objekt unterstützt diese Eigenschaft oder Methode nicht"
-    IDS_UNSUPPORTED_ACTION  "Das Objekt unterstützt diese Aktion nicht"
-    IDS_ARG_NOT_OPT         "Argument nicht optional"
-    IDS_SYNTAX_ERROR        "Syntax Fehler"
-    IDS_SEMICOLON           "';' erwartet"
-    IDS_LBRACKET            "'(' erwartet"
-    IDS_RBRACKET            "')' erwartet"
-    IDS_UNTERMINATED_STR    "konstante Zeichenkette nicht terminiert"
-    IDS_DISABLED_CC         "Bedingte Kompilierung ist ausgeschaltet"
-    IDS_NOT_FUNC            "Funktion erwartet"
-    IDS_NOT_DATE            "'[Objekt]' ist kein Datums-Objekt"
-    IDS_NOT_NUM             "Nummer erwartet"
-    IDS_OBJECT_EXPECTED     "Objekt erwartet"
-    IDS_ILLEGAL_ASSIGN      "Unzulässige Zuweisung"
-    IDS_UNDEFINED           "'|' nicht definiert"
-    IDS_NOT_BOOL            "Boolisches Objekt erwartet"
-    IDS_NOT_VBARRAY         "VBArray Objekt erwartet"
-    IDS_JSCRIPT_EXPECTED    "JScript Objekt erwartet"
-    IDS_REGEXP_SYNTAX_ERROR "Syntax Fehler in regulärem Ausdruck"
-    IDS_URI_INVALID_CHAR    "Zu verschlüsselnde URI enthält ungültige Zeichen"
-    IDS_INVALID_LENGTH      "Array-Größe muss eine endliche, positive Ganzzahl sein"
-    IDS_ARRAY_EXPECTED      "Array Objekt erwartet"
-}
diff --git a/dlls/jscript/jscript_Es.rc b/dlls/jscript/jscript_Es.rc
deleted file mode 100644 (file)
index a953d61..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Copyright 2010 José Rostagno
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-/*UTF-8*/
-#pragma code_page(65001)
-
-LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Error al convertir objeto a tipo primitivo"
-    IDS_INVALID_CALL_ARG    "Llamada a procedimiento no válido o argumento"
-    IDS_CREATE_OBJ_ERROR    "Servidor de automatización no puede crear el objeto"
-    IDS_NO_PROPERTY         "El objeto no acepta esta propiedad o método"
-    IDS_ARG_NOT_OPT         "Argumento no opcional"
-    IDS_SYNTAX_ERROR        "Error de sintaxis"
-    IDS_SEMICOLON           "Esperado ';'"
-    IDS_LBRACKET            "Esperado '('"
-    IDS_RBRACKET            "Esperado ')'"
-    IDS_UNTERMINATED_STR    "Constante de cadena no terminada"
-    IDS_NOT_FUNC            "Función esperada"
-    IDS_NOT_DATE            "'[objeto]' no es un objeto fecha"
-    IDS_NOT_NUM             "Numero esperado"
-    IDS_OBJECT_EXPECTED     "Objeto esperado"
-    IDS_ILLEGAL_ASSIGN      "Asignación ilegal"
-    IDS_UNDEFINED           "'|' no está definido"
-    IDS_NOT_BOOL            "Objeto Booleano esperado"
-    IDS_JSCRIPT_EXPECTED    "Objeto JScript esperado"
-    IDS_REGEXP_SYNTAX_ERROR "Error de sintaxis en la expresion regular"
-    IDS_URI_INVALID_CHAR    "URI a codificar contiene caracteres no válidos"
-    IDS_INVALID_LENGTH      "La longitud del arreglo debe ser un entero positivo finito"
-    IDS_ARRAY_EXPECTED      "Objeto Arreglo esperado"
-}
diff --git a/dlls/jscript/jscript_Fr.rc b/dlls/jscript/jscript_Fr.rc
deleted file mode 100644 (file)
index d375fbe..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * French resources for jscript
- *
- * Copyright 2009-2010 Frédéric Delanoy
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-/* UTF-8 */
-#pragma code_page(65001)
-
-LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Erreur lors de la conversion de l'objet vers un type primitif"
-    IDS_INVALID_CALL_ARG    "Appel de procédure ou argument invalide"
-    IDS_SUBSCRIPT_OUT_OF_RANGE "Indice hors limites"
-    IDS_CREATE_OBJ_ERROR    "Le serveur d'automatisation ne peut créer l'objet"
-    IDS_NO_PROPERTY         "Cet objet ne supporte pas cette propriété ou méthode"
-    IDS_UNSUPPORTED_ACTION  "Cet objet ne supporte pas cette action"
-    IDS_ARG_NOT_OPT         "Argument non optionnel"
-    IDS_SYNTAX_ERROR        "Erreur de syntaxe"
-    IDS_SEMICOLON           "« ; » attendu"
-    IDS_LBRACKET            "« ( » attendu"
-    IDS_RBRACKET            "« ) » attendu"
-    IDS_UNTERMINATED_STR    "Constante chaîne de caractères non clôturée"
-    IDS_DISABLED_CC         "La compilation conditionnelle est désactivée"
-    IDS_NOT_FUNC            "Fonction attendue"
-    IDS_NOT_DATE            "« [objet] » n'est pas un objet de type date"
-    IDS_NOT_NUM             "Nombre attendu"
-    IDS_OBJECT_EXPECTED     "Objet attendu"
-    IDS_ILLEGAL_ASSIGN      "Affectation illégale"
-    IDS_UNDEFINED           "« | » n'est pas défini"
-    IDS_NOT_BOOL            "Objet booléen attendu"
-    IDS_NOT_VBARRAY         "Objet VBArray attendu"
-    IDS_JSCRIPT_EXPECTED    "Objet JScript attendu"
-    IDS_REGEXP_SYNTAX_ERROR "Erreur de syntaxe dans l'expression rationnelle"
-    IDS_URI_INVALID_CHAR    "L'URI à coder contient des caractères invalides"
-    IDS_INVALID_LENGTH      "La longueur d'un tableau doit être un entier positif"
-    IDS_ARRAY_EXPECTED      "Objet tableau attendu"
-}
diff --git a/dlls/jscript/jscript_Hu.rc b/dlls/jscript/jscript_Hu.rc
deleted file mode 100644 (file)
index b6ee1a3..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Copyright 2010 Andras Kovacs
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-/* UTF-8 */
-#pragma code_page(65001)
-
-LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Hiba az objektum primitív típusra való konvertálásánál"
-    IDS_INVALID_CALL_ARG    "Érvénytelen eljáráshívás vagy argmentum"
-    IDS_CREATE_OBJ_ERROR    "Az automatizáló (automation) kiszolgáló nem tud objektumot létrehozni"
-    IDS_NO_PROPERTY         "Az objektum nem támogatja ezt a tulajdonságot vagy metódust"
-    IDS_ARG_NOT_OPT         "Az argumentum nem opcionális"
-    IDS_SYNTAX_ERROR        "Szinttaktikai hiba"
-    IDS_SEMICOLON           "Hiányzó ';'"
-    IDS_LBRACKET            "Hiányzó '('"
-    IDS_RBRACKET            "Hiányzó ')'"
-    IDS_UNTERMINATED_STR    "Lezáratlan sztring konstans"
-    IDS_NOT_FUNC            "Függvényt vártam"
-    IDS_NOT_DATE            "'Az [object]' nem egy date (dátum) objektum"
-    IDS_NOT_NUM             "Számot vártam"
-    IDS_OBJECT_EXPECTED     "Objektumot vártam"
-    IDS_ILLEGAL_ASSIGN      "Nem megengedett összerendelés"
-    IDS_UNDEFINED           "A '|' nem definiált"
-    IDS_NOT_BOOL            "Boolean (igaz-hamis) objektumot vártam"
-    IDS_JSCRIPT_EXPECTED    "JScript objektumot vártam"
-    IDS_REGEXP_SYNTAX_ERROR "Szinttaktikai hiba a reguláris kifejezésben"
-    IDS_URI_INVALID_CHAR    "A kódolandó URI érvénytelen karaktereket tartalmaz"
-    IDS_INVALID_LENGTH      "A tömb hosszának egy véges pozitív egész számnak kell lennie"
-    IDS_ARRAY_EXPECTED      "Tömb objektumot vártam"
-}
diff --git a/dlls/jscript/jscript_It.rc b/dlls/jscript/jscript_It.rc
deleted file mode 100644 (file)
index fcfc568..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright 2009 Piotr Caban
- * Copyright 2010 Luca Bennati
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-/* UTF-8 */
-#pragma code_page(65001)
-
-LANGUAGE LANG_ITALIAN, SUBLANG_NEUTRAL
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Errore nel convertire un oggetto ad un tipo primitivo"
-    IDS_INVALID_CALL_ARG    "Chiamata o argomento di procedura non valido"
-    IDS_SUBSCRIPT_OUT_OF_RANGE "Sottoscript fuori portata"
-    IDS_CREATE_OBJ_ERROR    "Il server di automazione non può creare l'oggetto"
-    IDS_NO_PROPERTY         "L'oggetto non supporta questa proprietà o metodo"
-    IDS_UNSUPPORTED_ACTION  "L'oggetto non supporta questa azione"
-    IDS_ARG_NOT_OPT         "Argomento non opzionale"
-    IDS_SYNTAX_ERROR        "Errore di sintassi"
-    IDS_SEMICOLON           "Richiesto ';'"
-    IDS_LBRACKET            "Richiesto '('"
-    IDS_RBRACKET            "Richiesto ')'"
-    IDS_UNTERMINATED_STR    "Costante stringa non terminata"
-    IDS_DISABLED_CC         "Compilazione condizionale disattivata"
-    IDS_NOT_FUNC            "Richiesta una funzione"
-    IDS_NOT_DATE            "'[oggetto]' non è un oggetto data"
-    IDS_NOT_NUM             "Richiesto un numero"
-    IDS_OBJECT_EXPECTED     "Richiesto un oggetto"
-    IDS_ILLEGAL_ASSIGN      "Assegnamento illegale"
-    IDS_UNDEFINED           "'|' non è definito"
-    IDS_NOT_BOOL            "Richiesto un oggetto Booleano"
-    IDS_NOT_VBARRAY         "Richiesto un oggetto VBArray"
-    IDS_JSCRIPT_EXPECTED    "Richiesto un oggetto JScript"
-    IDS_REGEXP_SYNTAX_ERROR "Errore di sintassi nell'espressione regolare"
-    IDS_URI_INVALID_CHAR    "L'URI da codificare contiene caratteri non validi"
-    IDS_INVALID_LENGTH      "La lunghezza dell'array deve essere un intero finito e positivo"
-    IDS_ARRAY_EXPECTED      "Richiesto un oggetto array"
-}
diff --git a/dlls/jscript/jscript_Ja.rc b/dlls/jscript/jscript_Ja.rc
deleted file mode 100644 (file)
index bf97883..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright 2009 Piotr Caban
- * Copyright 2010 Akihiro Sagawa
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-/* UTF-8 */
-#pragma code_page(65001)
-
-LANGUAGE LANG_JAPANESE, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "オブジェクトを基本型に変換できません"
-    IDS_INVALID_CALL_ARG    "手続き呼び出しまたは引数が無効です"
-    IDS_SUBSCRIPT_OUT_OF_RANGE "添字が範囲外です"
-    IDS_CREATE_OBJ_ERROR    "オートメーション サーバはオブジェクトを生成できません"
-    IDS_NO_PROPERTY         "オブジェクトはこのプロパティまたはメソッドをサポートしていません"
-    IDS_UNSUPPORTED_ACTION  "オブジェクトはこの操作をサポートしていません"
-    IDS_ARG_NOT_OPT         "引数は省略できません"
-    IDS_SYNTAX_ERROR        "文法エラー"
-    IDS_SEMICOLON           "';'を期待していました"
-    IDS_LBRACKET            "'('を期待していました"
-    IDS_RBRACKET            "')'を期待していました"
-    IDS_UNTERMINATED_STR    "文字列定数が終端していません"
-    IDS_NOT_FUNC            "関数を期待していました"
-    IDS_NOT_DATE            "'[object]' は日付オブジェクトではありません"
-    IDS_NOT_NUM             "数値を期待していました"
-    IDS_OBJECT_EXPECTED     "オブジェクトを期待していました"
-    IDS_ILLEGAL_ASSIGN      "不正な割り当て"
-    IDS_UNDEFINED           "'|'は定義されていません"
-    IDS_NOT_BOOL            "Boolean オブジェクトを期待していました"
-    IDS_NOT_VBARRAY         "VBArray オブジェクトを期待していました"
-    IDS_JSCRIPT_EXPECTED    "JScript オブジェクトを期待していました"
-    IDS_REGEXP_SYNTAX_ERROR "正規表現に文法誤りがあります"
-    IDS_URI_INVALID_CHAR    "エンコードされるURIに無効な文字が含まれています"
-    IDS_INVALID_LENGTH      "配列の長さは有限の正整数でなければなりません"
-    IDS_ARRAY_EXPECTED      "配列オブジェクトを期待していました"
-}
diff --git a/dlls/jscript/jscript_Ko.rc b/dlls/jscript/jscript_Ko.rc
deleted file mode 100644 (file)
index 9e6f9c6..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright 2009 Piotr Caban
- * Copyright 2010 YunSong Hwang
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-/* UTF-8 */
-#pragma code_page(65001)
-
-LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "객페를 기본 형식으로 변환하는 중에 에러 발생"
-    IDS_INVALID_CALL_ARG    "올바르지 않은 프로시져 호출이나 인수"
-    IDS_SUBSCRIPT_OUT_OF_RANGE "첨자가 범위를 벗어남"
-    IDS_CREATE_OBJ_ERROR    "자동화 서버가 객체를 만들 수 없음"
-    IDS_NO_PROPERTY         "객체는 이 속성이나 메소드를 지원하지 않음"
-    IDS_UNSUPPORTED_ACTION  "객체는 이 행동을 지원하지 않음"
-    IDS_ARG_NOT_OPT         "인수는 옵션이 아닙니다"
-    IDS_SYNTAX_ERROR        "문법 에러"
-    IDS_SEMICOLON           "';' 가 필요합니다"
-    IDS_LBRACKET            "'(' 가 필요합니다"
-    IDS_RBRACKET            "')' 가 필요합니다"
-    IDS_UNTERMINATED_STR    "띁나지 않은 문자열 상수"
-    IDS_DISABLED_CC         "조건부 컴파일이 설정되어 있음"
-    IDS_NOT_FUNC            "함수가 필요합니다"
-    IDS_NOT_DATE            "'[객체]' 는 날짜 객체가 아님"
-    IDS_NOT_NUM             "숫자가 필요합니다"
-    IDS_OBJECT_EXPECTED     "객체가 필요합니다"
-    IDS_ILLEGAL_ASSIGN      "잘못된 할당"
-    IDS_UNDEFINED           "'|' 는 정의되지 않았음"
-    IDS_NOT_BOOL            "볼린 객제가 필요함"
-    IDS_NOT_VBARRAY         "VBArray 갹체가 필요함"
-    IDS_JSCRIPT_EXPECTED    "JScript 객체가 필요함"
-    IDS_REGEXP_SYNTAX_ERROR "정규 표현식에 문법에러가 있음"
-    IDS_URI_INVALID_CHAR    "URI 는 올바르지 않은 문자를 포함해서 인코딩되었음"
-    IDS_INVALID_LENGTH      "배열 길이는 반드시  한정된 양의 정수이어야 함"
-    IDS_ARRAY_EXPECTED      "배열 객체가 필요함"
-}
diff --git a/dlls/jscript/jscript_Lt.rc b/dlls/jscript/jscript_Lt.rc
deleted file mode 100644 (file)
index 4653382..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright 2009-2010 Aurimas Fišeras <aurimas@gmail.com>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-/* UTF-8 */
-#pragma code_page(65001)
-
-LANGUAGE LANG_LITHUANIAN, SUBLANG_NEUTRAL
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Klaida keičiant objektą į primityvų tipą"
-    IDS_INVALID_CALL_ARG    "Netinkamas kreipinys į procedūrą ar argumentas"
-    IDS_SUBSCRIPT_OUT_OF_RANGE "Indeksas nepatenka į rėžius"
-    IDS_CREATE_OBJ_ERROR    "Automatizacijos serveriui nepavyko sukurti objekto"
-    IDS_NO_PROPERTY         "Objektas nepalaiko šios savybės ar metodo"
-    IDS_UNSUPPORTED_ACTION  "Objektas nepalaiko šio veiksmo"
-    IDS_ARG_NOT_OPT         "Argumentas nėra neprivalomas"
-    IDS_SYNTAX_ERROR        "Sintaksės klaida"
-    IDS_SEMICOLON           "Tikėtasi „;“"
-    IDS_LBRACKET            "Tikėtasi „(“"
-    IDS_RBRACKET            "Tikėtasi „)“"
-    IDS_UNTERMINATED_STR    "Nebaigta eilutės konstanta"
-    IDS_DISABLED_CC         "Sąlyginis kompiliavimas yra išjungtas"
-    IDS_NOT_FUNC            "Tikėtasi funkcijos"
-    IDS_NOT_DATE            "„[objektas]“ nėra datos objektas"
-    IDS_NOT_NUM             "Tikėtasi skaičiaus"
-    IDS_OBJECT_EXPECTED     "Tikėtasi objekto"
-    IDS_ILLEGAL_ASSIGN      "Neleistinas priskyrimas"
-    IDS_UNDEFINED           "„|“ yra neapibrėžtas"
-    IDS_NOT_BOOL            "Tikėtasi loginio objekto"
-    IDS_NOT_VBARRAY         "Tikėtasi VBArray objekto"
-    IDS_JSCRIPT_EXPECTED    "Tikėtasi JScript objekto"
-    IDS_REGEXP_SYNTAX_ERROR "Sintaksės klaida reguliariajame reiškinyje"
-    IDS_URI_INVALID_CHAR    "Koduotiname URI yra netinkamų simbolių"
-    IDS_INVALID_LENGTH      "Masyvo dydis turi būti teigiamas sveikasis skaičius"
-    IDS_ARRAY_EXPECTED      "Tikėtasi masyvo objekto"
-}
diff --git a/dlls/jscript/jscript_Nl.rc b/dlls/jscript/jscript_Nl.rc
deleted file mode 100644 (file)
index 5dca5f6..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Copyright 2009 Paul Vriens
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
-
-#pragma code_page(65001)
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Fout bij het omzetten van het object naar een primitief type"
-    IDS_INVALID_CALL_ARG    "Ongeldige procedure-aanroep of argument"
-    IDS_SUBSCRIPT_OUT_OF_RANGE "Index buiten bereik"
-    IDS_CREATE_OBJ_ERROR    "Automatiseringsserver kan het object niet creëren"
-    IDS_NO_PROPERTY         "Dit object ondersteunt deze eigenschap of methode niet"
-    IDS_UNSUPPORTED_ACTION  "Dit object ondersteunt deze actie niet"
-    IDS_ARG_NOT_OPT         "Argument is niet optioneel"
-    IDS_SYNTAX_ERROR        "Syntax fout"
-    IDS_SEMICOLON           "';' verwacht"
-    IDS_LBRACKET            "'(' verwacht"
-    IDS_RBRACKET            "')' verwacht"
-    IDS_UNTERMINATED_STR    "Onafgesloten tekenreeksconstante"
-    IDS_DISABLED_CC         "Conditionele compilatie is uitgeschakeld"
-    IDS_NOT_FUNC            "Functie verwacht"
-    IDS_NOT_DATE            "'[object]' is geen datum object"
-    IDS_NOT_NUM             "Getal verwacht"
-    IDS_OBJECT_EXPECTED     "Object verwacht"
-    IDS_ILLEGAL_ASSIGN      "Ongeldige toekenning"
-    IDS_UNDEFINED           "'|' is ongedefinieerd"
-    IDS_NOT_BOOL            "Boolean object verwacht"
-    IDS_NOT_VBARRAY         "VBArray object verwacht"
-    IDS_JSCRIPT_EXPECTED    "JScript object verwacht"
-    IDS_REGEXP_SYNTAX_ERROR "Syntax fout in reguliere expressie"
-    IDS_URI_INVALID_CHAR    "De te coderen URI bevat ongeldige tekens"
-    IDS_INVALID_LENGTH      "Array lengte moet een eindig, positief geheel getal zijn"
-    IDS_ARRAY_EXPECTED      "Array object verwacht"
-}
diff --git a/dlls/jscript/jscript_No.rc b/dlls/jscript/jscript_No.rc
deleted file mode 100644 (file)
index 9b9d9bb..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright 2010 Alexander N. Sørnes <alex@thehandofagony.com>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-#pragma code_page(65001)
-
-LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Klarte ikke konvertere objekt til primitiv type"
-    IDS_INVALID_CALL_ARG    "Ugyldig funksjonskall eller argument"
-    IDS_CREATE_OBJ_ERROR    "Automatiseringstjeneren klarte ikke opprette objekt"
-    IDS_NO_PROPERTY         "Objektet støtter ikke denne egenskapen eller metoden"
-    IDS_ARG_NOT_OPT         "Argumentet er ikke valgfritt"
-    IDS_SYNTAX_ERROR        "Syntaksfeil"
-    IDS_SEMICOLON           "Forventet ';'"
-    IDS_LBRACKET            "Forventet '('"
-    IDS_RBRACKET            "Forventet ')'"
-    IDS_UNTERMINATED_STR    "Uavsluttet strengkonstant"
-    IDS_NOT_FUNC            "Forventet funksjon"
-    IDS_NOT_DATE            "'[object]' er ikke et dataobjekt"
-    IDS_NOT_NUM             "Forventet nummer"
-    IDS_OBJECT_EXPECTED     "Forventet objekt"
-    IDS_ILLEGAL_ASSIGN      "Ugyldig tilordning"
-    IDS_UNDEFINED           "'|' er udefinert"
-    IDS_NOT_BOOL            "Forventet boolsk verdi"
-    IDS_JSCRIPT_EXPECTED    "Forventet JScript-objekt"
-    IDS_REGEXP_SYNTAX_ERROR "Syntaksfeil i regulært uttrykk"
-    IDS_URI_INVALID_CHAR    "URI'en som skulle kodes inneholder ugyldige tegn"
-    IDS_INVALID_LENGTH      "Rekkens lengde må være et endelig, positivt tall"
-    IDS_ARRAY_EXPECTED      "Forventet rekke-objekt"
-}
diff --git a/dlls/jscript/jscript_Pl.rc b/dlls/jscript/jscript_Pl.rc
deleted file mode 100644 (file)
index e417095..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright 2010 �ukasz Wojni�owicz
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "B��d przy przekszta�caniu obiektu do typu podstawowego"
-    IDS_INVALID_CALL_ARG    "Niew�a�ciwe wywo�anie procedury lub argument"
-    IDS_CREATE_OBJ_ERROR    "Serwer automatyzacji nie mo�e stworzy� obiektu"
-    IDS_SUBSCRIPT_OUT_OF_RANGE "Indeks dolny poza zakresem"
-    IDS_NO_PROPERTY         "Obiekt nie wspiera tej w�a�ciwo�ci lub metody"
-    IDS_UNSUPPORTED_ACTION  "Obiekt nie wspiera tej akcji"
-    IDS_ARG_NOT_OPT         "Argument nieopcjonalny"
-    IDS_SYNTAX_ERROR        "B��d sk�adni"
-    IDS_SEMICOLON           "Oczekiwane ';'"
-    IDS_LBRACKET            "Oczekiwane '('"
-    IDS_RBRACKET            "Oczekiwane ')'"
-    IDS_UNTERMINATED_STR    "Niezako�czona sta�a znakowa"
-    IDS_DISABLED_CC         "Warunkowa kompilacja jest wy��czona"
-    IDS_NOT_FUNC            "Oczekiwana funkcja"
-    IDS_NOT_DATE            "'[obiekt]' nie jest obiektem daty"
-    IDS_NOT_NUM             "Oczekiwana liczba"
-    IDS_OBJECT_EXPECTED     "Oczekiwany obiekt"
-    IDS_ILLEGAL_ASSIGN      "Niepoprawne przypisanie"
-    IDS_UNDEFINED           "'|' jest niezdefiniowany"
-    IDS_NOT_BOOL            "Oczekiwany obiekt boolean"
-    IDS_NOT_VBARRAY         "Oczekiwany obiekt VBArray"
-    IDS_JSCRIPT_EXPECTED    "Oczekiwany obiekt JScript"
-    IDS_REGEXP_SYNTAX_ERROR "B��d sk�adni w regularnym wyra�eniu"
-    IDS_URI_INVALID_CHAR    "Kodowane URI zawiera niew�a�ciwe znaki"
-    IDS_INVALID_LENGTH      "D�ugo�� tablicy musi by� sko�czon� dodatni� liczb� sta��"
-    IDS_ARRAY_EXPECTED      "Oczekiwany obiekt tablicowy"
-}
diff --git a/dlls/jscript/jscript_Pt.rc b/dlls/jscript/jscript_Pt.rc
deleted file mode 100644 (file)
index 6901800..0000000
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- * Copyright 2009 Ricardo Filipe
- * Copyright 2010 Gustavo Henrique Milaré
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-#pragma code_page(65001)
-
-LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Erro ao converter objeto em tipo primitivo"
-    IDS_INVALID_CALL_ARG    "Argumento ou chamada de procedimento inválida"
-    IDS_SUBSCRIPT_OUT_OF_RANGE "Subscript fora de alcance"
-    IDS_CREATE_OBJ_ERROR    "O servidor de automação não conseguiu criar o objeto"
-    IDS_NO_PROPERTY         "O objeto não suporta esta propriedade ou método"
-    IDS_UNSUPPORTED_ACTION  "O objeto não suporta esta ação"
-    IDS_ARG_NOT_OPT         "Argumento não opcional"
-    IDS_SYNTAX_ERROR        "Erro de sintaxe"
-    IDS_SEMICOLON           "';' esperado"
-    IDS_LBRACKET            "'(' esperado"
-    IDS_RBRACKET            "')' esperado"
-    IDS_UNTERMINATED_STR    "Constante de string não terminada"
-    IDS_NOT_FUNC            "Função esperada"
-    IDS_NOT_DATE            "'[object]' não é um objeto de data"
-    IDS_NOT_NUM             "Número esperado"
-    IDS_OBJECT_EXPECTED     "Objeto esperado"
-    IDS_ILLEGAL_ASSIGN      "Atribuição ilegal"
-    IDS_UNDEFINED           "'|' é indefinido"
-    IDS_NOT_BOOL            "Objeto boleano esperado"
-    IDS_NOT_VBARRAY         "Objeto VBArray esperado"
-    IDS_JSCRIPT_EXPECTED    "Objeto JScript esperado"
-    IDS_REGEXP_SYNTAX_ERROR "Erro de sintaxe na expressão regular"
-    IDS_URI_INVALID_CHAR    "URI a ser codificado contém caracteres inválidos"
-    IDS_INVALID_LENGTH      "Tamanho do vetor tem que ser um inteiro finito positivo"
-    IDS_ARRAY_EXPECTED      "Objeto Array esperado"
-}
-
-LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Erro ao converter objecto em tipo primitivo"
-    IDS_INVALID_CALL_ARG    "Argumento ou chamada de procedimento inválida"
-    IDS_SUBSCRIPT_OUT_OF_RANGE "Subscript fora de alcance"
-    IDS_CREATE_OBJ_ERROR    "O servidor de automação não conseguiu criar o objecto"
-    IDS_NO_PROPERTY         "O objecto não suporta esta propriedade ou método"
-    IDS_UNSUPPORTED_ACTION  "O objecto não suporta esta acção"
-    IDS_ARG_NOT_OPT         "Argumento não opcional"
-    IDS_SYNTAX_ERROR        "Erro de sintaxe"
-    IDS_SEMICOLON           "';' esperado"
-    IDS_LBRACKET            "'(' esperado"
-    IDS_RBRACKET            "')' esperado"
-    IDS_UNTERMINATED_STR    "Constante de string não terminada"
-    IDS_NOT_FUNC            "Função esperada"
-    IDS_NOT_DATE            "'[object]' não é um objecto de data"
-    IDS_NOT_NUM             "Número esperado"
-    IDS_OBJECT_EXPECTED     "Objecto esperado"
-    IDS_ILLEGAL_ASSIGN      "Atribuição ilegal"
-    IDS_UNDEFINED           "'|' é indefinido"
-    IDS_NOT_BOOL            "Objecto boleano esperado"
-    IDS_NOT_VBARRAY         "Objecto VBArray esperado"
-    IDS_JSCRIPT_EXPECTED    "Objecto JScript esperado"
-    IDS_REGEXP_SYNTAX_ERROR "Erro de sintaxe na expressão regular"
-    IDS_URI_INVALID_CHAR    "URI a ser codificado contém caracteres inválidos"
-    IDS_INVALID_LENGTH      "Tamanho do vector tem de ser um inteiro finito positivo"
-    IDS_ARRAY_EXPECTED      "Objecto Array esperado"
-}
diff --git a/dlls/jscript/jscript_Ro.rc b/dlls/jscript/jscript_Ro.rc
deleted file mode 100644 (file)
index ec35c37..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright 2009 Piotr Caban
- * Copyright 2010 Claudia Cotună
- *                Michael Stefaniuc
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL
-
-#pragma code_page(65001)
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Eroare la convertirea obiectului la un tip primitiv"
-    IDS_INVALID_CALL_ARG    "Apel de procedură sau argument nevalid"
-    IDS_CREATE_OBJ_ERROR    "Serverul de automatizare nu poate crea obiectul"
-    IDS_NO_PROPERTY         "Obiectul nu suportă această proprietate sau metodă"
-    IDS_ARG_NOT_OPT         "Argumentul nu este opțional"
-    IDS_SYNTAX_ERROR        "Eroare de sintaxă"
-    IDS_SEMICOLON           "Se așteaptă „;”"
-    IDS_LBRACKET            "Se așteaptă „(”"
-    IDS_RBRACKET            "Se așteaptă „)”"
-    IDS_UNTERMINATED_STR    "Șir constant neterminat"
-    IDS_NOT_FUNC            "Se așteaptă o funcție"
-    IDS_NOT_DATE            "„[obiect]” nu este un obiect de tip dată"
-    IDS_NOT_NUM             "Se așteaptă un număr"
-    IDS_OBJECT_EXPECTED     "Se așteaptă un obiect"
-    IDS_ILLEGAL_ASSIGN      "Atribuire ilegală"
-    IDS_UNDEFINED           "„|” nu este definit"
-    IDS_NOT_BOOL            "Se așteaptă un obiect boolean"
-    IDS_JSCRIPT_EXPECTED    "Se așteaptă un obiect JScript"
-    IDS_REGEXP_SYNTAX_ERROR "Eroare de sintaxă în expresia regulată"
-    IDS_URI_INVALID_CHAR    "URI care trebuie codificat conține caractere nevalide"
-    IDS_INVALID_LENGTH      "Lungimea unei matrice trebuie să fie un număr întreg pozitiv"
-    IDS_ARRAY_EXPECTED      "Se așteaptă un obiect matrice"
-}
diff --git a/dlls/jscript/jscript_Ru.rc b/dlls/jscript/jscript_Ru.rc
deleted file mode 100644 (file)
index 934f9e4..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Copyright 2009 Vladimir Pankratov
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-/* UTF-8 */
-#pragma code_page(65001)
-
-LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Ошибка конвертирования объекта в примитивный тип"
-    IDS_INVALID_CALL_ARG    "Неверный вызов процедуры или аргумент"
-    IDS_SUBSCRIPT_OUT_OF_RANGE "Индекс вне диапазона"
-    IDS_CREATE_OBJ_ERROR    "Сервер автоматизации не может создать объект"
-    IDS_NO_PROPERTY         "Объект не поддерживает это свойство или метод"
-    IDS_UNSUPPORTED_ACTION  "Объект не поддерживает это действие"
-    IDS_ARG_NOT_OPT         "Отсутствует обязательный аргумент"
-    IDS_SYNTAX_ERROR        "Синтаксическая ошибка"
-    IDS_SEMICOLON           "Ожидается ';'"
-    IDS_LBRACKET            "Ожидается '('"
-    IDS_RBRACKET            "Ожидается ')'"
-    IDS_UNTERMINATED_STR    "Незавершённая строковая константа"
-    IDS_NOT_FUNC            "Ожидается функция"
-    IDS_NOT_DATE            "'[object]' не объект типа 'date'"
-    IDS_NOT_NUM             "Ожидается число"
-    IDS_OBJECT_EXPECTED     "Ожидается объект"
-    IDS_ILLEGAL_ASSIGN      "Неверное присваивание"
-    IDS_UNDEFINED           "'|' не определён"
-    IDS_NOT_BOOL            "Ожидается объект типа 'bool'"
-    IDS_NOT_VBARRAY         "Ожидается объект типа 'VBArray'"
-    IDS_JSCRIPT_EXPECTED    "Ожидается объект типа 'JScript'"
-    IDS_REGEXP_SYNTAX_ERROR "Синтаксическая ошибка в регулярном выражении"
-    IDS_URI_INVALID_CHAR    "URI содержит неверные символы"
-    IDS_INVALID_LENGTH      "Длиной массива должно быть конечное положительное число"
-    IDS_ARRAY_EXPECTED      "Ожидается объект типа 'Array'"
-}
diff --git a/dlls/jscript/jscript_Si.rc b/dlls/jscript/jscript_Si.rc
deleted file mode 100644 (file)
index b38ec21..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Copyright 2010 Matej Spindler
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-#pragma code_page(65001)
-
-LANGUAGE LANG_SLOVENIAN, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Napaka med spreminjanjem v primitivni tip"
-    IDS_INVALID_CALL_ARG    "Napačen klic postopka ali argument"
-    IDS_CREATE_OBJ_ERROR    "Avtomatizacijski server ne more ustvariti objekta"
-    IDS_NO_PROPERTY         "Objekt ne podpira atributa ali metode"
-    IDS_UNSUPPORTED_ACTION  "Objekt ne podpira akcije"
-    IDS_ARG_NOT_OPT         "Argument je obvezen"
-    IDS_SYNTAX_ERROR        "Napačna sintaksa"
-    IDS_SEMICOLON           "Pričakujem ';'"
-    IDS_LBRACKET            "Pričakujem '('"
-    IDS_RBRACKET            "Pričakujem ')'"
-    IDS_UNTERMINATED_STR    "Nezaključen niz"
-    IDS_NOT_FUNC            "Pričakujem funkcijo"
-    IDS_NOT_DATE            "'[object]' ni date objekt"
-    IDS_NOT_NUM             "Pričakujem število"
-    IDS_OBJECT_EXPECTED     "Pričakujem objekt"
-    IDS_ILLEGAL_ASSIGN      "Napačna prireditev"
-    IDS_UNDEFINED           "'|' je nedifiniran"
-    IDS_NOT_BOOL            "Pričakujem Boolean objekt"
-    IDS_JSCRIPT_EXPECTED    "Pričakujem JScript objekt"
-    IDS_REGEXP_SYNTAX_ERROR "Napačna sintaksa v regularnem izrazu"
-    IDS_URI_INVALID_CHAR    "URI vsebuje neveljavne znake"
-    IDS_INVALID_LENGTH      "Dožina polja mora bit pozitivno celo število"
-    IDS_ARRAY_EXPECTED      "Pričakujem Array objekt"
-}
diff --git a/dlls/jscript/jscript_Sr.rc b/dlls/jscript/jscript_Sr.rc
deleted file mode 100644 (file)
index 155659f..0000000
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- * Copyright 2009 Piotr Caban
- * Copyright 2010 Đorđe Vasiljević
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-#pragma code_page(65001)
-
-LANGUAGE LANG_SERBIAN, SUBLANG_SERBIAN_CYRILLIC
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Грешка у претварању објекта у основну врсту"
-    IDS_INVALID_CALL_ARG    "Неважећи поступак позива или аргумента"
-    IDS_SUBSCRIPT_OUT_OF_RANGE "Потпис је ван домета"
-    IDS_CREATE_OBJ_ERROR    "Аутоматизовани сервер не може да створи објекат"
-    IDS_NO_PROPERTY         "Објекат не подржава ово својство или методу"
-    IDS_UNSUPPORTED_ACTION  "Објекат не подржава ову радњу"
-    IDS_ARG_NOT_OPT         "Аргумент је обавезан"
-    IDS_SYNTAX_ERROR        "Грешка у синтакси"
-    IDS_SEMICOLON           "Очекивано ';'"
-    IDS_LBRACKET            "Очекивано '('"
-    IDS_RBRACKET            "Очекивано ')'"
-    IDS_UNTERMINATED_STR    "Незавршена константа ниски"
-    IDS_NOT_FUNC            "Очекивана функција"
-    IDS_NOT_DATE            "„[object]“ није временски објекат"
-    IDS_NOT_NUM             "Очекивани број"
-    IDS_OBJECT_EXPECTED     "Очекивани објекат"
-    IDS_ILLEGAL_ASSIGN      "Недозвољен задатак"
-    IDS_UNDEFINED           "„|“ није одређено"
-    IDS_NOT_BOOL            "Очекивани објекат истинитосне вредности"
-    IDS_NOT_VBARRAY         "VBArray објекат се очекује"
-    IDS_JSCRIPT_EXPECTED    "Очекивани објекат JScript врсте"
-    IDS_REGEXP_SYNTAX_ERROR "Синтаксна грешка у регуларном изразу"
-    IDS_URI_INVALID_CHAR    "URI садржи неисправне знакове"
-    IDS_INVALID_LENGTH      "Низ дужине мора бити коначан позитиван цео број"
-    IDS_ARRAY_EXPECTED      "Очекивани низ објекта"
-}
-
-LANGUAGE LANG_SERBIAN, SUBLANG_SERBIAN_LATIN
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Greška u pretvaranju objekta u osnovnu vrstu"
-    IDS_INVALID_CALL_ARG    "Nevažeći postupak poziva ili argumenta"
-    IDS_SUBSCRIPT_OUT_OF_RANGE "Potpis je van dometa"
-    IDS_CREATE_OBJ_ERROR    "Automatizovani server ne može da stvori objekat"
-    IDS_NO_PROPERTY         "Objekat ne podržava ovo svojstvo ili metodu"
-    IDS_UNSUPPORTED_ACTION  "Objekat ne podržava ovu radnju"
-    IDS_ARG_NOT_OPT         "Argument je obavezan"
-    IDS_SYNTAX_ERROR        "Greška u sintaksi"
-    IDS_SEMICOLON           "Očekivano ';'"
-    IDS_LBRACKET            "Očekivano '('"
-    IDS_RBRACKET            "Očekivano ')'"
-    IDS_UNTERMINATED_STR    "Nezavršena konstanta niski"
-    IDS_NOT_FUNC            "Očekivana funkcija"
-    IDS_NOT_DATE            "„[object]“ nije vremenski objekat"
-    IDS_NOT_NUM             "Očekivani broj"
-    IDS_OBJECT_EXPECTED     "Očekivani objekat"
-    IDS_ILLEGAL_ASSIGN      "Nedozvoljen zadatak"
-    IDS_UNDEFINED           "„|“ nije određeno"
-    IDS_NOT_BOOL            "Očekivani objekat istinitosne vrednosti"
-    IDS_NOT_VBARRAY         "VBArray objekat se očekuje"
-    IDS_JSCRIPT_EXPECTED    "Očekivani objekat JScript vrste"
-    IDS_REGEXP_SYNTAX_ERROR "Sintaksna greška u regularnom izrazu"
-    IDS_URI_INVALID_CHAR    "URI sadrži neispravne znakove"
-    IDS_INVALID_LENGTH      "Niz dužine mora biti konačan pozitivan ceo broj"
-    IDS_ARRAY_EXPECTED      "Očekivani niz objekta"
-}
diff --git a/dlls/jscript/jscript_Sv.rc b/dlls/jscript/jscript_Sv.rc
deleted file mode 100644 (file)
index 41be3e2..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Copyright 2010 Anders Jonsson
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-#pragma code_page(65001)
-
-LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Kunde inte konvertera objekt till primitiv typ"
-    IDS_INVALID_CALL_ARG    "Ogiltigt funktionsanrop eller argument"
-    IDS_SUBSCRIPT_OUT_OF_RANGE "Index utanför giltigt intervall"
-    IDS_CREATE_OBJ_ERROR    "Automationsservern kunde inte skapa objekt"
-    IDS_NO_PROPERTY         "Objektet stöder inte denna egenskap eller metod"
-    IDS_UNSUPPORTED_ACTION  "Objektet stöder inte denna handling"
-    IDS_ARG_NOT_OPT         "Argumentet är inte valfritt"
-    IDS_SYNTAX_ERROR        "Syntaxfel"
-    IDS_SEMICOLON           "';' förväntades"
-    IDS_LBRACKET            "'(' förväntades"
-    IDS_RBRACKET            "')' förväntades"
-    IDS_UNTERMINATED_STR    "Oterminerad strängkonstant"
-    IDS_DISABLED_CC         "Villkorlig kompilering är avslagen"
-    IDS_NOT_FUNC            "Funktion förväntades"
-    IDS_NOT_DATE            "'[object]' är inte ett datumobjekt"
-    IDS_NOT_NUM             "Nummer förväntades"
-    IDS_OBJECT_EXPECTED     "Objekt förväntades"
-    IDS_ILLEGAL_ASSIGN      "Ogiltig tilldelning"
-    IDS_UNDEFINED           "'|' är odefinierat"
-    IDS_NOT_BOOL            "Boolskt objekt förväntades"
-    IDS_NOT_VBARRAY         "VBArray-objekt förväntades"
-    IDS_JSCRIPT_EXPECTED    "JScript-objekt förväntades"
-    IDS_REGEXP_SYNTAX_ERROR "Syntaxfel i reguljärt uttryck"
-    IDS_URI_INVALID_CHAR    "Den URI som ska kodas innehåller ogiltiga tecken"
-    IDS_INVALID_LENGTH      "Array-längd måste vara ett positivt ändligt heltal"
-    IDS_ARRAY_EXPECTED      "Array-objekt förväntades"
-}
diff --git a/dlls/jscript/jscript_Uk.rc b/dlls/jscript/jscript_Uk.rc
deleted file mode 100644 (file)
index 2a80617..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright 2009 Piotr Caban
- * Copyright 2010 Igor Paliychuk
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-/* UTF-8 */
-#pragma code_page(65001)
-
-LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-    IDS_TO_PRIMITIVE        "Помилка конвертування об'єкту в примітивний тип"
-    IDS_INVALID_CALL_ARG    "Невірний виклик процедури або аргумент"
-    IDS_SUBSCRIPT_OUT_OF_RANGE "Індекс поза діапазоном"
-    IDS_CREATE_OBJ_ERROR    "Сервер автоматизації не може створити об'єкт"
-    IDS_NO_PROPERTY         "Об'єкт не підтримує цю властивість чи метод"
-    IDS_UNSUPPORTED_ACTION  "Об'єкт не підтримує цю дію"
-    IDS_ARG_NOT_OPT         "Відсутній обов'язковий аргумент"
-    IDS_SYNTAX_ERROR        "Синтаксична помилка"
-    IDS_SEMICOLON           "Очікується ';'"
-    IDS_LBRACKET            "Очікується '('"
-    IDS_RBRACKET            "Очікується ')'"
-    IDS_UNTERMINATED_STR    "Незавершена рядкова константа"
-    IDS_NOT_FUNC            "Очікується функція"
-    IDS_NOT_DATE            "'[object]' не об'єкт типу date"
-    IDS_NOT_NUM             "Очікується число"
-    IDS_OBJECT_EXPECTED     "Очікується об'єкт"
-    IDS_ILLEGAL_ASSIGN      "Невірне присвоєння"
-    IDS_UNDEFINED           "'|' не визначено"
-    IDS_NOT_BOOL            "Очікується об'єкт Boolean"
-    IDS_NOT_VBARRAY         "Очікується об'єкт VBArray"
-    IDS_JSCRIPT_EXPECTED    "Очікується об'єкт JScript"
-    IDS_REGEXP_SYNTAX_ERROR "Синтаксична помилка в регулярному виразі"
-    IDS_URI_INVALID_CHAR    "URI, що буде закодований, містить неприпустимі символи"
-    IDS_INVALID_LENGTH      "Довжиною масиву повинне бути скінченне додатнє ціле число"
-    IDS_ARRAY_EXPECTED      "Очікується об'єкт Array"
-}
diff --git a/dlls/jscript/rsrc.rc b/dlls/jscript/rsrc.rc
deleted file mode 100644 (file)
index 722727e..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Copyright 2008 Jacek Caban for CodeWeavers
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-/* @makedep: jscript.rgs */
-2 WINE_REGISTRY jscript.rgs
-
-/* @makedep: jsglobal.tlb */
-1 TYPELIB jsglobal.tlb
index b2d934b5850cf1021935e605b363cdbe48158f78..83cc4e1d432e8278169c0f03f46254ab8ec7ecb1 100644 (file)
--- a/po/bg.po
+++ b/po/bg.po
@@ -1003,6 +1003,110 @@ msgstr ""
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr ""
index 7073661ea7ffc1ae93bb401fa4df096c60e4df70..4564b17fcddc08bd9f4dbe922cad42ec6319d936 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -1017,6 +1017,111 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+#, fuzzy
+msgid "Syntax error"
+msgstr "Syntax error\n"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Vlastnosti"
index 2ff2c617964453d28d0f078fdb9504bdddfe8dbb..271a6ec06337f579536df03bff03d954464e97e3 100644 (file)
--- a/po/da.po
+++ b/po/da.po
@@ -1017,6 +1017,112 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Fejl ved konvertering af objekt til primitiv type"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Ugyldig procedure kald eller argument"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Automations-serveren kan ikke oprette objektet"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Objektet understøtter ikke denne egenskab eller metode"
+
+#: jscript.rc:30
+#, fuzzy
+msgid "Object doesn't support this action"
+msgstr "Objektet understøtter ikke denne egenskab eller metode"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argument ikke valgfrit"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Syntaksfejl"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "Forventet ';'"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "Forventet '('"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "Forventet ')'"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Uafsluttet streng konstant"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Nummer forventet"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Funktion forventet"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "[objekt]' er ikke en dato objekt"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "objekt forventet"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Ulovlig tildeling"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|' er ikke defineret"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Boolean objekt forventet"
+
+#: jscript.rc:45
+#, fuzzy
+msgid "VBArray object expected"
+msgstr "Array objekt forventet"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "JScript objekt forventet"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Syntax fejl i regulært udtryk"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "URI, der skal kodes indeholder ugyldige tegn"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Array længde skal være et endeligt positivt heltal"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Array objekt forventet"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Instillinger"
index 4a55b91d03af45f2d182d941478dcf16fca74456..8bb7e6bc6c52729aa5b14a3a9415d2f30f47bc75 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -1009,6 +1009,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Fehler beim umwandeln des Objektes in einen Grundtyp"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Ungültiger Funktionsaufruf oder Argument"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "Index außerhalb des Bereichs"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Automatisierungsserver konnte das Objekt nicht erstellen"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Das Objekt unterstützt diese Eigenschaft oder Methode nicht"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "Das Objekt unterstützt diese Aktion nicht"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argument nicht optional"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Syntax Fehler"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "';' erwartet"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "'(' erwartet"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "')' erwartet"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "konstante Zeichenkette nicht terminiert"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr "Bedingte Kompilierung ist ausgeschaltet"
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Nummer erwartet"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Funktion erwartet"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'[Objekt]' ist kein Datums-Objekt"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Objekt erwartet"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Unzulässige Zuweisung"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|' nicht definiert"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Boolisches Objekt erwartet"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "VBArray Objekt erwartet"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "JScript Objekt erwartet"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Syntax Fehler in regulärem Ausdruck"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Array-Größe muss eine endliche, positive Ganzzahl sein"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Array Objekt erwartet"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Einstellungen"
index ee2fb65c3dcf14eb7f4cf2f528e7bea4c6c06f24..54cc5445978457879682de5eeda66e2582360179 100644 (file)
--- a/po/el.po
+++ b/po/el.po
@@ -1005,6 +1005,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr ""
index 2879a2a24e857d8107f23fa7e6ca2e27a6907020..2e24d4bb969b2646bb091e5eca3dc58d29570817 100644 (file)
--- a/po/en.po
+++ b/po/en.po
@@ -1005,6 +1005,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Syntax error"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Properties"
index 1e454351fe24c13a61df3899786aedfc7d101a92..56d3b55732afca98a553665657cfe67a9b12b494 100644 (file)
@@ -1005,6 +1005,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Error converting object to primitive type"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Invalid procedure call or argument"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "Subscript out of range"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Automation server can't create object"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Object doesn't support this property or method"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "Object doesn't support this action"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argument not optional"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Syntax error"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "Expected ';'"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "Expected '('"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "Expected ')'"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Unterminated string constant"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr "Conditional compilation is turned off"
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Number expected"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Function expected"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'[object]' is not a date object"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Object expected"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Illegal assignment"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|' is undefined"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Boolean object expected"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "VBArray object expected"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "JScript object expected"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Syntax error in regular expression"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "URI to be encoded contains invalid characters"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Array length must be a finite positive integer"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Array object expected"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Properties"
index 959d4dabc5122f9aa3d49283df3f2809201d9699..dd10ba8e32a74792ec8ca2e5d275fe94c5478ab1 100644 (file)
--- a/po/eo.po
+++ b/po/eo.po
@@ -1006,6 +1006,110 @@ msgstr ""
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Ecoj"
index ed969f01033ed8a48e0f5217174f9245ffab5847..c327e080f2287efb78ff6a2687292a5633ff7f4c 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -1017,6 +1017,112 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Error al convertir objeto a tipo primitivo"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Llamada a procedimiento no válido o argumento"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Servidor de automatización no puede crear el objeto"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "El objeto no acepta esta propiedad o método"
+
+#: jscript.rc:30
+#, fuzzy
+msgid "Object doesn't support this action"
+msgstr "El objeto no acepta esta propiedad o método"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argumento no opcional"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Error de sintaxis"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "Esperado ';'"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "Esperado '('"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "Esperado ')'"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Constante de cadena no terminada"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Numero esperado"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Función esperada"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'[objeto]' no es un objeto fecha"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Objeto esperado"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Asignación ilegal"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|' no está definido"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Objeto Booleano esperado"
+
+#: jscript.rc:45
+#, fuzzy
+msgid "VBArray object expected"
+msgstr "Objeto Arreglo esperado"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "Objeto JScript esperado"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Error de sintaxis en la expresion regular"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "URI a codificar contiene caracteres no válidos"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "La longitud del arreglo debe ser un entero positivo finito"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Objeto Arreglo esperado"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Propiedades"
index 78a241ff04f3880a3a8e4477cdad4de721581f6b..0886b443dfea01bfab09bc8828dd7a2add72425f 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -1006,6 +1006,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Ominaisuudet"
index ba1a30213f99902ca4499e03c8f1f65507bc1fb0..04013b204071129dc5ed49dffabd9db45598d803 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -1009,6 +1009,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Erreur lors de la conversion de l'objet vers un type primitif"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Appel de procédure ou argument invalide"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "Indice hors limites"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Le serveur d'automatisation ne peut créer l'objet"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Cet objet ne supporte pas cette propriété ou méthode"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "Cet objet ne supporte pas cette action"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argument non optionnel"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Erreur de syntaxe"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "« ; » attendu"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "« ( » attendu"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "« ) » attendu"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Constante chaîne de caractères non clôturée"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr "La compilation conditionnelle est désactivée"
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Nombre attendu"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Fonction attendue"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "« [objet] » n'est pas un objet de type date"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Objet attendu"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Affectation illégale"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "« | » n'est pas défini"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Objet booléen attendu"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "Objet VBArray attendu"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "Objet JScript attendu"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Erreur de syntaxe dans l'expression rationnelle"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "L'URI à coder contient des caractères invalides"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "La longueur d'un tableau doit être un entier positif"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Objet tableau attendu"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Propriétés"
index a84807c470cb7e622e624edaf53f7dfe8f5cc373..e5efad9d9921c30b30a982a01667db584f68005f 100644 (file)
--- a/po/he.po
+++ b/po/he.po
@@ -1006,6 +1006,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&מאפיינים"
index 499e31cf2432ab4e6fc0081c6f70a63105683360..28781111ea9fad6a2d2203908657d895dd94bc8e 100644 (file)
--- a/po/hi.po
+++ b/po/hi.po
@@ -1006,6 +1006,110 @@ msgstr ""
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "सूचना (&o)"
index c97ab46c87d40ae5188eb093db2bcb7fa5a42316..f591189ae856c38e092165af4fb7d3d01a77b076 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
@@ -1009,6 +1009,112 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Hiba az objektum primitív típusra való konvertálásánál"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Érvénytelen eljáráshívás vagy argmentum"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Az automatizáló (automation) kiszolgáló nem tud objektumot létrehozni"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Az objektum nem támogatja ezt a tulajdonságot vagy metódust"
+
+#: jscript.rc:30
+#, fuzzy
+msgid "Object doesn't support this action"
+msgstr "Az objektum nem támogatja ezt a tulajdonságot vagy metódust"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Az argumentum nem opcionális"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Szinttaktikai hiba"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "Hiányzó ';'"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "Hiányzó '('"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "Hiányzó ')'"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Lezáratlan sztring konstans"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Számot vártam"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Függvényt vártam"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'Az [object]' nem egy date (dátum) objektum"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Objektumot vártam"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Nem megengedett összerendelés"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "A '|' nem definiált"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Boolean (igaz-hamis) objektumot vártam"
+
+#: jscript.rc:45
+#, fuzzy
+msgid "VBArray object expected"
+msgstr "Tömb objektumot vártam"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "JScript objektumot vártam"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Szinttaktikai hiba a reguláris kifejezésben"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz"
+
+#: jscript.rc:49
+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:50
+msgid "Array object expected"
+msgstr "Tömb objektumot vártam"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Beállítások"
index fddff66d4e9fe62bae4842da5b0f7a802d4a94da..6b4d963936d88ddf502cd236c545b9de0a4c0fb1 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -1009,6 +1009,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Errore nel convertire un oggetto ad un tipo primitivo"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Chiamata o argomento di procedura non valido"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "Sottoscript fuori portata"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Il server di automazione non può creare l'oggetto"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "L'oggetto non supporta questa proprietà o metodo"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "L'oggetto non supporta questa azione"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argomento non opzionale"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Errore di sintassi"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "Richiesto ';'"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "Richiesto '('"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "Richiesto ')'"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Costante stringa non terminata"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr "Compilazione condizionale disattivata"
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Richiesto un numero"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Richiesta una funzione"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'[oggetto]' non è un oggetto data"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Richiesto un oggetto"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Assegnamento illegale"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|' non è definito"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Richiesto un oggetto Booleano"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "Richiesto un oggetto VBArray"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "Richiesto un oggetto JScript"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Errore di sintassi nell'espressione regolare"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "L'URI da codificare contiene caratteri non validi"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "La lunghezza dell'array deve essere un intero finito e positivo"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Richiesto un oggetto array"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Proprietà"
index 9a16f0b7b891258aa9ee4cb1b6b52084b929da4b..affa7f537be27d69a607e33bcc1a66e004f1bc91 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -1009,6 +1009,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "オブジェクトを基本型に変換できません"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "手続き呼び出しまたは引数が無効です"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "添字が範囲外です"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "オートメーション サーバはオブジェクトを生成できません"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "オブジェクトはこのプロパティまたはメソッドをサポートしていません"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "オブジェクトはこの操作をサポートしていません"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "引数は省略できません"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "文法エラー"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "';'を期待していました"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "'('を期待していました"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "')'を期待していました"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "文字列定数が終端していません"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "数値を期待していました"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "関数を期待していました"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'[object]' は日付オブジェクトではありません"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "オブジェクトを期待していました"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "不正な割り当て"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|'は定義されていません"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Boolean オブジェクトを期待していました"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "VBArray オブジェクトを期待していました"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "JScript オブジェクトを期待していました"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "正規表現に文法誤りがあります"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "エンコードされるURIに無効な文字が含まれています"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "配列の長さは有限の正整数でなければなりません"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "配列オブジェクトを期待していました"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "プロパティ(&P)"
index b01b94a3905bcc78b0a4ab9144f3c061e87292db..c40c33fdb65d37a8cb2f5d76e3e56d6c267d51ec 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
@@ -1009,6 +1009,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "객페를 기본 형식으로 변환하는 중에 에러 발생"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "올바르지 않은 프로시져 호출이나 인수"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "첨자가 범위를 벗어남"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "자동화 서버가 객체를 만들 수 없음"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "객체는 이 속성이나 메소드를 지원하지 않음"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "객체는 이 행동을 지원하지 않음"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "인수는 옵션이 아닙니다"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "문법 에러"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "';' 가 필요합니다"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "'(' 가 필요합니다"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "')' 가 필요합니다"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "띁나지 않은 문자열 상수"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr "조건부 컴파일이 설정되어 있음"
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "숫자가 필요합니다"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "함수가 필요합니다"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'[객체]' 는 날짜 객체가 아님"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "객체가 필요합니다"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "잘못된 할당"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|' 는 정의되지 않았음"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "볼린 객제가 필요함"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "VBArray 갹체가 필요함"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "JScript 객체가 필요함"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "정규 표현식에 문법에러가 있음"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "URI 는 올바르지 않은 문자를 포함해서 인코딩되었음"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "배열 길이는 반드시  한정된 양의 정수이어야 함"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "배열 객체가 필요함"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "등록 정보(&P)"
index 1f10f47448063a7a8a135260307c0565103be825..3ae02345e94fb1f03e73281fc4f5e8b88a7db30d 100644 (file)
--- a/po/lt.po
+++ b/po/lt.po
@@ -1009,6 +1009,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Klaida keičiant objektą į primityvų tipą"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Netinkamas kreipinys į procedūrą ar argumentas"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "Indeksas nepatenka į rėžius"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Automatizacijos serveriui nepavyko sukurti objekto"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Objektas nepalaiko šios savybės ar metodo"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "Objektas nepalaiko šio veiksmo"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argumentas nėra neprivalomas"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Sintaksės klaida"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "Tikėtasi „;“"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "Tikėtasi „(“"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "Tikėtasi „)“"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Nebaigta eilutės konstanta"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr "Sąlyginis kompiliavimas yra išjungtas"
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Tikėtasi skaičiaus"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Tikėtasi funkcijos"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "„[objektas]“ nėra datos objektas"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Tikėtasi objekto"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Neleistinas priskyrimas"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "„|“ yra neapibrėžtas"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Tikėtasi loginio objekto"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "Tikėtasi VBArray objekto"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "Tikėtasi JScript objekto"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Sintaksės klaida reguliariajame reiškinyje"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "Koduotiname URI yra netinkamų simbolių"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Tikėtasi masyvo objekto"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Savybės"
index ec6a207afe4176735eefeb78a49be836a121fd5d..54a88f5abb6b0db9819862915609bfd95bfdd104 100644 (file)
--- a/po/ml.po
+++ b/po/ml.po
@@ -1006,6 +1006,110 @@ msgstr ""
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "വി_വരം"
index f9fd72cf191408a5b7b8cd9588dcda0e27978e2d..cf08251e3e65bab6af20e88459639c04503f886a 100644 (file)
@@ -1009,6 +1009,112 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Klarte ikke konvertere objekt til primitiv type"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Ugyldig funksjonskall eller argument"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Automatiseringstjeneren klarte ikke opprette objekt"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Objektet støtter ikke denne egenskapen eller metoden"
+
+#: jscript.rc:30
+#, fuzzy
+msgid "Object doesn't support this action"
+msgstr "Objektet støtter ikke denne egenskapen eller metoden"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argumentet er ikke valgfritt"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Syntaksfeil"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "Forventet ';'"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "Forventet '('"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "Forventet ')'"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Uavsluttet strengkonstant"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Forventet nummer"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Forventet funksjon"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'[object]' er ikke et dataobjekt"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Forventet objekt"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Ugyldig tilordning"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|' er udefinert"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Forventet boolsk verdi"
+
+#: jscript.rc:45
+#, fuzzy
+msgid "VBArray object expected"
+msgstr "Forventet rekke-objekt"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "Forventet JScript-objekt"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Syntaksfeil i regulært uttrykk"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "URI'en som skulle kodes inneholder ugyldige tegn"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Rekkens lengde må være et endelig, positivt tall"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Forventet rekke-objekt"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Egenskaper"
index 1c09815effc62fe4e5065cb6ed679d67fd222f64..763ce7b1cc6ccdcda09cfa342eeaa8e04df6fbb0 100644 (file)
--- a/po/nl.po
+++ b/po/nl.po
@@ -1009,6 +1009,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Fout bij het omzetten van het object naar een primitief type"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Ongeldige procedure-aanroep of argument"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "Index buiten bereik"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Automatiseringsserver kan het object niet creëren"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Dit object ondersteunt deze eigenschap of methode niet"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "Dit object ondersteunt deze actie niet"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argument is niet optioneel"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Syntax fout"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "';' verwacht"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "'(' verwacht"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "')' verwacht"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Onafgesloten tekenreeksconstante"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr "Conditionele compilatie is uitgeschakeld"
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Getal verwacht"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Functie verwacht"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'[object]' is geen datum object"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Object verwacht"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Ongeldige toekenning"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|' is ongedefinieerd"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Boolean object verwacht"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "VBArray object verwacht"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "JScript object verwacht"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Syntax fout in reguliere expressie"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "De te coderen URI bevat ongeldige tekens"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Array lengte moet een eindig, positief geheel getal zijn"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Array object verwacht"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Eigenschappen"
index 80433292821d4ab42bc2702c6baa215a4263431b..773b2a4d343995d6baa5a93711761b8ce4539329 100644 (file)
--- a/po/or.po
+++ b/po/or.po
@@ -1006,6 +1006,110 @@ msgstr ""
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "ସୂଚନା (&o)"
index 61c434073162fbb5e45e902afc58e0571c292adf..fd7514f1718ee669c6638867ffd50845c9d5c69f 100644 (file)
--- a/po/pa.po
+++ b/po/pa.po
@@ -1006,6 +1006,110 @@ msgstr ""
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "ਜਾਣਕਾਰੀ(&o)"
index 6e8bb234401aceb709bd3c5cef0dca24e52a30b1..6dc8b3af53e312bf4c05f7444c10a013a4c18391 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -1009,6 +1009,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Błąd przy przekształcaniu obiektu do typu podstawowego"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Niewłaściwe wywołanie procedury lub argument"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "Indeks dolny poza zakresem"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Serwer automatyzacji nie może stworzyć obiektu"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Obiekt nie wspiera tej właściwości lub metody"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "Obiekt nie wspiera tej akcji"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argument nieopcjonalny"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Błąd składni"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "Oczekiwane ';'"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "Oczekiwane '('"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "Oczekiwane ')'"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Niezakończona stała znakowa"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr "Warunkowa kompilacja jest wyłączona"
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Oczekiwana liczba"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Oczekiwana funkcja"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'[obiekt]' nie jest obiektem daty"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Oczekiwany obiekt"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Niepoprawne przypisanie"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|' jest niezdefiniowany"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Oczekiwany obiekt boolean"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "Oczekiwany obiekt VBArray"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "Oczekiwany obiekt JScript"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Błąd składni w regularnym wyrażeniu"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "Kodowane URI zawiera niewłaściwe znaki"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Oczekiwany obiekt tablicowy"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Ustawienia"
index 896467c7174d2ae64564f7bb1c3d6035654ba1bc..3f4b4dc5b5346a4baaba2d56acc8d0691af57145 100644 (file)
@@ -1009,6 +1009,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Erro ao converter objeto em tipo primitivo"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Argumento ou chamada de procedimento inválida"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "Subscript fora de alcance"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "O servidor de automação não conseguiu criar o objeto"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "O objeto não suporta esta propriedade ou método"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "O objeto não suporta esta ação"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argumento não opcional"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Erro de sintaxe"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "';' esperado"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "'(' esperado"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "')' esperado"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Constante de string não terminada"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Número esperado"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Função esperada"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'[object]' não é um objeto de data"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Objeto esperado"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Atribuição ilegal"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|' é indefinido"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Objeto boleano esperado"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "Objeto VBArray esperado"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "Objeto JScript esperado"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Erro de sintaxe na expressão regular"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "URI a ser codificado contém caracteres inválidos"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Tamanho do vetor tem que ser um inteiro finito positivo"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Objeto Array esperado"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Propriedades"
index b3f9c266170c618ba8dbab4d8c0b298eddb77757..267de29ccfe3dafbc62400922d0964604ea5cca7 100644 (file)
@@ -1009,6 +1009,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Erro ao converter objecto em tipo primitivo"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Argumento ou chamada de procedimento inválida"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "Subscript fora de alcance"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "O servidor de automação não conseguiu criar o objecto"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "O objecto não suporta esta propriedade ou método"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "O objecto não suporta esta acção"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argumento não opcional"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Erro de sintaxe"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "';' esperado"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "'(' esperado"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "')' esperado"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Constante de string não terminada"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Número esperado"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Função esperada"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'[object]' não é um objecto de data"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Objecto esperado"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Atribuição ilegal"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|' é indefinido"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Objecto boleano esperado"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "Objecto VBArray esperado"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "Objecto JScript esperado"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Erro de sintaxe na expressão regular"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "URI a ser codificado contém caracteres inválidos"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Tamanho do vector tem de ser um inteiro finito positivo"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Objecto Array esperado"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Propriedades"
index 16a1ccf12ea1e27894ab12b73905873b3b568e45..4d77d7c9e40ec69cf877b125a54ebb92c8a4098e 100644 (file)
--- a/po/ro.po
+++ b/po/ro.po
@@ -1009,6 +1009,112 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Eroare la convertirea obiectului la un tip primitiv"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Apel de procedură sau argument nevalid"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Serverul de automatizare nu poate crea obiectul"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Obiectul nu suportă această proprietate sau metodă"
+
+#: jscript.rc:30
+#, fuzzy
+msgid "Object doesn't support this action"
+msgstr "Obiectul nu suportă această proprietate sau metodă"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argumentul nu este opțional"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Eroare de sintaxă"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "Se așteaptă „;”"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "Se așteaptă „(”"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "Se așteaptă „)”"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Șir constant neterminat"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Se așteaptă un număr"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Se așteaptă o funcție"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "„[obiect]” nu este un obiect de tip dată"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Se așteaptă un obiect"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Atribuire ilegală"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "„|” nu este definit"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Se așteaptă un obiect boolean"
+
+#: jscript.rc:45
+#, fuzzy
+msgid "VBArray object expected"
+msgstr "Se așteaptă un obiect matrice"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "Se așteaptă un obiect JScript"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Eroare de sintaxă în expresia regulată"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "URI care trebuie codificat conține caractere nevalide"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Se așteaptă un obiect matrice"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Proprietăți"
index 7ea57db5fd03df868e4c2ee5ce6765d722e973ca..1942f4ea86acbeb04f4c28954e655e6aef291486 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -1017,6 +1017,110 @@ msgstr "Предыдущая глава"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Ошибка конвертирования объекта в примитивный тип"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Неверный вызов процедуры или аргумент"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "Индекс вне диапазона"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Сервер автоматизации не может создать объект"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Объект не поддерживает это свойство или метод"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "Объект не поддерживает это действие"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Отсутствует обязательный аргумент"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Синтаксическая ошибка"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "Ожидается ';'"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "Ожидается '('"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "Ожидается ')'"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Незавершённая строковая константа"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Ожидается число"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Ожидается функция"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'[object]' не объект типа 'date'"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Ожидается объект"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Неверное присваивание"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|' не определён"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Ожидается объект типа 'bool'"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "Ожидается объект типа 'VBArray'"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "Ожидается объект типа 'JScript'"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Синтаксическая ошибка в регулярном выражении"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "URI содержит неверные символы"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Длиной массива должно быть конечное положительное число"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Ожидается объект типа 'Array'"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Свойства"
index a7cbddcd6974e3beab8b85c5b0b9fa05a73336a5..7c6420012cf51d9d254caac3d6868ea9a8c09fc5 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -1006,6 +1006,110 @@ msgstr ""
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Vlastnosti"
index 91d6941031e72dc7d55dea1fb926587e3722ef12..703dee5588d2baf8dd99c785d1f892b87daa84be 100644 (file)
--- a/po/sl.po
+++ b/po/sl.po
@@ -1020,6 +1020,111 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Napaka med spreminjanjem v primitivni tip"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Napačen klic postopka ali argument"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Avtomatizacijski server ne more ustvariti objekta"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Objekt ne podpira atributa ali metode"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "Objekt ne podpira akcije"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argument je obvezen"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Napačna sintaksa"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "Pričakujem ';'"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "Pričakujem '('"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "Pričakujem ')'"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Nezaključen niz"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Pričakujem število"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Pričakujem funkcijo"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'[object]' ni date objekt"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Pričakujem objekt"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Napačna prireditev"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|' je nedifiniran"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Pričakujem Boolean objekt"
+
+#: jscript.rc:45
+#, fuzzy
+msgid "VBArray object expected"
+msgstr "Pričakujem Array objekt"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "Pričakujem JScript objekt"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Napačna sintaksa v regularnem izrazu"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "URI vsebuje neveljavne znake"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Dožina polja mora bit pozitivno celo število"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Pričakujem Array objekt"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Lastnosti"
index a6fd0a37f87acb850bb8d6d44ea1b58dbfc56932..44544e0c54859659f2e2f5603813e963b578f13e 100644 (file)
@@ -1009,6 +1009,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Greška u pretvaranju objekta u osnovnu vrstu"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Nevažeći postupak poziva ili argumenta"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "Potpis je van dometa"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Automatizovani server ne može da stvori objekat"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Objekat ne podržava ovo svojstvo ili metodu"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "Objekat ne podržava ovu radnju"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argument je obavezan"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Greška u sintaksi"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "Očekivano ';'"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "Očekivano '('"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "Očekivano ')'"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Nezavršena konstanta niski"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Očekivani broj"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Očekivana funkcija"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "„[object]“ nije vremenski objekat"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Očekivani objekat"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Nedozvoljen zadatak"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "„|“ nije određeno"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Očekivani objekat istinitosne vrednosti"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "VBArray objekat se očekuje"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "Očekivani objekat JScript vrste"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Sintaksna greška u regularnom izrazu"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "URI sadrži neispravne znakove"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Niz dužine mora biti konačan pozitivan ceo broj"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Očekivani niz objekta"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Svojstva"
index 580016707ab0c63d197a675e21ed1966590ad1da..0b1495b11498f7519a246e0e2620fb0d9bde67ca 100644 (file)
@@ -1009,6 +1009,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Грешка у претварању објекта у основну врсту"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Неважећи поступак позива или аргумента"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "Потпис је ван домета"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Аутоматизовани сервер не може да створи објекат"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Објекат не подржава ово својство или методу"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "Објекат не подржава ову радњу"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Аргумент је обавезан"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Грешка у синтакси"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "Очекивано ';'"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "Очекивано '('"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "Очекивано ')'"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Незавршена константа ниски"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Очекивани број"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Очекивана функција"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "„[object]“ није временски објекат"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Очекивани објекат"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Недозвољен задатак"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "„|“ није одређено"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Очекивани објекат истинитосне вредности"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "VBArray објекат се очекује"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "Очекивани објекат JScript врсте"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Синтаксна грешка у регуларном изразу"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "URI садржи неисправне знакове"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Низ дужине мора бити коначан позитиван цео број"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Очекивани низ објекта"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Својства"
index 2385a88673019c3e14c2e7f4784c8d02443fb5c8..da1071326dedd28f7b2d1e7f585e879b2ee707d4 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -1009,6 +1009,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Kunde inte konvertera objekt till primitiv typ"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Ogiltigt funktionsanrop eller argument"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "Index utanför giltigt intervall"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Automationsservern kunde inte skapa objekt"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Objektet stöder inte denna egenskap eller metod"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "Objektet stöder inte denna handling"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Argumentet är inte valfritt"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Syntaxfel"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "';' förväntades"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "'(' förväntades"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "')' förväntades"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Oterminerad strängkonstant"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr "Villkorlig kompilering är avslagen"
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Nummer förväntades"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Funktion förväntades"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'[object]' är inte ett datumobjekt"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Objekt förväntades"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Ogiltig tilldelning"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|' är odefinierat"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Boolskt objekt förväntades"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "VBArray-objekt förväntades"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "JScript-objekt förväntades"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Syntaxfel i reguljärt uttryck"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "Den URI som ska kodas innehåller ogiltiga tecken"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Array-längd måste vara ett positivt ändligt heltal"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Array-objekt förväntades"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Egenskaper"
index bc924613600c2c968d6e9a3d8e813de097a71e91..a1648a85a7b3ddc388a1c7b8cd36cfda4a58e20f 100644 (file)
--- a/po/te.po
+++ b/po/te.po
@@ -1006,6 +1006,110 @@ msgstr ""
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "సమాచారము (&o)"
index a3e4fbc5d07fc65dc37b873e47c3385c7fca8ba5..1ef64ae5ce292e7f5043ef5e26f952cf3fd0cd61 100644 (file)
--- a/po/th.po
+++ b/po/th.po
@@ -1006,6 +1006,110 @@ msgstr ""
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "ปรับแต่งนาฬิกา"
index 3f3f09b0ba7888a3fc8bc33423c3b23fa82c512f..abbd8d893d51a020b09bbf5281a8d8d20b3125c6 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -1017,6 +1017,111 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+#, fuzzy
+msgid "Syntax error"
+msgstr "Syntax error\n"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Özellikler"
index 3116897654b242d983a4eaaea14e45e78a7e8dbb..080cbc49c2dc7f5f9a55ca9e947d6aaafa429a87 100644 (file)
--- a/po/uk.po
+++ b/po/uk.po
@@ -1009,6 +1009,110 @@ msgstr "IDTB_TOC_PREV"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr "Помилка конвертування об'єкту в примітивний тип"
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr "Невірний виклик процедури або аргумент"
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr "Індекс поза діапазоном"
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr "Сервер автоматизації не може створити об'єкт"
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr "Об'єкт не підтримує цю властивість чи метод"
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr "Об'єкт не підтримує цю дію"
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr "Відсутній обов'язковий аргумент"
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr "Синтаксична помилка"
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr "Очікується ';'"
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr "Очікується '('"
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr "Очікується ')'"
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr "Незавершена рядкова константа"
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr "Очікується число"
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr "Очікується функція"
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr "'[object]' не об'єкт типу date"
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr "Очікується об'єкт"
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr "Невірне присвоєння"
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr "'|' не визначено"
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr "Очікується об'єкт Boolean"
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr "Очікується об'єкт VBArray"
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr "Очікується об'єкт JScript"
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr "Синтаксична помилка в регулярному виразі"
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr "URI, що буде закодований, містить неприпустимі символи"
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число"
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr "Очікується об'єкт Array"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Властивості"
index 88272049ded31a741146b79b7ed69f5ec807efae..ee5c6ac67edcf41396dd90980c4e89c24b7f886c 100644 (file)
--- a/po/wa.po
+++ b/po/wa.po
@@ -1006,6 +1006,110 @@ msgstr ""
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Propietés"
index 2e36c49558b7689712553ab35dfcdeb9b738d9a5..e5ac95dc3b874ea5ba448c36a94f2abdbcfdd07a 100644 (file)
@@ -1002,6 +1002,110 @@ msgstr ""
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr ""
index 873b4ad0e10f8a83636f28cd00666484b8388f5d..b297c3eae484125818ab60525579cd685839fd72 100644 (file)
@@ -1006,6 +1006,110 @@ msgstr "前一项"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "属性(&P)"
index c74d3c289036e19816324668464450f2d3ef2fe3..9f348efb1bce23c85750f06361fb7a222ea09df8 100644 (file)
@@ -1006,6 +1006,110 @@ msgstr "前一項"
 msgid "Cinepak Video codec"
 msgstr ""
 
+#: jscript.rc:25
+msgid "Error converting object to primitive type"
+msgstr ""
+
+#: jscript.rc:26
+msgid "Invalid procedure call or argument"
+msgstr ""
+
+#: jscript.rc:27
+msgid "Subscript out of range"
+msgstr ""
+
+#: jscript.rc:28
+msgid "Automation server can't create object"
+msgstr ""
+
+#: jscript.rc:29
+msgid "Object doesn't support this property or method"
+msgstr ""
+
+#: jscript.rc:30
+msgid "Object doesn't support this action"
+msgstr ""
+
+#: jscript.rc:31
+msgid "Argument not optional"
+msgstr ""
+
+#: jscript.rc:32
+msgid "Syntax error"
+msgstr ""
+
+#: jscript.rc:33
+msgid "Expected ';'"
+msgstr ""
+
+#: jscript.rc:34
+msgid "Expected '('"
+msgstr ""
+
+#: jscript.rc:35
+msgid "Expected ')'"
+msgstr ""
+
+#: jscript.rc:36
+msgid "Unterminated string constant"
+msgstr ""
+
+#: jscript.rc:37
+msgid "Conditional compilation is turned off"
+msgstr ""
+
+#: jscript.rc:40
+msgid "Number expected"
+msgstr ""
+
+#: jscript.rc:38
+msgid "Function expected"
+msgstr ""
+
+#: jscript.rc:39
+msgid "'[object]' is not a date object"
+msgstr ""
+
+#: jscript.rc:41
+msgid "Object expected"
+msgstr ""
+
+#: jscript.rc:42
+msgid "Illegal assignment"
+msgstr ""
+
+#: jscript.rc:43
+msgid "'|' is undefined"
+msgstr ""
+
+#: jscript.rc:44
+msgid "Boolean object expected"
+msgstr ""
+
+#: jscript.rc:45
+msgid "VBArray object expected"
+msgstr ""
+
+#: jscript.rc:46
+msgid "JScript object expected"
+msgstr ""
+
+#: jscript.rc:47
+msgid "Syntax error in regular expression"
+msgstr ""
+
+#: jscript.rc:48
+msgid "URI to be encoded contains invalid characters"
+msgstr ""
+
+#: jscript.rc:49
+msgid "Array length must be a finite positive integer"
+msgstr ""
+
+#: jscript.rc:50
+msgid "Array object expected"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "屬性(&P)"