checking patch for walk84@yahoo.com. fixes bug 114464 - No (access keys) mnemonics in Subscribe dialog. r=ssu, sr=sspitzer

This commit is contained in:
ssu%netscape.com 2002-07-09 00:10:16 +00:00
Родитель 5bd0d2e2f1
Коммит dc78d7f05b
2 изменённых файлов: 18 добавлений и 7 удалений

Просмотреть файл

@ -59,7 +59,7 @@ Rights Reserved.
<rows> <rows>
<row> <row>
<hbox pack="end" align="center"> <hbox pack="end" align="center">
<label value="&server.label;" control="serverMenu"/> <label value="&server.label;" accesskey="&server.accesskey;" control="serverMenu"/>
</hbox> </hbox>
<menulist oncommand="onServerClick(event);" id="serverMenu" <menulist oncommand="onServerClick(event);" id="serverMenu"
datasources="rdf:msgaccountmanager rdf:mailnewsfolders" datasources="rdf:msgaccountmanager rdf:mailnewsfolders"
@ -75,8 +75,9 @@ Rights Reserved.
</menulist> </menulist>
</row> </row>
<row align="center"> <row align="center">
<label value="&namefield.label;" id="namefieldlabel" control="namefield"/> <label value="&namefield.label;" accesskey="&namefield.accesskey;"
<textbox id="namefield" flex="1" oninput="Search();"/> id="namefieldlabel" control="namefield"/>
<textbox id="namefield" flex="1" oninput="Search();"/>
</row> </row>
</rows> </rows>
</grid> </grid>
@ -162,10 +163,14 @@ Rights Reserved.
</hbox> </hbox>
</deck> </deck>
<vbox> <vbox>
<button id="subscribe" label="&subscribeButton.label;" oncommand="SetSubscribeState(true)"/> <button id="subscribe" label="&subscribeButton.label;" accesskey="&subscribeButton.accesskey;"
<button id="unsubscribe" label="&unsubscribeButton.label;" oncommand="SetSubscribeState(false)"/> oncommand="SetSubscribeState(true)"/>
<button id="refresh" label="&refreshButton.label;" oncommand="Refresh()"/> <button id="unsubscribe" label="&unsubscribeButton.label;" accesskey="&unsubscribeButton.accesskey;"
<button id="stop" label="&stopButton.label;" oncommand="Stop()"/> oncommand="SetSubscribeState(false)"/>
<button id="refresh" label="&refreshButton.label;" accesskey="&refreshButton.accesskey;"
oncommand="Refresh()"/>
<button id="stop" label="&stopButton.label;" accesskey="&stopButton.accesskey;"
oncommand="Stop()"/>
<spacer flex="1"/> <spacer flex="1"/>
</vbox> </vbox>
</row> </row>

Просмотреть файл

@ -20,10 +20,16 @@ Rights Reserved.
<!ENTITY subscribeDialog.title "Subscribe"> <!ENTITY subscribeDialog.title "Subscribe">
<!ENTITY subscribeButton.label "Subscribe"> <!ENTITY subscribeButton.label "Subscribe">
<!ENTITY subscribeButton.accesskey "S">
<!ENTITY unsubscribeButton.label "Unsubscribe"> <!ENTITY unsubscribeButton.label "Unsubscribe">
<!ENTITY unsubscribeButton.accesskey "U">
<!ENTITY refreshButton.label "Refresh"> <!ENTITY refreshButton.label "Refresh">
<!ENTITY refreshButton.accesskey "R">
<!ENTITY stopButton.label "Stop"> <!ENTITY stopButton.label "Stop">
<!ENTITY stopButton.accesskey "T">
<!ENTITY server.label "Account:"> <!ENTITY server.label "Account:">
<!ENTITY server.accesskey "A">
<!ENTITY subscribedHeader.label "Subscribe"> <!ENTITY subscribedHeader.label "Subscribe">
<!ENTITY messagesHeader.label "Messages"> <!ENTITY messagesHeader.label "Messages">
<!ENTITY namefield.label "Show items that contain:"> <!ENTITY namefield.label "Show items that contain:">
<!ENTITY namefield.accesskey "O">