Changeset 298
- Timestamp:
- 08/12/06 20:27:37 (2 years ago)
- Files:
-
- z3wingdbg/trunk/configure.zcml (modified) (2 diffs)
- z3wingdbg/trunk/interfaces.py (modified) (7 diffs)
- z3wingdbg/trunk/locales (added)
- z3wingdbg/trunk/locales/en (added)
- z3wingdbg/trunk/locales/en/LC_MESSAGES (added)
- z3wingdbg/trunk/locales/en/LC_MESSAGES/z3wingdbg.po (added)
- z3wingdbg/trunk/locales/z3wingdbg.pot (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
z3wingdbg/trunk/configure.zcml
r289 r298 1 <configure xmlns="http://namespaces.zope.org/zope"> 1 <configure 2 xmlns="http://namespaces.zope.org/zope" 3 xmlns:i18n="http://namespaces.zope.org/i18n"> 2 4 3 5 <!-- vocabulary --> … … 55 57 <include package=".server"/> 56 58 <include package=".browser"/> 59 <i18n:registerTranslations directory="locales"/> 57 60 58 61 </configure> z3wingdbg/trunk/interfaces.py
r296 r298 105 105 title=_(u'Wing Home'), 106 106 description=_(u'wing-home-description', 107 default=u'The directory where Wing IDE is installed on'108 u'this machine. This is used to find Wing '109 u"IDE's debugger support modules."))107 u'The directory where Wing IDE is installed on this ' 108 u"machine. This is used to find Wing IDE's debugger " 109 u'support modules.')) 110 110 111 111 ideHost = schema.TextLine( 112 112 title=_(u'IDE hostname'), 113 113 description=_(u'ide-hostname-description', 114 default=u'The host where Wing IDE is listening for the'115 u'debugconnection.'),114 u'The host where Wing IDE is listening for the debug ' 115 u'connection.'), 116 116 default=u'localhost') 117 117 … … 119 119 title=_(u'IDE port'), 120 120 description=_(u'ide-port-description', 121 default=u'The port where Wing IDE is listening for the'122 u'debugconnection.'),121 u'The port where Wing IDE is listening for the debug ' 122 u'connection.'), 123 123 default=50005, 124 124 min=0, … … 128 128 title=_(u'Debug server type'), 129 129 description=_(u'server-type-description', 130 default=u'Type of server to use for the debug server'),130 u'Type of server to use for the debug server'), 131 131 default=u'http', 132 132 vocabulary=u'z3wingdbg.servertypes') … … 135 135 title=_(u'Auto-start debug server'), 136 136 description=_(u'auto-start-description', 137 default=u'Automatically start the debug server when ' 138 u'Zope starts'), 137 u'Automatically start the debug server when Zope starts'), 139 138 default=False) 140 139 … … 142 141 title=_(u'Auto-connect IDE'), 143 142 description=_(u'auto-connect-description', 144 default=u'Automatically try to connect to the IDE when'145 u'thedebug server is started'),143 u'Automatically try to connect to the IDE when the ' 144 u'debug server is started'), 146 145 default=True) 147 146 … … 152 151 title=_(u'Host'), 153 152 description=_(u'server-host-description', 154 default=u'The host where the debugger will listen for'155 u'requestsfrom your client.'),153 u'The host where the debugger will listen for requests ' 154 u'from your client.'), 156 155 default=u'localhost') 157 156 … … 159 158 title=_(u'Port'), 160 159 description=_(u'server-port-description', 161 default=u'The port where the debugger will listen for ' 162 u'requests'), 160 u'The port where the debugger will listen for requests'), 163 161 min=0, 164 162 max=65535)
