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.
Files changed (209) hide show
  1. package/dist/report/bundle.esm.js +5994 -0
  2. package/dist/report/flow.js +30 -13
  3. package/dist/report/standalone.js +41 -35
  4. package/flow-report/.eslintrc.cjs +2 -0
  5. package/flow-report/assets/standalone-flow-template.html +3 -2
  6. package/flow-report/assets/styles.css +108 -31
  7. package/flow-report/src/app.tsx +18 -18
  8. package/flow-report/src/common.tsx +28 -15
  9. package/flow-report/src/header.tsx +12 -13
  10. package/flow-report/src/help-dialog.tsx +3 -4
  11. package/flow-report/src/i18n/i18n.tsx +57 -16
  12. package/flow-report/src/i18n/ui-strings.js +50 -0
  13. package/flow-report/src/icons.tsx +36 -8
  14. package/flow-report/src/sidebar/flow.tsx +3 -3
  15. package/flow-report/src/sidebar/sidebar.tsx +35 -14
  16. package/flow-report/src/summary/category.tsx +97 -24
  17. package/flow-report/src/summary/summary.tsx +21 -14
  18. package/flow-report/src/topbar.tsx +9 -5
  19. package/flow-report/src/util.ts +33 -26
  20. package/flow-report/src/wrappers/category-score.tsx +0 -3
  21. package/flow-report/src/wrappers/markdown.tsx +27 -0
  22. package/flow-report/src/wrappers/report-renderer.tsx +10 -3
  23. package/flow-report/src/wrappers/report.tsx +27 -6
  24. package/flow-report/standalone-flow.tsx +4 -3
  25. package/flow-report/test/common-test.tsx +32 -17
  26. package/flow-report/test/flow-report-pptr-test.ts +46 -0
  27. package/flow-report/test/header-test.tsx +6 -6
  28. package/flow-report/test/setup/env-setup.ts +1 -1
  29. package/flow-report/test/sidebar/sidebar-test.tsx +43 -1
  30. package/flow-report/test/summary/category-test.tsx +120 -24
  31. package/flow-report/test/summary/summary-test.tsx +1 -1
  32. package/flow-report/test/topbar-test.tsx +1 -0
  33. package/flow-report/test/util-test.tsx +32 -11
  34. package/flow-report/test/wrappers/category-score-test.tsx +87 -0
  35. package/flow-report/test/wrappers/markdown-test.tsx +29 -0
  36. package/flow-report/tsconfig.json +1 -0
  37. package/jest.config.js +4 -2
  38. package/lighthouse-cli/.eslintrc.cjs +2 -0
  39. package/lighthouse-cli/cli-flags.js +1 -1
  40. package/lighthouse-cli/run.js +1 -1
  41. package/lighthouse-cli/test/smokehouse/frontends/smokehouse-bin.js +0 -0
  42. package/lighthouse-cli/test/smokehouse/lighthouse-runners/bundle.js +4 -2
  43. package/lighthouse-cli/test/smokehouse/lighthouse-runners/cli.js +1 -1
  44. package/lighthouse-cli/test/smokehouse/smokehouse.js +1 -1
  45. package/lighthouse-core/audits/accessibility/axe-audit.js +7 -1
  46. package/lighthouse-core/audits/audit.js +1 -1
  47. package/lighthouse-core/audits/byte-efficiency/byte-efficiency-audit.js +2 -0
  48. package/lighthouse-core/audits/byte-efficiency/modern-image-formats.js +4 -2
  49. package/lighthouse-core/audits/byte-efficiency/offscreen-images.js +11 -10
  50. package/lighthouse-core/audits/byte-efficiency/uses-optimized-images.js +5 -3
  51. package/lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js +2 -1
  52. package/lighthouse-core/audits/byte-efficiency/uses-responsive-images.js +2 -1
  53. package/lighthouse-core/audits/deprecations.js +33 -11
  54. package/lighthouse-core/audits/dobetterweb/uses-http2.js +27 -11
  55. package/lighthouse-core/audits/errors-in-console.js +0 -2
  56. package/lighthouse-core/audits/image-aspect-ratio.js +5 -5
  57. package/lighthouse-core/audits/image-size-responsive.js +6 -6
  58. package/lighthouse-core/audits/installable-manifest.js +5 -3
  59. package/lighthouse-core/audits/preload-lcp-image.js +7 -5
  60. package/lighthouse-core/audits/script-treemap-data.js +1 -1
  61. package/lighthouse-core/audits/unsized-images.js +2 -3
  62. package/lighthouse-core/computed/image-records.js +4 -3
  63. package/lighthouse-core/computed/metrics/lantern-total-blocking-time.js +3 -4
  64. package/lighthouse-core/computed/metrics/tbt-utils.js +57 -0
  65. package/lighthouse-core/computed/metrics/total-blocking-time.js +3 -53
  66. package/lighthouse-core/computed/resource-summary.js +1 -1
  67. package/lighthouse-core/config/config-helpers.js +21 -10
  68. package/lighthouse-core/config/constants.js +3 -4
  69. package/lighthouse-core/config/default-config.js +61 -71
  70. package/lighthouse-core/fraggle-rock/config/config.js +1 -1
  71. package/lighthouse-core/fraggle-rock/config/default-config.js +4 -5
  72. package/lighthouse-core/fraggle-rock/gather/base-gatherer.js +6 -1
  73. package/lighthouse-core/fraggle-rock/gather/session.js +3 -4
  74. package/lighthouse-core/gather/connections/cri.js +1 -1
  75. package/lighthouse-core/gather/driver/storage.js +0 -1
  76. package/lighthouse-core/gather/driver.js +3 -7
  77. package/lighthouse-core/gather/fetcher.js +4 -7
  78. package/lighthouse-core/gather/gather-runner.js +29 -6
  79. package/lighthouse-core/gather/gatherers/accessibility.js +27 -0
  80. package/lighthouse-core/gather/gatherers/dobetterweb/response-compression.js +1 -0
  81. package/lighthouse-core/gather/gatherers/image-elements.js +0 -3
  82. package/lighthouse-core/gather/gatherers/inspector-issues.js +5 -0
  83. package/lighthouse-core/lib/asset-saver.js +7 -4
  84. package/lighthouse-core/lib/emulation.js +45 -1
  85. package/lighthouse-core/lib/i18n/i18n.js +19 -8
  86. package/lighthouse-core/lib/lh-env.js +2 -0
  87. package/lighthouse-core/lib/proto-preprocessor.js +14 -2
  88. package/lighthouse-core/lib/tappable-rects.js +8 -15
  89. package/lighthouse-core/lib/url-shim.js +1 -1
  90. package/lighthouse-core/runner.js +1 -1
  91. package/lighthouse-core/util-commonjs.js +65 -46
  92. package/package.json +27 -17
  93. package/readme.md +3 -3
  94. package/report/.eslintrc.cjs +2 -0
  95. package/report/README.md +1 -1
  96. package/report/assets/standalone-template.html +2 -3
  97. package/report/assets/styles.css +360 -254
  98. package/report/assets/templates.html +21 -76
  99. package/report/clients/bundle.js +1 -0
  100. package/report/clients/standalone.js +6 -15
  101. package/report/generator/README.md +1 -1
  102. package/report/renderer/api.js +32 -0
  103. package/report/renderer/category-renderer.js +59 -19
  104. package/report/renderer/components.js +59 -110
  105. package/report/renderer/crc-details-renderer.js +15 -12
  106. package/report/renderer/dom.js +16 -1
  107. package/report/renderer/drop-down-menu.js +2 -2
  108. package/report/renderer/element-screenshot-renderer.js +8 -8
  109. package/report/renderer/features-util.js +1 -1
  110. package/report/renderer/open-tab.js +9 -3
  111. package/report/renderer/performance-category-renderer.js +55 -34
  112. package/report/renderer/pwa-category-renderer.js +0 -10
  113. package/report/renderer/report-renderer.js +91 -44
  114. package/report/renderer/report-ui-features.js +36 -33
  115. package/report/renderer/swap-locale-feature.js +3 -3
  116. package/report/renderer/topbar-features.js +53 -48
  117. package/report/renderer/util.js +66 -46
  118. package/report/test/clients/bundle-test.js +70 -0
  119. package/report/test/renderer/category-renderer-test.js +48 -3
  120. package/report/test/renderer/i18n-test.js +0 -7
  121. package/report/test/renderer/performance-category-renderer-test.js +51 -14
  122. package/report/test/renderer/pwa-category-renderer-test.js +6 -6
  123. package/report/test/renderer/report-renderer-axe-test.js +10 -12
  124. package/report/test/renderer/report-renderer-test.js +23 -22
  125. package/report/test/renderer/report-ui-features-test.js +20 -10
  126. package/report/test/renderer/text-encoding-test.js +1 -1
  127. package/report/test/renderer/util-test.js +35 -31
  128. package/report/test-assets/faux-psi-template.html +3 -11
  129. package/report/test-assets/faux-psi.js +26 -22
  130. package/report/types/html-renderer.d.ts +2 -0
  131. package/report/types/report-renderer.d.ts +23 -0
  132. package/shared/localization/format.js +64 -30
  133. package/shared/localization/locales/ar-XB.json +72 -75
  134. package/shared/localization/locales/ar.json +72 -75
  135. package/shared/localization/locales/bg.json +72 -75
  136. package/shared/localization/locales/ca.json +72 -75
  137. package/shared/localization/locales/cs.json +89 -92
  138. package/shared/localization/locales/da.json +72 -75
  139. package/shared/localization/locales/de.json +89 -92
  140. package/shared/localization/locales/el.json +72 -75
  141. package/shared/localization/locales/en-GB.json +72 -75
  142. package/shared/localization/locales/en-US.json +75 -75
  143. package/shared/localization/locales/en-XA.json +72 -75
  144. package/shared/localization/locales/en-XL.json +75 -75
  145. package/shared/localization/locales/es-419.json +90 -93
  146. package/shared/localization/locales/es.json +90 -93
  147. package/shared/localization/locales/fi.json +72 -75
  148. package/shared/localization/locales/fil.json +72 -75
  149. package/shared/localization/locales/fr.json +89 -92
  150. package/shared/localization/locales/he.json +73 -76
  151. package/shared/localization/locales/hi.json +72 -75
  152. package/shared/localization/locales/hr.json +72 -75
  153. package/shared/localization/locales/hu.json +89 -92
  154. package/shared/localization/locales/id.json +89 -92
  155. package/shared/localization/locales/it.json +89 -92
  156. package/shared/localization/locales/ja.json +89 -92
  157. package/shared/localization/locales/ko.json +89 -92
  158. package/shared/localization/locales/lt.json +89 -92
  159. package/shared/localization/locales/lv.json +95 -98
  160. package/shared/localization/locales/nl.json +89 -92
  161. package/shared/localization/locales/no.json +72 -75
  162. package/shared/localization/locales/pl.json +72 -75
  163. package/shared/localization/locales/pt-PT.json +72 -75
  164. package/shared/localization/locales/pt.json +89 -92
  165. package/shared/localization/locales/ro.json +90 -93
  166. package/shared/localization/locales/ru.json +89 -92
  167. package/shared/localization/locales/sk.json +89 -92
  168. package/shared/localization/locales/sl.json +89 -92
  169. package/shared/localization/locales/sr-Latn.json +89 -92
  170. package/shared/localization/locales/sr.json +89 -92
  171. package/shared/localization/locales/sv.json +72 -75
  172. package/shared/localization/locales/ta.json +89 -92
  173. package/shared/localization/locales/te.json +89 -92
  174. package/shared/localization/locales/th.json +89 -92
  175. package/shared/localization/locales/tr.json +89 -92
  176. package/shared/localization/locales/uk.json +92 -95
  177. package/shared/localization/locales/vi.json +89 -92
  178. package/shared/localization/locales/zh-HK.json +89 -92
  179. package/shared/localization/locales/zh-TW.json +89 -92
  180. package/shared/localization/locales/zh.json +89 -92
  181. package/shared/localization/locales.js +6 -0
  182. package/shared/test/localization/format-test.js +45 -9
  183. package/shared/test/localization/swap-locale-test.js +0 -12
  184. package/third-party/chromium-synchronization/inspector-issueAdded-types-test.js +19 -11
  185. package/third-party/chromium-synchronization/installability-errors-test.js +2 -0
  186. package/third-party/download-content-shell/download-content-shell.js +2 -2
  187. package/third-party/download-content-shell/utils.js +0 -24
  188. package/tsconfig-all.json +2 -2
  189. package/tsconfig.json +0 -1
  190. package/types/artifacts.d.ts +7 -7
  191. package/types/enquirer.d.ts +3 -1
  192. package/types/lhr/audit-details.d.ts +6 -5
  193. package/types/lhr/flow.d.ts +3 -2
  194. package/types/lhr/lhr.d.ts +1 -1
  195. package/types/node.d.ts +5 -5
  196. package/types/rollup-plugin-postprocess.d.ts +10 -0
  197. package/changelog.md +0 -5490
  198. package/lighthouse-core/audits/dobetterweb/appcache-manifest.js +0 -67
  199. package/lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js +0 -96
  200. package/lighthouse-core/audits/redirects-http.js +0 -59
  201. package/lighthouse-core/gather/gatherers/dobetterweb/appcache.js +0 -34
  202. package/lighthouse-core/gather/gatherers/http-redirect.js +0 -46
  203. package/lighthouse-core/lib/i18n/locales/en-US.ctc.json +0 -6699
  204. package/lighthouse-core/lib/i18n/locales/en-XL.ctc.json +0 -6672
  205. package/lighthouse-core/scripts/package.json +0 -4
  206. package/report/clients/psi.js +0 -158
  207. package/report/test/clients/psi-test.js +0 -143
  208. package/shared/localization/locales/en-US.ctc.json +0 -6877
  209. 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, =1{{numInformative} ‏‮informative‬‏ ‏‮audit‬‏}zero{{numInformative} ‏‮informative‬‏ ‏‮audits‬‏}two{{numInformative} ‏‮informative‬‏ ‏‮audits‬‏}few{{numInformative} ‏‮informative‬‏ ‏‮audits‬‏}many{{numInformative} ‏‮informative‬‏ ‏‮audits‬‏}other{{numInformative} ‏‮informative‬‏ ‏‮audits‬‏}}"
