@browserless.io/browserless 2.24.1 → 2.24.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/CHANGELOG.md +19 -4
  2. package/README.md +3 -4
  3. package/build/browsers/browsers.playwright.js +6 -1
  4. package/build/browsers/index.js +1 -1
  5. package/build/routes/chrome/http/content.post.body.json +8 -8
  6. package/build/routes/chrome/http/pdf.post.body.json +8 -8
  7. package/build/routes/chrome/http/scrape.post.body.json +8 -8
  8. package/build/routes/chrome/http/screenshot.post.body.json +8 -8
  9. package/build/routes/chromium/http/content.post.body.json +8 -8
  10. package/build/routes/chromium/http/pdf.post.body.json +8 -8
  11. package/build/routes/chromium/http/scrape.post.body.json +8 -8
  12. package/build/routes/chromium/http/screenshot.post.body.json +8 -8
  13. package/build/routes/management/http/meta.get.js +3 -1
  14. package/extensions/ublock/_locales/ar/messages.json +3 -3
  15. package/extensions/ublock/_locales/bg/messages.json +1 -1
  16. package/extensions/ublock/_locales/br_FR/messages.json +2 -2
  17. package/extensions/ublock/_locales/cy/messages.json +11 -11
  18. package/extensions/ublock/_locales/el/messages.json +2 -2
  19. package/extensions/ublock/_locales/hu/messages.json +1 -1
  20. package/extensions/ublock/_locales/id/messages.json +1 -1
  21. package/extensions/ublock/_locales/lv/messages.json +4 -4
  22. package/extensions/ublock/_locales/mk/messages.json +130 -130
  23. package/extensions/ublock/_locales/oc/messages.json +1 -1
  24. package/extensions/ublock/_locales/pt_BR/messages.json +1 -1
  25. package/extensions/ublock/_locales/pt_PT/messages.json +2 -2
  26. package/extensions/ublock/_locales/si/messages.json +100 -100
  27. package/extensions/ublock/_locales/sr/messages.json +4 -4
  28. package/extensions/ublock/_locales/vi/messages.json +19 -19
  29. package/extensions/ublock/_locales/zh_TW/messages.json +28 -28
  30. package/extensions/ublock/assets/assets.json +33 -29
  31. package/extensions/ublock/assets/thirdparties/easylist/easylist.txt +2984 -3287
  32. package/extensions/ublock/assets/thirdparties/easylist/easyprivacy.txt +150 -171
  33. package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/serverlist +37 -27
  34. package/extensions/ublock/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat +802 -888
  35. package/extensions/ublock/assets/thirdparties/urlhaus-filter/urlhaus-filter-online.txt +2355 -2071
  36. package/extensions/ublock/assets/ublock/badlists.txt +9 -1
  37. package/extensions/ublock/assets/ublock/badware.min.txt +354 -243
  38. package/extensions/ublock/assets/ublock/filters.min.txt +5837 -5737
  39. package/extensions/ublock/assets/ublock/privacy.min.txt +151 -38
  40. package/extensions/ublock/assets/ublock/quick-fixes.min.txt +83 -127
  41. package/extensions/ublock/assets/ublock/unbreak.min.txt +66 -50
  42. package/extensions/ublock/css/codemirror.css +4 -0
  43. package/extensions/ublock/document-blocked.html +3 -1
  44. package/extensions/ublock/js/arglist-parser.js +116 -0
  45. package/extensions/ublock/js/background.js +1 -1
  46. package/extensions/ublock/js/logger-ui.js +1 -1
  47. package/extensions/ublock/js/messaging.js +9 -2
  48. package/extensions/ublock/js/pagestore.js +3 -1
  49. package/extensions/ublock/js/redirect-engine.js +3 -1
  50. package/extensions/ublock/{assets/resources/set-attr.js → js/resources/attribute.js} +115 -11
  51. package/extensions/ublock/js/resources/base.js +38 -0
  52. package/extensions/ublock/js/resources/cookie.js +419 -0
  53. package/extensions/ublock/js/resources/href-sanitizer.js +188 -0
  54. package/extensions/ublock/js/resources/localstorage.js +235 -0
  55. package/extensions/ublock/js/resources/parse-replace.js +54 -0
  56. package/extensions/ublock/js/resources/prevent-settimeout.js +236 -0
  57. package/extensions/ublock/js/resources/proxy-apply.js +109 -0
  58. package/extensions/ublock/js/resources/replace-argument.js +120 -0
  59. package/extensions/ublock/{assets → js}/resources/run-at.js +20 -4
  60. package/extensions/ublock/{assets → js}/resources/safe-self.js +5 -4
  61. package/extensions/ublock/{assets → js}/resources/scriptlets.js +90 -1589
  62. package/extensions/ublock/js/resources/set-constant.js +287 -0
  63. package/extensions/ublock/js/resources/shared.js +44 -0
  64. package/extensions/ublock/js/resources/spoof-css.js +163 -0
  65. package/extensions/ublock/js/s14e-serializer.js +2 -1
  66. package/extensions/ublock/js/scriptlet-filtering-core.js +1 -1
  67. package/extensions/ublock/js/scriptlet-filtering.js +1 -31
  68. package/extensions/ublock/js/static-dnr-filtering.js +143 -129
  69. package/extensions/ublock/js/static-filtering-parser.js +27 -117
  70. package/extensions/ublock/js/static-net-filtering.js +53 -141
  71. package/extensions/ublock/js/traffic.js +1 -1
  72. package/extensions/ublock/js/urlskip.js +166 -0
  73. package/extensions/ublock/js/vapi-background-ext.js +38 -14
  74. package/extensions/ublock/manifest.json +1 -1
  75. package/package.json +12 -12
  76. package/src/browsers/browsers.playwright.ts +8 -1
  77. package/src/browsers/index.ts +1 -1
  78. package/src/routes/management/http/meta.get.ts +6 -1
  79. package/src/routes/management/http/static.get.ts +1 -1
  80. package/static/docs/swagger.json +10 -10
  81. package/static/docs/swagger.min.json +9 -9
  82. package/static/function/client.js +66 -186
  83. package/static/function/index.html +66 -186
@@ -56,11 +56,11 @@
56
56
  "description": "appears as tab name in dashboard"
57
57
  },
58
58
  "supportPageName": {
59
- "message": "Support",
59
+ "message": "Поддршка",
60
60
  "description": "appears as tab name in dashboard"
61
61
  },
