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 Perk should be
33 associated'
34 @type HELP_TIER: string
35 @var HELP_ALL_TIERS: Help string 'Flag indicating a Perk 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 LSR 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 LSR 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 All rights reserved. This program and the accompanying materials are made
74 available under the terms of the BSD license which accompanies
75 this distribution, and is available at
76 U{http://www.opensource.org/licenses/bsd-license.php}
77 '''
78 from i18n import _
79
80
81 HELP_GENERATE = _('generate a template for a new UIE')
82 HELP_INSTALL = _('install a UIE')
83 HELP_UNINSTALL = _('uninstall a UIE')
84 HELP_ASSOCIATE = _('associate a UIE with a profile')
85 HELP_DISASSOCIATE = _('disassociate a UIE from a profile')
86 HELP_CREATE_PROFILE = _('create a new user profile')
87 HELP_REMOVE_PROFILE = _('remove a user profile')
88 HELP_DUPLICATE_PROFILE = _('duplicate a user profile')
89 HELP_SHOW = _('show installed UIEs')
90 HELP_PROFILE = _('profile name')
91 HELP_SAY = _('output a string using the default device')
92 HELP_INDEX = _('load order index for the UIE')
93 HELP_TIER = _('process name with which a Perk should be associated')
94 HELP_ALL_TIERS = _('flag indicating a Perk should be associated with all apps')
95 HELP_GLOBAL = _('flag indicating the command should be performed globally')
96 HELP_LOG_LEVEL = _('level of log messages: %s')
97 HELP_LOG_CHANNEL = _('channel of log messages, any of: %s')
98 HELP_LOG_FILENAME = _('filename for simple log output')
99 HELP_LOG_CONFIG = _('filename for Python logging module configuration')
100 HELP_NO_INTRO = _('suppress the welcome announcement')
101 HELP_INIT_PROFILES = _('initialize built-in profiles')
102 HELP_INIT_GLOBAL = _('initialize installed UIEs with packaged UIEs')
103 HELP_A11Y = _('Desktop accessibility disabled. Enabling...' \
104 '\nPlease logout and run LSR again.')
105 HELP_NO_A11Y = _('skips check for desktop accessibility')
106 HELP_NO_BRIDGE = _('prevents UIE windows from becoming accessible')
107 HELP_EXPORT_PATH = _('prints the path to the LSR package')
108
109
110 MSG_CONFIRM_REMOVE = _('Are you sure you want to remove %s? ') + '(y/n) '
111