67
+ },
62
68
  "flow-report/src/i18n/ui-strings.js | mobile": {
63
69
  "message": "‏‮Mobile‬‏"
64
70
  },
@@ -71,6 +77,15 @@
71
77
  "flow-report/src/i18n/ui-strings.js | navigationReport": {
72
78
  "message": "‏‮Navigation‬‏ ‏‮report‬‏"
73
79
  },
80
+ "flow-report/src/i18n/ui-strings.js | navigationReportCount": {
81
+ "message": "{numNavigation,plural, =1{{numNavigation} ‏‮navigation‬‏ ‏‮report‬‏}zero{{numNavigation} ‏‮navigation‬‏ ‏‮reports‬‏}two{{numNavigation} ‏‮navigation‬‏ ‏‮reports‬‏}few{{numNavigation} ‏‮navigation‬‏ ‏‮reports‬‏}many{{numNavigation} ‏‮navigation‬‏ ‏‮reports‬‏}other{{numNavigation} ‏‮navigation‬‏ ‏‮reports‬‏}}"
82
+ },
83
+ "flow-report/src/i18n/ui-strings.js | passableAuditCount": {
84
+ "message": "{numPassableAudits,plural, =1{{numPassableAudits} ‏‮passable‬‏ ‏‮audit‬‏}zero{{numPassableAudits} ‏‮passable‬‏ ‏‮audits‬‏}two{{numPassableAudits} ‏‮passable‬‏ ‏‮audits‬‏}few{{numPassableAudits} ‏‮passable‬‏ ‏‮audits‬‏}many{{numPassableAudits} ‏‮passable‬‏ ‏‮audits‬‏}other{{numPassableAudits} ‏‮passable‬‏ ‏‮audits‬‏}}"
85
+ },
86
+ "flow-report/src/i18n/ui-strings.js | passedAuditCount": {
87
+ "message": "{numPassed,plural, =1{{numPassed} ‏‮audit‬‏ ‏‮passed‬‏}zero{{numPassed} ‏‮audits‬‏ ‏‮passed‬‏}two{{numPassed} ‏‮audits‬‏ ‏‮passed‬‏}few{{numPassed} ‏‮audits‬‏ ‏‮passed‬‏}many{{numPassed} ‏‮audits‬‏ ‏‮passed‬‏}other{{numPassed} ‏‮audits‬‏ ‏‮passed‬‏}}"
88
+ },
74
89
  "flow-report/src/i18n/ui-strings.js | ratingAverage": {
75
90
  "message": "‏‮Average‬‏"
76
91
  },
