lighthouse 8.6.0 → 9.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/dist/report/bundle.esm.js +5994 -0
- package/dist/report/flow.js +30 -13
- package/dist/report/standalone.js +41 -35
- package/flow-report/.eslintrc.cjs +2 -0
- package/flow-report/assets/standalone-flow-template.html +3 -2
- package/flow-report/assets/styles.css +108 -31
- package/flow-report/src/app.tsx +18 -18
- 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 +9 -5
- package/flow-report/src/util.ts +33 -26
- package/flow-report/src/wrappers/category-score.tsx +0 -3
- package/flow-report/src/wrappers/markdown.tsx +27 -0
- package/flow-report/src/wrappers/report-renderer.tsx +10 -3
- package/flow-report/src/wrappers/report.tsx +27 -6
- package/flow-report/standalone-flow.tsx +4 -3
- 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 +1 -1
- package/flow-report/test/sidebar/sidebar-test.tsx +43 -1
- package/flow-report/test/summary/category-test.tsx +120 -24
- package/flow-report/test/summary/summary-test.tsx +1 -1
- package/flow-report/test/topbar-test.tsx +1 -0
- package/flow-report/test/util-test.tsx +32 -11
- package/flow-report/test/wrappers/category-score-test.tsx +87 -0
- package/flow-report/test/wrappers/markdown-test.tsx +29 -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/frontends/smokehouse-bin.js +0 -0
- 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 +5 -3
- 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/proto-preprocessor.js +14 -2
- 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 +360 -254
- 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 +32 -0
- package/report/renderer/category-renderer.js +59 -19
- 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 +91 -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 +48 -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 +10 -12
- package/report/test/renderer/report-renderer-test.js +23 -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 +23 -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 +75 -75
- package/shared/localization/locales/en-XA.json +72 -75
- package/shared/localization/locales/en-XL.json +75 -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 +2 -0
- package/third-party/download-content-shell/download-content-shell.js +2 -2
- package/third-party/download-content-shell/utils.js +0 -24
- 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/changelog.md +0 -5490
- 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/lighthouse-core/scripts/package.json +0 -4
- 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": "Discover performance opportunities to improve the experience for long-lived pages and single-page applications."
|
|
61
61
|
},
|
|
62
|
+
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
63
|
+
"message": "Highest impact"
|
|
64
|
+
},
|
|
65
|
+
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
|
|
66
|
+
"message": "{numInformative, plural,\n =1 {{numInformative} informative audit}\n other {{numInformative} informative audits}\n }"
|
|
67
|
+
},
|
|
62
68
|
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
63
69
|
"message": "ניידים"
|
|
64
70
|
},
|
|
@@ -71,6 +77,15 @@
|
|
|
71
77
|
"flow-report/src/i18n/ui-strings.js | navigationReport": {
|
|
72
78
|
"message": "דוח לגבי ניווט"
|
|
73
79
|
},
|
|
80
|
+
"flow-report/src/i18n/ui-strings.js | navigationReportCount": {
|
|
81
|
+
"message": "{numNavigation, plural,\n =1 {{numNavigation} navigation report}\n other {{numNavigation} navigation reports}\n }"
|
|
82
|
+
},
|
|
83
|
+
"flow-report/src/i18n/ui-strings.js | passableAuditCount": {
|
|
84
|
+
"message": "{numPassableAudits, plural,\n =1 {{numPassableAudits} passable audit}\n other {{numPassableAudits} passable audits}\n }"
|
|
85
|
+
},
|
|
86
|
+
"flow-report/src/i18n/ui-strings.js | passedAuditCount": {
|
|
87
|
+
"message": "{numPassed, plural,\n =1 {{numPassed} audit passed}\n other {{numPassed} audits passed}\n }"
|
|
88
|
+
},
|
|
74
89
|
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
75
90
|
"message": "ממוצעת"
|
|
76
91
|
},
|
|
@@ -95,6 +110,9 @@
|
|
|
95
110
|
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
|
|
96
111
|
"message": "דוח תמונת מצב"
|
|
97
112
|
},
|
|
113
|
+
"flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
|
|
114
|
+
"message": "{numSnapshot, plural,\n =1 {{numSnapshot} snapshot report}\n other {{numSnapshot} snapshot reports}\n }"
|
|
115
|
+
},
|
|
98
116
|
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
99
117
|
"message": "סיכום"
|
|
100
118
|
},
|
|
@@ -107,6 +125,9 @@
|
|
|
107
125
|
"flow-report/src/i18n/ui-strings.js | timespanReport": {
|
|
108
126
|
"message": "דוח על טווח זמן"
|
|
109
127
|
},
|
|
128
|
+
"flow-report/src/i18n/ui-strings.js | timespanReportCount": {
|
|
129
|
+
"message": "{numTimespan, plural,\n =1 {{numTimespan} timespan report}\n other {{numTimespan} timespan reports}\n }"
|
|
130
|
+
},
|
|
110
131
|
"flow-report/src/i18n/ui-strings.js | title": {
|
|
111
132
|
"message": "דוח Lighthouse על מסלולי משתמשים בדף"
|
|
112
133
|
},
|
|
@@ -743,18 +764,6 @@
|
|
|
743
764
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
765
|
"message": "אין רכיבי API שהוצאו משימוש"
|
|
745
766
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "Application Cache הוצא משימוש. [מידע נוסף](https://web.dev/appcache-manifest/)."
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "בשימוש: \"{AppCacheManifest}\""
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "נעשה שימוש ב-Application Cache"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "לא נעשה שימוש ב-Application Cache"
|
|
757
|
-
},
|
|
758
767
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
768
|
"message": "נדרשת הצהרה של קידוד תווים. ניתן להגדיר אותה באמצעות תג `<meta>` שממוקם ב-1,024 הבייטים הראשונים של ה-HTML או ברכיב ה-Content-Type בכותרת התגובה של ה-HTTP. [מידע נוסף](https://web.dev/charset/)."
|
|
760
769
|
},
|
|
@@ -812,21 +821,6 @@
|
|
|
812
821
|
"lighthouse-core/audits/dobetterweb/dom-size.js | title": {
|
|
813
822
|
"message": "נמנע מ-DOM גדול מדי"
|
|
814
823
|
},
|
|
815
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | columnFailingAnchors": {
|
|
816
|
-
"message": "עוגנים שנכשלו"
|
|
817
|
-
},
|
|
818
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | description": {
|
|
819
|
-
"message": "כדי לשפר את הביצועים ולמנוע פגיעויות המסכנות את האבטחה, יש להוסיף `rel=\"noopener\"` או `rel=\"noreferrer\"` לקישורים חיצוניים. [מידע נוסף](https://web.dev/external-anchors-use-rel-noopener/)."
|
|
820
|
-
},
|
|
821
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | failureTitle": {
|
|
822
|
-
"message": "הדף מכיל קישורים לא בטוחים ליעדים ממקורות שונים"
|
|
823
|
-
},
|
|
824
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | title": {
|
|
825
|
-
"message": "כל הקישורים ליעדים ממקורות שונים בטוחים לשימוש"
|
|
826
|
-
},
|
|
827
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | warning": {
|
|
828
|
-
"message": "לא ניתן לקבוע את יעד העוגן ({anchorHTML}). אם target=_blank לא משמש כהיפר-קישור, כדאי לשקול להסיר אותו."
|
|
829
|
-
},
|
|
830
824
|
"lighthouse-core/audits/dobetterweb/geolocation-on-start.js | description": {
|
|
831
825
|
"message": "אתרים שמבקשים לקבל גישה למיקום של המשתמשים, בלי לציין הקשר, מעוררים אצל המשתמשים תחושת בלבול או חשדנות. במקום זאת, כדאי לשקול לקשר את הבקשות לפעולה של המשתמשים. [מידע נוסף](https://web.dev/geolocation-on-start/)."
|
|
832
826
|
},
|
|
@@ -1277,15 +1271,6 @@
|
|
|
1277
1271
|
"lighthouse-core/audits/preload-lcp-image.js | title": {
|
|
1278
1272
|
"message": "טעינה מראש של תמונת ה-Largest Contentful Paint (LCP)"
|
|
1279
1273
|
},
|
|
1280
|
-
"lighthouse-core/audits/redirects-http.js | description": {
|
|
1281
|
-
"message": "אם כבר הגדרת HTTPS, יש לוודא שכל תנועת ה-HTTP מופנית אוטומטית ל-HTTPS כדי להפעיל תכונות רשת מאובטחות לכל המשתמשים שלך. [מידע נוסף](https://web.dev/redirects-http/)."
|
|
1282
|
-
},
|
|
1283
|
-
"lighthouse-core/audits/redirects-http.js | failureTitle": {
|
|
1284
|
-
"message": "לא מפנה תנועת HTTP באופן אוטומטי אל HTTPS"
|
|
1285
|
-
},
|
|
1286
|
-
"lighthouse-core/audits/redirects-http.js | title": {
|
|
1287
|
-
"message": "מפנה תנועת HTTP באופן אוטומטי אל HTTPS"
|
|
1288
|
-
},
|
|
1289
1274
|
"lighthouse-core/audits/redirects.js | description": {
|
|
1290
1275
|
"message": "הפניות אוטומטיות מעכבות את טעינת הדף. [מידע נוסף](https://web.dev/redirects/)."
|
|
1291
1276
|
},
|
|
@@ -1776,7 +1761,7 @@
|
|
|
1776
1761
|
"message": "בדיקות אלה נדרשות עבור שורת הבסיס [רשימת משימות של PWA](https://developers.google.com/web/progressive-web-apps/checklist), אך הן לא נבדקות באופן אוטומטי על ידי Lighthouse. הן לא משפיעות על הניקוד שלך, אך חשוב לאמת אותן באופן ידני."
|
|
1777
1762
|
},
|
|
1778
1763
|
"lighthouse-core/config/default-config.js | pwaCategoryTitle": {
|
|
1779
|
-
"message": "
|
|
1764
|
+
"message": "PWA"
|
|
1780
1765
|
},
|
|
1781
1766
|
"lighthouse-core/config/default-config.js | pwaInstallableGroupTitle": {
|
|
1782
1767
|
"message": "ניתן להתקנה"
|
|
@@ -1932,7 +1917,7 @@
|
|
|
1932
1917
|
"message": "גודל ההעברה"
|
|
1933
1918
|
},
|
|
1934
1919
|
"lighthouse-core/lib/i18n/i18n.js | columnURL": {
|
|
1935
|
-
"message": "כתובת
|
|
1920
|
+
"message": "כתובת אתר"
|
|
1936
1921
|
},
|
|
1937
1922
|
"lighthouse-core/lib/i18n/i18n.js | columnWastedBytes": {
|
|
1938
1923
|
"message": "פוטנציאל חיסכון"
|
|
@@ -2078,30 +2063,6 @@
|
|
|
2078
2063
|
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
2079
2064
|
"message": "נראה שכתובת ה-URL שסיפקת אינה חוקית."
|
|
2080
2065
|
},
|
|
2081
|
-
"lighthouse-treemap/app/src/util.js | allLabel": {
|
|
2082
|
-
"message": "הכול"
|
|
2083
|
-
},
|
|
2084
|
-
"lighthouse-treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2085
|
-
"message": "כל הסקריפטים"
|
|
2086
|
-
},
|
|
2087
|
-
"lighthouse-treemap/app/src/util.js | coverageColumnName": {
|
|
2088
|
-
"message": "כיסוי"
|
|
2089
|
-
},
|
|
2090
|
-
"lighthouse-treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2091
|
-
"message": "מודולים כפולים"
|
|
2092
|
-
},
|
|
2093
|
-
"lighthouse-treemap/app/src/util.js | resourceBytesLabel": {
|
|
2094
|
-
"message": "בייטים בשימוש המשאב"
|
|
2095
|
-
},
|
|
2096
|
-
"lighthouse-treemap/app/src/util.js | tableColumnName": {
|
|
2097
|
-
"message": "שם"
|
|
2098
|
-
},
|
|
2099
|
-
"lighthouse-treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2100
|
-
"message": "החלפת מצב התצוגה של הטבלה"
|
|
2101
|
-
},
|
|
2102
|
-
"lighthouse-treemap/app/src/util.js | unusedBytesLabel": {
|
|
2103
|
-
"message": "בייטים לא בשימוש"
|
|
2104
|
-
},
|
|
2105
2066
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
2106
2067
|
"message": "להצגת תוכן באנימציה, כשהתוכן לא מוצג במסך כדאי להשתמש ב-[`amp-anim`](https://amp.dev/documentation/components/amp-anim/) כדי לצמצם את השימוש ביחידת העיבוד המרכזית (CPU)."
|
|
2107
2068
|
},
|
|
@@ -2369,6 +2330,9 @@
|
|
|
2369
2330
|
"report/renderer/util.js | calculatorLink": {
|
|
2370
2331
|
"message": "להצגת המחשבון."
|
|
2371
2332
|
},
|
|
2333
|
+
"report/renderer/util.js | collapseView": {
|
|
2334
|
+
"message": "Collapse view"
|
|
2335
|
+
},
|
|
2372
2336
|
"report/renderer/util.js | crcInitialNavigation": {
|
|
2373
2337
|
"message": "ניווט התחלתי"
|
|
2374
2338
|
},
|
|
@@ -2405,9 +2369,15 @@
|
|
|
2405
2369
|
"report/renderer/util.js | errorMissingAuditInfo": {
|
|
2406
2370
|
"message": "שגיאה בדוח: אין מידע על הבדיקה"
|
|
2407
2371
|
},
|
|
2372
|
+
"report/renderer/util.js | expandView": {
|
|
2373
|
+
"message": "Expand view"
|
|
2374
|
+
},
|
|
2408
2375
|
"report/renderer/util.js | footerIssue": {
|
|
2409
2376
|
"message": "דיווח על בעיה"
|
|
2410
2377
|
},
|
|
2378
|
+
"report/renderer/util.js | hide": {
|
|
2379
|
+
"message": "Hide"
|
|
2380
|
+
},
|
|
2411
2381
|
"report/renderer/util.js | labDataTitle": {
|
|
2412
2382
|
"message": "נתוני בדיקה"
|
|
2413
2383
|
},
|
|
@@ -2429,6 +2399,12 @@
|
|
|
2429
2399
|
"report/renderer/util.js | passedAuditsGroupTitle": {
|
|
2430
2400
|
"message": "בדיקות עם ציון 'עובר'"
|
|
2431
2401
|
},
|
|
2402
|
+
"report/renderer/util.js | runtimeAnalysisWindow": {
|
|
2403
|
+
"message": "Initial page load"
|
|
2404
|
+
},
|
|
2405
|
+
"report/renderer/util.js | runtimeCustom": {
|
|
2406
|
+
"message": "Custom throttling"
|
|
2407
|
+
},
|
|
2432
2408
|
"report/renderer/util.js | runtimeDesktopEmulation": {
|
|
2433
2409
|
"message": "אמולציה של מחשב שולחני"
|
|
2434
2410
|
},
|
|
@@ -2447,33 +2423,30 @@
|
|
|
2447
2423
|
"report/renderer/util.js | runtimeSettingsCPUThrottling": {
|
|
2448
2424
|
"message": "ויסות נתונים (throttle) של יחידת עיבוד מרכזית (CPU)"
|
|
2449
2425
|
},
|
|
2450
|
-
"report/renderer/util.js | runtimeSettingsChannel": {
|
|
2451
|
-
"message": "ערוץ"
|
|
2452
|
-
},
|
|
2453
2426
|
"report/renderer/util.js | runtimeSettingsDevice": {
|
|
2454
2427
|
"message": "מכשיר"
|
|
2455
2428
|
},
|
|
2456
|
-
"report/renderer/util.js | runtimeSettingsFetchTime": {
|
|
2457
|
-
"message": "מועד האחזור"
|
|
2458
|
-
},
|
|
2459
2429
|
"report/renderer/util.js | runtimeSettingsNetworkThrottling": {
|
|
2460
2430
|
"message": "הגבלת רוחב פס"
|
|
2461
2431
|
},
|
|
2462
|
-
"report/renderer/util.js | runtimeSettingsTitle": {
|
|
2463
|
-
"message": "הגדרות זמן ריצה"
|
|
2464
|
-
},
|
|
2465
|
-
"report/renderer/util.js | runtimeSettingsUA": {
|
|
2466
|
-
"message": "סוכן משתמש (מארח)"
|
|
2467
|
-
},
|
|
2468
2432
|
"report/renderer/util.js | runtimeSettingsUANetwork": {
|
|
2469
2433
|
"message": "סוכן משתמש (רשת)"
|
|
2470
2434
|
},
|
|
2471
|
-
"report/renderer/util.js |
|
|
2472
|
-
"message": "
|
|
2435
|
+
"report/renderer/util.js | runtimeSingleLoad": {
|
|
2436
|
+
"message": "Single page load"
|
|
2437
|
+
},
|
|
2438
|
+
"report/renderer/util.js | runtimeSingleLoadTooltip": {
|
|
2439
|
+
"message": "This data is taken from a single page load, as opposed to field data summarizing many sessions."
|
|
2440
|
+
},
|
|
2441
|
+
"report/renderer/util.js | runtimeSlow4g": {
|
|
2442
|
+
"message": "Slow 4G throttling"
|
|
2473
2443
|
},
|
|
2474
2444
|
"report/renderer/util.js | runtimeUnknown": {
|
|
2475
2445
|
"message": "ערך לא ידוע"
|
|
2476
2446
|
},
|
|
2447
|
+
"report/renderer/util.js | show": {
|
|
2448
|
+
"message": "Show"
|
|
2449
|
+
},
|
|
2477
2450
|
"report/renderer/util.js | showRelevantAudits": {
|
|
2478
2451
|
"message": "הצגת הביקורות שרלוונטיות למדדים:"
|
|
2479
2452
|
},
|
|
@@ -2503,5 +2476,29 @@
|
|
|
2503
2476
|
},
|
|
2504
2477
|
"report/renderer/util.js | warningHeader": {
|
|
2505
2478
|
"message": "אזהרות: "
|
|
2479
|
+
},
|
|
2480
|
+
"treemap/app/src/util.js | allLabel": {
|
|
2481
|
+
"message": "הכול"
|
|
2482
|
+
},
|
|
2483
|
+
"treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2484
|
+
"message": "כל הסקריפטים"
|
|
2485
|
+
},
|
|
2486
|
+
"treemap/app/src/util.js | coverageColumnName": {
|
|
2487
|
+
"message": "כיסוי"
|
|
2488
|
+
},
|
|
2489
|
+
"treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2490
|
+
"message": "מודולים כפולים"
|
|
2491
|
+
},
|
|
2492
|
+
"treemap/app/src/util.js | resourceBytesLabel": {
|
|
2493
|
+
"message": "בייטים בשימוש המשאב"
|
|
2494
|
+
},
|
|
2495
|
+
"treemap/app/src/util.js | tableColumnName": {
|
|
2496
|
+
"message": "שם"
|
|
2497
|
+
},
|
|
2498
|
+
"treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2499
|
+
"message": "החלפת מצב התצוגה של הטבלה"
|
|
2500
|
+
},
|
|
2501
|
+
"treemap/app/src/util.js | unusedBytesLabel": {
|
|
2502
|
+
"message": "בייטים לא בשימוש"
|
|
2506
2503
|
}
|
|
2507
2504
|
}
|
|
@@ -59,6 +59,12 @@
|
|
|
59
59
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
|
|
60
60
|
"message": "Discover performance opportunities to improve the experience for long-lived pages and single-page applications."
|
|
61
61
|
},
|
|
62
|
+
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
63
|
+
"message": "सबसे असरदार ऑडिट"
|
|
64
|
+
},
|
|
65
|
+
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
|
|
66
|
+
"message": "{numInformative,plural, =1{जानकारी देने वाला {numInformative} ऑडिट}one{जानकारी देने वाला {numInformative} ऑडिट}other{जानकारी देने वाले {numInformative} ऑडिट}}"
|
|
67
|
+
},
|
|
62
68
|
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
63
69
|
"message": "मोबाइल"
|
|
64
70
|
},
|
|
@@ -71,6 +77,15 @@
|
|
|
71
77
|
"flow-report/src/i18n/ui-strings.js | navigationReport": {
|
|
72
78
|
"message": "नेविगेशन रिपोर्ट"
|
|
73
79
|
},
|
|
80
|
+
"flow-report/src/i18n/ui-strings.js | navigationReportCount": {
|
|
81
|
+
"message": "{numNavigation,plural, =1{{numNavigation} नेविगेशन रिपोर्ट}one{{numNavigation} नेविगेशन रिपोर्ट}other{{numNavigation} नेविगेशन रिपोर्ट}}"
|
|
82
|
+
},
|
|
83
|
+
"flow-report/src/i18n/ui-strings.js | passableAuditCount": {
|
|
84
|
+
"message": "{numPassableAudits,plural, =1{{numPassableAudits} पासेबल ऑडिट}one{{numPassableAudits} पासेबल ऑडिट}other{{numPassableAudits} पासेबल ऑडिट}}"
|
|
85
|
+
},
|
|
86
|
+
"flow-report/src/i18n/ui-strings.js | passedAuditCount": {
|
|
87
|
+
"message": "{numPassed,plural, =1{{numPassed} ऑडिट पास किया गया}one{{numPassed} ऑडिट पास किया गया}other{{numPassed} ऑडिट पास किए गए}}"
|
|
88
|
+
},
|
|
74
89
|
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
75
90
|
"message": "ठीक-ठाक"
|
|
76
91
|
},
|
|
@@ -95,6 +110,9 @@
|
|
|
95
110
|
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
|
|
96
111
|
"message": "किसी खास समय पर, वेब पेज की स्थिति बताने वाली रिपोर्ट"
|
|
97
112
|
},
|
|
113
|
+
"flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
|
|
114
|
+
"message": "{numSnapshot,plural, =1{{numSnapshot} स्नैपशॉट रिपोर्ट}one{{numSnapshot} स्नैपशॉट रिपोर्ट}other{{numSnapshot} स्नैपशॉट रिपोर्ट}}"
|
|
115
|
+
},
|
|
98
116
|
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
99
117
|
"message": "खास जानकारी"
|
|
100
118
|
},
|
|
@@ -107,6 +125,9 @@
|
|
|
107
125
|
"flow-report/src/i18n/ui-strings.js | timespanReport": {
|
|
108
126
|
"message": "पेज पर उपयोगकर्ता के इंटरैक्शन की जानकारी देने वाली रिपोर्ट"
|
|
109
127
|
},
|
|
128
|
+
"flow-report/src/i18n/ui-strings.js | timespanReportCount": {
|
|
129
|
+
"message": "{numTimespan,plural, =1{{numTimespan} टाइमस्पैन रिपोर्ट}one{{numTimespan} टाइमस्पैन रिपोर्ट}other{{numTimespan} टाइमस्पैन रिपोर्ट}}"
|
|
130
|
+
},
|
|
110
131
|
"flow-report/src/i18n/ui-strings.js | title": {
|
|
111
132
|
"message": "Lighthouse की यूज़र फ़्लो रिपोर्ट"
|
|
112
133
|
},
|
|
@@ -743,18 +764,6 @@
|
|
|
743
764
|
"lighthouse-core/audits/deprecations.js | title": {
|
|
744
765
|
"message": "रुके हुई एपीआई का इस्तेमाल नहीं किया जाता"
|
|
745
766
|
},
|
|
746
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
|
|
747
|
-
"message": "ऐप्लिकेशन की कैश मेमोरी अब काम नहीं करती. [ज़्यादा जानें](https://web.dev/appcache-manifest/)."
|
|
748
|
-
},
|
|
749
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
|
|
750
|
-
"message": "\"{AppCacheManifest}\" मिल गया"
|
|
751
|
-
},
|
|
752
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
|
|
753
|
-
"message": "ऐप्लिकेशन की कैश मेमोरी का इस्तेमाल किया जाता है"
|
|
754
|
-
},
|
|
755
|
-
"lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
|
|
756
|
-
"message": "ऐप्लिकेशन की कैश मेमोरी का इस्तेमाल नहीं किया जाता"
|
|
757
|
-
},
|
|
758
767
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
|
759
768
|
"message": "कैरेक्टर एन्कोडिंग को सेट करना ज़रूरी है. एचटीएमएल की पहली 1024 बाइट या कॉन्टेंट-टाइप एचटीटीपी रिस्पॉन्स हेडर में `<meta>` टैग की मदद से ऐसा किया जा सकता है. [ज़्यादा जानें](https://web.dev/charset/)."
|
|
760
769
|
},
|
|
@@ -812,21 +821,6 @@
|
|
|
812
821
|
"lighthouse-core/audits/dobetterweb/dom-size.js | title": {
|
|
813
822
|
"message": "बहुत ज़्यादा बड़े DOM आकार से बचता है"
|
|
814
823
|
},
|
|
815
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | columnFailingAnchors": {
|
|
816
|
-
"message": "फ़ेल होने वाले एंकर"
|
|
817
|
-
},
|
|
818
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | description": {
|
|
819
|
-
"message": "किसी बाहरी लिंक में `rel=\"noopener\"` या `rel=\"noreferrer\"` जोड़कर परफ़ॉर्मेंस बेहतर करें और सुरक्षा जोखिमों से बचें. [ज़्यादा जानें](https://web.dev/external-anchors-use-rel-noopener/)."
|
|
820
|
-
},
|
|
821
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | failureTitle": {
|
|
822
|
-
"message": "जिन जगहों पर दो डोमेन से होकर जाना होता है वे सुरक्षित नहीं हैं"
|
|
823
|
-
},
|
|
824
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | title": {
|
|
825
|
-
"message": "जिन जगहों पर दो डोमेन से होकर जाना होता है वे सुरक्षित हैं"
|
|
826
|
-
},
|
|
827
|
-
"lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | warning": {
|
|
828
|
-
"message": "एंकर ({anchorHTML}) के भेजे जाने की जगह नहीं पता की जा सकी. अगर target=_blank का इस्तेमाल हाइपरलिंक की तरह नहीं हो रहा, तो इसे हटा दें."
|
|
829
|
-
},
|
|
830
824
|
"lighthouse-core/audits/dobetterweb/geolocation-on-start.js | description": {
|
|
831
825
|
"message": "उपयोगकर्ता ऐसी साइटों पर भरोसा नहीं करते या उनकी वजह से उलझन में रहते हैं जो बिना किसी संदर्भ के उनकी जगह की जानकारी पता करने का अनुरोध करती हैं. इसके बजाय, उपयोगकर्ता के जेस्चर के हिसाब से अनुरोध करें. [ज़्यादा जानें](https://web.dev/geolocation-on-start/)."
|
|
832
826
|
},
|
|
@@ -1277,15 +1271,6 @@
|
|
|
1277
1271
|
"lighthouse-core/audits/preload-lcp-image.js | title": {
|
|
1278
1272
|
"message": "सबसे बड़े कॉन्टेंटफ़ुल पेंट वाली इमेज को पहले से लोड करें"
|
|
1279
1273
|
},
|
|
1280
|
-
"lighthouse-core/audits/redirects-http.js | description": {
|
|
1281
|
-
"message": "अगर आप एचटीटीपीएस पहले ही सेट अप कर चुके हैं, तो पक्का करें कि अपने सभी उपयोगकर्ताओं के लिए सुरक्षित वेब फ़ीचर चालू करने के मकसद से आप सभी एचटीटीपी ट्रैफ़िक को एचटीटीपीएस पर रीडायरेक्ट करें. [ज़्यादा जानें](https://web.dev/redirects-http/)."
|
|
1282
|
-
},
|
|
1283
|
-
"lighthouse-core/audits/redirects-http.js | failureTitle": {
|
|
1284
|
-
"message": "वेब पेज, एचटीटीपी ट्रैफ़िक को एचटीटीपीएस पर रीडायरेक्ट नहीं करता है"
|
|
1285
|
-
},
|
|
1286
|
-
"lighthouse-core/audits/redirects-http.js | title": {
|
|
1287
|
-
"message": "वेब पेज, एचटीटीपी ट्रैफ़िक को एचटीटीपीएस पर रीडायरेक्ट करता है"
|
|
1288
|
-
},
|
|
1289
1274
|
"lighthouse-core/audits/redirects.js | description": {
|
|
1290
1275
|
"message": "रीडायरेक्ट की वजह से पेज के लोड होने से लगने वाला समय और बढ़ जाता है. [ज़्यादा जानें](https://web.dev/redirects/)."
|
|
1291
1276
|
},
|
|
@@ -1776,7 +1761,7 @@
|
|
|
1776
1761
|
"message": "इस तरह की जांच, बेसलाइन [PWA चेकलिस्ट](https://developers.google.com/web/progressive-web-apps/checklist) के लिए ज़रूरी हैं, लेकिन Lighthouse इनकी जांच अपने आप नहीं करता है. वे आपके स्कोर पर असर नहीं डालते हैं, लेकिन इनकी मैन्युअल तरीके से पुष्टि करना ज़रूरी है."
|
|
1777
1762
|
},
|
|
1778
1763
|
"lighthouse-core/config/default-config.js | pwaCategoryTitle": {
|
|
1779
|
-
"message": "
|
|
1764
|
+
"message": "PWA"
|
|
1780
1765
|
},
|
|
1781
1766
|
"lighthouse-core/config/default-config.js | pwaInstallableGroupTitle": {
|
|
1782
1767
|
"message": "इंस्टॉल किया जा सकता है"
|
|
@@ -2078,30 +2063,6 @@
|
|
|
2078
2063
|
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
2079
2064
|
"message": "आपका दिया हुआ यूआरएल गलत लगता है."
|
|
2080
2065
|
},
|
|
2081
|
-
"lighthouse-treemap/app/src/util.js | allLabel": {
|
|
2082
|
-
"message": "सभी"
|
|
2083
|
-
},
|
|
2084
|
-
"lighthouse-treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2085
|
-
"message": "सभी स्क्रिप्ट"
|
|
2086
|
-
},
|
|
2087
|
-
"lighthouse-treemap/app/src/util.js | coverageColumnName": {
|
|
2088
|
-
"message": "कवरेज"
|
|
2089
|
-
},
|
|
2090
|
-
"lighthouse-treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2091
|
-
"message": "डुप्लीकेट मॉड्यूल"
|
|
2092
|
-
},
|
|
2093
|
-
"lighthouse-treemap/app/src/util.js | resourceBytesLabel": {
|
|
2094
|
-
"message": "फ़ाइल का साइज़ (बाइट में)"
|
|
2095
|
-
},
|
|
2096
|
-
"lighthouse-treemap/app/src/util.js | tableColumnName": {
|
|
2097
|
-
"message": "नाम"
|
|
2098
|
-
},
|
|
2099
|
-
"lighthouse-treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2100
|
-
"message": "टेबल को टॉगल करें"
|
|
2101
|
-
},
|
|
2102
|
-
"lighthouse-treemap/app/src/util.js | unusedBytesLabel": {
|
|
2103
|
-
"message": "इस्तेमाल न की गई बाइट की संख्या"
|
|
2104
|
-
},
|
|
2105
2066
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
2106
2067
|
"message": "ऐनिमेशन वाले कॉन्टेंट के लिए, [`amp-anim`](https://amp.dev/documentation/components/amp-anim/) का इस्तेमाल करें. इससे, कॉन्टेंट के ऑफ़स्क्रीन होने पर सीपीयू का इस्तेमाल कम होगा."
|
|
2107
2068
|
},
|
|
@@ -2369,6 +2330,9 @@
|
|
|
2369
2330
|
"report/renderer/util.js | calculatorLink": {
|
|
2370
2331
|
"message": "कैलकुलेटर देखें."
|
|
2371
2332
|
},
|
|
2333
|
+
"report/renderer/util.js | collapseView": {
|
|
2334
|
+
"message": "व्यू को छोटा करें"
|
|
2335
|
+
},
|
|
2372
2336
|
"report/renderer/util.js | crcInitialNavigation": {
|
|
2373
2337
|
"message": "शुरुआती नेविगेशन"
|
|
2374
2338
|
},
|
|
@@ -2405,9 +2369,15 @@
|
|
|
2405
2369
|
"report/renderer/util.js | errorMissingAuditInfo": {
|
|
2406
2370
|
"message": "गड़बड़ी की रिपोर्ट करें: कोई ऑडिट जानकारी नहीं"
|
|
2407
2371
|
},
|
|
2372
|
+
"report/renderer/util.js | expandView": {
|
|
2373
|
+
"message": "व्यू को बड़ा करें"
|
|
2374
|
+
},
|
|
2408
2375
|
"report/renderer/util.js | footerIssue": {
|
|
2409
2376
|
"message": "समस्या की रिपोर्ट करें"
|
|
2410
2377
|
},
|
|
2378
|
+
"report/renderer/util.js | hide": {
|
|
2379
|
+
"message": "छिपाएं"
|
|
2380
|
+
},
|
|
2411
2381
|
"report/renderer/util.js | labDataTitle": {
|
|
2412
2382
|
"message": "किसी नई या दुबारा जाँची जाने वाली ऐप्लिकेशन के लिए तैयार किया गया डेटा"
|
|
2413
2383
|
},
|
|
@@ -2429,6 +2399,12 @@
|
|
|
2429
2399
|
"report/renderer/util.js | passedAuditsGroupTitle": {
|
|
2430
2400
|
"message": "पास हुए ऑडिट"
|
|
2431
2401
|
},
|
|
2402
|
+
"report/renderer/util.js | runtimeAnalysisWindow": {
|
|
2403
|
+
"message": "शुरुआती पेज लोड"
|
|
2404
|
+
},
|
|
2405
|
+
"report/renderer/util.js | runtimeCustom": {
|
|
2406
|
+
"message": "कस्टम थ्रॉटलिंग"
|
|
2407
|
+
},
|
|
2432
2408
|
"report/renderer/util.js | runtimeDesktopEmulation": {
|
|
2433
2409
|
"message": "एम्युलेट किया गया डेस्कटॉप"
|
|
2434
2410
|
},
|
|
@@ -2447,33 +2423,30 @@
|
|
|
2447
2423
|
"report/renderer/util.js | runtimeSettingsCPUThrottling": {
|
|
2448
2424
|
"message": "सीपीयू थ्रॉटलिंग"
|
|
2449
2425
|
},
|
|
2450
|
-
"report/renderer/util.js | runtimeSettingsChannel": {
|
|
2451
|
-
"message": "चैनल"
|
|
2452
|
-
},
|
|
2453
2426
|
"report/renderer/util.js | runtimeSettingsDevice": {
|
|
2454
2427
|
"message": "डिवाइस"
|
|
2455
2428
|
},
|
|
2456
|
-
"report/renderer/util.js | runtimeSettingsFetchTime": {
|
|
2457
|
-
"message": "Lighthouse के चलाए जाने का समय"
|
|
2458
|
-
},
|
|
2459
2429
|
"report/renderer/util.js | runtimeSettingsNetworkThrottling": {
|
|
2460
2430
|
"message": "नेटवर्क थ्रॉटलिंग"
|
|
2461
2431
|
},
|
|
2462
|
-
"report/renderer/util.js | runtimeSettingsTitle": {
|
|
2463
|
-
"message": "रनटाइम सेटिंग"
|
|
2464
|
-
},
|
|
2465
|
-
"report/renderer/util.js | runtimeSettingsUA": {
|
|
2466
|
-
"message": "उपयोगकर्ता एजेंट (होस्ट)"
|
|
2467
|
-
},
|
|
2468
2432
|
"report/renderer/util.js | runtimeSettingsUANetwork": {
|
|
2469
2433
|
"message": "उपयोगकर्ता एजेंट (नेटवर्क)"
|
|
2470
2434
|
},
|
|
2471
|
-
"report/renderer/util.js |
|
|
2472
|
-
"message": "
|
|
2435
|
+
"report/renderer/util.js | runtimeSingleLoad": {
|
|
2436
|
+
"message": "एक पेज लोड"
|
|
2437
|
+
},
|
|
2438
|
+
"report/renderer/util.js | runtimeSingleLoadTooltip": {
|
|
2439
|
+
"message": "यह डेटा, कई सेशन के बारे में जानकारी देने वाले फ़ील्ड डेटा के बजाय, लोड हुए एक पेज से लिया गया है."
|
|
2440
|
+
},
|
|
2441
|
+
"report/renderer/util.js | runtimeSlow4g": {
|
|
2442
|
+
"message": "धीमी 4G थ्रॉटलिंग"
|
|
2473
2443
|
},
|
|
2474
2444
|
"report/renderer/util.js | runtimeUnknown": {
|
|
2475
2445
|
"message": "अज्ञात"
|
|
2476
2446
|
},
|
|
2447
|
+
"report/renderer/util.js | show": {
|
|
2448
|
+
"message": "दिखाएं"
|
|
2449
|
+
},
|
|
2477
2450
|
"report/renderer/util.js | showRelevantAudits": {
|
|
2478
2451
|
"message": "वे ऑडिट दिखाएं जो इनके लिए काम के हों:"
|
|
2479
2452
|
},
|
|
@@ -2503,5 +2476,29 @@
|
|
|
2503
2476
|
},
|
|
2504
2477
|
"report/renderer/util.js | warningHeader": {
|
|
2505
2478
|
"message": "चेतावनियां: "
|
|
2479
|
+
},
|
|
2480
|
+
"treemap/app/src/util.js | allLabel": {
|
|
2481
|
+
"message": "सभी"
|
|
2482
|
+
},
|
|
2483
|
+
"treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2484
|
+
"message": "सभी स्क्रिप्ट"
|
|
2485
|
+
},
|
|
2486
|
+
"treemap/app/src/util.js | coverageColumnName": {
|
|
2487
|
+
"message": "कवरेज"
|
|
2488
|
+
},
|
|
2489
|
+
"treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2490
|
+
"message": "डुप्लीकेट मॉड्यूल"
|
|
2491
|
+
},
|
|
2492
|
+
"treemap/app/src/util.js | resourceBytesLabel": {
|
|
2493
|
+
"message": "फ़ाइल का साइज़ (बाइट में)"
|
|
2494
|
+
},
|
|
2495
|
+
"treemap/app/src/util.js | tableColumnName": {
|
|
2496
|
+
"message": "नाम"
|
|
2497
|
+
},
|
|
2498
|
+
"treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2499
|
+
"message": "टेबल को टॉगल करें"
|
|
2500
|
+
},
|
|
2501
|
+
"treemap/app/src/util.js | unusedBytesLabel": {
|
|
2502
|
+
"message": "इस्तेमाल न की गई बाइट की संख्या"
|
|
2506
2503
|
}
|
|
2507
2504
|
}
|