LEFT | RIGHT |
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-present eyeo GmbH | 4 - Copyright (C) 2006-present 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 <section class="cols"> | 129 <section class="cols"> |
130 <header> | 130 <header> |
131 <h2 class="i18n_options_language_header"></h2> | 131 <h2 class="i18n_options_language_header"></h2> |
132 <p class="i18n_options_language_description"></p> | 132 <p class="i18n_options_language_description"></p> |
133 </header> | 133 </header> |
134 <div id="blocking-languages"> | 134 <div id="blocking-languages"> |
135 <ul id="blocking-languages-table" class="table list bottom-control"> | 135 <ul id="blocking-languages-table" class="table list bottom-control"> |
136 <template> | 136 <template> |
137 <span> | 137 <span> |
138 <span data-display="title"></span> | 138 <span data-display="title"></span> |
139 <span class="dim"> | 139 <span class="dimmed"> |
140 (<span data-display="originalTitle"></span>) | 140 (<span data-display="originalTitle"></span>) |
141 </span> | 141 </span> |
142 </span> | 142 </span> |
143 <button data-single="hidden" data-action="remove-subscription" c
lass="icon delete control" title="options_control_remove_title"></button> | 143 <button data-single="hidden" data-action="remove-subscription" c
lass="icon delete control" title="options_control_remove_title"></button> |
144 <button data-single="visible" data-action="open-dialog" data-dia
log="language-change" class="i18n_options_language_change link"></button> | 144 <button data-single="visible" data-action="open-dialog" data-dia
log="language-change" class="i18n_options_language_change link"></button> |
145 </template> | 145 </template> |
146 </ul> | 146 </ul> |
147 <button class="i18n_options_language_add list" data-action="open-dia
log" data-dialog="language-add"></button> | 147 <button class="i18n_options_language_add list" data-action="open-dia
log" data-dialog="language-add"></button> |
148 <p class="i18n_options_language_tip"></p> | 148 <p class="i18n_options_language_tip"></p> |
149 </div> | 149 </div> |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 <button class="i18n_options_close primary default-focus" data-action
="close-dialog"></button> | 371 <button class="i18n_options_close primary default-focus" data-action
="close-dialog"></button> |
372 </p> | 372 </p> |
373 </div> | 373 </div> |
374 <!-- Add language subscription --> | 374 <!-- Add language subscription --> |
375 <div id="dialog-content-language-add" class="dialog-content"> | 375 <div id="dialog-content-language-add" class="dialog-content"> |
376 <ul id="all-lang-table-add" class="table list default-focus"> | 376 <ul id="all-lang-table-add" class="table list default-focus"> |
377 <template> | 377 <template> |
378 <button data-action="add-language-subscription,close-dialog" class
="control icon add" role="checkbox"> | 378 <button data-action="add-language-subscription,close-dialog" class
="control icon add" role="checkbox"> |
379 <span> | 379 <span> |
380 <span data-display="title"></span> | 380 <span data-display="title"></span> |
381 <span class="dim"> | 381 <span class="dimmed"> |
382 (<span data-display="originalTitle"></span>) | 382 (<span data-display="originalTitle"></span>) |
383 </span> | 383 </span> |
384 </span> | 384 </span> |
385 </button> | 385 </button> |
386 <button data-action="change-language-subscription,close-dialog" cl
ass="control icon change" role="checkbox"> | 386 <button data-action="change-language-subscription,close-dialog" cl
ass="control icon change" role="checkbox"> |
387 <span> | 387 <span> |
388 <span data-display="title"></span> | 388 <span data-display="title"></span> |
389 <span class="dim"> | 389 <span class="dimmed"> |
390 (<span data-display="originalTitle"></span>) | 390 (<span data-display="originalTitle"></span>) |
391 </span> | 391 </span> |
392 </span> | 392 </span> |
393 </button> | 393 </button> |
394 </template> | 394 </template> |
395 </ul> | 395 </ul> |
396 </div> | 396 </div> |
397 <!-- Add import subscription --> | 397 <!-- Add import subscription --> |
398 <div id="dialog-content-import" class="dialog-content"> | 398 <div id="dialog-content-import" class="dialog-content"> |
399 <form data-validation="custom" novalidate> | 399 <form data-validation="custom" novalidate> |
(...skipping 29 matching lines...) Expand all Loading... |
429 </div> | 429 </div> |
430 <!-- Notification --> | 430 <!-- Notification --> |
431 <div id="notification" aria-hidden="true" aria-live="polite"> | 431 <div id="notification" aria-hidden="true" aria-live="polite"> |
432 <strong id="notification-text"></strong> | 432 <strong id="notification-text"></strong> |
433 <button class="icon close secondary" data-action="hide-notification"> | 433 <button class="icon close secondary" data-action="hide-notification"> |
434 <span class="i18n_options_notification_hide sr-only"></span> | 434 <span class="i18n_options_notification_hide sr-only"></span> |
435 </button> | 435 </button> |
436 </div> | 436 </div> |
437 </body> | 437 </body> |
438 </html> | 438 </html> |
LEFT | RIGHT |