@@ -95,6 +110,9 @@
95
110
  "flow-report/src/i18n/ui-strings.js | snapshotReport": {
96
111
  "message": "‏‮Snapshot‬‏ ‏‮report‬‏"
97
112
  },
113
+ "flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
114
+ "message": "{numSnapshot,plural, =1{{numSnapshot} ‏‮snapshot‬‏ ‏‮report‬‏}zero{{numSnapshot} ‏‮snapshot‬‏ ‏‮reports‬‏}two{{numSnapshot} ‏‮snapshot‬‏ ‏‮reports‬‏}few{{numSnapshot} ‏‮snapshot‬‏ ‏‮reports‬‏}many{{numSnapshot} ‏‮snapshot‬‏ ‏‮reports‬‏}other{{numSnapshot} ‏‮snapshot‬‏ ‏‮reports‬‏}}"
115
+ },
98
116
  "flow-report/src/i18n/ui-strings.js | summary": {
99
117
  "message": "‏‮Summary‬‏"
100
118
  },
@@ -107,6 +125,9 @@
107
125
  "flow-report/src/i18n/ui-strings.js | timespanReport": {
108
126
  "message": "‏‮Timespan‬‏ ‏‮report‬‏"
109
127
  },
128
+ "flow-report/src/i18n/ui-strings.js | timespanReportCount": {
129
+ "message": "{numTimespan,plural, =1{{numTimespan} ‏‮timespan‬‏ ‏‮report‬‏}zero{{numTimespan} ‏‮timespan‬‏ ‏‮reports‬‏}two{{numTimespan} ‏‮timespan‬‏ ‏‮reports‬‏}few{{numTimespan} ‏‮timespan‬‏ ‏‮reports‬‏}many{{numTimespan} ‏‮timespan‬‏ ‏‮reports‬‏}other{{numTimespan} ‏‮timespan‬‏ ‏‮reports‬‏}}"
130
+ },
110
131
  "flow-report/src/i18n/ui-strings.js | title": {
111
132
  "message": "‏‮Lighthouse‬‏ ‏‮User‬‏ ‏‮Flow‬‏ ‏‮Report‬‏"
112
133
  },
