lighthouse 10.4.0 → 11.0.0
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/CONTRIBUTING.md +1 -1
- package/cli/cli-flags.d.ts +1 -6
- package/cli/cli-flags.js +0 -5
- package/cli/run.js +3 -10
- package/cli/sentry-prompt.js +4 -2
- package/cli/test/smokehouse/core-tests.js +0 -2
- package/cli/test/smokehouse/frontends/smokehouse-bin.js +24 -14
- package/cli/test/smokehouse/lighthouse-runners/bundle.d.ts +1 -2
- package/cli/test/smokehouse/lighthouse-runners/bundle.js +12 -21
- package/cli/test/smokehouse/lighthouse-runners/cli.d.ts +1 -3
- package/cli/test/smokehouse/lighthouse-runners/cli.js +3 -7
- package/cli/test/smokehouse/lighthouse-runners/devtools.d.ts +1 -5
- package/cli/test/smokehouse/lighthouse-runners/devtools.js +1 -12
- package/cli/test/smokehouse/readme.md +0 -2
- package/cli/test/smokehouse/report-assert.d.ts +1 -3
- package/cli/test/smokehouse/report-assert.js +2 -19
- package/cli/test/smokehouse/smokehouse.js +3 -32
- package/core/audits/accessibility/aria-allowed-role.d.ts +10 -0
- package/core/audits/accessibility/aria-allowed-role.js +46 -0
- package/core/audits/accessibility/image-redundant-alt.d.ts +10 -0
- package/core/audits/accessibility/image-redundant-alt.js +45 -0
- package/core/audits/accessibility/label-content-name-mismatch.d.ts +10 -0
- package/core/audits/accessibility/label-content-name-mismatch.js +44 -0
- package/core/audits/accessibility/skip-link.d.ts +10 -0
- package/core/audits/accessibility/skip-link.js +43 -0
- package/core/audits/accessibility/table-duplicate-name.d.ts +10 -0
- package/core/audits/accessibility/table-duplicate-name.js +44 -0
- package/core/audits/accessibility/target-size.js +1 -1
- package/core/audits/byte-efficiency/duplicated-javascript.js +2 -2
- package/core/audits/byte-efficiency/render-blocking-resources.js +1 -0
- package/core/audits/dobetterweb/uses-http2.d.ts +18 -1
- package/core/audits/dobetterweb/uses-http2.js +62 -16
- package/core/audits/installable-manifest.d.ts +1 -5
- package/core/audits/installable-manifest.js +2 -7
- package/core/audits/largest-contentful-paint-element.d.ts +0 -6
- package/core/audits/largest-contentful-paint-element.js +13 -15
- package/core/audits/metrics/{experimental-interaction-to-next-paint.d.ts → interaction-to-next-paint.d.ts} +3 -3
- package/core/audits/metrics/{experimental-interaction-to-next-paint.js → interaction-to-next-paint.js} +3 -3
- package/core/audits/uses-rel-preconnect.js +23 -8
- package/core/audits/work-during-interaction.js +2 -2
- package/core/computed/processed-navigation.d.ts +1 -1
- package/core/config/config-helpers.d.ts +3 -3
- package/core/config/config-helpers.js +5 -12
- package/core/config/config.js +1 -7
- package/core/config/constants.d.ts +0 -2
- package/core/config/constants.js +2 -18
- package/core/config/default-config.js +59 -53
- package/core/config/filters.js +1 -1
- package/core/config/validation.d.ts +7 -12
- package/core/config/validation.js +16 -26
- package/core/gather/base-artifacts.d.ts +4 -4
- package/core/gather/base-artifacts.js +2 -6
- package/core/gather/base-gatherer.d.ts +12 -37
- package/core/gather/base-gatherer.js +7 -54
- package/core/gather/driver/dom.d.ts +4 -4
- package/core/gather/driver/dom.js +2 -2
- package/core/gather/driver/environment.d.ts +4 -4
- package/core/gather/driver/environment.js +2 -2
- package/core/gather/driver/execution-context.d.ts +12 -3
- package/core/gather/driver/execution-context.js +34 -3
- package/core/gather/driver/navigation.d.ts +2 -2
- package/core/gather/driver/navigation.js +2 -5
- package/core/gather/driver/network-monitor.d.ts +7 -6
- package/core/gather/driver/network-monitor.js +4 -4
- package/core/gather/driver/network.d.ts +2 -2
- package/core/gather/driver/network.js +1 -1
- package/core/gather/driver/prepare.d.ts +10 -10
- package/core/gather/driver/prepare.js +10 -10
- package/core/gather/driver/service-workers.d.ts +4 -4
- package/core/gather/driver/service-workers.js +2 -2
- package/core/gather/driver/storage.d.ts +6 -6
- package/core/gather/driver/storage.js +3 -3
- package/core/gather/driver/target-manager.d.ts +6 -5
- package/core/gather/driver/target-manager.js +3 -3
- package/core/gather/driver/wait-for-condition.d.ts +14 -14
- package/core/gather/driver/wait-for-condition.js +8 -8
- package/core/gather/driver.d.ts +9 -6
- package/core/gather/driver.js +14 -4
- package/core/gather/fetcher.d.ts +3 -3
- package/core/gather/fetcher.js +1 -1
- package/core/gather/gatherers/accessibility.d.ts +4 -4
- package/core/gather/gatherers/accessibility.js +8 -3
- package/core/gather/gatherers/anchor-elements.d.ts +4 -4
- package/core/gather/gatherers/anchor-elements.js +4 -4
- package/core/gather/gatherers/bf-cache-failures.d.ts +8 -14
- package/core/gather/gatherers/bf-cache-failures.js +5 -14
- package/core/gather/gatherers/cache-contents.d.ts +4 -4
- package/core/gather/gatherers/cache-contents.js +3 -3
- package/core/gather/gatherers/console-messages.d.ts +6 -6
- package/core/gather/gatherers/console-messages.js +4 -4
- package/core/gather/gatherers/css-usage.d.ts +14 -14
- package/core/gather/gatherers/css-usage.js +9 -9
- package/core/gather/gatherers/devtools-log-compat.d.ts +5 -5
- package/core/gather/gatherers/devtools-log-compat.js +4 -4
- package/core/gather/gatherers/devtools-log.d.ts +6 -6
- package/core/gather/gatherers/devtools-log.js +4 -4
- package/core/gather/gatherers/dobetterweb/doctype.d.ts +4 -4
- package/core/gather/gatherers/dobetterweb/doctype.js +3 -3
- package/core/gather/gatherers/dobetterweb/domstats.d.ts +4 -4
- package/core/gather/gatherers/dobetterweb/domstats.js +3 -3
- package/core/gather/gatherers/dobetterweb/optimized-images.d.ts +10 -22
- package/core/gather/gatherers/dobetterweb/optimized-images.js +10 -27
- package/core/gather/gatherers/dobetterweb/response-compression.d.ts +6 -12
- package/core/gather/gatherers/dobetterweb/response-compression.js +14 -21
- package/core/gather/gatherers/dobetterweb/tags-blocking-first-paint.d.ts +8 -14
- package/core/gather/gatherers/dobetterweb/tags-blocking-first-paint.js +5 -14
- package/core/gather/gatherers/full-page-screenshot.d.ts +10 -10
- package/core/gather/gatherers/full-page-screenshot.js +7 -10
- package/core/gather/gatherers/global-listeners.d.ts +4 -4
- package/core/gather/gatherers/global-listeners.js +3 -3
- package/core/gather/gatherers/iframe-elements.d.ts +4 -4
- package/core/gather/gatherers/iframe-elements.js +3 -3
- package/core/gather/gatherers/image-elements.d.ts +10 -10
- package/core/gather/gatherers/image-elements.js +6 -6
- package/core/gather/gatherers/inputs.d.ts +4 -4
- package/core/gather/gatherers/inputs.js +3 -3
- package/core/gather/gatherers/inspector-issues.d.ts +8 -19
- package/core/gather/gatherers/inspector-issues.js +9 -26
- package/core/gather/gatherers/installability-errors.d.ts +6 -6
- package/core/gather/gatherers/installability-errors.js +4 -4
- package/core/gather/gatherers/js-usage.d.ts +6 -6
- package/core/gather/gatherers/js-usage.js +4 -4
- package/core/gather/gatherers/link-elements.d.ts +8 -20
- package/core/gather/gatherers/link-elements.js +7 -24
- package/core/gather/gatherers/main-document-content.d.ts +4 -16
- package/core/gather/gatherers/main-document-content.js +5 -23
- package/core/gather/gatherers/meta-elements.d.ts +4 -4
- package/core/gather/gatherers/meta-elements.js +3 -3
- package/core/gather/gatherers/network-user-agent.d.ts +5 -5
- package/core/gather/gatherers/network-user-agent.js +4 -4
- package/core/gather/gatherers/script-elements.d.ts +6 -11
- package/core/gather/gatherers/script-elements.js +4 -13
- package/core/gather/gatherers/scripts.d.ts +7 -6
- package/core/gather/gatherers/scripts.js +7 -9
- package/core/gather/gatherers/seo/embedded-content.d.ts +4 -4
- package/core/gather/gatherers/seo/embedded-content.js +3 -3
- package/core/gather/gatherers/seo/font-size.d.ts +6 -6
- package/core/gather/gatherers/seo/font-size.js +5 -5
- package/core/gather/gatherers/seo/robots-txt.d.ts +4 -4
- package/core/gather/gatherers/seo/robots-txt.js +3 -3
- package/core/gather/gatherers/seo/tap-targets.d.ts +8 -8
- package/core/gather/gatherers/seo/tap-targets.js +5 -5
- package/core/gather/gatherers/service-worker.d.ts +4 -10
- package/core/gather/gatherers/service-worker.js +3 -15
- package/core/gather/gatherers/source-maps.d.ts +11 -23
- package/core/gather/gatherers/source-maps.js +22 -53
- package/core/gather/gatherers/stacks.d.ts +7 -7
- package/core/gather/gatherers/stacks.js +6 -6
- package/core/gather/gatherers/trace-compat.d.ts +5 -5
- package/core/gather/gatherers/trace-compat.js +4 -4
- package/core/gather/gatherers/trace-elements.d.ts +13 -25
- package/core/gather/gatherers/trace-elements.js +19 -32
- package/core/gather/gatherers/trace.d.ts +8 -8
- package/core/gather/gatherers/trace.js +5 -5
- package/core/gather/gatherers/viewport-dimensions.d.ts +4 -4
- package/core/gather/gatherers/viewport-dimensions.js +3 -3
- package/core/gather/gatherers/web-app-manifest.d.ts +8 -8
- package/core/gather/gatherers/web-app-manifest.js +5 -5
- package/core/gather/navigation-runner.d.ts +9 -9
- package/core/gather/navigation-runner.js +14 -8
- package/core/gather/runner-helpers.d.ts +3 -3
- package/core/gather/runner-helpers.js +12 -4
- package/core/gather/session.d.ts +2 -2
- package/core/gather/session.js +1 -1
- package/core/gather/snapshot-runner.d.ts +2 -2
- package/core/gather/snapshot-runner.js +1 -1
- package/core/gather/timespan-runner.d.ts +2 -2
- package/core/gather/timespan-runner.js +1 -1
- package/core/index.cjs +0 -7
- package/core/index.d.ts +0 -15
- package/core/index.js +2 -40
- package/core/lib/asset-saver.js +14 -4
- package/core/lib/axe.js +1 -1
- package/core/lib/dependency-graph/simulator/network-analyzer.d.ts +28 -12
- package/core/lib/dependency-graph/simulator/network-analyzer.js +128 -100
- package/core/lib/emulation.d.ts +14 -14
- package/core/lib/emulation.js +7 -7
- package/core/lib/navigation-error.js +5 -0
- package/core/lib/network-recorder.d.ts +2 -1
- package/core/lib/network-recorder.js +1 -0
- package/core/lib/network-request.js +12 -3
- package/core/lib/page-functions.d.ts +10 -2
- package/core/lib/page-functions.js +85 -8
- package/core/lib/sentry.js +9 -2
- package/core/lib/stack-packs.js +4 -0
- package/core/runner.d.ts +8 -30
- package/core/runner.js +8 -39
- package/core/user-flow.d.ts +4 -4
- package/core/user-flow.js +2 -2
- package/dist/report/bundle.esm.js +2221 -5832
- package/dist/report/flow.js +2631 -235
- package/dist/report/standalone.js +2586 -234
- package/flow-report/src/i18n/i18n.d.ts +2 -2
- package/package.json +17 -24
- package/readme.md +3 -1
- package/report/assets/templates.html +3 -1
- package/report/renderer/category-renderer.d.ts +3 -2
- package/report/renderer/category-renderer.js +8 -4
- package/report/renderer/components.js +11 -5
- package/report/renderer/pwa-category-renderer.js +1 -1
- package/report/renderer/report-ui-features.js +9 -6
- package/report/renderer/report-utils.d.ts +1 -1
- package/report/renderer/report-utils.js +2 -2
- package/report/renderer/topbar-features.js +3 -0
- package/shared/localization/locales/ar-XB.json +185 -44
- package/shared/localization/locales/ar.json +185 -44
- package/shared/localization/locales/bg.json +185 -44
- package/shared/localization/locales/ca.json +190 -49
- package/shared/localization/locales/cs.json +185 -44
- package/shared/localization/locales/da.json +185 -44
- package/shared/localization/locales/de.json +185 -44
- package/shared/localization/locales/el.json +185 -44
- package/shared/localization/locales/en-GB.json +185 -44
- package/shared/localization/locales/en-US.json +99 -45
- package/shared/localization/locales/en-XA.json +185 -44
- package/shared/localization/locales/en-XL.json +99 -45
- package/shared/localization/locales/es-419.json +185 -44
- package/shared/localization/locales/es.json +185 -44
- package/shared/localization/locales/fi.json +185 -44
- package/shared/localization/locales/fil.json +185 -44
- package/shared/localization/locales/fr.json +185 -44
- package/shared/localization/locales/he.json +186 -45
- package/shared/localization/locales/hi.json +185 -44
- package/shared/localization/locales/hr.json +185 -44
- package/shared/localization/locales/hu.json +185 -44
- package/shared/localization/locales/id.json +185 -44
- package/shared/localization/locales/it.json +185 -44
- package/shared/localization/locales/ja.json +185 -44
- package/shared/localization/locales/ko.json +185 -44
- package/shared/localization/locales/lt.json +185 -44
- package/shared/localization/locales/lv.json +185 -44
- package/shared/localization/locales/nl.json +185 -44
- package/shared/localization/locales/no.json +185 -44
- package/shared/localization/locales/pl.json +185 -44
- package/shared/localization/locales/pt-PT.json +185 -44
- package/shared/localization/locales/pt.json +190 -49
- package/shared/localization/locales/ro.json +185 -44
- package/shared/localization/locales/ru.json +185 -44
- package/shared/localization/locales/sk.json +185 -44
- package/shared/localization/locales/sl.json +185 -44
- package/shared/localization/locales/sr-Latn.json +185 -44
- package/shared/localization/locales/sr.json +185 -44
- package/shared/localization/locales/sv.json +185 -44
- package/shared/localization/locales/ta.json +185 -44
- package/shared/localization/locales/te.json +185 -44
- package/shared/localization/locales/th.json +185 -44
- package/shared/localization/locales/tr.json +185 -44
- package/shared/localization/locales/uk.json +185 -44
- package/shared/localization/locales/vi.json +185 -44
- package/shared/localization/locales/zh-HK.json +185 -44
- package/shared/localization/locales/zh-TW.json +185 -44
- package/shared/localization/locales/zh.json +185 -44
- package/third-party/esbuild-plugins-polyfills/LICENSE +3 -0
- package/third-party/esbuild-plugins-polyfills/README.md +7 -0
- package/third-party/esbuild-plugins-polyfills/esbuild-polyfills.d.ts +9 -0
- package/third-party/esbuild-plugins-polyfills/esbuild-polyfills.js +129 -0
- package/tsconfig.json +2 -1
- package/types/artifacts.d.ts +16 -45
- package/types/config.d.ts +10 -52
- package/types/externs.d.ts +0 -2
- package/types/gatherer.d.ts +24 -47
- package/types/internal/rxjs.d.ts +26 -0
- package/types/internal/smokehouse.d.ts +1 -3
- package/types/lh.d.ts +0 -2
- package/types/lhr/settings.d.ts +1 -1
- package/core/audits/metrics/first-contentful-paint-3g.d.ts +0 -15
- package/core/audits/metrics/first-contentful-paint-3g.js +0 -69
- package/core/audits/resource-summary.d.ts +0 -16
- package/core/audits/resource-summary.js +0 -104
- package/core/audits/service-worker.d.ts +0 -46
- package/core/audits/service-worker.js +0 -182
- package/core/gather/gatherers/gatherer.d.ts +0 -46
- package/core/gather/gatherers/gatherer.js +0 -58
- package/core/legacy/config/config.d.ts +0 -107
- package/core/legacy/config/config.js +0 -566
- package/core/legacy/config/legacy-default-config.d.ts +0 -4
- package/core/legacy/config/legacy-default-config.js +0 -87
- package/core/legacy/gather/connections/connection.d.ts +0 -77
- package/core/legacy/gather/connections/connection.js +0 -196
- package/core/legacy/gather/connections/cri.d.ts +0 -27
- package/core/legacy/gather/connections/cri.js +0 -162
- package/core/legacy/gather/connections/raw.d.ts +0 -20
- package/core/legacy/gather/connections/raw.js +0 -57
- package/core/legacy/gather/driver.d.ts +0 -216
- package/core/legacy/gather/driver.js +0 -480
- package/core/legacy/gather/gather-runner.d.ts +0 -166
- package/core/legacy/gather/gather-runner.js +0 -590
- package/types/internal/lighthouse-logger.d.ts +0 -34
|
@@ -17,6 +17,15 @@
|
|
|
17
17
|
"core/audits/accessibility/aria-allowed-attr.js | title": {
|
|
18
18
|
"message": "`[aria-*]` विशेषताएं और उनकी भूमिकाएं एक-दूसरे से मेल खाती हैं"
|
|
19
19
|
},
|
|
20
|
+
"core/audits/accessibility/aria-allowed-role.js | description": {
|
|
21
|
+
"message": "ARIA `role`s enable assistive technologies to know the role of each element on the web page. If the `role` values are misspelled, not existing ARIA `role` values, or abstract roles, then the purpose of the element will not be communicated to users of assistive technologies. [Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.7/aria-allowed-roles)."
|
|
22
|
+
},
|
|
23
|
+
"core/audits/accessibility/aria-allowed-role.js | failureTitle": {
|
|
24
|
+
"message": "Values assigned to `role=\"\"` are not valid ARIA roles."
|
|
25
|
+
},
|
|
26
|
+
"core/audits/accessibility/aria-allowed-role.js | title": {
|
|
27
|
+
"message": "Values assigned to `role=\"\"` are valid ARIA roles."
|
|
28
|
+
},
|
|
20
29
|
"core/audits/accessibility/aria-command-name.js | description": {
|
|
21
30
|
"message": "अगर किसी एलिमेंट का ऐक्सेस किया जा सकने वाला नाम नहीं है, तो स्क्रीन रीडर उस एलिमेंट को किसी सामान्य नाम से बुलाते हैं. इस वजह से, वह एलिमेंट उन उपयोगकर्ताओं के लिए किसी काम का नहीं रहता जो स्क्रीन रीडर की मदद से ही टेक्स्ट पढ़ या समझ सकते हैं. [कमांड एलिमेंट को ज़्यादा से ज़्यादा लोगों तक पहुंचाने का तरीका जानें](https://dequeuniversity.com/rules/axe/4.7/aria-command-name)."
|
|
22
31
|
},
|
|
@@ -26,6 +35,15 @@
|
|
|
26
35
|
"core/audits/accessibility/aria-command-name.js | title": {
|
|
27
36
|
"message": "`button`, `link`, और `menuitem` एलिमेंट के नाम ऐक्सेस किए जा सकते हैं"
|
|
28
37
|
},
|
|
38
|
+
"core/audits/accessibility/aria-dialog-name.js | description": {
|
|
39
|
+
"message": "स्क्रीन रीडर का इस्तेमाल करने वाले लोगों को ऐसे ARIA डायलॉग एलिमेंट से परेशानी होती है जिन पर ऐक्सेस किए जा सकने वाले नाम नहीं होते हैं. इससे वे एलिमेंट के इस्तेमाल का मकसद नहीं समझ पाते. [ARIA डायलॉग एलिमेंट को ज़्यादा से ज़्यादा ऐक्सेस करने लायक बनाने का तरीका जानें](https://dequeuniversity.com/rules/axe/4.7/aria-dialog-name)."
|
|
40
|
+
},
|
|
41
|
+
"core/audits/accessibility/aria-dialog-name.js | failureTitle": {
|
|
42
|
+
"message": "`role=\"dialog\"` या `role=\"alertdialog\"` वाले एलिमेंट के नाम ऐक्सेस नहीं किए जा सकते."
|
|
43
|
+
},
|
|
44
|
+
"core/audits/accessibility/aria-dialog-name.js | title": {
|
|
45
|
+
"message": "`role=\"dialog\"` या `role=\"alertdialog\"` वाले एलिमेंट के नाम ऐक्सेस किए जा सकते हैं."
|
|
46
|
+
},
|
|
29
47
|
"core/audits/accessibility/aria-hidden-body.js | description": {
|
|
30
48
|
"message": "जब `aria-hidden=\"true\"`, दस्तावेज़ `<body>` पर सेट होता है, तो स्क्रीन रीडर जैसी सहायक टेक्नोलॉजी हर समय एक जैसा काम नहीं करती. [जानें कि `aria-hidden` का दस्तावेज़ के मुख्य हिस्से पर क्या असर पड़ता है](https://dequeuniversity.com/rules/axe/4.7/aria-hidden-body)."
|
|
31
49
|
},
|
|
@@ -107,6 +125,15 @@
|
|
|
107
125
|
"core/audits/accessibility/aria-roles.js | title": {
|
|
108
126
|
"message": "`[role]` मान सही हैं"
|
|
109
127
|
},
|
|
128
|
+
"core/audits/accessibility/aria-text.js | description": {
|
|
129
|
+
"message": "मार्कअप की मदद से बांटे गए टेक्स्ट नोड के आस-पास `role=text` जोड़ने से, VoiceOver उस टेक्स्ट को एक वाक्यांश मानेगा. हालांकि, एलिमेंट के फ़ोकस करने लायक डिसेंडेंट का एलान नहीं किया जाएगा. [`role=text` एट्रिब्यूट के बारे में ज़्यादा जानें](https://dequeuniversity.com/rules/axe/4.7/aria-text)."
|
|
130
|
+
},
|
|
131
|
+
"core/audits/accessibility/aria-text.js | failureTitle": {
|
|
132
|
+
"message": "`role=text` एट्रिब्यूट वाले एलिमेंट में फ़ोकस करने लायक डिसेंडेंट हैं."
|
|
133
|
+
},
|
|
134
|
+
"core/audits/accessibility/aria-text.js | title": {
|
|
135
|
+
"message": "`role=text` एट्रिब्यूट वाले एलिमेंट में फ़ोकस करने लायक डिसेंडेंट नहीं हैं."
|
|
136
|
+
},
|
|
110
137
|
"core/audits/accessibility/aria-toggle-field-name.js | description": {
|
|
111
138
|
"message": "अगर किसी टॉगल फ़ील्ड के पास ऐक्सेस किया जा सकने वाला नाम नहीं है, तो स्क्रीन रीडर उसे किसी सामान्य नाम से बुलाते हैं. इस वजह से, यह स्क्रीन रीडर की मदद से टेक्स्ट पढ़ने या समझने वालों के लिए किसी काम का नहीं रहता. [टॉगल फ़ील्ड के बारे में ज़्यादा जानें](https://dequeuniversity.com/rules/axe/4.7/aria-toggle-field-name)."
|
|
112
139
|
},
|
|
@@ -227,6 +254,15 @@
|
|
|
227
254
|
"core/audits/accessibility/duplicate-id-aria.js | title": {
|
|
228
255
|
"message": "ARIA आईडी खास हैं"
|
|
229
256
|
},
|
|
257
|
+
"core/audits/accessibility/empty-heading.js | description": {
|
|
258
|
+
"message": "स्क्रीन रीडर का इस्तेमाल करने वाले लोगों को ऐसी हेडिंग से परेशानी होती है जिसमें कोई कॉन्टेंट नहीं है या ऐसा टेक्स्ट है जिसे ऐक्सेस नहीं किया जा सकता. इससे वे पेज के स्ट्रक्चर की जानकारी ऐक्सेस नहीं कर पाते हैं. [हेडिंग के बारे में ज़्यादा जानें](https://dequeuniversity.com/rules/axe/4.7/empty-heading)."
|
|
259
|
+
},
|
|
260
|
+
"core/audits/accessibility/empty-heading.js | failureTitle": {
|
|
261
|
+
"message": "हेडिंग एलिमेंट में कॉन्टेंट नहीं है."
|
|
262
|
+
},
|
|
263
|
+
"core/audits/accessibility/empty-heading.js | title": {
|
|
264
|
+
"message": "हेडिंग के सभी एलिमेंट में कॉन्टेंट मौजूद है."
|
|
265
|
+
},
|
|
230
266
|
"core/audits/accessibility/form-field-multiple-labels.js | description": {
|
|
231
267
|
"message": "स्क्रीन रीडर जैसी सहायक टेक्नोलॉजी, एक से ज़्यादा लेबल वाले फ़ॉर्म फ़ील्ड का नाम गलत तरीके से बोल सकती हैं. ये टेक्नोलॉजी सिर्फ़ पहला, आखिरी या सभी लेबल इस्तेमाल करती हैं. [फ़ॉर्म लेबल इस्तेमाल करने का तरीका जानें](https://dequeuniversity.com/rules/axe/4.7/form-field-multiple-labels)."
|
|
232
268
|
},
|
|
@@ -281,6 +317,15 @@
|
|
|
281
317
|
"core/audits/accessibility/html-xml-lang-mismatch.js | title": {
|
|
282
318
|
"message": "`<html>` एलिमेंट में `[xml:lang]` एट्रिब्यूट है, जिसकी मुख्य भाषा `[lang]` एट्रिब्यूट है."
|
|
283
319
|
},
|
|
320
|
+
"core/audits/accessibility/identical-links-same-purpose.js | description": {
|
|
321
|
+
"message": "एक ही वेब पेज पर ले जाने वाले लिंक की जानकारी एक ही होनी चाहिए. इससे लोगों को लिंक का इस्तेमाल करने के मकसद को समझने और यह तय करने में मदद मिलती है कि उन्हें लिंक पर जाना है या नहीं. [एक जैसे लिंक के बारे में ज़्यादा जानें](https://dequeuniversity.com/rules/axe/4.7/identical-links-same-purpose)."
|
|
322
|
+
},
|
|
323
|
+
"core/audits/accessibility/identical-links-same-purpose.js | failureTitle": {
|
|
324
|
+
"message": "एक जैसे लिंक अलग-अलग पेजों पर ले जाते हैं."
|
|
325
|
+
},
|
|
326
|
+
"core/audits/accessibility/identical-links-same-purpose.js | title": {
|
|
327
|
+
"message": "एक जैसे लिंक एक ही पेज पर ले जाते हैं."
|
|
328
|
+
},
|
|
284
329
|
"core/audits/accessibility/image-alt.js | description": {
|
|
285
330
|
"message": "जानकारी वाले एलिमेंट में, छोटा और ब्यौरे वाला वैकल्पिक टेक्स्ट होना चाहिए. सजावटी एलिमेंट में एक खाली ऑल्ट एट्रिब्यूट का इस्तेमाल किया जा सकता है. [`alt` एट्रिब्यूट के बारे में ज़्यादा जानें](https://dequeuniversity.com/rules/axe/4.7/image-alt)."
|
|
286
331
|
},
|
|
@@ -290,6 +335,15 @@
|
|
|
290
335
|
"core/audits/accessibility/image-alt.js | title": {
|
|
291
336
|
"message": "इमेज एलिमेंट में `[alt]` विशेषताएं शामिल हैं"
|
|
292
337
|
},
|
|
338
|
+
"core/audits/accessibility/image-redundant-alt.js | description": {
|
|
339
|
+
"message": "Informative elements should aim for short, descriptive alternative text. Alternative text that is exactly the same as the text adjacent to the link or image is potentially confusing for screen reader users, because the text will be read twice. [Learn more about the `alt` attribute](https://dequeuniversity.com/rules/axe/4.7/image-redundant-alt)."
|
|
340
|
+
},
|
|
341
|
+
"core/audits/accessibility/image-redundant-alt.js | failureTitle": {
|
|
342
|
+
"message": "Image elements have `[alt]` attributes that are redundant text."
|
|
343
|
+
},
|
|
344
|
+
"core/audits/accessibility/image-redundant-alt.js | title": {
|
|
345
|
+
"message": "Image elements do not have `[alt]` attributes that are redundant text."
|
|
346
|
+
},
|
|
293
347
|
"core/audits/accessibility/input-button-name.js | description": {
|
|
294
348
|
"message": "इनपुट बटन में आसानी से समझ में आने वाला और ऐक्सेस किया जा सकने वाला टेक्स्ट जोड़ने से, स्क्रीन रीडर इस्तेमाल करने वालों को इनपुट बटन के मकसद को समझने में मदद मिल सकती है. [इनपुट बटन के बारे में ज़्यादा जानें](https://dequeuniversity.com/rules/axe/4.7/input-button-name)."
|
|
295
349
|
},
|
|
@@ -308,6 +362,15 @@
|
|
|
308
362
|
"core/audits/accessibility/input-image-alt.js | title": {
|
|
309
363
|
"message": "`<input type=\"image\">` एलिमेंट में`[alt]` टेक्स्ट है"
|
|
310
364
|
},
|
|
365
|
+
"core/audits/accessibility/label-content-name-mismatch.js | description": {
|
|
366
|
+
"message": "Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. [Learn more about accessible names](https://dequeuniversity.com/rules/axe/4.7/label-content-name-mismatch)."
|
|
367
|
+
},
|
|
368
|
+
"core/audits/accessibility/label-content-name-mismatch.js | failureTitle": {
|
|
369
|
+
"message": "Elements with visible text labels do not have matching accessible names."
|
|
370
|
+
},
|
|
371
|
+
"core/audits/accessibility/label-content-name-mismatch.js | title": {
|
|
372
|
+
"message": "Elements with visible text labels have matching accessible names."
|
|
373
|
+
},
|
|
311
374
|
"core/audits/accessibility/label.js | description": {
|
|
312
375
|
"message": "लेबल यह पक्का करते हैं कि स्क्रीन रीडर जैसी सहायक टेक्नोलॉजी की मदद से, फ़ॉर्म कंट्रोल का नाम सही तरीके से बोला जाए. [फ़ॉर्म एलिमेंट के लेबल के बारे में ज़्यादा जानें](https://dequeuniversity.com/rules/axe/4.7/label)."
|
|
313
376
|
},
|
|
@@ -317,6 +380,24 @@
|
|
|
317
380
|
"core/audits/accessibility/label.js | title": {
|
|
318
381
|
"message": "फ़ॉर्म एलिमेंट में सहभागी लेबल हैं"
|
|
319
382
|
},
|
|
383
|
+
"core/audits/accessibility/landmark-one-main.js | description": {
|
|
384
|
+
"message": "एक मुख्य लैंडमार्क होने से, स्क्रीन रीडर इस्तेमाल करने वाले लोगों को वेब पेज पर नेविगेट करने में मदद मिलती है. [लैंडमार्क के बारे में ज़्यादा जानें](https://dequeuniversity.com/rules/axe/4.7/landmark-one-main)."
|
|
385
|
+
},
|
|
386
|
+
"core/audits/accessibility/landmark-one-main.js | failureTitle": {
|
|
387
|
+
"message": "दस्तावेज़ में कोई मुख्य लैंडमार्क नहीं है."
|
|
388
|
+
},
|
|
389
|
+
"core/audits/accessibility/landmark-one-main.js | title": {
|
|
390
|
+
"message": "दस्तावेज़ में एक मुख्य लैंडमार्क है."
|
|
391
|
+
},
|
|
392
|
+
"core/audits/accessibility/link-in-text-block.js | description": {
|
|
393
|
+
"message": "कई लोगों के लिए, कम कंट्रास्ट वाला टेक्स्ट पढ़ना मुश्किल या नामुमकिन होता है. समझ में आने वाले लिंक टेक्स्ट से, कम दृष्टि वाले लोगों को बेहतर अनुभव मिलता है. [लिंक को खास बनाने का तरीका जानें](https://dequeuniversity.com/rules/axe/4.7/link-in-text-block)."
|
|
394
|
+
},
|
|
395
|
+
"core/audits/accessibility/link-in-text-block.js | failureTitle": {
|
|
396
|
+
"message": "रंग का इस्तेमाल करके, दिखाए गए लिंक अलग नज़र आने चाहिए."
|
|
397
|
+
},
|
|
398
|
+
"core/audits/accessibility/link-in-text-block.js | title": {
|
|
399
|
+
"message": "किसी भी रंग का इस्तेमाल किए बिना, लिंक अलग से पहचाने जा सकते हैं."
|
|
400
|
+
},
|
|
320
401
|
"core/audits/accessibility/link-name.js | description": {
|
|
321
402
|
"message": "समझने लायक, यूनीक, और फ़ोकस करने लायक लिंक टेक्स्ट (और इमेज के लिए इस्तेमाल किया जाने वाला वैकल्पिक टेक्स्ट, जब लिंक के तौर पर इस्तेमाल किया जाए) की मदद से, स्क्रीन रीडर इस्तेमाल करने वालों का नेविगेशन अनुभव बेहतर होता है. [लिंक को ऐक्सेस करने लायक बनाने का तरीका जानें](https://dequeuniversity.com/rules/axe/4.7/link-name)."
|
|
322
403
|
},
|
|
@@ -371,6 +452,24 @@
|
|
|
371
452
|
"core/audits/accessibility/object-alt.js | title": {
|
|
372
453
|
"message": "`<object>` एलिमेंट में वैकल्पिक टेक्स्ट है"
|
|
373
454
|
},
|
|
455
|
+
"core/audits/accessibility/select-name.js | description": {
|
|
456
|
+
"message": "सही और असरदार लेबल के बिना फ़ॉर्म के एलिमेंट, स्क्रीन रीडर इस्तेमाल करने वालों के अनुभव को खराब कर सकते हैं. [`select` एलिमेंट के बारे में ज़्यादा जानें](https://dequeuniversity.com/rules/axe/4.7/select-name)."
|
|
457
|
+
},
|
|
458
|
+
"core/audits/accessibility/select-name.js | failureTitle": {
|
|
459
|
+
"message": "चुनने की सुविधा देने वाले एलिमेंट में उनसे जुड़े लेबल एलिमेंट नहीं हैं."
|
|
460
|
+
},
|
|
461
|
+
"core/audits/accessibility/select-name.js | title": {
|
|
462
|
+
"message": "चुनने की सुविधा देने वाले एलिमेंट में उनसे जुड़े लेबल एलिमेंट हैं."
|
|
463
|
+
},
|
|
464
|
+
"core/audits/accessibility/skip-link.js | description": {
|
|
465
|
+
"message": "Including a skip link can help users skip to the main content to save time. [Learn more about skip links](https://dequeuniversity.com/rules/axe/4.7/skip-link)."
|
|
466
|
+
},
|
|
467
|
+
"core/audits/accessibility/skip-link.js | failureTitle": {
|
|
468
|
+
"message": "Skip links are not focusable."
|
|
469
|
+
},
|
|
470
|
+
"core/audits/accessibility/skip-link.js | title": {
|
|
471
|
+
"message": "Skip links are focusable."
|
|
472
|
+
},
|
|
374
473
|
"core/audits/accessibility/tabindex.js | description": {
|
|
375
474
|
"message": "शून्य से ज़्यादा की वैल्यू साफ़ तौर पर, नेविगेशन के क्रम को दिखाती है. हालांकि, यह वैल्यू तकनीकी रूप से मान्य है. इसके बावजूद, सहायक टेक्नोलॉजी पर भरोसा करने वाले लोगों को यह वैल्यू अक्सर परेशान करती है. [`tabindex` एट्रिब्यूट के बारे में ज़्यादा जानें](https://dequeuniversity.com/rules/axe/4.7/tabindex)."
|
|
376
475
|
},
|
|
@@ -380,6 +479,15 @@
|
|
|
380
479
|
"core/audits/accessibility/tabindex.js | title": {
|
|
381
480
|
"message": "किसी भी एलिमेंट का `[tabindex]` मान 0 से ज़्यादा नहीं हो सकता"
|
|
382
481
|
},
|
|
482
|
+
"core/audits/accessibility/table-duplicate-name.js | description": {
|
|
483
|
+
"message": "The summary attribute should describe the table structure, while `<caption>` should have the onscreen title. Accurate table mark-up helps users of screen readers. [Learn more about summary and caption](https://dequeuniversity.com/rules/axe/4.7/table-duplicate-name)."
|
|
484
|
+
},
|
|
485
|
+
"core/audits/accessibility/table-duplicate-name.js | failureTitle": {
|
|
486
|
+
"message": "Tables have the same content in the summary attribute and `<caption>.`"
|
|
487
|
+
},
|
|
488
|
+
"core/audits/accessibility/table-duplicate-name.js | title": {
|
|
489
|
+
"message": "Tables have different content in the summary attribute and `<caption>`."
|
|
490
|
+
},
|
|
383
491
|
"core/audits/accessibility/table-fake-caption.js | description": {
|
|
384
492
|
"message": "स्क्रीन रीडर में ऐसी सुविधाएं होती हैं जिनकी मदद से, टेबल पर नेविगेट करना आसान हो जाता है. यह पक्का करें कि टेबल में `[colspan]` एट्रिब्यूट वाले सेल के बजाय, असल कैप्शन एलिमेंट का इस्तेमाल किया जाता है. इससे स्क्रीन रीडर का इस्तेमाल करने वालों को बेहतर अनुभव मिल सकता है. [कैप्शन के बारे में ज़्यादा जानें](https://dequeuniversity.com/rules/axe/4.7/table-fake-caption)."
|
|
385
493
|
},
|
|
@@ -389,6 +497,15 @@
|
|
|
389
497
|
"core/audits/accessibility/table-fake-caption.js | title": {
|
|
390
498
|
"message": "टेबल में कैप्शन दिखाने के लिए, `[colspan]` एट्रिब्यूट वाली सेल के बजाय, `<caption>` का इस्तेमाल किया जाता है."
|
|
391
499
|
},
|
|
500
|
+
"core/audits/accessibility/target-size.js | description": {
|
|
501
|
+
"message": "Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. [Learn more about touch targets](https://dequeuniversity.com/rules/axe/4.7/target-size)."
|
|
502
|
+
},
|
|
503
|
+
"core/audits/accessibility/target-size.js | failureTitle": {
|
|
504
|
+
"message": "टच टारगेट (स्क्रीन के वे हिस्से जहां छूने पर कोई कार्रवाई होती है) में ज़रूरत के मुताबिक साइज़ या स्पेस नहीं है."
|
|
505
|
+
},
|
|
506
|
+
"core/audits/accessibility/target-size.js | title": {
|
|
507
|
+
"message": "टच टारगेट (स्क्रीन के वे हिस्से जहां छूने पर कोई कार्रवाई होती है) में ज़रूरत के मुताबिक साइज़ और स्पेस है."
|
|
508
|
+
},
|
|
392
509
|
"core/audits/accessibility/td-has-header.js | description": {
|
|
393
510
|
"message": "स्क्रीन रीडर में ऐसी सुविधाएं होती हैं जिनकी मदद से, टेबल पर नेविगेट करना आसान हो जाता है. यह पक्का करें कि बड़ी टेबल (चौड़ाई और ऊंचाई में तीन या उससे ज़्यादा सेल) के `<td>` एलिमेंट में संबंधित टेबल हेडर का इस्तेमाल किया जाता है. इससे स्क्रीन रीडर का इस्तेमाल करने वालों के अनुभव को बेहतर बनाया जा सकता है. [टेबल हेडर के बारे में ज़्यादा जानें](https://dequeuniversity.com/rules/axe/4.7/td-has-header)."
|
|
394
511
|
},
|
|
@@ -938,9 +1055,6 @@
|
|
|
938
1055
|
"core/audits/installable-manifest.js | no-manifest": {
|
|
939
1056
|
"message": "पेज में कोई भी मेनिफ़ेस्ट <link> यूआरएल नहीं है"
|
|
940
1057
|
},
|
|
941
|
-
"core/audits/installable-manifest.js | no-matching-service-worker": {
|
|
942
|
-
"message": "कोई भी मिलता-जुलता सर्विस वर्कर नहीं मिला. हो सकता है कि आपको पेज फिर से लोड करना पड़े या यह जांच करनी पड़े कि मौजूदा पेज के लिए सर्विस वर्कर का दायरा, मेनिफ़ेस्ट के दायरे और स्टार्ट यूआरएल जितना हो."
|
|
943
|
-
},
|
|
944
1058
|
"core/audits/installable-manifest.js | no-url-for-service-worker": {
|
|
945
1059
|
"message": "मेनिफ़ेस्ट में 'start_url' फ़ील्ड न होने की वजह से सर्विस वर्कर की जांच नहीं की जा सकती"
|
|
946
1060
|
},
|
|
@@ -969,7 +1083,7 @@
|
|
|
969
1083
|
"message": "prefer_related_applications सिर्फ़ Chrome बीटा और Android पर स्थिर चैनलों पर काम करता है."
|
|
970
1084
|
},
|
|
971
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
972
|
-
"message": "Lighthouse
|
|
1086
|
+
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
973
1087
|
},
|
|
974
1088
|
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
975
1089
|
"message": "मेनिफ़ेस्ट का यूआरएल जिस स्कीम ({scheme}) का इस्तेमाल करता है वह Android पर काम नहीं करती."
|
|
@@ -1112,15 +1226,15 @@
|
|
|
1112
1226
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1113
1227
|
"message": "कुल लेआउट शिफ़्ट, व्यूपोर्ट में दिखने वाले एलिमेंट की हलचल बताता है. [कुल लेआउट शिफ़्ट से जुड़ी मेट्रिक के बारे में ज़्यादा जानें](https://web.dev/cls/)."
|
|
1114
1228
|
},
|
|
1115
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1116
|
-
"message": "इंटरैक्शन टू नेक्स्ट पेंट मेट्रिक, पेज पर रिस्पॉन्स मिलने में लगने वाले समय को मापती है. इससे पता चलता है कि उपयोगकर्ता के इनपुट का जवाब देने में पेज को कितना समय लगता है. [इंटरैक्शन टू नेक्स्ट पेंट मेट्रिक के बारे में ज़्यादा जानें](https://web.dev/inp/)."
|
|
1117
|
-
},
|
|
1118
1229
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1119
1230
|
"message": "फ़र्स्ट कॉन्टेंटफ़ुल पेंट से, यह पता चलता है कि आपकी वेबसाइट का जो टेक्स्ट या इमेज किसी उपयोगकर्ता को सबसे पहले दिखा उसे दिखने में कितना समय लगा. [फ़र्स्ट कॉन्टेंटफ़ुल पेंट से जुड़ी मेट्रिक के बारे में ज़्यादा जानें](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1120
1231
|
},
|
|
1121
1232
|
"core/audits/metrics/first-meaningful-paint.js | description": {
|
|
1122
1233
|
"message": "फ़र्स्ट मीनिंगफ़ुल पेंट मेट्रिक इस बात की जानकारी देती है कि किसी पेज का मुख्य कॉन्टेंट कब दिखा. [फ़र्स्ट मीनिंगफ़ुल पेंट से जुड़ी मेट्रिक के बारे में ज़्यादा जानें](https://developer.chrome.com/docs/lighthouse/performance/first-meaningful-paint/)."
|
|
1123
1234
|
},
|
|
1235
|
+
"core/audits/metrics/interaction-to-next-paint.js | description": {
|
|
1236
|
+
"message": "इंटरैक्शन टू नेक्स्ट पेंट मेट्रिक, पेज पर रिस्पॉन्स मिलने में लगने वाले समय को मापती है. इससे पता चलता है कि उपयोगकर्ता के इनपुट का जवाब देने में पेज को कितना समय लगता है. [इंटरैक्शन टू नेक्स्ट पेंट मेट्रिक के बारे में ज़्यादा जानें](https://web.dev/inp/)."
|
|
1237
|
+
},
|
|
1124
1238
|
"core/audits/metrics/interactive.js | description": {
|
|
1125
1239
|
"message": "इंटरैक्टिव में लगने वाला समय, वह समय है जितनी देर में पेज पूरी तरह से इंटरैक्टिव हो जाता है. [इंटरैक्टिव में लगने वाले समय से जुड़ी मेट्रिक के बारे में ज़्यादा जानें](https://developer.chrome.com/docs/lighthouse/performance/interactive/)."
|
|
1126
1240
|
},
|
|
@@ -1214,15 +1328,6 @@
|
|
|
1214
1328
|
"core/audits/redirects.js | title": {
|
|
1215
1329
|
"message": "एक से ज़्यादा पेज रीडायरेक्ट करने से बचें"
|
|
1216
1330
|
},
|
|
1217
|
-
"core/audits/resource-summary.js | description": {
|
|
1218
|
-
"message": "पेज रिसॉर्स की संख्या और साइज़ का बजट सेट करने के लिए, budget.json फ़ाइल जोड़ें. [परफ़ॉर्मेंस बजट के बारे में ज़्यादा जानें](https://web.dev/use-lighthouse-for-performance-budgets/)."
|
|
1219
|
-
},
|
|
1220
|
-
"core/audits/resource-summary.js | displayValue": {
|
|
1221
|
-
"message": "{requestCount,plural, =1{1 अनुरोध • {byteCount, number, bytes} किबीबाइट}one{# अनुरोध • {byteCount, number, bytes} किबीबाइट}other{# अनुरोध • {byteCount, number, bytes} किबीबाइट}}"
|
|
1222
|
-
},
|
|
1223
|
-
"core/audits/resource-summary.js | title": {
|
|
1224
|
-
"message": "अनुरोधों की संख्या कम और ट्रांसफ़र का आकार छोटा रखें"
|
|
1225
|
-
},
|
|
1226
1331
|
"core/audits/seo/canonical.js | description": {
|
|
1227
1332
|
"message": "कैननिकल लिंक, इस बारे में जानकारी देते हैं कि खोज के नतीजों में कौनसे यूआरएल दिखाए जाएं. [कैननिकल लिंक के बारे में ज़्यादा जानें](https://developer.chrome.com/docs/lighthouse/seo/canonical/)."
|
|
1228
1333
|
},
|
|
@@ -1412,27 +1517,6 @@
|
|
|
1412
1517
|
"core/audits/server-response-time.js | title": {
|
|
1413
1518
|
"message": "जवाब देने में सर्वर को लगने वाला शुरुआती समय कम था"
|
|
1414
1519
|
},
|
|
1415
|
-
"core/audits/service-worker.js | description": {
|
|
1416
|
-
"message": "सर्विस वर्कर एक ऐसी टेक्नोलॉजी है जो आपके ऐप्लिकेशन को, प्रोग्रेसिव वेब ऐप्लिकेशन के कई फ़ीचर इस्तेमाल करने की अनुमति देती है. इनमें ऑफ़लाइन, होमस्क्रीन पर जोड़ें, और पुश नोटिफ़िकेशन जैसे फ़ीचर शामिल हैं. [सर्विस वर्कर के बारे में ज़्यादा जानें](https://developer.chrome.com/docs/lighthouse/pwa/service-worker/)."
|
|
1417
|
-
},
|
|
1418
|
-
"core/audits/service-worker.js | explanationBadManifest": {
|
|
1419
|
-
"message": "इस पेज का नियंत्रण सर्विस वर्कर के पास है. हालांकि, कोई `start_url` नहीं मिला, क्योंकि मेनिफ़ेस्ट को मान्य JSON के रूप में पार्स नहीं किया जा सका"
|
|
1420
|
-
},
|
|
1421
|
-
"core/audits/service-worker.js | explanationBadStartUrl": {
|
|
1422
|
-
"message": "इस पेज का नियंत्रण सर्विस वर्कर के पास है. हालांकि, `start_url` ({startUrl}) सर्विस वर्कर के दायरे में नहीं है ({scopeUrl})"
|
|
1423
|
-
},
|
|
1424
|
-
"core/audits/service-worker.js | explanationNoManifest": {
|
|
1425
|
-
"message": "इस पेज का नियंत्रण सर्विस वर्कर के पास है. हालांकि, कोई `start_url` नहीं मिला, क्योंकि किसी पेज पर कोई मेनिफ़ेस्ट ही नहीं था."
|
|
1426
|
-
},
|
|
1427
|
-
"core/audits/service-worker.js | explanationOutOfScope": {
|
|
1428
|
-
"message": "यहां पर एक या ज़्यादा सर्विस वर्कर हैं. हालांकि, पेज ({pageUrl}) दायरे में नहीं है."
|
|
1429
|
-
},
|
|
1430
|
-
"core/audits/service-worker.js | failureTitle": {
|
|
1431
|
-
"message": "किसी ऐसे सर्विस वर्कर को रजिस्टर नहीं करता जो पेज और `start_url` को नियंत्रित करता है"
|
|
1432
|
-
},
|
|
1433
|
-
"core/audits/service-worker.js | title": {
|
|
1434
|
-
"message": "किसी ऐसे सर्विस वर्कर को रजिस्टर करता है जो पेज और `start_url` को नियंत्रित करता है"
|
|
1435
|
-
},
|
|
1436
1520
|
"core/audits/splash-screen.js | description": {
|
|
1437
1521
|
"message": "जब लोग अपने डिवाइस की होमस्क्रीन से आपका ऐप्लिकेशन लॉन्च करते हैं, तो थीम वाली स्प्लैश स्क्रीन की वजह से उन्हें अच्छा अनुभव मिलता है. [स्प्लैश स्क्रीन के बारे में ज़्यादा जानें](https://developer.chrome.com/docs/lighthouse/pwa/splash-screen/)."
|
|
1438
1522
|
},
|
|
@@ -1623,7 +1707,7 @@
|
|
|
1623
1707
|
"message": "सबसे अच्छे तरीके"
|
|
1624
1708
|
},
|
|
1625
1709
|
"core/config/default-config.js | a11yCategoryDescription": {
|
|
1626
|
-
"message": "
|
|
1710
|
+
"message": "These checks highlight opportunities to [improve the accessibility of your web app](https://developer.chrome.com/docs/lighthouse/accessibility/). Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so [manual testing](https://web.dev/how-to-review/) is also encouraged."
|
|
1627
1711
|
},
|
|
1628
1712
|
"core/config/default-config.js | a11yCategoryManualDescription": {
|
|
1629
1713
|
"message": "ये आइटम ऐसे मामलों में भी काम करते हैं जहां अपने आप काम करने वाला टेस्टिंग टूल नाकाम रहता है. हमारी गाइड में जाकर [सुलभता समीक्षा करने](https://web.dev/how-to-review/) के बारे में ज़्यादा जानें."
|
|
@@ -2769,7 +2853,7 @@
|
|
|
2769
2853
|
"message": "ऐसा [Drupal मॉड्यूल](https://www.drupal.org/project/project_module?f%5B0%5D=&f%5B1%5D=&f%5B2%5D=im_vid_3%3A67&f%5B3%5D=&f%5B4%5D=sm_field_project_type%3Afull&f%5B5%5D=&f%5B6%5D=&text=%22lazy+load%22&solrsort=iss_project_release_usage+desc&op=Search) इंस्टॉल करें जो इमेज को धीमे लोड कर पाए. परफ़ॉर्मेंस को बेहतर बनाने के लिए, इस तरह के मॉड्यूल किसी भी ऑफ़स्क्रीन इमेज को अलग करने की सुविधा देते हैं."
|
|
2770
2854
|
},
|
|
2771
2855
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | render-blocking-resources": {
|
|
2772
|
-
"message": "
|
|
2856
|
+
"message": "Consider using a module to inline critical CSS and JavaScript, and use the defer attribute for non-critical CSS or JavaScript."
|
|
2773
2857
|
},
|
|
2774
2858
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | server-response-time": {
|
|
2775
2859
|
"message": "थीम, मॉड्यूल, और सर्वर की खास बातें, सर्वर से जवाब मिलने का समय तय करने में मदद करती हैं. ज़्यादा ऑप्टिमाइज़ की हुई थीम ढूंढें, ऑप्टिमाइज़ेशन मॉड्यूल को सावधानी से चुनें, और/या अपना सर्वर अपग्रेड करें. आपके होस्टिंग सर्वर को डेटाबेस क्वेरी में लगने वाले समय को कम करने के लिए, Redis या Memcached जैसे PHP opcode कैशिंग, मेमोरी-कैशिंग का इस्तेमाल करना चाहिए. साथ ही, पेजों को तेज़ी से तैयार करने के लिए, ऑप्टिमाइज़ किए हुए ऐप्लिकेशन का लॉजिक भी होना चाहिए."
|
|
@@ -2778,10 +2862,10 @@
|
|
|
2778
2862
|
"message": "आपके पेज पर लोड की गई इमेज के साइज़ को कम करने के लिए, [जवाब देने वाली इमेज की शैली](https://www.drupal.org/docs/8/mobile-guide/responsive-images-in-drupal-8) का इस्तेमाल करें. अगर आप किसी पेज पर कई कॉन्टेंट आइटम को दिखाने के लिए, व्यू की सुविधा का इस्तेमाल कर रहे हैं, तो उस पेज पर दिखने वाले कॉन्टेंट आइटम को कम करने के लिए, आप पेज पर नंबर डालने की सुविधा को लागू कर सकते हैं."
|
|
2779
2863
|
},
|
|
2780
2864
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | unminified-css": {
|
|
2781
|
-
"message": "
|
|
2865
|
+
"message": "Ensure you have enabled \"Aggregate CSS files\" in the \"Administration » Configuration » Development\" page. Ensure your Drupal site is running at least Drupal 10.1 for improved asset aggregation support."
|
|
2782
2866
|
},
|
|
2783
2867
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | unminified-javascript": {
|
|
2784
|
-
"message": "
|
|
2868
|
+
"message": "Ensure you have enabled \"Aggregate JavaScript files\" in the \"Administration » Configuration » Development\" page. Ensure your Drupal site is running at least Drupal 10.1 for improved asset aggregation support."
|
|
2785
2869
|
},
|
|
2786
2870
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | unused-css-rules": {
|
|
2787
2871
|
"message": "ऐसे सीएसएस नियमों को हटाएं जिनका इस्तेमाल नहीं हुआ है. साथ ही, सही पेज या पेज के कॉम्पोनेंट में सिर्फ़ ज़रूरी Drupal लाइब्रेरी अटैच करें. ज़्यादा जानकारी के लिए, [Drupal के दस्तावेज़ का लिंक](https://www.drupal.org/docs/8/creating-custom-modules/adding-stylesheets-css-and-javascript-js-to-a-drupal-8-module#library) देखें. Chrome DevTools में [कोड कवरेज](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage) चलाकर, उन अटैच की गई लाइब्रेरी की पहचान करें जो आपके पेज में बाहरी सीएसएस को जोड़ रही हैं. जब आपकी Drupal साइट में सीएसएस के एक साथ दिखने की सुविधा बंद हो जाती है, तो आप स्टाइलशीट के यूआरएल से पहचान सकते हैं कि ऐसा किस थीम/मॉड्यूल की वजह से हुआ है. ऐसे थीम/मॉड्यूल खोजें जिनके पास उस सूची में कई ऐसी स्टाइलशीट हैं जिनके कोड कवरेज में बहुत से लाल निशान हैं. थीम/मॉड्यूल को स्टाइलशीट तभी क्यू में लगानी चाहिए, जब पेज पर उसका वाकई इस्तेमाल किया गया हो."
|
|
@@ -2981,6 +3065,48 @@
|
|
|
2981
3065
|
"node_modules/lighthouse-stack-packs/packs/next.js | uses-text-compression": {
|
|
2982
3066
|
"message": "अपने Next.js सर्वर पर कंप्रेस करने की सुविधा चालू करें. [ज़्यादा जानें](https://nextjs.org/docs/api-reference/next.config.js/compression)."
|
|
2983
3067
|
},
|
|
3068
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | dom-size": {
|
|
3069
|
+
"message": "Contact your account manager to enable [`HTML Lazy Load`](https://support.nitropack.io/hc/en-us/articles/17144942904337). Configuring it will prioritize and optimize your page rendering performance."
|
|
3070
|
+
},
|
|
3071
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | font-display": {
|
|
3072
|
+
"message": "Use the [`Override Font Rendering Behavior`](https://support.nitropack.io/hc/en-us/articles/16547358865041) option in NitroPack to set a desired value for the CSS font-display rule."
|
|
3073
|
+
},
|
|
3074
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | modern-image-formats": {
|
|
3075
|
+
"message": "Use [`Image Optimization`](https://support.nitropack.io/hc/en-us/articles/16547237162513) to automatically convert your images to WebP."
|
|
3076
|
+
},
|
|
3077
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | offscreen-images": {
|
|
3078
|
+
"message": "Defer offscreen images by enabling [`Automatic Image Lazy Loading`](https://support.nitropack.io/hc/en-us/articles/12457493524369-NitroPack-Lazy-Loading-Feature-for-Images)."
|
|
3079
|
+
},
|
|
3080
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | render-blocking-resources": {
|
|
3081
|
+
"message": "Enable [`Remove render-blocking resources`](https://support.nitropack.io/hc/en-us/articles/13820893500049-How-to-Deal-with-Render-Blocking-Resources-in-NitroPack) in NitroPack for faster initial load times."
|
|
3082
|
+
},
|
|
3083
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | server-response-time": {
|
|
3084
|
+
"message": "Improve server response time and optimize perceived performance by activating [`Instant Load`](https://support.nitropack.io/hc/en-us/articles/16547340617361)."
|
|
3085
|
+
},
|
|
3086
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unminified-css": {
|
|
3087
|
+
"message": "Enable [`Minify resources`](https://support.nitropack.io/hc/en-us/articles/360061059394-Minify-Resources) in your Caching settings to reduce the size of your CSS, HTML, and JavaScript files for faster load times."
|
|
3088
|
+
},
|
|
3089
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unminified-javascript": {
|
|
3090
|
+
"message": "Enable [`Minify resources`](https://support.nitropack.io/hc/en-us/articles/360061059394-Minify-Resources) in your Caching settings to reduce the size of your JS, HTML, and CSS files for faster load times."
|
|
3091
|
+
},
|
|
3092
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unused-css-rules": {
|
|
3093
|
+
"message": "Enable [`Reduce Unused CSS`](https://support.nitropack.io/hc/en-us/articles/360020418457-Reduce-Unused-CSS) to remove CSS rules that are not applicable to this page."
|
|
3094
|
+
},
|
|
3095
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unused-javascript": {
|
|
3096
|
+
"message": "Configure [`Delayed Scripts`](https://support.nitropack.io/hc/en-us/articles/1500002600942-Delayed-Scripts) in NitroPack to delay loading of scripts until they are needed."
|
|
3097
|
+
},
|
|
3098
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-long-cache-ttl": {
|
|
3099
|
+
"message": "Go to the [`Improve Server Response Time`](https://support.nitropack.io/hc/en-us/articles/1500002321821-Improve-Server-Response-Time) feature in the `Caching` menu and adjust your page cache expiration time to improve loading times and user experience."
|
|
3100
|
+
},
|
|
3101
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-optimized-images": {
|
|
3102
|
+
"message": "Automatically compress, optimize, and convert your images into WebP by enabling the [`Image Optimization`](https://support.nitropack.io/hc/en-us/articles/14177271695121-How-to-serve-images-in-next-gen-formats-using-NitroPack) setting."
|
|
3103
|
+
},
|
|
3104
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-responsive-images": {
|
|
3105
|
+
"message": "Enable [`Adaptive Image Sizing`](https://support.nitropack.io/hc/en-us/articles/10123833029905-How-to-Enable-Adaptive-Image-Sizing-For-Your-Site) to preemptively optimize your images and make them match the dimensions of the containers they’re displayed in across all devices."
|
|
3106
|
+
},
|
|
3107
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-text-compression": {
|
|
3108
|
+
"message": "Use [`Gzip compression`](https://support.nitropack.io/hc/en-us/articles/13229297479313-Enabling-GZIP-compression) in NitroPack to reduce the size of the files that are sent to the browser."
|
|
3109
|
+
},
|
|
2984
3110
|
"node_modules/lighthouse-stack-packs/packs/nuxt.js | modern-image-formats": {
|
|
2985
3111
|
"message": "`nuxt/image` कॉम्पोनेंट का इस्तेमाल करें और `format=\"webp\"` सेट करें. [ज़्यादा जानें](https://image.nuxtjs.org/components/nuxt-img#format)."
|
|
2986
3112
|
},
|
|
@@ -3062,6 +3188,21 @@
|
|
|
3062
3188
|
"node_modules/lighthouse-stack-packs/packs/react.js | user-timings": {
|
|
3063
3189
|
"message": "React DevTools प्रोफ़ाइलर इस्तेमाल करें. यह आपके कॉम्पोनेंट की रेंडरिंग परफ़ॉर्मेंस मापने के लिए प्रोफ़ाइलर एपीआई का इस्तेमाल करता है. [ज़्यादा जानें](https://reactjs.org/blog/2018/09/10/introducing-the-react-profiler.html)."
|
|
3064
3190
|
},
|
|
3191
|
+
"node_modules/lighthouse-stack-packs/packs/wix.js | efficient-animated-content": {
|
|
3192
|
+
"message": "वीडियो को `VideoBoxes` में रखें, `Video Masks` का इस्तेमाल करके उन्हें पसंद के मुताबिक बनाएं या `Transparent Videos` जोड़ें. [ज़्यादा जानें](https://support.wix.com/en/article/wix-video-about-wix-video)."
|
|
3193
|
+
},
|
|
3194
|
+
"node_modules/lighthouse-stack-packs/packs/wix.js | modern-image-formats": {
|
|
3195
|
+
"message": "`Wix Media Manager` का इस्तेमाल करके इमेज अपलोड करें, ताकि यह पक्का किया जा सके कि उन्हें WebP के तौर पर अपने-आप दिखाया जाएगा. अपनी साइट की मीडिया फ़ाइलों को [ऑप्टिमाइज़ करने के और तरीके](https://support.wix.com/en/article/site-performance-optimizing-your-media) जानें."
|
|
3196
|
+
},
|
|
3197
|
+
"node_modules/lighthouse-stack-packs/packs/wix.js | render-blocking-resources": {
|
|
3198
|
+
"message": "अपनी साइट के डैशबोर्ड के `Custom Code` टैब में [तीसरे पक्ष का कोड जोड़ते समय](https://support.wix.com/en/article/site-performance-using-third-party-code-on-your-site), पक्का करें कि वह कोड बॉडी के आखिर में रखा या लोड हो. जहां भी हो सके, Wix के [इंटिग्रेशन](https://support.wix.com/en/article/about-marketing-integrations) का इस्तेमाल करके, अपनी साइट पर मार्केटिंग टूल जोड़ें. "
|
|
3199
|
+
},
|
|
3200
|
+
"node_modules/lighthouse-stack-packs/packs/wix.js | server-response-time": {
|
|
3201
|
+
"message": "Wix, ज़्यादातर लोगों को जल्द से जल्द जवाब देने के लिए, सीडीएन और कैश मेमोरी का इस्तेमाल करता है. अगर `Velo` का इस्तेमाल किया जा रहा है, तो अपनी साइट के लिए [मैन्युअल तरीके से कैश मेमोरी चालू करने](https://support.wix.com/en/article/site-performance-caching-pages-to-optimize-loading-speed) पर विचार करें."
|
|
3202
|
+
},
|
|
3203
|
+
"node_modules/lighthouse-stack-packs/packs/wix.js | unused-javascript": {
|
|
3204
|
+
"message": "अपनी साइट के डैशबोर्ड के `Custom Code` टैब में, अपनी साइट में जोड़े गए किसी भी तीसरे पक्ष के कोड की समीक्षा करें. इसके बाद, सिर्फ़ वही सेवाएं रखें जो आपकी साइट के लिए ज़रूरी हैं. [ज़्यादा जानें](https://support.wix.com/en/article/site-performance-removing-unused-javascript)."
|
|
3205
|
+
},
|
|
3065
3206
|
"node_modules/lighthouse-stack-packs/packs/wordpress.js | efficient-animated-content": {
|
|
3066
3207
|
"message": "किसी ऐसी सेवा में अपनी GIF अपलोड करें जो उसे HTML5 वीडियो में जोड़ने के लिए तैयार रख सके."
|
|
3067
3208
|
},
|
|
@@ -3167,6 +3308,9 @@
|
|
|
3167
3308
|
"report/renderer/report-utils.js | dropdownSaveJSON": {
|
|
3168
3309
|
"message": "JSON के रूप में सेव करें"
|
|
3169
3310
|
},
|
|
3311
|
+
"report/renderer/report-utils.js | dropdownViewUnthrottledTrace": {
|
|
3312
|
+
"message": "View Unthrottled Trace"
|
|
3313
|
+
},
|
|
3170
3314
|
"report/renderer/report-utils.js | dropdownViewer": {
|
|
3171
3315
|
"message": "व्यूअर में खोलें"
|
|
3172
3316
|
},
|
|
@@ -3287,9 +3431,6 @@
|
|
|
3287
3431
|
"report/renderer/report-utils.js | varianceDisclaimer": {
|
|
3288
3432
|
"message": "मान अनुमानित हैं और इनमें बदलाव हो सकता है. सीधे तौर पर इन मेट्रिक से [परफ़ॉर्मेंस स्कोर तय किए ](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) जाते हैं."
|
|
3289
3433
|
},
|
|
3290
|
-
"report/renderer/report-utils.js | viewOriginalTraceLabel": {
|
|
3291
|
-
"message": "मूल ट्रेस देखें"
|
|
3292
|
-
},
|
|
3293
3434
|
"report/renderer/report-utils.js | viewTraceLabel": {
|
|
3294
3435
|
"message": "ट्रेस देखें"
|
|
3295
3436
|
},
|