1 '''
2 Help message constants. All HELP_* variables are strings shown at the command
3 line.
4
5 @var MSG_CONFIRM_REMOVE: Message displayed to confirm a removal at the command
6 line
7 @type MSG_CONFIRM_REMOVE: string
8 @var HELP_GENERATE: Help string 'Generate a template for a new UIE'
9 @type HELP_GENERATE: string
10 @var HELP_INSTALL: Help string 'Install a UIE'
11 @type HELP_INSTALL: string
12 @var HELP_UNINSTALL: Help string 'Uninstall a UIE'
13 @type HELP_UNINSTALL: string
14 @var HELP_ASSOCIATE: Help string 'Associate a UIE with a profile'
15 @type HELP_ASSOCIATE: string
16 @var HELP_DISASSOCIATE: Help string 'Disassociate a UIE from a profile'
17 @type HELP_DISASSOCIATE: string
18 @var HELP_CREATE_PROFILE: Help string 'Create a new user profile'
19 @type HELP_CREATE_PROFILE: string
20 @var HELP_REMOVE_PROFILE: Help string 'Remove a user profile'
21 @type HELP_REMOVE_PROFILE: string
22 @var HELP_DUPLICATE_PROFILE: Help string 'Duplicate a user profile'
23 @type HELP_DUPLICATE_PROFILE: string
24 @var HELP_SHOW: Help string 'Show installed UIEs'
25 @type HELP_SHOW: string
26 @var HELP_PROFILE: Help string 'Profile name'
27 @type HELP_PROFILE: string
28 @var HELP_SAY: Help string 'Output a string using the default device'
29 @type HELP_SAY: string
30 @var HELP_INDEX: Help string 'Load order index for the UIE'
31 @type HELP_INDEX: string
32 @var HELP_TIER: Help string 'Process name with which a Script should be
33 associated'
34 @type HELP_TIER: string
35 @var HELP_ALL_TIERS: Help string 'Flag indicating a Script should be associated
36 with all apps'
37 @type HELP_ALL_TIERS: string
38 @var HELP_GLOBAL: Help string 'Flag indicating the command should be performed
39 globally'
40 @type HELP_GLOBAL: string
41 @var HELP_LOG_LEVEL: Help string 'level of log messages'
42 @type HELP_LOG_LEVEL: string
43 @var HELP_LOG_CHANNEL: Help string 'channel of log messages, any of: %s'
44 @type HELP_LOG_CHANNEL: string
45 @var HELP_LOG_FILENAME: Help string 'filename for simple log output'
46 @type HELP_LOG_FILENAME: string
47 @var HELP_LOG_CONFIG: Help string 'filename for Python logging module
48 configuration'
49 @type HELP_LOG_CONFIG: string
50 @var HELP_NO_INTRO: Help string 'suppress the welcome announcement'
51 @type HELP_NO_INTRO: string
52 @var HELP_INIT_PROFILES: Help string 'initialize built-in profiles'
53 @type HELP_INIT_PROFILES: string
54 @var HELP_INIT_GLOBAL: Help string 'initialize installed UIEs with packaged
55 UIEs'
56 @type HELP_INIT_GLOBAL: string
57 @var HELP_A11Y: Help string 'Desktop accessibility disabled. Enabling
58 Please logout and run SUE again.'
59 @type HELP_A11Y: string
60 @var HELP_NO_A11Y: Help string 'skips check for desktop accessibility'
61 @type HELP_NO_A11Y: string
62 @var HELP_NO_BRIDGE: Help string 'prevents UIE windows from becoming
63 accessible'
64 @type HELP_NO_BRIDGE: string
65 @var HELP_EXPORT_PATH: Help string 'prints the path to the SUE package'
66 @type HELP_EXPORT_PATH: string
67
68 @author: Peter Parente
69 @organization: IBM Corporation
70 @copyright: Copyright (c) 2005, 2007 IBM Corporation
71 @license: The BSD License
72
73 @author: Frank Zenker
74 @organization: IT Science Center Ruegen gGmbH, Germany
75 @copyright: Copyright (c) 2007, 2008 ITSC Ruegen
76 @license: The BSD License
77
78 All rights reserved. This program and the accompanying materials are made
79 available under the terms of the BSD license which accompanies
80 this distribution, and is available at
81 U{http://www.opensource.org/licenses/bsd-license.php}
82 '''
83 from Tools.i18n import _
84
85
86 HELP_GENERATE = _('generate a template for a new UIE')
87 HELP_INSTALL = _('install a UIE')
88 HELP_UNINSTALL = _('uninstall a UIE')
89 HELP_ASSOCIATE = _('associate a UIE with a profile')
90 HELP_DISASSOCIATE = _('disassociate a UIE from a profile')
91 HELP_CREATE_PROFILE = _('create a new user profile')
92 HELP_REMOVE_PROFILE = _('remove a user profile')
93 HELP_DUPLICATE_PROFILE = _('duplicate a user profile')
94 HELP_SHOW = _('show installed UIEs')
95 HELP_PROFILE = _('profile name')
96 HELP_SAY = _('output a string using the default device')
97 HELP_INDEX = _('load order index for the UIE')
98 HELP_TIER = _('process name with which a Script should be associated')
99 HELP_ALL_TIERS = _('flag indicating a Script should be associated with all apps')
100 HELP_GLOBAL = _('flag indicating the command should be performed globally')
101 HELP_LOG_LEVEL = _('level of log messages: %s')
102 HELP_LOG_CHANNEL = _('channel of log messages, any of: %s')
103 HELP_LOG_FILENAME = _('filename for simple log output')
104 HELP_LOG_CONFIG = _('filename for Python logging module configuration')
105 HELP_NO_INTRO = _('suppress the welcome announcement')
106 HELP_INIT_PROFILES = _('initialize built-in profiles')
107 HELP_INIT_GLOBAL = _('initialize installed UIEs with packaged UIEs')
108 HELP_A11Y = _('Desktop accessibility disabled. Enabling...' \
109 '\nPlease logout and run SUE again.')
110 HELP_NO_A11Y = _('skips check for desktop accessibility')
111 HELP_NO_BRIDGE = _('prevents UIE windows from becoming accessible')
112 HELP_EXPORT_PATH = _('prints the path to the SUE package')
113
114
115 MSG_CONFIRM_REMOVE = _('Are you sure you want to remove %s? ') + '(y/n) '
116