@@ -743,18 +764,6 @@
743
764
  "lighthouse-core/audits/deprecations.js | title": {
744
765
  "message": "‏‮Avoids‬‏ ‏‮deprecated‬‏ ‏‮APIs‬‏"
745
766
  },
746
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
747
- "message": "‏‮Application‬‏ ‏‮Cache‬‏ ‏‮is‬‏ ‏‮deprecated‬‏. [‏‮Learn‬‏ ‏‮more‬‏](https://web.dev/appcache-manifest/)."
748
- },
749
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
750
- "message": "‏‮Found‬‏ \"{AppCacheManifest}\""
751
- },
752
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
753
- "message": "‏‮Uses‬‏ ‏‮Application‬‏ ‏‮Cache‬‏"
754
- },
755
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
756
- "message": "‏‮Avoids‬‏ ‏‮Application‬‏ ‏‮Cache‬‏"
757
- },
758
767
  "lighthouse-core/audits/dobetterweb/charset.js | description": {
759
768
  "message": "‏‮A‬‏ ‏‮character‬‏ ‏‮encoding‬‏ ‏‮declaration‬‏ ‏‮is‬‏ ‏‮required‬‏. ‏‮It‬‏ ‏‮can‬‏ ‏‮be‬‏ ‏‮done‬‏ ‏‮with‬‏ ‏‮a‬‏ `<meta>` ‏‮tag‬‏ ‏‮in‬‏ ‏‮the‬‏ ‏‮first‬‏ 1024 ‏‮bytes‬‏ ‏‮of‬‏ ‏‮the‬‏ ‏‮HTML‬‏ ‏‮or‬‏ ‏‮in‬‏ ‏‮the‬‏ ‏‮Content‬‏-‏‮Type‬‏ ‏‮HTTP‬‏ ‏‮response‬‏ ‏‮header‬‏. [‏‮Learn‬‏ ‏‮more‬‏](https://web.dev/charset/)."
760
769
  },
