From b9dfde2b392c1aacce60586effdf998a24813b0d Mon Sep 17 00:00:00 2001 From: Youssef1313 Date: Sun, 31 Aug 2025 06:46:39 +0200 Subject: [PATCH] MS.CA.VB resources cleanup --- .../Compilation/VisualBasicCompilation.vb | 4 +- .../VisualBasic/Portable/Errors/ErrorFacts.vb | 2 - .../VisualBasic/Portable/Errors/Errors.vb | 4 +- .../Generated/ErrorFacts.Generated.vb | 1 - .../VisualBasic/Portable/VBResources.resx | 32 +----------- .../Portable/xlf/VBResources.cs.xlf | 50 ------------------- .../Portable/xlf/VBResources.de.xlf | 50 ------------------- .../Portable/xlf/VBResources.es.xlf | 50 ------------------- .../Portable/xlf/VBResources.fr.xlf | 50 ------------------- .../Portable/xlf/VBResources.it.xlf | 50 ------------------- .../Portable/xlf/VBResources.ja.xlf | 50 ------------------- .../Portable/xlf/VBResources.ko.xlf | 50 ------------------- .../Portable/xlf/VBResources.pl.xlf | 50 ------------------- .../Portable/xlf/VBResources.pt-BR.xlf | 50 ------------------- .../Portable/xlf/VBResources.ru.xlf | 50 ------------------- .../Portable/xlf/VBResources.tr.xlf | 50 ------------------- .../Portable/xlf/VBResources.zh-Hans.xlf | 50 ------------------- .../Portable/xlf/VBResources.zh-Hant.xlf | 50 ------------------- 18 files changed, 5 insertions(+), 688 deletions(-) diff --git a/src/Compilers/VisualBasic/Portable/Compilation/VisualBasicCompilation.vb b/src/Compilers/VisualBasic/Portable/Compilation/VisualBasicCompilation.vb index 46e90c7caa5cd..47ff89d6a4b26 100644 --- a/src/Compilers/VisualBasic/Portable/Compilation/VisualBasicCompilation.vb +++ b/src/Compilers/VisualBasic/Portable/Compilation/VisualBasicCompilation.vb @@ -943,7 +943,7 @@ Namespace Microsoft.CodeAnalysis.VisualBasic For Each tree As SyntaxTree In trees If tree Is Nothing Then - Throw New ArgumentNullException(String.Format(VBResources.Trees0, i)) + Throw New ArgumentNullException($"trees({i})") End If If Not tree.HasCompilationUnitRoot Then @@ -955,7 +955,7 @@ Namespace Microsoft.CodeAnalysis.VisualBasic End If If declMap.ContainsKey(tree) Then - Throw New ArgumentException(VBResources.SyntaxTreeAlreadyPresent, String.Format(VBResources.Trees0, i)) + Throw New ArgumentException(VBResources.SyntaxTreeAlreadyPresent, $"trees({i})") End If AddSyntaxTreeToDeclarationMapAndTable(tree, _options, Me.IsSubmission, declMap, declTable, referenceDirectivesChanged) ' declMap and declTable passed ByRef diff --git a/src/Compilers/VisualBasic/Portable/Errors/ErrorFacts.vb b/src/Compilers/VisualBasic/Portable/Errors/ErrorFacts.vb index b4bbdff84ad53..af27ca7da3934 100644 --- a/src/Compilers/VisualBasic/Portable/Errors/ErrorFacts.vb +++ b/src/Compilers/VisualBasic/Portable/Errors/ErrorFacts.vb @@ -450,7 +450,6 @@ Namespace Microsoft.CodeAnalysis.VisualBasic ERRID.ERR_NameNotEvent2, ERRID.ERR_AddOrRemoveHandlerEvent, ERRID.ERR_UnrecognizedEnd, - ERRID.ERR_ArrayInitForNonArray2, ERRID.ERR_EndRegionNoRegion, ERRID.ERR_ExpectedEndRegion, ERRID.ERR_InheritsStmtWrongOrder, @@ -1425,7 +1424,6 @@ Namespace Microsoft.CodeAnalysis.VisualBasic ERRID.WRN_MissingAsClauseinOperator, ERRID.WRN_ConstraintsFailedForInferredArgs2, ERRID.WRN_ConditionalNotValidOnFunction, - ERRID.WRN_UseSwitchInsteadOfAttribute, ERRID.WRN_TupleLiteralNameMismatch, ERRID.WRN_ReferencedAssemblyDoesNotHaveStrongName, ERRID.WRN_RecursiveAddHandlerCall, diff --git a/src/Compilers/VisualBasic/Portable/Errors/Errors.vb b/src/Compilers/VisualBasic/Portable/Errors/Errors.vb index b841d19f114b9..55289a97bf8d3 100644 --- a/src/Compilers/VisualBasic/Portable/Errors/Errors.vb +++ b/src/Compilers/VisualBasic/Portable/Errors/Errors.vb @@ -528,7 +528,7 @@ Namespace Microsoft.CodeAnalysis.VisualBasic ERR_AddOrRemoveHandlerEvent = 30677 ERR_UnrecognizedEnd = 30678 - ERR_ArrayInitForNonArray2 = 30679 + ' ERR_ArrayInitForNonArray2 = 30679 - unused ERR_EndRegionNoRegion = 30680 ERR_ExpectedEndRegion = 30681 @@ -1857,7 +1857,7 @@ Namespace Microsoft.CodeAnalysis.VisualBasic WRN_ConstraintsFailedForInferredArgs2 = 41006 WRN_ConditionalNotValidOnFunction = 41007 - WRN_UseSwitchInsteadOfAttribute = 41008 + ' WRN_UseSwitchInsteadOfAttribute = 41008 - unused WRN_TupleLiteralNameMismatch = 41009 '// AVAILABLE 41010 - 41199 diff --git a/src/Compilers/VisualBasic/Portable/Generated/ErrorFacts.Generated.vb b/src/Compilers/VisualBasic/Portable/Generated/ErrorFacts.Generated.vb index 746fccc4750a1..ffe48c88cb3a6 100644 --- a/src/Compilers/VisualBasic/Portable/Generated/ErrorFacts.Generated.vb +++ b/src/Compilers/VisualBasic/Portable/Generated/ErrorFacts.Generated.vb @@ -59,7 +59,6 @@ ERRID.WRN_MissingAsClauseinOperator, ERRID.WRN_ConstraintsFailedForInferredArgs2, ERRID.WRN_ConditionalNotValidOnFunction, - ERRID.WRN_UseSwitchInsteadOfAttribute, ERRID.WRN_TupleLiteralNameMismatch, ERRID.WRN_ReferencedAssemblyDoesNotHaveStrongName, ERRID.WRN_RecursiveAddHandlerCall, diff --git a/src/Compilers/VisualBasic/Portable/VBResources.resx b/src/Compilers/VisualBasic/Portable/VBResources.resx index b087d43e35c1a..f76c9f2d896e1 100644 --- a/src/Compilers/VisualBasic/Portable/VBResources.resx +++ b/src/Compilers/VisualBasic/Portable/VBResources.resx @@ -117,9 +117,6 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - trees({0}) - trees({0}) must have root node with SyntaxKind.CompilationUnit. @@ -210,12 +207,6 @@ no input sources specified - - source file '{0}' specified multiple times - - - Source file specified multiple times - can't open '{0}' for writing: {1} @@ -240,12 +231,6 @@ Ignoring /noconfig option because it was specified in a response file - - warning number '{0}' for the option '{1}' is either not configurable or not valid - - - Warning number is either not configurable or not valid - cannot infer an output file name from resource only input files; provide the '/out' option @@ -1527,9 +1512,6 @@ 'End' statement not valid. - - Array initializers are valid only for arrays, but the type of '{0}' is '{1}'. - '#End Region' must be preceded by a matching '#Region'. @@ -3784,12 +3766,6 @@ Attribute 'Conditional' is only valid on 'Sub' declarations - - Use command-line option '{0}' or appropriate project settings instead of '{1}'. - - - Use command-line option /keyfile, /keycontainer, or /delaysign instead of AssemblyKeyFileAttribute, AssemblyKeyNameAttribute, or AssemblyDelaySignAttribute - Statement recursively calls the containing '{0}' for event '{1}'. @@ -4198,12 +4174,6 @@ The 'AddressOf' expression has no effect in this context because the method argument to 'AddressOf' requires a relaxed conversion to the delegate type of the event - - Range variable is assumed to be of type Object because its type cannot be inferred. Use an 'As' clause to specify a different type. - - - Range variable is assumed to be of type Object because its type cannot be inferred - Multiline lambda expression is missing 'End Function'. @@ -5740,4 +5710,4 @@ 'MethodImplAttribute.Async' cannot be manually applied to methods. 'MethodImplAttribute.Async' is not localizable. - + \ No newline at end of file diff --git a/src/Compilers/VisualBasic/Portable/xlf/VBResources.cs.xlf b/src/Compilers/VisualBasic/Portable/xlf/VBResources.cs.xlf index 7ec63ae72fa75..f8f28de78cea2 100644 --- a/src/Compilers/VisualBasic/Portable/xlf/VBResources.cs.xlf +++ b/src/Compilers/VisualBasic/Portable/xlf/VBResources.cs.xlf @@ -552,11 +552,6 @@ Ve VB nejsou žádné nativní typy celých čísel. - - trees({0}) - stromy({0}) - - trees({0}) must have root node with SyntaxKind.CompilationUnit. stromy({0}) musí mít kořenový uzel s prvkem SyntaxKind.CompilationUnit. @@ -807,16 +802,6 @@ Nejsou zadané žádné vstupní zdroje. - - source file '{0}' specified multiple times - Zdrojový soubor {0} je zadaný několikrát. - - - - Source file specified multiple times - Zdrojový soubor je zadaný několikrát. - - can't open '{0}' for writing: {1} Soubor {0} nejde otevřít pro zápis: {1}. @@ -857,16 +842,6 @@ Přepínač /noconfig se ignoroval, protože byl uvedený v souboru odpovědí. - - warning number '{0}' for the option '{1}' is either not configurable or not valid - Číslo upozornění {0} pro parametr {1} není konfigurovatelné nebo není platné. - - - - Warning number is either not configurable or not valid - Číslo upozornění není nakonfigurované nebo je neplatné. - - cannot infer an output file name from resource only input files; provide the '/out' option nejde stanovit název výstupního souboru jenom ze vstupních souborů prostředků; zadejte parametr /out. @@ -2989,11 +2964,6 @@ 'Příkaz End není platný. - - Array initializers are valid only for arrays, but the type of '{0}' is '{1}'. - Inicializátory polí jsou platné jenom pro pole, ale {0} je typu {1}. - - '#End Region' must be preceded by a matching '#Region'. 'Příkazu #End Region musí předcházet párový příkaz #Region. @@ -6743,16 +6713,6 @@ Atribut Conditional je platný jenom v deklaracích Sub. - - Use command-line option '{0}' or appropriate project settings instead of '{1}'. - Namísto {1} použijte možnost příkazového řádku {0} nebo odpovídající nastavení projektu. - - - - Use command-line option /keyfile, /keycontainer, or /delaysign instead of AssemblyKeyFileAttribute, AssemblyKeyNameAttribute, or AssemblyDelaySignAttribute - Místo AssemblyKeyFileAttribute, AssemblyKeyNameAttribute nebo AssemblyDelaySignAttribute použijte parametr příkazového řádku /keyfile, /keycontainer nebo /delaysign. - - Statement recursively calls the containing '{0}' for event '{1}'. Příkaz rekurzivně volá nadřazený {0} pro událost {1}. @@ -7433,16 +7393,6 @@ Výraz AddressOf nemá v tomto kontextu žádný účinek, protože argument metody pro výraz AddressOf vyžaduje volný převod na typ delegáta události. - - Range variable is assumed to be of type Object because its type cannot be inferred. Use an 'As' clause to specify a different type. - Předpokládá se, že proměnná rozsahu je typu Objekt, protože její typ nejde odvodit. Zadejte jiný typ pomocí klauzule As. - - - - Range variable is assumed to be of type Object because its type cannot be inferred - Předpokládá se, že proměnná rozsahu je typu Object, protože se její typ nedá odvodit. - - Multiline lambda expression is missing 'End Function'. Víceřádkový výraz lambda nemá příkaz End Function. diff --git a/src/Compilers/VisualBasic/Portable/xlf/VBResources.de.xlf b/src/Compilers/VisualBasic/Portable/xlf/VBResources.de.xlf index 44570477f1c62..91a272a197678 100644 --- a/src/Compilers/VisualBasic/Portable/xlf/VBResources.de.xlf +++ b/src/Compilers/VisualBasic/Portable/xlf/VBResources.de.xlf @@ -552,11 +552,6 @@ Es sind keine nativen Integer-Typen in VB vorhanden. - - trees({0}) - Bäume({0}) - - trees({0}) must have root node with SyntaxKind.CompilationUnit. Bäume({0}) müssen einen Stammknoten mit SyntaxKind.CompilationUnit haben. @@ -807,16 +802,6 @@ Es wurden keine Eingabequellen angegeben. - - source file '{0}' specified multiple times - Quelldatei "{0}" mehrmals angegeben - - - - Source file specified multiple times - Die Quelldatei wurde mehrere Male angegeben. - - can't open '{0}' for writing: {1} "{0}" kann nicht zum Schreiben geöffnet werden: {1} @@ -857,16 +842,6 @@ Die /noconfig-Option wird ignoriert, da sie in einer Antwortdatei angegeben wurde. - - warning number '{0}' for the option '{1}' is either not configurable or not valid - Warnung Nummer "{0}" für die Option "{1}" ist entweder nicht konfigurierbar oder ungültig - - - - Warning number is either not configurable or not valid - Die Warnungsnummer kann nicht konfiguriert werden oder ist ungültig. - - cannot infer an output file name from resource only input files; provide the '/out' option Ein Ausgabedateiname kann nicht aus reinen Ressourceneingabedateien per Rückschluss abgeleitet werden. Geben Sie die Option ""/out"" an. @@ -2989,11 +2964,6 @@ 'Die End-Anweisung ist ungültig. - - Array initializers are valid only for arrays, but the type of '{0}' is '{1}'. - Arrayinitialisierer sind nur für Arrays gültig. Der Typ von "{0}" ist jedoch "{1}". - - '#End Region' must be preceded by a matching '#Region'. '"#End Region" muss ein entsprechendes "#Region" voranstehen. @@ -6743,16 +6713,6 @@ Das Conditional-Attribut ist nur in Sub-Deklarationen gültig. - - Use command-line option '{0}' or appropriate project settings instead of '{1}'. - Verwenden Sie die Befehlszeilenoption "{0}" oder geeignete Projekteinstellungen anstelle von "{1}". - - - - Use command-line option /keyfile, /keycontainer, or /delaysign instead of AssemblyKeyFileAttribute, AssemblyKeyNameAttribute, or AssemblyDelaySignAttribute - Verwenden Sie die Befehlszeilenoption /keyfile, /keycontainer, oder /delaysign anstelle von AssemblyKeyFileAttribute, AssemblyKeyNameAttribute oder AssemblyDelaySignAttribute. - - Statement recursively calls the containing '{0}' for event '{1}'. Die Anweisung ruft rekursiv das enthaltende "{0}" für das {1}-Ereignis auf. @@ -7433,16 +7393,6 @@ Der AddressOf-Ausdruck hat in diesem Kontext keine Wirkung, da das Methodenargument für AddressOf eine gelockerte Konvertierung in den Delegattyp des Ereignisses erfordert. - - Range variable is assumed to be of type Object because its type cannot be inferred. Use an 'As' clause to specify a different type. - Für die Bereichsvariable wird der Typ "Object" angenommen, da ihr Typ nicht durch Rückschluss abgeleitet werden kann. Verwenden Sie eine As-Klausel, um einen anderen Typ anzugeben. - - - - Range variable is assumed to be of type Object because its type cannot be inferred - Es wird angenommen, dass die Bereichsvariable den Typ "Object" aufweist, da ihr Basistyp nicht abgeleitet werden kann. - - Multiline lambda expression is missing 'End Function'. Im mehrzeiligen Lambdaausdruck fehlt "End Function". diff --git a/src/Compilers/VisualBasic/Portable/xlf/VBResources.es.xlf b/src/Compilers/VisualBasic/Portable/xlf/VBResources.es.xlf index f38355446f189..08a714681c6e1 100644 --- a/src/Compilers/VisualBasic/Portable/xlf/VBResources.es.xlf +++ b/src/Compilers/VisualBasic/Portable/xlf/VBResources.es.xlf @@ -552,11 +552,6 @@ No hay tipos enteros nativos en VB. - - trees({0}) - árboles({0}) - - trees({0}) must have root node with SyntaxKind.CompilationUnit. los árboles({0}) deben tener un nodo raíz con SyntaxKind.CompilationUnit. @@ -807,16 +802,6 @@ no se especificó ningún origen de entrada - - source file '{0}' specified multiple times - el archivo de código fuente '{0}' se especificó varias veces - - - - Source file specified multiple times - Se especificó el archivo de origen varias veces - - can't open '{0}' for writing: {1} no se puede abrir '{0}' para escribir: {1} @@ -857,16 +842,6 @@ Omitiendo la opción /noconfig porque se especificó en un archivo de respuesta - - warning number '{0}' for the option '{1}' is either not configurable or not valid - el número de advertencia '{0}' para la opción '{1}' no es configurable o no es válido - - - - Warning number is either not configurable or not valid - El número de advertencia no se puede configurar o no es válido - - cannot infer an output file name from resource only input files; provide the '/out' option no se puede inferir un nombre de archivo de salida desde recursos que solo tienen archivos de entrada; proporcione la opción '/out' @@ -2989,11 +2964,6 @@ 'Instrucción 'End' no válida. - - Array initializers are valid only for arrays, but the type of '{0}' is '{1}'. - Los inicializadores de matrices solo son válidos para las matrices, pero el tipo de '{0}' es '{1}'. - - '#End Region' must be preceded by a matching '#Region'. '#End Region' debe ir precedida de la instrucción '#Region' correspondiente. @@ -6743,16 +6713,6 @@ El atributo 'Conditional' solo es válido en declaraciones 'Sub' - - Use command-line option '{0}' or appropriate project settings instead of '{1}'. - Use la opción de la línea de comandos '{0}' o una configuración de proyecto apropiada en lugar de '{1}'. - - - - Use command-line option /keyfile, /keycontainer, or /delaysign instead of AssemblyKeyFileAttribute, AssemblyKeyNameAttribute, or AssemblyDelaySignAttribute - Use la opción de línea de comandos /keyfile, /keycontainer o /delaysign en lugar de AssemblyKeyFileAttribute, AssemblyKeyNameAttribute o AssemblyDelaySignAttribute - - Statement recursively calls the containing '{0}' for event '{1}'. La instrucción llama recursivamente al elemento contenedor '{0}' para el evento '{1}'. @@ -7433,16 +7393,6 @@ La expresión 'AddressOf' no tiene efecto en este contexto porque el argumento de método para 'AddressOf' necesita una conversión flexible para el tipo delegado del evento - - Range variable is assumed to be of type Object because its type cannot be inferred. Use an 'As' clause to specify a different type. - Se presupone que la variable de rango es de tipo Object porque su tipo no se puede inferir. Use una cláusula 'As' para especificar otro tipo. - - - - Range variable is assumed to be of type Object because its type cannot be inferred - Se asume que la variable de rango es de tipo Object porque no se puede inferir su tipo - - Multiline lambda expression is missing 'End Function'. Falta 'End Function' en una expresión lambda de varias líneas. diff --git a/src/Compilers/VisualBasic/Portable/xlf/VBResources.fr.xlf b/src/Compilers/VisualBasic/Portable/xlf/VBResources.fr.xlf index 8477461c443bc..8011545cb13c1 100644 --- a/src/Compilers/VisualBasic/Portable/xlf/VBResources.fr.xlf +++ b/src/Compilers/VisualBasic/Portable/xlf/VBResources.fr.xlf @@ -552,11 +552,6 @@ Il n'existe aucun type d'entier natif dans VB. - - trees({0}) - arborescences({0}) - - trees({0}) must have root node with SyntaxKind.CompilationUnit. les arborescences({0}) doivent avoir un nœud racine avec SyntaxKind.CompilationUnit. @@ -807,16 +802,6 @@ aucune source d'entrée spécifiée - - source file '{0}' specified multiple times - fichier source '{0}' indiqué plusieurs fois - - - - Source file specified multiple times - Le fichier source a été spécifié plusieurs fois - - can't open '{0}' for writing: {1} impossible d'ouvrir '{0}' en écriture : {1} @@ -857,16 +842,6 @@ Option /noconfig ignorée, car elle était spécifiée dans un fichier réponse - - warning number '{0}' for the option '{1}' is either not configurable or not valid - le numéro d'avertissement '{0}' pour l'option '{1}' n'est pas configurable ou n'est pas valide - - - - Warning number is either not configurable or not valid - Le numéro d’avertissement n’est pas configurable ou valide - - cannot infer an output file name from resource only input files; provide the '/out' option impossible de déduire le nom d'un fichier de sortie à partir de fichiers d'entrée de ressource uniquement ; fournissez l'option '/out' @@ -2989,11 +2964,6 @@ 'Instruction 'End' non valide. - - Array initializers are valid only for arrays, but the type of '{0}' is '{1}'. - Les initialiseurs de tableau ne sont valides que pour les tableaux, mais le type de '{0}' est '{1}'. - - '#End Region' must be preceded by a matching '#Region'. '#End Region' doit être précédé d'un '#Region' correspondant. @@ -6743,16 +6713,6 @@ L'attribut 'Conditional' est valide uniquement dans les déclarations 'Sub' - - Use command-line option '{0}' or appropriate project settings instead of '{1}'. - Utilisez l'option de ligne de commande '{0}' ou les paramètres de projet appropriés plutôt que '{1}'. - - - - Use command-line option /keyfile, /keycontainer, or /delaysign instead of AssemblyKeyFileAttribute, AssemblyKeyNameAttribute, or AssemblyDelaySignAttribute - Utilisez l’option de ligne de commande /keyfile, /keycontainer ou /delaysign au lieu de AssemblyKeyFileAttribute, AssemblyKeyNameAttribute ou AssemblyDelaySignAttribute - - Statement recursively calls the containing '{0}' for event '{1}'. L'instruction appelle de manière récursive le '{0}' conteneur pour l'événement '{1}'. @@ -7433,16 +7393,6 @@ L’expression 'AddressOf' n’a pas d’effet dans ce contexte, car l’argument de la méthode pour 'AddressOf' requiert une conversion souple en type délégué de l’événement - - Range variable is assumed to be of type Object because its type cannot be inferred. Use an 'As' clause to specify a different type. - La variable de portée est considérée comme étant de type Object, car son type ne peut pas être déduit. Utilisez une clause 'As' pour indiquer un type différent. - - - - Range variable is assumed to be of type Object because its type cannot be inferred - La variable de portée est considérée être de type Object, car son type ne peut pas être déduit - - Multiline lambda expression is missing 'End Function'. L'expression lambda multiligne ne contient pas de 'End Function'. diff --git a/src/Compilers/VisualBasic/Portable/xlf/VBResources.it.xlf b/src/Compilers/VisualBasic/Portable/xlf/VBResources.it.xlf index 884ae0525e701..16dd34031a7b3 100644 --- a/src/Compilers/VisualBasic/Portable/xlf/VBResources.it.xlf +++ b/src/Compilers/VisualBasic/Portable/xlf/VBResources.it.xlf @@ -553,11 +553,6 @@ Non ci sono tipi Integer nativi in VB. - - trees({0}) - alberi ({0}) - - trees({0}) must have root node with SyntaxKind.CompilationUnit. gli alberi ({0}) devono avere il nodo radice con SyntaxKind.CompilationUnit. @@ -808,16 +803,6 @@ non sono state specificate origini di input - - source file '{0}' specified multiple times - il file di origine '{0}' è specificato più volte - - - - Source file specified multiple times - Il file di origine è specificato più volte - - can't open '{0}' for writing: {1} non è possibile aprire '{0}' per la scrittura: {1} @@ -858,16 +843,6 @@ L'opzione /noconfig è stata ignorata perché è stata specificata in un file di risposta - - warning number '{0}' for the option '{1}' is either not configurable or not valid - numero avviso '{0}' per l'opzione '{1}' non configurabile o non valido - - - - Warning number is either not configurable or not valid - Il numero di avviso non è configurabile o valido - - cannot infer an output file name from resource only input files; provide the '/out' option non è possibile dedurre il nome del file di output solo dai file di input delle risorse. Specificare l'opzione '/out' @@ -2990,11 +2965,6 @@ 'L'istruzione 'End' non è valida. - - Array initializers are valid only for arrays, but the type of '{0}' is '{1}'. - Gli inizializzatori di matrice sono validi solo per le matrici, ma il tipo di '{0}' è '{1}'. - - '#End Region' must be preceded by a matching '#Region'. '#End Region' deve essere preceduto da un '#Region' corrispondente. @@ -6744,16 +6714,6 @@ L'attributo 'Conditional' è valido solo nelle dichiarazioni 'Sub' - - Use command-line option '{0}' or appropriate project settings instead of '{1}'. - Usare l'opzione della riga di comando '{0}' o le impostazioni di progetto appropriate invece di '{1}'. - - - - Use command-line option /keyfile, /keycontainer, or /delaysign instead of AssemblyKeyFileAttribute, AssemblyKeyNameAttribute, or AssemblyDelaySignAttribute - Usare l'opzione della riga di comando /keyfile, /keycontainer o /delaysign invece di AssemblyKeyFileAttribute, AssemblyKeyNameAttribute o AssemblyDelaySignAttribute - - Statement recursively calls the containing '{0}' for event '{1}'. L'istruzione chiama in modo ricorsivo il metodo '{0}' che la contiene per l'evento '{1}'. @@ -7434,16 +7394,6 @@ L'espressione 'AddressOf' non ha effetto in questo contesto perché l'argomento del metodo per 'AddressOf' richiede una conversione di tipo relaxed del tipo delegato dell'evento - - Range variable is assumed to be of type Object because its type cannot be inferred. Use an 'As' clause to specify a different type. - Si presuppone che la variabile di intervallo sia di tipo Object perché non è possibile dedurne il tipo. Usare una clausola 'As' per specificare un tipo diverso. - - - - Range variable is assumed to be of type Object because its type cannot be inferred - Si presuppone che la variabile di intervallo sia di tipo Object perché non è possibile dedurne il tipo - - Multiline lambda expression is missing 'End Function'. Manca 'End Function' nell'espressione lambda su più righe. diff --git a/src/Compilers/VisualBasic/Portable/xlf/VBResources.ja.xlf b/src/Compilers/VisualBasic/Portable/xlf/VBResources.ja.xlf index b40fbfc8c2baf..b0ade469be052 100644 --- a/src/Compilers/VisualBasic/Portable/xlf/VBResources.ja.xlf +++ b/src/Compilers/VisualBasic/Portable/xlf/VBResources.ja.xlf @@ -554,11 +554,6 @@ VB にネイティブの整数型はありません。 - - trees({0}) - ツリー ({0}) - - trees({0}) must have root node with SyntaxKind.CompilationUnit. ツリー ({0}) には SyntaxKind.CompilationUnit とのルート ノードが必要です。 @@ -809,16 +804,6 @@ 入力ソースが指定されていません - - source file '{0}' specified multiple times - ソース ファイル '{0}' が複数回指定されています - - - - Source file specified multiple times - ソース ファイルが複数回指定されました - - can't open '{0}' for writing: {1} 書き込みのために '{0}' を開くことはできません: {1} @@ -859,16 +844,6 @@ 応答ファイルで指定されているため、/noconfig オプションを無視します - - warning number '{0}' for the option '{1}' is either not configurable or not valid - 警告番号 '{0}' (オプション '{1}' ) は、構成できないか無効です - - - - Warning number is either not configurable or not valid - 警告番号は、構成できないか無効です - - cannot infer an output file name from resource only input files; provide the '/out' option リソースのみの入力ファイルから出力ファイル名を生成することはできません。'/out' オプションを指定してください @@ -2991,11 +2966,6 @@ 'End' ステートメントが有効ではありません。 - - Array initializers are valid only for arrays, but the type of '{0}' is '{1}'. - 配列初期化子は配列に対してのみ有効ですが、'{0}' の型は '{1}' です。 - - '#End Region' must be preceded by a matching '#Region'. '#End Region' の前には、対応する '#Region' を指定しなければなりません。 @@ -6745,16 +6715,6 @@ 属性 'Conditional' は 'Sub' 宣言でのみ有効です - - Use command-line option '{0}' or appropriate project settings instead of '{1}'. - コマンド ライン オプション '{0}' を使用するか、'{1}' 以外の適切なプロジェクト設定を使用してください。 - - - - Use command-line option /keyfile, /keycontainer, or /delaysign instead of AssemblyKeyFileAttribute, AssemblyKeyNameAttribute, or AssemblyDelaySignAttribute - AssemblyKeyFileAttribute、AssemblyKeyNameAttribute、または AssemblyDelaySignAttribute の代わりに、コマンド ライン オプション /keyfile、/keycontainer、または /delaysign を使用してください - - Statement recursively calls the containing '{0}' for event '{1}'. ステートメントはイベント '{1}' の含まれている '{0}' を再帰的に呼び出しています。 @@ -7435,16 +7395,6 @@ AddressOf' へのメソッド引数には、イベントのデリゲート型への厳密でない変換が必要です。したがって、'AddressOf' 式はこのコンテキストでは効果がありません - - Range variable is assumed to be of type Object because its type cannot be inferred. Use an 'As' clause to specify a different type. - 型を推論できないため、範囲変数は Object 型と見なされます。'As' 句を使って異なる型を指定してください。 - - - - Range variable is assumed to be of type Object because its type cannot be inferred - 範囲変数の型を推論できないため、Object 型であると見なされます - - Multiline lambda expression is missing 'End Function'. 複数行のラムダ式に 'End Function' が見つかりません。 diff --git a/src/Compilers/VisualBasic/Portable/xlf/VBResources.ko.xlf b/src/Compilers/VisualBasic/Portable/xlf/VBResources.ko.xlf index 080df53ac6bed..3edd4349f3f8e 100644 --- a/src/Compilers/VisualBasic/Portable/xlf/VBResources.ko.xlf +++ b/src/Compilers/VisualBasic/Portable/xlf/VBResources.ko.xlf @@ -552,11 +552,6 @@ VB에는 원시 정수 형식이 없습니다. - - trees({0}) - 트리({0}) - - trees({0}) must have root node with SyntaxKind.CompilationUnit. 트리({0})는 SyntaxKind.CompilationUnit을 사용하는 루트 노드여야 합니다. @@ -807,16 +802,6 @@ 입력 소스를 지정하지 않았습니다. - - source file '{0}' specified multiple times - '{0}' 소스 파일을 여러 번 지정했습니다. - - - - Source file specified multiple times - 소스 파일이 여러 번 지정되었습니다. - - can't open '{0}' for writing: {1} '{0}'을(를) 쓰기용으로 열 수 없습니다('{1}'). @@ -857,16 +842,6 @@ 지시 파일에 지정되었기 때문에 /noconfig 옵션을 무시합니다. - - warning number '{0}' for the option '{1}' is either not configurable or not valid - '{1}' 옵션에 대한 '{0}' 경고 번호를 구성할 수 없거나 잘못되었습니다. - - - - Warning number is either not configurable or not valid - 경고 번호가 구성 가능하지 않거나 잘못되었습니다. - - cannot infer an output file name from resource only input files; provide the '/out' option 리소스 전용 입력 파일에서 출력 파일 이름을 유추할 수 없습니다. '/out' 옵션을 지정하세요. @@ -2989,11 +2964,6 @@ 'End' 문이 잘못되었습니다. - - Array initializers are valid only for arrays, but the type of '{0}' is '{1}'. - 배열 이니셜라이저는 배열에만 유효하지만 '{0}'의 형식은 '{1}'입니다. - - '#End Region' must be preceded by a matching '#Region'. '#End Region'은 짝이 되는 '#Region' 뒤에 와야 합니다. @@ -6743,16 +6713,6 @@ Conditional' 특성은 'Sub' 선언에서만 유효함 - - Use command-line option '{0}' or appropriate project settings instead of '{1}'. - '{1}' 대신 명령줄 옵션 '{0}' 또는 적합한 프로젝트 설정을 사용하세요. - - - - Use command-line option /keyfile, /keycontainer, or /delaysign instead of AssemblyKeyFileAttribute, AssemblyKeyNameAttribute, or AssemblyDelaySignAttribute - AssemblyKeyFileAttribute, AssemblyKeyNameAttribute 또는 AssemblyDelaySignAttribute 대신 명령줄 옵션 /keyfile, /keycontainer 또는 /delaysign 사용 - - Statement recursively calls the containing '{0}' for event '{1}'. 문이 '{1}' 이벤트에 대해 포함하는 '{0}'을(를) 재귀적으로 호출합니다. @@ -7433,16 +7393,6 @@ AddressOf'의 메서드 인수를 사용하려면 이벤트의 대리자 형식으로 낮은 수준의 변환을 수행해야 하므로 'AddressOf' 식은 이 컨텍스트에서 효과가 없음 - - Range variable is assumed to be of type Object because its type cannot be inferred. Use an 'As' clause to specify a different type. - 형식을 유추할 수 없어 범위 변수가 Object 형식으로 간주됩니다. 'As' 절을 사용하여 다른 형식을 지정하세요. - - - - Range variable is assumed to be of type Object because its type cannot be inferred - 형식을 유추할 수 없으므로 범위 변수를 Object 형식으로 가정함 - - Multiline lambda expression is missing 'End Function'. 여러 줄 람다 식에 'End Function'이 없습니다. diff --git a/src/Compilers/VisualBasic/Portable/xlf/VBResources.pl.xlf b/src/Compilers/VisualBasic/Portable/xlf/VBResources.pl.xlf index 80fa5fd0da9dd..615ed7fecca3c 100644 --- a/src/Compilers/VisualBasic/Portable/xlf/VBResources.pl.xlf +++ b/src/Compilers/VisualBasic/Portable/xlf/VBResources.pl.xlf @@ -552,11 +552,6 @@ Brak typów natywnej liczby całkowitej w języku Visual Basic. - - trees({0}) - trees({0}) - - trees({0}) must have root node with SyntaxKind.CompilationUnit. Element trees({0}) musi mieć węzeł główny z elementem SyntaxKind.CompilationUnit. @@ -807,16 +802,6 @@ nie określono źródeł wejściowych - - source file '{0}' specified multiple times - plik źródłowy „{0}” został określony wiele razy - - - - Source file specified multiple times - Plik źródłowy został określony wiele razy - - can't open '{0}' for writing: {1} nie można otworzyć elementu „{0}” do zapisu: {1} @@ -857,16 +842,6 @@ Opcja /noconfig zostanie zignorowana, ponieważ została określona w pliku odpowiedzi - - warning number '{0}' for the option '{1}' is either not configurable or not valid - numeru ostrzeżenia „{0}” dla opcji „{1}” nie można skonfigurować lub jest on nieprawidłowy - - - - Warning number is either not configurable or not valid - Nie można skonfigurować numeru ostrzeżenia lub numer jest nieprawidłowy - - cannot infer an output file name from resource only input files; provide the '/out' option nie można wywnioskować nazwy pliku wyjściowego na podstawie plików wejściowych zawierających tylko zasoby; podaj opcję „/out” @@ -2989,11 +2964,6 @@ 'Instrukcja End jest nieprawidłowa. - - Array initializers are valid only for arrays, but the type of '{0}' is '{1}'. - Inicjatory tablic są prawidłowe tylko dla tablic, ale typem elementu „{0}” jest „{1}”. - - '#End Region' must be preceded by a matching '#Region'. 'Instrukcja #End Region musi być poprzedzona odpowiadającą jej instrukcją #Region. @@ -6743,16 +6713,6 @@ Atrybut „Conditional” jest prawidłowy tylko w deklaracjach „Sub” - - Use command-line option '{0}' or appropriate project settings instead of '{1}'. - Użyj opcji wiersza polecenia „{0}” lub odpowiednich ustawień projektu zamiast elementu „{1}”. - - - - Use command-line option /keyfile, /keycontainer, or /delaysign instead of AssemblyKeyFileAttribute, AssemblyKeyNameAttribute, or AssemblyDelaySignAttribute - Użyj opcji wiersza polecenia /keyfile, /keycontainer lub /delaysign zamiast AssemblyKeyFileAttribute, AssemblyKeyNameAttribute lub AssemblyDelaySignAttribute - - Statement recursively calls the containing '{0}' for event '{1}'. Instrukcja cyklicznie wywołuje zawierający ją element „{0}” dla zdarzenia „{1}”. @@ -7433,16 +7393,6 @@ Wyrażenie „AddressOf” nie przynosi efektów w tym kontekście, ponieważ argument metody dla wyrażenia „AddressOf” wymaga swobodnej konwersji na typ delegata zdarzenia - - Range variable is assumed to be of type Object because its type cannot be inferred. Use an 'As' clause to specify a different type. - Przyjęto, że zmienna zakresu będzie typu Object, ponieważ nie można wywnioskować jej typu. Użyj klauzuli „As”, aby określić inny typ. - - - - Range variable is assumed to be of type Object because its type cannot be inferred - Przyjęto, że zmienna zakresu będzie typu Object, ponieważ nie można wywnioskować jej typu - - Multiline lambda expression is missing 'End Function'. W wielowierszowym wyrażeniu lambda brakuje instrukcji „End Function”. diff --git a/src/Compilers/VisualBasic/Portable/xlf/VBResources.pt-BR.xlf b/src/Compilers/VisualBasic/Portable/xlf/VBResources.pt-BR.xlf index a5d4665873372..a186f49b79387 100644 --- a/src/Compilers/VisualBasic/Portable/xlf/VBResources.pt-BR.xlf +++ b/src/Compilers/VisualBasic/Portable/xlf/VBResources.pt-BR.xlf @@ -552,11 +552,6 @@ Não há tipos de inteiro nativo no VB. - - trees({0}) - árvores({0}) - - trees({0}) must have root node with SyntaxKind.CompilationUnit. árvores({0}) devem ter um nó raiz com SyntaxKind.CompilationUnit. @@ -807,16 +802,6 @@ nenhuma fonte de entrada especificada - - source file '{0}' specified multiple times - arquivo de origem "{0}" especificado várias vezes - - - - Source file specified multiple times - Arquivo de origem especificado várias vezes - - can't open '{0}' for writing: {1} não é possível abrir "{0}" para gravar: {1} @@ -857,16 +842,6 @@ Ignorando a opção /noconfig porque ela foi especificada em um arquivo de resposta - - warning number '{0}' for the option '{1}' is either not configurable or not valid - número de aviso "{0}" para a opção "{1}" não é configurável ou não é válido - - - - Warning number is either not configurable or not valid - O número de aviso não é configurável ou não é válido - - cannot infer an output file name from resource only input files; provide the '/out' option não é possível inferir um nome de arquivo de saída com base nos arquivos de entrada de recurso único; forneça a opção "/out" @@ -2989,11 +2964,6 @@ 'Instrução 'End' não válida. - - Array initializers are valid only for arrays, but the type of '{0}' is '{1}'. - Inicializadores de matriz só são válidos para matrizes, mas o tipo de "{0}" é "{1}". - - '#End Region' must be preceded by a matching '#Region'. '#End Region' deve ser precedido por '#Region' correspondente. @@ -6743,16 +6713,6 @@ O atributo 'Conditional' só é válido em declarações 'Sub' - - Use command-line option '{0}' or appropriate project settings instead of '{1}'. - Use a opção de linha de comando "{0}" ou configurações de projeto apropriadas ao invés de "{1}". - - - - Use command-line option /keyfile, /keycontainer, or /delaysign instead of AssemblyKeyFileAttribute, AssemblyKeyNameAttribute, or AssemblyDelaySignAttribute - Use a opção de linha de comando /keyfile, /keycontainer ou /delaysign em vez de AssemblyKeyFileAttribute, AssemblyKeyNameAttribute ou AssemblyDelaySignAttribute - - Statement recursively calls the containing '{0}' for event '{1}'. A instrução chama recursivamente a "{0}" recipiente para o evento "{1}". @@ -7433,16 +7393,6 @@ A expressão 'AddressOf' não tem nenhum efeito nesse contexto porque o argumento de método para 'AddressOf' requer uma conversão reduzida no tipo de delegado do evento - - Range variable is assumed to be of type Object because its type cannot be inferred. Use an 'As' clause to specify a different type. - Variável de intervalo é assumida como sendo do tipo Object porque seu tipo não pode ser inferido. Use uma cláusula "As" para especificar um tipo diferente. - - - - Range variable is assumed to be of type Object because its type cannot be inferred - A variável de intervalo é assumida como do tipo Object porque seu tipo não pode ser inferido - - Multiline lambda expression is missing 'End Function'. Expressão lambda multilinha não encontrou 'End Function'. diff --git a/src/Compilers/VisualBasic/Portable/xlf/VBResources.ru.xlf b/src/Compilers/VisualBasic/Portable/xlf/VBResources.ru.xlf index c223060674718..517675f0e48b9 100644 --- a/src/Compilers/VisualBasic/Portable/xlf/VBResources.ru.xlf +++ b/src/Compilers/VisualBasic/Portable/xlf/VBResources.ru.xlf @@ -552,11 +552,6 @@ optionstrict[+|-] Принудительное применени В VB нет собственных целочисленных типов. - - trees({0}) - деревья({0}) - - trees({0}) must have root node with SyntaxKind.CompilationUnit. Деревья({0}) должны иметь корневой узел SyntaxKind.CompilationUnit. @@ -807,16 +802,6 @@ optionstrict[+|-] Принудительное применени не задано входящих источников - - source file '{0}' specified multiple times - Исходный файл "{0}" задан несколько раз. - - - - Source file specified multiple times - Исходный файл указан несколько раз - - can't open '{0}' for writing: {1} не удается открыть "{0}" для записи: {1} @@ -857,16 +842,6 @@ optionstrict[+|-] Принудительное применени Параметр /noconfig пропущен, т. к. он задан в файле ответов - - warning number '{0}' for the option '{1}' is either not configurable or not valid - Номер предупреждения "{0}" для параметра "{1}" не настраивается или недопустим - - - - Warning number is either not configurable or not valid - Номер предупреждения недоступен для настройки или недопустим - - cannot infer an output file name from resource only input files; provide the '/out' option Не удалось определить имя выходного файла из ресурса только входных файлов; укажите параметр "/out" @@ -2989,11 +2964,6 @@ optionstrict[+|-] Принудительное применени 'Недопустимый оператор "End". - - Array initializers are valid only for arrays, but the type of '{0}' is '{1}'. - Инициализаторы массивов допустимы только для массивов, а "{0}" имеет тип "{1}". - - '#End Region' must be preceded by a matching '#Region'. 'Оператору "#End Region" должен предшествовать соответствующий оператор "#Region". @@ -6743,16 +6713,6 @@ optionstrict[+|-] Принудительное применени Атрибут Conditional допустим только в объявлениях Sub - - Use command-line option '{0}' or appropriate project settings instead of '{1}'. - Используйте параметр командной строки "{0}" или подходящие параметры проекта вместо "{1}". - - - - Use command-line option /keyfile, /keycontainer, or /delaysign instead of AssemblyKeyFileAttribute, AssemblyKeyNameAttribute, or AssemblyDelaySignAttribute - Используйте параметр командной строки /keyfile, /keycontainer или /delaysign вместо AssemblyKeyFileAttribute, AssemblyKeyNameAttribute или AssemblyDelaySignAttribute - - Statement recursively calls the containing '{0}' for event '{1}'. Выражение рекурсивно вызывает содержащийся "{0}" для события "{1}". @@ -7433,16 +7393,6 @@ optionstrict[+|-] Принудительное применени Выражение AddressOf не оказывает влияния в этом контексте, так как аргумент метода для AddressOf требует неявного преобразования в тип делегата события - - Range variable is assumed to be of type Object because its type cannot be inferred. Use an 'As' clause to specify a different type. - Предполагается, что переменная диапазона является типом Object, так как этот тип не может быть определен. Используйте предложение "As", чтобы указать другой тип. - - - - Range variable is assumed to be of type Object because its type cannot be inferred - Предполагается, что переменная диапазона имеет тип Object, так как ее тип невозможно определить - - Multiline lambda expression is missing 'End Function'. В многострочном лямбда-выражении отсутствует "End Function". diff --git a/src/Compilers/VisualBasic/Portable/xlf/VBResources.tr.xlf b/src/Compilers/VisualBasic/Portable/xlf/VBResources.tr.xlf index a8b242c8e9ccd..07ba5b7eb1e53 100644 --- a/src/Compilers/VisualBasic/Portable/xlf/VBResources.tr.xlf +++ b/src/Compilers/VisualBasic/Portable/xlf/VBResources.tr.xlf @@ -553,11 +553,6 @@ VB'de yerel tamsayı türü yoktur. - - trees({0}) - ağaçlar({0}) - - trees({0}) must have root node with SyntaxKind.CompilationUnit. ağaçların({0}) SyntaxKind.CompilationUnit içeren kök düğümü olmalıdır. @@ -808,16 +803,6 @@ hiç bir giriş kaynağı belirtilmedi - - source file '{0}' specified multiple times - '{0}' kaynak dosyası birden çok kez belirtildi - - - - Source file specified multiple times - Kaynak dosya birden çok kez belirtildi - - can't open '{0}' for writing: {1} yazmak için '{0}' açılamıyor: {1} @@ -858,16 +843,6 @@ Bir yanıt dosyası içinde belirtildiğinden /noconfig seçeneği yoksayılıyor - - warning number '{0}' for the option '{1}' is either not configurable or not valid - '{1}' seçeneği için '{0}' uyarı numarası yapılandırılamıyor veya geçerli değil - - - - Warning number is either not configurable or not valid - Uyarı numarası yapılandırılamaz veya geçersiz - - cannot infer an output file name from resource only input files; provide the '/out' option salt kaynak giriş dosyalarından çıkış dosyası adı alınamaz; '/out' seçeneğini sağlayın @@ -2990,11 +2965,6 @@ 'End' deyimi geçerli değil. - - Array initializers are valid only for arrays, but the type of '{0}' is '{1}'. - Dizi başlatıcılar yalnızca diziler için geçerlidir; ancak '{0}' öğesinin türü '{1}'. - - '#End Region' must be preceded by a matching '#Region'. '#End Region' öncesinde eşleşen bir '#Region' olmalıdır. @@ -6744,16 +6714,6 @@ Conditional' özniteliği yalnızca 'Sub' bildirimlerinde geçerlidir - - Use command-line option '{0}' or appropriate project settings instead of '{1}'. - '{1}' yerine '{0}' komut satırı seçeneğini veya uygun proje ayarlarını kullanın. - - - - Use command-line option /keyfile, /keycontainer, or /delaysign instead of AssemblyKeyFileAttribute, AssemblyKeyNameAttribute, or AssemblyDelaySignAttribute - /keyfile, /keycontainer veya /delaysign komut satırı seçeneğini AssemblyKeyFileAttribute, AssemblyKeyNameAttribute veya AssemblyDelaySignAttribute yerine kullanın - - Statement recursively calls the containing '{0}' for event '{1}'. Deyim, '{1}' olayı için kapsayan '{0}' öğesini yinelemeli olarak çağırıyor. @@ -7434,16 +7394,6 @@ AddressOf' deyimine geçirilen metot bağımsız değişkeni olayın temsilci türü için gevşek dönüştürme gerektirdiğinden bu bağlamda 'AddressOf' etkisizdir - - Range variable is assumed to be of type Object because its type cannot be inferred. Use an 'As' clause to specify a different type. - Aralık değişkeninin türü çıkarsanamadığından, Object türünde olduğu varsayıldı. Başka bir tür belirtmek için 'As' yan tümcesi kullanın. - - - - Range variable is assumed to be of type Object because its type cannot be inferred - Aralık değişkeninin türü çıkarsanamadığından Object türü olarak kabul edilir - - Multiline lambda expression is missing 'End Function'. Çok satırlı lambda ifadesinde 'End Function' eksik. diff --git a/src/Compilers/VisualBasic/Portable/xlf/VBResources.zh-Hans.xlf b/src/Compilers/VisualBasic/Portable/xlf/VBResources.zh-Hans.xlf index eb11ccf14dbce..07964f1f3c775 100644 --- a/src/Compilers/VisualBasic/Portable/xlf/VBResources.zh-Hans.xlf +++ b/src/Compilers/VisualBasic/Portable/xlf/VBResources.zh-Hans.xlf @@ -552,11 +552,6 @@ VB 中没有任何本机整数类型。 - - trees({0}) - 树({0}) - - trees({0}) must have root node with SyntaxKind.CompilationUnit. 树({0}) 必须具有带 SyntaxKind.CompilationUnit 的根节点。 @@ -807,16 +802,6 @@ 未指定输入源 - - source file '{0}' specified multiple times - 源文件“{0}”指定了多次 - - - - Source file specified multiple times - 多次指定源文件 - - can't open '{0}' for writing: {1} 无法打开“{0}”进行写入: {1} @@ -857,16 +842,6 @@ /noconfig 选项是在响应文件中指定的,因此被忽略 - - warning number '{0}' for the option '{1}' is either not configurable or not valid - 选项“{1}”的警告编号“{0}”不可配置或无效 - - - - Warning number is either not configurable or not valid - 警告编号不可配置或无效 - - cannot infer an output file name from resource only input files; provide the '/out' option 无法从仅资源输入文件推理出输出文件名;提供“/out”选项 @@ -2989,11 +2964,6 @@ '"End" 语句无效。 - - Array initializers are valid only for arrays, but the type of '{0}' is '{1}'. - 数组初始值设定项仅对数组有效,但“{0}”的类型是“{1}”。 - - '#End Region' must be preceded by a matching '#Region'. '"#End Region" 前面必须是匹配的 "#Region"。 @@ -6743,16 +6713,6 @@ 特性 "Conditional" 只在 "Sub" 声明中有效 - - Use command-line option '{0}' or appropriate project settings instead of '{1}'. - 请使用命令行选项“{0}”或适当的项目设置,而不是“{1}”。 - - - - Use command-line option /keyfile, /keycontainer, or /delaysign instead of AssemblyKeyFileAttribute, AssemblyKeyNameAttribute, or AssemblyDelaySignAttribute - 使用命令行选项 /keyfile、/keycontainer 或 /delaysign,而不要使用 AssemblyKeyFileAttribute、AssemblyKeyNameAttribute 或 AssemblyDelaySignAttribute - - Statement recursively calls the containing '{0}' for event '{1}'. 语句以递归方式调用事件“{1}”的包含“{0}”。 @@ -7433,16 +7393,6 @@ "AddressOf" 表达式在此上下文中不起作用,原因是 "AddressOf" 的方法参数需要到该事件的委托类型的宽松转换 - - Range variable is assumed to be of type Object because its type cannot be inferred. Use an 'As' clause to specify a different type. - 假定范围变量属于对象类型,因为无法推断其类型。请使用“As”子句指定不同类型。 - - - - Range variable is assumed to be of type Object because its type cannot be inferred - 范围变量被假设为 Object 类型,原因是无法推断它的类型 - - Multiline lambda expression is missing 'End Function'. 多行 lambda 表达式缺少 "End Function"。 diff --git a/src/Compilers/VisualBasic/Portable/xlf/VBResources.zh-Hant.xlf b/src/Compilers/VisualBasic/Portable/xlf/VBResources.zh-Hant.xlf index 7f9fcf504c074..31818adbf6e4a 100644 --- a/src/Compilers/VisualBasic/Portable/xlf/VBResources.zh-Hant.xlf +++ b/src/Compilers/VisualBasic/Portable/xlf/VBResources.zh-Hant.xlf @@ -553,11 +553,6 @@ VB 中沒有任何原生整數類型。 - - trees({0}) - trees({0}) - - trees({0}) must have root node with SyntaxKind.CompilationUnit. trees({0}) 必須要有具備 SyntaxKind.CompilationUnit 的根節點。 @@ -808,16 +803,6 @@ 未指定輸入來源 - - source file '{0}' specified multiple times - 已經多次指定原始程式檔 '{0}' - - - - Source file specified multiple times - 已指定多次原始程式檔 - - can't open '{0}' for writing: {1} 無法開啟 '{0}' 進行寫入: {1} @@ -858,16 +843,6 @@ 因為在回應檔中已指定 /noconfig 選項,所以將會忽略該選項 - - warning number '{0}' for the option '{1}' is either not configurable or not valid - 選項 '{1}' 的警告編號 '{0}' 無法設定或其無效 - - - - Warning number is either not configurable or not valid - 警告編號可能無法設定或是無效 - - cannot infer an output file name from resource only input files; provide the '/out' option 無法從只有輸入檔的資源推斷輸出檔名,請提供 '/out' 選項 @@ -2990,11 +2965,6 @@ 'End' 陳述式無效。 - - Array initializers are valid only for arrays, but the type of '{0}' is '{1}'. - 陣列初始設定式只對陣列有效,但 '{0}' 的類型是 '{1}'。 - - '#End Region' must be preceded by a matching '#Region'. '#End Region' 之前必須搭配相對應的 '#Region'。 @@ -6744,16 +6714,6 @@ 屬性 'Conditional' 只在 'Sub' 宣告中有效 - - Use command-line option '{0}' or appropriate project settings instead of '{1}'. - 使用命令列選項 '{0}' 或適當的專案設定代替 '{1}'。 - - - - Use command-line option /keyfile, /keycontainer, or /delaysign instead of AssemblyKeyFileAttribute, AssemblyKeyNameAttribute, or AssemblyDelaySignAttribute - 使用命令列選項 /keyfile、/keycontainer 或 /delaysign 而非 AssemblyKeyFileAttribute、AssemblyKeyNameAttribute 或 AssemblyDelaySignAttribute - - Statement recursively calls the containing '{0}' for event '{1}'. 陳述式遞迴呼叫事件 '{1}' 的包含 '{0}'。 @@ -7434,16 +7394,6 @@ AddressOf' 運算式在這個內容中沒有作用,因為 'AddressOf' 的方法引數必須以寬鬆的方式轉換成事件的委派類型 - - Range variable is assumed to be of type Object because its type cannot be inferred. Use an 'As' clause to specify a different type. - 因為無法推斷範圍變數的類型,所以會將其假設為 Object 類型。請使用 'As' 子句指定不同的類型。 - - - - Range variable is assumed to be of type Object because its type cannot be inferred - 範圍變數已假設為 Object 類型,因為無法推斷其類型 - - Multiline lambda expression is missing 'End Function'. 多行 Lambda 運算式遺漏 'End Function'。