LEFT | RIGHT |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 - This file is part of Adblock Plus <http://adblockplus.org/>, | 3 - This file is part of Adblock Plus <http://adblockplus.org/>, |
4 - Copyright (C) 2006-2013 Eyeo GmbH | 4 - Copyright (C) 2006-2013 Eyeo GmbH |
5 - | 5 - |
6 - Adblock Plus is free software: you can redistribute it and/or modify | 6 - Adblock Plus is free software: you can redistribute it and/or modify |
7 - it under the terms of the GNU General Public License version 3 as | 7 - it under the terms of the GNU General Public License version 3 as |
8 - published by the Free Software Foundation. | 8 - published by the Free Software Foundation. |
9 - | 9 - |
10 - Adblock Plus is distributed in the hope that it will be useful, | 10 - Adblock Plus is distributed in the hope that it will be useful, |
11 - but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 - but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 - GNU General Public License for more details. | 13 - GNU General Public License for more details. |
14 - | 14 - |
15 - You should have received a copy of the GNU General Public License | 15 - You should have received a copy of the GNU General Public License |
16 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 16 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
17 --> | 17 --> |
18 | 18 |
19 <html> | 19 <html> |
20 <head> | 20 <head> |
21 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | 21 <title class="i18n_firstRun_title"></title> |
| 22 <meta charset="utf-8"> |
22 <link type="text/css" href="/skin/firstRun.css" rel="stylesheet"/> | 23 <link type="text/css" href="/skin/firstRun.css" rel="stylesheet"/> |
23 <script type="text/javascript" src="firstRun.js" charset="utf-8"></script> | 24 <script type="text/javascript" src="utils.js"></script> |
| 25 <script type="text/javascript" src="i18n.js"></script> |
| 26 <script type="text/javascript" src="firstRun.js"></script> |
24 </head> | 27 </head> |
25 <body> | 28 <body> |
26 <div id="shade" class="arrow"></div> | 29 <div id="shade" class="arrow"></div> |
27 <div id="content"> | 30 <div id="content"> |
28 <header> | 31 <header> |
29 <h1 id="title-main"></h1> | 32 <h1 id="title-main" class="i18n_firstRun_title"></h1> |
30 </header> | 33 </header> |
| 34 |
| 35 <p id="dataCorruptionWarning" class="i18n_firstRun_dataCorruptionWarning"
hidden="true"></p> |
31 | 36 |
32 <p id="acceptableAdsExplanation" class="i18n_firstRun_acceptableAdsExplana
tion"></p> | 37 <p id="acceptableAdsExplanation" class="i18n_firstRun_acceptableAdsExplana
tion"></p> |
33 | 38 |
34 <h2 id="features-title" class="i18n_firstRun_features"></h2> | 39 <h2 id="features-title" class="i18n_firstRun_features"></h2> |
35 | 40 |
36 <ul id="features"> | 41 <ul id="features"> |
37 <li id="feature-typo" class="feature"> | 42 <li id="feature-typo" class="feature" hidden="true"> |
38 <div class="feature-image"></div> | 43 <div class="feature-image"></div> |
39 <div class="feature-description"> | 44 <div class="feature-description"> |
40 <p class="feature-text"> | 45 <p class="feature-text"> |
41 <span class="i18n_firstRun_feature_typo feature-title"></span> <sp
an class="i18n_firstRun_feature_typo_description"></span> | 46 <span class="i18n_firstRun_feature_typo feature-title"></span> <sp
an class="i18n_firstRun_feature_typo_description"></span> |
42 </p> | 47 </p> |
43 </div> | 48 </div> |
44 <button id="toggle-typo"></button> | 49 <button id="toggle-typo"></button> |
45 </li> | 50 </li> |
46 <li id="feature-malware" class="feature"> | 51 <li id="feature-malware" class="feature"> |
47 <div class="feature-image"></div> | 52 <div class="feature-image"></div> |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 </li> | 91 </li> |
87 </ul> | 92 </ul> |
88 </footer> | 93 </footer> |
89 </div> | 94 </div> |
90 | 95 |
91 <div id="glass-pane"> | 96 <div id="glass-pane"> |
92 <iframe id="share-popup" scrolling="no"></iframe> | 97 <iframe id="share-popup" scrolling="no"></iframe> |
93 </div> | 98 </div> |
94 </body> | 99 </body> |
95 </html> | 100 </html> |
LEFT | RIGHT |