From 44dd29e8927c26d9326d9929f25e11290d1ebc4a Mon Sep 17 00:00:00 2001 From: Andrew Hall Date: Wed, 27 Jul 2022 13:41:27 -0700 Subject: [PATCH 1/9] Set new rename experience as default --- ...tationOptions.cs => InlineRenameUIOptions.cs} | 8 ++++---- .../UI/InlineRenameAdornmentManager.cs | 2 +- .../CSharp/Impl/CSharpVSResources.resx | 9 +++++++++ .../Impl/Options/AdvancedOptionPageControl.xaml | 16 ++++++++++++++++ .../Options/AdvancedOptionPageControl.xaml.cs | 2 ++ .../Impl/Options/AdvancedOptionPageStrings.cs | 9 +++++++++ .../CSharp/Impl/xlf/CSharpVSResources.cs.xlf | 15 +++++++++++++++ .../CSharp/Impl/xlf/CSharpVSResources.de.xlf | 15 +++++++++++++++ .../CSharp/Impl/xlf/CSharpVSResources.es.xlf | 15 +++++++++++++++ .../CSharp/Impl/xlf/CSharpVSResources.fr.xlf | 15 +++++++++++++++ .../CSharp/Impl/xlf/CSharpVSResources.it.xlf | 15 +++++++++++++++ .../CSharp/Impl/xlf/CSharpVSResources.ja.xlf | 15 +++++++++++++++ .../CSharp/Impl/xlf/CSharpVSResources.ko.xlf | 15 +++++++++++++++ .../CSharp/Impl/xlf/CSharpVSResources.pl.xlf | 15 +++++++++++++++ .../CSharp/Impl/xlf/CSharpVSResources.pt-BR.xlf | 15 +++++++++++++++ .../CSharp/Impl/xlf/CSharpVSResources.ru.xlf | 15 +++++++++++++++ .../CSharp/Impl/xlf/CSharpVSResources.tr.xlf | 15 +++++++++++++++ .../Impl/xlf/CSharpVSResources.zh-Hans.xlf | 15 +++++++++++++++ .../Impl/xlf/CSharpVSResources.zh-Hant.xlf | 15 +++++++++++++++ .../Core/Def/PackageRegistration.pkgdef | 6 ------ 20 files changed, 236 insertions(+), 11 deletions(-) rename src/EditorFeatures/Core.Wpf/InlineRename/{InlineRenameExperimentationOptions.cs => InlineRenameUIOptions.cs} (72%) diff --git a/src/EditorFeatures/Core.Wpf/InlineRename/InlineRenameExperimentationOptions.cs b/src/EditorFeatures/Core.Wpf/InlineRename/InlineRenameUIOptions.cs similarity index 72% rename from src/EditorFeatures/Core.Wpf/InlineRename/InlineRenameExperimentationOptions.cs rename to src/EditorFeatures/Core.Wpf/InlineRename/InlineRenameUIOptions.cs index 18437f5b6550d..245be3a81745b 100644 --- a/src/EditorFeatures/Core.Wpf/InlineRename/InlineRenameExperimentationOptions.cs +++ b/src/EditorFeatures/Core.Wpf/InlineRename/InlineRenameUIOptions.cs @@ -6,12 +6,12 @@ namespace Microsoft.CodeAnalysis.Editor.InlineRename { - internal sealed class InlineRenameExperimentationOptions + internal sealed class InlineRenameUIOptions { public static readonly Option2 UseInlineAdornment = new( - feature: "InlineRenameExperimentation", + feature: "InlineRename", name: "UseInlineAdornment", - defaultValue: false, - storageLocation: new FeatureFlagStorageLocation("Roslyn.UseInlineAdornmentForRename")); + defaultValue: true, + storageLocation: new FeatureFlagStorageLocation("Roslyn.Rename_UseInlineAdornment")); } } diff --git a/src/EditorFeatures/Core.Wpf/InlineRename/UI/InlineRenameAdornmentManager.cs b/src/EditorFeatures/Core.Wpf/InlineRename/UI/InlineRenameAdornmentManager.cs index d8904c712b560..4bdcfaa61bf3b 100644 --- a/src/EditorFeatures/Core.Wpf/InlineRename/UI/InlineRenameAdornmentManager.cs +++ b/src/EditorFeatures/Core.Wpf/InlineRename/UI/InlineRenameAdornmentManager.cs @@ -68,7 +68,7 @@ private void UpdateAdornments() { _dashboardColorUpdater?.UpdateColors(); - var useInlineAdornment = _globalOptionService.GetOption(InlineRenameExperimentationOptions.UseInlineAdornment); + var useInlineAdornment = _globalOptionService.GetOption(InlineRenameUIOptions.UseInlineAdornment); if (useInlineAdornment) { if (!_textView.HasAggregateFocus) diff --git a/src/VisualStudio/CSharp/Impl/CSharpVSResources.resx b/src/VisualStudio/CSharp/Impl/CSharpVSResources.resx index 9191602c7b664..18151cde6bc17 100644 --- a/src/VisualStudio/CSharp/Impl/CSharpVSResources.resx +++ b/src/VisualStudio/CSharp/Impl/CSharpVSResources.resx @@ -658,4 +658,13 @@ Show new snippet experience (experimental) + + Show UI as a dashboard in top right + + + Show UI Inline + + + Where should the rename UI be shown? + \ No newline at end of file diff --git a/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageControl.xaml b/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageControl.xaml index 93be68796dd11..783c4b0701991 100644 --- a/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageControl.xaml +++ b/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageControl.xaml @@ -7,9 +7,15 @@ xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:options="clr-namespace:Microsoft.VisualStudio.LanguageServices.Implementation.Options;assembly=Microsoft.VisualStudio.LanguageServices.Implementation" xmlns:local="clr-namespace:Microsoft.VisualStudio.LanguageServices.CSharp.Options" + xmlns:system="clr-namespace:System;assembly=mscorlib" mc:Ignorable="d" d:DesignHeight="500" d:DesignWidth="500"> + + True + False + + + + diff --git a/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageControl.xaml.cs b/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageControl.xaml.cs index 69ea931e44093..4f5bd663994db 100644 --- a/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageControl.xaml.cs +++ b/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageControl.xaml.cs @@ -18,6 +18,7 @@ using Microsoft.CodeAnalysis.Editor.Implementation.Suggestions; using Microsoft.CodeAnalysis.Editor.InlineDiagnostics; using Microsoft.CodeAnalysis.Editor.InlineHints; +using Microsoft.CodeAnalysis.Editor.InlineRename; using Microsoft.CodeAnalysis.Editor.Shared.Options; using Microsoft.CodeAnalysis.Editor.Shared.Utilities; using Microsoft.CodeAnalysis.ExtractMethod; @@ -73,6 +74,7 @@ public AdvancedOptionPageControl(OptionStore optionStore, IComponentModel compon // Rename BindToOption(Rename_asynchronously_exerimental, InlineRenameSessionOptionsStorage.RenameAsynchronously); + BindToOption(Rename_UI_setting, InlineRenameUIOptions.UseInlineAdornment, label: Rename_UI_setting_label); // Using Directives BindToOption(PlaceSystemNamespaceFirst, GenerationOptions.PlaceSystemNamespaceFirst, LanguageNames.CSharp); diff --git a/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageStrings.cs b/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageStrings.cs index a1f0deda73345..020da84aaa52a 100644 --- a/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageStrings.cs +++ b/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageStrings.cs @@ -383,5 +383,14 @@ public static string Option_Rename public static string Option_Rename_asynchronously_experimental => ServicesVSResources.Rename_asynchronously_experimental; + + public static string Where_should_the_rename_ui_be_shown + => CSharpVSResources.Where_should_the_rename_ui_be_shown; + + public static string Option_Show_ui_inline + => CSharpVSResources.Show_ui_inline; + + public static string Option_Show_ui_as_dashboard_in_top_right + => CSharpVSResources.Show_ui_as_dashboard_in_top_right; } } diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.cs.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.cs.xlf index 8564d5aaff1b2..7d77b32429e19 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.cs.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.cs.xlf @@ -192,6 +192,16 @@ Zobrazit poznámky v Rychlých informacích + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Sort usings Seřadit direktivy using @@ -707,6 +717,11 @@ Preferovat „var“ + + Where should the rename UI be shown? + Where should the rename UI be shown? + + 'this.' preferences: 'Předvolby pro „this.“: diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.de.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.de.xlf index dc5bffdcb447d..da8f417baa9cf 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.de.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.de.xlf @@ -192,6 +192,16 @@ Hinweise in QuickInfo anzeigen + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Sort usings Using-Direktiven sortieren @@ -707,6 +717,11 @@ "var" bevorzugen + + Where should the rename UI be shown? + Where should the rename UI be shown? + + 'this.' preferences: 'this.-Einstellungen: diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.es.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.es.xlf index 1935c60d77383..11ab21652e93b 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.es.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.es.xlf @@ -192,6 +192,16 @@ Mostrar comentarios en Información rápida + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Sort usings Ordenar instrucciones Using @@ -707,6 +717,11 @@ Preferir 'var' + + Where should the rename UI be shown? + Where should the rename UI be shown? + + 'this.' preferences: 'Preferencias de "this.": diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.fr.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.fr.xlf index adaeba798e6e0..99a1a59b1911c 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.fr.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.fr.xlf @@ -192,6 +192,16 @@ Afficher les notes dans Info express + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Sort usings Trier les instructions using @@ -707,6 +717,11 @@ Préférer 'var' + + Where should the rename UI be shown? + Where should the rename UI be shown? + + 'this.' preferences: 'Préférences 'this.' : diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.it.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.it.xlf index accb679fea18d..64e379664f4b9 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.it.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.it.xlf @@ -192,6 +192,16 @@ Mostra i commenti in Informazioni rapide + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Sort usings Ordina using @@ -707,6 +717,11 @@ Preferisci 'var' + + Where should the rename UI be shown? + Where should the rename UI be shown? + + 'this.' preferences: 'Preferenze per 'this.': diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ja.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ja.xlf index a98692ec266c8..04c894f040ac9 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ja.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ja.xlf @@ -192,6 +192,16 @@ クイック ヒントに注釈を表示する + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Sort usings using を並べ替える @@ -707,6 +717,11 @@ var' を優先してください + + Where should the rename UI be shown? + Where should the rename UI be shown? + + 'this.' preferences: 'this' の優先: diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ko.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ko.xlf index 583811fa05f21..3b2a38dc8c5ee 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ko.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ko.xlf @@ -192,6 +192,16 @@ 요약 정보에 설명 표시 + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Sort usings Using 정렬 @@ -707,6 +717,11 @@ var'을 기본으로 사용합니다. + + Where should the rename UI be shown? + Where should the rename UI be shown? + + 'this.' preferences: 'this.' 기본 설정: diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pl.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pl.xlf index 54d954de7e5bb..6dc81545802fe 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pl.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pl.xlf @@ -192,6 +192,16 @@ Pokaż uwagi w szybkich podpowiedziach + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Sort usings Sortuj użycia @@ -707,6 +717,11 @@ Preferuj element „var” + + Where should the rename UI be shown? + Where should the rename UI be shown? + + 'this.' preferences: 'Preferencje dotyczące elementu „this.”: diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pt-BR.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pt-BR.xlf index 897409ec14d72..36a8ca8793638 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pt-BR.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pt-BR.xlf @@ -192,6 +192,16 @@ Mostrar os comentários nas Informações Rápidas + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Sort usings Classificar usos @@ -707,6 +717,11 @@ Preferir 'var' + + Where should the rename UI be shown? + Where should the rename UI be shown? + + 'this.' preferences: 'Preferências de 'this.': diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ru.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ru.xlf index 45357b2001345..32c2313dbac2e 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ru.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ru.xlf @@ -192,6 +192,16 @@ Показать заметки в кратких сведениях + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Sort usings Сортировать директивы using @@ -707,6 +717,11 @@ Предпочитать "var" + + Where should the rename UI be shown? + Where should the rename UI be shown? + + 'this.' preferences: 'предпочтения "this.": diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.tr.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.tr.xlf index 9739714c45443..a7bbba81ac2c9 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.tr.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.tr.xlf @@ -192,6 +192,16 @@ Hızlı Bilgi notlarını göster + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Sort usings Using’leri sırala @@ -707,6 +717,11 @@ 'var' tercih et + + Where should the rename UI be shown? + Where should the rename UI be shown? + + 'this.' preferences: 'This' tercihleri: diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hans.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hans.xlf index 2506d0fd268c2..aa6d2f855c960 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hans.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hans.xlf @@ -192,6 +192,16 @@ 在快速信息中显示备注 + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Sort usings 对 using 排序 @@ -707,6 +717,11 @@ 首选 "var" + + Where should the rename UI be shown? + Where should the rename UI be shown? + + 'this.' preferences: '"this." 首选项: diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hant.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hant.xlf index b74d870657b7e..716f6cf945d14 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hant.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hant.xlf @@ -192,6 +192,16 @@ 在快速諮詢中顯示備註 + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Sort usings 排序 Using @@ -707,6 +717,11 @@ 建議使用 'var' + + Where should the rename UI be shown? + Where should the rename UI be shown? + + 'this.' preferences: 'this.' 喜好設定: diff --git a/src/VisualStudio/Core/Def/PackageRegistration.pkgdef b/src/VisualStudio/Core/Def/PackageRegistration.pkgdef index 2f6fb7dc9256f..bb95c44a768af 100644 --- a/src/VisualStudio/Core/Def/PackageRegistration.pkgdef +++ b/src/VisualStudio/Core/Def/PackageRegistration.pkgdef @@ -31,12 +31,6 @@ "Title"="Run C#/VB code analysis on .Net 6 (requires restart)" "PreviewPaneChannels"="IntPreview,int.main" -[$RootKey$\FeatureFlags\Roslyn\UseInlineAdornmentForRename] -"Description"="Use the new inline rename experience that changes the UI to be closer to the invocation point." -"Value"=dword:00000000 -"Title"="C#/VB enable new inline rename" -"PreviewPaneChannels"="IntPreview,int.main" - // Corresponds to WellKnownExperimentNames.LspPullDiagnosticsFeatureFlag [$RootKey$\FeatureFlags\Lsp\PullDiagnostics] "Description"="Enables the LSP-powered diagnostics for managed .Net projects" From 973252742399f80de91e916c3cad832f109860d3 Mon Sep 17 00:00:00 2001 From: Andrew Hall Date: Wed, 27 Jul 2022 15:26:05 -0700 Subject: [PATCH 2/9] Add VB page as well --- .../CSharp/Impl/CSharpVSResources.resx | 9 --------- .../Impl/Options/AdvancedOptionPageStrings.cs | 6 +++--- .../CSharp/Impl/xlf/CSharpVSResources.cs.xlf | 15 --------------- .../CSharp/Impl/xlf/CSharpVSResources.de.xlf | 15 --------------- .../CSharp/Impl/xlf/CSharpVSResources.es.xlf | 15 --------------- .../CSharp/Impl/xlf/CSharpVSResources.fr.xlf | 15 --------------- .../CSharp/Impl/xlf/CSharpVSResources.it.xlf | 15 --------------- .../CSharp/Impl/xlf/CSharpVSResources.ja.xlf | 15 --------------- .../CSharp/Impl/xlf/CSharpVSResources.ko.xlf | 15 --------------- .../CSharp/Impl/xlf/CSharpVSResources.pl.xlf | 15 --------------- .../CSharp/Impl/xlf/CSharpVSResources.pt-BR.xlf | 15 --------------- .../CSharp/Impl/xlf/CSharpVSResources.ru.xlf | 15 --------------- .../CSharp/Impl/xlf/CSharpVSResources.tr.xlf | 15 --------------- .../Impl/xlf/CSharpVSResources.zh-Hans.xlf | 15 --------------- .../Impl/xlf/CSharpVSResources.zh-Hant.xlf | 15 --------------- .../Core/Def/ServicesVSResources.resx | 9 +++++++++ .../Core/Def/xlf/ServicesVSResources.cs.xlf | 15 +++++++++++++++ .../Core/Def/xlf/ServicesVSResources.de.xlf | 15 +++++++++++++++ .../Core/Def/xlf/ServicesVSResources.es.xlf | 15 +++++++++++++++ .../Core/Def/xlf/ServicesVSResources.fr.xlf | 15 +++++++++++++++ .../Core/Def/xlf/ServicesVSResources.it.xlf | 15 +++++++++++++++ .../Core/Def/xlf/ServicesVSResources.ja.xlf | 15 +++++++++++++++ .../Core/Def/xlf/ServicesVSResources.ko.xlf | 15 +++++++++++++++ .../Core/Def/xlf/ServicesVSResources.pl.xlf | 15 +++++++++++++++ .../Core/Def/xlf/ServicesVSResources.pt-BR.xlf | 15 +++++++++++++++ .../Core/Def/xlf/ServicesVSResources.ru.xlf | 15 +++++++++++++++ .../Core/Def/xlf/ServicesVSResources.tr.xlf | 15 +++++++++++++++ .../Core/Def/xlf/ServicesVSResources.zh-Hans.xlf | 15 +++++++++++++++ .../Core/Def/xlf/ServicesVSResources.zh-Hant.xlf | 15 +++++++++++++++ .../Impl/Options/AdvancedOptionPageControl.xaml | 16 ++++++++++++++++ .../Options/AdvancedOptionPageControl.xaml.vb | 2 ++ .../Impl/Options/AdvancedOptionPageStrings.vb | 9 +++++++++ 32 files changed, 234 insertions(+), 207 deletions(-) diff --git a/src/VisualStudio/CSharp/Impl/CSharpVSResources.resx b/src/VisualStudio/CSharp/Impl/CSharpVSResources.resx index 18151cde6bc17..9191602c7b664 100644 --- a/src/VisualStudio/CSharp/Impl/CSharpVSResources.resx +++ b/src/VisualStudio/CSharp/Impl/CSharpVSResources.resx @@ -658,13 +658,4 @@ Show new snippet experience (experimental) - - Show UI as a dashboard in top right - - - Show UI Inline - - - Where should the rename UI be shown? - \ No newline at end of file diff --git a/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageStrings.cs b/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageStrings.cs index 020da84aaa52a..9dcb5833f4876 100644 --- a/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageStrings.cs +++ b/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageStrings.cs @@ -385,12 +385,12 @@ public static string Option_Rename_asynchronously_experimental => ServicesVSResources.Rename_asynchronously_experimental; public static string Where_should_the_rename_ui_be_shown - => CSharpVSResources.Where_should_the_rename_ui_be_shown; + => ServicesVSResources.Where_should_the_rename_ui_be_shown; public static string Option_Show_ui_inline - => CSharpVSResources.Show_ui_inline; + => ServicesVSResources.Show_ui_inline; public static string Option_Show_ui_as_dashboard_in_top_right - => CSharpVSResources.Show_ui_as_dashboard_in_top_right; + => ServicesVSResources.Show_ui_as_dashboard_in_top_right; } } diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.cs.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.cs.xlf index 7d77b32429e19..8564d5aaff1b2 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.cs.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.cs.xlf @@ -192,16 +192,6 @@ Zobrazit poznámky v Rychlých informacích - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Sort usings Seřadit direktivy using @@ -717,11 +707,6 @@ Preferovat „var“ - - Where should the rename UI be shown? - Where should the rename UI be shown? - - 'this.' preferences: 'Předvolby pro „this.“: diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.de.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.de.xlf index da8f417baa9cf..dc5bffdcb447d 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.de.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.de.xlf @@ -192,16 +192,6 @@ Hinweise in QuickInfo anzeigen - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Sort usings Using-Direktiven sortieren @@ -717,11 +707,6 @@ "var" bevorzugen - - Where should the rename UI be shown? - Where should the rename UI be shown? - - 'this.' preferences: 'this.-Einstellungen: diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.es.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.es.xlf index 11ab21652e93b..1935c60d77383 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.es.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.es.xlf @@ -192,16 +192,6 @@ Mostrar comentarios en Información rápida - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Sort usings Ordenar instrucciones Using @@ -717,11 +707,6 @@ Preferir 'var' - - Where should the rename UI be shown? - Where should the rename UI be shown? - - 'this.' preferences: 'Preferencias de "this.": diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.fr.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.fr.xlf index 99a1a59b1911c..adaeba798e6e0 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.fr.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.fr.xlf @@ -192,16 +192,6 @@ Afficher les notes dans Info express - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Sort usings Trier les instructions using @@ -717,11 +707,6 @@ Préférer 'var' - - Where should the rename UI be shown? - Where should the rename UI be shown? - - 'this.' preferences: 'Préférences 'this.' : diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.it.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.it.xlf index 64e379664f4b9..accb679fea18d 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.it.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.it.xlf @@ -192,16 +192,6 @@ Mostra i commenti in Informazioni rapide - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Sort usings Ordina using @@ -717,11 +707,6 @@ Preferisci 'var' - - Where should the rename UI be shown? - Where should the rename UI be shown? - - 'this.' preferences: 'Preferenze per 'this.': diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ja.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ja.xlf index 04c894f040ac9..a98692ec266c8 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ja.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ja.xlf @@ -192,16 +192,6 @@ クイック ヒントに注釈を表示する - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Sort usings using を並べ替える @@ -717,11 +707,6 @@ var' を優先してください - - Where should the rename UI be shown? - Where should the rename UI be shown? - - 'this.' preferences: 'this' の優先: diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ko.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ko.xlf index 3b2a38dc8c5ee..583811fa05f21 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ko.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ko.xlf @@ -192,16 +192,6 @@ 요약 정보에 설명 표시 - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Sort usings Using 정렬 @@ -717,11 +707,6 @@ var'을 기본으로 사용합니다. - - Where should the rename UI be shown? - Where should the rename UI be shown? - - 'this.' preferences: 'this.' 기본 설정: diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pl.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pl.xlf index 6dc81545802fe..54d954de7e5bb 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pl.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pl.xlf @@ -192,16 +192,6 @@ Pokaż uwagi w szybkich podpowiedziach - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Sort usings Sortuj użycia @@ -717,11 +707,6 @@ Preferuj element „var” - - Where should the rename UI be shown? - Where should the rename UI be shown? - - 'this.' preferences: 'Preferencje dotyczące elementu „this.”: diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pt-BR.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pt-BR.xlf index 36a8ca8793638..897409ec14d72 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pt-BR.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.pt-BR.xlf @@ -192,16 +192,6 @@ Mostrar os comentários nas Informações Rápidas - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Sort usings Classificar usos @@ -717,11 +707,6 @@ Preferir 'var' - - Where should the rename UI be shown? - Where should the rename UI be shown? - - 'this.' preferences: 'Preferências de 'this.': diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ru.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ru.xlf index 32c2313dbac2e..45357b2001345 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ru.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.ru.xlf @@ -192,16 +192,6 @@ Показать заметки в кратких сведениях - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Sort usings Сортировать директивы using @@ -717,11 +707,6 @@ Предпочитать "var" - - Where should the rename UI be shown? - Where should the rename UI be shown? - - 'this.' preferences: 'предпочтения "this.": diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.tr.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.tr.xlf index a7bbba81ac2c9..9739714c45443 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.tr.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.tr.xlf @@ -192,16 +192,6 @@ Hızlı Bilgi notlarını göster - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Sort usings Using’leri sırala @@ -717,11 +707,6 @@ 'var' tercih et - - Where should the rename UI be shown? - Where should the rename UI be shown? - - 'this.' preferences: 'This' tercihleri: diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hans.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hans.xlf index aa6d2f855c960..2506d0fd268c2 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hans.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hans.xlf @@ -192,16 +192,6 @@ 在快速信息中显示备注 - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Sort usings 对 using 排序 @@ -717,11 +707,6 @@ 首选 "var" - - Where should the rename UI be shown? - Where should the rename UI be shown? - - 'this.' preferences: '"this." 首选项: diff --git a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hant.xlf b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hant.xlf index 716f6cf945d14..b74d870657b7e 100644 --- a/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hant.xlf +++ b/src/VisualStudio/CSharp/Impl/xlf/CSharpVSResources.zh-Hant.xlf @@ -192,16 +192,6 @@ 在快速諮詢中顯示備註 - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Sort usings 排序 Using @@ -717,11 +707,6 @@ 建議使用 'var' - - Where should the rename UI be shown? - Where should the rename UI be shown? - - 'this.' preferences: 'this.' 喜好設定: diff --git a/src/VisualStudio/Core/Def/ServicesVSResources.resx b/src/VisualStudio/Core/Def/ServicesVSResources.resx index d79f90af33a7c..9e608b85ecc16 100644 --- a/src/VisualStudio/Core/Def/ServicesVSResources.resx +++ b/src/VisualStudio/Core/Def/ServicesVSResources.resx @@ -2004,4 +2004,13 @@ Additional information: {1} Document Outline + + Show UI as a dashboard in top right + + + Show UI Inline + + + Where should the rename UI be shown? + \ No newline at end of file diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.cs.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.cs.xlf index 74b5f7f4ff38b..905567db8b890 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.cs.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.cs.xlf @@ -1402,6 +1402,16 @@ Zobrazit míru dědičnosti + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Skip analyzers for implicitly triggered builds Přeskočit analyzátory pro implicitně aktivované buildy @@ -1642,6 +1652,11 @@ Tento pracovní prostor nepodporuje aktualizaci možností kompilace jazyka Visual Basic. + + Where should the rename UI be shown? + Where should the rename UI be shown? + + Whitespace Prázdné znaky diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.de.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.de.xlf index d622c694a1bc7..c777624e91a21 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.de.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.de.xlf @@ -1402,6 +1402,16 @@ Vererbungsrand anzeigen + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Skip analyzers for implicitly triggered builds Analysetools für implizit ausgelöste Builds überspringen @@ -1642,6 +1652,11 @@ Das Aktualisieren von Visual Basic-Kompilierungsoptionen wird von diesem Arbeitsbereich nicht unterstützt. + + Where should the rename UI be shown? + Where should the rename UI be shown? + + Whitespace Leerstelle diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.es.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.es.xlf index f56477ce1f8ec..2da0fc87cedc0 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.es.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.es.xlf @@ -1402,6 +1402,16 @@ Mostrar margen de herencia + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Skip analyzers for implicitly triggered builds Omitir analizadores para compilaciones desencadenadas implícitamente @@ -1642,6 +1652,11 @@ Esta área de trabajo no admite la actualización de opciones de compilación de Visual Basic. + + Where should the rename UI be shown? + Where should the rename UI be shown? + + Whitespace Espacio en blanco diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.fr.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.fr.xlf index 5f1a18e06bd11..872543cc18d76 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.fr.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.fr.xlf @@ -1402,6 +1402,16 @@ Afficher la marge d’héritage + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Skip analyzers for implicitly triggered builds Ignorer les analyseurs pour les builds déclenchées implicitement @@ -1642,6 +1652,11 @@ Cet espace de travail ne prend pas en charge la mise à jour des options de compilation Visual Basic. + + Where should the rename UI be shown? + Where should the rename UI be shown? + + Whitespace Espaces blancs diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.it.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.it.xlf index ee4115772c97b..f2bc992c07729 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.it.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.it.xlf @@ -1402,6 +1402,16 @@ Mostra il margine di ereditarietà + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Skip analyzers for implicitly triggered builds Ignora gli analizzatori per compilazioni attivate in modo implicito @@ -1642,6 +1652,11 @@ Quest'area di lavoro non supporta l'aggiornamento delle opzioni di compilazione di Visual Basic. + + Where should the rename UI be shown? + Where should the rename UI be shown? + + Whitespace Spazio vuoto diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ja.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ja.xlf index 84b1a2fb4ea3c..62d5d7c48b966 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ja.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ja.xlf @@ -1402,6 +1402,16 @@ 継承の余白を表示する + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Skip analyzers for implicitly triggered builds 暗黙的にトリガーされたビルドに対してアナライザーをスキップします @@ -1642,6 +1652,11 @@ このワークスペースでは、Visual Basic コンパイル オプションの更新がサポートされていません。 + + Where should the rename UI be shown? + Where should the rename UI be shown? + + Whitespace 空白 diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ko.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ko.xlf index 94eb6c62869fa..6c67313e54ca6 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ko.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ko.xlf @@ -1402,6 +1402,16 @@ 상속 여백 표시 + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Skip analyzers for implicitly triggered builds 암시적으로 트리거된 빌드에 대한 분석기 건너뛰기 @@ -1642,6 +1652,11 @@ 이 작업 영역은 Visual Basic 컴파일 옵션 업데이트를 지원하지 않습니다. + + Where should the rename UI be shown? + Where should the rename UI be shown? + + Whitespace 공백 diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pl.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pl.xlf index fa6ad7abb6c14..53f01563b9cfd 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pl.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pl.xlf @@ -1402,6 +1402,16 @@ Pokaż margines dziedziczenia + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Skip analyzers for implicitly triggered builds Pomiń analizatory dla niejawnie wyzwalanych kompilacji @@ -1642,6 +1652,11 @@ Ten obszar roboczy nie obsługuje aktualizowania opcji kompilacji dla języka Visual Basic. + + Where should the rename UI be shown? + Where should the rename UI be shown? + + Whitespace Odstępy diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pt-BR.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pt-BR.xlf index 0adf27bc8b703..335af48b96974 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pt-BR.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pt-BR.xlf @@ -1402,6 +1402,16 @@ Mostrar margem de herança + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Skip analyzers for implicitly triggered builds Ignorar analisadores para compilações acionadas implicitamente @@ -1642,6 +1652,11 @@ Este workspace não é compatível com a atualização das opções de compilação do Visual Basic. + + Where should the rename UI be shown? + Where should the rename UI be shown? + + Whitespace Espaço em branco diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ru.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ru.xlf index 83fb22bb8e46a..1453ef0712e4c 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ru.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ru.xlf @@ -1402,6 +1402,16 @@ Показать границу наследования + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Skip analyzers for implicitly triggered builds Пропускать анализаторы для неявно запускаемых сборок @@ -1642,6 +1652,11 @@ Эта рабочая область не поддерживает обновление параметров компиляции Visual Basic. + + Where should the rename UI be shown? + Where should the rename UI be shown? + + Whitespace Пустое пространство diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.tr.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.tr.xlf index 1a559c0fad4a2..97c0e86f9326a 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.tr.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.tr.xlf @@ -1402,6 +1402,16 @@ Devralma boşluğunu göster + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Skip analyzers for implicitly triggered builds Dolaylı olarak tetiklenen derlemeler için çözümleyicileri atla @@ -1642,6 +1652,11 @@ Bu çalışma alanı Visual Basic derleme seçeneklerinin güncelleştirilmesini desteklemiyor. + + Where should the rename UI be shown? + Where should the rename UI be shown? + + Whitespace Boşluk diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hans.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hans.xlf index f2781b645cb0d..baa9085f5165b 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hans.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hans.xlf @@ -1402,6 +1402,16 @@ 显示继承边距 + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Skip analyzers for implicitly triggered builds 跳过隐式触发生成的分析器 @@ -1642,6 +1652,11 @@ 此工作区不支持更新 Visual Basic 编译选项。 + + Where should the rename UI be shown? + Where should the rename UI be shown? + + Whitespace 空格 diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hant.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hant.xlf index 5351f0e5dc350..293721cb9828d 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hant.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hant.xlf @@ -1402,6 +1402,16 @@ 顯示繼承邊界 + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + + + + Show UI Inline + Show UI Inline + + Skip analyzers for implicitly triggered builds 跳過隱含已觸發組建的分析器 @@ -1642,6 +1652,11 @@ 此工作區不支援更新 Visual Basic 編譯選項。 + + Where should the rename UI be shown? + Where should the rename UI be shown? + + Whitespace 空白 diff --git a/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml b/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml index 2645c3e4402b7..d1c582992fd4f 100644 --- a/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml +++ b/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml @@ -7,9 +7,15 @@ xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:options="clr-namespace:Microsoft.VisualStudio.LanguageServices.Implementation.Options;assembly=Microsoft.VisualStudio.LanguageServices.Implementation" xmlns:local="clr-namespace:Microsoft.VisualStudio.LanguageServices.VisualBasic.Options" + xmlns:system="clr-namespace:System;assembly=mscorlib" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300"> + + True + False + + + + diff --git a/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml.vb b/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml.vb index 0376be17567ed..fef8358d64373 100644 --- a/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml.vb +++ b/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml.vb @@ -16,6 +16,7 @@ Imports Microsoft.CodeAnalysis.Editor.Implementation.SplitComment Imports Microsoft.CodeAnalysis.Editor.Implementation.Suggestions Imports Microsoft.CodeAnalysis.Editor.InlineDiagnostics Imports Microsoft.CodeAnalysis.Editor.InlineHints +Imports Microsoft.CodeAnalysis.Editor.InlineRename Imports Microsoft.CodeAnalysis.Editor.Shared.Options Imports Microsoft.CodeAnalysis.Editor.[Shared].Utilities Imports Microsoft.CodeAnalysis.ExtractMethod @@ -67,6 +68,7 @@ Namespace Microsoft.VisualStudio.LanguageServices.VisualBasic.Options ' Rename BindToOption(Rename_asynchronously_exerimental, InlineRenameSessionOptionsStorage.RenameAsynchronously) + BindToOption(Rename_UI_setting, InlineRenameUIOptions.UseInlineAdornment, label:=Rename_UI_setting_label) ' Import directives BindToOption(PlaceSystemNamespaceFirst, GenerationOptions.PlaceSystemNamespaceFirst, LanguageNames.VisualBasic) diff --git a/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageStrings.vb b/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageStrings.vb index a7dbaf6450d35..6207c273ae34b 100644 --- a/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageStrings.vb +++ b/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageStrings.vb @@ -368,5 +368,14 @@ Namespace Microsoft.VisualStudio.LanguageServices.VisualBasic.Options Public ReadOnly Property Option_Rename_asynchronously_experimental As String = ServicesVSResources.Rename_asynchronously_experimental + + Public ReadOnly Property Where_should_the_rename_ui_be_shown As String = + ServicesVSResources.Where_should_the_rename_ui_be_shown + + Public ReadOnly Property Option_Show_ui_inline As String = + ServicesVSResources.Show_ui_inline + + Public ReadOnly Property Option_Show_ui_as_dashboard_in_top_right As String = + ServicesVSResources.Show_ui_as_dashboard_in_top_right End Module End Namespace From df5a133a673f9c1f53f3953a91b394a0e85eeb38 Mon Sep 17 00:00:00 2001 From: Andrew Hall Date: Wed, 27 Jul 2022 15:58:45 -0700 Subject: [PATCH 3/9] Update to UI instead of ui --- .../Options/AdvancedOptionPageControl.xaml | 4 ++-- .../Impl/Options/AdvancedOptionPageStrings.cs | 8 +++---- .../Core/Def/ServicesVSResources.resx | 7 ++++-- .../Core/Def/xlf/ServicesVSResources.cs.xlf | 22 +++++++++---------- .../Core/Def/xlf/ServicesVSResources.de.xlf | 22 +++++++++---------- .../Core/Def/xlf/ServicesVSResources.es.xlf | 22 +++++++++---------- .../Core/Def/xlf/ServicesVSResources.fr.xlf | 22 +++++++++---------- .../Core/Def/xlf/ServicesVSResources.it.xlf | 22 +++++++++---------- .../Core/Def/xlf/ServicesVSResources.ja.xlf | 22 +++++++++---------- .../Core/Def/xlf/ServicesVSResources.ko.xlf | 22 +++++++++---------- .../Core/Def/xlf/ServicesVSResources.pl.xlf | 22 +++++++++---------- .../Def/xlf/ServicesVSResources.pt-BR.xlf | 22 +++++++++---------- .../Core/Def/xlf/ServicesVSResources.ru.xlf | 22 +++++++++---------- .../Core/Def/xlf/ServicesVSResources.tr.xlf | 22 +++++++++---------- .../Def/xlf/ServicesVSResources.zh-Hans.xlf | 22 +++++++++---------- .../Def/xlf/ServicesVSResources.zh-Hant.xlf | 22 +++++++++---------- .../Options/AdvancedOptionPageControl.xaml | 4 ++-- .../Impl/Options/AdvancedOptionPageStrings.vb | 8 +++---- 18 files changed, 160 insertions(+), 157 deletions(-) diff --git a/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageControl.xaml b/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageControl.xaml index 783c4b0701991..59e0e2f819462 100644 --- a/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageControl.xaml +++ b/src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageControl.xaml @@ -93,10 +93,10 @@ + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + "UI" is an acronym for "User Interface" + + + Show UI Inline + Show UI Inline + "UI" is an acronym for "User Interface" + Show compiler errors and warnings for: Zobrazit chyby a upozornění kompilátoru pro: @@ -1402,16 +1412,6 @@ Zobrazit míru dědičnosti - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Skip analyzers for implicitly triggered builds Přeskočit analyzátory pro implicitně aktivované buildy @@ -1655,7 +1655,7 @@ Where should the rename UI be shown? Where should the rename UI be shown? - + "UI" is an acronym for "User Interface" Whitespace diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.de.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.de.xlf index c777624e91a21..706eeb77a2806 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.de.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.de.xlf @@ -1357,6 +1357,16 @@ Befehl "Nicht verwendete Verweise entfernen" in Projektmappen-Explorer anzeigen (experimentell) + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + "UI" is an acronym for "User Interface" + + + Show UI Inline + Show UI Inline + "UI" is an acronym for "User Interface" + Show compiler errors and warnings for: Compilerfehler und -warnungen anzeigen für: @@ -1402,16 +1412,6 @@ Vererbungsrand anzeigen - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Skip analyzers for implicitly triggered builds Analysetools für implizit ausgelöste Builds überspringen @@ -1655,7 +1655,7 @@ Where should the rename UI be shown? Where should the rename UI be shown? - + "UI" is an acronym for "User Interface" Whitespace diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.es.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.es.xlf index 2da0fc87cedc0..da7579ef9b9ae 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.es.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.es.xlf @@ -1357,6 +1357,16 @@ Mostrar el comando "Quitar referencias sin usar" en el Explorador de soluciones (experimental) + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + "UI" is an acronym for "User Interface" + + + Show UI Inline + Show UI Inline + "UI" is an acronym for "User Interface" + Show compiler errors and warnings for: Mostrar errores y advertencias del compilador para: @@ -1402,16 +1412,6 @@ Mostrar margen de herencia - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Skip analyzers for implicitly triggered builds Omitir analizadores para compilaciones desencadenadas implícitamente @@ -1655,7 +1655,7 @@ Where should the rename UI be shown? Where should the rename UI be shown? - + "UI" is an acronym for "User Interface" Whitespace diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.fr.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.fr.xlf index 872543cc18d76..f7ceca7fb3a73 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.fr.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.fr.xlf @@ -1357,6 +1357,16 @@ Afficher la commande Supprimer les références inutilisées dans l'Explorateur de solutions (expérimental) + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + "UI" is an acronym for "User Interface" + + + Show UI Inline + Show UI Inline + "UI" is an acronym for "User Interface" + Show compiler errors and warnings for: Afficher les erreurs et avertissements du compilateur pour : @@ -1402,16 +1412,6 @@ Afficher la marge d’héritage - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Skip analyzers for implicitly triggered builds Ignorer les analyseurs pour les builds déclenchées implicitement @@ -1655,7 +1655,7 @@ Where should the rename UI be shown? Where should the rename UI be shown? - + "UI" is an acronym for "User Interface" Whitespace diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.it.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.it.xlf index f2bc992c07729..7225199a4e755 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.it.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.it.xlf @@ -1357,6 +1357,16 @@ Mostra il comando "Rimuovi riferimenti inutilizzati" in Esplora soluzioni (sperimentale) + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + "UI" is an acronym for "User Interface" + + + Show UI Inline + Show UI Inline + "UI" is an acronym for "User Interface" + Show compiler errors and warnings for: Mostra errori e avvisi del compilatore per: @@ -1402,16 +1412,6 @@ Mostra il margine di ereditarietà - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Skip analyzers for implicitly triggered builds Ignora gli analizzatori per compilazioni attivate in modo implicito @@ -1655,7 +1655,7 @@ Where should the rename UI be shown? Where should the rename UI be shown? - + "UI" is an acronym for "User Interface" Whitespace diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ja.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ja.xlf index 62d5d7c48b966..036a0ed109b5a 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ja.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ja.xlf @@ -1357,6 +1357,16 @@ ソリューション エクスプローラーで [未使用の参照を削除する] コマンドを表示する (試験段階) + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + "UI" is an acronym for "User Interface" + + + Show UI Inline + Show UI Inline + "UI" is an acronym for "User Interface" + Show compiler errors and warnings for: 次のコンパイラ エラーと警告を表示する: @@ -1402,16 +1412,6 @@ 継承の余白を表示する - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Skip analyzers for implicitly triggered builds 暗黙的にトリガーされたビルドに対してアナライザーをスキップします @@ -1655,7 +1655,7 @@ Where should the rename UI be shown? Where should the rename UI be shown? - + "UI" is an acronym for "User Interface" Whitespace diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ko.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ko.xlf index 6c67313e54ca6..00db29efe720c 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ko.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ko.xlf @@ -1357,6 +1357,16 @@ 솔루션 탐색기에서 "사용하지 않는 참조 제거" 명령 표시(실험적) + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + "UI" is an acronym for "User Interface" + + + Show UI Inline + Show UI Inline + "UI" is an acronym for "User Interface" + Show compiler errors and warnings for: 다음에 대한 컴파일러 오류 및 경고 표시: @@ -1402,16 +1412,6 @@ 상속 여백 표시 - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Skip analyzers for implicitly triggered builds 암시적으로 트리거된 빌드에 대한 분석기 건너뛰기 @@ -1655,7 +1655,7 @@ Where should the rename UI be shown? Where should the rename UI be shown? - + "UI" is an acronym for "User Interface" Whitespace diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pl.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pl.xlf index 53f01563b9cfd..5f95f97e21fb4 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pl.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pl.xlf @@ -1357,6 +1357,16 @@ Pokaż polecenie „Usuń nieużywane odwołania” w Eksploratorze rozwiązań (eksperymentalne) + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + "UI" is an acronym for "User Interface" + + + Show UI Inline + Show UI Inline + "UI" is an acronym for "User Interface" + Show compiler errors and warnings for: Pokaż błędy i ostrzeżenia kompilatora dla: @@ -1402,16 +1412,6 @@ Pokaż margines dziedziczenia - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Skip analyzers for implicitly triggered builds Pomiń analizatory dla niejawnie wyzwalanych kompilacji @@ -1655,7 +1655,7 @@ Where should the rename UI be shown? Where should the rename UI be shown? - + "UI" is an acronym for "User Interface" Whitespace diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pt-BR.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pt-BR.xlf index 335af48b96974..865b5a568a225 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pt-BR.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pt-BR.xlf @@ -1357,6 +1357,16 @@ Mostrar o comando "Remover as Referências Não Usadas" no Gerenciador de Soluções (experimental) + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + "UI" is an acronym for "User Interface" + + + Show UI Inline + Show UI Inline + "UI" is an acronym for "User Interface" + Show compiler errors and warnings for: Mostrar erros e alertas do compilador para: @@ -1402,16 +1412,6 @@ Mostrar margem de herança - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Skip analyzers for implicitly triggered builds Ignorar analisadores para compilações acionadas implicitamente @@ -1655,7 +1655,7 @@ Where should the rename UI be shown? Where should the rename UI be shown? - + "UI" is an acronym for "User Interface" Whitespace diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ru.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ru.xlf index 1453ef0712e4c..a05278aeee4ae 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ru.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ru.xlf @@ -1357,6 +1357,16 @@ Показать команду "Удалить неиспользуемые ссылки" в Обозревателе решений (экспериментальная версия) + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + "UI" is an acronym for "User Interface" + + + Show UI Inline + Show UI Inline + "UI" is an acronym for "User Interface" + Show compiler errors and warnings for: Показывать ошибки и предупреждения компилятора для: @@ -1402,16 +1412,6 @@ Показать границу наследования - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Skip analyzers for implicitly triggered builds Пропускать анализаторы для неявно запускаемых сборок @@ -1655,7 +1655,7 @@ Where should the rename UI be shown? Where should the rename UI be shown? - + "UI" is an acronym for "User Interface" Whitespace diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.tr.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.tr.xlf index 97c0e86f9326a..970f06d0eec50 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.tr.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.tr.xlf @@ -1357,6 +1357,16 @@ Çözüm Gezgini'nde "Kullanılmayan Başvuruları Kaldır" komutunu göster (deneysel) + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + "UI" is an acronym for "User Interface" + + + Show UI Inline + Show UI Inline + "UI" is an acronym for "User Interface" + Show compiler errors and warnings for: Şunun için derleyici hatalarını ve uyarılarını göster: @@ -1402,16 +1412,6 @@ Devralma boşluğunu göster - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Skip analyzers for implicitly triggered builds Dolaylı olarak tetiklenen derlemeler için çözümleyicileri atla @@ -1655,7 +1655,7 @@ Where should the rename UI be shown? Where should the rename UI be shown? - + "UI" is an acronym for "User Interface" Whitespace diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hans.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hans.xlf index baa9085f5165b..b084635695b85 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hans.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hans.xlf @@ -1357,6 +1357,16 @@ 在解决方案资源管理器中显示“删除未使用的引用”命令(实验性) + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + "UI" is an acronym for "User Interface" + + + Show UI Inline + Show UI Inline + "UI" is an acronym for "User Interface" + Show compiler errors and warnings for: 显示以下的编译器错误和警告: @@ -1402,16 +1412,6 @@ 显示继承边距 - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Skip analyzers for implicitly triggered builds 跳过隐式触发生成的分析器 @@ -1655,7 +1655,7 @@ Where should the rename UI be shown? Where should the rename UI be shown? - + "UI" is an acronym for "User Interface" Whitespace diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hant.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hant.xlf index 293721cb9828d..2ccf215177be1 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hant.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hant.xlf @@ -1357,6 +1357,16 @@ 在方案總管 (實驗性) 中顯示「移除未使用的參考」命令 + + Show UI as a dashboard in top right + Show UI as a dashboard in top right + "UI" is an acronym for "User Interface" + + + Show UI Inline + Show UI Inline + "UI" is an acronym for "User Interface" + Show compiler errors and warnings for: 顯示編譯器錯誤和警告: @@ -1402,16 +1412,6 @@ 顯示繼承邊界 - - Show UI as a dashboard in top right - Show UI as a dashboard in top right - - - - Show UI Inline - Show UI Inline - - Skip analyzers for implicitly triggered builds 跳過隱含已觸發組建的分析器 @@ -1655,7 +1655,7 @@ Where should the rename UI be shown? Where should the rename UI be shown? - + "UI" is an acronym for "User Interface" Whitespace diff --git a/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml b/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml index d1c582992fd4f..25ac96a8e2fe9 100644 --- a/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml +++ b/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml @@ -79,10 +79,10 @@ - + Where should the rename UI be shown? Where should the rename UI be shown? "UI" is an acronym for "User Interface" diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.de.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.de.xlf index 706eeb77a2806..7bcccf9693790 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.de.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.de.xlf @@ -1652,7 +1652,7 @@ Das Aktualisieren von Visual Basic-Kompilierungsoptionen wird von diesem Arbeitsbereich nicht unterstützt. - + Where should the rename UI be shown? Where should the rename UI be shown? "UI" is an acronym for "User Interface" diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.es.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.es.xlf index da7579ef9b9ae..de176991bf9c7 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.es.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.es.xlf @@ -1652,7 +1652,7 @@ Esta área de trabajo no admite la actualización de opciones de compilación de Visual Basic. - + Where should the rename UI be shown? Where should the rename UI be shown? "UI" is an acronym for "User Interface" diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.fr.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.fr.xlf index f7ceca7fb3a73..70f6c60fc3bef 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.fr.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.fr.xlf @@ -1652,7 +1652,7 @@ Cet espace de travail ne prend pas en charge la mise à jour des options de compilation Visual Basic. - + Where should the rename UI be shown? Where should the rename UI be shown? "UI" is an acronym for "User Interface" diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.it.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.it.xlf index 7225199a4e755..b4f6e66d266eb 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.it.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.it.xlf @@ -1652,7 +1652,7 @@ Quest'area di lavoro non supporta l'aggiornamento delle opzioni di compilazione di Visual Basic. - + Where should the rename UI be shown? Where should the rename UI be shown? "UI" is an acronym for "User Interface" diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ja.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ja.xlf index 036a0ed109b5a..27f6440dd21ca 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ja.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ja.xlf @@ -1652,7 +1652,7 @@ このワークスペースでは、Visual Basic コンパイル オプションの更新がサポートされていません。 - + Where should the rename UI be shown? Where should the rename UI be shown? "UI" is an acronym for "User Interface" diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ko.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ko.xlf index 00db29efe720c..ec10644511e8e 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ko.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ko.xlf @@ -1652,7 +1652,7 @@ 이 작업 영역은 Visual Basic 컴파일 옵션 업데이트를 지원하지 않습니다. - + Where should the rename UI be shown? Where should the rename UI be shown? "UI" is an acronym for "User Interface" diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pl.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pl.xlf index 5f95f97e21fb4..e4a14f1a3b42f 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pl.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pl.xlf @@ -1652,7 +1652,7 @@ Ten obszar roboczy nie obsługuje aktualizowania opcji kompilacji dla języka Visual Basic. - + Where should the rename UI be shown? Where should the rename UI be shown? "UI" is an acronym for "User Interface" diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pt-BR.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pt-BR.xlf index 865b5a568a225..643b01937b49c 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pt-BR.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.pt-BR.xlf @@ -1652,7 +1652,7 @@ Este workspace não é compatível com a atualização das opções de compilação do Visual Basic. - + Where should the rename UI be shown? Where should the rename UI be shown? "UI" is an acronym for "User Interface" diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ru.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ru.xlf index a05278aeee4ae..3b27773dc4a68 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ru.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.ru.xlf @@ -1652,7 +1652,7 @@ Эта рабочая область не поддерживает обновление параметров компиляции Visual Basic. - + Where should the rename UI be shown? Where should the rename UI be shown? "UI" is an acronym for "User Interface" diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.tr.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.tr.xlf index 970f06d0eec50..ab3365c584a6d 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.tr.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.tr.xlf @@ -1652,7 +1652,7 @@ Bu çalışma alanı Visual Basic derleme seçeneklerinin güncelleştirilmesini desteklemiyor. - + Where should the rename UI be shown? Where should the rename UI be shown? "UI" is an acronym for "User Interface" diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hans.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hans.xlf index b084635695b85..23e0493875b3c 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hans.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hans.xlf @@ -1652,7 +1652,7 @@ 此工作区不支持更新 Visual Basic 编译选项。 - + Where should the rename UI be shown? Where should the rename UI be shown? "UI" is an acronym for "User Interface" diff --git a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hant.xlf b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hant.xlf index 2ccf215177be1..46df63e27b757 100644 --- a/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hant.xlf +++ b/src/VisualStudio/Core/Def/xlf/ServicesVSResources.zh-Hant.xlf @@ -1652,7 +1652,7 @@ 此工作區不支援更新 Visual Basic 編譯選項。 - + Where should the rename UI be shown? Where should the rename UI be shown? "UI" is an acronym for "User Interface" diff --git a/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml b/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml index 25ac96a8e2fe9..bf05381cd58d4 100644 --- a/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml +++ b/src/VisualStudio/VisualBasic/Impl/Options/AdvancedOptionPageControl.xaml @@ -76,7 +76,7 @@ -