diff options
author | sschmitz@chromium.org <sschmitz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-21 21:36:40 +0000 |
---|---|---|
committer | sschmitz@chromium.org <sschmitz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-21 21:36:40 +0000 |
commit | 67135cdb41d4c832b18c4b41565045aea9d48dd2 (patch) | |
tree | 65d916f134e37d18f11247ac847e2c9fdcef120e /tools | |
parent | d05ac1a5b7f7449e3d3b69e5eb747d2b8b0fdad9 (diff) | |
download | chromium_src-67135cdb41d4c832b18c4b41565045aea9d48dd2.zip chromium_src-67135cdb41d4c832b18c4b41565045aea9d48dd2.tar.gz chromium_src-67135cdb41d4c832b18c4b41565045aea9d48dd2.tar.bz2 |
F4 behavior was change to maximize (from fullscreen). The label text needs to be changed, too.
Note from mazda@
keyboard_overlay_data.js is generated by tools/gen_keyboard_overaly_data/gen_keyboard_overlay_data.py
Necessary changes are:
1. Replace 'full screen' with 'maximize' in gen_keyboard_overlay_data.py
2. Replace 'full screen' with 'maximize' in keyboard_overlay.js
3. Regenerate keyboard_overlay_data.js by running gen_keyboard_overlay_data.py
However, currently step 3 does not work properly because of some manual changes of data.
In this case, I think it's OK just to replace all 'full screen' with 'maximize' in keyboard_overlay_data.js.
The key descriptions on the top row of keyboard overlay are currently not translated (might be better to translate though).
See also crbug.com/145402.
BUG=150785
TEST=Bring up keyboard overlay and observer label for "F4"
Review URL: https://chromiumcodereview.appspot.com/10946043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@158084 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/gen_keyboard_overlay_data/gen_keyboard_overlay_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gen_keyboard_overlay_data/gen_keyboard_overlay_data.py b/tools/gen_keyboard_overlay_data/gen_keyboard_overlay_data.py index 6272240..0cb2d60 100755 --- a/tools/gen_keyboard_overlay_data/gen_keyboard_overlay_data.py +++ b/tools/gen_keyboard_overlay_data/gen_keyboard_overlay_data.py @@ -67,7 +67,7 @@ LABEL_MAP = { 'glyph_brightness_up': 'bright up', 'glyph_enter': 'enter', 'glyph_forward': 'forward', - 'glyph_fullscreen': 'full screen', + 'glyph_fullscreen': 'maximize', # Kana/Eisu key on Japanese keyboard 'glyph_ime': u'\u304b\u306a\u0020\u002f\u0020\u82f1\u6570', 'glyph_lock': 'lock', |