@@ -812,21 +821,6 @@
812
821
  "lighthouse-core/audits/dobetterweb/dom-size.js | title": {
813
822
  "message": "‏‮Avoids‬‏ ‏‮an‬‏ ‏‮excessive‬‏ ‏‮DOM‬‏ ‏‮size‬‏"
814
823
  },
815
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | columnFailingAnchors": {
816
- "message": "‏‮Failing‬‏ ‏‮Anchors‬‏"
817
- },
818
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | description": {
819
- "message": "‏‮Add‬‏ `rel=\"noopener\"` ‏‮or‬‏ `rel=\"noreferrer\"` ‏‮to‬‏ ‏‮any‬‏ ‏‮external‬‏ ‏‮links‬‏ ‏‮to‬‏ ‏‮improve‬‏ ‏‮performance‬‏ ‏‮and‬‏ ‏‮prevent‬‏ ‏‮security‬‏ ‏‮vulnerabilities‬‏. [‏‮Learn‬‏ ‏‮more‬‏](https://web.dev/external-anchors-use-rel-noopener/)."
820
- },
821
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | failureTitle": {
822
- "message": "‏‮Links‬‏ ‏‮to‬‏ ‏‮cross‬‏-‏‮origin‬‏ ‏‮destinations‬‏ ‏‮are‬‏ ‏‮unsafe‬‏"
823
- },
824
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | title": {
825
- "message": "‏‮Links‬‏ ‏‮to‬‏ ‏‮cross‬‏-‏‮origin‬‏ ‏‮destinations‬‏ ‏‮are‬‏ ‏‮safe‬‏"
826
- },
827
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | warning": {
828
- "message": "‏‮Unable‬‏ ‏‮to‬‏ ‏‮determine‬‏ ‏‮the‬‏ ‏‮destination‬‏ ‏‮for‬‏ ‏‮anchor‬‏ ({anchorHTML}). ‏‮If‬‏ ‏‮not‬‏ ‏‮used‬‏ ‏‮as‬‏ ‏‮a‬‏ ‏‮hyperlink‬‏, ‏‮consider‬‏ ‏‮removing‬‏ ‏‮target‬‏=_‏‮blank‬‏."
829
- },
830
824
  "lighthouse-core/audits/dobetterweb/geolocation-on-start.js | description": {
831
825
  "message": "‏‮Users‬‏ ‏‮are‬‏ ‏‮mistrustful‬‏ ‏‮of‬‏ ‏‮or‬‏ ‏‮confused‬‏ ‏‮by‬‏ ‏‮sites‬‏ ‏‮that‬‏ ‏‮request‬‏ ‏‮their‬‏ ‏‮location‬‏ ‏‮without‬‏ ‏‮context‬‏. ‏‮Consider‬‏ ‏‮tying‬‏ ‏‮the‬‏ ‏‮request‬‏ ‏‮to‬‏ ‏‮a‬‏ ‏‮user‬‏ ‏‮action‬‏ ‏‮instead‬‏. [‏‮Learn‬‏ ‏‮more‬‏](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": "‏‮Preload‬‏ ‏‮Largest‬‏ ‏‮Contentful‬‏ ‏‮Paint‬‏ ‏‮image‬‏"
1279
1273
  },
