OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 - This file is part of Adblock Plus <https://adblockplus.org/>, | 3 - This file is part of Adblock Plus <https://adblockplus.org/>, |
4 - Copyright (C) 2006-2017 eyeo GmbH | 4 - Copyright (C) 2006-2017 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, |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 </div> | 325 </div> |
326 | 326 |
327 <!-- Dialog --> | 327 <!-- Dialog --> |
328 <div id="dialog" role="dialog" aria-hidden="true"> | 328 <div id="dialog" role="dialog" aria-hidden="true"> |
329 <header> | 329 <header> |
330 <span id="dialog-title"> | 330 <span id="dialog-title"> |
331 <span id="dialog-title-custom" class="i18n_options_dialog_custom_title
"></span> | 331 <span id="dialog-title-custom" class="i18n_options_dialog_custom_title
"></span> |
332 <span id="dialog-title-language-add" class="i18n_options_dialog_langua
ge_title"></span> | 332 <span id="dialog-title-language-add" class="i18n_options_dialog_langua
ge_title"></span> |
333 <span id="dialog-title-language-change" class="i18n_options_dialog_lan
guage_title"></span> | 333 <span id="dialog-title-language-change" class="i18n_options_dialog_lan
guage_title"></span> |
334 <span id="dialog-title-predefined" class="i18n_options_dialog_predefin
ed_title"></span> | 334 <span id="dialog-title-predefined" class="i18n_options_dialog_predefin
ed_title"></span> |
| 335 <span id="dialog-title-tracking" class="i18n_options_dialog_tracking_t
itle"></span> |
335 </span> | 336 </span> |
336 <button id="dialog-close" class="i18n_options_close focus-first" data-ac
tion="close-dialog"></button> | 337 <button id="dialog-close" class="i18n_options_close focus-first" data-ac
tion="close-dialog"></button> |
337 </header> | 338 </header> |
338 <div id="dialog-body" class="content"> | 339 <div id="dialog-body" class="content"> |
339 <!-- Add language subscription --> | 340 <!-- Add language subscription --> |
340 <div id="dialog-content-language-add" class="dialog-content"> | 341 <div id="dialog-content-language-add" class="dialog-content"> |
341 <ul id="all-lang-table-add" class="table list"> | 342 <ul id="all-lang-table-add" class="table list"> |
342 <template> | 343 <template> |
343 <button data-action="add-language-subscription,close-dialog" class
="control add" role="checkbox"> | 344 <button data-action="add-language-subscription,close-dialog" class
="control add" role="checkbox"> |
344 <label class="display"></label> | 345 <label class="display"></label> |
(...skipping 19 matching lines...) Expand all Loading... |
364 </div> | 365 </div> |
365 </div> | 366 </div> |
366 <!-- Add predefined subscription --> | 367 <!-- Add predefined subscription --> |
367 <div id="dialog-content-predefined" class="dialog-content"> | 368 <div id="dialog-content-predefined" class="dialog-content"> |
368 <div class="dialog-content-block"> | 369 <div class="dialog-content-block"> |
369 <h3></h3> | 370 <h3></h3> |
370 <div class="url"></div> | 371 <div class="url"></div> |
371 <button class="i18n_options_dialog_predefined_confirm default-focus"
data-action="add-predefined-subscription"></button> | 372 <button class="i18n_options_dialog_predefined_confirm default-focus"
data-action="add-predefined-subscription"></button> |
372 </div> | 373 </div> |
373 </div> | 374 </div> |
| 375 <!-- Acceptable Ads tracking notification --> |
| 376 <div id="dialog-content-tracking" class="dialog-content"> |
| 377 <div class="dialog-content-block"> |
| 378 <p class="i18n_options_dialog_tracking_notification"></p> |
| 379 <p> |
| 380 <button class="i18n_options_dialog_tracking_relevent_ads" data-act
ion="close-dialog"></button> |
| 381 </p> |
| 382 <p> |
| 383 <button class="i18n_options_dialog_tracking_privacy_ads" data-acti
on="close-dialog"></button> |
| 384 </p> |
| 385 <p> |
| 386 <h3 class="i18n_options_dialog_tracking_note"></h3> |
| 387 <ul> |
| 388 <li class="i18n_options_dialog_tracking_note_1"></li> |
| 389 <li class="i18n_options_dialog_tracking_note_2"></li> |
| 390 <li class="i18n_options_dialog_tracking_note_3"></li> |
| 391 </ul> |
| 392 </p> |
| 393 </div> |
| 394 </div> |
374 </div> | 395 </div> |
375 <!-- Placeholder element to determine when to wrap focus around --> | 396 <!-- Placeholder element to determine when to wrap focus around --> |
376 <span class="focus-last" tabindex="0"></span> | 397 <span class="focus-last" tabindex="0"></span> |
377 </div> | 398 </div> |
378 </body> | 399 </body> |
379 </html> | 400 </html> |
OLD | NEW |