62
62
  "assetViewerPageName": {
63
- "message": "uBlock₀ — Asset viewer",
63
+ "message": "uBlock₀ — Прегледувач на средства",
64
64
  "description": "Title for the asset viewer page"
65
65
  },
66
66
  "advancedSettingsPageName": {
@@ -68,15 +68,15 @@
68
68
  "description": "Title for the advanced settings page"
69
69
  },
70
70
  "popupPowerSwitchInfo": {
71
- "message": "Click: disable/enable uBlock₀ for this site.\n\nCtrl+click: disable uBlock₀ only on this page.",
71
+ "message": "Кликнете: деактивирајте/активирајте uBlock₀ за оваа страница.\n\nCtrl+клик: деактивирајте uBlock₀ само на оваа страница.",
72
72
  "description": "English: Click: disable/enable uBlock₀ for this site.\n\nCtrl+click: disable uBlock₀ only on this page."
73
73
  },
74
74
  "popupPowerSwitchInfo1": {
75
- "message": "Click to disable uBlock₀ for this site.\n\nCtrl+click to disable uBlock₀ only on this page.",
75
+ "message": "Кликнете за да го деактивирате uBlock₀ за оваа страница.\n\nCtrl+кликнете за да го деактивирате uBlock₀ само на оваа страница.",
76
76
  "description": "Message to be read by screen readers"
77
77
  },
78
78
  "popupPowerSwitchInfo2": {
79
- "message": "Click to enable uBlock₀ for this site.",
79
+ "message": "Кликнете за да го активирате uBlock₀ за оваа страница.",
80
80
  "description": "Message to be read by screen readers"
81
81
  },
82
82
  "popupBlockedRequestPrompt": {
@@ -128,11 +128,11 @@
128
128
  "description": "Tooltip used for the logger icon in the panel"
129
129
  },
130
130
  "popupTipReport": {
131
- "message": "Report an issue on this website",
131
+ "message": "Пријави проблем на оваа веб-страница",
132
132
  "description": "Tooltip used for the 'chat' icon in the panel"
133
133
  },
134
134
  "popupTipNoPopups": {
135
- "message": "Toggle the blocking of all popups for this site",
135
+ "message": "Промени ја блокадата на сите поп-упи за оваа страница",
136
136
  "description": "Tooltip for the no-popups per-site switch"
137
137
  },
138
138
  "popupTipNoPopups1": {
@@ -140,23 +140,23 @@
140
140
  "description": "Tooltip for the no-popups per-site switch"
141
141
  },
142
142
  "popupTipNoPopups2": {
143
- "message": "Click to no longer block all popups on this site",
143
+ "message": "Кликнете за да не блокирате повеќе сите поп-упи на оваа страница",
144
144
  "description": "Tooltip for the no-popups per-site switch"
145
145
  },
146
146
  "popupTipNoLargeMedia": {
147
- "message": "Toggle the blocking of large media elements for this site",
147
+ "message": "Промени ја блокадата на големите медиумски елементи за оваа страница",
148
148
  "description": "Tooltip for the no-large-media per-site switch"
149
149
  },
150
150
  "popupTipNoLargeMedia1": {
151
- "message": "Click to block large media elements on this site",
151
+ "message": "Кликнете за да блокирате големи медиумски елементи на оваа страница",
152
152
  "description": "Tooltip for the no-large-media per-site switch"
153
153
  },
154
154
  "popupTipNoLargeMedia2": {
155
- "message": "Click to no longer block large media elements on this site",
155
+ "message": "Кликнете за да не блокирате повеќе големи медиумски елементи на оваа страница",
156
156
  "description": "Tooltip for the no-large-media per-site switch"
157
157
  },
158
158
  "popupTipNoCosmeticFiltering": {
159
- "message": "Toggle cosmetic filtering for this site",
159
+ "message": "Промени го козметичкото филтрирање за оваа страница",
160
160
  "description": "Tooltip for the no-cosmetic-filtering per-site switch"
161
161
  },
162
162
  "popupTipNoCosmeticFiltering1": {
@@ -168,15 +168,15 @@
168
168
  "description": "Tooltip for the no-cosmetic-filtering per-site switch"
169
169
  },
170
170
  "popupTipNoRemoteFonts": {
171
- "message": "Toggle the blocking of remote fonts for this site",
171
+ "message": "Промени ја блокадата на далечински фонтови за оваа страница",
172
172
  "description": "Tooltip for the no-remote-fonts per-site switch"
173
173
  },
174
174
  "popupTipNoRemoteFonts1": {
175
- "message": "Click to block remote fonts on this site",
175
+ "message": "Кликнете за да блокирате далечински фонтови на оваа страница",
176
176
  "description": "Tooltip for the no-remote-fonts per-site switch"
177
177
  },
178
178
  "popupTipNoRemoteFonts2": {
179
- "message": "Click to no longer block remote fonts on this site",
179
+ "message": "Кликнете за да не блокирате повеќе далечински фонтови на оваа страница",
180
180
  "description": "Tooltip for the no-remote-fonts per-site switch"
181
181
  },
182
182
  "popupTipNoScripting1": {
@@ -276,11 +276,11 @@
276
276
  "description": "Example of use: Version 1.26.4"
277
277
  },
278
278
  "popup3pScriptFilter": {
279
- "message": "script",
279
+ "message": "скрипта",
280
280
  "description": "Appears as an option to filter out firewall rows"
281
281
  },
282
282
  "popup3pFrameFilter": {
283
- "message": "frame",
283
+ "message": "рамка",
284
284
  "description": "Appears as an option to filter out firewall rows"
285
285
  },
286
286
  "pickerCreate": {
@@ -316,7 +316,7 @@
316
316
  "description": "An entry in the browser's contextual menu"
317
317
  },
318
318
  "settingsCollapseBlockedPrompt": {
319
- "message": "Hide placeholders of blocked elements",
319
+ "message": "Скријте ги местата за блокирани елементи",
320
320
  "description": "English: Hide placeholders of blocked elements"
321
321
  },
322
322
  "settingsIconBadgePrompt": {
@@ -328,7 +328,7 @@
328
328
  "description": "A checkbox in the Settings pane"
329
329
  },
330
330
  "settingsContextMenuPrompt": {
331
- "message": "Make use of context menu where appropriate",
331
+ "message": "Искористете го контекстуалното мени каде што е соодветно",
332
332
  "description": "English: Make use of context menu where appropriate"
333
333
  },
334
334
  "settingsColorBlindPrompt": {
@@ -336,15 +336,15 @@
336
336
  "description": "English: Color-blind friendly"
337
337
  },
338
338
  "settingsAppearance": {
339
- "message": "Appearance",
339
+ "message": "Изглед",
340
340
  "description": "Section for controlling user interface appearance"
341
341
  },
342
342
  "settingsThemeLabel": {
343
- "message": "Theme",
343
+ "message": "Тема",
344
344
  "description": "Label for checkbox to enable a custom dark theme"
345
345
  },
346
346
  "settingsThemeAccent0Label": {
347
- "message": "Custom accent color",
347
+ "message": "Прилагодена боја на акцентот",
348
348
  "description": "Label for checkbox to pick an accent color"
349
349
  },
350
350
  "settingsCloudStorageEnabledPrompt": {
@@ -356,15 +356,15 @@
356
356
  "description": "Checkbox to let user access advanced, technical features"
357
357
  },
358
358
  "settingsPrefetchingDisabledPrompt": {
359
- "message": "Disable pre-fetching (to prevent any connection for blocked network requests)",
359
+ "message": "Деактивирајте пред-фаќање (за да се спречат било какви врски за блокирани мрежни барања)",
360
360
  "description": "English: "
361
361
  },
362
362
  "settingsHyperlinkAuditingDisabledPrompt": {
363
- "message": "Disable hyperlink auditing",
363
+ "message": "Деактивирајте проверка на хиперврски",
364
364
  "description": "English: "
365
365
  },
366
366
  "settingsWebRTCIPAddressHiddenPrompt": {
367
- "message": "Prevent WebRTC from leaking local IP addresses",
367
+ "message": "Спречете WebRTC да ги открие локалните IP адреси",
368
368
  "description": "English: "
369
369
  },
370
370
  "settingPerSiteSwitchGroup": {
@@ -392,19 +392,19 @@
392
392
  "description": "The default state for the per-site no-scripting switch"
393
393
  },
394
394
  "settingsNoCSPReportsPrompt": {
395
- "message": "Block CSP reports",
395
+ "message": "Блокирајте CSP извештаи",
396
396
  "description": "background information: https://github.com/gorhill/uBlock/issues/3150"
397
397
  },
398
398
  "settingsUncloakCnamePrompt": {
399
- "message": "Uncloak canonical names",
399
+ "message": "Откријте канонски имиња",
400
400
  "description": "background information: https://github.com/uBlockOrigin/uBlock-issues/issues/1513"
401
401
  },
402
402
  "settingsAdvanced": {
403
- "message": "Advanced",
403
+ "message": "Напредно",
404
404
  "description": "Section for controlling advanced-user settings"
405
405
  },
406
406
  "settingsAdvancedSynopsis": {
407
- "message": "Features suitable only for technical users",
407
+ "message": "Функции погодни само за технички корисници",
408
408
  "description": "Description of section controlling advanced-user settings"
409
409
  },
410
410
  "settingsAdvancedUserSettings": {
@@ -440,23 +440,23 @@
440
440
  "description": "A button in the in the _3rd-party filters_ pane"
441
441
  },
442
442
  "3pParseAllABPHideFiltersPrompt1": {
443
- "message": "Parse and enforce cosmetic filters",
443
+ "message": "Парсирајте и спроведете козметички филтри",
444
444
  "description": "English: Parse and enforce Adblock+ element hiding filters."
445
445
  },
446
446
  "3pParseAllABPHideFiltersInfo": {
447
- "message": "Cosmetic filters serve to hide elements in a web page which are deemed to be a visual nuisance, and which can't be blocked by the network request-based filtering engines.",
447
+ "message": "Козметичките филтри служат за сокривање на елементи во веб-страница кои се сметаат за визуелна непријатност, и кои не можат да се блокираат со мрежните мотори за филтрирање базирани на барања.",
448
448
  "description": "Describes the purpose of the 'Parse and enforce cosmetic filters' feature."
449
449
  },
450
450
  "3pIgnoreGenericCosmeticFilters": {
451
- "message": "Ignore generic cosmetic filters",
451
+ "message": "Игнорирајте генералистички козметички филтри",
452
452
  "description": "This will cause uBO to ignore all generic cosmetic filters."
453
453
  },
454
454
  "3pIgnoreGenericCosmeticFiltersInfo": {
455
- "message": "Generic cosmetic filters are those cosmetic filters which are meant to apply on all web sites. Enabling this option will eliminate the memory and CPU overhead added to web pages as a result of handling generic cosmetic filters.\n\nIt is recommended to enable this option on less powerful devices.",
455
+ "message": "Генералистичките козметички филтри се оние козметички филтри што се наменети да се применуваат на сите веб-страници. Вклучувањето на оваа опција ќе ја елиминира оптовареноста на меморијата и ЦПУ-то додадена на веб-страниците како резултат на обработката на генералистичките козметички филтри.\n\nСе препорачува да се вклучи оваа опција на помалку моќни уреди.",
456
456
  "description": "Describes the purpose of the 'Ignore generic cosmetic filters' feature."
457
457
  },
458
458
  "3pSuspendUntilListsAreLoaded": {
459
- "message": "Suspend network activity until all filter lists are loaded",
459
+ "message": "Суспендирајте ја мрежната активност додека не се вчитат сите листи со филтри",
460
460
  "description": "A checkbox in the 'Filter lists' pane"
461
461
  },
462
462
  "3pListsOfBlockedHostsHeader": {
@@ -484,11 +484,11 @@
484
484
  "description": "Filter lists section name"
485
485
  },
486
486
  "3pGroupSocial": {
487
- "message": "Social widgets",
487
+ "message": "Социјални widgets",
488
488
  "description": "Filter lists section name"
489
489
  },
490
490
  "3pGroupCookies": {
491
- "message": "Cookie notices",
491
+ "message": "Известија за колачиња",
492
492
  "description": "Filter lists section name"
493
493
  },
494
494
  "3pGroupAnnoyances": {
@@ -496,7 +496,7 @@
496
496
  "description": "Filter lists section name"
497
497
  },
498
498
  "3pGroupMultipurpose": {
499
- "message": "Multipurpose",
499
+ "message": "Многуцелно",
500
500
  "description": "Filter lists section name"
501
501
  },
502
502
  "3pGroupRegions": {
@@ -504,7 +504,7 @@
504
504
  "description": "Filter lists section name"
505
505
  },
506
506
  "3pGroupCustom": {
507
- "message": "Custom",
507
+ "message": "Прилагодено",
508
508
  "description": "Filter lists section name"
509
509
  },
510
510
  "3pImport": {
@@ -520,11 +520,11 @@
520
520
  "description": "used as a tooltip for the out-of-date icon beside a list"
521
521
  },
522
522
  "3pViewContent": {
523
- "message": "view content",
523
+ "message": "прегледајте содржина",
524
524
  "description": "used as a tooltip for eye icon beside a list"
525
525
  },
526
526
  "3pLastUpdate": {
527
- "message": "Last update: {{ago}}.\nClick to force an update.",
527
+ "message": "Последно обновување: {{ago}}.\nКликнете за да принудите обновување.",
528
528
  "description": "used as a tooltip for the clock icon beside a list"
529
529
  },
530
530
  "3pUpdating": {
@@ -532,19 +532,19 @@
532
532
  "description": "used as a tooltip for the spinner icon beside a list"
533
533
  },
534
534
  "3pNetworkError": {
535
- "message": "A network error prevented the resource from being updated.",
535
+ "message": "Мрежна грешка ја спречи обновата на ресурсот.",
536
536
  "description": "used as a tooltip for error icon beside a list"
537
537
  },
538
538
  "1pTrustWarning": {
539
- "message": "Do not add filters from untrusted sources.",
539
+ "message": "Не додавајте филтри од ненадежни извори.",
540
540
  "description": "Warning against copy-pasting filters from random sources"
541
541
  },
542
542
  "1pEnableMyFiltersLabel": {
543
- "message": "Enable my custom filters",
543
+ "message": "Вклучете ги моите прилагодени филтри",
544
544
  "description": "Label for the checkbox use to enable/disable 'My filters' list"
545
545
  },
546
546
  "1pTrustMyFiltersLabel": {
547
- "message": "Allow custom filters requiring trust",
547
+ "message": "Дозволете прилагодени филтри што бараат доверба",
548
548
  "description": "Label for the checkbox use to trust the content of 'My filters' list"
549
549
  },
550
550
  "1pImport": {
@@ -560,7 +560,7 @@
560
560
  "description": "English: my-ublock-static-filters_{{datetime}}.txt"
561
561
  },
562
562
  "1pApplyChanges": {
563
- "message": "Apply changes",
563
+ "message": "Применете ги промените",
564
564
  "description": "English: Apply changes"
565
565
  },
566
566
  "rulesPermanentHeader": {
@@ -608,7 +608,7 @@
608
608
  "description": "English: List of your dynamic filtering rules."
609
609
  },
610
610
  "rulesFormatHint": {
611
- "message": "Rule syntax: <code>source destination type action</code> (<a href='https://github.com/gorhill/uBlock/wiki/Dynamic-filtering:-rule-syntax'>full documentation</a>).",
611
+ "message": "Синтакса на правило: <code>извор дестинација тип акција</code> (<a href='https://github.com/gorhill/uBlock/wiki/Dynamic-filtering:-rule-syntax'>целосна документација</a>).",
612
612
  "description": "English: dynamic rule syntax and full documentation."
613
613
  },
614
614
  "rulesSort": {
@@ -628,7 +628,7 @@
628
628
  "description": "English: a sort option for list of rules."
629
629
  },
630
630
  "whitelistPrompt": {
631
- "message": "The trusted site directives dictate on which web pages uBlock Origin should be disabled. One entry per line.",
631
+ "message": "Директивите за доверливи веб-страници одредуваат на кои веб-страници uBlock Origin треба да биде исклучен. Еден внос по ред.",
632
632
  "description": "A concise description of the 'Trusted sites' pane."
633
633
  },
634
634
  "whitelistImport": {
@@ -676,19 +676,19 @@
676
676
  "description": "Appears in the logger's tab selector"
677
677
  },
678
678
  "loggerReloadTip": {
679
- "message": "Reload the tab content",
679
+ "message": "Понови ја содржината на табот",
680
680
  "description": "Tooltip for the reload button in the logger page"
681
681
  },
682
682
  "loggerDomInspectorTip": {
683
- "message": "Toggle the DOM inspector",
683
+ "message": "Вклучи/исклучи DOM инспектор",
684
684
  "description": "Tooltip for the DOM inspector button in the logger page"
685
685
  },
686
686
  "loggerPopupPanelTip": {
687
- "message": "Toggle the popup panel",
687
+ "message": "Вклучи/исклучи панелот за поп-уп",
688
688
  "description": "Tooltip for the popup panel button in the logger page"
689
689
  },
690
690
  "loggerInfoTip": {
691
- "message": "uBlock Origin wiki: The logger",
691
+ "message": "uBlock Origin вики: Логер",
692
692
  "description": "Tooltip for the top-right info label in the logger page"
693
693
  },
694
694
  "loggerClearTip": {
@@ -704,15 +704,15 @@
704
704
  "description": "Tooltip for the play button in the logger page"
705
705
  },
706
706
  "loggerRowFiltererButtonTip": {
707
- "message": "Toggle logger filtering",
707
+ "message": "Вклучи/исклучи филтрирање на логерот",
708
708
  "description": "Tooltip for the row filterer button in the logger page"
709
709
  },
710
710
  "logFilterPrompt": {
711
- "message": "filter logger content",
711
+ "message": "филтрирајте ја содржината на логерот",
712
712
  "description": "Placeholder string for logger output filtering input field"
713
713
  },
714
714
  "loggerRowFiltererBuiltinTip": {
715
- "message": "Logger filtering options",
715
+ "message": "Опции за филтрирање на логерот",
716
716
  "description": "Tooltip for the button to bring up logger output filtering options"
717
717
  },
718
718
  "loggerRowFiltererBuiltinNot": {
@@ -732,7 +732,7 @@
732
732
  "description": "A keyword in the built-in row filtering expression"
733
733
  },
734
734
  "loggerRowFiltererBuiltinModified": {
735
- "message": "modified",
735
+ "message": "модифицирано",
736
736
  "description": "A keyword in the built-in row filtering expression"
737
737
  },
738
738
  "loggerRowFiltererBuiltin1p": {
@@ -764,7 +764,7 @@
764
764
  "description": "Label to identify a context field (typically a hostname)"
765
765
  },
766
766
  "loggerEntryDetailsRootContext": {
767
- "message": "Root context",
767
+ "message": "Корен контекст",
768
768
  "description": "Label to identify a root context field (typically a hostname)"
769
769
  },
770
770
  "loggerEntryDetailsPartyness": {
@@ -836,31 +836,31 @@
836
836
  "description": "Below this sentence, the filter list(s) in which the filter was found"
837
837
  },
838
838
  "loggerStaticFilteringFinderSentence2": {
839
- "message": "Static filter could not be found in any of the currently enabled filter lists",
839
+ "message": "Статичкиот филтер не може да биде најден во ниедна од моментално овозможените листи со филтри.",
840
840
  "description": "Message to show when a filter cannot be found in any filter lists"
841
841
  },
842
842
  "loggerSettingDiscardPrompt": {
843
- "message": "Logger entries which do not fulfill all three conditions below will be automatically discarded:",
843
+ "message": "Записите во логерот кои не ги исполнуваат сите три услови подолу автоматски ќе бидат игнорирани:",
844
844
  "description": "Logger setting: A sentence to describe the purpose of the settings below"
845
845
  },
846
846
  "loggerSettingPerEntryMaxAge": {
847
- "message": "Preserve entries from the last {{input}} minutes",
847
+ "message": "Зачувајте записи од последните {{input}} минути",
848
848
  "description": "A logger setting"
849
849
  },
850
850
  "loggerSettingPerTabMaxLoads": {
851
- "message": "Preserve at most {{input}} page loads per tab",
851
+ "message": "Зачувајте најмногу {{input}} вчитувања на страници по таб",
852
852
  "description": "A logger setting"
853
853
  },
854
854
  "loggerSettingPerTabMaxEntries": {
855
- "message": "Preserve at most {{input}} entries per tab",
855
+ "message": "Зачувајте најмногу {{input}} записи по таб",
856
856
  "description": "A logger setting"
857
857
  },
858
858
  "loggerSettingPerEntryLineCount": {
859
- "message": "Use {{input}} lines per entry in vertically expanded mode",
859
+ "message": "Користете {{input}} редови по запис во вертикално проширен режим",
860
860
  "description": "A logger setting"
861
861
  },
862
862
  "loggerSettingHideColumnsPrompt": {
863
- "message": "Hide columns:",
863
+ "message": "Скријте колони:",
864
864
  "description": "Logger settings: a sentence to describe the purpose of the checkboxes below"
865
865
  },
866
866
  "loggerSettingHideColumnTime": {
@@ -896,127 +896,127 @@
896
896
  "description": "Label for radio-button to pick export text format"
897
897
  },
898
898
  "supportOpenButton": {
899
- "message": "Open",
899
+ "message": "Отвори",
900
900
  "description": "Text for button which open an external webpage in Support pane"
901
901
  },
902
902
  "supportReportSpecificButton": {
903
- "message": "Create new report",
903
+ "message": "Создај нова пријава",
904
904
  "description": "Text for button which open an external webpage in Support pane"
905
905
  },
906
906
  "supportFindSpecificButton": {
907
- "message": "Find similar reports",
907
+ "message": "Најди слични пријави",
908
908
  "description": "A clickable link in the filter issue reporter section"
909
909
  },
910
910
  "supportS1H": {
911
- "message": "Documentation",
911
+ "message": "Документација",
912
912
  "description": "Header of 'Documentation' section in Support pane"
913
913
  },
914
914
  "supportS1P1": {
915
- "message": "Read the documentation at <code>uBlock/wiki</code> to learn about all of uBlock Origin's features.",
915
+ "message": "Прочитајте ја документацијата на <code>uBlock/wiki</code> за да научите за сите функции на uBlock Origin.",
916
916
  "description": "First paragraph of 'Documentation' section in Support pane"
917
917
  },
918
918
  "supportS2H": {
919
- "message": "Questions and support",
919
+ "message": "Прашања и поддршка",
920
920
  "description": "Header of 'Questions and support' section in Support pane"
921
921
  },
922
922
  "supportS2P1": {
923
- "message": "Answers to questions and other kinds of help support is provided on the subreddit <code>/r/uBlockOrigin</code>.",
923
+ "message": "Одговори на прашања и други видови поддршка се обезбедени на subreddit <code>/r/uBlockOrigin</code>.",
924
924
  "description": "First paragraph of 'Questions and support' section in Support pane"
925
925
  },
926
926
  "supportS3H": {
927
- "message": "Filter issues/website is broken",
927
+ "message": "Проблеми со филтрирањето/веб-страницата е расипана",
928
928
  "description": "Header of 'Filter issues' section in Support pane"
929
929
  },
930
930
  "supportS3P1": {
931
- "message": "Report filter issues with specific websites to the <span data-url=\"https://github.com/uBlockOrigin/uAssets/issues?q=is%3Aissue\"><code>uBlockOrigin/uAssets</code> issue tracker</span>. <u>Requires a GitHub account.</u>",
931
+ "message": "Пријавете проблеми со филтрите за специфични веб-страници на <span data-url=\"https://github.com/uBlockOrigin/uAssets/issues?q=is%3Aissue\"><code>uBlockOrigin/uAssets</code> issue tracker</span>. <u>Потребен е GitHub профил.</u>",
932
932
  "description": "First paragraph of 'Filter issues' section in Support pane"
933
933
  },
934
934
  "supportS3P2": {
935
- "message": "<b>Important:</b> Avoid using other similarly-purposed blockers along with uBlock Origin, as this may cause filter issues on specific websites.",
935
+ "message": "<b>Важно:</b> Избегнувајте да користите други блокатори со слична намена заедно со uBlock Origin, бидејќи тоа може да предизвика проблеми со филтрањето на специфични веб-страници.",
936
936
  "description": "Second paragraph of 'Filter issues' section in Support pane"
937
937
  },
938
938
  "supportS3P3": {
939
- "message": "<b>Tips:</b> Be sure your filter lists are up to date. <span data-url=\"logger-ui.html#_\">The logger</span> is the primary tool to diagnose filter-related issues.",
939
+ "message": "<b>Совети:</b> Проверете дали вашите листи со филтри се ажурирани. <span data-url=\"logger-ui.html#_\">Логерот</span> е главниот алат за дијагностицирање на проблемите поврзани со филтрите.",
940
940
  "description": "Third paragraph of 'Filter issues' section in Support pane"
941
941
  },
942
942
  "supportS4H": {
943
- "message": "Bug report",
943
+ "message": "Пријава за грешка",
944
944
  "description": "Header of 'Bug report' section in Support pane"
945
945
  },
946
946
  "supportS4P1": {
947
- "message": "Report issues with uBlock Origin itself to the <span data-url=\"https://github.com/uBlockOrigin/uBlock-issues/issues?q=is%3Aissue\"><code>uBlockOrigin/uBlock-issue</code> issue tracker</span>. <u>Requires a GitHub account.</u>",
947
+ "message": "Пријавете проблеми со самиот uBlock Origin на <span data-url=\"https://github.com/uBlockOrigin/uBlock-issues/issues?q=is%3Aissue\"><code>uBlockOrigin/uBlock-issue</code> issue tracker</span>. <u>Потребен е GitHub профил.</u>",
948
948
  "description": "First paragraph of 'Bug report' section in Support pane"
949
949
  },
950
950
  "supportS5H": {
951
- "message": "Troubleshooting Information",
951
+ "message": "Информации за решавање проблеми",
952
952
  "description": "Header of 'Troubleshooting Information' section in Support pane"
953
953
  },
954
954
  "supportS5P1": {
955
- "message": "Below is technical information that might be useful when volunteers are trying to help you solve a problem.",
955
+ "message": "Подолу е техничка информација која може да биде корисна кога волонтерите се обидуваат да ви помогнат да решите проблем.",
956
956
  "description": "First paragraph of 'Troubleshooting Information' section in Support pane"
957
957
  },
958
958
  "supportS5P2": {
959
- "message": "<b>Important:</b> Potentially private or sensitive information is redacted by default. Redacted information may make it more difficult to solve a problem.",
959
+ "message": "<b>Важно:</b> Потенцијално приватни или осетливи информации се цензурирани по подразбирање. Цензурираните информации можат да го отежнат решавањето на проблемот.",
960
960
  "description": "Second paragraph of 'Troubleshooting Information' section in Support pane"
961
961
  },
962
962
  "supportS6H": {
963
- "message": "Report a filter issue",
963
+ "message": "Пријави проблем со филтерот",
964
964
  "description": "Header of 'Report a filter issue' section in Support pane"
965
965
  },
966
966
  "supportS6P1S1": {
967
- "message": "To avoid burdening volunteers with duplicate reports, please verify that the issue has not already been reported.",
967
+ "message": "За да се избегне оптоварување на волонтерите со дупликат пријави, ве молиме проверете дека проблемот веќе не е пријавен.",
968
968
  "description": "A paragraph in the filter issue reporter section"
969
969
  },
970
970
  "supportS6P2S1": {
971
- "message": "Filter lists are updated daily. Be sure your issue has not already been addressed in the most recent filter lists.",
971
+ "message": "Листите со филтри се обновуваат дневно. Осигурајте се дека вашиот проблем веќе не е решен во најновите листи со филтри.",
972
972
  "description": "A paragraph in the filter issue reporter section"
973
973
  },
974
974
  "supportS6P2S2": {
975
- "message": "Verify that the issue still exists after reloading the problematic webpage.",
975
+ "message": "Проверете дали проблемот сè уште постои по повторно вчитување на проблематичната веб-страница.",
976
976
  "description": "A paragraph in the filter issue reporter section"
977
977
  },
978
978
  "supportS6URL": {
979
- "message": "Address of the web page:",
979
+ "message": "Адреса на веб-страницата:",
980
980
  "description": "Label for the URL of the page"
981
981
  },
982
982
  "supportS6Select1": {
983
- "message": "The web page…",
983
+ "message": "Веб-страницата…",
984
984
  "description": "Label for widget to select type of issue"
985
985
  },
986
986
  "supportS6Select1Option0": {
987
- "message": "-- Pick an entry --",
987
+ "message": "-- Изберете внос --",
988
988
  "description": "An entry in the widget used to select the type of issue"
989
989
  },
990
990
  "supportS6Select1Option1": {
991
- "message": "Shows ads or ad leftovers",
991
+ "message": "Покажува реклами или остатоци од реклами",
992
992
  "description": "An entry in the widget used to select the type of issue"
993
993
  },
994
994
  "supportS6Select1Option2": {
995
- "message": "Has overlays or other nuisances",
995
+ "message": "Има преOverlayи или други непријатности",
996
996
  "description": "An entry in the widget used to select the type of issue"
997
997
  },
998
998
  "supportS6Select1Option3": {
999
- "message": "Detects uBlock Origin",
999
+ "message": "Детектира uBlock Origin",
1000
1000
  "description": "An entry in the widget used to select the type of issue"
1001
1001
  },
1002
1002
  "supportS6Select1Option4": {
1003
- "message": "Has privacy-related issues",
1003
+ "message": "Има проблеми поврзани со приватноста",
1004
1004
  "description": "An entry in the widget used to select the type of issue"
1005
1005
  },
1006
1006
  "supportS6Select1Option5": {
1007
- "message": "Malfunctions when uBlock Origin is enabled",
1007
+ "message": "Има многу проблеми кога е вклучен uBlock Origin",
1008
1008
  "description": "An entry in the widget used to select the type of issue"
1009
1009
  },
1010
1010
  "supportS6Select1Option6": {
1011
- "message": "Opens unwanted tabs or windows",
1011
+ "message": "Отвора непожелни табови или прозорци",
1012
1012
  "description": "An entry in the widget used to select the type of issue"
1013
1013
  },
1014
1014
  "supportS6Select1Option7": {
1015
- "message": "Leads to badware, phishing",
1015
+ "message": "Води до злонамерен софтвер, фишинг",
1016
1016
  "description": "An entry in the widget used to select the type of issue"
1017
1017
  },
1018
1018
  "supportS6Checkbox1": {
1019
- "message": "Label the web page as “NSFW” (<a href=\"https://wikipedia.org/wiki/Not_safe_for_work\">“Not Safe For Work”</a>)",
1019
+ "message": "Означи ја веб-страницата како “NSFW” (<a href=\"https://wikipedia.org/wiki/Not_safe_for_work\">“Не е безбедно за работа”</a>)",
1020
1020
  "description": "A checkbox to use for NSFW sites"
1021
1021
  },
1022
1022
  "supportRedact": {
@@ -1028,7 +1028,7 @@
1028
1028
  "description": "Text for 'Unredact' button"
1029
1029
  },
1030
1030
  "aboutPrivacyPolicy": {
1031
- "message": "Privacy policy",
1031
+ "message": "Политика на приватност",
1032
1032
  "description": "Link to privacy policy on GitHub (English)"
1033
1033
  },
1034
1034
  "aboutChangelog": {
@@ -1056,19 +1056,19 @@
1056
1056
  "description": "Link text to uBO's own filter lists repo"
1057
1057
  },
1058
1058
  "aboutDependencies": {
1059
- "message": "External dependencies (GPLv3-compatible):",
1059
+ "message": "Надворешни зависности (компатибилни со GPLv3):",
1060
1060
  "description": "Shown in the About pane"
1061
1061
  },
1062
1062
  "aboutCDNs": {
1063
- "message": "uBO's own filter lists are freely hosted on the following <a href=\"https://wikipedia.org/wiki/Content_delivery_network\">CDNs</a>:",
1063
+ "message": "Листите со филтри на uBO се одвиваат слободно на следните <a href=\"https://wikipedia.org/wiki/Content_delivery_network\">CDN-ови</a>:",
1064
1064
  "description": "Shown in the About pane"
1065
1065
  },
1066
1066
  "aboutCDNsInfo": {
1067
- "message": "A randomly picked CDN is used when a filter list needs to be updated.",
1067
+ "message": "Се користи случајно одбран CDN кога е потребно да се обнови листата со филтри.",
1068
1068
  "description": "Shown in the About pane"
1069
1069
  },
1070
1070
  "aboutBackupDataButton": {
1071
- "message": "Back up to file…",
1071
+ "message": "Направи резервна копија во датотека…",
1072
1072
  "description": "Text for button to create a backup of all settings"
1073
1073
  },
1074
1074
  "aboutBackupFilename": {
@@ -1076,23 +1076,23 @@
1076
1076
  "description": "English: my-ublock-backup_{{datetime}}.txt"
1077
1077
  },
1078
1078
  "aboutRestoreDataButton": {
1079
- "message": "Restore from file…",
1079
+ "message": "Врати од датотека…",
1080
1080
  "description": "English: Restore from file..."
1081
1081
  },
1082
1082
  "aboutResetDataButton": {
1083
- "message": "Reset to default settings…",
1083
+ "message": "Врати на подразбирање…",
1084
1084
  "description": "English: Reset to default settings..."
1085
1085
  },
1086
1086
  "aboutRestoreDataConfirm": {
1087
- "message": "All your settings will be overwritten using data backed up on {{time}}, and uBlock₀ will restart.\n\nOverwrite all existing settings using backed up data?",
1087
+ "message": "Сите ваши поставки ќе бидат надминати со податоците направени на {{time}}, и uBlock₀ ќе се рестартира.\n\nДали сакате да го надминете сите постоечки поставки со резервираните податоци?",
1088
1088
  "description": "Message asking user to confirm restore"
1089
1089
  },
1090
1090
  "aboutRestoreDataError": {
1091
- "message": "The data could not be read or is invalid",
1091
+ "message": "Податоците не можат да бидат прочитани или се невалидни",
1092
1092
  "description": "Message to display when an error occurred during restore"
1093
1093
  },
1094
1094
  "aboutResetDataConfirm": {
1095
- "message": "All your settings will be removed, and uBlock₀ will restart.\n\nReset uBlock₀ to factory settings?",
1095
+ "message": "Сите ваши поставки ќе бидат отстранети, и uBlock₀ ќе се рестартира.\n\nДали сакате да го ресетирате uBlock₀ на фабрички поставки?",
1096
1096
  "description": "Message asking user to confirm reset"
1097
1097
  },
1098
1098
  "errorCantConnectTo": {
@@ -1100,11 +1100,11 @@
1100
1100
  "description": "English: Network error: {{msg}}"
1101
1101
  },
1102
1102
  "subscriberConfirm": {
1103
- "message": "Add the following URL to your custom filter lists?\n\nTitle: \"{{title}}\"\nURL: {{url}}",
1103
+ "message": "Дали да ја додадете следната URL адреса на вашите прилагодени листи со филтри?\n\nНаслов: \"{{title}}\"\nURL: {{url}}",
1104
1104
  "description": "No longer used"
1105
1105
  },
1106
1106
  "subscribeButton": {
1107
- "message": "Subscribe",
1107
+ "message": "Пријави се",
1108
1108
  "description": "For the button used to subscribe to a filter list"
1109
1109
  },
1110
1110
  "elapsedOneMinuteAgo": {
@@ -1144,15 +1144,15 @@
1144
1144
  "description": "Firefox-specific: appears as 'uBlock₀ (off)'"
1145
1145
  },
1146
1146
  "docblockedTitle": {
1147
- "message": "Page blocked",
1147
+ "message": "Страницата е блокирана",
1148
1148
  "description": "Used as a title for the document-blocked page"
1149
1149
  },
1150
1150
  "docblockedPrompt1": {
1151
- "message": "uBlock Origin has prevented the following page from loading:",
1151
+ "message": "uBlock Origin го спречи вчитувањето на следната страница:",
1152
1152
  "description": "Used in the strict-blocking page"
1153
1153
  },
1154
1154
  "docblockedPrompt2": {
1155
- "message": "Because of the following filter:",
1155
+ "message": "Поради следниот филтер:",
1156
1156
  "description": "Used in the strict-blocking page"
1157
1157
  },
1158
1158
  "docblockedNoParamsPrompt": {
@@ -1172,11 +1172,11 @@
1172
1172
  "description": "English: Close this window"
1173
1173
  },
1174
1174
  "docblockedDontWarn": {
1175
- "message": "Don't warn me again about this site",
1175
+ "message": "Не ми предупредувај повторно за оваа веб-страница",
1176
1176
  "description": "Label for checkbox in document-blocked page"
1177
1177
  },
1178
1178
  "docblockedProceed": {
1179
- "message": "Disable strict blocking for {{hostname}}",
1179
+ "message": "Исклучи строго блокирање за {{hostname}}",
1180
1180
  "description": "English: Disable strict blocking for {{hostname}} ..."
1181
1181
  },