1280
- "lighthouse-core/audits/redirects-http.js | description": {
1281
- "message": "‏‮If‬‏ ‏‮you‬‏'‏‮ve‬‏ ‏‮already‬‏ ‏‮set‬‏ ‏‮up‬‏ ‏‮HTTPS‬‏, ‏‮make‬‏ ‏‮sure‬‏ ‏‮that‬‏ ‏‮you‬‏ ‏‮redirect‬‏ ‏‮all‬‏ ‏‮HTTP‬‏ ‏‮traffic‬‏ ‏‮to‬‏ ‏‮HTTPS‬‏ ‏‮in‬‏ ‏‮order‬‏ ‏‮to‬‏ ‏‮enable‬‏ ‏‮secure‬‏ ‏‮web‬‏ ‏‮features‬‏ ‏‮for‬‏ ‏‮all‬‏ ‏‮your‬‏ ‏‮users‬‏. [‏‮Learn‬‏ ‏‮more‬‏](https://web.dev/redirects-http/)."
1282
- },
1283
- "lighthouse-core/audits/redirects-http.js | failureTitle": {
1284
- "message": "‏‮Does‬‏ ‏‮not‬‏ ‏‮redirect‬‏ ‏‮HTTP‬‏ ‏‮traffic‬‏ ‏‮to‬‏ ‏‮HTTPS‬‏"
1285
- },
1286
- "lighthouse-core/audits/redirects-http.js | title": {
1287
- "message": "‏‮Redirects‬‏ ‏‮HTTP‬‏ ‏‮traffic‬‏ ‏‮to‬‏ ‏‮HTTPS‬‏"
1288
- },
1289
1274
  "lighthouse-core/audits/redirects.js | description": {
1290
1275
  "message": "‏‮Redirects‬‏ ‏‮introduce‬‏ ‏‮additional‬‏ ‏‮delays‬‏ ‏‮before‬‏ ‏‮the‬‏ ‏‮page‬‏ ‏‮can‬‏ ‏‮be‬‏ ‏‮loaded‬‏. [‏‮Learn‬‏ ‏‮more‬‏](https://web.dev/redirects/)."
1291
1276
  },
@@ -1776,7 +1761,7 @@
1776
1761
  "message": "‏‮These‬‏ ‏‮checks‬‏ ‏‮are‬‏ ‏‮required‬‏ ‏‮by‬‏ ‏‮the‬‏ ‏‮baseline‬‏ [‏‮PWA‬‏ ‏‮Checklist‬‏](https://developers.google.com/web/progressive-web-apps/checklist) ‏‮but‬‏ ‏‮are‬‏ ‏‮not‬‏ ‏‮automatically‬‏ ‏‮checked‬‏ ‏‮by‬‏ ‏‮Lighthouse‬‏. ‏‮They‬‏ ‏‮do‬‏ ‏‮not‬‏ ‏‮affect‬‏ ‏‮your‬‏ ‏‮score‬‏ ‏‮but‬‏ ‏‮it‬‏'‏‮s‬‏ ‏‮important‬‏ ‏‮that‬‏ ‏‮you‬‏ ‏‮verify‬‏ ‏‮them‬‏ ‏‮manually‬‏."
1777
1762
  },
1778
1763
  "lighthouse-core/config/default-config.js | pwaCategoryTitle": {
1779
- "message": "‏‮Progressive‬‏ ‏‮Web‬‏ ‏‮App‬‏"
1764
+ "message": "‏‮PWA‬‏"
1780
1765
  },
1781
1766
  "lighthouse-core/config/default-config.js | pwaInstallableGroupTitle": {
1782
1767
  "message": "‏‮Installable‬‏"
@@ -2078,30 +2063,6 @@
2078
2063
  "lighthouse-core/lib/lh-error.js | urlInvalid": {
2079
2064
  "message": "‏‮The‬‏ ‏‮URL‬‏ ‏‮you‬‏ ‏‮have‬‏ ‏‮provided‬‏ ‏‮appears‬‏ ‏‮to‬‏ ‏‮be‬‏ ‏‮invalid‬‏."
2080
2065
  },
2081
- "lighthouse-treemap/app/src/util.js | allLabel": {
2082
- "message": "‏‮All‬‏"
2083
- },
2084
- "lighthouse-treemap/app/src/util.js | allScriptsDropdownLabel": {
2085
- "message": "‏‮All‬‏ ‏‮Scripts‬‏"
2086
- },
2087
- "lighthouse-treemap/app/src/util.js | coverageColumnName": {
2088
- "message": "‏‮Coverage‬‏"
2089
- },
2090
- "lighthouse-treemap/app/src/util.js | duplicateModulesLabel": {
2091
- "message": "‏‮Duplicate‬‏ ‏‮Modules‬‏"
2092
- },
2093
- "lighthouse-treemap/app/src/util.js | resourceBytesLabel": {
2094
- "message": "‏‮Resource‬‏ ‏‮Bytes‬‏"
2095
- },
2096
- "lighthouse-treemap/app/src/util.js | tableColumnName": {
2097
- "message": "‏‮Name‬‏"
2098
- },
2099
- "lighthouse-treemap/app/src/util.js | toggleTableButtonLabel": {
2100
- "message": "‏‮Toggle‬‏ ‏‮Table‬‏"
2101
- },
2102
- "lighthouse-treemap/app/src/util.js | unusedBytesLabel": {
2103
- "message": "‏‮Unused‬‏ ‏‮Bytes‬‏"
2104
- },
2105
2066
  "node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
2106
2067
  "message": "‏‮For‬‏ ‏‮animated‬‏ ‏‮content‬‏, ‏‮use‬‏ [`amp-anim`](https://amp.dev/documentation/components/amp-anim/) ‏‮to‬‏ ‏‮minimize‬‏ ‏‮CPU‬‏ ‏‮usage‬‏ ‏‮when‬‏ ‏‮the‬‏ ‏‮content‬‏ ‏‮is‬‏ ‏‮offscreen‬‏."
2107
2068
  },
