lighthouse 8.6.0 → 9.0.0-dev.20211118
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 +121 -0
- package/dist/report/bundle.esm.js +6009 -0
- package/dist/report/flow.js +98 -25
- package/dist/report/standalone.js +41 -35
- package/flow-report/.eslintrc.cjs +2 -0
- package/flow-report/assets/standalone-flow-template.html +3 -4
- package/flow-report/assets/styles.css +108 -31
- package/flow-report/src/app.tsx +25 -28
- package/flow-report/src/common.tsx +28 -15
- package/flow-report/src/header.tsx +12 -13
- package/flow-report/src/help-dialog.tsx +3 -4
- package/flow-report/src/i18n/i18n.tsx +57 -16
- package/flow-report/src/i18n/ui-strings.js +50 -0
- package/flow-report/src/icons.tsx +36 -8
- package/flow-report/src/sidebar/flow.tsx +3 -3
- package/flow-report/src/sidebar/sidebar.tsx +35 -14
- package/flow-report/src/summary/category.tsx +97 -24
- package/flow-report/src/summary/summary.tsx +21 -14
- package/flow-report/src/topbar.tsx +13 -12
- package/flow-report/src/util.ts +61 -27
- package/flow-report/src/wrappers/category-score.tsx +9 -27
- package/flow-report/src/wrappers/markdown.tsx +18 -0
- package/flow-report/src/wrappers/report.tsx +26 -37
- package/flow-report/standalone-flow.tsx +5 -4
- package/flow-report/test/common-test.tsx +32 -17
- package/flow-report/test/flow-report-pptr-test.ts +46 -0
- package/flow-report/test/header-test.tsx +6 -6
- package/flow-report/test/setup/env-setup.ts +11 -5
- package/flow-report/test/sidebar/sidebar-test.tsx +43 -1
- package/flow-report/test/summary/category-test.tsx +114 -21
- package/flow-report/test/summary/summary-test.tsx +4 -7
- package/flow-report/test/topbar-test.tsx +15 -14
- package/flow-report/test/util-test.tsx +69 -11
- package/flow-report/test/wrappers/category-score-test.tsx +84 -0
- package/flow-report/test/wrappers/markdown-test.tsx +17 -0
- package/flow-report/tsconfig.json +1 -0
- package/jest.config.js +4 -2
- package/lighthouse-cli/.eslintrc.cjs +2 -0
- package/lighthouse-cli/cli-flags.js +1 -1
- package/lighthouse-cli/run.js +1 -1
- package/lighthouse-cli/test/smokehouse/lighthouse-runners/bundle.js +4 -2
- package/lighthouse-cli/test/smokehouse/lighthouse-runners/cli.js +1 -1
- package/lighthouse-cli/test/smokehouse/smokehouse.js +1 -1
- package/lighthouse-core/audits/accessibility/axe-audit.js +7 -1
- package/lighthouse-core/audits/audit.js +1 -1
- package/lighthouse-core/audits/byte-efficiency/byte-efficiency-audit.js +2 -0
- package/lighthouse-core/audits/byte-efficiency/modern-image-formats.js +4 -2
- package/lighthouse-core/audits/byte-efficiency/offscreen-images.js +11 -10
- package/lighthouse-core/audits/byte-efficiency/uses-optimized-images.js +5 -3
- package/lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js +2 -1
- package/lighthouse-core/audits/byte-efficiency/uses-responsive-images.js +2 -1
- package/lighthouse-core/audits/deprecations.js +33 -11
- package/lighthouse-core/audits/dobetterweb/uses-http2.js +27 -11
- package/lighthouse-core/audits/errors-in-console.js +0 -2
- package/lighthouse-core/audits/image-aspect-ratio.js +5 -5
- package/lighthouse-core/audits/image-size-responsive.js +6 -6
- package/lighthouse-core/audits/installable-manifest.js +16 -7
- package/lighthouse-core/audits/preload-lcp-image.js +7 -5
- package/lighthouse-core/audits/script-treemap-data.js +1 -1
- package/lighthouse-core/audits/unsized-images.js +2 -3
- package/lighthouse-core/computed/image-records.js +4 -3
- package/lighthouse-core/computed/metrics/lantern-total-blocking-time.js +3 -4
- package/lighthouse-core/computed/metrics/tbt-utils.js +57 -0
- package/lighthouse-core/computed/metrics/total-blocking-time.js +3 -53
- package/lighthouse-core/computed/resource-summary.js +1 -1
- package/lighthouse-core/config/config-helpers.js +21 -10
- package/lighthouse-core/config/constants.js +3 -4
- package/lighthouse-core/config/default-config.js +61 -71
- package/lighthouse-core/fraggle-rock/config/config.js +1 -1
- package/lighthouse-core/fraggle-rock/config/default-config.js +4 -5
- package/lighthouse-core/fraggle-rock/gather/base-gatherer.js +6 -1
- package/lighthouse-core/fraggle-rock/gather/session.js +3 -4
- package/lighthouse-core/gather/connections/cri.js +1 -1
- package/lighthouse-core/gather/driver/storage.js +0 -1
- package/lighthouse-core/gather/driver.js +3 -7
- package/lighthouse-core/gather/fetcher.js +4 -7
- package/lighthouse-core/gather/gather-runner.js +29 -6
- package/lighthouse-core/gather/gatherers/accessibility.js +27 -0
- package/lighthouse-core/gather/gatherers/dobetterweb/response-compression.js +1 -0
- package/lighthouse-core/gather/gatherers/image-elements.js +0 -3
- package/lighthouse-core/gather/gatherers/inspector-issues.js +5 -0
- package/lighthouse-core/lib/asset-saver.js +7 -4
- package/lighthouse-core/lib/emulation.js +45 -1
- package/lighthouse-core/lib/i18n/i18n.js +19 -8
- package/lighthouse-core/lib/lh-env.js +2 -0
- package/lighthouse-core/lib/page-functions.js +2 -1
- package/lighthouse-core/lib/proto-preprocessor.js +14 -2
- package/lighthouse-core/lib/statistics.js +26 -39
- package/lighthouse-core/lib/tappable-rects.js +8 -15
- package/lighthouse-core/lib/url-shim.js +1 -1
- package/lighthouse-core/runner.js +1 -1
- package/lighthouse-core/util-commonjs.js +65 -46
- package/package.json +27 -17
- package/readme.md +3 -3
- package/report/.eslintrc.cjs +2 -0
- package/report/README.md +1 -1
- package/report/assets/standalone-template.html +2 -3
- package/report/assets/styles.css +362 -256
- package/report/assets/templates.html +21 -76
- package/report/clients/bundle.js +1 -0
- package/report/clients/standalone.js +6 -15
- package/report/generator/README.md +1 -1
- package/report/renderer/api.js +66 -0
- package/report/renderer/category-renderer.js +76 -22
- package/report/renderer/components.js +59 -110
- package/report/renderer/crc-details-renderer.js +15 -12
- package/report/renderer/dom.js +16 -1
- package/report/renderer/drop-down-menu.js +2 -2
- package/report/renderer/element-screenshot-renderer.js +8 -8
- package/report/renderer/features-util.js +1 -1
- package/report/renderer/open-tab.js +9 -3
- package/report/renderer/performance-category-renderer.js +55 -34
- package/report/renderer/pwa-category-renderer.js +0 -10
- package/report/renderer/report-renderer.js +92 -44
- package/report/renderer/report-ui-features.js +36 -33
- package/report/renderer/swap-locale-feature.js +3 -3
- package/report/renderer/topbar-features.js +53 -48
- package/report/renderer/util.js +66 -46
- package/report/test/clients/bundle-test.js +70 -0
- package/report/test/renderer/category-renderer-test.js +76 -3
- package/report/test/renderer/i18n-test.js +0 -7
- package/report/test/renderer/performance-category-renderer-test.js +51 -14
- package/report/test/renderer/pwa-category-renderer-test.js +6 -6
- package/report/test/renderer/report-renderer-axe-test.js +11 -13
- package/report/test/renderer/report-renderer-test.js +52 -22
- package/report/test/renderer/report-ui-features-test.js +20 -10
- package/report/test/renderer/text-encoding-test.js +1 -1
- package/report/test/renderer/util-test.js +35 -31
- package/report/test-assets/faux-psi-template.html +3 -11
- package/report/test-assets/faux-psi.js +26 -22
- package/report/types/html-renderer.d.ts +2 -0
- package/report/types/report-renderer.d.ts +28 -0
- package/shared/localization/format.js +64 -30
- package/shared/localization/locales/ar-XB.json +72 -75
- package/shared/localization/locales/ar.json +72 -75
- package/shared/localization/locales/bg.json +72 -75
- package/shared/localization/locales/ca.json +72 -75
- package/shared/localization/locales/cs.json +89 -92
- package/shared/localization/locales/da.json +72 -75
- package/shared/localization/locales/de.json +89 -92
- package/shared/localization/locales/el.json +72 -75
- package/shared/localization/locales/en-GB.json +72 -75
- package/shared/localization/locales/en-US.json +78 -75
- package/shared/localization/locales/en-XA.json +72 -75
- package/shared/localization/locales/en-XL.json +78 -75
- package/shared/localization/locales/es-419.json +90 -93
- package/shared/localization/locales/es.json +90 -93
- package/shared/localization/locales/fi.json +72 -75
- package/shared/localization/locales/fil.json +72 -75
- package/shared/localization/locales/fr.json +89 -92
- package/shared/localization/locales/he.json +73 -76
- package/shared/localization/locales/hi.json +72 -75
- package/shared/localization/locales/hr.json +72 -75
- package/shared/localization/locales/hu.json +89 -92
- package/shared/localization/locales/id.json +89 -92
- package/shared/localization/locales/it.json +89 -92
- package/shared/localization/locales/ja.json +89 -92
- package/shared/localization/locales/ko.json +89 -92
- package/shared/localization/locales/lt.json +89 -92
- package/shared/localization/locales/lv.json +95 -98
- package/shared/localization/locales/nl.json +89 -92
- package/shared/localization/locales/no.json +72 -75
- package/shared/localization/locales/pl.json +72 -75
- package/shared/localization/locales/pt-PT.json +72 -75
- package/shared/localization/locales/pt.json +89 -92
- package/shared/localization/locales/ro.json +90 -93
- package/shared/localization/locales/ru.json +89 -92
- package/shared/localization/locales/sk.json +89 -92
- package/shared/localization/locales/sl.json +89 -92
- package/shared/localization/locales/sr-Latn.json +89 -92
- package/shared/localization/locales/sr.json +89 -92
- package/shared/localization/locales/sv.json +72 -75
- package/shared/localization/locales/ta.json +89 -92
- package/shared/localization/locales/te.json +89 -92
- package/shared/localization/locales/th.json +89 -92
- package/shared/localization/locales/tr.json +89 -92
- package/shared/localization/locales/uk.json +92 -95
- package/shared/localization/locales/vi.json +89 -92
- package/shared/localization/locales/zh-HK.json +89 -92
- package/shared/localization/locales/zh-TW.json +89 -92
- package/shared/localization/locales/zh.json +89 -92
- package/shared/localization/locales.js +6 -0
- package/shared/test/localization/format-test.js +45 -9
- package/shared/test/localization/swap-locale-test.js +0 -12
- package/third-party/chromium-synchronization/inspector-issueAdded-types-test.js +19 -11
- package/third-party/chromium-synchronization/installability-errors-test.js +3 -2
- package/third-party/download-content-shell/download-content-shell.js +2 -2
- package/third-party/download-content-shell/utils.js +0 -24
- package/third-party/snyk/snapshot.json +4 -1
- package/tsconfig-all.json +2 -2
- package/tsconfig.json +0 -1
- package/types/artifacts.d.ts +7 -7
- package/types/enquirer.d.ts +3 -1
- package/types/lhr/audit-details.d.ts +6 -5
- package/types/lhr/flow.d.ts +3 -2
- package/types/lhr/lhr.d.ts +1 -1
- package/types/node.d.ts +5 -5
- package/types/rollup-plugin-postprocess.d.ts +10 -0
- package/flow-report/src/wrappers/report-renderer.tsx +0 -46
- package/lighthouse-core/audits/dobetterweb/appcache-manifest.js +0 -67
- package/lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js +0 -96
- package/lighthouse-core/audits/redirects-http.js +0 -59
- package/lighthouse-core/gather/gatherers/dobetterweb/appcache.js +0 -34
- package/lighthouse-core/gather/gatherers/http-redirect.js +0 -46
- package/lighthouse-core/lib/i18n/locales/en-US.ctc.json +0 -6699
- package/lighthouse-core/lib/i18n/locales/en-XL.ctc.json +0 -6672
- package/report/clients/psi.js +0 -158
- package/report/test/clients/psi-test.js +0 -143
- package/shared/localization/locales/en-US.ctc.json +0 -6877
- package/shared/localization/locales/en-XL.ctc.json +0 -6852
|
@@ -59,6 +59,12 @@
|
|
|
59
59
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
|
|
60
60
|
"message": "[Ðîšçövéŕ þéŕƒöŕmåñçé öþþöŕţûñîţîéš ţö îmþŕövé ţĥé éxþéŕîéñçé ƒöŕ ļöñĝ-ļîvéð þåĝéš åñð šîñĝļé-þåĝé åþþļîçåţîöñš. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen]"
|
|
61
61
|
},
|
|
62
|
+
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
63
|
+
"message": "[Ĥîĝĥéšţ îmþåçţ one two]"
|
|
64
|
+
},
|
|
65
|
+
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
|
|
66
|
+
"message": "{numInformative,plural, =1{[ᐅ{numInformative}ᐊ îñƒöŕmåţîvé åûðîţ one two three four five]}other{[ᐅ{numInformative}ᐊ îñƒöŕmåţîvé åûðîţš one two three four five]}}"
|
|
67
|
+
},
|
|
62
68
|
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
63
69
|
"message": "[Möбîļé one]"
|
|
64
70
|
},
|
|
@@ -71,6 +77,15 @@
|
|
|
71
77
|
"flow-report/src/i18n/ui-strings.js | navigationReport": {
|
|
72
78
|
"message": "[Ñåvîĝåţîöñ ŕéþöŕţ one two three]"
|
|
73
79
|
},
|
|
80
|
+
"flow-report/src/i18n/ui-strings.js | navigationReportCount": {
|
|
81
|
+
"message": "{numNavigation,plural, =1{[ᐅ{numNavigation}ᐊ ñåvîĝåţîöñ ŕéþöŕţ one two three four five]}other{[ᐅ{numNavigation}ᐊ ñåvîĝåţîöñ ŕéþöŕţš one two three four five]}}"
|
|
82
|
+
},
|
|
83
|
+
"flow-report/src/i18n/ui-strings.js | passableAuditCount": {
|
|
84
|
+
"message": "{numPassableAudits,plural, =1{[ᐅ{numPassableAudits}ᐊ þåššåбļé åûðîţ one two three four]}other{[ᐅ{numPassableAudits}ᐊ þåššåбļé åûðîţš one two three four]}}"
|
|
85
|
+
},
|
|
86
|
+
"flow-report/src/i18n/ui-strings.js | passedAuditCount": {
|
|
87
|
+
"message": "{numPassed,plural, =1{[ᐅ{numPassed}ᐊ åûðîţ þåššéð one two three four]}other{[ᐅ{numPassed}ᐊ åûðîţš þåššéð one two three four]}}"
|
|
88
|
+
},
|
|
74
89
|
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
75
90
|
"message": "[Åvéŕåĝé one]"
|
|
76
91
|
},
|
|
@@ -95,6 +110,9 @@
|
|
|
95
110
|
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
|
|
96
111
|
"message": "[Šñåþšĥöţ ŕéþöŕţ one two]"
|
|
97
112
|
},
|
|
113
|
+
"flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
|
|
114
|
+
"message": "{numSnapshot,plural, =1{[ᐅ{numSnapshot}ᐊ šñåþšĥöţ ŕéþöŕţ one two three four]}other{[ᐅ{numSnapshot}ᐊ šñåþšĥöţ ŕéþöŕţš one two three four five]}}"
|
|
115
|
+
},
|
|
98
116
|
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
99
117
|
"message": "[Šûmmåŕý one]"
|
|
100
118
|
},
|
|
@@ -107,6 +125,9 @@
|
|
|
107
125
|
"flow-report/src/i18n/ui-strings.js | timespanReport": {
|
|
108
126
|
"message": "[Ţîméšþåñ ŕéþöŕţ one two]"
|
|
109
127
|
},
|
|
128
|
+
"flow-report/src/i18n/ui-strings.js | timespanReportCount": {
|
|
129
|
+
"message": "{numTimespan,plural, =1{[ᐅ{numTimespan}ᐊ ţîméšþåñ ŕéþöŕţ one two three four]}other{[ᐅ{numTimespan}ᐊ ţîméšþåñ ŕéþöŕţš one two three four five]}}"
|
|
130
|
+
},
|
|
110
131
|
"flow-report/src/i18n/ui-strings.js | title": {
|
|
111
132
|
"message": "[Ļîĝĥţĥöûšé Ûšéŕ Fļöŵ Ŕéþöŕţ one two three four five six]"
|
|
112
133
|
},
|
|
@@ -743,18 +764,6 @@
|
|
|
743
764
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
765
|
"message": "[Åvöîðš ðéþŕéçåţéð ÅÞΚ one two three]"
|
|
745
766
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "[Åþþļîçåţîöñ Çåçĥé îš ðéþŕéçåţéð. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://web.dev/appcache-manifest/)ᐊ. one two three four five six seven eight nine ten eleven]"
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "[Föûñð \"ᐅ{AppCacheManifest}ᐊ\" one two three]"
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "[Ûšéš Åþþļîçåţîöñ Çåçĥé one two three]"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "[Åvöîðš Åþþļîçåţîöñ Çåçĥé one two three]"
|
|
757
|
-
},
|
|
758
767
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
768
|
"message": "[Å çĥåŕåçţéŕ éñçöðîñĝ ðéçļåŕåţîöñ îš ŕéqûîŕéð. Îţ çåñ бé ðöñé ŵîţĥ å ᐅ`<meta>`ᐊ ţåĝ îñ ţĥé ƒîŕšţ 1024 бýţéš öƒ ţĥé ĤŢMĻ öŕ îñ ţĥé Çöñţéñţ-Ţýþé ĤŢŢÞ ŕéšþöñšé ĥéåðéŕ. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://web.dev/charset/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour]"
|
|
760
769
|
},
|
|
@@ -812,21 +821,6 @@
|
|
|
812
821
|
"lighthouse-core/audits/dobetterweb/dom-size.js | title": {
|
|
813
822
|
"message": "[Åvöîðš åñ éxçéššîvé ÐÖM šîžé one two three four five six]"
|
|
814
823
|
},
|
|
815
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | columnFailingAnchors": {
|
|
816
|
-
"message": "[Fåîļîñĝ Åñçĥöŕš one two]"
|
|
817
|
-
},
|
|
818
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | description": {
|
|
819
|
-
"message": "[Åðð ᐅ`rel=\"noopener\"`ᐊ öŕ ᐅ`rel=\"noreferrer\"`ᐊ ţö åñý éxţéŕñåļ ļîñķš ţö îmþŕövé þéŕƒöŕmåñçé åñð þŕévéñţ šéçûŕîţý vûļñéŕåбîļîţîéš. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://web.dev/external-anchors-use-rel-noopener/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen]"
|
|
820
|
-
},
|
|
821
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | failureTitle": {
|
|
822
|
-
"message": "[Ļîñķš ţö çŕöšš-öŕîĝîñ ðéšţîñåţîöñš åŕé ûñšåƒé one two three four five six seven eight nine]"
|
|
823
|
-
},
|
|
824
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | title": {
|
|
825
|
-
"message": "[Ļîñķš ţö çŕöšš-öŕîĝîñ ðéšţîñåţîöñš åŕé šåƒé one two three four five six seven eight nine]"
|
|
826
|
-
},
|
|
827
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | warning": {
|
|
828
|
-
"message": "[Ûñåбļé ţö ðéţéŕmîñé ţĥé ðéšţîñåţîöñ ƒöŕ åñçĥöŕ (ᐅ{anchorHTML}ᐊ). ΃ ñöţ ûšéð åš å ĥýþéŕļîñķ, çöñšîðéŕ ŕémövîñĝ ţåŕĝéţ=_бļåñķ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen]"
|
|
829
|
-
},
|
|
830
824
|
"lighthouse-core/audits/dobetterweb/geolocation-on-start.js | description": {
|
|
831
825
|
"message": "[Ûšéŕš åŕé mîšţŕûšţƒûļ öƒ öŕ çöñƒûšéð бý šîţéš ţĥåţ ŕéqûéšţ ţĥéîŕ ļöçåţîöñ ŵîţĥöûţ çöñţéxţ. Çöñšîðéŕ ţýîñĝ ţĥé ŕéqûéšţ ţö å ûšéŕ åçţîöñ îñšţéåð. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://web.dev/geolocation-on-start/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree]"
|
|
832
826
|
},
|
|
@@ -1277,15 +1271,6 @@
|
|
|
1277
1271
|
"lighthouse-core/audits/preload-lcp-image.js | title": {
|
|
1278
1272
|
"message": "[Þŕéļöåð Ļåŕĝéšţ Çöñţéñţƒûļ Þåîñţ îmåĝé one two three four five six seven eight]"
|
|
1279
1273
|
},
|
|
1280
|
-
"lighthouse-core/audits/redirects-http.js | description": {
|
|
1281
|
-
"message": "[΃ ýöû'vé åļŕéåðý šéţ ûþ ĤŢŢÞŠ, måķé šûŕé ţĥåţ ýöû ŕéðîŕéçţ åļļ ĤŢŢÞ ţŕ僃îç ţö ĤŢŢÞŠ îñ öŕðéŕ ţö éñåбļé šéçûŕé ŵéб ƒéåţûŕéš ƒöŕ åļļ ýöûŕ ûšéŕš. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://web.dev/redirects-http/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree]"
|
|
1282
|
-
},
|
|
1283
|
-
"lighthouse-core/audits/redirects-http.js | failureTitle": {
|
|
1284
|
-
"message": "[Ðöéš ñöţ ŕéðîŕéçţ ĤŢŢÞ ţŕ僃îç ţö ĤŢŢÞŠ one two three four five six seven eight]"
|
|
1285
|
-
},
|
|
1286
|
-
"lighthouse-core/audits/redirects-http.js | title": {
|
|
1287
|
-
"message": "[Ŕéðîŕéçţš ĤŢŢÞ ţŕ僃îç ţö ĤŢŢÞŠ one two three four five six seven]"
|
|
1288
|
-
},
|
|
1289
1274
|
"lighthouse-core/audits/redirects.js | description": {
|
|
1290
1275
|
"message": "[Ŕéðîŕéçţš îñţŕöðûçé åððîţîöñåļ ðéļåýš бéƒöŕé ţĥé þåĝé çåñ бé ļöåðéð. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://web.dev/redirects/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen]"
|
|
1291
1276
|
},
|
|
@@ -1776,7 +1761,7 @@
|
|
|
1776
1761
|
"message": "[Ţĥéšé çĥéçķš åŕé ŕéqûîŕéð бý ţĥé бåšéļîñé ᐅ[ᐊÞŴÅ Çĥéçķļîšţᐅ](https://developers.google.com/web/progressive-web-apps/checklist)ᐊ бûţ åŕé ñöţ åûţömåţîçåļļý çĥéçķéð бý Ļîĝĥţĥöûšé. Ţĥéý ðö ñöţ 僃éçţ ýöûŕ šçöŕé бûţ îţ'š îmþöŕţåñţ ţĥåţ ýöû véŕîƒý ţĥém måñûåļļý. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix]"
|
|
1777
1762
|
},
|
|
1778
1763
|
"lighthouse-core/config/default-config.js | pwaCategoryTitle": {
|
|
1779
|
-
"message": "[
|
|
1764
|
+
"message": "[ÞŴÅ one]"
|
|
1780
1765
|
},
|
|
1781
1766
|
"lighthouse-core/config/default-config.js | pwaInstallableGroupTitle": {
|
|
1782
1767
|
"message": "[Îñšţåļļåбļé one two]"
|
|
@@ -2078,30 +2063,6 @@
|
|
|
2078
2063
|
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
2079
2064
|
"message": "[Ţĥé ÛŔĻ ýöû ĥåvé þŕövîðéð åþþéåŕš ţö бé îñvåļîð. one two three four five six seven eight nine ten]"
|
|
2080
2065
|
},
|
|
2081
|
-
"lighthouse-treemap/app/src/util.js | allLabel": {
|
|
2082
|
-
"message": "[Åļļ one]"
|
|
2083
|
-
},
|
|
2084
|
-
"lighthouse-treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2085
|
-
"message": "[Åļļ Šçŕîþţš one two]"
|
|
2086
|
-
},
|
|
2087
|
-
"lighthouse-treemap/app/src/util.js | coverageColumnName": {
|
|
2088
|
-
"message": "[Çövéŕåĝé one]"
|
|
2089
|
-
},
|
|
2090
|
-
"lighthouse-treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2091
|
-
"message": "[Ðûþļîçåţé Möðûļéš one two three]"
|
|
2092
|
-
},
|
|
2093
|
-
"lighthouse-treemap/app/src/util.js | resourceBytesLabel": {
|
|
2094
|
-
"message": "[Ŕéšöûŕçé Бýţéš one two]"
|
|
2095
|
-
},
|
|
2096
|
-
"lighthouse-treemap/app/src/util.js | tableColumnName": {
|
|
2097
|
-
"message": "[Ñåmé one]"
|
|
2098
|
-
},
|
|
2099
|
-
"lighthouse-treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2100
|
-
"message": "[Ţöĝĝļé Ţåбļé one two]"
|
|
2101
|
-
},
|
|
2102
|
-
"lighthouse-treemap/app/src/util.js | unusedBytesLabel": {
|
|
2103
|
-
"message": "[Ûñûšéð Бýţéš one two]"
|
|
2104
|
-
},
|
|
2105
2066
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
2106
2067
|
"message": "[Föŕ åñîmåţéð çöñţéñţ, ûšé ᐅ[ᐊᐅ`amp-anim`ᐊᐅ](https://amp.dev/documentation/components/amp-anim/)ᐊ ţö mîñîmîžé ÇÞÛ ûšåĝé ŵĥéñ ţĥé çöñţéñţ îš öƒƒšçŕééñ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen]"
|
|
2107
2068
|
},
|
|
@@ -2369,6 +2330,9 @@
|
|
|
2369
2330
|
"report/renderer/util.js | calculatorLink": {
|
|
2370
2331
|
"message": "[Šéé çåļçûļåţöŕ. one two]"
|
|
2371
2332
|
},
|
|
2333
|
+
"report/renderer/util.js | collapseView": {
|
|
2334
|
+
"message": "[Çöļļåþšé vîéŵ one two]"
|
|
2335
|
+
},
|
|
2372
2336
|
"report/renderer/util.js | crcInitialNavigation": {
|
|
2373
2337
|
"message": "[Îñîţîåļ Ñåvîĝåţîöñ one two three]"
|
|
2374
2338
|
},
|
|
@@ -2405,9 +2369,15 @@
|
|
|
2405
2369
|
"report/renderer/util.js | errorMissingAuditInfo": {
|
|
2406
2370
|
"message": "[Ŕéþöŕţ éŕŕöŕ: ñö åûðîţ îñƒöŕmåţîöñ one two three four five six seven]"
|
|
2407
2371
|
},
|
|
2372
|
+
"report/renderer/util.js | expandView": {
|
|
2373
|
+
"message": "[Éxþåñð vîéŵ one two]"
|
|
2374
|
+
},
|
|
2408
2375
|
"report/renderer/util.js | footerIssue": {
|
|
2409
2376
|
"message": "[Fîļé åñ îššûé one two]"
|
|
2410
2377
|
},
|
|
2378
|
+
"report/renderer/util.js | hide": {
|
|
2379
|
+
"message": "[Ĥîðé one]"
|
|
2380
|
+
},
|
|
2411
2381
|
"report/renderer/util.js | labDataTitle": {
|
|
2412
2382
|
"message": "[Ļåб Ðåţå one]"
|
|
2413
2383
|
},
|
|
@@ -2429,6 +2399,12 @@
|
|
|
2429
2399
|
"report/renderer/util.js | passedAuditsGroupTitle": {
|
|
2430
2400
|
"message": "[Þåššéð åûðîţš one two]"
|
|
2431
2401
|
},
|
|
2402
|
+
"report/renderer/util.js | runtimeAnalysisWindow": {
|
|
2403
|
+
"message": "[Îñîţîåļ þåĝé ļöåð one two three]"
|
|
2404
|
+
},
|
|
2405
|
+
"report/renderer/util.js | runtimeCustom": {
|
|
2406
|
+
"message": "[Çûšţöm ţĥŕöţţļîñĝ one two three]"
|
|
2407
|
+
},
|
|
2432
2408
|
"report/renderer/util.js | runtimeDesktopEmulation": {
|
|
2433
2409
|
"message": "[Émûļåţéð Ðéšķţöþ one two]"
|
|
2434
2410
|
},
|
|
@@ -2447,33 +2423,30 @@
|
|
|
2447
2423
|
"report/renderer/util.js | runtimeSettingsCPUThrottling": {
|
|
2448
2424
|
"message": "[ÇÞÛ ţĥŕöţţļîñĝ one two]"
|
|
2449
2425
|
},
|
|
2450
|
-
"report/renderer/util.js | runtimeSettingsChannel": {
|
|
2451
|
-
"message": "[Çĥåññéļ one]"
|
|
2452
|
-
},
|
|
2453
2426
|
"report/renderer/util.js | runtimeSettingsDevice": {
|
|
2454
2427
|
"message": "[Ðévîçé one]"
|
|
2455
2428
|
},
|
|
2456
|
-
"report/renderer/util.js | runtimeSettingsFetchTime": {
|
|
2457
|
-
"message": "[Féţçĥ Ţîmé one two]"
|
|
2458
|
-
},
|
|
2459
2429
|
"report/renderer/util.js | runtimeSettingsNetworkThrottling": {
|
|
2460
2430
|
"message": "[Ñéţŵöŕķ ţĥŕöţţļîñĝ one two three]"
|
|
2461
2431
|
},
|
|
2462
|
-
"report/renderer/util.js | runtimeSettingsTitle": {
|
|
2463
|
-
"message": "[Ŕûñţîmé Šéţţîñĝš one two]"
|
|
2464
|
-
},
|
|
2465
|
-
"report/renderer/util.js | runtimeSettingsUA": {
|
|
2466
|
-
"message": "[Ûšéŕ åĝéñţ (ĥöšţ) one two three]"
|
|
2467
|
-
},
|
|
2468
2432
|
"report/renderer/util.js | runtimeSettingsUANetwork": {
|
|
2469
2433
|
"message": "[Ûšéŕ åĝéñţ (ñéţŵöŕķ) one two three]"
|
|
2470
2434
|
},
|
|
2471
|
-
"report/renderer/util.js |
|
|
2472
|
-
"message": "[
|
|
2435
|
+
"report/renderer/util.js | runtimeSingleLoad": {
|
|
2436
|
+
"message": "[Šîñĝļé þåĝé ļöåð one two]"
|
|
2437
|
+
},
|
|
2438
|
+
"report/renderer/util.js | runtimeSingleLoadTooltip": {
|
|
2439
|
+
"message": "[Ţĥîš ðåţå îš ţåķéñ ƒŕöm å šîñĝļé þåĝé ļöåð, åš öþþöšéð ţö ƒîéļð ðåţå šûmmåŕîžîñĝ måñý šéššîöñš. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen]"
|
|
2440
|
+
},
|
|
2441
|
+
"report/renderer/util.js | runtimeSlow4g": {
|
|
2442
|
+
"message": "[Šļöŵ 4Ĝ ţĥŕöţţļîñĝ one two three]"
|
|
2473
2443
|
},
|
|
2474
2444
|
"report/renderer/util.js | runtimeUnknown": {
|
|
2475
2445
|
"message": "[Ûñķñöŵñ one]"
|
|
2476
2446
|
},
|
|
2447
|
+
"report/renderer/util.js | show": {
|
|
2448
|
+
"message": "[Šĥöŵ one]"
|
|
2449
|
+
},
|
|
2477
2450
|
"report/renderer/util.js | showRelevantAudits": {
|
|
2478
2451
|
"message": "[Šĥöŵ åûðîţš ŕéļévåñţ ţö: one two three four five]"
|
|
2479
2452
|
},
|
|
@@ -2503,5 +2476,29 @@
|
|
|
2503
2476
|
},
|
|
2504
2477
|
"report/renderer/util.js | warningHeader": {
|
|
2505
2478
|
"message": "[Ŵåŕñîñĝš: one two]"
|
|
2479
|
+
},
|
|
2480
|
+
"treemap/app/src/util.js | allLabel": {
|
|
2481
|
+
"message": "[Åļļ one]"
|
|
2482
|
+
},
|
|
2483
|
+
"treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2484
|
+
"message": "[Åļļ Šçŕîþţš one two]"
|
|
2485
|
+
},
|
|
2486
|
+
"treemap/app/src/util.js | coverageColumnName": {
|
|
2487
|
+
"message": "[Çövéŕåĝé one]"
|
|
2488
|
+
},
|
|
2489
|
+
"treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2490
|
+
"message": "[Ðûþļîçåţé Möðûļéš one two three]"
|
|
2491
|
+
},
|
|
2492
|
+
"treemap/app/src/util.js | resourceBytesLabel": {
|
|
2493
|
+
"message": "[Ŕéšöûŕçé Бýţéš one two]"
|
|
2494
|
+
},
|
|
2495
|
+
"treemap/app/src/util.js | tableColumnName": {
|
|
2496
|
+
"message": "[Ñåmé one]"
|
|
2497
|
+
},
|
|
2498
|
+
"treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2499
|
+
"message": "[Ţöĝĝļé Ţåбļé one two]"
|
|
2500
|
+
},
|
|
2501
|
+
"treemap/app/src/util.js | unusedBytesLabel": {
|
|
2502
|
+
"message": "[Ûñûšéð Бýţéš one two]"
|
|
2506
2503
|
}
|
|
2507
2504
|
}
|
|
@@ -59,6 +59,12 @@
|
|
|
59
59
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
|
|
60
60
|
"message": "D̂íŝćôv́êŕ p̂ér̂f́ôŕm̂án̂ćê óp̂ṕôŕt̂ún̂ít̂íêś t̂ó îḿp̂ŕôv́ê t́ĥé êx́p̂ér̂íêńĉé f̂ór̂ ĺôńĝ-ĺîv́êd́ p̂áĝéŝ án̂d́ ŝín̂ǵl̂é-p̂áĝé âṕp̂ĺîćât́îón̂ś."
|
|
61
61
|
},
|
|
62
|
+
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
63
|
+
"message": "Ĥíĝh́êśt̂ ím̂ṕâćt̂"
|
|
64
|
+
},
|
|
65
|
+
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
|
|
66
|
+
"message": "{numInformative, plural,\n =1 {{numInformative} îńf̂ór̂ḿât́îv́ê áûd́ît́}\n other {{numInformative} îńf̂ór̂ḿât́îv́ê áûd́ît́ŝ}\n }"
|
|
67
|
+
},
|
|
62
68
|
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
63
69
|
"message": "M̂ób̂íl̂é"
|
|
64
70
|
},
|
|
@@ -71,6 +77,15 @@
|
|
|
71
77
|
"flow-report/src/i18n/ui-strings.js | navigationReport": {
|
|
72
78
|
"message": "N̂áv̂íĝát̂íôń r̂ép̂ór̂t́"
|
|
73
79
|
},
|
|
80
|
+
"flow-report/src/i18n/ui-strings.js | navigationReportCount": {
|
|
81
|
+
"message": "{numNavigation, plural,\n =1 {{numNavigation} n̂áv̂íĝát̂íôń r̂ép̂ór̂t́}\n other {{numNavigation} n̂áv̂íĝát̂íôń r̂ép̂ór̂t́ŝ}\n }"
|
|
82
|
+
},
|
|
83
|
+
"flow-report/src/i18n/ui-strings.js | passableAuditCount": {
|
|
84
|
+
"message": "{numPassableAudits, plural,\n =1 {{numPassableAudits} p̂áŝśâb́l̂é âúd̂ít̂}\n other {{numPassableAudits} ṕâśŝáb̂ĺê áûd́ît́ŝ}\n }"
|
|
85
|
+
},
|
|
86
|
+
"flow-report/src/i18n/ui-strings.js | passedAuditCount": {
|
|
87
|
+
"message": "{numPassed, plural,\n =1 {{numPassed} âúd̂ít̂ ṕâśŝéd̂}\n other {{numPassed} áûd́ît́ŝ ṕâśŝéd̂}\n }"
|
|
88
|
+
},
|
|
74
89
|
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
75
90
|
"message": "Âv́êŕâǵê"
|
|
76
91
|
},
|
|
@@ -95,6 +110,9 @@
|
|
|
95
110
|
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
|
|
96
111
|
"message": "Ŝńâṕŝh́ôt́ r̂ép̂ór̂t́"
|
|
97
112
|
},
|
|
113
|
+
"flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
|
|
114
|
+
"message": "{numSnapshot, plural,\n =1 {{numSnapshot} ŝńâṕŝh́ôt́ r̂ép̂ór̂t́}\n other {{numSnapshot} ŝńâṕŝh́ôt́ r̂ép̂ór̂t́ŝ}\n }"
|
|
115
|
+
},
|
|
98
116
|
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
99
117
|
"message": "Ŝúm̂ḿâŕŷ"
|
|
100
118
|
},
|
|
@@ -107,6 +125,9 @@
|
|
|
107
125
|
"flow-report/src/i18n/ui-strings.js | timespanReport": {
|
|
108
126
|
"message": "T̂ím̂éŝṕâń r̂ép̂ór̂t́"
|
|
109
127
|
},
|
|
128
|
+
"flow-report/src/i18n/ui-strings.js | timespanReportCount": {
|
|
129
|
+
"message": "{numTimespan, plural,\n =1 {{numTimespan} t̂ím̂éŝṕâń r̂ép̂ór̂t́}\n other {{numTimespan} t̂ím̂éŝṕâń r̂ép̂ór̂t́ŝ}\n }"
|
|
130
|
+
},
|
|
110
131
|
"flow-report/src/i18n/ui-strings.js | title": {
|
|
111
132
|
"message": "L̂íĝh́t̂h́ôúŝé Ûśêŕ F̂ĺôẃ R̂ép̂ór̂t́"
|
|
112
133
|
},
|
|
@@ -743,18 +764,6 @@
|
|
|
743
764
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
765
|
"message": "Âv́ôíd̂ś d̂ép̂ŕêćât́êd́ ÂṔÎś"
|
|
745
766
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "Âṕp̂ĺîćât́îón̂ Ćâćĥé îś d̂ép̂ŕêćât́êd́. [L̂éâŕn̂ ḿôŕê](https://web.dev/appcache-manifest/)."
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "F̂óûńd̂ \"{AppCacheManifest}\""
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "Ûśêś Âṕp̂ĺîćât́îón̂ Ćâćĥé"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "Âv́ôíd̂ś Âṕp̂ĺîćât́îón̂ Ćâćĥé"
|
|
757
|
-
},
|
|
758
767
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
768
|
"message": "Â ćĥár̂áĉt́êŕ êńĉód̂ín̂ǵ d̂éĉĺâŕât́îón̂ íŝ ŕêq́ûír̂éd̂. Ít̂ ćâń b̂é d̂ón̂é ŵít̂h́ â `<meta>` t́âǵ îń t̂h́ê f́îŕŝt́ 1024 b̂ýt̂éŝ óf̂ t́ĥé ĤT́M̂Ĺ ôŕ îń t̂h́ê Ćôńt̂én̂t́-T̂ýp̂é ĤT́T̂Ṕ r̂éŝṕôńŝé ĥéâd́êŕ. [L̂éâŕn̂ ḿôŕê](https://web.dev/charset/)."
|
|
760
769
|
},
|
|
@@ -812,21 +821,6 @@
|
|
|
812
821
|
"lighthouse-core/audits/dobetterweb/dom-size.js | title": {
|
|
813
822
|
"message": "Âv́ôíd̂ś âń êx́ĉéŝśîv́ê D́ÔḾ ŝíẑé"
|
|
814
823
|
},
|
|
815
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | columnFailingAnchors": {
|
|
816
|
-
"message": "F̂áîĺîńĝ Án̂ćĥór̂ś"
|
|
817
|
-
},
|
|
818
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | description": {
|
|
819
|
-
"message": "Âd́d̂ `rel=\"noopener\"` ór̂ `rel=\"noreferrer\"` t́ô án̂ý êx́t̂ér̂ńâĺ l̂ín̂ḱŝ t́ô ím̂ṕr̂óv̂é p̂ér̂f́ôŕm̂án̂ćê án̂d́ p̂ŕêv́êńt̂ śêćûŕît́ŷ v́ûĺn̂ér̂áb̂íl̂ít̂íêś. [L̂éâŕn̂ ḿôŕê](https://web.dev/external-anchors-use-rel-noopener/)."
|
|
820
|
-
},
|
|
821
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | failureTitle": {
|
|
822
|
-
"message": "L̂ín̂ḱŝ t́ô ćr̂óŝś-ôŕîǵîń d̂éŝt́îńât́îón̂ś âŕê ún̂śâf́ê"
|
|
823
|
-
},
|
|
824
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | title": {
|
|
825
|
-
"message": "L̂ín̂ḱŝ t́ô ćr̂óŝś-ôŕîǵîń d̂éŝt́îńât́îón̂ś âŕê śâf́ê"
|
|
826
|
-
},
|
|
827
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | warning": {
|
|
828
|
-
"message": "Ûńâb́l̂é t̂ó d̂ét̂ér̂ḿîńê t́ĥé d̂éŝt́îńât́îón̂ f́ôŕ âńĉh́ôŕ ({anchorHTML}). Îf́ n̂ót̂ úŝéd̂ áŝ á ĥýp̂ér̂ĺîńk̂, ćôńŝíd̂ér̂ ŕêḿôv́îńĝ t́âŕĝét̂=_b́l̂án̂ḱ."
|
|
829
|
-
},
|
|
830
824
|
"lighthouse-core/audits/dobetterweb/geolocation-on-start.js | description": {
|
|
831
825
|
"message": "Ûśêŕŝ ár̂é m̂íŝt́r̂úŝt́f̂úl̂ óf̂ ór̂ ćôńf̂úŝéd̂ b́ŷ śît́êś t̂h́ât́ r̂éq̂úêśt̂ t́ĥéîŕ l̂óĉát̂íôń ŵít̂h́ôút̂ ćôńt̂éx̂t́. Ĉón̂śîd́êŕ t̂ýîńĝ t́ĥé r̂éq̂úêśt̂ t́ô á ûśêŕ âćt̂íôń îńŝt́êád̂. [Ĺêár̂ń m̂ór̂é](https://web.dev/geolocation-on-start/)."
|
|
832
826
|
},
|
|
@@ -1058,6 +1052,9 @@
|
|
|
1058
1052
|
"lighthouse-core/audits/installable-manifest.js | not-offline-capable": {
|
|
1059
1053
|
"message": "P̂áĝé d̂óêś n̂ót̂ ẃôŕk̂ óf̂f́l̂ín̂é"
|
|
1060
1054
|
},
|
|
1055
|
+
"lighthouse-core/audits/installable-manifest.js | pipeline-restarted": {
|
|
1056
|
+
"message": "P̂ẂÂ h́âś b̂éêń ûńîńŝt́âĺl̂éd̂ án̂d́ îńŝt́âĺl̂áb̂íl̂ít̂ý ĉh́êćk̂ś r̂éŝét̂t́îńĝ."
|
|
1057
|
+
},
|
|
1061
1058
|
"lighthouse-core/audits/installable-manifest.js | platform-not-supported-on-android": {
|
|
1062
1059
|
"message": "T̂h́ê śp̂éĉíf̂íêd́ âṕp̂ĺîćât́îón̂ ṕl̂át̂f́ôŕm̂ íŝ ńôt́ ŝúp̂ṕôŕt̂éd̂ ón̂ Án̂d́r̂óîd́"
|
|
1063
1060
|
},
|
|
@@ -1067,6 +1064,9 @@
|
|
|
1067
1064
|
"lighthouse-core/audits/installable-manifest.js | prefer-related-applications-only-beta-stable": {
|
|
1068
1065
|
"message": "p̂ŕêf́êŕ_r̂él̂át̂éd̂_áp̂ṕl̂íĉát̂íôńŝ íŝ ón̂ĺŷ śûṕp̂ór̂t́êd́ ôń Ĉh́r̂óm̂é B̂ét̂á âńd̂ Śt̂áb̂ĺê ćĥán̂ńêĺŝ ón̂ Án̂d́r̂óîd́."
|
|
1069
1066
|
},
|
|
1067
|
+
"lighthouse-core/audits/installable-manifest.js | protocol-timeout": {
|
|
1068
|
+
"message": "L̂íĝh́t̂h́ôúŝé ĉóûĺd̂ ńôt́ d̂ét̂ér̂ḿîńê íf̂ t́ĥér̂é ŵáŝ á ŝér̂v́îćê ẃôŕk̂ér̂. Ṕl̂éâśê t́r̂ý ŵít̂h́ â ńêẃêŕ v̂ér̂śîón̂ óf̂ Ćĥŕôḿê."
|
|
1069
|
+
},
|
|
1070
1070
|
"lighthouse-core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1071
1071
|
"message": "M̂án̂íf̂éŝt́ ŝt́âŕt̂ ÚR̂Ĺ îś n̂ót̂ v́âĺîd́"
|
|
1072
1072
|
},
|
|
@@ -1277,15 +1277,6 @@
|
|
|
1277
1277
|
"lighthouse-core/audits/preload-lcp-image.js | title": {
|
|
1278
1278
|
"message": "P̂ŕêĺôád̂ Ĺâŕĝéŝt́ Ĉón̂t́êńt̂f́ûĺ P̂áîńt̂ ím̂áĝé"
|
|
1279
1279
|
},
|
|
1280
|
-
"lighthouse-core/audits/redirects-http.js | description": {
|
|
1281
|
-
"message": "Îf́ ŷóû'v́ê ál̂ŕêád̂ý ŝét̂ úp̂ H́T̂T́P̂Ś, m̂ák̂é ŝúr̂é t̂h́ât́ ŷóû ŕêd́îŕêćt̂ ál̂ĺ ĤT́T̂Ṕ t̂ŕâf́f̂íĉ t́ô H́T̂T́P̂Ś îń ôŕd̂ér̂ t́ô én̂áb̂ĺê śêćûŕê ẃêb́ f̂éât́ûŕêś f̂ór̂ ál̂ĺ ŷóûŕ ûśêŕŝ. [Ĺêár̂ń m̂ór̂é](https://web.dev/redirects-http/)."
|
|
1282
|
-
},
|
|
1283
|
-
"lighthouse-core/audits/redirects-http.js | failureTitle": {
|
|
1284
|
-
"message": "D̂óêś n̂ót̂ ŕêd́îŕêćt̂ H́T̂T́P̂ t́r̂áf̂f́îć t̂ó ĤT́T̂ṔŜ"
|
|
1285
|
-
},
|
|
1286
|
-
"lighthouse-core/audits/redirects-http.js | title": {
|
|
1287
|
-
"message": "R̂éd̂ír̂éĉt́ŝ H́T̂T́P̂ t́r̂áf̂f́îć t̂ó ĤT́T̂ṔŜ"
|
|
1288
|
-
},
|
|
1289
1280
|
"lighthouse-core/audits/redirects.js | description": {
|
|
1290
1281
|
"message": "R̂éd̂ír̂éĉt́ŝ ín̂t́r̂ód̂úĉé âd́d̂ít̂íôńâĺ d̂él̂áŷś b̂éf̂ór̂é t̂h́ê ṕâǵê ćâń b̂é l̂óâd́êd́. [L̂éâŕn̂ ḿôŕê](https://web.dev/redirects/)."
|
|
1291
1282
|
},
|
|
@@ -1776,7 +1767,7 @@
|
|
|
1776
1767
|
"message": "T̂h́êśê ćĥéĉḱŝ ár̂é r̂éq̂úîŕêd́ b̂ý t̂h́ê b́âśêĺîńê [ṔŴÁ Ĉh́êćk̂ĺîśt̂](https://developers.google.com/web/progressive-web-apps/checklist) b́ût́ âŕê ńôt́ âút̂óm̂át̂íĉál̂ĺŷ ćĥéĉḱêd́ b̂ý L̂íĝh́t̂h́ôúŝé. T̂h́êý d̂ó n̂ót̂ áf̂f́êćt̂ ýôúr̂ śĉór̂é b̂út̂ ít̂'ś îḿp̂ór̂t́âńt̂ t́ĥát̂ ýôú v̂ér̂íf̂ý t̂h́êḿ m̂án̂úâĺl̂ý."
|
|
1777
1768
|
},
|
|
1778
1769
|
"lighthouse-core/config/default-config.js | pwaCategoryTitle": {
|
|
1779
|
-
"message": "P̂
|
|
1770
|
+
"message": "P̂ẂÂ"
|
|
1780
1771
|
},
|
|
1781
1772
|
"lighthouse-core/config/default-config.js | pwaInstallableGroupTitle": {
|
|
1782
1773
|
"message": "Îńŝt́âĺl̂áb̂ĺê"
|
|
@@ -2078,30 +2069,6 @@
|
|
|
2078
2069
|
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
2079
2070
|
"message": "T̂h́ê ÚR̂Ĺ ŷóû h́âv́ê ṕr̂óv̂íd̂éd̂ áp̂ṕêár̂ś t̂ó b̂é îńv̂ál̂íd̂."
|
|
2080
2071
|
},
|
|
2081
|
-
"lighthouse-treemap/app/src/util.js | allLabel": {
|
|
2082
|
-
"message": "Âĺl̂"
|
|
2083
|
-
},
|
|
2084
|
-
"lighthouse-treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2085
|
-
"message": "Âĺl̂ Śĉŕîṕt̂ś"
|
|
2086
|
-
},
|
|
2087
|
-
"lighthouse-treemap/app/src/util.js | coverageColumnName": {
|
|
2088
|
-
"message": "Ĉóv̂ér̂áĝé"
|
|
2089
|
-
},
|
|
2090
|
-
"lighthouse-treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2091
|
-
"message": "D̂úp̂ĺîćât́ê Ḿôd́ûĺêś"
|
|
2092
|
-
},
|
|
2093
|
-
"lighthouse-treemap/app/src/util.js | resourceBytesLabel": {
|
|
2094
|
-
"message": "R̂éŝóûŕĉé B̂ýt̂éŝ"
|
|
2095
|
-
},
|
|
2096
|
-
"lighthouse-treemap/app/src/util.js | tableColumnName": {
|
|
2097
|
-
"message": "N̂ám̂é"
|
|
2098
|
-
},
|
|
2099
|
-
"lighthouse-treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2100
|
-
"message": "T̂óĝǵl̂é T̂áb̂ĺê"
|
|
2101
|
-
},
|
|
2102
|
-
"lighthouse-treemap/app/src/util.js | unusedBytesLabel": {
|
|
2103
|
-
"message": "Ûńûśêd́ B̂ýt̂éŝ"
|
|
2104
|
-
},
|
|
2105
2072
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
2106
2073
|
"message": "F̂ór̂ án̂ím̂át̂éd̂ ćôńt̂én̂t́, ûśê [`amp-anim`](https://amp.dev/documentation/components/amp-anim/) t́ô ḿîńîḿîźê ĆP̂Ú ûśâǵê ẃĥén̂ t́ĥé ĉón̂t́êńt̂ íŝ óf̂f́ŝćr̂éêń."
|
|
2107
2074
|
},
|
|
@@ -2369,6 +2336,9 @@
|
|
|
2369
2336
|
"report/renderer/util.js | calculatorLink": {
|
|
2370
2337
|
"message": "Ŝéê ćâĺĉúl̂át̂ór̂."
|
|
2371
2338
|
},
|
|
2339
|
+
"report/renderer/util.js | collapseView": {
|
|
2340
|
+
"message": "Ĉól̂ĺâṕŝé v̂íêẃ"
|
|
2341
|
+
},
|
|
2372
2342
|
"report/renderer/util.js | crcInitialNavigation": {
|
|
2373
2343
|
"message": "Îńît́îál̂ Ńâv́îǵât́îón̂"
|
|
2374
2344
|
},
|
|
@@ -2405,9 +2375,15 @@
|
|
|
2405
2375
|
"report/renderer/util.js | errorMissingAuditInfo": {
|
|
2406
2376
|
"message": "R̂ép̂ór̂t́ êŕr̂ór̂: ńô áûd́ît́ îńf̂ór̂ḿât́îón̂"
|
|
2407
2377
|
},
|
|
2378
|
+
"report/renderer/util.js | expandView": {
|
|
2379
|
+
"message": "Êx́p̂án̂d́ v̂íêẃ"
|
|
2380
|
+
},
|
|
2408
2381
|
"report/renderer/util.js | footerIssue": {
|
|
2409
2382
|
"message": "F̂íl̂é âń îśŝúê"
|
|
2410
2383
|
},
|
|
2384
|
+
"report/renderer/util.js | hide": {
|
|
2385
|
+
"message": "Ĥíd̂é"
|
|
2386
|
+
},
|
|
2411
2387
|
"report/renderer/util.js | labDataTitle": {
|
|
2412
2388
|
"message": "L̂áb̂ D́ât́â"
|
|
2413
2389
|
},
|
|
@@ -2429,6 +2405,12 @@
|
|
|
2429
2405
|
"report/renderer/util.js | passedAuditsGroupTitle": {
|
|
2430
2406
|
"message": "P̂áŝśêd́ âúd̂ít̂ś"
|
|
2431
2407
|
},
|
|
2408
|
+
"report/renderer/util.js | runtimeAnalysisWindow": {
|
|
2409
|
+
"message": "Îńît́îál̂ ṕâǵê ĺôád̂"
|
|
2410
|
+
},
|
|
2411
|
+
"report/renderer/util.js | runtimeCustom": {
|
|
2412
|
+
"message": "Ĉúŝt́ôḿ t̂h́r̂ót̂t́l̂ín̂ǵ"
|
|
2413
|
+
},
|
|
2432
2414
|
"report/renderer/util.js | runtimeDesktopEmulation": {
|
|
2433
2415
|
"message": "Êḿûĺât́êd́ D̂éŝḱt̂óp̂"
|
|
2434
2416
|
},
|
|
@@ -2444,36 +2426,33 @@
|
|
|
2444
2426
|
"report/renderer/util.js | runtimeSettingsBenchmark": {
|
|
2445
2427
|
"message": "ĈṔÛ/Ḿêḿôŕŷ Ṕôẃêŕ"
|
|
2446
2428
|
},
|
|
2447
|
-
"report/renderer/util.js | runtimeSettingsChannel": {
|
|
2448
|
-
"message": "Ĉh́âńn̂él̂"
|
|
2449
|
-
},
|
|
2450
2429
|
"report/renderer/util.js | runtimeSettingsCPUThrottling": {
|
|
2451
2430
|
"message": "ĈṔÛ t́ĥŕôt́t̂ĺîńĝ"
|
|
2452
2431
|
},
|
|
2453
2432
|
"report/renderer/util.js | runtimeSettingsDevice": {
|
|
2454
2433
|
"message": "D̂év̂íĉé"
|
|
2455
2434
|
},
|
|
2456
|
-
"report/renderer/util.js | runtimeSettingsFetchTime": {
|
|
2457
|
-
"message": "F̂ét̂ćĥ T́îḿê"
|
|
2458
|
-
},
|
|
2459
2435
|
"report/renderer/util.js | runtimeSettingsNetworkThrottling": {
|
|
2460
2436
|
"message": "N̂ét̂ẃôŕk̂ t́ĥŕôt́t̂ĺîńĝ"
|
|
2461
2437
|
},
|
|
2462
|
-
"report/renderer/util.js | runtimeSettingsTitle": {
|
|
2463
|
-
"message": "R̂ún̂t́îḿê Śêt́t̂ín̂ǵŝ"
|
|
2464
|
-
},
|
|
2465
|
-
"report/renderer/util.js | runtimeSettingsUA": {
|
|
2466
|
-
"message": "Ûśêŕ âǵêńt̂ (h́ôśt̂)"
|
|
2467
|
-
},
|
|
2468
2438
|
"report/renderer/util.js | runtimeSettingsUANetwork": {
|
|
2469
2439
|
"message": "Ûśêŕ âǵêńt̂ (ńêt́ŵór̂ḱ)"
|
|
2470
2440
|
},
|
|
2471
|
-
"report/renderer/util.js |
|
|
2472
|
-
"message": "
|
|
2441
|
+
"report/renderer/util.js | runtimeSingleLoad": {
|
|
2442
|
+
"message": "Ŝín̂ǵl̂é p̂áĝé l̂óâd́"
|
|
2443
|
+
},
|
|
2444
|
+
"report/renderer/util.js | runtimeSingleLoadTooltip": {
|
|
2445
|
+
"message": "T̂h́îś d̂át̂á îś t̂ák̂én̂ f́r̂óm̂ á ŝín̂ǵl̂é p̂áĝé l̂óâd́, âś ôṕp̂óŝéd̂ t́ô f́îél̂d́ d̂át̂á ŝúm̂ḿâŕîźîńĝ ḿâńŷ śêśŝíôńŝ."
|
|
2446
|
+
},
|
|
2447
|
+
"report/renderer/util.js | runtimeSlow4g": {
|
|
2448
|
+
"message": "Ŝĺôẃ 4Ĝ t́ĥŕôt́t̂ĺîńĝ"
|
|
2473
2449
|
},
|
|
2474
2450
|
"report/renderer/util.js | runtimeUnknown": {
|
|
2475
2451
|
"message": "Ûńk̂ńôẃn̂"
|
|
2476
2452
|
},
|
|
2453
|
+
"report/renderer/util.js | show": {
|
|
2454
|
+
"message": "Ŝh́ôẃ"
|
|
2455
|
+
},
|
|
2477
2456
|
"report/renderer/util.js | showRelevantAudits": {
|
|
2478
2457
|
"message": "Ŝh́ôẃ âúd̂ít̂ś r̂él̂év̂án̂t́ t̂ó:"
|
|
2479
2458
|
},
|
|
@@ -2503,5 +2482,29 @@
|
|
|
2503
2482
|
},
|
|
2504
2483
|
"report/renderer/util.js | warningHeader": {
|
|
2505
2484
|
"message": "Ŵár̂ńîńĝś: "
|
|
2485
|
+
},
|
|
2486
|
+
"treemap/app/src/util.js | allLabel": {
|
|
2487
|
+
"message": "Âĺl̂"
|
|
2488
|
+
},
|
|
2489
|
+
"treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2490
|
+
"message": "Âĺl̂ Śĉŕîṕt̂ś"
|
|
2491
|
+
},
|
|
2492
|
+
"treemap/app/src/util.js | coverageColumnName": {
|
|
2493
|
+
"message": "Ĉóv̂ér̂áĝé"
|
|
2494
|
+
},
|
|
2495
|
+
"treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2496
|
+
"message": "D̂úp̂ĺîćât́ê Ḿôd́ûĺêś"
|
|
2497
|
+
},
|
|
2498
|
+
"treemap/app/src/util.js | resourceBytesLabel": {
|
|
2499
|
+
"message": "R̂éŝóûŕĉé B̂ýt̂éŝ"
|
|
2500
|
+
},
|
|
2501
|
+
"treemap/app/src/util.js | tableColumnName": {
|
|
2502
|
+
"message": "N̂ám̂é"
|
|
2503
|
+
},
|
|
2504
|
+
"treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2505
|
+
"message": "T̂óĝǵl̂é T̂áb̂ĺê"
|
|
2506
|
+
},
|
|
2507
|
+
"treemap/app/src/util.js | unusedBytesLabel": {
|
|
2508
|
+
"message": "Ûńûśêd́ B̂ýt̂éŝ"
|
|
2506
2509
|
}
|
|
2507
2510
|
}
|