Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 title=Adblock Plus - Surf the web without annoying ads! | 1 title=Adblock Plus - Surf the web without annoying ads! |
2 noheading=True | 2 noheading=True |
3 localefile=index | 3 localefile=index |
4 | 4 |
5 {# | 5 {# |
6 # This file is part of the Adblock Plus website, | 6 # This file is part of the Adblock Plus website, |
7 # Copyright (C) 2006-2015 Eyeo GmbH | 7 # Copyright (C) 2006-2015 Eyeo GmbH |
8 # | 8 # |
9 # Adblock Plus is free software: you can redistribute it and/or modify | 9 # Adblock Plus is free software: you can redistribute it and/or modify |
10 # it under the terms of the GNU General Public License version 3 as | 10 # it under the terms of the GNU General Public License version 3 as |
11 # published by the Free Software Foundation. | 11 # published by the Free Software Foundation. |
12 # | 12 # |
13 # Adblock Plus is distributed in the hope that it will be useful, | 13 # Adblock Plus is distributed in the hope that it will be useful, |
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 # GNU General Public License for more details. | 16 # GNU General Public License for more details. |
17 # | 17 # |
18 # You should have received a copy of the GNU General Public License | 18 # You should have received a copy of the GNU General Public License |
19 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 19 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
20 #} | 20 #} |
21 | 21 |
22 <head> | 22 <head> |
23 <link class="cssfx" href="/css/index.css" rel="stylesheet"> | 23 <link class="cssfx" href="/css/index.css" rel="stylesheet"> |
24 <link class="cssfx" href="/css/index-desktop.css" media="(min-width: 40.5em)" re l="stylesheet"> | 24 <link class="cssfx" href="/css/index-desktop.css" media="(min-width: 1000px)" re l="stylesheet"> |
25 <link href="/css/index-mobile.css" media="screen and (max-width: 40.5em)" rel="s tylesheet"> | 25 <link href="/css/index-mobile.css" media="(max-width: 1000px)" rel="stylesheet"> |
26 | 26 |
27 <link href="https://adblockplus.org/" rel="canonical"> | 27 <link href="https://adblockplus.org/" rel="canonical"> |
28 <link href="https://chrome.google.com/webstore/detail/cfhdojbkjhnklbpkdaibdccddi lifddb" rel="chrome-webstore-item"> | 28 <link href="https://chrome.google.com/webstore/detail/cfhdojbkjhnklbpkdaibdccddi lifddb" rel="chrome-webstore-item"> |
29 <meta content="product" property="og:type"> | 29 <meta content="product" property="og:type"> |
30 <meta content="https://adblockplus.org/img/adblockplus_promo.png" property="og:i mage"> | 30 <meta content="https://adblockplus.org/img/adblockplus_promo.png" property="og:i mage"> |
31 <meta content="https://adblockplus.org/" property="og:url"> | 31 <meta content="https://adblockplus.org/" property="og:url"> |
32 <meta content="{{"Adblock Plus - Surf the web without annoying ads!"|translate(" s1")}}" name="title"> | 32 <meta content="{{"Adblock Plus - Surf the web without annoying ads!"|translate(" s1")}}" name="title"> |
33 <meta content="{{"Adblock Plus is the most popular adblocker available for Firef ox, Chrome, Opera, Safari, Android and Internet Explorer. Block all annoying ads all over the web: remove video ads on YouTube, block Facebook ads, get rid of p op-ups and much more. On Google Chrome, Adblock Plus is one of the fastest growi ng extensions ever. Our adblock for Chrome is being used by 10 million people. D ownload online for free now!"|translate("s2")}}" name="description"> | 33 <meta content="{{"Adblock Plus is the most popular adblocker available for Firef ox, Chrome, Opera, Safari, Android and Internet Explorer. Block all annoying ads all over the web: remove video ads on YouTube, block Facebook ads, get rid of p op-ups and much more. On Google Chrome, Adblock Plus is one of the fastest growi ng extensions ever. Our adblock for Chrome is being used by 10 million people. D ownload online for free now!"|translate("s2")}}" name="description"> |
34 <meta content="{{"Adblock Plus - Surf the web without annoying ads!"|translate(" s1")}}" property="og:title"> | 34 <meta content="{{"Adblock Plus - Surf the web without annoying ads!"|translate(" s1")}}" property="og:title"> |
35 <meta content="{{"Adblock Plus is the most popular adblocker available for Firef ox, Chrome, Opera, Safari, Android and Internet Explorer. Block all annoying ads all over the web: remove video ads on YouTube, block Facebook ads, get rid of p op-ups and much more. On Google Chrome, Adblock Plus is one of the fastest growi ng extensions ever. Our adblock for Chrome is being used by 10 million people. D ownload online for free now!"|translate("s2")}}" property="og:description"> | 35 <meta content="{{"Adblock Plus is the most popular adblocker available for Firef ox, Chrome, Opera, Safari, Android and Internet Explorer. Block all annoying ads all over the web: remove video ads on YouTube, block Facebook ads, get rid of p op-ups and much more. On Google Chrome, Adblock Plus is one of the fastest growi ng extensions ever. Our adblock for Chrome is being used by 10 million people. D ownload online for free now!"|translate("s2")}}" property="og:description"> |
36 <script type="text/javascript"> | |
saroyanm
2015/08/20 20:54:53
Please move script to index.js
| |
37 //<![CDATA[ | |
38 function addListener(obj, type, listener, useCapture) | |
39 { | |
40 if ("addEventListener" in obj) | |
41 { | |
42 obj.addEventListener(type, function(ev) | |
43 { | |
44 if (listener(ev) === false) | |
45 ev.preventDefault(); | |
46 }, useCapture); | |
47 } | |
48 else | |
49 { | |
50 // IE 8 | |
51 if (type == "DOMContentLoaded") | |
52 type = "readystatechange"; | |
53 | |
54 type = "on" + type; | |
55 if ("attachEvent" in obj) | |
56 { | |
57 obj.attachEvent(type, function() | |
58 { | |
59 if (document.readyState == "complete" && listener(event) === false) | |
60 event.returnValue = false; | |
61 }); | |
62 } | |
63 else | |
64 { | |
65 obj[type] = listener; | |
66 } | |
67 } | |
68 } | |
69 | |
70 function addPlaceholder(textbox) | |
71 { | |
72 textbox.setAttribute("class", "placeholder"); | |
73 textbox.value = getPlaceholderText(); | |
74 } | |
75 | |
76 function getPlaceholderText() | |
77 { | |
78 return document.getElementById("subscribe-textbox").getAttribute("placeholder" ); | |
79 } | |
80 | |
81 function contentLoad() | |
82 { | |
83 var emailTextbox = document.getElementById("subscribe-textbox"); | |
84 | |
85 // IE9 + Safari iOS | |
86 if (!("placeholder" in document.createElement("input")) | |
87 && !emailTextbox.value) | |
88 { | |
89 addPlaceholder(emailTextbox); | |
90 addListener(emailTextbox, "focus", function() | |
91 { | |
92 if (emailTextbox.value == getPlaceholderText()) | |
93 { | |
94 emailTextbox.value = ""; | |
95 emailTextbox.setAttribute("class", ""); | |
96 } | |
97 }, false); | |
98 | |
99 addListener(emailTextbox, "blur", function() | |
100 { | |
101 if (!emailTextbox.value) | |
102 addPlaceholder(emailTextbox); | |
103 }, false); | |
104 } | |
105 | |
106 addListener(document.getElementById("subscribe-form"), "submit", function() | |
107 { | |
108 var formElement = document.getElementById("subscribe-form"); | |
109 if (!window.XMLHttpRequest) | |
110 { | |
111 formElement.submit(); | |
112 return false; | |
113 } | |
114 | |
115 var pathArray = window.location.pathname.split("/"); | |
116 var params = emailTextbox.name + "=" + encodeURIComponent(emailTextbox.value ); | |
117 params += "&lang=" + pathArray[1]; | |
118 params += "&edge=" + "true"; | |
saroyanm
2015/08/20 20:54:53
We were not passing parameter for Adblock Browser
Oleksandr
2015/08/26 00:19:28
No. Adblock Browser is default.
| |
119 var request = new XMLHttpRequest(); | |
120 request.open("POST", formElement.action, true); | |
121 request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded" ); | |
122 addListener(request, "readystatechange", function() | |
123 { | |
124 if (request.readyState == 4) | |
125 { | |
126 if (request.status >= 200 && request.status < 300) | |
127 { | |
128 formElement.setAttribute("class", "success"); | |
129 } | |
130 else if (request.status == 400) | |
131 { | |
132 formElement.setAttribute("class", "invalid"); | |
133 } | |
134 else | |
135 { | |
136 var errorWrapper = document.getElementById("response-error"); | |
137 if ("textContent" in errorWrapper) | |
138 errorWrapper.textContent = request.statusText; | |
139 else // IE8 | |
140 errorWrapper.innerText = request.statusText; | |
141 | |
142 formElement.setAttribute("class", "error"); | |
143 } | |
144 } | |
145 }, false); | |
146 request.send(params); | |
147 return false; | |
148 }, false); | |
149 } | |
150 addListener(document, "DOMContentLoaded", contentLoad, false); | |
151 //]]> | |
152 </script> | |
153 | |
154 </head> | 36 </head> |
155 | 37 |
156 | 38 <div id="abb-banner"> |
39 <h2>{{"Want to block ads on your smartphone or tablet?"|translate("abb-banner- headline")}}</h2> | |
40 <img src="/img/abb-promo-image.png" alt="{{"Adblock Browser promotional image" |translate("abb-promotion-alt")}}" /> | |
41 <a id="abb-android-download" href="https://adblockplus.org/redirect?link=adblo ck_browser_android_store" target="_blank">{{"Download Adblock Browser"|translate ("abb-banner-button-text")}}</a> | |
42 <a id="abb-ios-download" href="https://adblockplus.org/redirect?link=adblock_b rowser_ios_store" target="_blank">{{"Download Adblock Browser"|translate("abb-ba nner-button-text")}}</a> | |
43 </div> | |
157 <div itemscope="itemscope" itemtype="http://schema.org/SoftwareApplication"> | 44 <div itemscope="itemscope" itemtype="http://schema.org/SoftwareApplication"> |
158 <section id="main"> | 45 <section id="main"> |
159 <div id="summary"> | 46 <div id="summary"> |
160 <h1 itemprop="name">{{"Adblock Plus"|translate("s5")}}</h1> | 47 <h1 itemprop="name">{{"Adblock Plus"|translate("s5")}}</h1> |
161 <h2 itemprop="description">{{"Surf the web without annoying ads!"|translat e("s6")}}</h2> | 48 <h2 itemprop="description">{{"Surf the web without annoying ads!"|translat e("s6")}}</h2> |
162 | 49 |
163 <ul id="features"> | 50 <ul id="features"> |
164 <li itemprop="featureList"> | 51 <li itemprop="featureList"> |
165 <div class="sprite"></div> | 52 <div class="sprite"></div> |
166 {{"Can block tracking, malware domains, banners, pop-ups and video ads - even on Facebook and YouTube"|translate("s7")}} | 53 {{"Can block tracking, malware domains, banners, pop-ups and video ads - even on Facebook and YouTube"|translate("s7")}} |
167 </li> | 54 </li> |
168 <li itemprop="featureList"> | 55 <li itemprop="featureList"> |
169 <div class="sprite"></div> | 56 <div class="sprite"></div> |
170 {{"Unobtrusive ads aren't being blocked in order to support websites (<a href=\" acceptable-ads\">configurable</a>)"|translate("s8")}} | 57 {{"Unobtrusive ads aren't being blocked in order to support websites (<a href=\" acceptable-ads\">configurable</a>)"|translate("s8")}} |
171 </li> | 58 </li> |
172 <li class="emphasized" id="feature-free" itemprop="featureList"> | 59 <li class="emphasized" id="feature-free" itemprop="featureList"> |
173 <div class="sprite"></div> | 60 <div class="sprite"></div> |
174 {{"It's free!"|translate("s9")}} | 61 {{"It's free!"|translate("s9")}} |
175 <span class="license-note" style="display: inline">{{"(<a href=\"https ://www.gnu.org/licenses/translations.fr.html\">GPLv3</a>)"|translate("s10")}}</s pan> | 62 <span class="license-note" style="display: inline">{{"(<a href=\"https ://www.gnu.org/licenses\">GPLv3</a>)"|translate("s10")}}</span> |
176 </li> | 63 </li> |
177 <li id="feature-maxthon" itemprop="featureList"> | 64 <li id="feature-maxthon" itemprop="featureList"> |
178 <div class="sprite"></div> | 65 <div class="sprite"></div> |
179 {{"Integrated by default in"|translate("s11")}} <a href="http://www.maxthon.com/ " target="_blank">{{"Maxthon Cloud Browser"|translate("s12")}}</a> | 66 {{"Integrated by default in"|translate("s11")}} <a href="http://www.maxthon.com/ " target="_blank">{{"Maxthon Cloud Browser"|translate("s12")}}</a> |
180 </li> | 67 </li> |
181 <li id="feature-edge" itemprop="featureList"> | |
182 <p class="subscribe-description"> | |
183 {{"Get a heads-up prior to the launch!"|translate("ios-subscription- description")}} | |
saroyanm
2015/08/20 20:54:53
I assume the text was copy pasted, please change t
Oleksandr
2015/08/26 00:19:28
Done. I assumed we could reuse the ios translation
| |
184 </p> | |
185 <form id="subscribe-form" accept-charset="utf-8" action="/submitEmail" method="post"> | |
saroyanm
2015/08/20 20:54:54
I'd not use some more edge specific IDs, probably
| |
186 <input id="subscribe-textbox" type="email" name="email" placeholder= "{{"Your email address"|translate("ios-subscription-input-placeholder")}}" requi red /> | |
187 <button id="subscribe-button" type="submit"><span>{{"Notify me"|tran slate("ios-subscription-button")}}</span></button> | |
188 <span class="sucess-label"> | |
189 {{"A confirmation email has been sent. Please check your email and click the confirmation link."|translate("subscription-message-success")}} | |
190 </span> | |
191 <span class="invalid-label"> | |
192 {{"Please enter a valid email address."|translate("subscription-me ssage-invalid-email")}} | |
193 </span> | |
194 <span id="response-error"> | |
195 </span> | |
196 </form> | |
197 </li> | |
198 </ul> | 68 </ul> |
69 </div> | |
70 | |
71 <div id="edge-subscription"> | |
72 <h3> | |
73 {{"Get a heads-up prior to the launch!"|translate("subscription-descript ion")}} | |
74 </h3> | |
75 <form accept-charset="utf-8" method="post"> | |
76 <input class="subscribe-textbox" type="email" name="email" placeholder=" {{"Your email address"|translate("subscription-input-placeholder")}}" required / > | |
77 <input type="hidden" name="lang" value="{{locale}}" /> | |
78 <input type="hidden" name="product" value="{{page}}" /> | |
79 <button type="submit"><span>{{"Notify me"|translate("subscription-button ")}}</span></button> | |
80 <span class="sucess-label"> | |
81 {{"A confirmation email has been sent. Please check your email and cli ck the confirmation link."|translate("subscription-message-success")}} | |
82 </span> | |
83 <span class="invalid-label"> | |
84 {{"Please enter a valid email address."|translate("subscription-messag e-invalid-email")}} | |
85 </span> | |
86 <span class="response-error"> | |
87 </span> | |
88 </form> | |
199 </div> | 89 </div> |
200 | 90 |
201 <div id="install"> | 91 <div id="install"> |
202 <a class="install-button" href="https://update.adblockplus.org/latest/adbl ockplusfirefox.xpi" id="install-firefox">{{"Install for Firefox"|translate("s13" )}}</a> | 92 <a class="install-button" href="https://update.adblockplus.org/latest/adbl ockplusfirefox.xpi" id="install-firefox">{{"Install for Firefox"|translate("s13" )}}</a> |
203 <a class="install-button" href="https://chrome.google.com/webstore/detail/ cfhdojbkjhnklbpkdaibdccddilifddb" id="install-chrome" onclick="chrome.webstore.i nstall(); return false;">{{"Install for Chrome"|translate("s14")}}</a> | 93 <a class="install-button" href="https://chrome.google.com/webstore/detail/ cfhdojbkjhnklbpkdaibdccddilifddb" id="install-chrome" onclick="chrome.webstore.i nstall(); return false;">{{"Install for Chrome"|translate("s14")}}</a> |
204 <a class="install-button" href="https://addons.opera.com/extensions/detail s/opera-adblock/?display=en-US" id="install-opera">{{"Install for Opera"|transla te("s15")}}</a> | 94 <a class="install-button" href="https://addons.opera.com/extensions/detail s/opera-adblock/?display=en-US" id="install-opera">{{"Install for Opera"|transla te("s15")}}</a> |
205 <a class="install-button" href="android-install" id="install-android">{{"I nstall for Android"|translate("s16")}}</a> | 95 <a class="install-button" href="android-install" id="install-android">{{"I nstall for Android"|translate("s16")}}</a> |
206 <a class="install-button" href="https://update.adblockplus.org/latest/adbl ockplusie.exe" id="install-internet-explorer">{{"Install for Internet Explorer"| translate("s17")}}</a> | 96 <a class="install-button" href="https://update.adblockplus.org/latest/adbl ockplusie.exe" id="install-internet-explorer">{{"Install for Internet Explorer"| translate("s17")}}</a> |
207 <a class="install-button" href="https://update.adblockplus.org/latest/adbl ockplussafari.safariextz" id="install-safari">{{"Install for Safari"|translate(" s18")}}</a> | 97 <a class="install-button" href="https://update.adblockplus.org/latest/adbl ockplussafari.safariextz" id="install-safari">{{"Install for Safari"|translate(" s18")}}</a> |
208 <a class="install-button" href="https://chrome.google.com/webstore/detail/ cfhdojbkjhnklbpkdaibdccddilifddb" id="install-yandex-browser" onclick="chrome.we bstore.install(); return false;">{{"Install for Yandex Browser"|translate("s19") }}</a> | 98 <a class="install-button" href="https://chrome.google.com/webstore/detail/ cfhdojbkjhnklbpkdaibdccddilifddb" id="install-yandex-browser" onclick="chrome.we bstore.install(); return false;">{{"Install for Yandex Browser"|translate("s19") }}</a> |
209 <div id="edge-other-browsers">{{"Download Adblock Plus for another browser :"|translate("edge-other-browser")}}</div> | 99 <div id="other-browsers">{{"Download Adblock Plus for another browser:"|tr anslate("other-browsers")}}</div> |
saroyanm
2015/08/20 20:54:53
Pleaase don't make IDs for current element edge sp
| |
210 <ul> | 100 <ul> |
211 <li> | 101 <li> |
212 <a class="sprite" href="firefox" id="platform-firefox" title="{{"Adblo ck Plus for Firefox"|translate("s20")}}"></a> | 102 <a class="sprite" href="firefox" id="platform-firefox" title="{{"Adblo ck Plus for Firefox"|translate("s20")}}"></a> |
213 </li> | 103 </li> |
214 <li> | 104 <li> |
215 <a class="sprite" href="chrome" id="platform-chrome" title="{{"Adblock Plus for Chrome"|translate("s21")}}"></a> | 105 <a class="sprite" href="chrome" id="platform-chrome" title="{{"Adblock Plus for Chrome"|translate("s21")}}"></a> |
216 </li> | 106 </li> |
217 <li> | 107 <li> |
218 <a class="sprite" href="android" id="platform-android" title="{{"Adblo ck Plus for Android"|translate("s22")}}"></a> | 108 <a class="sprite" href="android" id="platform-android" title="{{"Adblo ck Plus for Android"|translate("s22")}}"></a> |
219 </li> | 109 </li> |
(...skipping 12 matching lines...) Expand all Loading... | |
232 <li> | 122 <li> |
233 <a class="sprite" href="maxthon" id="platform-maxthon" title="{{"Adblo ck Plus for Maxthon"|translate("s27")}}"></a> | 123 <a class="sprite" href="maxthon" id="platform-maxthon" title="{{"Adblo ck Plus for Maxthon"|translate("s27")}}"></a> |
234 </li> | 124 </li> |
235 <li> | 125 <li> |
236 <a class="sprite" href="edge" id="platform-edge" title="{{"Adblock Plu s for Microsoft Edge"|translate("abp-microsoft-edge")}}"></a> | 126 <a class="sprite" href="edge" id="platform-edge" title="{{"Adblock Plu s for Microsoft Edge"|translate("abp-microsoft-edge")}}"></a> |
237 </li> | 127 </li> |
238 </ul> | 128 </ul> |
239 </div> | 129 </div> |
240 </section> | 130 </section> |
241 | 131 |
242 <div id="adblock-browser-notification"> | 132 <div id="messages-wrapper"> |
243 {{'Be the first to experience the new Adblock Browser for smartphones and ta blets. <a href="adblock-browser">Get it here.</a>'|translate("adblock-browser-no tification")}} | 133 <? include abb-notification ?> |
134 <div class="disclaimer lang-fr"> | |
135 En téléchargeant le logiciel Adblock Plus vous acceptez que si vous utilis ez Adblock Plus pour visiter un site Internet en violation de toute obligation o u droit de quelque nature que ce soit en relation avec ce site Internet, en aucu n cas EYEO ne pourra être tenu pour responsable envers vous ou tout autre tiers pour toute perte ou dommage (y compris, sans y être limité, les dommages pour pe rte de chances et perte de bénéfices) découlant directement ou indirectement de votre utilisation de ce logiciel. | |
136 </div> | |
137 <div id="maxthon-notification"> | |
138 使用傲游云浏览器,享受最好的广告过滤体验. (内置Adblock Plus) <a href="http://www.maxthon.cn" tar get="_blank">下载傲游云浏览器</a> | |
139 </div> | |
140 <div class="warning-platform firefox">{{"It appears that you are using Mozil la Firefox."|translate("s28")}} <a href="firefox">{{"Switch to Adblock Plus for Firefox."|translate("s29")}}</a></div> | |
141 <div class="warning-platform chrome">{{"It appears that you are using Google Chrome."|translate("s30")}} <a href="chrome">{{"Switch to Adblock Plus for Chro me."|translate("s31")}}</a></div> | |
142 <div class="warning-platform android">{{"It appears that you are using Andro id."|translate("s32")}} <a href="android">{{"Switch to Adblock Plus for Android. "|translate("s33")}}</a></div> | |
143 <div class="warning-platform opera">{{"It appears that you are using Opera." |translate("s34")}} <a href="opera">{{"Switch to Adblock Plus for Opera."|transl ate("s35")}}</a></div> | |
144 <div class="warning-platform internet-explorer">{{"It appears that you are u sing Internet Explorer."|translate("s36")}} <a href="internet-explorer">{{"Switc h to Adblock Plus for Internet Explorer."|translate("s37")}}</a></div> | |
145 <div class="warning-platform safari">{{"It appears that you are using Safari ."|translate("s38")}} <a href="safari">{{"Switch to Adblock Plus for Safari."|tr anslate("s39")}}</a></div> | |
146 <div class="warning-platform yandex-browser">{{"It appears that you are usin g Yandex Browser."|translate("s40")}} <a href="yandex-browser">{{"Switch to Adbl ock Plus for Yandex Browser."|translate("s41")}}</a></div> | |
147 <div class="warning-platform maxthon">{{"It appears that you are using Maxth on."|translate("s42")}} <a href="maxthon">{{"Switch to Adblock Plus for Maxthon. "|translate("s43")}}</a></div> | |
244 </div> | 148 </div> |
245 <div class="disclaimer lang-fr"> | |
246 En téléchargeant le logiciel Adblock Plus vous acceptez que si vous utilisez Adblock Plus pour visiter un site Internet en violation de toute obligation ou droit de quelque nature que ce soit en relation avec ce site Internet, en aucun cas EYEO ne pourra être tenu pour responsable envers vous ou tout autre tiers po ur toute perte ou dommage (y compris, sans y être limité, les dommages pour pert e de chances et perte de bénéfices) découlant directement ou indirectement de vo tre utilisation de ce logiciel. | |
247 </div> | |
248 <div id="maxthon-notification"> | |
249 使用傲游云浏览器,享受最好的广告过滤体验. (内置Adblock Plus) <a href="http://www.maxthon.cn" targe t="_blank">下载傲游云浏览器</a> | |
250 </div> | |
251 <div class="warning-platform firefox">{{"It appears that you are using Mozilla Firefox."|translate("s28")}} <a href="firefox">{{"Switch to Adblock Plus for Fi refox."|translate("s29")}}</a></div> | |
252 <div class="warning-platform chrome">{{"It appears that you are using Google C hrome."|translate("s30")}} <a href="chrome">{{"Switch to Adblock Plus for Chrome ."|translate("s31")}}</a></div> | |
253 <div class="warning-platform android">{{"It appears that you are using Android ."|translate("s32")}} <a href="android">{{"Switch to Adblock Plus for Android."| translate("s33")}}</a></div> | |
254 <div class="warning-platform opera">{{"It appears that you are using Opera."|t ranslate("s34")}} <a href="opera">{{"Switch to Adblock Plus for Opera."|translat e("s35")}}</a></div> | |
255 <div class="warning-platform internet-explorer">{{"It appears that you are usi ng Internet Explorer."|translate("s36")}} <a href="internet-explorer">{{"Switch to Adblock Plus for Internet Explorer."|translate("s37")}}</a></div> | |
256 <div class="warning-platform safari">{{"It appears that you are using Safari." |translate("s38")}} <a href="safari">{{"Switch to Adblock Plus for Safari."|tran slate("s39")}}</a></div> | |
257 <div class="warning-platform yandex-browser">{{"It appears that you are using Yandex Browser."|translate("s40")}} <a href="yandex-browser">{{"Switch to Adbloc k Plus for Yandex Browser."|translate("s41")}}</a></div> | |
258 <div class="warning-platform maxthon">{{"It appears that you are using Maxthon ."|translate("s42")}} <a href="maxthon">{{"Switch to Adblock Plus for Maxthon."| translate("s43")}}</a></div> | |
259 | |
260 <iframe frameborder="0" height="285" id="video" itemprop="video" src="//www.yo utube-nocookie.com/embed/pVYtzF5SemU?html5=1&autohide=1&enablejsapi=1&am p;controls=2&fs=1&modestbranding=1&rel=0&showinfo=0&theme=li ght" width="520"></iframe> | 149 <iframe frameborder="0" height="285" id="video" itemprop="video" src="//www.yo utube-nocookie.com/embed/pVYtzF5SemU?html5=1&autohide=1&enablejsapi=1&am p;controls=2&fs=1&modestbranding=1&rel=0&showinfo=0&theme=li ght" width="520"></iframe> |
261 <img height="305" id="maxthon-instruction" src="/img/maxthon-instruction.png" width="540"> | 150 <img height="305" id="maxthon-instruction" src="/img/maxthon-instruction.png" width="540"> |
262 <img height="305" id="edge-incoming" src="/img/edge_teaser.png" width="540"> | 151 <img id="edge-teaser" src="/img/edge_teaser.png" alt={{"Comming soon image of Adblock Plus for Microsoft Edge"|translate("edge-teaser")}} /> |
saroyanm
2015/08/20 20:54:53
incoming ?
saroyanm
2015/08/20 20:54:53
Please don't specify width and height inside image
| |
263 </div> | 152 </div> |
264 | 153 |
265 <div id="key-facts"> | 154 <div id="key-facts"> |
266 <section class="first"> | 155 <section class="first"> |
267 <div class="sprite" id="facts-open-source"></div> | 156 <div class="sprite" id="facts-open-source"></div> |
268 <h1>{{"Open Source"|translate("s44")}}</h1> | 157 <h1>{{"Open Source"|translate("s44")}}</h1> |
269 <p> | 158 <p> |
270 {{"Adblock Plus is an open source project.\n <a href=\"contribute\" >Join us!</a>"|translate("s45")}} | 159 {{"Adblock Plus is an open source project.\n <a href=\"contribute\" >Join us!</a>"|translate("s45")}} |
271 </p> | 160 </p> |
272 </section> | 161 </section> |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
319 <button id="more-safari" onclick="showTab(this);return false;"> | 208 <button id="more-safari" onclick="showTab(this);return false;"> |
320 {{"Apple Safari"|translate("s57")}} | 209 {{"Apple Safari"|translate("s57")}} |
321 </button> | 210 </button> |
322 <button id="more-yandex-browser" onclick="showTab(this);return false;"> | 211 <button id="more-yandex-browser" onclick="showTab(this);return false;"> |
323 {{"Yandex Browser"|translate("s58")}} | 212 {{"Yandex Browser"|translate("s58")}} |
324 </button> | 213 </button> |
325 <button id="more-maxthon" onclick="showTab(this);return false;"> | 214 <button id="more-maxthon" onclick="showTab(this);return false;"> |
326 {{"Maxthon"|translate("s59")}} | 215 {{"Maxthon"|translate("s59")}} |
327 </button> | 216 </button> |
328 <button id="more-edge" onclick="showTab(this);return false;"> | 217 <button id="more-edge" onclick="showTab(this);return false;"> |
329 {{"Microsoft Edge"|translate("Microsoft Edge")}} | 218 {{"Microsoft Edge"|translate("microsoft-edge")}} |
saroyanm
2015/08/20 20:54:53
Please don't use messageID with space, make it con
| |
330 </button> | 219 </button> |
331 </div> | 220 </div> |
332 | 221 |
333 <div class="more-tab" id="tab-firefox"> | 222 <div class="more-tab" id="tab-firefox"> |
334 <h2>{{"Download Firefox Adblock Plus"|translate("s60")}}</h2> | 223 <h2>{{"Download Firefox Adblock Plus"|translate("s60")}}</h2> |
335 | 224 |
336 <p> | 225 <p> |
337 {{"Firefox is a free and open source browser available for Windows, OS X , Linux, and Android which supports add-ons. Add-ons are extensions to your brow ser to improve privacy and security and the way you view the web. Since its laun ch in 2006, Adblock Plus has continuously been the most popular add-on for the M ozilla Firefox web browser."|translate("s61")}} | 226 {{"Firefox is a free and open source browser available for Windows, OS X , Linux, and Android which supports add-ons. Add-ons are extensions to your brow ser to improve privacy and security and the way you view the web. Since its laun ch in 2006, Adblock Plus has continuously been the most popular add-on for the M ozilla Firefox web browser."|translate("s61")}} |
338 </p> | 227 </p> |
339 | 228 |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
477 <h2>{{"Adblock Plus for Maxthon"|translate("s97")}}</h2> | 366 <h2>{{"Adblock Plus for Maxthon"|translate("s97")}}</h2> |
478 | 367 |
479 <p> | 368 <p> |
480 {{"Different from being as an extension on other browsers, Adblock Plus has been integrated by default for Maxthon users, and as an opt-in option for Ch inese users. Are you fed up with advertisers infringing on your browsing experie nce? Simply install Maxthon Cloud Browser and all annoying ads will be automatic ally blocked from the internet. Blinking banners, popups, video commercials on Y ouTube and Facebook ads: Maxthon Cloud Browser with Adblock Plus integrated will automatically remove any unwanted ad from every website you visit. Want more? Y ou can easily activate additional privacy and security features such as tracking and malware protection."|translate("s98")}} | 369 {{"Different from being as an extension on other browsers, Adblock Plus has been integrated by default for Maxthon users, and as an opt-in option for Ch inese users. Are you fed up with advertisers infringing on your browsing experie nce? Simply install Maxthon Cloud Browser and all annoying ads will be automatic ally blocked from the internet. Blinking banners, popups, video commercials on Y ouTube and Facebook ads: Maxthon Cloud Browser with Adblock Plus integrated will automatically remove any unwanted ad from every website you visit. Want more? Y ou can easily activate additional privacy and security features such as tracking and malware protection."|translate("s98")}} |
481 </p> | 370 </p> |
482 </div> | 371 </div> |
483 <div class="more-tab" id="tab-edge"> | 372 <div class="more-tab" id="tab-edge"> |
484 <h2>{{"Be notified when Adblock Plus for Microsoft Edge is available!"|tra nslate("abp-for-edge-be-notified")}}</h2> | 373 <h2>{{"Be notified when Adblock Plus for Microsoft Edge is available!"|tra nslate("abp-for-edge-be-notified")}}</h2> |
485 | 374 |
486 <p> | 375 <p> |
487 {{"Microsoft Edge <a href='https://wpdev.uservoice.com/forums/257854-mic rosoft-edge-developer/suggestions/6508820-javascript-browser-extensions'>does no t yet support extensions</a>. However, you can be sure that a version of Adblock Plus for Microsoft Edge will be released as soon as possible. Enter your email in the field above to receive a notification when Adblock Plus for Microsoft Edg e is available. While you're waiting, you may want to try the latest version of Adblock Plus for Internet Explorer"|translate("ms-edge-description")}} | 376 {{"Microsoft Edge <a href='https://wpdev.uservoice.com/forums/257854-mic rosoft-edge-developer/suggestions/6508820-javascript-browser-extensions'>does no t yet support extensions</a>. However, you can be sure that a version of Adblock Plus for Microsoft Edge will be released as soon as possible. Enter your email in the field above to receive a notification when Adblock Plus for Microsoft Edg e is available. While you're waiting, you may want to try the latest version of Adblock Plus for Internet Explorer."|translate("ms-edge-description")}} |
saroyanm
2015/08/20 20:54:53
I don't remember this text to be specified. Also m
Oleksandr
2015/08/26 00:19:29
This has now been approved by Lisa. See here: http
| |
488 </p> | 377 </p> |
489 </div> | 378 </div> |
490 </div> | 379 </div> |
491 </section> | 380 </section> |
492 | 381 |
493 <script src="/js/index.js"></script> | 382 <script src="/js/index.js"></script> |
LEFT | RIGHT |