@@ -2369,6 +2330,9 @@
2369
2330
  "report/renderer/util.js | calculatorLink": {
2370
2331
  "message": "‏‮See‬‏ ‏‮calculator‬‏."
2371
2332
  },
2333
+ "report/renderer/util.js | collapseView": {
2334
+ "message": "‏‮Collapse‬‏ ‏‮view‬‏"
2335
+ },
2372
2336
  "report/renderer/util.js | crcInitialNavigation": {
2373
2337
  "message": "‏‮Initial‬‏ ‏‮Navigation‬‏"
2374
2338
  },
@@ -2405,9 +2369,15 @@
2405
2369
  "report/renderer/util.js | errorMissingAuditInfo": {
2406
2370
  "message": "‏‮Report‬‏ ‏‮error‬‏: ‏‮no‬‏ ‏‮audit‬‏ ‏‮information‬‏"
2407
2371
  },
2372
+ "report/renderer/util.js | expandView": {
2373
+ "message": "‏‮Expand‬‏ ‏‮view‬‏"
2374
+ },
2408
2375
  "report/renderer/util.js | footerIssue": {
2409
2376
  "message": "‏‮File‬‏ ‏‮an‬‏ ‏‮issue‬‏"
2410
2377
  },
2378
+ "report/renderer/util.js | hide": {
2379
+ "message": "‏‮Hide‬‏"
2380
+ },
2411
2381
  "report/renderer/util.js | labDataTitle": {
2412
2382
  "message": "‏‮Lab‬‏ ‏‮Data‬‏"
2413
2383
  },
@@ -2429,6 +2399,12 @@
2429
2399
  "report/renderer/util.js | passedAuditsGroupTitle": {
2430
2400
  "message": "‏‮Passed‬‏ ‏‮audits‬‏"
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": "‏‮Emulated‬‏ ‏‮Desktop‬‏"
2434
2410
  },
@@ -2447,33 +2423,30 @@
2447
2423
  "report/renderer/util.js | runtimeSettingsCPUThrottling": {
2448
2424
  "message": "‏‮CPU‬‏ ‏‮throttling‬‏"
2449
2425
  },
2450
- "report/renderer/util.js | runtimeSettingsChannel": {
2451
- "message": "‏‮Channel‬‏"
2452
- },
2453
2426
  "report/renderer/util.js | runtimeSettingsDevice": {
2454
2427
  "message": "‏‮Device‬‏"
2455
2428
  },
2456
- "report/renderer/util.js | runtimeSettingsFetchTime": {
2457
- "message": "‏‮Fetch‬‏ ‏‮Time‬‏"
2458
- },
2459
2429
  "report/renderer/util.js | runtimeSettingsNetworkThrottling": {
2460
2430
  "message": "‏‮Network‬‏ ‏‮throttling‬‏"
2461
2431
  },
2462
- "report/renderer/util.js | runtimeSettingsTitle": {
2463
- "message": "‏‮Runtime‬‏ ‏‮Settings‬‏"
2464
- },
2465
- "report/renderer/util.js | runtimeSettingsUA": {
2466
- "message": "‏‮User‬‏ ‏‮agent‬‏ (‏‮host‬‏)"
2467
- },
2468
2432
  "report/renderer/util.js | runtimeSettingsUANetwork": {
2469
2433
  "message": "‏‮User‬‏ ‏‮agent‬‏ (‏‮network‬‏)"
2470
2434
  },
2471
- "report/renderer/util.js | runtimeSettingsUrl": {
2472
- "message": "‏‮URL‬‏"
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‬‏ 4‏‮G‬‏ ‏‮throttling‬‏"
2473
2443
  },
