Module keyLabels
[hide private]
[frames] | no frames]

Source Code for Module keyLabels

 1  #keyLabels.py 
 2  #A part of NonVisual Desktop Access (NVDA) 
 3  #This file is covered by the GNU General Public License. 
 4  #See the file COPYING for more details. 
 5  #Copyright (C) 2008-2010 James Teh <jamie@jantrid.net>, Aleksey Sadovoy <lex@onm.su> 
 6   
 7  localizedKeyLabels = { 
 8          'browserBack': _("back"), 
 9          'browserForward': _("forward"), 
10          'browserRefresh': _("refresh"), 
11          'browserStop': _("browser stop"), 
12          'browserSearch': _("search page"), 
13          'browserFavorites': _("favorites"), 
14          'browserHome': _("home page"), 
15          'volumeMute': _("mute"), 
16          'volumeDown': _("volume down"), 
17          'volumeUp': _("volume up"), 
18          'mediaNextTrack': _("next track"), 
19          'mediaPrevTrack': _("previous track"), 
20          'mediaStop': _("stop"), 
21          'mediaPlayPause': _("play pause"), 
22          'launchMail': _("email"), 
23          'launchMediaPlayer': _("media player"), 
24          'launchApp1': _("custom application 1"), 
25          'launchApp2': _("custom application 2"), 
26          'backspace': _("backspace"), 
27          'capsLock': _("caps lock"), 
28          'control': _("ctrl"), 
29          'alt': _("alt"), 
30          'shift': _("shift"), 
31          'windows': _("windows"), 
32          'enter': _("enter"), 
33          'numpadEnter': _("numpad enter"), 
34          'escape': _("escape"), 
35          'space': _("space"), 
36          'pageUp': _("page up"), 
37          'pageDown': _("page down"), 
38          'end': _("end"), 
39          'home': _("home"), 
40          'delete': _("delete"), 
41          'numpadDelete': _("numpad delete"), 
42          'leftArrow': _("left arrow"), 
43          'rightArrow': _("right arrow"), 
44          'upArrow': _("up arrow"), 
45          'downArrow': _("down arrow"), 
46          'applications': _("applications"), 
47          'numLock': _("num lock"), 
48          'printScreen': _("print screen"), 
49          'scrollLock': _("scroll lock"), 
50          'numpad4': _("numpad 4"), 
51          'numpad6': _("numpad 6"), 
52          'numpad8': _("numpad 8"), 
53          'numpad2': _("numpad 2"), 
54          'numpad9': _("numpad 9"), 
55          'numpad3': _("numpad 3"), 
56          'numpad1': _("numpad 1"), 
57          'numpad7': _("numpad 7"), 
58          'numpad5': _("numpad 5"), 
59          'numpadDivide': _("numpad divide"), 
60          'numpadMultiply': _("numpad multiply"), 
61          'numpadMinus': _("numpad minus"), 
62          'numpadPlus': _("numpad plus"), 
63          'leftControl': _("left control"), 
64          'rightControl': _("right control"), 
65          'leftWindows': _("left windows"), 
66          'leftShift': _("left shift"), 
67          'rightShift': _("right shift"), 
68          'leftAlt': _("left alt"), 
69          'rightAlt': _("right alt"), 
70          'rightWindows': _("right windows"), 
71          'break': _("break"), 
72  } 
73