lighthouse 9.5.0-dev.20230123 → 9.5.0-dev.20230125
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/.codecov.yml +0 -5
- package/core/audits/accessibility/accesskeys.js +1 -1
- package/core/audits/accessibility/aria-allowed-attr.js +1 -1
- package/core/audits/accessibility/aria-command-name.js +1 -1
- package/core/audits/accessibility/aria-hidden-body.js +1 -1
- package/core/audits/accessibility/aria-hidden-focus.js +1 -1
- package/core/audits/accessibility/aria-input-field-name.js +1 -1
- package/core/audits/accessibility/aria-meter-name.js +1 -1
- package/core/audits/accessibility/aria-progressbar-name.js +1 -1
- package/core/audits/accessibility/aria-required-attr.js +1 -1
- package/core/audits/accessibility/aria-required-children.js +1 -1
- package/core/audits/accessibility/aria-required-parent.js +1 -1
- package/core/audits/accessibility/aria-roles.js +1 -1
- package/core/audits/accessibility/aria-toggle-field-name.js +1 -1
- package/core/audits/accessibility/aria-tooltip-name.js +1 -1
- package/core/audits/accessibility/aria-treeitem-name.js +1 -1
- package/core/audits/accessibility/aria-valid-attr-value.js +1 -1
- package/core/audits/accessibility/aria-valid-attr.js +1 -1
- package/core/audits/accessibility/button-name.js +1 -1
- package/core/audits/accessibility/bypass.js +1 -1
- package/core/audits/accessibility/color-contrast.js +1 -1
- package/core/audits/accessibility/definition-list.js +1 -1
- package/core/audits/accessibility/dlitem.js +1 -1
- package/core/audits/accessibility/document-title.js +1 -1
- package/core/audits/accessibility/duplicate-id-active.js +1 -1
- package/core/audits/accessibility/duplicate-id-aria.js +1 -1
- package/core/audits/accessibility/form-field-multiple-labels.js +1 -1
- package/core/audits/accessibility/frame-title.js +1 -1
- package/core/audits/accessibility/heading-order.js +1 -1
- package/core/audits/accessibility/html-has-lang.js +1 -1
- package/core/audits/accessibility/html-lang-valid.js +1 -1
- package/core/audits/accessibility/image-alt.js +1 -1
- package/core/audits/accessibility/input-image-alt.js +1 -1
- package/core/audits/accessibility/label.js +1 -1
- package/core/audits/accessibility/link-name.js +1 -1
- package/core/audits/accessibility/list.js +1 -1
- package/core/audits/accessibility/listitem.js +1 -1
- package/core/audits/accessibility/meta-refresh.js +1 -1
- package/core/audits/accessibility/meta-viewport.js +1 -1
- package/core/audits/accessibility/object-alt.js +1 -1
- package/core/audits/accessibility/tabindex.js +1 -1
- package/core/audits/accessibility/td-headers-attr.js +1 -1
- package/core/audits/accessibility/th-has-data-cells.js +1 -1
- package/core/audits/accessibility/valid-lang.js +1 -1
- package/core/audits/accessibility/video-caption.js +1 -1
- package/core/audits/audit.js +1 -1
- package/core/audits/byte-efficiency/legacy-javascript.d.ts +1 -0
- package/core/audits/byte-efficiency/legacy-javascript.js +7 -3
- package/core/audits/dobetterweb/uses-http2.d.ts +5 -2
- package/core/audits/dobetterweb/uses-http2.js +12 -7
- package/core/audits/network-requests.js +7 -6
- package/core/audits/third-party-facades.d.ts +3 -2
- package/core/audits/third-party-facades.js +12 -9
- package/core/audits/third-party-summary.d.ts +7 -6
- package/core/audits/third-party-summary.js +16 -14
- package/core/audits/valid-source-maps.d.ts +5 -3
- package/core/audits/valid-source-maps.js +11 -9
- package/core/computed/entity-classification.d.ts +29 -0
- package/core/computed/entity-classification.js +102 -0
- package/core/computed/metrics/responsiveness.js +5 -2
- package/core/computed/page-dependency-graph.js +1 -1
- package/core/computed/resource-summary.d.ts +4 -2
- package/core/computed/resource-summary.js +8 -5
- package/core/gather/gatherers/accessibility.js +3 -1
- package/core/lib/network-request.d.ts +2 -0
- package/core/lib/network-request.js +3 -0
- package/core/lib/stack-packs.js +4 -0
- package/core/lib/tracehouse/trace-processor.d.ts +14 -5
- package/core/lib/tracehouse/trace-processor.js +85 -30
- package/core/lib/traces/metric-trace-events.js +1 -1
- package/core/lib/url-utils.js +1 -1
- package/core/runner.d.ts +10 -0
- package/core/runner.js +48 -0
- package/dist/report/bundle.esm.js +724 -687
- package/dist/report/flow.js +25 -15
- package/dist/report/standalone.js +25 -15
- package/flow-report/src/common.tsx +1 -1
- package/flow-report/src/i18n/i18n.tsx +17 -16
- package/flow-report/src/sidebar/sidebar.tsx +2 -2
- package/flow-report/src/summary/category.tsx +6 -6
- package/flow-report/src/summary/summary.tsx +2 -2
- package/package.json +7 -8
- package/report/renderer/category-renderer.js +19 -17
- package/report/renderer/crc-details-renderer.js +6 -6
- package/report/renderer/details-renderer.js +7 -6
- package/report/renderer/dom.js +1 -1
- package/report/renderer/element-screenshot-renderer.js +3 -3
- package/report/renderer/performance-category-renderer.js +17 -15
- package/report/renderer/pwa-category-renderer.js +5 -4
- package/report/renderer/report-globals.d.ts +21 -0
- package/report/renderer/report-globals.js +49 -0
- package/report/renderer/report-renderer.js +22 -20
- package/report/renderer/report-ui-features.js +9 -8
- package/report/renderer/report-utils.d.ts +116 -0
- package/report/renderer/{util.js → report-utils.js} +81 -429
- package/report/renderer/snippet-renderer.js +3 -2
- package/report/test/renderer/category-renderer-test.js +9 -4
- package/report/test/renderer/crc-details-renderer-test.js +7 -3
- package/report/test/renderer/details-renderer-test.js +7 -3
- package/report/test/renderer/dom-test.js +7 -3
- package/report/test/renderer/element-screenshot-renderer-test.js +8 -4
- package/report/test/renderer/performance-category-renderer-test.js +14 -9
- package/report/test/renderer/pwa-category-renderer-test.js +10 -5
- package/report/test/renderer/report-renderer-test.js +2 -2
- package/report/test/renderer/report-ui-features-test.js +3 -3
- package/report/test/renderer/{util-test.js → report-utils-test.js} +36 -234
- package/report/test/renderer/snippet-renderer-test.js +7 -3
- package/shared/localization/format.js +5 -2
- package/shared/localization/locales/ar-XB.json +50 -50
- package/shared/localization/locales/ar.json +50 -50
- package/shared/localization/locales/bg.json +50 -50
- package/shared/localization/locales/ca.json +50 -50
- package/shared/localization/locales/cs.json +50 -50
- package/shared/localization/locales/da.json +50 -50
- package/shared/localization/locales/de.json +50 -50
- package/shared/localization/locales/el.json +50 -50
- package/shared/localization/locales/en-GB.json +50 -50
- package/shared/localization/locales/en-US.json +128 -98
- package/shared/localization/locales/en-XA.json +50 -50
- package/shared/localization/locales/en-XL.json +128 -98
- package/shared/localization/locales/es-419.json +50 -50
- package/shared/localization/locales/es.json +50 -50
- package/shared/localization/locales/fi.json +50 -50
- package/shared/localization/locales/fil.json +50 -50
- package/shared/localization/locales/fr.json +50 -50
- package/shared/localization/locales/he.json +50 -50
- package/shared/localization/locales/hi.json +50 -50
- package/shared/localization/locales/hr.json +50 -50
- package/shared/localization/locales/hu.json +50 -50
- package/shared/localization/locales/id.json +50 -50
- package/shared/localization/locales/it.json +50 -50
- package/shared/localization/locales/ja.json +50 -50
- package/shared/localization/locales/ko.json +50 -50
- package/shared/localization/locales/lt.json +50 -50
- package/shared/localization/locales/lv.json +50 -50
- package/shared/localization/locales/nl.json +50 -50
- package/shared/localization/locales/no.json +50 -50
- package/shared/localization/locales/pl.json +50 -50
- package/shared/localization/locales/pt-PT.json +50 -50
- package/shared/localization/locales/pt.json +50 -50
- package/shared/localization/locales/ro.json +50 -50
- package/shared/localization/locales/ru.json +50 -50
- package/shared/localization/locales/sk.json +50 -50
- package/shared/localization/locales/sl.json +50 -50
- package/shared/localization/locales/sr-Latn.json +50 -50
- package/shared/localization/locales/sr.json +50 -50
- package/shared/localization/locales/sv.json +50 -50
- package/shared/localization/locales/ta.json +50 -50
- package/shared/localization/locales/te.json +50 -50
- package/shared/localization/locales/th.json +50 -50
- package/shared/localization/locales/tr.json +50 -50
- package/shared/localization/locales/uk.json +50 -50
- package/shared/localization/locales/vi.json +50 -50
- package/shared/localization/locales/zh-HK.json +50 -50
- package/shared/localization/locales/zh-TW.json +50 -50
- package/shared/localization/locales/zh.json +50 -50
- package/shared/test/util-test.js +214 -0
- package/shared/util.d.ts +122 -0
- package/shared/util.js +332 -0
- package/tsconfig.json +0 -2
- package/types/artifacts.d.ts +21 -2
- package/types/lhr/lhr.d.ts +33 -0
- package/core/lib/minify-trace.d.ts +0 -6
- package/core/lib/minify-trace.js +0 -172
- package/core/util.cjs +0 -845
- package/core/util.d.cts +0 -342
- package/report/renderer/util.d.ts +0 -342
|
@@ -2327,154 +2327,154 @@
|
|
|
2327
2327
|
"node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-text-compression": {
|
|
2328
2328
|
"message": "Μπορείτε να ενεργοποιήσετε τη συμπίεση κειμένου στη διαμόρφωση του διακομιστή ιστού σας."
|
|
2329
2329
|
},
|
|
2330
|
-
"report/renderer/
|
|
2330
|
+
"report/renderer/report-utils.js | calculatorLink": {
|
|
2331
2331
|
"message": "Προβολή αριθμομηχανής."
|
|
2332
2332
|
},
|
|
2333
|
-
"report/renderer/
|
|
2333
|
+
"report/renderer/report-utils.js | collapseView": {
|
|
2334
2334
|
"message": "Σύμπτυξη προβολής"
|
|
2335
2335
|
},
|
|
2336
|
-
"report/renderer/
|
|
2336
|
+
"report/renderer/report-utils.js | crcInitialNavigation": {
|
|
2337
2337
|
"message": "Αρχική πλοήγηση"
|
|
2338
2338
|
},
|
|
2339
|
-
"report/renderer/
|
|
2339
|
+
"report/renderer/report-utils.js | crcLongestDurationLabel": {
|
|
2340
2340
|
"message": "Μέγιστος λανθάνων χρόνος κρίσιμης διαδρομής:"
|
|
2341
2341
|
},
|
|
2342
|
-
"report/renderer/
|
|
2342
|
+
"report/renderer/report-utils.js | dropdownCopyJSON": {
|
|
2343
2343
|
"message": "Αντιγραφή JSON"
|
|
2344
2344
|
},
|
|
2345
|
-
"report/renderer/
|
|
2345
|
+
"report/renderer/report-utils.js | dropdownDarkTheme": {
|
|
2346
2346
|
"message": "Εναλλαγή σκούρου θέματος"
|
|
2347
2347
|
},
|
|
2348
|
-
"report/renderer/
|
|
2348
|
+
"report/renderer/report-utils.js | dropdownPrintExpanded": {
|
|
2349
2349
|
"message": "Πλήρης εκτύπωση"
|
|
2350
2350
|
},
|
|
2351
|
-
"report/renderer/
|
|
2351
|
+
"report/renderer/report-utils.js | dropdownPrintSummary": {
|
|
2352
2352
|
"message": "Συνοπτική εκτύπωση"
|
|
2353
2353
|
},
|
|
2354
|
-
"report/renderer/
|
|
2354
|
+
"report/renderer/report-utils.js | dropdownSaveGist": {
|
|
2355
2355
|
"message": "Αποθήκευση ως Gist"
|
|
2356
2356
|
},
|
|
2357
|
-
"report/renderer/
|
|
2357
|
+
"report/renderer/report-utils.js | dropdownSaveHTML": {
|
|
2358
2358
|
"message": "Αποθήκευση ως HTML"
|
|
2359
2359
|
},
|
|
2360
|
-
"report/renderer/
|
|
2360
|
+
"report/renderer/report-utils.js | dropdownSaveJSON": {
|
|
2361
2361
|
"message": "Αποθήκευση ως JSON"
|
|
2362
2362
|
},
|
|
2363
|
-
"report/renderer/
|
|
2363
|
+
"report/renderer/report-utils.js | dropdownViewer": {
|
|
2364
2364
|
"message": "Άνοιγμα στο πρόγραμμα προβολής"
|
|
2365
2365
|
},
|
|
2366
|
-
"report/renderer/
|
|
2366
|
+
"report/renderer/report-utils.js | errorLabel": {
|
|
2367
2367
|
"message": "Σφάλμα!"
|
|
2368
2368
|
},
|
|
2369
|
-
"report/renderer/
|
|
2369
|
+
"report/renderer/report-utils.js | errorMissingAuditInfo": {
|
|
2370
2370
|
"message": "Σφάλμα αναφοράς: Δεν υπάρχουν πληροφορίες ελέγχου"
|
|
2371
2371
|
},
|
|
2372
|
-
"report/renderer/
|
|
2372
|
+
"report/renderer/report-utils.js | expandView": {
|
|
2373
2373
|
"message": "Ανάπτυξη προβολής"
|
|
2374
2374
|
},
|
|
2375
|
-
"report/renderer/
|
|
2375
|
+
"report/renderer/report-utils.js | footerIssue": {
|
|
2376
2376
|
"message": "Υποβολή προβλήματος"
|
|
2377
2377
|
},
|
|
2378
|
-
"report/renderer/
|
|
2378
|
+
"report/renderer/report-utils.js | hide": {
|
|
2379
2379
|
"message": "Απόκρυψη"
|
|
2380
2380
|
},
|
|
2381
|
-
"report/renderer/
|
|
2381
|
+
"report/renderer/report-utils.js | labDataTitle": {
|
|
2382
2382
|
"message": "Εργαστηριακά δεδομένα"
|
|
2383
2383
|
},
|
|
2384
|
-
"report/renderer/
|
|
2384
|
+
"report/renderer/report-utils.js | lsPerformanceCategoryDescription": {
|
|
2385
2385
|
"message": "Ανάλυση της τρέχουσας σελίδας από το [Lighthouse](https://developers.google.com/web/tools/lighthouse/) σε ένα προσομειωμένο δίκτυο κινητής τηλεφωνίας. Οι τιμές είναι κατ' εκτίμηση και μπορεί να διαφέρουν."
|
|
2386
2386
|
},
|
|
2387
|
-
"report/renderer/
|
|
2387
|
+
"report/renderer/report-utils.js | manualAuditsGroupTitle": {
|
|
2388
2388
|
"message": "Επιπλέον στοιχεία για μη αυτόματο έλεγχο"
|
|
2389
2389
|
},
|
|
2390
|
-
"report/renderer/
|
|
2390
|
+
"report/renderer/report-utils.js | notApplicableAuditsGroupTitle": {
|
|
2391
2391
|
"message": "Δεν ισχύει"
|
|
2392
2392
|
},
|
|
2393
|
-
"report/renderer/
|
|
2393
|
+
"report/renderer/report-utils.js | opportunityResourceColumnLabel": {
|
|
2394
2394
|
"message": "Ευκαιρία"
|
|
2395
2395
|
},
|
|
2396
|
-
"report/renderer/
|
|
2396
|
+
"report/renderer/report-utils.js | opportunitySavingsColumnLabel": {
|
|
2397
2397
|
"message": "Εκτιμώμενες εξοικονομήσεις"
|
|
2398
2398
|
},
|
|
2399
|
-
"report/renderer/
|
|
2399
|
+
"report/renderer/report-utils.js | passedAuditsGroupTitle": {
|
|
2400
2400
|
"message": "Έλεγχοι που ολοκληρώθηκαν επιτυχώς"
|
|
2401
2401
|
},
|
|
2402
|
-
"report/renderer/
|
|
2402
|
+
"report/renderer/report-utils.js | runtimeAnalysisWindow": {
|
|
2403
2403
|
"message": "Αρχική φόρτωση σελίδας"
|
|
2404
2404
|
},
|
|
2405
|
-
"report/renderer/
|
|
2405
|
+
"report/renderer/report-utils.js | runtimeCustom": {
|
|
2406
2406
|
"message": "Προσαρμοσμένη ρύθμιση ροής δεδομένων"
|
|
2407
2407
|
},
|
|
2408
|
-
"report/renderer/
|
|
2408
|
+
"report/renderer/report-utils.js | runtimeDesktopEmulation": {
|
|
2409
2409
|
"message": "Προσομοιωμένη επιφάνεια εργασίας"
|
|
2410
2410
|
},
|
|
2411
|
-
"report/renderer/
|
|
2411
|
+
"report/renderer/report-utils.js | runtimeMobileEmulation": {
|
|
2412
2412
|
"message": "Προσομοιωμένο Moto G4"
|
|
2413
2413
|
},
|
|
2414
|
-
"report/renderer/
|
|
2414
|
+
"report/renderer/report-utils.js | runtimeNoEmulation": {
|
|
2415
2415
|
"message": "Χωρίς προσομοίωση"
|
|
2416
2416
|
},
|
|
2417
|
-
"report/renderer/
|
|
2417
|
+
"report/renderer/report-utils.js | runtimeSettingsAxeVersion": {
|
|
2418
2418
|
"message": "'Εκδοση Axe"
|
|
2419
2419
|
},
|
|
2420
|
-
"report/renderer/
|
|
2420
|
+
"report/renderer/report-utils.js | runtimeSettingsBenchmark": {
|
|
2421
2421
|
"message": "Ισχύς CPU/μνήμης"
|
|
2422
2422
|
},
|
|
2423
|
-
"report/renderer/
|
|
2423
|
+
"report/renderer/report-utils.js | runtimeSettingsCPUThrottling": {
|
|
2424
2424
|
"message": "Περιορισμός CPU"
|
|
2425
2425
|
},
|
|
2426
|
-
"report/renderer/
|
|
2426
|
+
"report/renderer/report-utils.js | runtimeSettingsDevice": {
|
|
2427
2427
|
"message": "Συσκευή"
|
|
2428
2428
|
},
|
|
2429
|
-
"report/renderer/
|
|
2429
|
+
"report/renderer/report-utils.js | runtimeSettingsNetworkThrottling": {
|
|
2430
2430
|
"message": "Περιορισμός δικτύου"
|
|
2431
2431
|
},
|
|
2432
|
-
"report/renderer/
|
|
2432
|
+
"report/renderer/report-utils.js | runtimeSettingsUANetwork": {
|
|
2433
2433
|
"message": "Παράγοντας χρήστη (δίκτυο)"
|
|
2434
2434
|
},
|
|
2435
|
-
"report/renderer/
|
|
2435
|
+
"report/renderer/report-utils.js | runtimeSingleLoad": {
|
|
2436
2436
|
"message": "Μία φόρτωση σελίδας"
|
|
2437
2437
|
},
|
|
2438
|
-
"report/renderer/
|
|
2438
|
+
"report/renderer/report-utils.js | runtimeSingleLoadTooltip": {
|
|
2439
2439
|
"message": "Αυτά τα δεδομένα λαμβάνονται από μία φόρτωση σελίδας, σε αντίθεση με τα δεδομένα πεδίου που συνοψίζουν πολλές περιόδους λειτουργίας."
|
|
2440
2440
|
},
|
|
2441
|
-
"report/renderer/
|
|
2441
|
+
"report/renderer/report-utils.js | runtimeSlow4g": {
|
|
2442
2442
|
"message": "Ρύθμιση ροής δεδομένων αργού 4G"
|
|
2443
2443
|
},
|
|
2444
|
-
"report/renderer/
|
|
2444
|
+
"report/renderer/report-utils.js | runtimeUnknown": {
|
|
2445
2445
|
"message": "Άγνωστη"
|
|
2446
2446
|
},
|
|
2447
|
-
"report/renderer/
|
|
2447
|
+
"report/renderer/report-utils.js | show": {
|
|
2448
2448
|
"message": "Εμφάνιση"
|
|
2449
2449
|
},
|
|
2450
|
-
"report/renderer/
|
|
2450
|
+
"report/renderer/report-utils.js | showRelevantAudits": {
|
|
2451
2451
|
"message": "Εμφάνιση ελέγχων που σχετίζονται με:"
|
|
2452
2452
|
},
|
|
2453
|
-
"report/renderer/
|
|
2453
|
+
"report/renderer/report-utils.js | snippetCollapseButtonLabel": {
|
|
2454
2454
|
"message": "Σύμπτυξη αποσπάσματος"
|
|
2455
2455
|
},
|
|
2456
|
-
"report/renderer/
|
|
2456
|
+
"report/renderer/report-utils.js | snippetExpandButtonLabel": {
|
|
2457
2457
|
"message": "Ανάπτυξη αποσπάσματος"
|
|
2458
2458
|
},
|
|
2459
|
-
"report/renderer/
|
|
2459
|
+
"report/renderer/report-utils.js | thirdPartyResourcesLabel": {
|
|
2460
2460
|
"message": "Εμφάνιση πόρων τρίτων"
|
|
2461
2461
|
},
|
|
2462
|
-
"report/renderer/
|
|
2462
|
+
"report/renderer/report-utils.js | throttlingProvided": {
|
|
2463
2463
|
"message": "Παρέχεται από το περιβάλλον"
|
|
2464
2464
|
},
|
|
2465
|
-
"report/renderer/
|
|
2465
|
+
"report/renderer/report-utils.js | toplevelWarningsMessage": {
|
|
2466
2466
|
"message": "Παρουσιάστηκαν ορισμένα ζητήματα τα οποία επηρεάζουν αυτήν την εκτέλεση του Lighthouse:"
|
|
2467
2467
|
},
|
|
2468
|
-
"report/renderer/
|
|
2468
|
+
"report/renderer/report-utils.js | varianceDisclaimer": {
|
|
2469
2469
|
"message": "Οι τιμές εκτιμώνται και μπορεί να ποικίλουν. Η [βαθμολογία απόδοσης υπολογίζεται](https://web.dev/performance-scoring/) απευθείας από αυτές τις μετρήσεις."
|
|
2470
2470
|
},
|
|
2471
|
-
"report/renderer/
|
|
2471
|
+
"report/renderer/report-utils.js | viewTreemapLabel": {
|
|
2472
2472
|
"message": "Προβολή δενδροειδούς χάρτη"
|
|
2473
2473
|
},
|
|
2474
|
-
"report/renderer/
|
|
2474
|
+
"report/renderer/report-utils.js | warningAuditsGroupTitle": {
|
|
2475
2475
|
"message": "Έλεγχοι που ολοκληρώθηκαν αλλά με προειδοποιήσεις"
|
|
2476
2476
|
},
|
|
2477
|
-
"report/renderer/
|
|
2477
|
+
"report/renderer/report-utils.js | warningHeader": {
|
|
2478
2478
|
"message": "Προειδοποιήσεις: "
|
|
2479
2479
|
},
|
|
2480
2480
|
"treemap/app/src/util.js | allLabel": {
|
|
@@ -2327,154 +2327,154 @@
|
|
|
2327
2327
|
"node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-text-compression": {
|
|
2328
2328
|
"message": "You can enable text compression in your web server configuration."
|
|
2329
2329
|
},
|
|
2330
|
-
"report/renderer/
|
|
2330
|
+
"report/renderer/report-utils.js | calculatorLink": {
|
|
2331
2331
|
"message": "See calculator."
|
|
2332
2332
|
},
|
|
2333
|
-
"report/renderer/
|
|
2333
|
+
"report/renderer/report-utils.js | collapseView": {
|
|
2334
2334
|
"message": "Collapse view"
|
|
2335
2335
|
},
|
|
2336
|
-
"report/renderer/
|
|
2336
|
+
"report/renderer/report-utils.js | crcInitialNavigation": {
|
|
2337
2337
|
"message": "Initial Navigation"
|
|
2338
2338
|
},
|
|
2339
|
-
"report/renderer/
|
|
2339
|
+
"report/renderer/report-utils.js | crcLongestDurationLabel": {
|
|
2340
2340
|
"message": "Maximum critical path latency:"
|
|
2341
2341
|
},
|
|
2342
|
-
"report/renderer/
|
|
2342
|
+
"report/renderer/report-utils.js | dropdownCopyJSON": {
|
|
2343
2343
|
"message": "Copy JSON"
|
|
2344
2344
|
},
|
|
2345
|
-
"report/renderer/
|
|
2345
|
+
"report/renderer/report-utils.js | dropdownDarkTheme": {
|
|
2346
2346
|
"message": "Toggle Dark theme"
|
|
2347
2347
|
},
|
|
2348
|
-
"report/renderer/
|
|
2348
|
+
"report/renderer/report-utils.js | dropdownPrintExpanded": {
|
|
2349
2349
|
"message": "Print expanded"
|
|
2350
2350
|
},
|
|
2351
|
-
"report/renderer/
|
|
2351
|
+
"report/renderer/report-utils.js | dropdownPrintSummary": {
|
|
2352
2352
|
"message": "Print summary"
|
|
2353
2353
|
},
|
|
2354
|
-
"report/renderer/
|
|
2354
|
+
"report/renderer/report-utils.js | dropdownSaveGist": {
|
|
2355
2355
|
"message": "Save as gist"
|
|
2356
2356
|
},
|
|
2357
|
-
"report/renderer/
|
|
2357
|
+
"report/renderer/report-utils.js | dropdownSaveHTML": {
|
|
2358
2358
|
"message": "Save as HTML"
|
|
2359
2359
|
},
|
|
2360
|
-
"report/renderer/
|
|
2360
|
+
"report/renderer/report-utils.js | dropdownSaveJSON": {
|
|
2361
2361
|
"message": "Save as JSON"
|
|
2362
2362
|
},
|
|
2363
|
-
"report/renderer/
|
|
2363
|
+
"report/renderer/report-utils.js | dropdownViewer": {
|
|
2364
2364
|
"message": "Open in Viewer"
|
|
2365
2365
|
},
|
|
2366
|
-
"report/renderer/
|
|
2366
|
+
"report/renderer/report-utils.js | errorLabel": {
|
|
2367
2367
|
"message": "Error!"
|
|
2368
2368
|
},
|
|
2369
|
-
"report/renderer/
|
|
2369
|
+
"report/renderer/report-utils.js | errorMissingAuditInfo": {
|
|
2370
2370
|
"message": "Report error: no audit information"
|
|
2371
2371
|
},
|
|
2372
|
-
"report/renderer/
|
|
2372
|
+
"report/renderer/report-utils.js | expandView": {
|
|
2373
2373
|
"message": "Expand view"
|
|
2374
2374
|
},
|
|
2375
|
-
"report/renderer/
|
|
2375
|
+
"report/renderer/report-utils.js | footerIssue": {
|
|
2376
2376
|
"message": "File an issue"
|
|
2377
2377
|
},
|
|
2378
|
-
"report/renderer/
|
|
2378
|
+
"report/renderer/report-utils.js | hide": {
|
|
2379
2379
|
"message": "Hide"
|
|
2380
2380
|
},
|
|
2381
|
-
"report/renderer/
|
|
2381
|
+
"report/renderer/report-utils.js | labDataTitle": {
|
|
2382
2382
|
"message": "Lab Data"
|
|
2383
2383
|
},
|
|
2384
|
-
"report/renderer/
|
|
2384
|
+
"report/renderer/report-utils.js | lsPerformanceCategoryDescription": {
|
|
2385
2385
|
"message": "[Lighthouse](https://developers.google.com/web/tools/lighthouse/) analysis of the current page on an emulated mobile network. Values are estimated and may vary."
|
|
2386
2386
|
},
|
|
2387
|
-
"report/renderer/
|
|
2387
|
+
"report/renderer/report-utils.js | manualAuditsGroupTitle": {
|
|
2388
2388
|
"message": "Additional items to manually check"
|
|
2389
2389
|
},
|
|
2390
|
-
"report/renderer/
|
|
2390
|
+
"report/renderer/report-utils.js | notApplicableAuditsGroupTitle": {
|
|
2391
2391
|
"message": "Not applicable"
|
|
2392
2392
|
},
|
|
2393
|
-
"report/renderer/
|
|
2393
|
+
"report/renderer/report-utils.js | opportunityResourceColumnLabel": {
|
|
2394
2394
|
"message": "Opportunity"
|
|
2395
2395
|
},
|
|
2396
|
-
"report/renderer/
|
|
2396
|
+
"report/renderer/report-utils.js | opportunitySavingsColumnLabel": {
|
|
2397
2397
|
"message": "Estimated Savings"
|
|
2398
2398
|
},
|
|
2399
|
-
"report/renderer/
|
|
2399
|
+
"report/renderer/report-utils.js | passedAuditsGroupTitle": {
|
|
2400
2400
|
"message": "Passed audits"
|
|
2401
2401
|
},
|
|
2402
|
-
"report/renderer/
|
|
2402
|
+
"report/renderer/report-utils.js | runtimeAnalysisWindow": {
|
|
2403
2403
|
"message": "Initial page load"
|
|
2404
2404
|
},
|
|
2405
|
-
"report/renderer/
|
|
2405
|
+
"report/renderer/report-utils.js | runtimeCustom": {
|
|
2406
2406
|
"message": "Custom throttling"
|
|
2407
2407
|
},
|
|
2408
|
-
"report/renderer/
|
|
2408
|
+
"report/renderer/report-utils.js | runtimeDesktopEmulation": {
|
|
2409
2409
|
"message": "Emulated desktop"
|
|
2410
2410
|
},
|
|
2411
|
-
"report/renderer/
|
|
2411
|
+
"report/renderer/report-utils.js | runtimeMobileEmulation": {
|
|
2412
2412
|
"message": "Emulated Moto G4"
|
|
2413
2413
|
},
|
|
2414
|
-
"report/renderer/
|
|
2414
|
+
"report/renderer/report-utils.js | runtimeNoEmulation": {
|
|
2415
2415
|
"message": "No emulation"
|
|
2416
2416
|
},
|
|
2417
|
-
"report/renderer/
|
|
2417
|
+
"report/renderer/report-utils.js | runtimeSettingsAxeVersion": {
|
|
2418
2418
|
"message": "Axe version"
|
|
2419
2419
|
},
|
|
2420
|
-
"report/renderer/
|
|
2420
|
+
"report/renderer/report-utils.js | runtimeSettingsBenchmark": {
|
|
2421
2421
|
"message": "CPU/Memory power"
|
|
2422
2422
|
},
|
|
2423
|
-
"report/renderer/
|
|
2423
|
+
"report/renderer/report-utils.js | runtimeSettingsCPUThrottling": {
|
|
2424
2424
|
"message": "CPU throttling"
|
|
2425
2425
|
},
|
|
2426
|
-
"report/renderer/
|
|
2426
|
+
"report/renderer/report-utils.js | runtimeSettingsDevice": {
|
|
2427
2427
|
"message": "Device"
|
|
2428
2428
|
},
|
|
2429
|
-
"report/renderer/
|
|
2429
|
+
"report/renderer/report-utils.js | runtimeSettingsNetworkThrottling": {
|
|
2430
2430
|
"message": "Network throttling"
|
|
2431
2431
|
},
|
|
2432
|
-
"report/renderer/
|
|
2432
|
+
"report/renderer/report-utils.js | runtimeSettingsUANetwork": {
|
|
2433
2433
|
"message": "User agent (network)"
|
|
2434
2434
|
},
|
|
2435
|
-
"report/renderer/
|
|
2435
|
+
"report/renderer/report-utils.js | runtimeSingleLoad": {
|
|
2436
2436
|
"message": "Single page load"
|
|
2437
2437
|
},
|
|
2438
|
-
"report/renderer/
|
|
2438
|
+
"report/renderer/report-utils.js | runtimeSingleLoadTooltip": {
|
|
2439
2439
|
"message": "This data is taken from a single page load, as opposed to field data summarising many sessions."
|
|
2440
2440
|
},
|
|
2441
|
-
"report/renderer/
|
|
2441
|
+
"report/renderer/report-utils.js | runtimeSlow4g": {
|
|
2442
2442
|
"message": "Slow 4G throttling"
|
|
2443
2443
|
},
|
|
2444
|
-
"report/renderer/
|
|
2444
|
+
"report/renderer/report-utils.js | runtimeUnknown": {
|
|
2445
2445
|
"message": "Unknown"
|
|
2446
2446
|
},
|
|
2447
|
-
"report/renderer/
|
|
2447
|
+
"report/renderer/report-utils.js | show": {
|
|
2448
2448
|
"message": "Show"
|
|
2449
2449
|
},
|
|
2450
|
-
"report/renderer/
|
|
2450
|
+
"report/renderer/report-utils.js | showRelevantAudits": {
|
|
2451
2451
|
"message": "Show audits relevant to:"
|
|
2452
2452
|
},
|
|
2453
|
-
"report/renderer/
|
|
2453
|
+
"report/renderer/report-utils.js | snippetCollapseButtonLabel": {
|
|
2454
2454
|
"message": "Collapse snippet"
|
|
2455
2455
|
},
|
|
2456
|
-
"report/renderer/
|
|
2456
|
+
"report/renderer/report-utils.js | snippetExpandButtonLabel": {
|
|
2457
2457
|
"message": "Expand snippet"
|
|
2458
2458
|
},
|
|
2459
|
-
"report/renderer/
|
|
2459
|
+
"report/renderer/report-utils.js | thirdPartyResourcesLabel": {
|
|
2460
2460
|
"message": "Show 3rd-party resources"
|
|
2461
2461
|
},
|
|
2462
|
-
"report/renderer/
|
|
2462
|
+
"report/renderer/report-utils.js | throttlingProvided": {
|
|
2463
2463
|
"message": "Provided by environment"
|
|
2464
2464
|
},
|
|
2465
|
-
"report/renderer/
|
|
2465
|
+
"report/renderer/report-utils.js | toplevelWarningsMessage": {
|
|
2466
2466
|
"message": "There were issues affecting this run of Lighthouse:"
|
|
2467
2467
|
},
|
|
2468
|
-
"report/renderer/
|
|
2468
|
+
"report/renderer/report-utils.js | varianceDisclaimer": {
|
|
2469
2469
|
"message": "Values are estimated and may vary. The [performance score is calculated](https://web.dev/performance-scoring/) directly from these metrics."
|
|
2470
2470
|
},
|
|
2471
|
-
"report/renderer/
|
|
2471
|
+
"report/renderer/report-utils.js | viewTreemapLabel": {
|
|
2472
2472
|
"message": "View Treemap"
|
|
2473
2473
|
},
|
|
2474
|
-
"report/renderer/
|
|
2474
|
+
"report/renderer/report-utils.js | warningAuditsGroupTitle": {
|
|
2475
2475
|
"message": "Passed audits but with warnings"
|
|
2476
2476
|
},
|
|
2477
|
-
"report/renderer/
|
|
2477
|
+
"report/renderer/report-utils.js | warningHeader": {
|
|
2478
2478
|
"message": "Warnings: "
|
|
2479
2479
|
},
|
|
2480
2480
|
"treemap/app/src/util.js | allLabel": {
|