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

Side by Side Diff: includes/index.tmpl

Issue 29322769: Issue 2844 - Create Microsoft Edge coming soon landing page (Closed)
Patch Set: Refactor according to the style guide. Created Aug. 13, 2015, 2:41 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
« no previous file with comments | « no previous file | pages/edge.md » ('j') | static/css/index-desktop.css » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
(...skipping 15 matching lines...) Expand all
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
36 </head> 154 </head>
37 155
38 156
39 <div itemscope="itemscope" itemtype="http://schema.org/SoftwareApplication"> 157 <div itemscope="itemscope" itemtype="http://schema.org/SoftwareApplication">
40 <section id="main"> 158 <section id="main">
41 <div id="summary"> 159 <div id="summary">
42 <h1 itemprop="name">{{"Adblock Plus"|translate("s5")}}</h1> 160 <h1 itemprop="name">{{"Adblock Plus"|translate("s5")}}</h1>
43 <h2 itemprop="description">{{"Surf the web without annoying ads!"|translat e("s6")}}</h2> 161 <h2 itemprop="description">{{"Surf the web without annoying ads!"|translat e("s6")}}</h2>
44 162
45 <ul id="features"> 163 <ul id="features">
46 <li itemprop="featureList"> 164 <li itemprop="featureList">
47 <div class="sprite"></div> 165 <div class="sprite"></div>
48 {{"Can block tracking, malware domains, banners, pop-ups and video ads - even on Facebook and YouTube"|translate("s7")}} 166 {{"Can block tracking, malware domains, banners, pop-ups and video ads - even on Facebook and YouTube"|translate("s7")}}
49 </li> 167 </li>
50 <li itemprop="featureList"> 168 <li itemprop="featureList">
51 <div class="sprite"></div> 169 <div class="sprite"></div>
52 {{"Unobtrusive ads aren't being blocked in order to support websites (<a href=\" acceptable-ads\">configurable</a>)"|translate("s8")}} 170 {{"Unobtrusive ads aren't being blocked in order to support websites (<a href=\" acceptable-ads\">configurable</a>)"|translate("s8")}}
53 </li> 171 </li>
54 <li class="emphasized" id="feature-free" itemprop="featureList"> 172 <li class="emphasized" id="feature-free" itemprop="featureList">
55 <div class="sprite"></div> 173 <div class="sprite"></div>
56 {{"It's free!"|translate("s9")}} 174 {{"It's free!"|translate("s9")}}
57 <span class="license-note" style="display: inline">{{"(<a href=\"https ://www.gnu.org/licenses/translations.fr.html\">GPLv3</a>)"|translate("s10")}}</s pan> 175 <span class="license-note" style="display: inline">{{"(<a href=\"https ://www.gnu.org/licenses/translations.fr.html\">GPLv3</a>)"|translate("s10")}}</s pan>
58 </li> 176 </li>
59 <li id="feature-maxthon" itemprop="featureList"> 177 <li id="feature-maxthon" itemprop="featureList">
60 <div class="sprite"></div> 178 <div class="sprite"></div>
61 {{"Integrated by default in"|translate("s11")}} <a href="http://www.maxthon.com/ " target="_blank">{{"Maxthon Cloud Browser"|translate("s12")}}</a> 179 {{"Integrated by default in"|translate("s11")}} <a href="http://www.maxthon.com/ " target="_blank">{{"Maxthon Cloud Browser"|translate("s12")}}</a>
62 </li> 180 </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>
63 </ul> 198 </ul>
64 </div> 199 </div>
65 200
66 <div id="install"> 201 <div id="install">
67 <a class="install-button" href="https://update.adblockplus.org/latest/adbl ockplusfirefox.xpi" id="install-firefox">{{"Install for Firefox"|translate("s13" )}}</a> 202 <a class="install-button" href="https://update.adblockplus.org/latest/adbl ockplusfirefox.xpi" id="install-firefox">{{"Install for Firefox"|translate("s13" )}}</a>
68 <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> 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>
69 <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> 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>
70 <a class="install-button" href="android-install" id="install-android">{{"I nstall for Android"|translate("s16")}}</a> 205 <a class="install-button" href="android-install" id="install-android">{{"I nstall for Android"|translate("s16")}}</a>
71 <a class="install-button" href="https://update.adblockplus.org/latest/adbl ockplusie.exe" id="install-internet-explorer">{{"Install for Internet Explorer"| translate("s17")}}</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>
72 <a class="install-button" href="https://update.adblockplus.org/latest/adbl ockplussafari.safariextz" id="install-safari">{{"Install for Safari"|translate(" s18")}}</a> 207 <a class="install-button" href="https://update.adblockplus.org/latest/adbl ockplussafari.safariextz" id="install-safari">{{"Install for Safari"|translate(" s18")}}</a>
73 <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> 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>
209 <div id="edge-other-browsers">{{"Download Adblock Plus for another browser :"|translate("edge-other-browser")}}</div>
saroyanm 2015/08/20 20:54:53 Pleaase don't make IDs for current element edge sp
74 <ul> 210 <ul>
75 <li> 211 <li>
76 <a class="sprite" href="firefox" id="platform-firefox" title="{{"Adblo ck Plus for Firefox"|translate("s20")}}"></a> 212 <a class="sprite" href="firefox" id="platform-firefox" title="{{"Adblo ck Plus for Firefox"|translate("s20")}}"></a>
77 </li> 213 </li>
78 <li> 214 <li>
79 <a class="sprite" href="chrome" id="platform-chrome" title="{{"Adblock Plus for Chrome"|translate("s21")}}"></a> 215 <a class="sprite" href="chrome" id="platform-chrome" title="{{"Adblock Plus for Chrome"|translate("s21")}}"></a>
80 </li> 216 </li>
81 <li> 217 <li>
82 <a class="sprite" href="android" id="platform-android" title="{{"Adblo ck Plus for Android"|translate("s22")}}"></a> 218 <a class="sprite" href="android" id="platform-android" title="{{"Adblo ck Plus for Android"|translate("s22")}}"></a>
83 </li> 219 </li>
84 <li> 220 <li>
85 <a class="sprite" href="opera" id="platform-opera" title="{{"Adblock P lus for Opera"|translate("s23")}}"></a> 221 <a class="sprite" href="opera" id="platform-opera" title="{{"Adblock P lus for Opera"|translate("s23")}}"></a>
86 </li> 222 </li>
87 <li> 223 <li>
88 <a class="sprite" href="internet-explorer" id="platform-internet-explo rer" title="{{"Adblock Plus for Internet Explorer"|translate("s24")}}"></a> 224 <a class="sprite" href="internet-explorer" id="platform-internet-explo rer" title="{{"Adblock Plus for Internet Explorer"|translate("s24")}}"></a>
89 </li> 225 </li>
90 <li> 226 <li>
91 <a class="sprite" href="safari" id="platform-safari" title="{{"Adblock Plus for Safari"|translate("s25")}}"></a> 227 <a class="sprite" href="safari" id="platform-safari" title="{{"Adblock Plus for Safari"|translate("s25")}}"></a>
92 </li> 228 </li>
93 <li> 229 <li>
94 <a class="sprite" href="yandex-browser" id="platform-yandex-browser" t itle="{{"Adblock Plus for Yandex Browser"|translate("s26")}}"></a> 230 <a class="sprite" href="yandex-browser" id="platform-yandex-browser" t itle="{{"Adblock Plus for Yandex Browser"|translate("s26")}}"></a>
95 </li> 231 </li>
96 <li> 232 <li>
97 <a class="sprite" href="maxthon" id="platform-maxthon" title="{{"Adblo ck Plus for Maxthon"|translate("s27")}}"></a> 233 <a class="sprite" href="maxthon" id="platform-maxthon" title="{{"Adblo ck Plus for Maxthon"|translate("s27")}}"></a>
98 </li> 234 </li>
235 <li>
236 <a class="sprite" href="edge" id="platform-edge" title="{{"Adblock Plu s for Microsoft Edge"|translate("abp-microsoft-edge")}}"></a>
237 </li>
99 </ul> 238 </ul>
100 </div> 239 </div>
101 </section> 240 </section>
102 241
103 <div id="adblock-browser-notification"> 242 <div id="adblock-browser-notification">
104 {{'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")}} 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")}}
105 </div> 244 </div>
106 <div class="disclaimer lang-fr"> 245 <div class="disclaimer lang-fr">
107 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. 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.
108 </div> 247 </div>
109 <div id="maxthon-notification"> 248 <div id="maxthon-notification">
110 使用傲游云浏览器,享受最好的广告过滤体验. (内置Adblock Plus) <a href="http://www.maxthon.cn" targe t="_blank">下载傲游云浏览器</a> 249 使用傲游云浏览器,享受最好的广告过滤体验. (内置Adblock Plus) <a href="http://www.maxthon.cn" targe t="_blank">下载傲游云浏览器</a>
111 </div> 250 </div>
112 <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> 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>
113 <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> 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>
114 <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> 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>
115 <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> 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>
116 <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> 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>
117 <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> 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>
118 <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> 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>
119 <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> 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>
120 259
121 <iframe frameborder="0" height="285" id="video" itemprop="video" src="//www.yo utube-nocookie.com/embed/pVYtzF5SemU?html5=1&amp;autohide=1&amp;enablejsapi=1&am p;controls=2&amp;fs=1&amp;modestbranding=1&amp;rel=0&amp;showinfo=0&amp;theme=li ght" width="520"></iframe> 260 <iframe frameborder="0" height="285" id="video" itemprop="video" src="//www.yo utube-nocookie.com/embed/pVYtzF5SemU?html5=1&amp;autohide=1&amp;enablejsapi=1&am p;controls=2&amp;fs=1&amp;modestbranding=1&amp;rel=0&amp;showinfo=0&amp;theme=li ght" width="520"></iframe>
122 <img height="305" id="maxthon-instruction" src="/img/maxthon-instruction.png" width="540"> 261 <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">
saroyanm 2015/08/20 20:54:53 incoming ?
saroyanm 2015/08/20 20:54:53 Please don't specify width and height inside image
123 </div> 263 </div>
124 264
125 <div id="key-facts"> 265 <div id="key-facts">
126 <section class="first"> 266 <section class="first">
127 <div class="sprite" id="facts-open-source"></div> 267 <div class="sprite" id="facts-open-source"></div>
128 <h1>{{"Open Source"|translate("s44")}}</h1> 268 <h1>{{"Open Source"|translate("s44")}}</h1>
129 <p> 269 <p>
130 {{"Adblock Plus is an open source project.\n <a href=\"contribute\" >Join us!</a>"|translate("s45")}} 270 {{"Adblock Plus is an open source project.\n <a href=\"contribute\" >Join us!</a>"|translate("s45")}}
131 </p> 271 </p>
132 </section> 272 </section>
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 </button> 318 </button>
179 <button id="more-safari" onclick="showTab(this);return false;"> 319 <button id="more-safari" onclick="showTab(this);return false;">
180 {{"Apple Safari"|translate("s57")}} 320 {{"Apple Safari"|translate("s57")}}
181 </button> 321 </button>
182 <button id="more-yandex-browser" onclick="showTab(this);return false;"> 322 <button id="more-yandex-browser" onclick="showTab(this);return false;">
183 {{"Yandex Browser"|translate("s58")}} 323 {{"Yandex Browser"|translate("s58")}}
184 </button> 324 </button>
185 <button id="more-maxthon" onclick="showTab(this);return false;"> 325 <button id="more-maxthon" onclick="showTab(this);return false;">
186 {{"Maxthon"|translate("s59")}} 326 {{"Maxthon"|translate("s59")}}
187 </button> 327 </button>
328 <button id="more-edge" onclick="showTab(this);return false;">
329 {{"Microsoft Edge"|translate("Microsoft Edge")}}
saroyanm 2015/08/20 20:54:53 Please don't use messageID with space, make it con
330 </button>
188 </div> 331 </div>
189 332
190 <div class="more-tab" id="tab-firefox"> 333 <div class="more-tab" id="tab-firefox">
191 <h2>{{"Download Firefox Adblock Plus"|translate("s60")}}</h2> 334 <h2>{{"Download Firefox Adblock Plus"|translate("s60")}}</h2>
192 335
193 <p> 336 <p>
194 {{"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")}} 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")}}
195 </p> 338 </p>
196 339
197 <p> 340 <p>
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 </p> 473 </p>
331 </div> 474 </div>
332 475
333 <div class="more-tab" id="tab-maxthon"> 476 <div class="more-tab" id="tab-maxthon">
334 <h2>{{"Adblock Plus for Maxthon"|translate("s97")}}</h2> 477 <h2>{{"Adblock Plus for Maxthon"|translate("s97")}}</h2>
335 478
336 <p> 479 <p>
337 {{"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")}} 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")}}
338 </p> 481 </p>
339 </div> 482 </div>
483 <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>
485
486 <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")}}
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>
489 </div>
340 </div> 490 </div>
341 </section> 491 </section>
342 492
343 <script src="/js/index.js"></script> 493 <script src="/js/index.js"></script>
OLDNEW
« no previous file with comments | « no previous file | pages/edge.md » ('j') | static/css/index-desktop.css » ('J')

Powered by Google App Engine
This is Rietveld