@zzzen/pyright-internal 1.2.0-dev.20250112 → 1.2.0-dev.20250126
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/analyzer/backgroundAnalysisProgram.d.ts +1 -0
- package/dist/analyzer/backgroundAnalysisProgram.js +3 -0
- package/dist/analyzer/backgroundAnalysisProgram.js.map +1 -1
- package/dist/analyzer/binder.js +7 -1
- package/dist/analyzer/binder.js.map +1 -1
- package/dist/analyzer/checker.d.ts +1 -1
- package/dist/analyzer/checker.js +34 -42
- package/dist/analyzer/checker.js.map +1 -1
- package/dist/analyzer/constructors.js +1 -1
- package/dist/analyzer/constructors.js.map +1 -1
- package/dist/analyzer/enums.js +140 -126
- package/dist/analyzer/enums.js.map +1 -1
- package/dist/analyzer/importResolver.d.ts +3 -2
- package/dist/analyzer/importResolver.js +80 -79
- package/dist/analyzer/importResolver.js.map +1 -1
- package/dist/analyzer/pythonPathUtils.d.ts +2 -0
- package/dist/analyzer/pythonPathUtils.js +20 -11
- package/dist/analyzer/pythonPathUtils.js.map +1 -1
- package/dist/analyzer/service.js +2 -5
- package/dist/analyzer/service.js.map +1 -1
- package/dist/analyzer/typeCacheUtils.js +1 -1
- package/dist/analyzer/typeCacheUtils.js.map +1 -1
- package/dist/analyzer/typeEvaluator.js +72 -44
- package/dist/analyzer/typeEvaluator.js.map +1 -1
- package/dist/analyzer/typeEvaluatorTypes.d.ts +3 -1
- package/dist/analyzer/typeEvaluatorTypes.js.map +1 -1
- package/dist/analyzer/typeGuards.js +24 -17
- package/dist/analyzer/typeGuards.js.map +1 -1
- package/dist/backgroundAnalysis.js +2 -0
- package/dist/backgroundAnalysis.js.map +1 -1
- package/dist/backgroundThreadBase.d.ts +1 -0
- package/dist/backgroundThreadBase.js +5 -8
- package/dist/backgroundThreadBase.js.map +1 -1
- package/dist/common/fullAccessHost.d.ts +1 -1
- package/dist/common/fullAccessHost.js +1 -1
- package/dist/common/languageServerInterface.d.ts +1 -1
- package/dist/common/realFileSystem.d.ts +1 -1
- package/dist/common/realFileSystem.js +10 -2
- package/dist/common/realFileSystem.js.map +1 -1
- package/dist/common/serviceProvider.d.ts +1 -0
- package/dist/common/serviceProvider.js +8 -0
- package/dist/common/serviceProvider.js.map +1 -1
- package/dist/languageServerBase.d.ts +3 -3
- package/dist/languageServerBase.js +7 -4
- package/dist/languageServerBase.js.map +1 -1
- package/dist/languageService/analyzerServiceExecutor.js +4 -1
- package/dist/languageService/analyzerServiceExecutor.js.map +1 -1
- package/dist/languageService/hoverProvider.js +5 -3
- package/dist/languageService/hoverProvider.js.map +1 -1
- package/dist/languageService/tooltipUtils.d.ts +1 -1
- package/dist/languageService/tooltipUtils.js +14 -1
- package/dist/languageService/tooltipUtils.js.map +1 -1
- package/dist/localization/localize.d.ts +9 -7
- package/dist/localization/localize.js +6 -2
- package/dist/localization/localize.js.map +1 -1
- package/dist/localization/package.nls.cs.json +8 -7
- package/dist/localization/package.nls.de.json +8 -7
- package/dist/localization/package.nls.en-us.json +21 -5
- package/dist/localization/package.nls.es.json +8 -7
- package/dist/localization/package.nls.fr.json +8 -7
- package/dist/localization/package.nls.it.json +8 -7
- package/dist/localization/package.nls.ja.json +8 -7
- package/dist/localization/package.nls.ko.json +8 -7
- package/dist/localization/package.nls.pl.json +6 -5
- package/dist/localization/package.nls.pt-br.json +8 -7
- package/dist/localization/package.nls.qps-ploc.json +4 -3
- package/dist/localization/package.nls.ru.json +8 -7
- package/dist/localization/package.nls.tr.json +6 -5
- package/dist/localization/package.nls.zh-cn.json +8 -7
- package/dist/localization/package.nls.zh-tw.json +8 -7
- package/dist/pyright.js +11 -4
- package/dist/pyright.js.map +1 -1
- package/dist/server.d.ts +2 -1
- package/dist/server.js +1 -1
- package/dist/server.js.map +1 -1
- package/dist/tests/config.test.js +451 -427
- package/dist/tests/config.test.js.map +1 -1
- package/dist/tests/harness/fourslash/testState.d.ts +3 -1
- package/dist/tests/harness/fourslash/testState.js +23 -23
- package/dist/tests/harness/fourslash/testState.js.map +1 -1
- package/dist/tests/hoverProvider.test.js +51 -0
- package/dist/tests/hoverProvider.test.js.map +1 -1
- package/dist/tests/importResolver.test.js +537 -527
- package/dist/tests/importResolver.test.js.map +1 -1
- package/dist/tests/sourceFile.test.js +1 -0
- package/dist/tests/sourceFile.test.js.map +1 -1
- package/dist/tests/testUtils.js +1 -0
- package/dist/tests/testUtils.js.map +1 -1
- package/dist/tests/typeEvaluator1.test.js +1 -1
- package/dist/tests/typeEvaluator3.test.js +5 -1
- package/dist/tests/typeEvaluator3.test.js.map +1 -1
- package/dist/tests/typeEvaluator5.test.js +1 -1
- package/dist/tests/typeEvaluator6.test.js +8 -0
- package/dist/tests/typeEvaluator6.test.js.map +1 -1
- package/dist/tests/typeEvaluator7.test.js +4 -0
- package/dist/tests/typeEvaluator7.test.js.map +1 -1
- package/dist/tests/uri.test.js +3 -0
- package/dist/tests/uri.test.js.map +1 -1
- package/dist/tests/zipfs.test.js +2 -0
- package/dist/tests/zipfs.test.js.map +1 -1
- package/dist/workspaceFactory.d.ts +2 -1
- package/dist/workspaceFactory.js.map +1 -1
- package/package.json +1 -1
@@ -344,6 +344,7 @@
|
|
344
344
|
"noneNotIterable": "L’objet de type « None » ne peut pas être utilisé en tant que valeur itérable",
|
345
345
|
"noneNotSubscriptable": "L’objet de type « None » n’est pas inscriptible",
|
346
346
|
"noneNotUsableWith": "Object of type \"None\" cannot be used with \"with\"",
|
347
|
+
"noneNotUsableWithAsync": "Object of type \"None\" cannot be used with \"async with\"",
|
347
348
|
"noneOperator": "L’opérateur « {operator} » n’est pas pris en charge pour « None »",
|
348
349
|
"noneUnknownMember": "« {name} » n’est pas un attribut connu de « None »",
|
349
350
|
"notRequiredArgCount": "Argument de type unique attendu après « NotRequired »",
|
@@ -364,8 +365,6 @@
|
|
364
365
|
"overloadAbstractImplMismatch": "Les surcharges doivent correspondre à l’état abstrait de l’implémentation",
|
365
366
|
"overloadAbstractMismatch": "Les surcharges doivent toutes être abstraites ou non",
|
366
367
|
"overloadClassMethodInconsistent": "Les surcharges pour « {name} » utilisent @classmethod de manière incohérente",
|
367
|
-
"overloadFinalInconsistencyImpl": "La surcharge pour « {name} » est marquée @final, mais l’implémentation ne l’est pas",
|
368
|
-
"overloadFinalInconsistencyNoImpl": "La surcharge {index} pour « {name} » est marquée @final mais la surcharge 1 n’est pas",
|
369
368
|
"overloadImplementationMismatch": "L’implémentation surchargée n’est pas cohérente avec la signature de la surcharge {index}",
|
370
369
|
"overloadReturnTypeMismatch": "La surcharge {prevIndex} pour « {name} » chevauche la surcharge {newIndex} et retourne un type incompatible",
|
371
370
|
"overloadStaticMethodInconsistent": "Les surcharges pour « {name} » utilisent @staticmethod de manière incohérente",
|
@@ -396,6 +395,7 @@
|
|
396
395
|
"parenthesizedContextManagerIllegal": "Parentheses within \"with\" statement requires Python 3.9 or newer",
|
397
396
|
"patternNeverMatches": "Le modèle ne sera jamais mis en correspondance pour le type d’objet « {type} »",
|
398
397
|
"positionArgAfterNamedArg": "L’argument positionnel ne peut pas apparaître après les arguments de mot clé",
|
398
|
+
"positionArgAfterUnpackedDictArg": "Positional argument cannot appear after keyword argument unpacking",
|
399
399
|
"positionOnlyAfterArgs": "Séparateur de paramètres de position seule non autorisé après le paramètre « * »",
|
400
400
|
"positionOnlyAfterKeywordOnly": "Le paramètre « / » doit apparaître avant le paramètre « * »",
|
401
401
|
"positionOnlyAfterNon": "Paramètre de position seule non autorisé après un paramètre qui n’est pas en position seule",
|
@@ -519,7 +519,8 @@
|
|
519
519
|
"typeNotSupportBinaryOperatorBidirectional": "L'opérateur \"{operator}\" n'est pas pris en charge pour les types \"{leftType}\" et \"{rightType}\" lorsque le type attendu est \"{expectedType}\"",
|
520
520
|
"typeNotSupportUnaryOperator": "L'opérateur \"{operator}\" n'est pas pris en charge pour le type \"{type}\"",
|
521
521
|
"typeNotSupportUnaryOperatorBidirectional": "L’opérateur « {operator} » n’est pas pris en charge pour le type « {type} » quand le type attendu est « {expectedType} »",
|
522
|
-
"typeNotUsableWith": "
|
522
|
+
"typeNotUsableWith": "Object of type \"{type}\" cannot be used with \"with\" because it does not correctly implement {method}",
|
523
|
+
"typeNotUsableWithAsync": "Object of type \"{type}\" cannot be used with \"async with\" because it does not correctly implement {method}",
|
523
524
|
"typeParameterBoundNotAllowed": "La limite ou la contrainte ne peut pas être utilisée avec un paramètre de type variadique ou ParamSpec",
|
524
525
|
"typeParameterConstraintTuple": "La contrainte de paramètre de type doit être un tuple de plusieurs types",
|
525
526
|
"typeParameterExistingTypeParameter": "Le paramètre de type « {name} » est déjà utilisé",
|
@@ -815,10 +816,10 @@
|
|
815
816
|
"unhashableType": "Le type \"{type}\" n'est pas hachable",
|
816
817
|
"uninitializedAbstractVariable": "La variable d’instance « {name} » est définie dans la classe de base abstraite « {classType} » mais n’est pas initialisée",
|
817
818
|
"unreachableExcept": "« {exceptionType} » est une sous-classe de « {parentType} »",
|
818
|
-
"useDictInstead": "
|
819
|
-
"useListInstead": "
|
820
|
-
"useTupleInstead": "
|
821
|
-
"useTypeInstead": "
|
819
|
+
"useDictInstead": "Utilisez dict[T1, T2] pour indiquer un type de dictionnaire",
|
820
|
+
"useListInstead": "Utiliser list[T] pour indiquer un type de liste ou T1 | T2 pour indiquer un type d’union",
|
821
|
+
"useTupleInstead": "Utiliser tuple[T1, ..., Tn] pour indiquer un type de tuple ou T1 | T2 pour indiquer un type d’union",
|
822
|
+
"useTypeInstead": "Utiliser type[T] à la place",
|
822
823
|
"varianceMismatchForClass": "La variance de l'argument de type \"{typeVarName}\" est incompatible avec la classe de base \"{className}\"",
|
823
824
|
"varianceMismatchForTypeAlias": "La variance de l'argument de type \"{typeVarName}\" est incompatible avec \"{typeAliasParam}\""
|
824
825
|
},
|
@@ -344,6 +344,7 @@
|
|
344
344
|
"noneNotIterable": "Impossibile utilizzare l'oggetto di tipo \"None\" come valore iterabile",
|
345
345
|
"noneNotSubscriptable": "L'oggetto di tipo \"None\" non è sottoponibile a pedice",
|
346
346
|
"noneNotUsableWith": "Object of type \"None\" cannot be used with \"with\"",
|
347
|
+
"noneNotUsableWithAsync": "Object of type \"None\" cannot be used with \"async with\"",
|
347
348
|
"noneOperator": "Operatore \"{operator}\" non supportato per \"None\"",
|
348
349
|
"noneUnknownMember": "\"{name}\" non è un attributo noto di \"None\"",
|
349
350
|
"notRequiredArgCount": "Previsto un singolo argomento tipo dopo \"NotRequired\"",
|
@@ -364,8 +365,6 @@
|
|
364
365
|
"overloadAbstractImplMismatch": "Gli overload devono corrispondere allo stato astratto dell'implementazione",
|
365
366
|
"overloadAbstractMismatch": "Gli overload devono essere tutti astratti o no",
|
366
367
|
"overloadClassMethodInconsistent": "Gli overload per \"{name}\" usano @classmethod in modo incoerente",
|
367
|
-
"overloadFinalInconsistencyImpl": "L'overload per “{name}” è contrassegnato @final ma l'implementazione non lo è",
|
368
|
-
"overloadFinalInconsistencyNoImpl": "L'overload {index} per “{name}” è contrassegnato @final ma l'overload 1 non lo è",
|
369
368
|
"overloadImplementationMismatch": "L'implementazione di overload non è coerente con la firma dell'overload {index}",
|
370
369
|
"overloadReturnTypeMismatch": "L'overload {prevIndex} per \"{name}\" si sovrappone all'overload {newIndex} e restituisce un tipo incompatibile",
|
371
370
|
"overloadStaticMethodInconsistent": "Gli overload per \"{name}\" usano @staticmethod in modo incoerente",
|
@@ -396,6 +395,7 @@
|
|
396
395
|
"parenthesizedContextManagerIllegal": "Parentheses within \"with\" statement requires Python 3.9 or newer",
|
397
396
|
"patternNeverMatches": "Il criterio non verrà mai confrontato per il tipo di oggetto \"{type}\"",
|
398
397
|
"positionArgAfterNamedArg": "L'argomento posizionale non può essere visualizzato dopo gli argomenti della parola chiave",
|
398
|
+
"positionArgAfterUnpackedDictArg": "Positional argument cannot appear after keyword argument unpacking",
|
399
399
|
"positionOnlyAfterArgs": "Separatore di parametri di sola posizione non consentito dopo il parametro \"*\"",
|
400
400
|
"positionOnlyAfterKeywordOnly": "Il parametro \"/\" deve essere visualizzato prima del parametro \"*\"",
|
401
401
|
"positionOnlyAfterNon": "Il parametro di sola posizione non è consentito dopo un parametro che non è di sola posizione",
|
@@ -519,7 +519,8 @@
|
|
519
519
|
"typeNotSupportBinaryOperatorBidirectional": "L'operatore \"{operator}\" non è supportato per i tipi \"{leftType}\" e \"{rightType}\" quando il tipo previsto è \"{expectedType}\"",
|
520
520
|
"typeNotSupportUnaryOperator": "Operatore \"{operator}\" non supportato per il tipo \"{type}\"",
|
521
521
|
"typeNotSupportUnaryOperatorBidirectional": "L'operatore \"{operator}\" non è supportato per il tipo \"{type}\" quando il tipo previsto è \"{expectedType}\"",
|
522
|
-
"typeNotUsableWith": "
|
522
|
+
"typeNotUsableWith": "Object of type \"{type}\" cannot be used with \"with\" because it does not correctly implement {method}",
|
523
|
+
"typeNotUsableWithAsync": "Object of type \"{type}\" cannot be used with \"async with\" because it does not correctly implement {method}",
|
523
524
|
"typeParameterBoundNotAllowed": "Il vincolo o il binding non possono essere usati con un parametro di tipo variadic o ParamSpec",
|
524
525
|
"typeParameterConstraintTuple": "Il vincolo del parametro di tipo deve essere una tupla di due o più tipi",
|
525
526
|
"typeParameterExistingTypeParameter": "Il parametro di tipo \"{name}\" è già in uso",
|
@@ -815,10 +816,10 @@
|
|
815
816
|
"unhashableType": "Il tipo \"{type}\" non è hashable",
|
816
817
|
"uninitializedAbstractVariable": "La variabile di istanza \"{name}\" è definita nella classe di base astratta \"{classType}\" ma non è inizializzata",
|
817
818
|
"unreachableExcept": "\"{exceptionType}\" è una sottoclasse di \"{parentType}\"",
|
818
|
-
"useDictInstead": "
|
819
|
-
"useListInstead": "
|
820
|
-
"useTupleInstead": "
|
821
|
-
"useTypeInstead": "
|
819
|
+
"useDictInstead": "Usare dict[T1, T2] per indicare un tipo di dizionario",
|
820
|
+
"useListInstead": "Usare list[T] per indicare un tipo di list o T1 | T2 per indicare un tipo di union",
|
821
|
+
"useTupleInstead": "Usare tuple[T1, ..., Tn] per indicare un tipo di tuple o T1 | T2 per indicare un tipo di unione",
|
822
|
+
"useTypeInstead": "Usare invece type[T]",
|
822
823
|
"varianceMismatchForClass": "La varianza dell'argomento tipo \"{typeVarName}\" non è compatibile con la classe di base \"{className}\"",
|
823
824
|
"varianceMismatchForTypeAlias": "La varianza dell'argomento tipo \"{typeVarName}\" non è compatibile con \"{typeAliasParam}\""
|
824
825
|
},
|
@@ -344,6 +344,7 @@
|
|
344
344
|
"noneNotIterable": "型 \"None\" のオブジェクトを反復可能な値として使用することはできません",
|
345
345
|
"noneNotSubscriptable": "\"None\" 型のオブジェクトは添字可能ではありません",
|
346
346
|
"noneNotUsableWith": "Object of type \"None\" cannot be used with \"with\"",
|
347
|
+
"noneNotUsableWithAsync": "Object of type \"None\" cannot be used with \"async with\"",
|
347
348
|
"noneOperator": "演算子 \"{operator}\" は \"None\" ではサポートされていません",
|
348
349
|
"noneUnknownMember": "\"{name}\" は \"None\" の既知の属性ではありません",
|
349
350
|
"notRequiredArgCount": "\"NotRequired\" の後に 1 つの型引数が必要です",
|
@@ -364,8 +365,6 @@
|
|
364
365
|
"overloadAbstractImplMismatch": "オーバーロードは実装の抽象状態と一致する必要があります",
|
365
366
|
"overloadAbstractMismatch": "オーバーロードはすべて抽象であるか抽象でない必要があります",
|
366
367
|
"overloadClassMethodInconsistent": "\"{name}\" のオーバーロードでは、@classmethod を不整合に使用します",
|
367
|
-
"overloadFinalInconsistencyImpl": "\"{name}\" のオーバーロードは @final としてマークされていますが、実装は @final としてマークされていません",
|
368
|
-
"overloadFinalInconsistencyNoImpl": "\"{name}\" のオーバーロード {index} は @final としてマークされていますが、オーバーロード 1 は @final としてマークされていません",
|
369
368
|
"overloadImplementationMismatch": "オーバーロードされた実装がオーバーロード {index} のシグネチャと一致しません",
|
370
369
|
"overloadReturnTypeMismatch": "\"{name}\" のオーバーロード {prevIndex} はオーバーロード {newIndex} と重複し、互換性のない型を返します",
|
371
370
|
"overloadStaticMethodInconsistent": "\"{name}\" のオーバーロードでは、@staticmethod を不整合に使用します",
|
@@ -396,6 +395,7 @@
|
|
396
395
|
"parenthesizedContextManagerIllegal": "Parentheses within \"with\" statement requires Python 3.9 or newer",
|
397
396
|
"patternNeverMatches": "サブジェクトの種類 \"{type}\" のパターンは一致しません",
|
398
397
|
"positionArgAfterNamedArg": "キーワード引数の後に位置引数を指定することはできません",
|
398
|
+
"positionArgAfterUnpackedDictArg": "Positional argument cannot appear after keyword argument unpacking",
|
399
399
|
"positionOnlyAfterArgs": "\"*\" パラメーターの後に位置のみのパラメーターの区切り文字を使用することはできません",
|
400
400
|
"positionOnlyAfterKeywordOnly": "\"/\" パラメーターは 、\"*\" パラメーターの前に指定する必要があります",
|
401
401
|
"positionOnlyAfterNon": "位置のみのパラメーターの後に位置のみのパラメーターを指定することはできません",
|
@@ -519,7 +519,8 @@
|
|
519
519
|
"typeNotSupportBinaryOperatorBidirectional": "型 \"{leftType}\" と \"{rightType}\" に対して演算子 \"{operator}\" はサポートされていません。予期された型が \"{expectedType}\" の場合",
|
520
520
|
"typeNotSupportUnaryOperator": "演算子 \"{operator}\" は型 \"{type}\" ではサポートされていません",
|
521
521
|
"typeNotSupportUnaryOperatorBidirectional": "型 \"{type}\" が \"{expectedType}\" の場合、演算子 \"{operator}\" はサポートされていません",
|
522
|
-
"typeNotUsableWith": "
|
522
|
+
"typeNotUsableWith": "Object of type \"{type}\" cannot be used with \"with\" because it does not correctly implement {method}",
|
523
|
+
"typeNotUsableWithAsync": "Object of type \"{type}\" cannot be used with \"async with\" because it does not correctly implement {method}",
|
523
524
|
"typeParameterBoundNotAllowed": "バインドまたは制約を可変個引数型パラメーターまたは ParamSpec と共に使用することはできません",
|
524
525
|
"typeParameterConstraintTuple": "型パラメーター制約は、2 つ以上の型のタプルである必要があります",
|
525
526
|
"typeParameterExistingTypeParameter": "型パラメーター \"{name}\" は既に使用されています",
|
@@ -815,10 +816,10 @@
|
|
815
816
|
"unhashableType": "型 \"{type}\" はハッシュ可能ではありません",
|
816
817
|
"uninitializedAbstractVariable": "インスタンス変数 \"{name}\" は抽象基本クラス \"{classType}\" で定義されていますが、初期化されていません",
|
817
818
|
"unreachableExcept": "\"{exceptionType}\" は \"{parentType}\" のサブクラスです",
|
818
|
-
"useDictInstead": "
|
819
|
-
"useListInstead": "
|
820
|
-
"useTupleInstead": "
|
821
|
-
"useTypeInstead": "
|
819
|
+
"useDictInstead": "辞書の種類を示すには、dict[T1, T2] を使用します",
|
820
|
+
"useListInstead": "list[T] を使用して list 型を示すか、T1 | T2 を使用して union 型を示します",
|
821
|
+
"useTupleInstead": "tuple[T1, ..., Tn] を使用して tuple 型を示すか、T1 | T2 を使用して union 型を示します",
|
822
|
+
"useTypeInstead": "代わりに type[T] を使用する",
|
822
823
|
"varianceMismatchForClass": "型引数 \"{typeVarName}\" の分散は、基底クラス \"{className}\" と互換性がありません",
|
823
824
|
"varianceMismatchForTypeAlias": "型引数 \"{typeVarName}\" の分散は \"{typeAliasParam}\" と互換性がありません"
|
824
825
|
},
|
@@ -344,6 +344,7 @@
|
|
344
344
|
"noneNotIterable": "\"None\" 형식의 개체는 반복 가능한 값으로 사용할 수 없습니다.",
|
345
345
|
"noneNotSubscriptable": "’None’ 유형의 개체는 아래 첨자를 사용할 수 없습니다.",
|
346
346
|
"noneNotUsableWith": "Object of type \"None\" cannot be used with \"with\"",
|
347
|
+
"noneNotUsableWithAsync": "Object of type \"None\" cannot be used with \"async with\"",
|
347
348
|
"noneOperator": "\"None\"에 대해 연산자 \"{operator}\"이(가) 지원되지 않습니다.",
|
348
349
|
"noneUnknownMember": "\"{name}\"은(는) \"None\"의 알려진 특성이 아님",
|
349
350
|
"notRequiredArgCount": "\"NotRequired\" 뒤에 단일 형식 인수가 필요합니다.",
|
@@ -364,8 +365,6 @@
|
|
364
365
|
"overloadAbstractImplMismatch": "오버로드는 구현의 추상 상태와 일치해야 합니다.",
|
365
366
|
"overloadAbstractMismatch": "오버로드는 모두 추상이거나 아니어야 합니다",
|
366
367
|
"overloadClassMethodInconsistent": "\"{name}\"의 오버로드가 @classmethod를 일관되지 않게 사용합니다.",
|
367
|
-
"overloadFinalInconsistencyImpl": "\"{name}\"에 대한 오버로드가 @final로 표시되었지만 구현은 아닙니다.",
|
368
|
-
"overloadFinalInconsistencyNoImpl": "\"{name}\"에 대한 오버로드 {index}는 @final로 표시되지만 오버로드 1은 표시되지 않습니다.",
|
369
368
|
"overloadImplementationMismatch": "오버로드된 구현이 오버로드 {index}의 시그니처와 일치하지 않습니다.",
|
370
369
|
"overloadReturnTypeMismatch": "\"{name}\"에 대한 {prevIndex} 오버로드가 오버로드 {newIndex}과(와) 겹치고 호환되지 않는 형식을 반환합니다.",
|
371
370
|
"overloadStaticMethodInconsistent": "\"{name}\"의 오버로드가 @staticmethod를 일관되지 않게 사용합니다.",
|
@@ -396,6 +395,7 @@
|
|
396
395
|
"parenthesizedContextManagerIllegal": "Parentheses within \"with\" statement requires Python 3.9 or newer",
|
397
396
|
"patternNeverMatches": "제목 형식 \"{type}\"에 대해 패턴이 일치하지 않습니다.",
|
398
397
|
"positionArgAfterNamedArg": "위치 인수는 키워드 인수 뒤에 나타날 수 없습니다.",
|
398
|
+
"positionArgAfterUnpackedDictArg": "Positional argument cannot appear after keyword argument unpacking",
|
399
399
|
"positionOnlyAfterArgs": "위치 전용 매개 변수 구분 기호는 \"*\" 매개 변수 뒤에 사용할 수 없습니다.",
|
400
400
|
"positionOnlyAfterKeywordOnly": "\"/\" 매개 변수는 \"*\" 매개 변수 앞에 나타나야 합니다.",
|
401
401
|
"positionOnlyAfterNon": "위치 전용이 아닌 매개 변수 다음에는 위치 전용 매개 변수를 사용할 수 없습니다.",
|
@@ -519,7 +519,8 @@
|
|
519
519
|
"typeNotSupportBinaryOperatorBidirectional": "예상 형식이 ‘{expectedType}’인 경우 ‘{leftType}’ 및 ‘{rightType}’ 형식에 대해 ‘{operator}’ 연산자가 지원되지 않습니다.",
|
520
520
|
"typeNotSupportUnaryOperator": "‘{type}’‘에 대해 ’{operator}‘ 연산자가 지원되지 않습니다.",
|
521
521
|
"typeNotSupportUnaryOperatorBidirectional": "예상 형식이 \"{expectedType}\" 경우 형식 \"{type}\"에 대해 연산자 \"{operator}\"이(가) 지원되지 않습니다.",
|
522
|
-
"typeNotUsableWith": "\"{type}\"
|
522
|
+
"typeNotUsableWith": "Object of type \"{type}\" cannot be used with \"with\" because it does not correctly implement {method}",
|
523
|
+
"typeNotUsableWithAsync": "Object of type \"{type}\" cannot be used with \"async with\" because it does not correctly implement {method}",
|
523
524
|
"typeParameterBoundNotAllowed": "바운드 또는 제약 조건은 가변 인자 형식 매개 변수 또는 ParamSpec와 함께 사용할 수 없습니다.",
|
524
525
|
"typeParameterConstraintTuple": "형식 매개 변수 제약 조건은 두 개 이상의 형식 튜플이어야 합니다.",
|
525
526
|
"typeParameterExistingTypeParameter": "형식 매개 변수 \"{name}\"이(가) 이미 사용 중입니다.",
|
@@ -815,10 +816,10 @@
|
|
815
816
|
"unhashableType": "‘{type}’ 형식을 해시할 수 없습니다.",
|
816
817
|
"uninitializedAbstractVariable": "인스턴스 변수 \"{name}\"이(가) 추상 기본 클래스 \"{classType}\"에 정의되어 있지만 초기화되지 않았습니다.",
|
817
818
|
"unreachableExcept": "\"{exceptionType}\"은(는) \"{parentType}\"의 서브클래스입니다.",
|
818
|
-
"useDictInstead": "
|
819
|
-
"useListInstead": "
|
820
|
-
"useTupleInstead": "
|
821
|
-
"useTypeInstead": "
|
819
|
+
"useDictInstead": "dict[T1, T2]를 사용하여 사전 형식을 나타냅니다.",
|
820
|
+
"useListInstead": "list[T]를 사용하여 list 형식을 나타내거나 T1 | T2를 사용하여 union 형식을 나타냅니다.",
|
821
|
+
"useTupleInstead": "tuple[T1, ..., Tn]을 사용하여 tuple 형식을 나타내거나 T1 | T2를 사용하여 union 형식을 나타냅니다.",
|
822
|
+
"useTypeInstead": "대신 type[T]를 사용합니다.",
|
822
823
|
"varianceMismatchForClass": "‘{typeVarName}’ 형식 인수의 차이는 ‘{className}’ 기본 클래스와 호환되지 않습니다.",
|
823
824
|
"varianceMismatchForTypeAlias": "‘{typeVarName}’ 형식 인수의 차이는 ‘{typeAliasParam}’와(과) 호환되지 않습니다."
|
824
825
|
},
|
@@ -344,6 +344,7 @@
|
|
344
344
|
"noneNotIterable": "Obiekt typu „None” nie może być używany jako wartość iterowalna",
|
345
345
|
"noneNotSubscriptable": "Obiekt typu „None” nie może być użyty w indeksie dolnym",
|
346
346
|
"noneNotUsableWith": "Object of type \"None\" cannot be used with \"with\"",
|
347
|
+
"noneNotUsableWithAsync": "Object of type \"None\" cannot be used with \"async with\"",
|
347
348
|
"noneOperator": "Operator „{operator}” nie jest obsługiwany dla wartości „None”",
|
348
349
|
"noneUnknownMember": "Nazwa „{name}” nie jest znanym atrybutem „None”",
|
349
350
|
"notRequiredArgCount": "Oczekiwano jednego argumentu typu po wartości „NotRequired”",
|
@@ -364,8 +365,6 @@
|
|
364
365
|
"overloadAbstractImplMismatch": "Przeciążenia muszą być zgodne ze stanem abstrakcyjnym implementacji",
|
365
366
|
"overloadAbstractMismatch": "Przeciążenia muszą być abstrakcyjne lub nieabstrakcyjne",
|
366
367
|
"overloadClassMethodInconsistent": "Przeciążenia dla nazwy „{name}” używają metody @classmethod niekonsekwentnie",
|
367
|
-
"overloadFinalInconsistencyImpl": "Przeciążenie elementu „{name}” jest oznaczone @final, ale implementacja nie jest",
|
368
|
-
"overloadFinalInconsistencyNoImpl": "Przeciążenie {index} dla elementu „{name}” jest oznaczone @final, ale przeciążenie 1 nie jest",
|
369
368
|
"overloadImplementationMismatch": "Przeciążone wdrożenie jest niespójne z sygnaturą przeciążenia {index}",
|
370
369
|
"overloadReturnTypeMismatch": "Przeciążenie {prevIndex} dla nazwy „{name}” nakłada się na przeciążenie {newIndex} i zwraca niezgodny typ",
|
371
370
|
"overloadStaticMethodInconsistent": "Przeciążenia dla nazwy „{name}” używają metody @staticmethod niekonsekwentnie",
|
@@ -396,6 +395,7 @@
|
|
396
395
|
"parenthesizedContextManagerIllegal": "Parentheses within \"with\" statement requires Python 3.9 or newer",
|
397
396
|
"patternNeverMatches": "Wzorzec nigdy nie zostanie dopasowany do typu podmiotu „{type}”",
|
398
397
|
"positionArgAfterNamedArg": "Argument pozycyjny nie może występować po argumentach słów kluczowych",
|
398
|
+
"positionArgAfterUnpackedDictArg": "Positional argument cannot appear after keyword argument unpacking",
|
399
399
|
"positionOnlyAfterArgs": "Separator parametru tylko do pozycjonowania jest niedozwolony po parametrze „*”",
|
400
400
|
"positionOnlyAfterKeywordOnly": "Parametr „/” musi występować przed parametrem „*”.",
|
401
401
|
"positionOnlyAfterNon": "Parametr tylko do pozycjonowania jest niedozwolony po parametrze, który nie jest tylko do pozycjonowania",
|
@@ -519,7 +519,8 @@
|
|
519
519
|
"typeNotSupportBinaryOperatorBidirectional": "Operator „{operator}” nie jest obsługiwany dla typów „{leftType}” i „{rightType}”, gdy oczekiwanym typem jest „{expectedType}”",
|
520
520
|
"typeNotSupportUnaryOperator": "Operator „{operator}” nie jest obsługiwany dla typu „{type}”",
|
521
521
|
"typeNotSupportUnaryOperatorBidirectional": "Operator „{operator}” nie jest obsługiwany dla typu „{type}”, gdy oczekiwanym typem jest „{expectedType}”",
|
522
|
-
"typeNotUsableWith": "
|
522
|
+
"typeNotUsableWith": "Object of type \"{type}\" cannot be used with \"with\" because it does not correctly implement {method}",
|
523
|
+
"typeNotUsableWithAsync": "Object of type \"{type}\" cannot be used with \"async with\" because it does not correctly implement {method}",
|
523
524
|
"typeParameterBoundNotAllowed": "Powiązanie lub ograniczenie nie może być używane z parametrem typu ze zmienną liczbą argumentów lub parametrem ParamSpec",
|
524
525
|
"typeParameterConstraintTuple": "Ograniczenie parametru typu musi być krotką dwóch lub więcej typów",
|
525
526
|
"typeParameterExistingTypeParameter": "Parametr typu „{name}” jest już używany",
|
@@ -815,10 +816,10 @@
|
|
815
816
|
"unhashableType": "Typ „{type}” nie jest wartością skrótu",
|
816
817
|
"uninitializedAbstractVariable": "zmienna wystąpienia „{name}” jest zdefiniowana w abstrakcyjnej klasie bazowej „{classType}” ale nie została zainicjowana",
|
817
818
|
"unreachableExcept": "Typ „{exceptionType}” jest podklasą typu „{parentType}”",
|
818
|
-
"useDictInstead": "
|
819
|
+
"useDictInstead": "Użyj funkcji dict[T1, T2], aby wskazać typ słownika",
|
819
820
|
"useListInstead": "Use list[T] to indicate a list type or T1 | T2 to indicate a union type",
|
820
821
|
"useTupleInstead": "Use tuple[T1, ..., Tn] to indicate a tuple type or T1 | T2 to indicate a union type",
|
821
|
-
"useTypeInstead": "
|
822
|
+
"useTypeInstead": "Zamiast tego użyj funkcji type[T]",
|
822
823
|
"varianceMismatchForClass": "Wariancja argumentu typu „{typeVarName}” jest niezgodna z klasą bazową „{className}”",
|
823
824
|
"varianceMismatchForTypeAlias": "Wariancja argumentu typu „{typeVarName}” jest niezgodna z parametrem „{typeAliasParam}”"
|
824
825
|
},
|
@@ -344,6 +344,7 @@
|
|
344
344
|
"noneNotIterable": "O objeto do tipo \"None\" não pode ser usado como valor iterável",
|
345
345
|
"noneNotSubscriptable": "O objeto do tipo \"None\" não é subscrito",
|
346
346
|
"noneNotUsableWith": "Object of type \"None\" cannot be used with \"with\"",
|
347
|
+
"noneNotUsableWithAsync": "Object of type \"None\" cannot be used with \"async with\"",
|
347
348
|
"noneOperator": "Operador \"{operator}\" incompatível com \"None\"",
|
348
349
|
"noneUnknownMember": "\"{name}\" não é um atributo conhecido de \"None\"",
|
349
350
|
"notRequiredArgCount": "Argumento de tipo único esperado após \"NotRequired\"",
|
@@ -364,8 +365,6 @@
|
|
364
365
|
"overloadAbstractImplMismatch": "As sobrecargas devem corresponder ao status abstrato da implementação",
|
365
366
|
"overloadAbstractMismatch": "As sobrecargas devem ser abstratas ou não",
|
366
367
|
"overloadClassMethodInconsistent": "Sobrecargas para \"{name}\" usam @classmethod inconsistentemente",
|
367
|
-
"overloadFinalInconsistencyImpl": "A sobrecarga para \"{name}\" está marcada como @final mas a implementação não está",
|
368
|
-
"overloadFinalInconsistencyNoImpl": "A sobrecarga {index} para \"{name}\" está marcada como @final mas a sobrecarga 1 não está",
|
369
368
|
"overloadImplementationMismatch": "A implementação sobrecarregada não é consistente com a assinatura da sobrecarga {index}",
|
370
369
|
"overloadReturnTypeMismatch": "A sobrecarga {prevIndex} para \"{name}\" sobrepõe a sobrecarga {newIndex} e retorna um tipo incompatível",
|
371
370
|
"overloadStaticMethodInconsistent": "Sobrecargas para \"{name}\" usam @staticmethod inconsistentemente",
|
@@ -396,6 +395,7 @@
|
|
396
395
|
"parenthesizedContextManagerIllegal": "Parentheses within \"with\" statement requires Python 3.9 or newer",
|
397
396
|
"patternNeverMatches": "O padrão nunca será correspondido para o tipo de assunto \"{type}\"",
|
398
397
|
"positionArgAfterNamedArg": "O argumento posicional não pode aparecer após argumentos de palavra-chave",
|
398
|
+
"positionArgAfterUnpackedDictArg": "Positional argument cannot appear after keyword argument unpacking",
|
399
399
|
"positionOnlyAfterArgs": "Separador de parâmetro somente de posição não permitido após o parâmetro \"*\"",
|
400
400
|
"positionOnlyAfterKeywordOnly": "O parâmetro \"/\" deve aparecer antes do parâmetro \"*\"",
|
401
401
|
"positionOnlyAfterNon": "Parâmetro somente de posição não permitido após o parâmetro que não é somente posição",
|
@@ -519,7 +519,8 @@
|
|
519
519
|
"typeNotSupportBinaryOperatorBidirectional": "O operador \"{operator}\" não tem suporte para os tipos \"{leftType}\" e \"{rightType}\" quando o tipo esperado é \"{expectedType}\"",
|
520
520
|
"typeNotSupportUnaryOperator": "Operador \"{operator}\" sem suporte para o tipo \"{type}\"",
|
521
521
|
"typeNotSupportUnaryOperatorBidirectional": "O operador \"{operator}\" não tem suporte para o tipo \"{type}\" quando o tipo esperado é \"{expectedType}\"",
|
522
|
-
"typeNotUsableWith": "
|
522
|
+
"typeNotUsableWith": "Object of type \"{type}\" cannot be used with \"with\" because it does not correctly implement {method}",
|
523
|
+
"typeNotUsableWithAsync": "Object of type \"{type}\" cannot be used with \"async with\" because it does not correctly implement {method}",
|
523
524
|
"typeParameterBoundNotAllowed": "Associação ou restrição não pode ser usada com um parâmetro de tipo variadic ou ParamSpec",
|
524
525
|
"typeParameterConstraintTuple": "A restrição de parâmetro de tipo deve ser uma tupla de dois ou mais tipos",
|
525
526
|
"typeParameterExistingTypeParameter": "O parâmetro de tipo \"{name}\" já está em uso",
|
@@ -815,10 +816,10 @@
|
|
815
816
|
"unhashableType": "O tipo \"{type}\" não é pode fazer hash",
|
816
817
|
"uninitializedAbstractVariable": "A variável de instância \"{name}\" está definida na classe base abstrata \"{classType}\", mas não foi inicializada",
|
817
818
|
"unreachableExcept": "\"{exceptionType}\" é uma subclasse de \"{parentType}\"",
|
818
|
-
"useDictInstead": "
|
819
|
-
"useListInstead": "
|
820
|
-
"useTupleInstead": "
|
821
|
-
"useTypeInstead": "
|
819
|
+
"useDictInstead": "Usar dict[T1, T2] para indicar um tipo de dicionário",
|
820
|
+
"useListInstead": "Usar list[T] para indicar um tipo de list ou T1 | T2 para indicar um tipo de union",
|
821
|
+
"useTupleInstead": "Usar tuple[T1, ..., Tn] para indicar um tipo de tuple ou T1 | T2 para indicar um tipo de union",
|
822
|
+
"useTypeInstead": "Usar type[T] em vez disso",
|
822
823
|
"varianceMismatchForClass": "A variação do argumento de tipo \"{typeVarName}\" é incompatível com a classe base \"{className}\"",
|
823
824
|
"varianceMismatchForTypeAlias": "A variação do argumento de tipo \"{typeVarName}\" é incompatível com \"{typeAliasParam}\""
|
824
825
|
},
|
@@ -344,6 +344,7 @@
|
|
344
344
|
"noneNotIterable": "[spDD0][นั้Øþjëçt øf tÿpë \"None\" çæññøt þë µsëð æs ïtëræþlë vælµëẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्นั้ढूँ]",
|
345
345
|
"noneNotSubscriptable": "[Emzwj][นั้Øþjëçt øf tÿpë \"None\" ïs ñøt sµþsçrïptæþlëẤğ倪İЂҰक्र्तिृまẤğ倪นั้ढूँ]",
|
346
346
|
"noneNotUsableWith": "[zlOOD][นั้Øþjëçt øf tÿpë \"None\" çæññøt þë µsëð with \"with\"Ấğ倪İЂҰक्र्तिृまẤğ倪İЂนั้ढूँ]",
|
347
|
+
"noneNotUsableWithAsync": "[2p5GE][นั้Øþjëçt øf tÿpë \"Ñøñë\" çæññøt þë µsëð wïth \"æsÿñç wïth\"Ấğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्นั้ढूँ]",
|
347
348
|
"noneOperator": "[3U0d3][นั้Øpërætør \"{øpërætør}\" ñøt sµppørtëð før \"None\"Ấğ倪İЂҰक्र्तिृまẤğ倪İนั้ढूँ]",
|
348
349
|
"noneUnknownMember": "[4KvEX][นั้\"{ñæmë}\" ïs ñøt æ kñøwñ ættrïþµtë øf \"None\"Ấğ倪İЂҰक्र्तिृまẤğ倪นั้ढूँ]",
|
349
350
|
"notRequiredArgCount": "[uOeAb][นั้Ëxpëçtëð æ sïñglë tÿpë ærgµmëñt æftër \"NotRequired\"Ấğ倪İЂҰक्र्तिृまẤğ倪İЂҰนั้ढूँ]",
|
@@ -364,8 +365,6 @@
|
|
364
365
|
"overloadAbstractImplMismatch": "[IgMzu][นั้Øvërløæðs mµst mætçh æþstræçt stætµs øf ïmplëmëñtætïøñẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्นั้ढूँ]",
|
365
366
|
"overloadAbstractMismatch": "[54DCM][นั้Øvërløæðs mµst æll þë æþstræçt ør ñøtẤğ倪İЂҰक्र्तिृまẤนั้ढूँ]",
|
366
367
|
"overloadClassMethodInconsistent": "[8y6vM][นั้Øvërløæðs før \"{ñæmë}\" µsë @classmethod ïñçøñsïstëñtlÿẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्นั้ढूँ]",
|
367
|
-
"overloadFinalInconsistencyImpl": "[0hpZY][นั้Øvërløæð før \"{ñæmë}\" ïs mærkëð @final þµt ïmplëmëñtætïøñ ïs ñøtẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृนั้ढूँ]",
|
368
|
-
"overloadFinalInconsistencyNoImpl": "[Z6TSL][นั้Øvërløæð {ïñðëx} før \"{ñæmë}\" ïs mærkëð @final þµt øvërløæð 1 ïs ñøtẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृนั้ढूँ]",
|
369
368
|
"overloadImplementationMismatch": "[dXlXE][นั้Øvërløæðëð ïmplëmëñtætïøñ ïs ñøt çøñsïstëñt wïth sïgñætµrë øf øvërløæð {ïñðëx}Ấğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृまẤğ倪นั้ढूँ]",
|
370
369
|
"overloadReturnTypeMismatch": "[6BN74][นั้Øvërløæð {prëvÏñðëx} før \"{ñæmë}\" øvërlæps øvërløæð {ñëwÏñðëx} æñð rëtµrñs æñ ïñçømpætïþlë tÿpëẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्นั้ढूँ]",
|
371
370
|
"overloadStaticMethodInconsistent": "[PKQvM][นั้Øvërløæðs før \"{ñæmë}\" µsë @staticmethod ïñçøñsïstëñtlÿẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्นั้ढूँ]",
|
@@ -396,6 +395,7 @@
|
|
396
395
|
"parenthesizedContextManagerIllegal": "[NBxCb][นั้Pærëñthësës withïñ \"with\" stætëmëñt rëqµïrës Pÿthøñ 3.9 ør ñëwërẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृนั้ढूँ]",
|
397
396
|
"patternNeverMatches": "[lyG7p][นั้Pættërñ wïll ñëvër þë mætçhëð før sµþjëçt tÿpë \"{tÿpë}\"Ấğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्นั้ढूँ]",
|
398
397
|
"positionArgAfterNamedArg": "[szCz2][นั้Pøsïtïøñæl ærgµmëñt çæññøt æppëær æftër këÿwørð ærgµmëñtsẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्นั้ढूँ]",
|
398
|
+
"positionArgAfterUnpackedDictArg": "[M8vOq][นั้Pøsïtïøñæl ærgµmëñt çæññøt æppëær æftër këÿwørð ærgµmëñt µñpæçkïñgẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृนั้ढूँ]",
|
399
399
|
"positionOnlyAfterArgs": "[Vqb7c][นั้Pøsïtïøñ-øñlÿ pæræmëtër sëpærætør ñøt ælløwëð æftër \"*\" pæræmëtërẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृนั้ढूँ]",
|
400
400
|
"positionOnlyAfterKeywordOnly": "[z1FIK][นั้\"/\" pæræmëtër mµst æppëær þëførë \"*\" pæræmëtërẤğ倪İЂҰक्र्तिृまẤğ倪İนั้ढूँ]",
|
401
401
|
"positionOnlyAfterNon": "[iXb2r][นั้Pøsïtïøñ-øñlÿ pæræmëtër ñøt ælløwëð æftër pæræmëtër thæt ïs ñøt pøsïtïøñ-øñlÿẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृまẤğ倪นั้ढूँ]",
|
@@ -519,7 +519,8 @@
|
|
519
519
|
"typeNotSupportBinaryOperatorBidirectional": "[25nah][นั้Øpërætør \"{øpërætør}\" ñøt sµppørtëð før tÿpës \"{lëftTÿpë}\" æñð \"{rïghtTÿpë}\" whëñ ëxpëçtëð tÿpë ïs \"{ëxpëçtëðTÿpë}\"Ấğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृまẤğ倪İนั้ढूँ]",
|
520
520
|
"typeNotSupportUnaryOperator": "[f2pEG][นั้Øpërætør \"{øpërætør}\" ñøt sµppørtëð før tÿpë \"{tÿpë}\"Ấğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्นั้ढूँ]",
|
521
521
|
"typeNotSupportUnaryOperatorBidirectional": "[Z51QN][นั้Øpërætør \"{øpërætør}\" ñøt sµppørtëð før tÿpë \"{tÿpë}\" whëñ ëxpëçtëð tÿpë ïs \"{ëxpëçtëðTÿpë}\"Ấğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्นั้ढूँ]",
|
522
|
-
"typeNotUsableWith": "[R7VpZ][นั้Øþjëçt øf tÿpë \"{tÿpë}\" çæññøt þë µsëð wïth \"wïth\" þëçæµsë ït ðøës ñøt ïmplëmëñt {mëthøð}
|
522
|
+
"typeNotUsableWith": "[R7VpZ][นั้Øþjëçt øf tÿpë \"{tÿpë}\" çæññøt þë µsëð wïth \"wïth\" þëçæµsë ït ðøës ñøt çørrëçtlÿ ïmplëmëñt {mëthøð}Ấğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृนั้ढूँ]",
|
523
|
+
"typeNotUsableWithAsync": "[VF7Rz][นั้Øþjëçt øf tÿpë \"{tÿpë}\" çæññøt þë µsëð wïth \"æsÿñç wïth\" þëçæµsë ït ðøës ñøt çørrëçtlÿ ïmplëmëñt {mëthøð}Ấğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृまนั้ढूँ]",
|
523
524
|
"typeParameterBoundNotAllowed": "[iA0kz][นั้ßøµñð ør çøñstræïñt çæññøt þë µsëð wïth æ værïæðïç tÿpë pæræmëtër ør ParamSpecẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृまẤğ倪นั้ढूँ]",
|
524
525
|
"typeParameterConstraintTuple": "[8wa57][นั้Tÿpë pæræmëtër çøñstræïñt mµst þë æ tµplë øf twø ør mørë tÿpësẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृนั้ढूँ]",
|
525
526
|
"typeParameterExistingTypeParameter": "[M2QXP][นั้Tÿpë pæræmëtër \"{ñæmë}\" ïs ælrëæðÿ ïñ µsëẤğ倪İЂҰक्र्तिृまẤğนั้ढूँ]",
|
@@ -344,6 +344,7 @@
|
|
344
344
|
"noneNotIterable": "Объект типа \"None\" не может использоваться в качестве итерируемого значения",
|
345
345
|
"noneNotSubscriptable": "Объект типа \"None\" не подлежит подписке",
|
346
346
|
"noneNotUsableWith": "Object of type \"None\" cannot be used with \"with\"",
|
347
|
+
"noneNotUsableWithAsync": "Object of type \"None\" cannot be used with \"async with\"",
|
347
348
|
"noneOperator": "Оператор \"{operator}\" не поддерживается для \"None\"",
|
348
349
|
"noneUnknownMember": "\"{name}\" не является известным атрибутом \"None\"",
|
349
350
|
"notRequiredArgCount": "После \"NotRequired\" ожидается один аргумент типа",
|
@@ -364,8 +365,6 @@
|
|
364
365
|
"overloadAbstractImplMismatch": "Перегрузки должны соответствовать абстрактному статусу реализации",
|
365
366
|
"overloadAbstractMismatch": "Все перегрузки должны быть абстрактными или не абстрактными",
|
366
367
|
"overloadClassMethodInconsistent": "Перегрузки для \"{name}\" используют @classmethod несогласованно",
|
367
|
-
"overloadFinalInconsistencyImpl": "Перегрузка для \"{name}\" помечена как @final, но реализация — нет",
|
368
|
-
"overloadFinalInconsistencyNoImpl": "Перегрузка {index} для \"{name}\" помечена как @final, но перегрузка 1 — нет",
|
369
368
|
"overloadImplementationMismatch": "Перегруженная реализация не согласована с сигнатурой перегрузки {index}",
|
370
369
|
"overloadReturnTypeMismatch": "Перегрузка {prevIndex} для \"{name}\" перекрывает перегрузку {newIndex} и возвращает несовместимый тип",
|
371
370
|
"overloadStaticMethodInconsistent": "Перегрузки для \"{name}\" используют @staticmethod несогласованно",
|
@@ -396,6 +395,7 @@
|
|
396
395
|
"parenthesizedContextManagerIllegal": "Parentheses within \"with\" statement requires Python 3.9 or newer",
|
397
396
|
"patternNeverMatches": "Шаблон никогда не будет совпадать для типа субъекта \"{type}\"",
|
398
397
|
"positionArgAfterNamedArg": "Позиционный аргумент не может стоять после аргументов типа \"ключевое слово\"",
|
398
|
+
"positionArgAfterUnpackedDictArg": "Positional argument cannot appear after keyword argument unpacking",
|
399
399
|
"positionOnlyAfterArgs": "Разделитель чисто позиционных параметров после параметра \"*\" не разрешен",
|
400
400
|
"positionOnlyAfterKeywordOnly": "Параметр \"/\" должен располагаться перед параметром \"*\"",
|
401
401
|
"positionOnlyAfterNon": "Чисто позиционный параметр не разрешен после параметра, который не является чисто позиционным",
|
@@ -519,7 +519,8 @@
|
|
519
519
|
"typeNotSupportBinaryOperatorBidirectional": "Оператор \"{operator}\" не поддерживается для типов \"{leftType}\" и \"{rightType}\", если ожидаемый тип является \"{expectedType}\"",
|
520
520
|
"typeNotSupportUnaryOperator": "Оператор \"{operator}\" не поддерживается для типа \"{type}\"",
|
521
521
|
"typeNotSupportUnaryOperatorBidirectional": "Оператор \"{operator}\" не поддерживается для типа \"{type}\", если ожидается тип \"{expectedType}\"",
|
522
|
-
"typeNotUsableWith": "
|
522
|
+
"typeNotUsableWith": "Object of type \"{type}\" cannot be used with \"with\" because it does not correctly implement {method}",
|
523
|
+
"typeNotUsableWithAsync": "Object of type \"{type}\" cannot be used with \"async with\" because it does not correctly implement {method}",
|
523
524
|
"typeParameterBoundNotAllowed": "Привязку или ограничение нельзя использовать с параметром типа variadic или ParamSpec",
|
524
525
|
"typeParameterConstraintTuple": "Ограничение параметра типа должно быть кортежем двух или более типов",
|
525
526
|
"typeParameterExistingTypeParameter": "Параметр типа \"{name}\" уже используется",
|
@@ -815,10 +816,10 @@
|
|
815
816
|
"unhashableType": "Тип \"{type}\" не является хэшируемым",
|
816
817
|
"uninitializedAbstractVariable": "Переменная экземпляра \"{name}\" определена в абстрактном базовом классе \"{classType}\", но не инициализирована",
|
817
818
|
"unreachableExcept": "\"{exceptionType}\" является подклассом \"{parentType}\"",
|
818
|
-
"useDictInstead": "
|
819
|
-
"useListInstead": "
|
820
|
-
"useTupleInstead": "
|
821
|
-
"useTypeInstead": "
|
819
|
+
"useDictInstead": "Используйте dict[T1, T2] для указания типа словаря",
|
820
|
+
"useListInstead": "Используйте list[T] для указания типа list и T1 | T2 для указания типа union",
|
821
|
+
"useTupleInstead": "Используйте конструкцию tuple[T1, ..., Tn], чтобы указать тип tuple, и T1 | T2, чтобы указать тип union",
|
822
|
+
"useTypeInstead": "Используйте вместо этого type[T]",
|
822
823
|
"varianceMismatchForClass": "Вариант аргумента типа \"{typeVarName}\" несовместим с базовым классом \"{className}\"",
|
823
824
|
"varianceMismatchForTypeAlias": "Отклонение аргумента типа \"{typeVarName}\" несовместимо с \"{typeAliasParam}\""
|
824
825
|
},
|
@@ -344,6 +344,7 @@
|
|
344
344
|
"noneNotIterable": "\"None\" türündeki nesne, yeniden kullanılabilir değer olarak kullanılamaz",
|
345
345
|
"noneNotSubscriptable": "\"None\" türündeki nesne alt simgeleştirilebilir değil",
|
346
346
|
"noneNotUsableWith": "Object of type \"None\" cannot be used with \"with\"",
|
347
|
+
"noneNotUsableWithAsync": "Object of type \"None\" cannot be used with \"async with\"",
|
347
348
|
"noneOperator": "\"{operator}\" işleci \"None\" için desteklenmiyor",
|
348
349
|
"noneUnknownMember": "\"{name}\" bilinen bir \"None\" özniteliği değil",
|
349
350
|
"notRequiredArgCount": "\"NotRequired\" sonrasında tek bir tür bağımsız değişken bekleniyordu",
|
@@ -364,8 +365,6 @@
|
|
364
365
|
"overloadAbstractImplMismatch": "Aşırı yüklemeler uygulamanın özet durumuyla eşleşmelidir",
|
365
366
|
"overloadAbstractMismatch": "Aşırı yüklemelerin tümü soyut olmalı veya tümü olmamalıdır",
|
366
367
|
"overloadClassMethodInconsistent": "\"{name}\" için aşırı yüklemeler, @classmethod yöntemini tutarlı kullanıyor",
|
367
|
-
"overloadFinalInconsistencyImpl": "\"{name}\" için aşırı yükleme @final olarak işaretlendi ancak uygulama işaretlenmedi",
|
368
|
-
"overloadFinalInconsistencyNoImpl": "\"{name}\" için aşırı yükleme {index} @final olarak işaretlendi ancak aşırı yükleme 1 işaretlenmedi",
|
369
368
|
"overloadImplementationMismatch": "Aşırı yüklenmiş uygulama, {index} aşırı yükleme imzası ile tutarlı değil",
|
370
369
|
"overloadReturnTypeMismatch": "\"{name}\" için {prevIndex} aşırı yüklemesi {newIndex} aşırı yüklemesi ile çakışıyor ve uyumsuz bir tür döndürüyor",
|
371
370
|
"overloadStaticMethodInconsistent": "\"{name}\" için aşırı yüklemeler, @staticmethod yöntemini tutarsız kullanıyor",
|
@@ -396,6 +395,7 @@
|
|
396
395
|
"parenthesizedContextManagerIllegal": "Parentheses within \"with\" statement requires Python 3.9 or newer",
|
397
396
|
"patternNeverMatches": "Desen, \"{type}\" konu türü ile hiçbir zaman eşleşmez",
|
398
397
|
"positionArgAfterNamedArg": "Konumsal bağımsız değişken anahtar sözcük bağımsız değişkenlerden sonra gelemez",
|
398
|
+
"positionArgAfterUnpackedDictArg": "Positional argument cannot appear after keyword argument unpacking",
|
399
399
|
"positionOnlyAfterArgs": "\"*\" parametresinden sonra yalnızca konum parametre ayırıcısı kullanılamaz",
|
400
400
|
"positionOnlyAfterKeywordOnly": "\"/\" parametresi \"*\" parametresinden önce gelmelidir",
|
401
401
|
"positionOnlyAfterNon": "Yalnızca konum parametresi olmayan parametreden sonra yalnızca konum parametresine izin verilmez",
|
@@ -519,7 +519,8 @@
|
|
519
519
|
"typeNotSupportBinaryOperatorBidirectional": "\"{operator}\" işleci, beklenen tür \"{expectedType}\" olduğunda \"{leftType}\" ve \"{rightType}\" türleri için desteklenmez",
|
520
520
|
"typeNotSupportUnaryOperator": "\"{operator}\" işleci \"{type}\" türü için desteklenmiyor",
|
521
521
|
"typeNotSupportUnaryOperatorBidirectional": "\"{operator}\" işleci, beklenen tür \"{expectedType}\" olduğunda \"{type}\" türü için desteklenmiyor",
|
522
|
-
"typeNotUsableWith": "
|
522
|
+
"typeNotUsableWith": "Object of type \"{type}\" cannot be used with \"with\" because it does not correctly implement {method}",
|
523
|
+
"typeNotUsableWithAsync": "Object of type \"{type}\" cannot be used with \"async with\" because it does not correctly implement {method}",
|
523
524
|
"typeParameterBoundNotAllowed": "Sınır veya kısıtlama, değişen tür parametresi veya ParamSpec ile kullanılamaz",
|
524
525
|
"typeParameterConstraintTuple": "Tür parametresi kısıtlaması iki veya daha fazla türde bir demet olmalıdır",
|
525
526
|
"typeParameterExistingTypeParameter": "\"{name}\" tür parametresi zaten kullanılıyor",
|
@@ -815,10 +816,10 @@
|
|
815
816
|
"unhashableType": "\"{type}\" türü karmalanabilir değil",
|
816
817
|
"uninitializedAbstractVariable": "\"{name}\" örnek değişkeni, \"{classType}\" soyut temel sınıfında tanımlandı ancak başlatılmadı",
|
817
818
|
"unreachableExcept": "\"{exceptionType}\", \"{parentType}\" üst öğesinin bir alt sınıfı",
|
818
|
-
"useDictInstead": "
|
819
|
+
"useDictInstead": "Sözlük türünü belirtmek için dict[T1, T2] kullanın",
|
819
820
|
"useListInstead": "Use list[T] to indicate a list type or T1 | T2 to indicate a union type",
|
820
821
|
"useTupleInstead": "Use tuple[T1, ..., Tn] to indicate a tuple type or T1 | T2 to indicate a union type",
|
821
|
-
"useTypeInstead": "
|
822
|
+
"useTypeInstead": "Bunun yerine type[T] kullanın",
|
822
823
|
"varianceMismatchForClass": "\"{typeVarName}\" tür bağımsız değişkeni \"{className}\" taban sınıfıyla uyumsuz",
|
823
824
|
"varianceMismatchForTypeAlias": "\"{typeVarName}\" tür bağımsız değişkeninin varyansı, \"{typeAliasParam}\" ile uyumsuz"
|
824
825
|
},
|
@@ -344,6 +344,7 @@
|
|
344
344
|
"noneNotIterable": "类型为“None”的对象不能用作可迭代值",
|
345
345
|
"noneNotSubscriptable": "类型为“None”的对象不可下标",
|
346
346
|
"noneNotUsableWith": "Object of type \"None\" cannot be used with \"with\"",
|
347
|
+
"noneNotUsableWithAsync": "Object of type \"None\" cannot be used with \"async with\"",
|
347
348
|
"noneOperator": "“None”不支持运算符\"{operator}\"",
|
348
349
|
"noneUnknownMember": "“{name}”不是 \"None\" 的已知属性",
|
349
350
|
"notRequiredArgCount": "“NotRequired” 之后应为单个类型参数",
|
@@ -364,8 +365,6 @@
|
|
364
365
|
"overloadAbstractImplMismatch": "重载必须与实现的抽象状态匹配",
|
365
366
|
"overloadAbstractMismatch": "重载必须全是抽象重载,或者全都不是抽象重载",
|
366
367
|
"overloadClassMethodInconsistent": "“{name}”的重载使用 @classmethod 的方式不一致",
|
367
|
-
"overloadFinalInconsistencyImpl": "“{name}”的重载被标记为 @final,但实施未被标记",
|
368
|
-
"overloadFinalInconsistencyNoImpl": "“{name}”的重载 {index} 被标记为 @final,但重载 1 未被标记",
|
369
368
|
"overloadImplementationMismatch": "重载实现与重载 {index} 的签名不一致",
|
370
369
|
"overloadReturnTypeMismatch": "“{name}”的重载 {prevIndex} 与重载 {newIndex} 重叠,并返回不兼容的类型",
|
371
370
|
"overloadStaticMethodInconsistent": "“{name}”的重载使用 @staticmethod 的方式不一致",
|
@@ -396,6 +395,7 @@
|
|
396
395
|
"parenthesizedContextManagerIllegal": "Parentheses within \"with\" statement requires Python 3.9 or newer",
|
397
396
|
"patternNeverMatches": "主题类型“{type}”的模式永远不会匹配",
|
398
397
|
"positionArgAfterNamedArg": "位置参数不能出现在关键字参数之后",
|
398
|
+
"positionArgAfterUnpackedDictArg": "Positional argument cannot appear after keyword argument unpacking",
|
399
399
|
"positionOnlyAfterArgs": "“*”参数后不允许使用仅位置参数分隔符",
|
400
400
|
"positionOnlyAfterKeywordOnly": "“/”参数必须出现在“*”参数之前",
|
401
401
|
"positionOnlyAfterNon": "非仅位置参数后面不允许仅位置参数",
|
@@ -519,7 +519,8 @@
|
|
519
519
|
"typeNotSupportBinaryOperatorBidirectional": "预期类型为“{expectedType}”时,类型“{leftType}”和“{rightType}”不支持运算符“{operator}”",
|
520
520
|
"typeNotSupportUnaryOperator": "类型“{type}”不支持运算符“{operator}”",
|
521
521
|
"typeNotSupportUnaryOperatorBidirectional": "预期类型为 \"{expectedType}\"时,类型\"{type}\"不支持运算符\"{operator}\"",
|
522
|
-
"typeNotUsableWith": "\"{type}\"
|
522
|
+
"typeNotUsableWith": "Object of type \"{type}\" cannot be used with \"with\" because it does not correctly implement {method}",
|
523
|
+
"typeNotUsableWithAsync": "Object of type \"{type}\" cannot be used with \"async with\" because it does not correctly implement {method}",
|
523
524
|
"typeParameterBoundNotAllowed": "绑定或约束不能与 variadic 类型参数或 ParamSpec 一起使用",
|
524
525
|
"typeParameterConstraintTuple": "类型参数约束必须是两个或更多类型的元组",
|
525
526
|
"typeParameterExistingTypeParameter": "类型参数\"{name}\"已在使用中",
|
@@ -815,10 +816,10 @@
|
|
815
816
|
"unhashableType": "类型“{type}”不可哈希",
|
816
817
|
"uninitializedAbstractVariable": "实例变量“{name}”在抽象基类“{classType}”中定义,但未初始化",
|
817
818
|
"unreachableExcept": "“{exceptionType}”是“{parentType}”的子类",
|
818
|
-
"useDictInstead": "
|
819
|
-
"useListInstead": "
|
820
|
-
"useTupleInstead": "
|
821
|
-
"useTypeInstead": "
|
819
|
+
"useDictInstead": "使用 dict[T1, T2] 指示字典类型",
|
820
|
+
"useListInstead": "使用 list[T] 指示 list 类型或使用 T1 | T2 指示 union 类型",
|
821
|
+
"useTupleInstead": "使用 tuple[T1, ..., Tn] 指示 tuple 类型或使用 T1 | T2 指示 union 类型",
|
822
|
+
"useTypeInstead": "改用 type[T]",
|
822
823
|
"varianceMismatchForClass": "类型参数\"{typeVarName}\"的差异与基类\"{className}\"不兼容",
|
823
824
|
"varianceMismatchForTypeAlias": "类型参数\"{typeVarName}\"的差异与\"{typeAliasParam}\"不兼容"
|
824
825
|
},
|
@@ -344,6 +344,7 @@
|
|
344
344
|
"noneNotIterable": "類型 \"None\" 的物件不能作為可疊代的值",
|
345
345
|
"noneNotSubscriptable": "型別 \"None\" 的物件不能下標",
|
346
346
|
"noneNotUsableWith": "Object of type \"None\" cannot be used with \"with\"",
|
347
|
+
"noneNotUsableWithAsync": "Object of type \"None\" cannot be used with \"async with\"",
|
347
348
|
"noneOperator": "\"None\" 不支援運算子 \"{operator}\"",
|
348
349
|
"noneUnknownMember": "\"{name}\" 不是 \"None\" 的已知屬性",
|
349
350
|
"notRequiredArgCount": "預期 \"NotRequired\" 之後為單一類型引數",
|
@@ -364,8 +365,6 @@
|
|
364
365
|
"overloadAbstractImplMismatch": "多載必須符合實作的抽象狀態",
|
365
366
|
"overloadAbstractMismatch": "多載必須全為抽象或不抽象",
|
366
367
|
"overloadClassMethodInconsistent": "\"{name}\" 的多載不一致地使用 @classmethod",
|
367
|
-
"overloadFinalInconsistencyImpl": "\"{name}\" 的多載已標示為 @final 但未實作",
|
368
|
-
"overloadFinalInconsistencyNoImpl": "\"{name}\" 的多載 {index} 標示為 @final 但多載 1 未標示",
|
369
368
|
"overloadImplementationMismatch": "多載的實作與多載 {index} 的簽章不一致",
|
370
369
|
"overloadReturnTypeMismatch": "\"{name}\" 的多載 {prevIndex} 與多載 {newIndex} 重疊,並傳回不相容的類型",
|
371
370
|
"overloadStaticMethodInconsistent": "\"{name}\" 的多載不一致地使用 @staticmethod",
|
@@ -396,6 +395,7 @@
|
|
396
395
|
"parenthesizedContextManagerIllegal": "Parentheses within \"with\" statement requires Python 3.9 or newer",
|
397
396
|
"patternNeverMatches": "模式永遠不會符合主體類型 \"{type}\"",
|
398
397
|
"positionArgAfterNamedArg": "位置引數不能出現在關鍵字引數之後",
|
398
|
+
"positionArgAfterUnpackedDictArg": "Positional argument cannot appear after keyword argument unpacking",
|
399
399
|
"positionOnlyAfterArgs": "\"*\" 參數之後不允許 Position-only 參數分隔符號",
|
400
400
|
"positionOnlyAfterKeywordOnly": "\"/\" 參數必須出現在 \"*\" 參數之前",
|
401
401
|
"positionOnlyAfterNon": "非 Position-only 參數之後不允許 Position-only 參數",
|
@@ -519,7 +519,8 @@
|
|
519
519
|
"typeNotSupportBinaryOperatorBidirectional": "當預期的型別為 \"{expectedType}\" 時,型別 \"{leftType}\" 和 \"{rightType}\" 不支援運算子 \"{operator}\"",
|
520
520
|
"typeNotSupportUnaryOperator": "型別 \"{type}\" 不支援運算子 \"{operator}\"",
|
521
521
|
"typeNotSupportUnaryOperatorBidirectional": "預期的類型為 \"{expectedType}\" 時,類型 \"{type}\" 不支援運算子 \"{operator}\"",
|
522
|
-
"typeNotUsableWith": "
|
522
|
+
"typeNotUsableWith": "Object of type \"{type}\" cannot be used with \"with\" because it does not correctly implement {method}",
|
523
|
+
"typeNotUsableWithAsync": "Object of type \"{type}\" cannot be used with \"async with\" because it does not correctly implement {method}",
|
523
524
|
"typeParameterBoundNotAllowed": "界限或條件約束不能與 variadic 型別參數或 ParamSpec 一起使用",
|
524
525
|
"typeParameterConstraintTuple": "類型參數限制式必須是兩個或兩個以上類型的 Tuple",
|
525
526
|
"typeParameterExistingTypeParameter": "類型參數 \"{name}\" 已在使用中",
|
@@ -815,10 +816,10 @@
|
|
815
816
|
"unhashableType": "型別 \"{type}\" 無法雜湊",
|
816
817
|
"uninitializedAbstractVariable": "執行個體變數 \"{name}\" 在抽象基底類別 \"{classType}\" 中定義,但未初始化",
|
817
818
|
"unreachableExcept": "\"{exceptionType}\" 是 \"{parentType}\" 的子類別",
|
818
|
-
"useDictInstead": "
|
819
|
-
"useListInstead": "
|
820
|
-
"useTupleInstead": "
|
821
|
-
"useTypeInstead": "
|
819
|
+
"useDictInstead": "使用 dict[T1, T2] 來表示字典類型",
|
820
|
+
"useListInstead": "使用 list[T] 來指出 list 類型,或使用 T1 | T2 來指出 union 類型",
|
821
|
+
"useTupleInstead": "使用 tuple[T1, ..., Tn] 來指出 tuple 類型,或使用 T1 | T2 來指出 union 類型",
|
822
|
+
"useTypeInstead": "改為使用 type[T]",
|
822
823
|
"varianceMismatchForClass": "型別引數 \"{typeVarName}\" 的變異數與基底類別 \"{className}\" 不相容",
|
823
824
|
"varianceMismatchForTypeAlias": "型別引數 \"{typeVarName}\" 的變異數與 \"{typeAliasParam}\" 不相容"
|
824
825
|
},
|