2474
2444
  "report/renderer/util.js | runtimeUnknown": {
2475
2445
  "message": "‏‮Unknown‬‏"
2476
2446
  },
2447
+ "report/renderer/util.js | show": {
2448
+ "message": "‏‮Show‬‏"
2449
+ },
2477
2450
  "report/renderer/util.js | showRelevantAudits": {
2478
2451
  "message": "‏‮Show‬‏ ‏‮audits‬‏ ‏‮relevant‬‏ ‏‮to‬‏:"
2479
2452
  },
@@ -2503,5 +2476,29 @@
2503
2476
  },
2504
2477
  "report/renderer/util.js | warningHeader": {
2505
2478
  "message": "‏‮Warnings‬‏: "
2479
+ },
2480
+ "treemap/app/src/util.js | allLabel": {
2481
+ "message": "‏‮All‬‏"
2482
+ },
2483
+ "treemap/app/src/util.js | allScriptsDropdownLabel": {
2484
+ "message": "‏‮All‬‏ ‏‮Scripts‬‏"
2485
+ },
2486
+ "treemap/app/src/util.js | coverageColumnName": {
2487
+ "message": "‏‮Coverage‬‏"
2488
+ },
2489
+ "treemap/app/src/util.js | duplicateModulesLabel": {
2490
+ "message": "‏‮Duplicate‬‏ ‏‮Modules‬‏"
2491
+ },
2492
+ "treemap/app/src/util.js | resourceBytesLabel": {
2493
+ "message": "‏‮Resource‬‏ ‏‮Bytes‬‏"
2494
+ },
2495
+ "treemap/app/src/util.js | tableColumnName": {
2496
+ "message": "‏‮Name‬‏"
2497
+ },
2498
+ "treemap/app/src/util.js | toggleTableButtonLabel": {
2499
+ "message": "‏‮Toggle‬‏ ‏‮Table‬‏"
2500
+ },
2501
+ "treemap/app/src/util.js | unusedBytesLabel": {
2502
+ "message": "‏‮Unused‬‏ ‏‮Bytes‬‏"
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}) مفيد}zero{{numInformative} تدقيق مفيد}two{تدقيقان ({numInformative}) مفيدان}few{{numInformative} عمليات تدقيق مفيدة}many{{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}) في الصفحة}zero{{numNavigation} تقرير تنقُّل في الصفحة}two{تقريرا تنقُّل ({numNavigation}) في الصفحة}few{{numNavigation} تقارير تنقُّل في الصفحة}many{{numNavigation} تقرير تنقُّل في الصفحة}other{{numNavigation} تقرير تنقُّل في الصفحة}}"
82
+ },
83
+ "flow-report/src/i18n/ui-strings.js | passableAuditCount": {
84
+ "message": "{numPassableAudits,plural, =1{تدقيق واحد ({numPassableAudits}) يمكن اجتيازه}zero{{numPassableAudits} تدقيق يمكن اجتيازه}two{تدقيقان ({numPassableAudits}) يمكن اجتيازهما}few{{numPassableAudits} عمليات تدقيق يمكن اجتيازها}many{{numPassableAudits} تدقيقًا يمكن اجتيازه}other{{numPassableAudits} تدقيق يمكن اجتيازه}}"
85
+ },
86
+ "flow-report/src/i18n/ui-strings.js | passedAuditCount": {
87
+ "message": "{numPassed,plural, =1{تم اجتياز تدقيق واحد ({numPassed})}zero{تم اجتياز {numPassed} تدقيق}two{تم اجتياز تدقيقَين ({numPassed})}few{تم اجتياز {numPassed} عمليات تدقيق}many{تم اجتياز {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}) لتقييم الصفحة في لحظة معيَّنة}zero{{numSnapshot} تقرير لتقييم الصفحة في لحظة معيَّنة}two{تقريران ({numSnapshot}) لتقييم الصفحة في لحظة معيَّنة}few{{numSnapshot} تقارير لتقييم الصفحة في لحظة معيَّنة}many{{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}) لتقييم الصفحة خلال فترة زمنية}zero{{numTimespan} تقرير لتقييم الصفحة خلال فترة زمنية}two{تقريران ({numTimespan}) لتقييم الصفحة خلال فترة زمنية}few{{numTimespan} تقارير لتقييم الصفحة خلال فترة زمنية}many{{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": "تعريف ترميز الأحرف مطلوب. ويمكن إجراء ذلك باستخدام علامة `<meta>` في أول 1024 وحدة بايت من عنوان 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": "التحميل المُسبَق لصورة المقياس \"سرعة عرض أكبر جزء من المحتوى على الصفحة\""
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": "القسم القابل للتثبيت"
@@ -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": "تصغير العرض"
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": "تقييد وحدة المعالجة المركزية (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 | runtimeSettingsUrl": {
2472
- "message": "عنوان URL"
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": "التقييد البطيء لتحميل الصفحة في شبكة الجيل الرابع"
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
  }