LEFT | RIGHT |
1 <?xml version="1.0"?> | 1 <?xml version="1.0"?> |
2 | 2 |
3 <!-- | 3 <!-- |
4 - This file is part of the Adblock Plus, | 4 - This file is part of the Adblock Plus, |
5 - Copyright (C) 2006-2012 Eyeo GmbH | 5 - Copyright (C) 2006-2012 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 <canvas xmlns="http://www.w3.org/1999/xhtml" id="screenshotCanvas" onmousedo
wn="screenshotDataSource.startSelection(event);" onmouseup="screenshotDataSource
.stopSelection(event);" onmouseout="screenshotDataSource.stopSelection(event);"
onmousemove="screenshotDataSource.updateSelection(event);"/> | 209 <canvas xmlns="http://www.w3.org/1999/xhtml" id="screenshotCanvas" onmousedo
wn="screenshotDataSource.startSelection(event);" onmouseup="screenshotDataSource
.stopSelection(event);" onmouseout="screenshotDataSource.stopSelection(event);"
onmousemove="screenshotDataSource.updateSelection(event);"/> |
210 </vbox> | 210 </vbox> |
211 </wizardpage> | 211 </wizardpage> |
212 | 212 |
213 <wizardpage id="commentPage" pageid="comment" next="send" label="&commentPage.he
ading;" onpageshow="initCommentPage();"> | 213 <wizardpage id="commentPage" pageid="comment" next="send" label="&commentPage.he
ading;" onpageshow="initCommentPage();"> |
214 <description>&emailComment.label;</description> | 214 <description>&emailComment.label;</description> |
215 <hbox class="topLabel" align="baseline"> | 215 <hbox class="topLabel" align="baseline"> |
216 <label id="emailLabel" control="email" value="&email.label;" accesskey="&ema
il.accesskey;"/> | 216 <label id="emailLabel" control="email" value="&email.label;" accesskey="&ema
il.accesskey;"/> |
217 <textbox id="email" persist="value" flex="1" maxlength="200" oninput="update
Email();"/> | 217 <textbox id="email" persist="value" flex="1" maxlength="200" oninput="update
Email();"/> |
218 </hbox> | 218 </hbox> |
219 <checkbox id="anonymousCheckbox" label="&anonymous.label;" accesskey="&anonymo
us.accesskey;" oncommand="updateAnonymity(this.checked);"/> | 219 <checkbox id="anonymousCheckbox" label="&anonymous.label;" accesskey="&anonymo
us.accesskey;" oncommand="updateEmail();"/> |
220 <description id="anonymityWarning" visible="false">&anonymity.warning;</descri
ption> | 220 <description id="anonymityWarning" visible="false">&anonymity.warning;</descri
ption> |
221 | 221 |
222 <description class="topLabel">&commentPage.description;</description> | 222 <description class="topLabel">&commentPage.description;</description> |
223 <label class="topLabel" control="comment" value="&comment.label;" accesskey="&
comment.accesskey;"/> | 223 <label class="topLabel" control="comment" value="&comment.label;" accesskey="&
comment.accesskey;"/> |
224 <textbox id="comment" multiline="true" flex="1" oninput="updateComment();"/> | 224 <textbox id="comment" multiline="true" flex="1" oninput="updateComment();"/> |
225 <description id="commentLengthWarning" visible="false">&comment.lengthWarning;
</description> | 225 <description id="commentLengthWarning" visible="false">&comment.lengthWarning;
</description> |
226 | 226 |
227 <checkbox id="extensionsCheckbox" label="&attachExtensions.label;" accesskey="
&attachExtensions.accesskey;" oncommand="updateExtensions(this.checked);"/> | 227 <checkbox id="extensionsCheckbox" label="&attachExtensions.label;" accesskey="
&attachExtensions.accesskey;" oncommand="updateExtensions(this.checked);"/> |
228 | 228 |
229 <deck id="dataDeck" selectedIndex="0" flex="2"> | 229 <deck id="dataDeck" selectedIndex="0" flex="2"> |
(...skipping 21 matching lines...) Expand all Loading... |
251 | 251 |
252 <iframe id="result" type="content" flex="1" hidden="true" onclick="processLink
Click(event);" | 252 <iframe id="result" type="content" flex="1" hidden="true" onclick="processLink
Click(event);" |
253 confirmationMessage="&sendPage.confirmation;" knownIssueMessage="&send
Page.knownIssue;"/> | 253 confirmationMessage="&sendPage.confirmation;" knownIssueMessage="&send
Page.knownIssue;"/> |
254 | 254 |
255 <hbox id="copyLinkBox" pack="end" hidden="true"> | 255 <hbox id="copyLinkBox" pack="end" hidden="true"> |
256 <button id="copyLink" disabled="true" label="©Link.label;" accesskey="&c
opyLink.accesskey;" oncommand="copyLink(this.getAttribute('url'));"/> | 256 <button id="copyLink" disabled="true" label="©Link.label;" accesskey="&c
opyLink.accesskey;" oncommand="copyLink(this.getAttribute('url'));"/> |
257 </hbox> | 257 </hbox> |
258 </wizardpage> | 258 </wizardpage> |
259 | 259 |
260 </wizard> | 260 </wizard> |
LEFT | RIGHT |