jscript: Convert translations to po files.

oldstable
Alexandre Julliard 2011-01-06 13:38:57 +01:00
parent 9c6444c6be
commit 0ccf1d89f8
65 changed files with 4290 additions and 1107 deletions

2
configure vendored
View File

@ -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

View 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)

View 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

View 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

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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 "配列オブジェクトを期待していました"
}

View File

@ -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 "배열 객체가 필요함"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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'"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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

104
po/bg.po
View File

@ -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 ""

105
po/cs.po
View File

@ -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"

106
po/da.po
View File

@ -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"

104
po/de.po
View 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 "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"

104
po/el.po
View 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 ""
#: 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 ""

104
po/en.po
View 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 ""
#: 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"

View 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"

104
po/eo.po
View 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 "&Ecoj"

106
po/es.po
View File

@ -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"

104
po/fi.po
View File

@ -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"

104
po/fr.po
View 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 "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"

104
po/he.po
View File

@ -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 "&מאפיינים"

104
po/hi.po
View 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 "सूचना (&o)"

106
po/hu.po
View 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 "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"

104
po/it.po
View 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 "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à"

104
po/ja.po
View 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 "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)"

104
po/ko.po
View 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 "'[객체]' 는 날짜 객체가 아님"
#: 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)"

104
po/lt.po
View 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 "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"

104
po/ml.po
View 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 "വി_വര"

View 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"

104
po/nl.po
View 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 "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"

104
po/or.po
View 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 "ସୂଚନା (&o)"

104
po/pa.po
View 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 "ਜਾਣਕਾਰੀ(&o)"

104
po/pl.po
View 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 "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"

View 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"

View 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"

106
po/ro.po
View 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 "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"

104
po/ru.po
View File

@ -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 "&Свойства"

104
po/sk.po
View 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 "&Vlastnosti"

105
po/sl.po
View File

@ -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"

View 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"

View 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 "&Својства"

104
po/sv.po
View 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 "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"

104
po/te.po
View 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 "సమాచారము (&o)"

104
po/th.po
View 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 "ปรับแต่งนาฬิกา"

105
po/tr.po
View File

@ -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"

104
po/uk.po
View 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]' не об'єкт типу 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 "&Властивості"

104
po/wa.po
View 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 "&Propietés"

View 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 ""

View 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)"

View 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)"