Update browserx.xul

Format and change file options label
This commit is contained in:
David Westgate 2013-04-28 15:02:11 -03:00
parent 1b5d18921c
commit 016ee0c922

View File

@ -2,45 +2,35 @@
<?xml-stylesheet href="chrome://linktargetfinder/skin/skin.css" type="text/css"?> <?xml-stylesheet href="chrome://linktargetfinder/skin/skin.css" type="text/css"?>
<!DOCTYPE firerecord SYSTEM "chrome://firerecord/locale/translations.dtd"> <!DOCTYPE firerecord SYSTEM "chrome://firerecord/locale/translations.dtd">
<overlay id="sample" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> <overlay id="sample" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script src="fireio.js" type="text/javascript"></script> <script src="fireio.js" type="text/javascript"/>
<script src="firerecord.js" type="text/javascript"></script> <script src="firerecord.js" type="text/javascript"/>
<menupopup id="menu_ToolsPopup">
<menupopup id="menu_ToolsPopup"> <menuitem label="&runlinktargetfinder;" key="link-target-finder-run-key" oncommand="firerecord.running()"/>
<menuitem label="&runlinktargetfinder;" key="link-target-finder-run-key" oncommand="firerecord.running()"/> </menupopup>
</menupopup> <toolbox>
<toolbox> <menubar id="xulschoolhello-menubar">
<menubar id="xulschoolhello-menubar"> <menu id="xulschoolhello-greeting-menu" label="File Options">
<menu id="xulschoolhello-greeting-menu" label="testing"> <menupopup>
<menupopup> <menuitem label="Open File"
<menuitem label="Open File" oncommand ="firerecord.openfile()"/>
oncommand ="firerecord.openfile()"/> <menuitem label="New File"
<menuitem label="New File" oncommand ="firerecord.newfile()"/>
oncommand ="firerecord.newfile()"/> <menuitem label="Run File"
<menuitem label="Run File" oncommand ="firerecord.readr()"/>
oncommand ="firerecord.readr()"/> </menupopup>
</menupopup> </menu>
</menubar>
</toolbox>
<keyset>
</menu> <key id="link-target-finder-run-key" modifiers="accel alt shift" key="L" oncommand="firerecord.running()"/>
</menubar> </keyset>
</toolbox> <toolbar id="status-bar">
<keyset> <statusbarpanel id="link-target-finder-status-bar-icon" label="Record" class="statusbarpanel-iconic"
<key id="link-target-finder-run-key" modifiers="accel alt shift" key="L" oncommand="firerecord.running()"/> src="chrome://firerecord/skin/record.png" tooltiptext="Click to start recording to currently loaded script"
</keyset> onclick="firerecord.running()" />
</toolbar>
<toolbar id="status-bar"> <toolbar id="status-bar">
<statusbarpanel id="link-target-finder-status-bar-icon" label="Record" class="statusbarpanel-iconic" <statusbarpanel id="Play" type="menu" role="button" label="Play" class="statusbarpanel-iconic"
src="chrome://firerecord/skin/record.png" tooltiptext="Click to start recording to currently loaded script" src="chrome://firerecord/skin/play.png" tooltiptext="Click to playback currently loaded script" onclick="firerecord.readr()" />
onclick="firerecord.running()" /> </toolbar>
</toolbar>
<toolbar id="status-bar">
<statusbarpanel id="Play" type="menu" role="button" label="Play" class="statusbarpanel-iconic"
src="chrome://firerecord/skin/play.png" tooltiptext="Click to playback currently loaded script" onclick="firerecord.readr()" />
</toolbar>
</overlay> </overlay>