Commit 543489d6 authored by skuhne@chromium.org's avatar skuhne@chromium.org

Updating keyboard overlay for previous/next user in multi profile mode

I updated our keyboard mapping sheets and used the python scripts to generate the changes.

BUG=325792
TEST=visual

Review URL: https://codereview.chromium.org/341643004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278730 0039d316-1c4b-4281-b951-d872f2087c98
parent f06e4fb5
...@@ -4170,6 +4170,9 @@ Battery full ...@@ -4170,6 +4170,9 @@ Battery full
<message name="IDS_KEYBOARD_OVERLAY_NEW_WINDOW" desc="The text in the keyboard overlay to explain the shortcut."> <message name="IDS_KEYBOARD_OVERLAY_NEW_WINDOW" desc="The text in the keyboard overlay to explain the shortcut.">
New window New window
</message> </message>
<message name="IDS_KEYBOARD_OVERLAY_NEXT_USER" desc="The text in the keyboard overlay to explain the shortcut (Switch to next user).">
Next user
</message>
<message name="IDS_KEYBOARD_OVERLAY_NEXT_WINDOW" desc="The text in the keyboard overlay to explain the shortcut (go to the next window)."> <message name="IDS_KEYBOARD_OVERLAY_NEXT_WINDOW" desc="The text in the keyboard overlay to explain the shortcut (go to the next window).">
Next window Next window
</message> </message>
...@@ -4200,6 +4203,9 @@ Battery full ...@@ -4200,6 +4203,9 @@ Battery full
<message name="IDS_KEYBOARD_OVERLAY_PASTE_AS_PLAIN_TEXT" desc="The text in the keyboard overlay to explain the shortcut."> <message name="IDS_KEYBOARD_OVERLAY_PASTE_AS_PLAIN_TEXT" desc="The text in the keyboard overlay to explain the shortcut.">
Paste as plain text Paste as plain text
</message> </message>
<message name="IDS_KEYBOARD_OVERLAY_PREVIOUS_USER" desc="The text in the keyboard overlay to explain the shortcut (Switch to previous user).">
Previous user
</message>
<message name="IDS_KEYBOARD_OVERLAY_PREVIOUS_WINDOW" desc="The text in the keyboard overlay to explain the shortcut (go to the previous window)."> <message name="IDS_KEYBOARD_OVERLAY_PREVIOUS_WINDOW" desc="The text in the keyboard overlay to explain the shortcut (go to the previous window).">
Previous window Previous window
</message> </message>
......
...@@ -15770,10 +15770,12 @@ var keyboardOverlayData = { ...@@ -15770,10 +15770,12 @@ var keyboardOverlayData = {
'+<>ALT<>SHIFT': 'keyboardOverlayCenterWindow', '+<>ALT<>SHIFT': 'keyboardOverlayCenterWindow',
'+<>CTRL': 'keyboardOverlayZoomIn', '+<>CTRL': 'keyboardOverlayZoomIn',
'+<>CTRL<>SHIFT': 'keyboardOverlayZoomScreenIn', '+<>CTRL<>SHIFT': 'keyboardOverlayZoomScreenIn',
',<>ALT<>CTRL': 'keyboardOverlayPreviousUser',
'-<>ALT': 'keyboardOverlayMinimizeWindow', '-<>ALT': 'keyboardOverlayMinimizeWindow',
'-<>CTRL': 'keyboardOverlayZoomOut', '-<>CTRL': 'keyboardOverlayZoomOut',
'-<>CTRL<>SHIFT': 'keyboardOverlayZoomScreenOut', '-<>CTRL<>SHIFT': 'keyboardOverlayZoomScreenOut',
'-<>SEARCH': 'keyboardOverlayF11', '-<>SEARCH': 'keyboardOverlayF11',
'.<>ALT<>CTRL': 'keyboardOverlayNextUser',
'.<>CTRL<>SHIFT': 'keyboardOverlayToggleSpeechInput', '.<>CTRL<>SHIFT': 'keyboardOverlayToggleSpeechInput',
'.<>SEARCH': 'keyboardOverlayInsert', '.<>SEARCH': 'keyboardOverlayInsert',
'/<>ALT<>CTRL': 'keyboardOverlayViewKeyboardOverlay', '/<>ALT<>CTRL': 'keyboardOverlayViewKeyboardOverlay',
......
...@@ -172,6 +172,7 @@ struct I18nContentToMessage { ...@@ -172,6 +172,7 @@ struct I18nContentToMessage {
{ "keyboardOverlayNewTab", IDS_KEYBOARD_OVERLAY_NEW_TAB }, { "keyboardOverlayNewTab", IDS_KEYBOARD_OVERLAY_NEW_TAB },
{ "keyboardOverlayNewTerminal", IDS_KEYBOARD_OVERLAY_NEW_TERMINAL }, { "keyboardOverlayNewTerminal", IDS_KEYBOARD_OVERLAY_NEW_TERMINAL },
{ "keyboardOverlayNewWindow", IDS_KEYBOARD_OVERLAY_NEW_WINDOW }, { "keyboardOverlayNewWindow", IDS_KEYBOARD_OVERLAY_NEW_WINDOW },
{ "keyboardOverlayNextUser", IDS_KEYBOARD_OVERLAY_NEXT_USER },
{ "keyboardOverlayNextWindow", IDS_KEYBOARD_OVERLAY_NEXT_WINDOW }, { "keyboardOverlayNextWindow", IDS_KEYBOARD_OVERLAY_NEXT_WINDOW },
{ "keyboardOverlayNextWord", IDS_KEYBOARD_OVERLAY_NEXT_WORD }, { "keyboardOverlayNextWord", IDS_KEYBOARD_OVERLAY_NEXT_WORD },
{ "keyboardOverlayOpen", IDS_KEYBOARD_OVERLAY_OPEN }, { "keyboardOverlayOpen", IDS_KEYBOARD_OVERLAY_OPEN },
...@@ -185,6 +186,7 @@ struct I18nContentToMessage { ...@@ -185,6 +186,7 @@ struct I18nContentToMessage {
{ "keyboardOverlayPaste", IDS_KEYBOARD_OVERLAY_PASTE }, { "keyboardOverlayPaste", IDS_KEYBOARD_OVERLAY_PASTE },
{ "keyboardOverlayPasteAsPlainText", { "keyboardOverlayPasteAsPlainText",
IDS_KEYBOARD_OVERLAY_PASTE_AS_PLAIN_TEXT }, IDS_KEYBOARD_OVERLAY_PASTE_AS_PLAIN_TEXT },
{ "keyboardOverlayPreviousUser", IDS_KEYBOARD_OVERLAY_PREVIOUS_USER },
{ "keyboardOverlayPreviousWindow", IDS_KEYBOARD_OVERLAY_PREVIOUS_WINDOW }, { "keyboardOverlayPreviousWindow", IDS_KEYBOARD_OVERLAY_PREVIOUS_WINDOW },
{ "keyboardOverlayPreviousWord", IDS_KEYBOARD_OVERLAY_PREVIOUS_WORD }, { "keyboardOverlayPreviousWord", IDS_KEYBOARD_OVERLAY_PREVIOUS_WORD },
{ "keyboardOverlayPrint", IDS_KEYBOARD_OVERLAY_PRINT }, { "keyboardOverlayPrint", IDS_KEYBOARD_OVERLAY_PRINT },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment