@browserless.io/browserless 2.16.0 → 2.16.1
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.
- package/CHANGELOG.md +5 -1
- package/bin/browserless.js +6 -4
- package/bin/scaffold/src/hello-world.http.ts +1 -1
- package/build/routes/chrome/http/content.post.body.json +38 -8
- package/build/routes/chrome/http/pdf.post.body.json +38 -8
- package/build/routes/chrome/http/scrape.post.body.json +38 -8
- package/build/routes/chrome/http/screenshot.post.body.json +38 -8
- package/build/routes/chromium/http/content.post.body.json +38 -8
- package/build/routes/chromium/http/pdf.post.body.json +38 -8
- package/build/routes/chromium/http/scrape.post.body.json +38 -8
- package/build/routes/chromium/http/screenshot.post.body.json +38 -8
- package/extensions/ublock/_locales/be/messages.json +1 -1
- package/extensions/ublock/_locales/br_FR/messages.json +2 -2
- package/extensions/ublock/_locales/bs/messages.json +5 -5
- package/extensions/ublock/_locales/eu/messages.json +1 -1
- package/extensions/ublock/_locales/it/messages.json +21 -21
- package/extensions/ublock/_locales/kn/messages.json +13 -13
- package/extensions/ublock/_locales/lt/messages.json +1 -1
- package/extensions/ublock/_locales/ms/messages.json +9 -9
- package/extensions/ublock/_locales/nb/messages.json +2 -2
- package/extensions/ublock/_locales/no/messages.json +2 -2
- package/extensions/ublock/_locales/sv/messages.json +2 -2
- package/extensions/ublock/_locales/tr/messages.json +4 -4
- package/extensions/ublock/_locales/zh_TW/messages.json +17 -17
- package/extensions/ublock/assets/assets.json +4 -3
- package/extensions/ublock/assets/resources/scriptlets.js +208 -57
- package/extensions/ublock/assets/thirdparties/easylist/easylist.txt +3584 -4032
- package/extensions/ublock/assets/thirdparties/easylist/easyprivacy.txt +3732 -1683
- package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/serverlist +27 -205
- package/extensions/ublock/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat +465 -434
- package/extensions/ublock/assets/thirdparties/urlhaus-filter/urlhaus-filter-online.txt +3232 -1382
- package/extensions/ublock/assets/ublock/badware.min.txt +867 -408
- package/extensions/ublock/assets/ublock/filters.min.txt +1382 -937
- package/extensions/ublock/assets/ublock/privacy.min.txt +43 -56
- package/extensions/ublock/assets/ublock/quick-fixes.min.txt +127 -71
- package/extensions/ublock/assets/ublock/unbreak.min.txt +145 -27
- package/extensions/ublock/js/contentscript-extra.js +25 -0
- package/extensions/ublock/js/contentscript.js +3 -1
- package/extensions/ublock/js/cosmetic-filtering.js +8 -7
- package/extensions/ublock/js/dom.js +8 -4
- package/extensions/ublock/js/epicker-ui.js +1 -1
- package/extensions/ublock/js/s14e-serializer.js +2 -1
- package/extensions/ublock/js/static-filtering-parser.js +255 -254
- package/extensions/ublock/js/storage.js +7 -6
- package/extensions/ublock/js/traffic.js +33 -34
- package/extensions/ublock/manifest.json +1 -1
- package/extensions/ublock/popup-fenix.html +1 -1
- package/package.json +15 -15
- package/static/debugger/index.html +1 -1
- package/static/debugger/router.js +1 -0
- package/static/debugger/tracker.js +1 -1
- package/static/docs/swagger.json +40 -10
- package/static/docs/swagger.min.json +39 -9
- package/static/function/client.js +4120 -16782
- package/static/function/index.html +4120 -16782
- package/static/debugger/router.bundle.js +0 -2
- package/static/debugger/router.bundle.js.map +0 -1
- package/static/debugger/router.d.ts +0 -2
|
@@ -403,6 +403,10 @@
|
|
|
403
403
|
"type": "string"
|
|
404
404
|
}
|
|
405
405
|
]
|
|
406
|
+
},
|
|
407
|
+
"signal": {
|
|
408
|
+
"description": "A signal object that allows you to cancel the call.",
|
|
409
|
+
"$ref": "#/definitions/AbortSignal"
|
|
406
410
|
}
|
|
407
411
|
},
|
|
408
412
|
"additionalProperties": false
|
|
@@ -416,6 +420,32 @@
|
|
|
416
420
|
],
|
|
417
421
|
"type": "string"
|
|
418
422
|
},
|
|
423
|
+
"AbortSignal": {
|
|
424
|
+
"type": "object",
|
|
425
|
+
"properties": {
|
|
426
|
+
"aborted": {
|
|
427
|
+
"type": "boolean"
|
|
428
|
+
},
|
|
429
|
+
"onabort": {
|
|
430
|
+
"anyOf": [
|
|
431
|
+
{
|
|
432
|
+
"type": "object",
|
|
433
|
+
"additionalProperties": false
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"type": "null"
|
|
437
|
+
}
|
|
438
|
+
]
|
|
439
|
+
},
|
|
440
|
+
"reason": {}
|
|
441
|
+
},
|
|
442
|
+
"additionalProperties": false,
|
|
443
|
+
"required": [
|
|
444
|
+
"aborted",
|
|
445
|
+
"onabort",
|
|
446
|
+
"reason"
|
|
447
|
+
]
|
|
448
|
+
},
|
|
419
449
|
"Partial<ResponseForRequest>": {
|
|
420
450
|
"type": "object",
|
|
421
451
|
"properties": {
|
|
@@ -455,14 +485,14 @@
|
|
|
455
485
|
"length": {
|
|
456
486
|
"type": "number"
|
|
457
487
|
},
|
|
458
|
-
"__@toStringTag@
|
|
488
|
+
"__@toStringTag@249023": {
|
|
459
489
|
"type": "string",
|
|
460
490
|
"const": "Uint8Array"
|
|
461
491
|
}
|
|
462
492
|
},
|
|
463
493
|
"required": [
|
|
464
494
|
"BYTES_PER_ELEMENT",
|
|
465
|
-
"__@toStringTag@
|
|
495
|
+
"__@toStringTag@249023",
|
|
466
496
|
"buffer",
|
|
467
497
|
"byteLength",
|
|
468
498
|
"byteOffset",
|
|
@@ -497,13 +527,13 @@
|
|
|
497
527
|
"byteLength": {
|
|
498
528
|
"type": "number"
|
|
499
529
|
},
|
|
500
|
-
"__@toStringTag@
|
|
530
|
+
"__@toStringTag@249023": {
|
|
501
531
|
"type": "string"
|
|
502
532
|
}
|
|
503
533
|
},
|
|
504
534
|
"additionalProperties": false,
|
|
505
535
|
"required": [
|
|
506
|
-
"__@toStringTag@
|
|
536
|
+
"__@toStringTag@249023",
|
|
507
537
|
"byteLength"
|
|
508
538
|
]
|
|
509
539
|
},
|
|
@@ -513,18 +543,18 @@
|
|
|
513
543
|
"byteLength": {
|
|
514
544
|
"type": "number"
|
|
515
545
|
},
|
|
516
|
-
"__@species@
|
|
546
|
+
"__@species@249062": {
|
|
517
547
|
"$ref": "#/definitions/SharedArrayBuffer"
|
|
518
548
|
},
|
|
519
|
-
"__@toStringTag@
|
|
549
|
+
"__@toStringTag@249023": {
|
|
520
550
|
"type": "string",
|
|
521
551
|
"const": "SharedArrayBuffer"
|
|
522
552
|
}
|
|
523
553
|
},
|
|
524
554
|
"additionalProperties": false,
|
|
525
555
|
"required": [
|
|
526
|
-
"__@species@
|
|
527
|
-
"__@toStringTag@
|
|
556
|
+
"__@species@249062",
|
|
557
|
+
"__@toStringTag@249023",
|
|
528
558
|
"byteLength"
|
|
529
559
|
]
|
|
530
560
|
},
|
|
@@ -364,6 +364,10 @@
|
|
|
364
364
|
"type": "string"
|
|
365
365
|
}
|
|
366
366
|
]
|
|
367
|
+
},
|
|
368
|
+
"signal": {
|
|
369
|
+
"description": "A signal object that allows you to cancel the call.",
|
|
370
|
+
"$ref": "#/definitions/AbortSignal"
|
|
367
371
|
}
|
|
368
372
|
},
|
|
369
373
|
"additionalProperties": false
|
|
@@ -377,6 +381,32 @@
|
|
|
377
381
|
],
|
|
378
382
|
"type": "string"
|
|
379
383
|
},
|
|
384
|
+
"AbortSignal": {
|
|
385
|
+
"type": "object",
|
|
386
|
+
"properties": {
|
|
387
|
+
"aborted": {
|
|
388
|
+
"type": "boolean"
|
|
389
|
+
},
|
|
390
|
+
"onabort": {
|
|
391
|
+
"anyOf": [
|
|
392
|
+
{
|
|
393
|
+
"type": "object",
|
|
394
|
+
"additionalProperties": false
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"type": "null"
|
|
398
|
+
}
|
|
399
|
+
]
|
|
400
|
+
},
|
|
401
|
+
"reason": {}
|
|
402
|
+
},
|
|
403
|
+
"additionalProperties": false,
|
|
404
|
+
"required": [
|
|
405
|
+
"aborted",
|
|
406
|
+
"onabort",
|
|
407
|
+
"reason"
|
|
408
|
+
]
|
|
409
|
+
},
|
|
380
410
|
"ScreenshotOptions": {
|
|
381
411
|
"type": "object",
|
|
382
412
|
"properties": {
|
|
@@ -498,14 +528,14 @@
|
|
|
498
528
|
"length": {
|
|
499
529
|
"type": "number"
|
|
500
530
|
},
|
|
501
|
-
"__@toStringTag@
|
|
531
|
+
"__@toStringTag@261095": {
|
|
502
532
|
"type": "string",
|
|
503
533
|
"const": "Uint8Array"
|
|
504
534
|
}
|
|
505
535
|
},
|
|
506
536
|
"required": [
|
|
507
537
|
"BYTES_PER_ELEMENT",
|
|
508
|
-
"__@toStringTag@
|
|
538
|
+
"__@toStringTag@261095",
|
|
509
539
|
"buffer",
|
|
510
540
|
"byteLength",
|
|
511
541
|
"byteOffset",
|
|
@@ -540,13 +570,13 @@
|
|
|
540
570
|
"byteLength": {
|
|
541
571
|
"type": "number"
|
|
542
572
|
},
|
|
543
|
-
"__@toStringTag@
|
|
573
|
+
"__@toStringTag@261095": {
|
|
544
574
|
"type": "string"
|
|
545
575
|
}
|
|
546
576
|
},
|
|
547
577
|
"additionalProperties": false,
|
|
548
578
|
"required": [
|
|
549
|
-
"__@toStringTag@
|
|
579
|
+
"__@toStringTag@261095",
|
|
550
580
|
"byteLength"
|
|
551
581
|
]
|
|
552
582
|
},
|
|
@@ -556,18 +586,18 @@
|
|
|
556
586
|
"byteLength": {
|
|
557
587
|
"type": "number"
|
|
558
588
|
},
|
|
559
|
-
"__@species@
|
|
589
|
+
"__@species@261134": {
|
|
560
590
|
"$ref": "#/definitions/SharedArrayBuffer"
|
|
561
591
|
},
|
|
562
|
-
"__@toStringTag@
|
|
592
|
+
"__@toStringTag@261095": {
|
|
563
593
|
"type": "string",
|
|
564
594
|
"const": "SharedArrayBuffer"
|
|
565
595
|
}
|
|
566
596
|
},
|
|
567
597
|
"additionalProperties": false,
|
|
568
598
|
"required": [
|
|
569
|
-
"__@species@
|
|
570
|
-
"__@toStringTag@
|
|
599
|
+
"__@species@261134",
|
|
600
|
+
"__@toStringTag@261095",
|
|
571
601
|
"byteLength"
|
|
572
602
|
]
|
|
573
603
|
},
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"description": "extension name."
|
|
5
5
|
},
|
|
6
6
|
"extShortDesc": {
|
|
7
|
-
"message": "Нарэшце, эфектыўны
|
|
7
|
+
"message": "Нарэшце, эфектыўны блакавальнік. Не нагружае працэсар і памяць.",
|
|
8
8
|
"description": "this will be in the Chrome web store: must be 132 characters or less"
|
|
9
9
|
},
|
|
10
10
|
"dashboardName": {
|
|
@@ -484,11 +484,11 @@
|
|
|
484
484
|
"description": "Filter lists section name"
|
|
485
485
|
},
|
|
486
486
|
"3pGroupSocial": {
|
|
487
|
-
"message": "
|
|
487
|
+
"message": "Widgetoù sokial",
|
|
488
488
|
"description": "Filter lists section name"
|
|
489
489
|
},
|
|
490
490
|
"3pGroupCookies": {
|
|
491
|
-
"message": "
|
|
491
|
+
"message": "Kemennadennoù diwar-benn an toupinoù",
|
|
492
492
|
"description": "Filter lists section name"
|
|
493
493
|
},
|
|
494
494
|
"3pGroupAnnoyances": {
|
|
@@ -484,11 +484,11 @@
|
|
|
484
484
|
"description": "Filter lists section name"
|
|
485
485
|
},
|
|
486
486
|
"3pGroupSocial": {
|
|
487
|
-
"message": "
|
|
487
|
+
"message": "Društveni widgeti",
|
|
488
488
|
"description": "Filter lists section name"
|
|
489
489
|
},
|
|
490
490
|
"3pGroupCookies": {
|
|
491
|
-
"message": "
|
|
491
|
+
"message": "Obavještenja o kolačićima",
|
|
492
492
|
"description": "Filter lists section name"
|
|
493
493
|
},
|
|
494
494
|
"3pGroupAnnoyances": {
|
|
@@ -540,11 +540,11 @@
|
|
|
540
540
|
"description": "Warning against copy-pasting filters from random sources"
|
|
541
541
|
},
|
|
542
542
|
"1pEnableMyFiltersLabel": {
|
|
543
|
-
"message": "
|
|
543
|
+
"message": "Omogući moje prilagođene filtere",
|
|
544
544
|
"description": "Label for the checkbox use to enable/disable 'My filters' list"
|
|
545
545
|
},
|
|
546
546
|
"1pTrustMyFiltersLabel": {
|
|
547
|
-
"message": "
|
|
547
|
+
"message": "Dozvolite prilagođene filtere koji zahtijevaju povjerenje",
|
|
548
548
|
"description": "Label for the checkbox use to trust the content of 'My filters' list"
|
|
549
549
|
},
|
|
550
550
|
"1pImport": {
|
|
@@ -1264,7 +1264,7 @@
|
|
|
1264
1264
|
"description": "Label for keyboard shortcut used to toggle cosmetic filtering"
|
|
1265
1265
|
},
|
|
1266
1266
|
"toggleJavascript": {
|
|
1267
|
-
"message": "
|
|
1267
|
+
"message": "Uključi JavaScript",
|
|
1268
1268
|
"description": "Label for keyboard shortcut used to toggle no-scripting switch"
|
|
1269
1269
|
},
|
|
1270
1270
|
"relaxBlockingMode": {
|
|
@@ -540,7 +540,7 @@
|
|
|
540
540
|
"description": "Warning against copy-pasting filters from random sources"
|
|
541
541
|
},
|
|
542
542
|
"1pEnableMyFiltersLabel": {
|
|
543
|
-
"message": "
|
|
543
|
+
"message": "Aktibatu nire filtro pertsonalitsatuak",
|
|
544
544
|
"description": "Label for the checkbox use to enable/disable 'My filters' list"
|
|
545
545
|
},
|
|
546
546
|
"1pTrustMyFiltersLabel": {
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
"description": ""
|
|
381
381
|
},
|
|
382
382
|
"settingsNoLargeMediaPrompt": {
|
|
383
|
-
"message": "Blocca elementi multimediali maggiori di {{input}} KB",
|
|
383
|
+
"message": "Blocca gli elementi multimediali di dimensioni maggiori di {{input}} KB",
|
|
384
384
|
"description": ""
|
|
385
385
|
},
|
|
386
386
|
"settingsNoRemoteFontsPrompt": {
|
|
@@ -404,7 +404,7 @@
|
|
|
404
404
|
"description": "Section for controlling advanced-user settings"
|
|
405
405
|
},
|
|
406
406
|
"settingsAdvancedSynopsis": {
|
|
407
|
-
"message": "
|
|
407
|
+
"message": "Funzionalità adatte solo per gli utenti tecnici.",
|
|
408
408
|
"description": "Description of section controlling advanced-user settings"
|
|
409
409
|
},
|
|
410
410
|
"settingsAdvancedUserSettings": {
|
|
@@ -440,11 +440,11 @@
|
|
|
440
440
|
"description": "A button in the in the _3rd-party filters_ pane"
|
|
441
441
|
},
|
|
442
442
|
"3pParseAllABPHideFiltersPrompt1": {
|
|
443
|
-
"message": "Analizza e applica filtri cosmetici",
|
|
443
|
+
"message": "Analizza e applica i filtri cosmetici",
|
|
444
444
|
"description": "English: Parse and enforce Adblock+ element hiding filters."
|
|
445
445
|
},
|
|
446
446
|
"3pParseAllABPHideFiltersInfo": {
|
|
447
|
-
"message": "\nI filtri cosmetici servono a nascondere gli elementi in una pagina web che sono considerati
|
|
447
|
+
"message": "\nI filtri cosmetici servono a nascondere gli elementi in una pagina web che sono considerati visivamente fastidiosi e che non possono essere bloccati dai motori di filtraggio basati sulle richieste di rete.",
|
|
448
448
|
"description": "Describes the purpose of the 'Parse and enforce cosmetic filters' feature."
|
|
449
449
|
},
|
|
450
450
|
"3pIgnoreGenericCosmeticFilters": {
|
|
@@ -456,7 +456,7 @@
|
|
|
456
456
|
"description": "Describes the purpose of the 'Ignore generic cosmetic filters' feature."
|
|
457
457
|
},
|
|
458
458
|
"3pSuspendUntilListsAreLoaded": {
|
|
459
|
-
"message": "Sospendi l'attività di rete finché
|
|
459
|
+
"message": "Sospendi l'attività di rete finché tutte le liste dei filtri sono caricate",
|
|
460
460
|
"description": "A checkbox in the 'Filter lists' pane"
|
|
461
461
|
},
|
|
462
462
|
"3pListsOfBlockedHostsHeader": {
|
|
@@ -480,15 +480,15 @@
|
|
|
480
480
|
"description": "Filter lists section name"
|
|
481
481
|
},
|
|
482
482
|
"3pGroupMalware": {
|
|
483
|
-
"message": "
|
|
483
|
+
"message": "Protezione dai malware, sicurezza",
|
|
484
484
|
"description": "Filter lists section name"
|
|
485
485
|
},
|
|
486
486
|
"3pGroupSocial": {
|
|
487
|
-
"message": "Widget
|
|
487
|
+
"message": "Widget dei social",
|
|
488
488
|
"description": "Filter lists section name"
|
|
489
489
|
},
|
|
490
490
|
"3pGroupCookies": {
|
|
491
|
-
"message": "
|
|
491
|
+
"message": "Avvisi sui cookie",
|
|
492
492
|
"description": "Filter lists section name"
|
|
493
493
|
},
|
|
494
494
|
"3pGroupAnnoyances": {
|
|
@@ -512,7 +512,7 @@
|
|
|
512
512
|
"description": "The label for the checkbox used to import external filter lists"
|
|
513
513
|
},
|
|
514
514
|
"3pExternalListsHint": {
|
|
515
|
-
"message": "Un URL per riga. URL non validi
|
|
515
|
+
"message": "Un URL per riga. Gli URL non validi saranno silenziosamente ignorati.",
|
|
516
516
|
"description": "Short information about how to use the textarea to import external filter lists by URL"
|
|
517
517
|
},
|
|
518
518
|
"3pExternalListObsolete": {
|
|
@@ -536,7 +536,7 @@
|
|
|
536
536
|
"description": "used as a tooltip for error icon beside a list"
|
|
537
537
|
},
|
|
538
538
|
"1pTrustWarning": {
|
|
539
|
-
"message": "Non aggiungere filtri da fonti non
|
|
539
|
+
"message": "Non aggiungere filtri da fonti non affidabili.",
|
|
540
540
|
"description": "Warning against copy-pasting filters from random sources"
|
|
541
541
|
},
|
|
542
542
|
"1pEnableMyFiltersLabel": {
|
|
@@ -688,7 +688,7 @@
|
|
|
688
688
|
"description": "Tooltip for the popup panel button in the logger page"
|
|
689
689
|
},
|
|
690
690
|
"loggerInfoTip": {
|
|
691
|
-
"message": "uBlock Origin
|
|
691
|
+
"message": "Wiki di uBlock Origin: Il registro",
|
|
692
692
|
"description": "Tooltip for the top-right info label in the logger page"
|
|
693
693
|
},
|
|
694
694
|
"loggerClearTip": {
|
|
@@ -836,7 +836,7 @@
|
|
|
836
836
|
"description": "Below this sentence, the filter list(s) in which the filter was found"
|
|
837
837
|
},
|
|
838
838
|
"loggerStaticFilteringFinderSentence2": {
|
|
839
|
-
"message": "Non è stato possibile trovare il filtro statico in
|
|
839
|
+
"message": "Non è stato possibile trovare il filtro statico in alcuna delle liste dei filtri attualmente abilitate",
|
|
840
840
|
"description": "Message to show when a filter cannot be found in any filter lists"
|
|
841
841
|
},
|
|
842
842
|
"loggerSettingDiscardPrompt": {
|
|
@@ -932,7 +932,7 @@
|
|
|
932
932
|
"description": "First paragraph of 'Filter issues' section in Support pane"
|
|
933
933
|
},
|
|
934
934
|
"supportS3P2": {
|
|
935
|
-
"message": "<b>Importante:</b> Evita di utilizzare altre estensioni simili insieme a uBlock Origin, poiché ciò potrebbe causare problemi di
|
|
935
|
+
"message": "<b>Importante:</b> Evita di utilizzare altre estensioni simili insieme a uBlock Origin, poiché ciò potrebbe causare problemi di filtraggio su specifici siti.",
|
|
936
936
|
"description": "Second paragraph of 'Filter issues' section in Support pane"
|
|
937
937
|
},
|
|
938
938
|
"supportS3P3": {
|
|
@@ -952,7 +952,7 @@
|
|
|
952
952
|
"description": "Header of 'Troubleshooting Information' section in Support pane"
|
|
953
953
|
},
|
|
954
954
|
"supportS5P1": {
|
|
955
|
-
"message": "Di seguito sono riportate
|
|
955
|
+
"message": "Di seguito sono riportate informazioni tecniche che potrebbero essere utili quando i volontari cercheranno di aiutarti a risolvere un problema.",
|
|
956
956
|
"description": "First paragraph of 'Troubleshooting Information' section in Support pane"
|
|
957
957
|
},
|
|
958
958
|
"supportS5P2": {
|
|
@@ -1024,11 +1024,11 @@
|
|
|
1024
1024
|
"description": "Text for 'Unredact' button"
|
|
1025
1025
|
},
|
|
1026
1026
|
"aboutPrivacyPolicy": {
|
|
1027
|
-
"message": "
|
|
1027
|
+
"message": "Informativa sulla privacy",
|
|
1028
1028
|
"description": "Link to privacy policy on GitHub (English)"
|
|
1029
1029
|
},
|
|
1030
1030
|
"aboutChangelog": {
|
|
1031
|
-
"message": "
|
|
1031
|
+
"message": "Registro delle modifiche",
|
|
1032
1032
|
"description": ""
|
|
1033
1033
|
},
|
|
1034
1034
|
"aboutCode": {
|
|
@@ -1072,7 +1072,7 @@
|
|
|
1072
1072
|
"description": "English: my-ublock-backup_{{datetime}}.txt"
|
|
1073
1073
|
},
|
|
1074
1074
|
"aboutRestoreDataButton": {
|
|
1075
|
-
"message": "Ripristina
|
|
1075
|
+
"message": "Ripristina dal file...",
|
|
1076
1076
|
"description": "English: Restore from file..."
|
|
1077
1077
|
},
|
|
1078
1078
|
"aboutResetDataButton": {
|
|
@@ -1168,7 +1168,7 @@
|
|
|
1168
1168
|
"description": "English: Close this window"
|
|
1169
1169
|
},
|
|
1170
1170
|
"docblockedDontWarn": {
|
|
1171
|
-
"message": "Non avvisarmi
|
|
1171
|
+
"message": "Non avvisarmi di nuovo riguardo questo sito",
|
|
1172
1172
|
"description": "Label for checkbox in document-blocked page"
|
|
1173
1173
|
},
|
|
1174
1174
|
"docblockedProceed": {
|
|
@@ -1240,7 +1240,7 @@
|
|
|
1240
1240
|
"description": "A context menu entry, present when large media elements have been blocked on the current site"
|
|
1241
1241
|
},
|
|
1242
1242
|
"contextMenuViewSource": {
|
|
1243
|
-
"message": "Visualizza
|
|
1243
|
+
"message": "Visualizza il codice sorgente…",
|
|
1244
1244
|
"description": "A context menu entry, to view the source code of the target resource"
|
|
1245
1245
|
},
|
|
1246
1246
|
"shortcutCapturePlaceholder": {
|
|
@@ -1260,7 +1260,7 @@
|
|
|
1260
1260
|
"description": "Label for buttons used to select all text in editor"
|
|
1261
1261
|
},
|
|
1262
1262
|
"toggleCosmeticFiltering": {
|
|
1263
|
-
"message": "Attiva/Disattiva
|
|
1263
|
+
"message": "Attiva/Disattiva il filtraggio cosmetico",
|
|
1264
1264
|
"description": "Label for keyboard shortcut used to toggle cosmetic filtering"
|
|
1265
1265
|
},
|
|
1266
1266
|
"toggleJavascript": {
|
|
@@ -1296,7 +1296,7 @@
|
|
|
1296
1296
|
"description": "Summary of number of errors as reported by the linter "
|
|
1297
1297
|
},
|
|
1298
1298
|
"unprocessedRequestTooltip": {
|
|
1299
|
-
"message": "Non è stato
|
|
1299
|
+
"message": "Non è stato effettuato correttamente il filtraggio all'avvio del browser.\nRicarica la pagina per garantire un filtraggio adeguato.",
|
|
1300
1300
|
"description": "A warning which will appear in the popup panel if needed"
|
|
1301
1301
|
},
|
|
1302
1302
|
"dummy": {
|
|
@@ -72,7 +72,7 @@
|
|
|
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": "
|
|
75
|
+
"message": "ಈ ಸೈಟ್ಗಾಗಿ uBlock₀ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ.\n\nಈ ಪುಟದಲ್ಲಿ ಮಾತ್ರ uBlock₀ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು Ctrl+ಕ್ಲಿಕ್ ಮಾಡಿ.",
|
|
76
76
|
"description": "Message to be read by screen readers"
|
|
77
77
|
},
|
|
78
78
|
"popupPowerSwitchInfo2": {
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
"description": "English: Click to open the dashboard"
|
|
117
117
|
},
|
|
118
118
|
"popupTipZapper": {
|
|
119
|
-
"message": "
|
|
119
|
+
"message": "Element zapper ಮೋಡ್ ಅನ್ನು ಬಳಸಿ",
|
|
120
120
|
"description": "Tooltip for the element-zapper icon in the popup panel"
|
|
121
121
|
},
|
|
122
122
|
"popupTipPicker": {
|
|
@@ -136,15 +136,15 @@
|
|
|
136
136
|
"description": "Tooltip for the no-popups per-site switch"
|
|
137
137
|
},
|
|
138
138
|
"popupTipNoPopups1": {
|
|
139
|
-
"message": "
|
|
139
|
+
"message": "ಈ ಸೈಟ್ನಲ್ಲಿ ಎಲ್ಲಾ ಪಾಪ್ಅಪ್ಗಳನ್ನು ನಿರ್ಬಂಧಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ",
|
|
140
140
|
"description": "Tooltip for the no-popups per-site switch"
|
|
141
141
|
},
|
|
142
142
|
"popupTipNoPopups2": {
|
|
143
|
-
"message": "
|
|
143
|
+
"message": "ಈ ಸೈಟ್ನಲ್ಲಿ ಇನ್ನು ಮುಂದೆ ಎಲ್ಲಾ ಪಾಪ್ಅಪ್ಗಳನ್ನು ನಿರ್ಬಂಧಿಸದಿರಲು ಕ್ಲಿಕ್ ಮಾಡಿ",
|
|
144
144
|
"description": "Tooltip for the no-popups per-site switch"
|
|
145
145
|
},
|
|
146
146
|
"popupTipNoLargeMedia": {
|
|
147
|
-
"message": "
|
|
147
|
+
"message": "ಈ ಸೈಟ್ಗಾಗಿ ದೊಡ್ಡ ಮಾಧ್ಯಮ ಅಂಶಗಳ ನಿರ್ಬಂಧಿಸುವಿಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ",
|
|
148
148
|
"description": "Tooltip for the no-large-media per-site switch"
|
|
149
149
|
},
|
|
150
150
|
"popupTipNoLargeMedia1": {
|
|
@@ -188,15 +188,15 @@
|
|
|
188
188
|
"description": "Tooltip for the no-scripting per-site switch"
|
|
189
189
|
},
|
|
190
190
|
"popupNoPopups_v2": {
|
|
191
|
-
"message": "
|
|
191
|
+
"message": "ಪಾಪ್-ಅಪ್ ವಿಂಡೋ",
|
|
192
192
|
"description": "Caption for the no-popups per-site switch"
|
|
193
193
|
},
|
|
194
194
|
"popupNoLargeMedia_v2": {
|
|
195
|
-
"message": "
|
|
195
|
+
"message": "ದೊಡ್ಡ ಮಾಧ್ಯಮ ಅಂಶಗಳು",
|
|
196
196
|
"description": "Caption for the no-large-media per-site switch"
|
|
197
197
|
},
|
|
198
198
|
"popupNoCosmeticFiltering_v2": {
|
|
199
|
-
"message": "
|
|
199
|
+
"message": "ಕಾಸ್ಮೆಟಿಕ್ ಫಿಲ್ಟರಿಂಗ್",
|
|
200
200
|
"description": "Caption for the no-cosmetic-filtering per-site switch"
|
|
201
201
|
},
|
|
202
202
|
"popupNoRemoteFonts_v2": {
|
|
@@ -224,11 +224,11 @@
|
|
|
224
224
|
"description": "Tooltip when hovering the top-most cell of the local-rules column."
|
|
225
225
|
},
|
|
226
226
|
"popupTipSaveRules": {
|
|
227
|
-
"message": "
|
|
227
|
+
"message": "ಶಾಶ್ವತ ಬದಲಾವಣೆಗಳನ್ನು ಮಾಡಲು ಕ್ಲಿಕ್ ಮಾಡಿ",
|
|
228
228
|
"description": "Tooltip when hovering over the padlock in the dynamic filtering pane."
|
|
229
229
|
},
|
|
230
230
|
"popupTipRevertRules": {
|
|
231
|
-
"message": "
|
|
231
|
+
"message": "ನಿಮ್ಮ ಬದಲಾವಣೆಗಳನ್ನು ಹಿಂತಿರುಗಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ",
|
|
232
232
|
"description": "Tooltip when hovering over the eraser in the dynamic filtering pane."
|
|
233
233
|
},
|
|
234
234
|
"popupAnyRulePrompt": {
|
|
@@ -864,7 +864,7 @@
|
|
|
864
864
|
"description": "Logger settings: a sentence to describe the purpose of the checkboxes below"
|
|
865
865
|
},
|
|
866
866
|
"loggerSettingHideColumnTime": {
|
|
867
|
-
"message": "{{input}}
|
|
867
|
+
"message": "{{input}} ಗಂಟೆ",
|
|
868
868
|
"description": "A label for the time column"
|
|
869
869
|
},
|
|
870
870
|
"loggerSettingHideColumnFilter": {
|
|
@@ -1144,7 +1144,7 @@
|
|
|
1144
1144
|
"description": "Used as a title for the document-blocked page"
|
|
1145
1145
|
},
|
|
1146
1146
|
"docblockedPrompt1": {
|
|
1147
|
-
"message": "uBlock Origin
|
|
1147
|
+
"message": "uBlock Origin ಈ ಕೆಳಗಿನ ಪುಟವನ್ನು ಲೋಡ್ ಮಾಡುವುದನ್ನು ತಡೆಯುತ್ತದೆ:",
|
|
1148
1148
|
"description": "Used in the strict-blocking page"
|
|
1149
1149
|
},
|
|
1150
1150
|
"docblockedPrompt2": {
|
|
@@ -1272,7 +1272,7 @@
|
|
|
1272
1272
|
"description": "Label for keyboard shortcut used to relax blocking mode"
|
|
1273
1273
|
},
|
|
1274
1274
|
"storageUsed": {
|
|
1275
|
-
"message": "
|
|
1275
|
+
"message": "ಉಪಯೊಗಿಸುತಿರುವ ಸಂಗ್ರಹಣೆ: {{value}} {{unit}}",
|
|
1276
1276
|
"description": " In Setting pane, renders as (example): Storage used: 13.2 MB"
|
|
1277
1277
|
},
|
|
1278
1278
|
"KB": {
|
|
@@ -940,7 +940,7 @@
|
|
|
940
940
|
"description": "Third paragraph of 'Filter issues' section in Support pane"
|
|
941
941
|
},
|
|
942
942
|
"supportS4H": {
|
|
943
|
-
"message": "
|
|
943
|
+
"message": "Klaidos pranešimas",
|
|
944
944
|
"description": "Header of 'Bug report' section in Support pane"
|
|
945
945
|
},
|
|
946
946
|
"supportS4P1": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"description": "this will be in the Chrome web store: must be 132 characters or less"
|
|
9
9
|
},
|
|
10
10
|
"dashboardName": {
|
|
11
|
-
"message": "uBlock₀ —
|
|
11
|
+
"message": "uBlock₀ — Papan pemuka",
|
|
12
12
|
"description": "English: uBlock₀ — Dashboard"
|
|
13
13
|
},
|
|
14
14
|
"dashboardUnsavedWarning": {
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
"description": "English: Enter element picker mode"
|
|
125
125
|
},
|
|
126
126
|
"popupTipLog": {
|
|
127
|
-
"message": "
|
|
127
|
+
"message": "Buka pengelog",
|
|
128
128
|
"description": "Tooltip used for the logger icon in the panel"
|
|
129
129
|
},
|
|
130
130
|
"popupTipReport": {
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
"description": "Tooltip for the no-scripting per-site switch"
|
|
189
189
|
},
|
|
190
190
|
"popupNoPopups_v2": {
|
|
191
|
-
"message": "
|
|
191
|
+
"message": "Tingkap timbul",
|
|
192
192
|
"description": "Caption for the no-popups per-site switch"
|
|
193
193
|
},
|
|
194
194
|
"popupNoLargeMedia_v2": {
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
"description": "Caption for the no-cosmetic-filtering per-site switch"
|
|
201
201
|
},
|
|
202
202
|
"popupNoRemoteFonts_v2": {
|
|
203
|
-
"message": "
|
|
203
|
+
"message": "Font tersendiri",
|
|
204
204
|
"description": "Caption for the no-remote-fonts per-site switch"
|
|
205
205
|
},
|
|
206
206
|
"popupNoScripting_v2": {
|
|
@@ -484,11 +484,11 @@
|
|
|
484
484
|
"description": "Filter lists section name"
|
|
485
485
|
},
|
|
486
486
|
"3pGroupSocial": {
|
|
487
|
-
"message": "
|
|
487
|
+
"message": "Widget sosial",
|
|
488
488
|
"description": "Filter lists section name"
|
|
489
489
|
},
|
|
490
490
|
"3pGroupCookies": {
|
|
491
|
-
"message": "
|
|
491
|
+
"message": "Notis kuki",
|
|
492
492
|
"description": "Filter lists section name"
|
|
493
493
|
},
|
|
494
494
|
"3pGroupAnnoyances": {
|
|
@@ -540,11 +540,11 @@
|
|
|
540
540
|
"description": "Warning against copy-pasting filters from random sources"
|
|
541
541
|
},
|
|
542
542
|
"1pEnableMyFiltersLabel": {
|
|
543
|
-
"message": "
|
|
543
|
+
"message": "Dayakan penapis tersuai saya",
|
|
544
544
|
"description": "Label for the checkbox use to enable/disable 'My filters' list"
|
|
545
545
|
},
|
|
546
546
|
"1pTrustMyFiltersLabel": {
|
|
547
|
-
"message": "
|
|
547
|
+
"message": "Benarkan penapis tersuai yang memerlukan kepercayaan",
|
|
548
548
|
"description": "Label for the checkbox use to trust the content of 'My filters' list"
|
|
549
549
|
},
|
|
550
550
|
"1pImport": {
|
|
@@ -1264,7 +1264,7 @@
|
|
|
1264
1264
|
"description": "Label for keyboard shortcut used to toggle cosmetic filtering"
|
|
1265
1265
|
},
|
|
1266
1266
|
"toggleJavascript": {
|
|
1267
|
-
"message": "
|
|
1267
|
+
"message": "Togol JavaScript",
|
|
1268
1268
|
"description": "Label for keyboard shortcut used to toggle no-scripting switch"
|
|
1269
1269
|
},
|
|
1270
1270
|
"relaxBlockingMode": {
|
|
@@ -484,11 +484,11 @@
|
|
|
484
484
|
"description": "Filter lists section name"
|
|
485
485
|
},
|
|
486
486
|
"3pGroupSocial": {
|
|
487
|
-
"message": "Sosiale
|
|
487
|
+
"message": "Sosiale mediers moduler",
|
|
488
488
|
"description": "Filter lists section name"
|
|
489
489
|
},
|
|
490
490
|
"3pGroupCookies": {
|
|
491
|
-
"message": "
|
|
491
|
+
"message": "Infokapselmeldinger",
|
|
492
492
|
"description": "Filter lists section name"
|
|
493
493
|
},
|
|
494
494
|
"3pGroupAnnoyances": {
|
|
@@ -484,11 +484,11 @@
|
|
|
484
484
|
"description": "Filter lists section name"
|
|
485
485
|
},
|
|
486
486
|
"3pGroupSocial": {
|
|
487
|
-
"message": "Sosiale
|
|
487
|
+
"message": "Sosiale mediers moduler",
|
|
488
488
|
"description": "Filter lists section name"
|
|
489
489
|
},
|
|
490
490
|
"3pGroupCookies": {
|
|
491
|
-
"message": "
|
|
491
|
+
"message": "Infokapselmeldinger",
|
|
492
492
|
"description": "Filter lists section name"
|
|
493
493
|
},
|
|
494
494
|
"3pGroupAnnoyances": {
|