From bf81b50390e7aca63030ef3089bd9bbeb74ebcd1 Mon Sep 17 00:00:00 2001 From: Shen Chen Date: Tue, 16 Nov 2021 09:46:36 -0800 Subject: [PATCH 1/4] Change the title to resources file --- .../ConfigureSeverityLevelCodeFixProvider.cs | 14 ++-- .../Core/Portable/FeaturesResources.resx | 69 +++++++++++-------- .../Portable/xlf/FeaturesResources.cs.xlf | 25 +++++++ .../Portable/xlf/FeaturesResources.de.xlf | 25 +++++++ .../Portable/xlf/FeaturesResources.es.xlf | 25 +++++++ .../Portable/xlf/FeaturesResources.fr.xlf | 25 +++++++ .../Portable/xlf/FeaturesResources.it.xlf | 25 +++++++ .../Portable/xlf/FeaturesResources.ja.xlf | 25 +++++++ .../Portable/xlf/FeaturesResources.ko.xlf | 25 +++++++ .../Portable/xlf/FeaturesResources.pl.xlf | 25 +++++++ .../Portable/xlf/FeaturesResources.pt-BR.xlf | 25 +++++++ .../Portable/xlf/FeaturesResources.ru.xlf | 25 +++++++ .../Portable/xlf/FeaturesResources.tr.xlf | 25 +++++++ .../xlf/FeaturesResources.zh-Hans.xlf | 25 +++++++ .../xlf/FeaturesResources.zh-Hant.xlf | 25 +++++++ 15 files changed, 374 insertions(+), 34 deletions(-) diff --git a/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs b/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs index 0ec923094f0a3..889475d51fbeb 100644 --- a/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs +++ b/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs @@ -24,11 +24,11 @@ internal sealed partial class ConfigureSeverityLevelCodeFixProvider : IConfigura { private static readonly ImmutableArray<(string name, string value)> s_editorConfigSeverityStrings = ImmutableArray.Create( - (nameof(EditorConfigSeverityStrings.None), EditorConfigSeverityStrings.None), - (nameof(EditorConfigSeverityStrings.Silent), EditorConfigSeverityStrings.Silent), - (nameof(EditorConfigSeverityStrings.Suggestion), EditorConfigSeverityStrings.Suggestion), - (nameof(EditorConfigSeverityStrings.Warning), EditorConfigSeverityStrings.Warning), - (nameof(EditorConfigSeverityStrings.Error), EditorConfigSeverityStrings.Error)); + (nameof(EditorConfigSeverityStrings.None), FeaturesResources.None), + (nameof(EditorConfigSeverityStrings.Silent), FeaturesResources.Silent), + (nameof(EditorConfigSeverityStrings.Suggestion), FeaturesResources.Suggestion), + (nameof(EditorConfigSeverityStrings.Warning), FeaturesResources.Warning), + (nameof(EditorConfigSeverityStrings.Error), FeaturesResources.Error)); [ImportingConstructor] [SuppressMessage("RoslynDiagnosticsReliability", "RS0033:Importing constructor should be [Obsolete]", Justification = "Used in test code: https://github.com/dotnet/roslyn/issues/42814")] @@ -62,7 +62,7 @@ private static ImmutableArray GetConfigurations(Project project, IEnume { nestedActions.Add( new SolutionChangeAction( - name, + value, solution => ConfigurationUpdater.ConfigureSeverityAsync(value, diagnostic, project, cancellationToken), name)); } @@ -103,7 +103,7 @@ void AddBulkConfigurationCodeFixes(ImmutableArray diagnostics, strin { nestedActions.Add( new SolutionChangeAction( - name, + value, solution => category != null ? ConfigurationUpdater.BulkConfigureSeverityAsync(value, category, project, cancellationToken) : ConfigurationUpdater.BulkConfigureSeverityAsync(value, project, cancellationToken), diff --git a/src/Features/Core/Portable/FeaturesResources.resx b/src/Features/Core/Portable/FeaturesResources.resx index 353bf24fb0949..fba11c238764a 100644 --- a/src/Features/Core/Portable/FeaturesResources.resx +++ b/src/Features/Core/Portable/FeaturesResources.resx @@ -1,17 +1,17 @@ - @@ -2945,4 +2945,19 @@ Zero-width positive lookbehind assertions are typically used at the beginning of Explicitly inherit documentation + + Error + + + None + + + Silent + + + Suggestion + + + Warning + \ No newline at end of file diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.cs.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.cs.xlf index 8458b78fd6d6e..dccd19e75a816 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.cs.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.cs.xlf @@ -535,6 +535,11 @@ Ujistěte se, že specifikátor tt použijete pro jazyky, pro které je nezbytn Změny provedené v projektu {0} vyžadují restartování aplikace: {1} + + Error + Error + + Error while reading file '{0}': {1} Při čtení souboru {0} došlo k chybě: {1} @@ -1055,6 +1060,11 @@ Ujistěte se, že specifikátor tt použijete pro jazyky, pro které je nezbytn Žádný platný výběr k provedení extrakce + + None + None + + Not enough )'s Nedostatek znaků ) @@ -2305,6 +2315,11 @@ Pozitivní kontrolní výrazy zpětného vyhledávání s nulovou délkou se obv Výběr není obsažený v typu. + + Silent + Silent + + Sort accessibility modifiers Seřadit modifikátory dostupnosti @@ -2325,6 +2340,11 @@ Pozitivní kontrolní výrazy zpětného vyhledávání s nulovou délkou se obv Stream musí podporovat operace read a seek. + + Suggestion + Suggestion + + Suppress {0} Potlačit {0} @@ -2575,6 +2595,11 @@ Pozitivní kontrolní výrazy zpětného vyhledávání s nulovou délkou se obv Hodnota: + + Warning + Warning + + Warning: Changing namespace may produce invalid code and change code meaning. Upozornění: Změna oboru názvů může vést k vytvoření neplatného kódu a změnit význam kódu. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.de.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.de.xlf index 9edde125b926f..12f92ae5c4bf5 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.de.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.de.xlf @@ -535,6 +535,11 @@ Stellen Sie sicher, dass Sie den Bezeichner "tt" für Sprachen verwenden, für d Änderungen, die im Projekt "{0}" vorgenommen wurden, erfordern einen Neustart der Anwendung: {1} + + Error + Error + + Error while reading file '{0}': {1} Fehler beim Lesen der Datei "{0}": {1} @@ -1055,6 +1060,11 @@ Stellen Sie sicher, dass Sie den Bezeichner "tt" für Sprachen verwenden, für d Keine gültige Auswahl zum Durchführen der Extraktion. + + None + None + + Not enough )'s Zu wenige )-Zeichen @@ -2305,6 +2315,11 @@ Positive Lookbehindassertionen mit Nullbreite werden normalerweise am Anfang reg Die Auswahl ist nicht in keinem Typ enthalten. + + Silent + Silent + + Sort accessibility modifiers Zugriffsmodifizierer sortieren @@ -2325,6 +2340,11 @@ Positive Lookbehindassertionen mit Nullbreite werden normalerweise am Anfang reg Stream muss Lese- und Suchvorgänge unterstützen. + + Suggestion + Suggestion + + Suppress {0} {0} unterdrücken @@ -2575,6 +2595,11 @@ Positive Lookbehindassertionen mit Nullbreite werden normalerweise am Anfang reg Wert: + + Warning + Warning + + Warning: Changing namespace may produce invalid code and change code meaning. Warnung: Durch die Änderung des Namespaces kann der Code ungültig werden oder seine Bedeutung verändern. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.es.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.es.xlf index e9aaae9e9ed76..d299adfffe5a4 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.es.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.es.xlf @@ -535,6 +535,11 @@ Asegúrese de usar el especificador "tt" para los idiomas para los que es necesa Los cambios realizados en el proyecto "{0}" requieren reiniciar la aplicación: {1} + + Error + Error + + Error while reading file '{0}': {1} Error al leer el archivo "{0}": {1} @@ -1055,6 +1060,11 @@ Asegúrese de usar el especificador "tt" para los idiomas para los que es necesa Selección no válida para efectuar extracción. + + None + None + + Not enough )'s No hay suficientes ) @@ -2305,6 +2315,11 @@ Las aserciones de búsqueda retrasada (lookbehind) positivas de ancho cero se us La selección no está contenida dentro de un tipo. + + Silent + Silent + + Sort accessibility modifiers Ordenar modificadores de accesibilidad @@ -2325,6 +2340,11 @@ Las aserciones de búsqueda retrasada (lookbehind) positivas de ancho cero se us La secuencia debe admitir las operaciones de lectura y búsqueda. + + Suggestion + Suggestion + + Suppress {0} Suprimir {0} @@ -2575,6 +2595,11 @@ Las aserciones de búsqueda retrasada (lookbehind) positivas de ancho cero se us Valor: + + Warning + Warning + + Warning: Changing namespace may produce invalid code and change code meaning. Advertencia: si cambia Cambiar el espacio de nombres puede producir código inválido y cambiar el significado del código. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.fr.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.fr.xlf index 13c5f5a389aa0..48126e0dc2d9b 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.fr.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.fr.xlf @@ -535,6 +535,11 @@ Veillez à utiliser le spécificateur "tt" pour les langues où il est nécessai Les modifications apportées au projet « {0} » nécessitent le redémarrage de l’application : {1} + + Error + Error + + Error while reading file '{0}': {1} Erreur durant la lecture du fichier '{0}' : {1} @@ -1055,6 +1060,11 @@ Veillez à utiliser le spécificateur "tt" pour les langues où il est nécessai Pas de sélection valide pour procéder à l'extraction. + + None + None + + Not enough )'s Pas assez de )'s @@ -2305,6 +2315,11 @@ Les assertions arrière positives de largeur nulle sont généralement utilisée Sélection non contenue dans un type. + + Silent + Silent + + Sort accessibility modifiers Trier les modificateurs d'accessibilité @@ -2325,6 +2340,11 @@ Les assertions arrière positives de largeur nulle sont généralement utilisée Le flux doit prendre en charge les opérations de lecture et de recherche. + + Suggestion + Suggestion + + Suppress {0} Supprimer {0} @@ -2575,6 +2595,11 @@ Les assertions arrière positives de largeur nulle sont généralement utilisée Valeur : + + Warning + Warning + + Warning: Changing namespace may produce invalid code and change code meaning. Avertissement : Le changement d’espace de noms peut produire du code non valide et changer la signification du code. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.it.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.it.xlf index 6272f17b3bda3..8b7df6c3456f2 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.it.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.it.xlf @@ -535,6 +535,11 @@ Assicurarsi di usare l'identificatore "tt" per le lingue per le quali è necessa Le modifiche apportate nel progetto '{0}' richiedono il riavvio dell'applicazione: {1} + + Error + Error + + Error while reading file '{0}': {1} Si è verificato un errore durante la lettura del file '{0}': {1} @@ -1055,6 +1060,11 @@ Assicurarsi di usare l'identificatore "tt" per le lingue per le quali è necessa La selezione non è valida per eseguire l'estrazione. + + None + None + + Not enough )'s Parentesi chiuse insufficienti @@ -2305,6 +2315,11 @@ Le asserzioni lookbehind positive di larghezza zero vengono usate in genere all' La selezione non è contenuta all'interno di un tipo. + + Silent + Silent + + Sort accessibility modifiers Ordina i modificatori di accessibilità @@ -2325,6 +2340,11 @@ Le asserzioni lookbehind positive di larghezza zero vengono usate in genere all' Il flusso deve supportare operazioni di lettura e ricerca. + + Suggestion + Suggestion + + Suppress {0} Elimina {0} @@ -2575,6 +2595,11 @@ Le asserzioni lookbehind positive di larghezza zero vengono usate in genere all' Valore: + + Warning + Warning + + Warning: Changing namespace may produce invalid code and change code meaning. Avviso: la modifica dello spazio dei nomi può comportare la creazione di codice non valido e modificare il significato del codice. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.ja.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.ja.xlf index 35c279f9b0943..13e5fd8769411 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.ja.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.ja.xlf @@ -535,6 +535,11 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma プロジェクト '{0}' で加えられた変更にはアプリケーションの再起動が必要です: {1} + + Error + Error + + Error while reading file '{0}': {1} ファイル {0}' の読み取り中にエラーが発生しました: {1} @@ -1055,6 +1060,11 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma 抽出を行うための有効な選択がありません。 + + None + None + + Not enough )'s ) が足りません @@ -2305,6 +2315,11 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 選択が型の内部に含まれていません。 + + Silent + Silent + + Sort accessibility modifiers アクセシビリティ修飾子を並べ替える @@ -2325,6 +2340,11 @@ Zero-width positive lookbehind assertions are typically used at the beginning of ストリームは、読み取りとシーク操作をサポートする必要があります。 + + Suggestion + Suggestion + + Suppress {0} {0} の非表示 @@ -2575,6 +2595,11 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 値: + + Warning + Warning + + Warning: Changing namespace may produce invalid code and change code meaning. 警告: 名前空間を変更すると無効なコードが生成され、コードの意味が変更される可能性があります。 diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.ko.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.ko.xlf index 4df112bd36470..79c0323e05afe 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.ko.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.ko.xlf @@ -535,6 +535,11 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma ' {0}' 프로젝트에서 변경한 내용을 적용하려면 응용 프로그램 ‘{1}’을(를) 다시 시작 해야 합니다. + + Error + Error + + Error while reading file '{0}': {1} '{0}' 파일을 읽는 동안 오류가 발생했습니다. {1} @@ -1055,6 +1060,11 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma 추출을 수행할 선택 항목이 잘못되었습니다. + + None + None + + Not enough )'s 부족 )'s @@ -2305,6 +2315,11 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 선택 항목이 형식 내에 포함되어 있지 않습니다. + + Silent + Silent + + Sort accessibility modifiers 접근성 한정자 정렬 @@ -2325,6 +2340,11 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 스트림은 읽기 및 찾기 작업을 지원해야 합니다. + + Suggestion + Suggestion + + Suppress {0} {0}을(를) 표시하지 않음 @@ -2575,6 +2595,11 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 값: + + Warning + Warning + + Warning: Changing namespace may produce invalid code and change code meaning. 경고: 네임스페이스를 변경하면 잘못된 코드가 발생하고 코드 의미가 변경될 수 있습니다. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.pl.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.pl.xlf index 99282ed338038..8eb3e59679461 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.pl.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.pl.xlf @@ -535,6 +535,11 @@ Pamiętaj, aby nie używać specyfikatora „tt” dla wszystkich języków, w k Zmiany wprowadzone w projekcie „{0}” wymagają ponownego uruchomienia aplikacji: {1} + + Error + Error + + Error while reading file '{0}': {1} Błąd podczas odczytywania pliku „{0}”: {1} @@ -1055,6 +1060,11 @@ Pamiętaj, aby nie używać specyfikatora „tt” dla wszystkich języków, w k Brak prawidłowego zaznaczenia do wyodrębnienia. + + None + None + + Not enough )'s Zbyt mało znaków ) @@ -2305,6 +2315,11 @@ Pozytywne asercje wsteczne o zerowej szerokości są zwykle używane na początk Zaznaczenie nie jest uwzględnione w typie. + + Silent + Silent + + Sort accessibility modifiers Sortuj modyfikatory dostępności @@ -2325,6 +2340,11 @@ Pozytywne asercje wsteczne o zerowej szerokości są zwykle używane na początk Strumień musi obsługiwać operacje odczytu i wyszukiwania. + + Suggestion + Suggestion + + Suppress {0} Pomiń element {0} @@ -2575,6 +2595,11 @@ Pozytywne asercje wsteczne o zerowej szerokości są zwykle używane na początk Wartość: + + Warning + Warning + + Warning: Changing namespace may produce invalid code and change code meaning. Ostrzeżenie: Zmiana przestrzeni nazw może skutkować nieprawidłowym kodem i zmianą jego znaczenia. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.pt-BR.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.pt-BR.xlf index 34f22f912c367..1583afa68e731 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.pt-BR.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.pt-BR.xlf @@ -535,6 +535,11 @@ Verifique se o especificador "tt" foi usado para idiomas para os quais é necess As alterações feitas no projeto '{0}' requerem a reinicialização do aplicativo: {1} + + Error + Error + + Error while reading file '{0}': {1} Erro ao ler o arquivo '{0}': {1} @@ -1055,6 +1060,11 @@ Verifique se o especificador "tt" foi usado para idiomas para os quais é necess Nenhuma seleção válida para realizar a extração. + + None + None + + Not enough )'s Não há )'s suficientes @@ -2305,6 +2315,11 @@ As declarações de lookbehind positivas de largura zero normalmente são usadas Seleção não contida dentro de um tipo. + + Silent + Silent + + Sort accessibility modifiers Classificar modificadores de acessibilidade @@ -2325,6 +2340,11 @@ As declarações de lookbehind positivas de largura zero normalmente são usadas O fluxo deve fornecer suporte a operações de leitura e busca. + + Suggestion + Suggestion + + Suppress {0} Suprimir {0} @@ -2575,6 +2595,11 @@ As declarações de lookbehind positivas de largura zero normalmente são usadas Valor: + + Warning + Warning + + Warning: Changing namespace may produce invalid code and change code meaning. Aviso: a alteração do namespace pode produzir código inválido e mudar o significado do código. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.ru.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.ru.xlf index 8c0f71a1808d1..cfa8b5f2da940 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.ru.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.ru.xlf @@ -535,6 +535,11 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma После внесения изменений в проект "{0}" необходимо перезапустить приложение: {1} + + Error + Error + + Error while reading file '{0}': {1} Ошибка при чтении файла "{0}": {1} @@ -1055,6 +1060,11 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma Нет допустимого выделения для извлечения. + + None + None + + Not enough )'s Отсутствуют закрывающие круглые скобки @@ -2305,6 +2315,11 @@ Zero-width positive lookbehind assertions are typically used at the beginning of Выделенный фрагмент не входит в тип. + + Silent + Silent + + Sort accessibility modifiers Сортировать модификаторы доступности @@ -2325,6 +2340,11 @@ Zero-width positive lookbehind assertions are typically used at the beginning of Поток должен поддерживать операции чтения и поиска. + + Suggestion + Suggestion + + Suppress {0} Скрыть {0} @@ -2575,6 +2595,11 @@ Zero-width positive lookbehind assertions are typically used at the beginning of Значение: + + Warning + Warning + + Warning: Changing namespace may produce invalid code and change code meaning. Предупреждение: изменение пространства имен может привести к появлению недопустимого кода и к изменению значения кода. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.tr.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.tr.xlf index 8db4bc9bd795b..bcac0d8e343a9 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.tr.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.tr.xlf @@ -535,6 +535,11 @@ AM ve PM arasındaki farkın korunmasının gerekli olduğu diller için "tt" be '{0}' projesinde yapılan değişiklikler uygulamanın yeniden başlatılmasını gerektiriyor: {1} + + Error + Error + + Error while reading file '{0}': {1} '{0}' dosyası okunurken hata: {1} @@ -1055,6 +1060,11 @@ AM ve PM arasındaki farkın korunmasının gerekli olduğu diller için "tt" be Ayıklamayı gerçekleştirme için geçerli seçim yok. + + None + None + + Not enough )'s Değil yeterli)'ın @@ -2305,6 +2315,11 @@ Sıfır genişlikli pozitif geri yönlü onaylamalar genellikle normal ifadeleri Seçim bir türün içinde yer almıyor. + + Silent + Silent + + Sort accessibility modifiers Erişilebilirlik değiştiricilerini sırala @@ -2325,6 +2340,11 @@ Sıfır genişlikli pozitif geri yönlü onaylamalar genellikle normal ifadeleri Akış okuma ve arama işlemlerini desteklemelidir. + + Suggestion + Suggestion + + Suppress {0} {0} eylemini bastır @@ -2575,6 +2595,11 @@ Sıfır genişlikli pozitif geri yönlü onaylamalar genellikle normal ifadeleri Değer: + + Warning + Warning + + Warning: Changing namespace may produce invalid code and change code meaning. Uyarı: Ad alanının değiştirilmesi geçersiz kod oluşturabilir ve kodun anlamını değiştirebilir. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hans.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hans.xlf index c52df4beab8be..9eab96c524a2d 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hans.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hans.xlf @@ -535,6 +535,11 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma 在项目“{0}”中所做的更改要求重新启动应用程序: {1} + + Error + Error + + Error while reading file '{0}': {1} 读取文件“{0}”时出错: {1} @@ -1055,6 +1060,11 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma 没有执行提取的有效选择。 + + None + None + + Not enough )'s ")" 不足 @@ -2305,6 +2315,11 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 所选内容不包含在类型内。 + + Silent + Silent + + Sort accessibility modifiers 对可访问性修饰符排序 @@ -2325,6 +2340,11 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 流必须支持读取和搜寻操作。 + + Suggestion + Suggestion + + Suppress {0} 抑制 {0} @@ -2575,6 +2595,11 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 值: + + Warning + Warning + + Warning: Changing namespace may produce invalid code and change code meaning. 警告: 更改命名空间可能会产生无效的代码并更改代码的含义。 diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hant.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hant.xlf index 3a27980d30dae..54651ee4f1bcc 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hant.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hant.xlf @@ -535,6 +535,11 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma 在專案 '{0}' 中所做的變更需要重新啟動應用程式: {1} + + Error + Error + + Error while reading file '{0}': {1} 讀取檔案 '{0}' 時發生錯誤: {1} @@ -1055,6 +1060,11 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma 沒有可執行擷取的有效選取範圍。 + + None + None + + Not enough )'s ) 不夠 @@ -2305,6 +2315,11 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 選取範圍未包含在類型內。 + + Silent + Silent + + Sort accessibility modifiers 排序協助工具修飾元 @@ -2325,6 +2340,11 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 資料流必須支援讀取及搜尋作業。 + + Suggestion + Suggestion + + Suppress {0} 隱藏 {0} @@ -2575,6 +2595,11 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 值: + + Warning + Warning + + Warning: Changing namespace may produce invalid code and change code meaning. 警告: 變更命名空間可能會產生無效的程式碼及變更程式碼意義。 From 91cf79177ade59b93170088d0c0298f3a080de6b Mon Sep 17 00:00:00 2001 From: Shen Chen Date: Tue, 16 Nov 2021 11:46:21 -0800 Subject: [PATCH 2/4] Add an addtional entry in the tuple --- .../ConfigureSeverityLevelCodeFixProvider.cs | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs b/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs index 889475d51fbeb..06385e2063351 100644 --- a/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs +++ b/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs @@ -22,13 +22,13 @@ namespace Microsoft.CodeAnalysis.CodeFixes.Configuration.ConfigureSeverity [ExtensionOrder(After = PredefinedConfigurationFixProviderNames.Suppression)] internal sealed partial class ConfigureSeverityLevelCodeFixProvider : IConfigurationFixProvider { - private static readonly ImmutableArray<(string name, string value)> s_editorConfigSeverityStrings = + private static readonly ImmutableArray<(string name, string value, string title)> s_editorConfigSeverityStrings = ImmutableArray.Create( - (nameof(EditorConfigSeverityStrings.None), FeaturesResources.None), - (nameof(EditorConfigSeverityStrings.Silent), FeaturesResources.Silent), - (nameof(EditorConfigSeverityStrings.Suggestion), FeaturesResources.Suggestion), - (nameof(EditorConfigSeverityStrings.Warning), FeaturesResources.Warning), - (nameof(EditorConfigSeverityStrings.Error), FeaturesResources.Error)); + (nameof(EditorConfigSeverityStrings.None), EditorConfigSeverityStrings.None, FeaturesResources.None), + (nameof(EditorConfigSeverityStrings.Silent), EditorConfigSeverityStrings.Silent, FeaturesResources.Silent), + (nameof(EditorConfigSeverityStrings.Suggestion), EditorConfigSeverityStrings.Suggestion, FeaturesResources.Suggestion), + (nameof(EditorConfigSeverityStrings.Warning), EditorConfigSeverityStrings.Warning, FeaturesResources.Warning), + (nameof(EditorConfigSeverityStrings.Error), EditorConfigSeverityStrings.Error, FeaturesResources.Error)); [ImportingConstructor] [SuppressMessage("RoslynDiagnosticsReliability", "RS0033:Importing constructor should be [Obsolete]", Justification = "Used in test code: https://github.com/dotnet/roslyn/issues/42814")] @@ -58,11 +58,11 @@ private static ImmutableArray GetConfigurations(Project project, IEnume foreach (var diagnostic in diagnostics) { var nestedActions = ArrayBuilder.GetInstance(); - foreach (var (name, value) in s_editorConfigSeverityStrings) + foreach (var (name, value, title) in s_editorConfigSeverityStrings) { nestedActions.Add( new SolutionChangeAction( - value, + title, solution => ConfigurationUpdater.ConfigureSeverityAsync(value, diagnostic, project, cancellationToken), name)); } @@ -99,11 +99,11 @@ private static ImmutableArray GetConfigurations(Project project, IEnume void AddBulkConfigurationCodeFixes(ImmutableArray diagnostics, string? category) { var nestedActions = ArrayBuilder.GetInstance(); - foreach (var (name, value) in s_editorConfigSeverityStrings) + foreach (var (name, value, title) in s_editorConfigSeverityStrings) { nestedActions.Add( new SolutionChangeAction( - value, + title, solution => category != null ? ConfigurationUpdater.BulkConfigureSeverityAsync(value, category, project, cancellationToken) : ConfigurationUpdater.BulkConfigureSeverityAsync(value, project, cancellationToken), From 7264c50ef9e7f3583f1d3a9b49e94ad32496e0ce Mon Sep 17 00:00:00 2001 From: Shen Chen Date: Tue, 16 Nov 2021 19:04:14 -0800 Subject: [PATCH 3/4] Remove the name in the tuple and use value as the key --- .../ConfigureSeverityLevelCodeFixProvider.cs | 21 +++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs b/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs index 06385e2063351..e1ee566ffdad8 100644 --- a/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs +++ b/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs @@ -10,7 +10,6 @@ using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeActions; using Microsoft.CodeAnalysis.CodeFixes.Suppression; -using Microsoft.CodeAnalysis.Options.EditorConfig; using Microsoft.CodeAnalysis.PooledObjects; using Microsoft.CodeAnalysis.Text; using Roslyn.Utilities; @@ -22,13 +21,13 @@ namespace Microsoft.CodeAnalysis.CodeFixes.Configuration.ConfigureSeverity [ExtensionOrder(After = PredefinedConfigurationFixProviderNames.Suppression)] internal sealed partial class ConfigureSeverityLevelCodeFixProvider : IConfigurationFixProvider { - private static readonly ImmutableArray<(string name, string value, string title)> s_editorConfigSeverityStrings = + private static readonly ImmutableArray<(string value, string title)> s_editorConfigSeverityStrings = ImmutableArray.Create( - (nameof(EditorConfigSeverityStrings.None), EditorConfigSeverityStrings.None, FeaturesResources.None), - (nameof(EditorConfigSeverityStrings.Silent), EditorConfigSeverityStrings.Silent, FeaturesResources.Silent), - (nameof(EditorConfigSeverityStrings.Suggestion), EditorConfigSeverityStrings.Suggestion, FeaturesResources.Suggestion), - (nameof(EditorConfigSeverityStrings.Warning), EditorConfigSeverityStrings.Warning, FeaturesResources.Warning), - (nameof(EditorConfigSeverityStrings.Error), EditorConfigSeverityStrings.Error, FeaturesResources.Error)); + (EditorConfigSeverityStrings.None, FeaturesResources.None), + (EditorConfigSeverityStrings.Silent, FeaturesResources.Silent), + (EditorConfigSeverityStrings.Suggestion, FeaturesResources.Suggestion), + (EditorConfigSeverityStrings.Warning, FeaturesResources.Warning), + (EditorConfigSeverityStrings.Error, FeaturesResources.Error)); [ImportingConstructor] [SuppressMessage("RoslynDiagnosticsReliability", "RS0033:Importing constructor should be [Obsolete]", Justification = "Used in test code: https://github.com/dotnet/roslyn/issues/42814")] @@ -58,13 +57,13 @@ private static ImmutableArray GetConfigurations(Project project, IEnume foreach (var diagnostic in diagnostics) { var nestedActions = ArrayBuilder.GetInstance(); - foreach (var (name, value, title) in s_editorConfigSeverityStrings) + foreach (var (value, title) in s_editorConfigSeverityStrings) { nestedActions.Add( new SolutionChangeAction( title, solution => ConfigurationUpdater.ConfigureSeverityAsync(value, diagnostic, project, cancellationToken), - name)); + value)); } var codeAction = new TopLevelConfigureSeverityCodeAction(diagnostic, nestedActions.ToImmutableAndFree()); @@ -99,7 +98,7 @@ private static ImmutableArray GetConfigurations(Project project, IEnume void AddBulkConfigurationCodeFixes(ImmutableArray diagnostics, string? category) { var nestedActions = ArrayBuilder.GetInstance(); - foreach (var (name, value, title) in s_editorConfigSeverityStrings) + foreach (var (value, title) in s_editorConfigSeverityStrings) { nestedActions.Add( new SolutionChangeAction( @@ -107,7 +106,7 @@ void AddBulkConfigurationCodeFixes(ImmutableArray diagnostics, strin solution => category != null ? ConfigurationUpdater.BulkConfigureSeverityAsync(value, category, project, cancellationToken) : ConfigurationUpdater.BulkConfigureSeverityAsync(value, project, cancellationToken), - name)); + value)); } var codeAction = new TopLevelBulkConfigureSeverityCodeAction(nestedActions.ToImmutableAndFree(), category); From 7f9203b2ce71854799c09b507988d8f379c4953d Mon Sep 17 00:00:00 2001 From: Shen Chen Date: Wed, 17 Nov 2021 14:11:53 -0800 Subject: [PATCH 4/4] Reuse the workspace resources --- .../ConfigureSeverityLevelCodeFixProvider.cs | 8 ++++---- .../Core/Portable/FeaturesResources.resx | 12 ----------- .../Portable/xlf/FeaturesResources.cs.xlf | 20 ------------------- .../Portable/xlf/FeaturesResources.de.xlf | 20 ------------------- .../Portable/xlf/FeaturesResources.es.xlf | 20 ------------------- .../Portable/xlf/FeaturesResources.fr.xlf | 20 ------------------- .../Portable/xlf/FeaturesResources.it.xlf | 20 ------------------- .../Portable/xlf/FeaturesResources.ja.xlf | 20 ------------------- .../Portable/xlf/FeaturesResources.ko.xlf | 20 ------------------- .../Portable/xlf/FeaturesResources.pl.xlf | 20 ------------------- .../Portable/xlf/FeaturesResources.pt-BR.xlf | 20 ------------------- .../Portable/xlf/FeaturesResources.ru.xlf | 20 ------------------- .../Portable/xlf/FeaturesResources.tr.xlf | 20 ------------------- .../xlf/FeaturesResources.zh-Hans.xlf | 20 ------------------- .../xlf/FeaturesResources.zh-Hant.xlf | 20 ------------------- 15 files changed, 4 insertions(+), 276 deletions(-) diff --git a/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs b/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs index e1ee566ffdad8..59a7fb5cedb59 100644 --- a/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs +++ b/src/Features/Core/Portable/CodeFixes/Configuration/ConfigureSeverity/ConfigureSeverityLevelCodeFixProvider.cs @@ -23,11 +23,11 @@ internal sealed partial class ConfigureSeverityLevelCodeFixProvider : IConfigura { private static readonly ImmutableArray<(string value, string title)> s_editorConfigSeverityStrings = ImmutableArray.Create( - (EditorConfigSeverityStrings.None, FeaturesResources.None), + (EditorConfigSeverityStrings.None, WorkspacesResources.None), (EditorConfigSeverityStrings.Silent, FeaturesResources.Silent), - (EditorConfigSeverityStrings.Suggestion, FeaturesResources.Suggestion), - (EditorConfigSeverityStrings.Warning, FeaturesResources.Warning), - (EditorConfigSeverityStrings.Error, FeaturesResources.Error)); + (EditorConfigSeverityStrings.Suggestion, WorkspacesResources.Suggestion), + (EditorConfigSeverityStrings.Warning, WorkspacesResources.Warning), + (EditorConfigSeverityStrings.Error, WorkspacesResources.Error)); [ImportingConstructor] [SuppressMessage("RoslynDiagnosticsReliability", "RS0033:Importing constructor should be [Obsolete]", Justification = "Used in test code: https://github.com/dotnet/roslyn/issues/42814")] diff --git a/src/Features/Core/Portable/FeaturesResources.resx b/src/Features/Core/Portable/FeaturesResources.resx index fba11c238764a..cc83c35a35680 100644 --- a/src/Features/Core/Portable/FeaturesResources.resx +++ b/src/Features/Core/Portable/FeaturesResources.resx @@ -2945,19 +2945,7 @@ Zero-width positive lookbehind assertions are typically used at the beginning of Explicitly inherit documentation - - Error - - - None - Silent - - Suggestion - - - Warning - \ No newline at end of file diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.cs.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.cs.xlf index dccd19e75a816..77e91fdc07aef 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.cs.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.cs.xlf @@ -535,11 +535,6 @@ Ujistěte se, že specifikátor tt použijete pro jazyky, pro které je nezbytn Změny provedené v projektu {0} vyžadují restartování aplikace: {1} - - Error - Error - - Error while reading file '{0}': {1} Při čtení souboru {0} došlo k chybě: {1} @@ -1060,11 +1055,6 @@ Ujistěte se, že specifikátor tt použijete pro jazyky, pro které je nezbytn Žádný platný výběr k provedení extrakce - - None - None - - Not enough )'s Nedostatek znaků ) @@ -2340,11 +2330,6 @@ Pozitivní kontrolní výrazy zpětného vyhledávání s nulovou délkou se obv Stream musí podporovat operace read a seek. - - Suggestion - Suggestion - - Suppress {0} Potlačit {0} @@ -2595,11 +2580,6 @@ Pozitivní kontrolní výrazy zpětného vyhledávání s nulovou délkou se obv Hodnota: - - Warning - Warning - - Warning: Changing namespace may produce invalid code and change code meaning. Upozornění: Změna oboru názvů může vést k vytvoření neplatného kódu a změnit význam kódu. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.de.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.de.xlf index 12f92ae5c4bf5..70bfe06459cad 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.de.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.de.xlf @@ -535,11 +535,6 @@ Stellen Sie sicher, dass Sie den Bezeichner "tt" für Sprachen verwenden, für d Änderungen, die im Projekt "{0}" vorgenommen wurden, erfordern einen Neustart der Anwendung: {1} - - Error - Error - - Error while reading file '{0}': {1} Fehler beim Lesen der Datei "{0}": {1} @@ -1060,11 +1055,6 @@ Stellen Sie sicher, dass Sie den Bezeichner "tt" für Sprachen verwenden, für d Keine gültige Auswahl zum Durchführen der Extraktion. - - None - None - - Not enough )'s Zu wenige )-Zeichen @@ -2340,11 +2330,6 @@ Positive Lookbehindassertionen mit Nullbreite werden normalerweise am Anfang reg Stream muss Lese- und Suchvorgänge unterstützen. - - Suggestion - Suggestion - - Suppress {0} {0} unterdrücken @@ -2595,11 +2580,6 @@ Positive Lookbehindassertionen mit Nullbreite werden normalerweise am Anfang reg Wert: - - Warning - Warning - - Warning: Changing namespace may produce invalid code and change code meaning. Warnung: Durch die Änderung des Namespaces kann der Code ungültig werden oder seine Bedeutung verändern. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.es.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.es.xlf index d299adfffe5a4..16e50ea771bbc 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.es.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.es.xlf @@ -535,11 +535,6 @@ Asegúrese de usar el especificador "tt" para los idiomas para los que es necesa Los cambios realizados en el proyecto "{0}" requieren reiniciar la aplicación: {1} - - Error - Error - - Error while reading file '{0}': {1} Error al leer el archivo "{0}": {1} @@ -1060,11 +1055,6 @@ Asegúrese de usar el especificador "tt" para los idiomas para los que es necesa Selección no válida para efectuar extracción. - - None - None - - Not enough )'s No hay suficientes ) @@ -2340,11 +2330,6 @@ Las aserciones de búsqueda retrasada (lookbehind) positivas de ancho cero se us La secuencia debe admitir las operaciones de lectura y búsqueda. - - Suggestion - Suggestion - - Suppress {0} Suprimir {0} @@ -2595,11 +2580,6 @@ Las aserciones de búsqueda retrasada (lookbehind) positivas de ancho cero se us Valor: - - Warning - Warning - - Warning: Changing namespace may produce invalid code and change code meaning. Advertencia: si cambia Cambiar el espacio de nombres puede producir código inválido y cambiar el significado del código. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.fr.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.fr.xlf index 48126e0dc2d9b..56d4314a4a6ab 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.fr.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.fr.xlf @@ -535,11 +535,6 @@ Veillez à utiliser le spécificateur "tt" pour les langues où il est nécessai Les modifications apportées au projet « {0} » nécessitent le redémarrage de l’application : {1} - - Error - Error - - Error while reading file '{0}': {1} Erreur durant la lecture du fichier '{0}' : {1} @@ -1060,11 +1055,6 @@ Veillez à utiliser le spécificateur "tt" pour les langues où il est nécessai Pas de sélection valide pour procéder à l'extraction. - - None - None - - Not enough )'s Pas assez de )'s @@ -2340,11 +2330,6 @@ Les assertions arrière positives de largeur nulle sont généralement utilisée Le flux doit prendre en charge les opérations de lecture et de recherche. - - Suggestion - Suggestion - - Suppress {0} Supprimer {0} @@ -2595,11 +2580,6 @@ Les assertions arrière positives de largeur nulle sont généralement utilisée Valeur : - - Warning - Warning - - Warning: Changing namespace may produce invalid code and change code meaning. Avertissement : Le changement d’espace de noms peut produire du code non valide et changer la signification du code. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.it.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.it.xlf index 8b7df6c3456f2..e88788f7b3961 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.it.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.it.xlf @@ -535,11 +535,6 @@ Assicurarsi di usare l'identificatore "tt" per le lingue per le quali è necessa Le modifiche apportate nel progetto '{0}' richiedono il riavvio dell'applicazione: {1} - - Error - Error - - Error while reading file '{0}': {1} Si è verificato un errore durante la lettura del file '{0}': {1} @@ -1060,11 +1055,6 @@ Assicurarsi di usare l'identificatore "tt" per le lingue per le quali è necessa La selezione non è valida per eseguire l'estrazione. - - None - None - - Not enough )'s Parentesi chiuse insufficienti @@ -2340,11 +2330,6 @@ Le asserzioni lookbehind positive di larghezza zero vengono usate in genere all' Il flusso deve supportare operazioni di lettura e ricerca. - - Suggestion - Suggestion - - Suppress {0} Elimina {0} @@ -2595,11 +2580,6 @@ Le asserzioni lookbehind positive di larghezza zero vengono usate in genere all' Valore: - - Warning - Warning - - Warning: Changing namespace may produce invalid code and change code meaning. Avviso: la modifica dello spazio dei nomi può comportare la creazione di codice non valido e modificare il significato del codice. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.ja.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.ja.xlf index 13e5fd8769411..8a08248fc5ad8 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.ja.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.ja.xlf @@ -535,11 +535,6 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma プロジェクト '{0}' で加えられた変更にはアプリケーションの再起動が必要です: {1} - - Error - Error - - Error while reading file '{0}': {1} ファイル {0}' の読み取り中にエラーが発生しました: {1} @@ -1060,11 +1055,6 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma 抽出を行うための有効な選択がありません。 - - None - None - - Not enough )'s ) が足りません @@ -2340,11 +2330,6 @@ Zero-width positive lookbehind assertions are typically used at the beginning of ストリームは、読み取りとシーク操作をサポートする必要があります。 - - Suggestion - Suggestion - - Suppress {0} {0} の非表示 @@ -2595,11 +2580,6 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 値: - - Warning - Warning - - Warning: Changing namespace may produce invalid code and change code meaning. 警告: 名前空間を変更すると無効なコードが生成され、コードの意味が変更される可能性があります。 diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.ko.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.ko.xlf index 79c0323e05afe..817e281d37de5 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.ko.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.ko.xlf @@ -535,11 +535,6 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma ' {0}' 프로젝트에서 변경한 내용을 적용하려면 응용 프로그램 ‘{1}’을(를) 다시 시작 해야 합니다. - - Error - Error - - Error while reading file '{0}': {1} '{0}' 파일을 읽는 동안 오류가 발생했습니다. {1} @@ -1060,11 +1055,6 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma 추출을 수행할 선택 항목이 잘못되었습니다. - - None - None - - Not enough )'s 부족 )'s @@ -2340,11 +2330,6 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 스트림은 읽기 및 찾기 작업을 지원해야 합니다. - - Suggestion - Suggestion - - Suppress {0} {0}을(를) 표시하지 않음 @@ -2595,11 +2580,6 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 값: - - Warning - Warning - - Warning: Changing namespace may produce invalid code and change code meaning. 경고: 네임스페이스를 변경하면 잘못된 코드가 발생하고 코드 의미가 변경될 수 있습니다. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.pl.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.pl.xlf index 8eb3e59679461..b4173cb10a501 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.pl.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.pl.xlf @@ -535,11 +535,6 @@ Pamiętaj, aby nie używać specyfikatora „tt” dla wszystkich języków, w k Zmiany wprowadzone w projekcie „{0}” wymagają ponownego uruchomienia aplikacji: {1} - - Error - Error - - Error while reading file '{0}': {1} Błąd podczas odczytywania pliku „{0}”: {1} @@ -1060,11 +1055,6 @@ Pamiętaj, aby nie używać specyfikatora „tt” dla wszystkich języków, w k Brak prawidłowego zaznaczenia do wyodrębnienia. - - None - None - - Not enough )'s Zbyt mało znaków ) @@ -2340,11 +2330,6 @@ Pozytywne asercje wsteczne o zerowej szerokości są zwykle używane na początk Strumień musi obsługiwać operacje odczytu i wyszukiwania. - - Suggestion - Suggestion - - Suppress {0} Pomiń element {0} @@ -2595,11 +2580,6 @@ Pozytywne asercje wsteczne o zerowej szerokości są zwykle używane na początk Wartość: - - Warning - Warning - - Warning: Changing namespace may produce invalid code and change code meaning. Ostrzeżenie: Zmiana przestrzeni nazw może skutkować nieprawidłowym kodem i zmianą jego znaczenia. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.pt-BR.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.pt-BR.xlf index 1583afa68e731..75328e454d401 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.pt-BR.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.pt-BR.xlf @@ -535,11 +535,6 @@ Verifique se o especificador "tt" foi usado para idiomas para os quais é necess As alterações feitas no projeto '{0}' requerem a reinicialização do aplicativo: {1} - - Error - Error - - Error while reading file '{0}': {1} Erro ao ler o arquivo '{0}': {1} @@ -1060,11 +1055,6 @@ Verifique se o especificador "tt" foi usado para idiomas para os quais é necess Nenhuma seleção válida para realizar a extração. - - None - None - - Not enough )'s Não há )'s suficientes @@ -2340,11 +2330,6 @@ As declarações de lookbehind positivas de largura zero normalmente são usadas O fluxo deve fornecer suporte a operações de leitura e busca. - - Suggestion - Suggestion - - Suppress {0} Suprimir {0} @@ -2595,11 +2580,6 @@ As declarações de lookbehind positivas de largura zero normalmente são usadas Valor: - - Warning - Warning - - Warning: Changing namespace may produce invalid code and change code meaning. Aviso: a alteração do namespace pode produzir código inválido e mudar o significado do código. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.ru.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.ru.xlf index cfa8b5f2da940..4520b95b50957 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.ru.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.ru.xlf @@ -535,11 +535,6 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma После внесения изменений в проект "{0}" необходимо перезапустить приложение: {1} - - Error - Error - - Error while reading file '{0}': {1} Ошибка при чтении файла "{0}": {1} @@ -1060,11 +1055,6 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma Нет допустимого выделения для извлечения. - - None - None - - Not enough )'s Отсутствуют закрывающие круглые скобки @@ -2340,11 +2330,6 @@ Zero-width positive lookbehind assertions are typically used at the beginning of Поток должен поддерживать операции чтения и поиска. - - Suggestion - Suggestion - - Suppress {0} Скрыть {0} @@ -2595,11 +2580,6 @@ Zero-width positive lookbehind assertions are typically used at the beginning of Значение: - - Warning - Warning - - Warning: Changing namespace may produce invalid code and change code meaning. Предупреждение: изменение пространства имен может привести к появлению недопустимого кода и к изменению значения кода. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.tr.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.tr.xlf index bcac0d8e343a9..5094fac4ad630 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.tr.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.tr.xlf @@ -535,11 +535,6 @@ AM ve PM arasındaki farkın korunmasının gerekli olduğu diller için "tt" be '{0}' projesinde yapılan değişiklikler uygulamanın yeniden başlatılmasını gerektiriyor: {1} - - Error - Error - - Error while reading file '{0}': {1} '{0}' dosyası okunurken hata: {1} @@ -1060,11 +1055,6 @@ AM ve PM arasındaki farkın korunmasının gerekli olduğu diller için "tt" be Ayıklamayı gerçekleştirme için geçerli seçim yok. - - None - None - - Not enough )'s Değil yeterli)'ın @@ -2340,11 +2330,6 @@ Sıfır genişlikli pozitif geri yönlü onaylamalar genellikle normal ifadeleri Akış okuma ve arama işlemlerini desteklemelidir. - - Suggestion - Suggestion - - Suppress {0} {0} eylemini bastır @@ -2595,11 +2580,6 @@ Sıfır genişlikli pozitif geri yönlü onaylamalar genellikle normal ifadeleri Değer: - - Warning - Warning - - Warning: Changing namespace may produce invalid code and change code meaning. Uyarı: Ad alanının değiştirilmesi geçersiz kod oluşturabilir ve kodun anlamını değiştirebilir. diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hans.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hans.xlf index 9eab96c524a2d..6dfd1ec62c71c 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hans.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hans.xlf @@ -535,11 +535,6 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma 在项目“{0}”中所做的更改要求重新启动应用程序: {1} - - Error - Error - - Error while reading file '{0}': {1} 读取文件“{0}”时出错: {1} @@ -1060,11 +1055,6 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma 没有执行提取的有效选择。 - - None - None - - Not enough )'s ")" 不足 @@ -2340,11 +2330,6 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 流必须支持读取和搜寻操作。 - - Suggestion - Suggestion - - Suppress {0} 抑制 {0} @@ -2595,11 +2580,6 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 值: - - Warning - Warning - - Warning: Changing namespace may produce invalid code and change code meaning. 警告: 更改命名空间可能会产生无效的代码并更改代码的含义。 diff --git a/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hant.xlf b/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hant.xlf index 54651ee4f1bcc..2c253c962539c 100644 --- a/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hant.xlf +++ b/src/Features/Core/Portable/xlf/FeaturesResources.zh-Hant.xlf @@ -535,11 +535,6 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma 在專案 '{0}' 中所做的變更需要重新啟動應用程式: {1} - - Error - Error - - Error while reading file '{0}': {1} 讀取檔案 '{0}' 時發生錯誤: {1} @@ -1060,11 +1055,6 @@ Make sure to use the "tt" specifier for languages for which it's necessary to ma 沒有可執行擷取的有效選取範圍。 - - None - None - - Not enough )'s ) 不夠 @@ -2340,11 +2330,6 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 資料流必須支援讀取及搜尋作業。 - - Suggestion - Suggestion - - Suppress {0} 隱藏 {0} @@ -2595,11 +2580,6 @@ Zero-width positive lookbehind assertions are typically used at the beginning of 值: - - Warning - Warning - - Warning: Changing namespace may produce invalid code and change code meaning. 警告: 變更命名空間可能會產生無效的程式碼及變更程式碼意義。