Bug 326345 - Remove "Find" prefix from "Find Next"/"Find Previous" labels on find toolbar. ui=beltzner, r=mconnor

This commit is contained in:
jwalden%mit.edu 2006-06-02 18:06:09 +00:00
parent 70303ebf3e
commit e20739ae38
2 changed files with 10 additions and 10 deletions

View File

@ -10,10 +10,10 @@
oncompositionstart="gFindBar.onFindBarCompositionStart(event);"
oncompositionend="gFindBar.onFindBarCompositionEnd(event);"/>
</hbox>
<toolbarbutton id="find-next" label="&findNext.label;" tooltiptext="&findNext.tooltip;"
command="cmd_findAgain" disabled="true" accesskey="&findNext.accesskey;"/>
<toolbarbutton id="find-previous" label="&findPrevious.label;" tooltiptext="&findPrevious.tooltip;"
command="cmd_findPrevious" disabled="true" accesskey="&findPrevious.accesskey;"/>
<toolbarbutton id="find-next" label="&next.label;" tooltiptext="&next.tooltip;"
command="cmd_findAgain" disabled="true" accesskey="&next.accesskey;"/>
<toolbarbutton id="find-previous" label="&previous.label;" tooltiptext="&previous.tooltip;"
command="cmd_findPrevious" disabled="true" accesskey="&previous.accesskey;"/>
<toolbarbutton id="highlight"
label="&highlight.label;"
#ifdef XP_MACOSX

View File

@ -3,12 +3,12 @@
<!-- entities split out from browser.dtd -->
<!ENTITY find.label "Find:">
<!ENTITY findNext.label "Find Next">
<!ENTITY findNext.accesskey "N">
<!ENTITY findNext.tooltip "Find the next occurrence of the phrase">
<!ENTITY findPrevious.label "Find Previous">
<!ENTITY findPrevious.accesskey "P">
<!ENTITY findPrevious.tooltip "Find the previous occurrence of the phrase">
<!ENTITY next.label "Next">
<!ENTITY next.accesskey "N">
<!ENTITY next.tooltip "Find the next occurrence of the phrase">
<!ENTITY previous.label "Previous">
<!ENTITY previous.accesskey "P">
<!ENTITY previous.tooltip "Find the previous occurrence of the phrase">
<!ENTITY findCloseButton.tooltip "Close Find bar">
<!ENTITY highlight.label "Highlight all">
<!ENTITY highlight.accesskey "a">