Bug 259479 - Inconsistent tooltip labels in EM. patch from Gavin Sharp <gavin.sharp@gmail.com>, r=mconnor, a=shaver.

This commit is contained in:
mozilla.mano%sent.com 2005-05-16 12:44:21 +00:00
parent a7eb0fa3b5
commit f53c2c5359
2 changed files with 7 additions and 3 deletions

View File

@ -25,6 +25,7 @@
<!ENTITY cmd.options.tooltip "Set Options for the selected Extension">
<!ENTITY cmd.optionsUnix.label "Preferences">
<!ENTITY cmd.optionsUnix.accesskey "r">
<!ENTITY cmd.optionsUnix.tooltip "Edit Preferences for the selected Extension">
<!ENTITY cmd.homepage.label "Visit Home Page">
<!ENTITY cmd.homepage.accesskey "H">
<!ENTITY cmd.about.label "About this Extension">

View File

@ -278,9 +278,12 @@
label="&cmd.update.label;" accesskey="&cmd.update.accesskey;" tooltiptext="&cmd.update.tooltip;"
command="cmd_update"/>
<separator class="commandBarSeparator"/>
<button id="optionsButton"
label="&cmd.options.label;" accesskey="&cmd.options.accesskey;" tooltiptext="&cmd.options.tooltip;"
command="cmd_options"/>
<button id="optionsButton" command="cmd_options"
#ifdef XP_WIN
label="&cmd.options.label;" accesskey="&cmd.options.accesskey;" tooltiptext="&cmd.options.tooltip;"/>
#else
label="&cmd.optionsUnix.label;" accesskey="&cmd.optionsUnix.accesskey;" tooltiptext="&cmd.optionsUnix.tooltip;"/>
#endif
<button id="useThemeButton" hidden="true"
label="&cmd.useTheme.label;" accesskey="&cmd.useTheme.accesskey;" tooltiptext="&cmd.useTheme.tooltip;"
command="cmd_useTheme"/>