Update messaging.

上级 c487f596
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
using System; using System;
using System.ComponentModel.Composition; using System.ComponentModel.Composition;
using System.Diagnostics;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using Microsoft.CodeAnalysis.Editor.Shared.Utilities; using Microsoft.CodeAnalysis.Editor.Shared.Utilities;
using Microsoft.CodeAnalysis.ErrorReporting; using Microsoft.CodeAnalysis.ErrorReporting;
...@@ -18,7 +17,6 @@ ...@@ -18,7 +17,6 @@
using Microsoft.VisualStudio.Shell.Interop; using Microsoft.VisualStudio.Shell.Interop;
using Roslyn.Utilities; using Roslyn.Utilities;
using Task = System.Threading.Tasks.Task; using Task = System.Threading.Tasks.Task;
using IOleServiceProvider = Microsoft.VisualStudio.OLE.Interop.IServiceProvider;
namespace Microsoft.VisualStudio.LanguageServices.Implementation.Experimentation namespace Microsoft.VisualStudio.LanguageServices.Implementation.Experimentation
{ {
...@@ -48,7 +46,7 @@ internal sealed class KeybindingResetDetector : ForegroundThreadAffinitizedObjec ...@@ -48,7 +46,7 @@ internal sealed class KeybindingResetDetector : ForegroundThreadAffinitizedObjec
private static readonly Guid ReSharperCommandGroup = new Guid("{47F03277-5055-4922-899C-0F7F30D26BF1}"); private static readonly Guid ReSharperCommandGroup = new Guid("{47F03277-5055-4922-899C-0F7F30D26BF1}");
private readonly VisualStudioWorkspace _workspace; private readonly VisualStudioWorkspace _workspace;
private readonly SVsServiceProvider _serviceProvider; private readonly System.IServiceProvider _serviceProvider;
// All mutable fields are UI-thread affinitized // All mutable fields are UI-thread affinitized
...@@ -190,7 +188,7 @@ private void ShowGoldBar() ...@@ -190,7 +188,7 @@ private void ShowGoldBar()
} }
else if (_experimentationService.IsExperimentEnabled(ExternalFlightName)) else if (_experimentationService.IsExperimentEnabled(ExternalFlightName))
{ {
message = ServicesVSResources.We_noticed_your_keybindings_are_broken; message = ServicesVSResources.Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands;
} }
else else
{ {
...@@ -227,8 +225,7 @@ private ReSharperStatus IsReSharperEnabled() ...@@ -227,8 +225,7 @@ private ReSharperStatus IsReSharperEnabled()
if (_oleCommandTarget == null) if (_oleCommandTarget == null)
{ {
var oleServiceProvider = _serviceProvider.GetService<IOleServiceProvider>(); _oleCommandTarget = _serviceProvider.GetService<IOleCommandTarget, SUIHostCommandDispatcher>();
_oleCommandTarget = (IOleCommandTarget)oleServiceProvider.QueryService(VSConstants.SID_SUIHostCommandDispatcher);
} }
var cmds = new OLECMD[1]; var cmds = new OLECMD[1];
......
...@@ -2597,15 +2597,6 @@ internal class ServicesVSResources { ...@@ -2597,15 +2597,6 @@ internal class ServicesVSResources {
} }
} }
/// <summary>
/// Looks up a localized string similar to We noticed your keybindings are broken..
/// </summary>
internal static string We_noticed_your_keybindings_are_broken {
get {
return ResourceManager.GetString("We_noticed_your_keybindings_are_broken", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to When generating properties:. /// Looks up a localized string similar to When generating properties:.
/// </summary> /// </summary>
...@@ -2659,5 +2650,14 @@ internal class ServicesVSResources { ...@@ -2659,5 +2650,14 @@ internal class ServicesVSResources {
return ResourceManager.GetString("You_must_select_at_least_one_member", resourceCulture); return ResourceManager.GetString("You_must_select_at_least_one_member", resourceCulture);
} }
} }
/// <summary>
/// Looks up a localized string similar to Your keybindings are no longer mapped to Visual Studio commands..
/// </summary>
internal static string Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands {
get {
return ResourceManager.GetString("Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands", resourceCulture);
}
}
} }
} }
...@@ -992,8 +992,8 @@ Additional information: {1}</value> ...@@ -992,8 +992,8 @@ Additional information: {1}</value>
<data name="Use_Keybindings_for_extensions" xml:space="preserve"> <data name="Use_Keybindings_for_extensions" xml:space="preserve">
<value>Use keybindings for ReSharper/IntelliJ/Vim/etc.</value> <value>Use keybindings for ReSharper/IntelliJ/Vim/etc.</value>
</data> </data>
<data name="We_noticed_your_keybindings_are_broken" xml:space="preserve"> <data name="Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands" xml:space="preserve">
<value>We noticed your keybindings are broken.</value> <value>Your keybindings are no longer mapped to Visual Studio commands.</value>
</data> </data>
<data name="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor" xml:space="preserve"> <data name="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor" xml:space="preserve">
<value>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</value> <value>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</value>
......
...@@ -1452,11 +1452,6 @@ Additional information: {1}</target> ...@@ -1452,11 +1452,6 @@ Additional information: {1}</target>
<target state="new">Restore Visual Studio keybindings</target> <target state="new">Restore Visual Studio keybindings</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="We_noticed_your_keybindings_are_broken">
<source>We noticed your keybindings are broken.</source>
<target state="new">We noticed your keybindings are broken.</target>
<note />
</trans-unit>
<trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor"> <trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor">
<source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source> <source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source>
<target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target> <target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target>
...@@ -1467,6 +1462,11 @@ Additional information: {1}</target> ...@@ -1467,6 +1462,11 @@ Additional information: {1}</target>
<target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target> <target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands">
<source>Your keybindings are no longer mapped to Visual Studio commands.</source>
<target state="new">Your keybindings are no longer mapped to Visual Studio commands.</target>
<note />
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>
\ No newline at end of file
...@@ -1452,11 +1452,6 @@ Additional information: {1}</target> ...@@ -1452,11 +1452,6 @@ Additional information: {1}</target>
<target state="new">Restore Visual Studio keybindings</target> <target state="new">Restore Visual Studio keybindings</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="We_noticed_your_keybindings_are_broken">
<source>We noticed your keybindings are broken.</source>
<target state="new">We noticed your keybindings are broken.</target>
<note />
</trans-unit>
<trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor"> <trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor">
<source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source> <source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source>
<target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target> <target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target>
...@@ -1467,6 +1462,11 @@ Additional information: {1}</target> ...@@ -1467,6 +1462,11 @@ Additional information: {1}</target>
<target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target> <target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands">
<source>Your keybindings are no longer mapped to Visual Studio commands.</source>
<target state="new">Your keybindings are no longer mapped to Visual Studio commands.</target>
<note />
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>
\ No newline at end of file
...@@ -1452,11 +1452,6 @@ Additional information: {1}</target> ...@@ -1452,11 +1452,6 @@ Additional information: {1}</target>
<target state="new">Restore Visual Studio keybindings</target> <target state="new">Restore Visual Studio keybindings</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="We_noticed_your_keybindings_are_broken">
<source>We noticed your keybindings are broken.</source>
<target state="new">We noticed your keybindings are broken.</target>
<note />
</trans-unit>
<trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor"> <trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor">
<source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source> <source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source>
<target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target> <target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target>
...@@ -1467,6 +1462,11 @@ Additional information: {1}</target> ...@@ -1467,6 +1462,11 @@ Additional information: {1}</target>
<target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target> <target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands">
<source>Your keybindings are no longer mapped to Visual Studio commands.</source>
<target state="new">Your keybindings are no longer mapped to Visual Studio commands.</target>
<note />
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>
\ No newline at end of file
...@@ -1452,11 +1452,6 @@ Additional information: {1}</target> ...@@ -1452,11 +1452,6 @@ Additional information: {1}</target>
<target state="new">Restore Visual Studio keybindings</target> <target state="new">Restore Visual Studio keybindings</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="We_noticed_your_keybindings_are_broken">
<source>We noticed your keybindings are broken.</source>
<target state="new">We noticed your keybindings are broken.</target>
<note />
</trans-unit>
<trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor"> <trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor">
<source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source> <source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source>
<target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target> <target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target>
...@@ -1467,6 +1462,11 @@ Additional information: {1}</target> ...@@ -1467,6 +1462,11 @@ Additional information: {1}</target>
<target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target> <target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands">
<source>Your keybindings are no longer mapped to Visual Studio commands.</source>
<target state="new">Your keybindings are no longer mapped to Visual Studio commands.</target>
<note />
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>
\ No newline at end of file
...@@ -1452,11 +1452,6 @@ Additional information: {1}</target> ...@@ -1452,11 +1452,6 @@ Additional information: {1}</target>
<target state="new">Restore Visual Studio keybindings</target> <target state="new">Restore Visual Studio keybindings</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="We_noticed_your_keybindings_are_broken">
<source>We noticed your keybindings are broken.</source>
<target state="new">We noticed your keybindings are broken.</target>
<note />
</trans-unit>
<trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor"> <trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor">
<source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source> <source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source>
<target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target> <target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target>
...@@ -1467,6 +1462,11 @@ Additional information: {1}</target> ...@@ -1467,6 +1462,11 @@ Additional information: {1}</target>
<target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target> <target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands">
<source>Your keybindings are no longer mapped to Visual Studio commands.</source>
<target state="new">Your keybindings are no longer mapped to Visual Studio commands.</target>
<note />
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>
\ No newline at end of file
...@@ -1452,11 +1452,6 @@ Additional information: {1}</target> ...@@ -1452,11 +1452,6 @@ Additional information: {1}</target>
<target state="new">Restore Visual Studio keybindings</target> <target state="new">Restore Visual Studio keybindings</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="We_noticed_your_keybindings_are_broken">
<source>We noticed your keybindings are broken.</source>
<target state="new">We noticed your keybindings are broken.</target>
<note />
</trans-unit>
<trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor"> <trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor">
<source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source> <source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source>
<target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target> <target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target>
...@@ -1467,6 +1462,11 @@ Additional information: {1}</target> ...@@ -1467,6 +1462,11 @@ Additional information: {1}</target>
<target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target> <target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands">
<source>Your keybindings are no longer mapped to Visual Studio commands.</source>
<target state="new">Your keybindings are no longer mapped to Visual Studio commands.</target>
<note />
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>
\ No newline at end of file
...@@ -1452,11 +1452,6 @@ Additional information: {1}</target> ...@@ -1452,11 +1452,6 @@ Additional information: {1}</target>
<target state="new">Restore Visual Studio keybindings</target> <target state="new">Restore Visual Studio keybindings</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="We_noticed_your_keybindings_are_broken">
<source>We noticed your keybindings are broken.</source>
<target state="new">We noticed your keybindings are broken.</target>
<note />
</trans-unit>
<trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor"> <trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor">
<source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source> <source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source>
<target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target> <target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target>
...@@ -1467,6 +1462,11 @@ Additional information: {1}</target> ...@@ -1467,6 +1462,11 @@ Additional information: {1}</target>
<target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target> <target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands">
<source>Your keybindings are no longer mapped to Visual Studio commands.</source>
<target state="new">Your keybindings are no longer mapped to Visual Studio commands.</target>
<note />
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>
\ No newline at end of file
...@@ -1452,11 +1452,6 @@ Additional information: {1}</target> ...@@ -1452,11 +1452,6 @@ Additional information: {1}</target>
<target state="new">Restore Visual Studio keybindings</target> <target state="new">Restore Visual Studio keybindings</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="We_noticed_your_keybindings_are_broken">
<source>We noticed your keybindings are broken.</source>
<target state="new">We noticed your keybindings are broken.</target>
<note />
</trans-unit>
<trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor"> <trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor">
<source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source> <source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source>
<target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target> <target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target>
...@@ -1467,6 +1462,11 @@ Additional information: {1}</target> ...@@ -1467,6 +1462,11 @@ Additional information: {1}</target>
<target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target> <target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands">
<source>Your keybindings are no longer mapped to Visual Studio commands.</source>
<target state="new">Your keybindings are no longer mapped to Visual Studio commands.</target>
<note />
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>
\ No newline at end of file
...@@ -1452,11 +1452,6 @@ Additional information: {1}</target> ...@@ -1452,11 +1452,6 @@ Additional information: {1}</target>
<target state="new">Restore Visual Studio keybindings</target> <target state="new">Restore Visual Studio keybindings</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="We_noticed_your_keybindings_are_broken">
<source>We noticed your keybindings are broken.</source>
<target state="new">We noticed your keybindings are broken.</target>
<note />
</trans-unit>
<trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor"> <trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor">
<source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source> <source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source>
<target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target> <target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target>
...@@ -1467,6 +1462,11 @@ Additional information: {1}</target> ...@@ -1467,6 +1462,11 @@ Additional information: {1}</target>
<target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target> <target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands">
<source>Your keybindings are no longer mapped to Visual Studio commands.</source>
<target state="new">Your keybindings are no longer mapped to Visual Studio commands.</target>
<note />
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>
\ No newline at end of file
...@@ -1452,11 +1452,6 @@ Additional information: {1}</target> ...@@ -1452,11 +1452,6 @@ Additional information: {1}</target>
<target state="new">Restore Visual Studio keybindings</target> <target state="new">Restore Visual Studio keybindings</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="We_noticed_your_keybindings_are_broken">
<source>We noticed your keybindings are broken.</source>
<target state="new">We noticed your keybindings are broken.</target>
<note />
</trans-unit>
<trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor"> <trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor">
<source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source> <source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source>
<target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target> <target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target>
...@@ -1467,6 +1462,11 @@ Additional information: {1}</target> ...@@ -1467,6 +1462,11 @@ Additional information: {1}</target>
<target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target> <target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands">
<source>Your keybindings are no longer mapped to Visual Studio commands.</source>
<target state="new">Your keybindings are no longer mapped to Visual Studio commands.</target>
<note />
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>
\ No newline at end of file
...@@ -1452,11 +1452,6 @@ Additional information: {1}</target> ...@@ -1452,11 +1452,6 @@ Additional information: {1}</target>
<target state="new">Restore Visual Studio keybindings</target> <target state="new">Restore Visual Studio keybindings</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="We_noticed_your_keybindings_are_broken">
<source>We noticed your keybindings are broken.</source>
<target state="new">We noticed your keybindings are broken.</target>
<note />
</trans-unit>
<trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor"> <trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor">
<source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source> <source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source>
<target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target> <target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target>
...@@ -1467,6 +1462,11 @@ Additional information: {1}</target> ...@@ -1467,6 +1462,11 @@ Additional information: {1}</target>
<target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target> <target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands">
<source>Your keybindings are no longer mapped to Visual Studio commands.</source>
<target state="new">Your keybindings are no longer mapped to Visual Studio commands.</target>
<note />
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>
\ No newline at end of file
...@@ -1452,11 +1452,6 @@ Additional information: {1}</target> ...@@ -1452,11 +1452,6 @@ Additional information: {1}</target>
<target state="new">Restore Visual Studio keybindings</target> <target state="new">Restore Visual Studio keybindings</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="We_noticed_your_keybindings_are_broken">
<source>We noticed your keybindings are broken.</source>
<target state="new">We noticed your keybindings are broken.</target>
<note />
</trans-unit>
<trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor"> <trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor">
<source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source> <source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source>
<target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target> <target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target>
...@@ -1467,6 +1462,11 @@ Additional information: {1}</target> ...@@ -1467,6 +1462,11 @@ Additional information: {1}</target>
<target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target> <target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands">
<source>Your keybindings are no longer mapped to Visual Studio commands.</source>
<target state="new">Your keybindings are no longer mapped to Visual Studio commands.</target>
<note />
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>
\ No newline at end of file
...@@ -1452,11 +1452,6 @@ Additional information: {1}</target> ...@@ -1452,11 +1452,6 @@ Additional information: {1}</target>
<target state="new">Restore Visual Studio keybindings</target> <target state="new">Restore Visual Studio keybindings</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="We_noticed_your_keybindings_are_broken">
<source>We noticed your keybindings are broken.</source>
<target state="new">We noticed your keybindings are broken.</target>
<note />
</trans-unit>
<trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor"> <trans-unit id="We_noticed_you_suspended_ReSharper_Ultimate_Restore_Visual_Studio_keybindings_to_continue_to_navigate_and_refactor">
<source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source> <source>We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</source>
<target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target> <target state="new">We noticed you suspended ‘ReSharper Ultimate’. Restore Visual Studio keybindings to continue to navigate and refactor.</target>
...@@ -1467,6 +1462,11 @@ Additional information: {1}</target> ...@@ -1467,6 +1462,11 @@ Additional information: {1}</target>
<target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target> <target state="new">Use keybindings for ReSharper/IntelliJ/Vim/etc.</target>
<note /> <note />
</trans-unit> </trans-unit>
<trans-unit id="Your_keybindings_are_no_longer_mapped_to_Visual_Studio_commands">
<source>Your keybindings are no longer mapped to Visual Studio commands.</source>
<target state="new">Your keybindings are no longer mapped to Visual Studio commands.</target>
<note />
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册