I´m using Visual Studio 2017 in the german version. Another programmer of our project uses the English version. Now we´ve got a problem with the .resx files of our project. We created some Menu Items and give them Keyboard shortcuts. Because we created them in the English VS, the name of the ShortcutKeys in the .resx file is in English:
<data name="Example.ShortcutKeys" type="System.Windows.Forms.Keys, System.Windows.Forms">
<value>Ctrl+O</value>
Now if I want to compile the code in the german VS version, I´ve got the following Error:
Ungültige ResX-Datei. Der angeforderte Wert "'Ctrl" konnte nicht gefunden werden.
In English:
Invalid ResX file. The requested value "'Ctrl" could not be found
The error could be corrected by this editing ("Strg" instead of "Ctrl"):
<data name="Example.ShortcutKeys" type="System.Windows.Forms.Keys, System.Windows.Forms">
<value>Strg+O</value>
Is there a more simple way to solve this problem? Because there are many shortcuts like this and we cannot solve the error like this for every shortcut every time.