Bug 323989: replace "open containing folder" with "show in finder" on mac, r=mconnor

git-svn-id: svn://10.0.0.236/trunk@187820 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
gavin%gavinsharp.com 2006-01-19 09:34:59 +00:00
parent b09563f8a3
commit 5ac6e2d58b
2 changed files with 10 additions and 2 deletions

View File

@ -17,7 +17,9 @@
<!ENTITY cmd.cancel.label "Cancel">
<!ENTITY cmd.cancel.accesskey "C">
<!ENTITY cmd.show.label "Open Containing Folder">
<!ENTITY cmd.show.labelMac "Show in Finder">
<!ENTITY cmd.show.accesskey "F">
<!ENTITY cmd.show.accesskeyMac "F">
<!ENTITY cmd.open.label "Open">
<!ENTITY cmd.open.accesskey "O">
<!ENTITY cmd.openWith.label "Open With...">

View File

@ -110,8 +110,14 @@
<menuitem id="menuitem_openWith"
label="&cmd.openWith.label;" accesskey="&cmd.openWith.accesskey;"
oncommand="fireEventForElement(gDownloadsView.selectedItem, 'openWith');"/>
<menuitem id="menuitem_show"
label="&cmd.show.label;" accesskey="&cmd.show.accesskey;"
<menuitem id="menuitem_show"
#ifdef XP_MACOSX
label="&cmd.show.labelMac;"
accesskey="&cmd.show.accesskeyMac;"
#else
label="&cmd.show.label;"
accesskey="&cmd.show.accesskey;"
#endif
oncommand="fireEventForElement(gDownloadsView.selectedItem, 'show');"/>
<menuitem id="menuitem_retry" default="true"