1182
1182
  "docblockedDisableTemporary": {
@@ -1188,23 +1188,23 @@
1188
1188
  "description": "English: Permanently"
1189
1189
  },
1190
1190
  "docblockedDisable": {
1191
- "message": "Proceed",
1191
+ "message": "Продолжи",
1192
1192
  "description": "Button text to navigate to the blocked page"
1193
1193
  },
1194
1194
  "docblockedRedirectPrompt": {
1195
- "message": "The blocked page wants to redirect to another site. If you choose to proceed, you will navigate directly to: {{url}}",
1195
+ "message": "Блокираната страница сака да ве пренасочи на друга веб-страница. Ако изберете да продолжите, директно ќе навигирате до: {{url}}",
1196
1196
  "description": "Text warning about an incoming redirect"
1197
1197
  },
1198
1198
  "cloudPush": {
1199
- "message": "Export to cloud storage",
1199
+ "message": "Извези во облачно складиште",
1200
1200
  "description": "tooltip"
1201
1201
  },
1202
1202
  "cloudPull": {
1203
- "message": "Import from cloud storage",
1203
+ "message": "Импортирај од облачно складиште",
1204
1204
  "description": "tooltip"
1205
1205
  },
1206
1206
  "cloudPullAndMerge": {
1207
- "message": "Import from cloud storage and merge with current settings",
1207
+ "message": "Импортирај од облачно складиште и спои со тековните поставки",
1208
1208
  "description": "tooltip"
1209
1209
  },
1210
1210
  "cloudNoData": {
@@ -1216,11 +1216,11 @@
1216
1216
  "description": "used as a prompt for the user to provide a custom device name"
1217
1217
  },
1218
1218
  "advancedSettingsWarning": {
1219
- "message": "Warning! Change these advanced settings at your own risk.",
1219
+ "message": "Предупредување! Менувањето на овие напредни поставки е на ваша сопствена одговорност.",
1220
1220
  "description": "A warning to users at the top of 'Advanced settings' page"
1221
1221
  },
1222
1222
  "genericSubmit": {
1223
- "message": "Submit",
1223
+ "message": "Испрати",
1224
1224
  "description": "for generic 'Submit' buttons"
1225
1225
  },
1226
1226
  "genericApplyChanges": {
@@ -1236,19 +1236,19 @@
1236
1236
  "description": ""
1237
1237
  },
1238
1238
  "contextMenuBlockElementInFrame": {
1239
- "message": "Block element in frame…",
1239
+ "message": "Блокирај елемент во рамката…",
1240
1240
  "description": "An entry in the browser's contextual menu"
1241
1241
  },
1242
1242
  "contextMenuSubscribeToList": {
1243
- "message": "Subscribe to filter list…",
1243
+ "message": "Пријави се на списокот со филтри…",
1244
1244
  "description": "An entry in the browser's contextual menu"
1245
1245
  },
1246
1246
  "contextMenuTemporarilyAllowLargeMediaElements": {
1247
- "message": "Temporarily allow large media elements",
1247
+ "message": "Привремено дозволи големи медиумски елементи",
1248
1248
  "description": "A context menu entry, present when large media elements have been blocked on the current site"
1249
1249
  },
1250
1250
  "contextMenuViewSource": {
1251
- "message": "View source code…",
1251
+ "message": "Прикажи изворен код…",
1252
1252
  "description": "A context menu entry, to view the source code of the target resource"
1253
1253
  },
1254
1254
  "shortcutCapturePlaceholder": {
@@ -1256,7 +1256,7 @@
1256
1256
  "description": "Placeholder string for input field used to capture a keyboard shortcut"
1257
1257
  },
1258
1258
  "genericMergeViewScrollLock": {
1259
- "message": "Toggle locked scrolling",
1259
+ "message": "Промени заклучување на скролувањето",
1260
1260
  "description": "Tooltip for the button used to lock scrolling between the views in the 'My rules' pane"
1261
1261
  },
1262
1262
  "genericCopyToClipboard": {
@@ -1264,15 +1264,15 @@
1264
1264
  "description": "Label for buttons used to copy something to the clipboard"
1265
1265
  },
1266
1266
  "genericSelectAll": {
1267
- "message": "Select all",
1267
+ "message": "Избери сè",
1268
1268
  "description": "Label for buttons used to select all text in editor"
1269
1269
  },
1270
1270
  "toggleCosmeticFiltering": {
1271
- "message": "Toggle cosmetic filtering",
1271
+ "message": "Промени козметичко филтрирање",
1272
1272
  "description": "Label for keyboard shortcut used to toggle cosmetic filtering"
1273
1273
  },
1274
1274
  "toggleJavascript": {
1275
- "message": "Toggle JavaScript",
1275
+ "message": "Промени JavaScript",
1276
1276
  "description": "Label for keyboard shortcut used to toggle no-scripting switch"
1277
1277
  },
1278
1278
  "relaxBlockingMode": {
@@ -1280,7 +1280,7 @@
1280
1280
  "description": "Label for keyboard shortcut used to relax blocking mode"
1281
1281
  },
1282
1282
  "storageUsed": {
1283
- "message": "Место вземеноЧ {{value}} {{unit}}",
1283
+ "message": "Место вземено: {{value}} {{unit}}",
1284
1284
  "description": " In Setting pane, renders as (example): Storage used: 13.2 MB"
1285
1285
  },
1286
1286
  "KB": {
@@ -1296,15 +1296,15 @@
1296
1296
  "description": "short for 'gigabytes'"
1297
1297
  },
1298
1298
  "clickToLoad": {
1299
- "message": "Click to load",
1299
+ "message": "Кликнете за да вчитате",
1300
1300
  "description": "Message used in frame placeholders"
1301
1301
  },
1302
1302
  "linterMainReport": {
1303
- "message": "Errors: {{count}}",
1303
+ "message": "Грешки: {{count}}",
1304
1304
  "description": "Summary of number of errors as reported by the linter "
1305
1305
  },
1306
1306
  "unprocessedRequestTooltip": {
1307
- "message": "Could not filter properly at browser launch. Reload the page to ensure proper filtering.",
1307
+ "message": "Не можеше да се филтрира правилно при стартување на прелистувачот. Повторно вчитате ја страницата за да осигурите правилно филтрирање.",
1308
1308
  "description": "A warning which will appear in the popup panel if needed"
1309
1309
  },
1310
1310
  "dummy": {