OLD | NEW |
1 Shared Adblock Plus UI code | 1 Shared Adblock Plus UI code |
2 =========================== | 2 =========================== |
3 | 3 |
4 The user interface elements defined in this repository will be used by various | 4 The user interface elements defined in this repository will be used by various |
5 Adblock Plus products like Adblock Plus for Firefox. Their functionality can be | 5 Adblock Plus products like Adblock Plus for Firefox. Their functionality can be |
6 tested within this repository, even though they might not work exactly the same | 6 tested within this repository, even though they might not work exactly the same |
7 as they will do in the final product. | 7 as they will do in the final product. |
8 | 8 |
9 Directory structure | 9 Directory structure |
10 ------------------- | 10 ------------------- |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 | 42 |
43 Various aspects of the pages can be tested by setting parameters in the URL. The | 43 Various aspects of the pages can be tested by setting parameters in the URL. The |
44 only universal parameter is `locale`, e.g. `?locale=es-AR`. This parameter | 44 only universal parameter is `locale`, e.g. `?locale=es-AR`. This parameter |
45 overrides browser's locale which will be used by default. | 45 overrides browser's locale which will be used by default. |
46 | 46 |
47 Translations | 47 Translations |
48 ------------ | 48 ------------ |
49 | 49 |
50 Translations for the strings in this project are managed using the online | 50 Translations for the strings in this project are managed using the online |
51 [Crowdin platform][crowdin]. To synchronise with Crowdin you can use the build | 51 [Crowdin platform][crowdin]. To synchronise with Crowdin you can use the build |
52 script. To get a list of the possible commands type `./build.py -t generic` at | 52 script. To get a list of the possible commands type `./build.py help` at |
53 the command line. (You will also need the Crowdin API key for the project.) | 53 the command line. (You will also need the Crowdin API key for the project.) |
54 | 54 |
55 firstRun.html | 55 firstRun.html |
56 ------------- | 56 ------------- |
57 | 57 |
58 This is the implementation of the Adblock Plus first-run page that will show up | 58 This is the implementation of the Adblock Plus first-run page that will show up |
59 whenever changes are applied automatically to user's Adblock Plus configuration. | 59 whenever changes are applied automatically to user's Adblock Plus configuration. |
60 This will usually happen when the user first installs Adblock Plus (initial | 60 This will usually happen when the user first installs Adblock Plus (initial |
61 setup), but it can also happen in case the user's settings get lost. | 61 setup), but it can also happen in case the user's settings get lost. |
62 | 62 |
(...skipping 24 matching lines...) Expand all Loading... |
87 errors when adding new filters on the options page | 87 errors when adding new filters on the options page |
88 * `blockedURLs`: a comma-separated list of URLs that should be considered | 88 * `blockedURLs`: a comma-separated list of URLs that should be considered |
89 blocked (necessary to test the check for blocked scripts in sharing buttons). | 89 blocked (necessary to test the check for blocked scripts in sharing buttons). |
90 * `downloadStatus`: sets downloadStatus parameter for filter lists, can be used | 90 * `downloadStatus`: sets downloadStatus parameter for filter lists, can be used |
91 to trigger various filter list download errors | 91 to trigger various filter list download errors |
92 * `platform=chromium`: shows the opt-out for the developer tools panel | 92 * `platform=chromium`: shows the opt-out for the developer tools panel |
93 * `showNotificationUI=true`: simulates user having opted-out of notifications | 93 * `showNotificationUI=true`: simulates user having opted-out of notifications |
94 | 94 |
95 | 95 |
96 [crowdin]: https://crowdin.com | 96 [crowdin]: https://crowdin.com |
OLD | NEW |