Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: chrome/content/ui/sidebar.xul

Issue 11015083: Merge labels and access keys into one string in locales (Closed)
Patch Set: Created July 3, 2013, 9:11 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 2
3 <!-- 3 <!--
4 - This file is part of Adblock Plus <http://adblockplus.org/>, 4 - This file is part of Adblock Plus <http://adblockplus.org/>,
5 - Copyright (C) 2006-2013 Eyeo GmbH 5 - Copyright (C) 2006-2013 Eyeo GmbH
6 - 6 -
7 - Adblock Plus is free software: you can redistribute it and/or modify 7 - Adblock Plus is free software: you can redistribute it and/or modify
8 - it under the terms of the GNU General Public License version 3 as 8 - it under the terms of the GNU General Public License version 3 as
9 - published by the Free Software Foundation. 9 - published by the Free Software Foundation.
10 - 10 -
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 <menuitem id="contextFlash" label="&context.flash.label;" oncommand="onSel ectionChange()"/> 97 <menuitem id="contextFlash" label="&context.flash.label;" oncommand="onSel ectionChange()"/>
98 <menuitem id="contextCopy" label="&context.copy.label;" command="copy-comm and" key="copy-key"/> 98 <menuitem id="contextCopy" label="&context.copy.label;" command="copy-comm and" key="copy-key"/>
99 <menuitem id="contextCopyFilter" label="&context.copyFilter.label;" oncomm and="copyFilter()"/> 99 <menuitem id="contextCopyFilter" label="&context.copyFilter.label;" oncomm and="copyFilter()"/>
100 <menuseparator id="contextSelectSep"/> 100 <menuseparator id="contextSelectSep"/>
101 <menuitem id="contextSelectAll" label="&context.selectAll.label;" command= "selectAll-command" key="selectAll-key"/> 101 <menuitem id="contextSelectAll" label="&context.selectAll.label;" command= "selectAll-command" key="selectAll-key"/>
102 </menupopup> 102 </menupopup>
103 </popupset> 103 </popupset>
104 104
105 <hbox> 105 <hbox>
106 <hbox align="center" flex="1"> 106 <hbox align="center" flex="1">
107 <label value="&search.label;" accesskey="&search.accesskey;" control="sear chField"/> 107 <label value="&search.label;" control="searchField"/>
108 <textbox id="searchField" flex="1" type="search" oncommand="treeView.setFi lter(this.value)"/> 108 <textbox id="searchField" flex="1" type="search" oncommand="treeView.setFi lter(this.value)"/>
109 </hbox> 109 </hbox>
110 <description id="detachButton" value="&detach.label;" onclick="detach(true)" /> 110 <description id="detachButton" value="&detach.label;" onclick="detach(true)" />
111 <description id="reattachButton" value="&reattach.label;" onclick="if (this. getAttribute('disabled') != 'true') detach(false)" hidden="true"/> 111 <description id="reattachButton" value="&reattach.label;" onclick="if (this. getAttribute('disabled') != 'true') detach(false)" hidden="true"/>
112 </hbox> 112 </hbox>
113 113
114 <tree id="list" context="context" flex="1" seltype="multiple" enableColumnDrag ="true" 114 <tree id="list" context="context" flex="1" seltype="multiple" enableColumnDrag ="true"
115 defaultSort="state descending" persist="defaultSort" 115 defaultSort="state descending" persist="defaultSort"
116 onkeypress="if (event.keyCode == event.DOM_VK_RETURN || event.keyCode == event.DOM_VK_ENTER) doBlock()"> 116 onkeypress="if (event.keyCode == event.DOM_VK_RETURN || event.keyCode == event.DOM_VK_ENTER) doBlock()">
117 <treecols> 117 <treecols>
(...skipping 12 matching lines...) Expand all
130 <treecol id="filterSource" label="&filterSource.label;" width="100" hidden ="true" persist="width ordinal sortDirection hidden"/> 130 <treecol id="filterSource" label="&filterSource.label;" width="100" hidden ="true" persist="width ordinal sortDirection hidden"/>
131 </treecols> 131 </treecols>
132 <treechildren id="treechildren" 132 <treechildren id="treechildren"
133 tooltip="tooltip" 133 tooltip="tooltip"
134 onclick="handleClick(event)" 134 onclick="handleClick(event)"
135 ondblclick="handleDblClick(event)" 135 ondblclick="handleDblClick(event)"
136 noitemslabel="&noitems.label;" 136 noitemslabel="&noitems.label;"
137 whitelistedlabel="&whitelisted.label;"/> 137 whitelistedlabel="&whitelisted.label;"/>
138 </tree> 138 </tree>
139 </page> 139 </page>
OLDNEW

Powered by Google App Engine
This is Rietveld