chrome-devtools-frontend 1.0.941208 → 1.0.943182

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 (289) hide show
  1. package/WATCHLISTS +1 -1
  2. package/config/gni/all_devtools_files.gni +0 -64
  3. package/config/gni/devtools_grd_files.gni +54 -19
  4. package/config/gni/devtools_image_files.gni +1 -3
  5. package/front_end/.eslintrc.js +11 -1
  6. package/front_end/Images/src/{feedback_thin_16x16_icon.svg → survey_feedback_icon.svg} +1 -1
  7. package/front_end/Tests.js +1 -32
  8. package/front_end/core/common/Color.ts +5 -0
  9. package/front_end/core/i18n/locales/en-US.json +17 -29
  10. package/front_end/core/i18n/locales/en-XL.json +17 -29
  11. package/front_end/core/sdk/CPUProfilerModel.ts +7 -9
  12. package/front_end/core/sdk/ConsoleModel.ts +27 -33
  13. package/front_end/core/sdk/DebuggerModel.ts +4 -14
  14. package/front_end/core/sdk/sdk-meta.ts +17 -3
  15. package/front_end/entrypoints/device_mode_emulation_frame/device_mode_emulation_frame.ts +1 -1
  16. package/front_end/entrypoints/devtools_app/devtools_app.js +1 -1
  17. package/front_end/entrypoints/devtools_app/devtools_app.json +1 -12
  18. package/front_end/entrypoints/formatter_worker/formatter_worker-entrypoint.ts +1 -1
  19. package/front_end/entrypoints/heap_snapshot_worker/heap_snapshot_worker-entrypoint.ts +1 -1
  20. package/front_end/entrypoints/inspector/inspector.js +1 -1
  21. package/front_end/entrypoints/inspector/inspector.json +1 -3
  22. package/front_end/entrypoints/inspector_main/inspector_main-meta.ts +2 -3
  23. package/front_end/entrypoints/js_app/js_app.js +1 -1
  24. package/front_end/entrypoints/js_app/js_app.json +1 -3
  25. package/front_end/entrypoints/main/MainImpl.ts +26 -0
  26. package/front_end/entrypoints/main/main-meta.ts +1 -2
  27. package/front_end/entrypoints/ndb_app/ndb_app.js +1 -1
  28. package/front_end/entrypoints/node_app/node_app-meta.ts +0 -2
  29. package/front_end/entrypoints/node_app/node_app.js +1 -1
  30. package/front_end/entrypoints/node_app/node_app.json +1 -3
  31. package/front_end/entrypoints/node_main/node_main-meta.ts +0 -1
  32. package/front_end/entrypoints/shell/shell.js +0 -11
  33. package/front_end/entrypoints/shell/shell.json +1 -5
  34. package/front_end/entrypoints/wasmparser_worker/wasmparser_worker-entrypoint.ts +1 -1
  35. package/front_end/entrypoints/worker_app/worker_app.js +1 -1
  36. package/front_end/entrypoints/worker_app/worker_app.json +1 -7
  37. package/front_end/generated/InspectorBackendCommands.js +19 -0
  38. package/front_end/generated/protocol-mapping.d.ts +31 -1
  39. package/front_end/generated/protocol-proxy-api.d.ts +34 -2
  40. package/front_end/generated/protocol.d.ts +81 -6
  41. package/front_end/legacy_test_runner/bindings_test_runner/IsolatedFilesystemTestRunner.js +2 -2
  42. package/front_end/legacy_test_runner/console_test_runner/console_test_runner.js +5 -1
  43. package/front_end/legacy_test_runner/legacy_test_runner.ts +10 -1
  44. package/front_end/legacy_test_runner/test_runner/TestRunner.js +3 -1
  45. package/front_end/models/formatter/SourceFormatter.ts +0 -10
  46. package/front_end/models/persistence/persistence-meta.ts +0 -1
  47. package/front_end/models/workspace/UISourceCode.ts +9 -42
  48. package/front_end/panels/accessibility/accessibility-meta.ts +0 -1
  49. package/front_end/panels/animation/AnimationTimeline.ts +3 -3
  50. package/front_end/panels/animation/animation-meta.ts +0 -1
  51. package/front_end/panels/application/ApplicationPanelSidebar.ts +3 -3
  52. package/front_end/panels/application/BackForwardCacheStrings.ts +3 -1
  53. package/front_end/panels/application/application-meta.ts +0 -4
  54. package/front_end/panels/application/components/EndpointsGrid.ts +1 -1
  55. package/front_end/panels/application/components/ReportsGrid.ts +1 -1
  56. package/front_end/panels/application/components/stackTraceRow.css +8 -0
  57. package/front_end/panels/browser_debugger/browser_debugger-meta.ts +1 -2
  58. package/front_end/panels/changes/changes-meta.ts +0 -1
  59. package/front_end/panels/console/ConsolePinPane.ts +23 -32
  60. package/front_end/panels/console/ConsoleViewMessage.ts +8 -1
  61. package/front_end/panels/console/console-meta.ts +0 -1
  62. package/front_end/panels/console_counters/console_counters-meta.ts +0 -1
  63. package/front_end/panels/coverage/CoverageDecorationManager.ts +4 -5
  64. package/front_end/panels/coverage/CoverageView.ts +2 -105
  65. package/front_end/panels/coverage/coverage-meta.ts +0 -1
  66. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +11 -56
  67. package/front_end/panels/css_overview/components/cssOverviewStartView.css +1 -8
  68. package/front_end/panels/css_overview/css_overview-meta.ts +0 -1
  69. package/front_end/panels/developer_resources/developer_resources-meta.ts +0 -1
  70. package/front_end/panels/elements/ElementsTreeElement.ts +4 -9
  71. package/front_end/panels/elements/components/StylePropertyEditor.ts +2 -0
  72. package/front_end/panels/elements/components/adornerSettingsPane.css +0 -4
  73. package/front_end/panels/elements/elements-meta.ts +0 -1
  74. package/front_end/panels/emulation/DeviceModeToolbar.ts +3 -1
  75. package/front_end/panels/emulation/DeviceModeView.ts +2 -1
  76. package/front_end/panels/emulation/InspectedPagePlaceholder.ts +3 -1
  77. package/front_end/panels/emulation/MediaQueryInspector.ts +3 -1
  78. package/front_end/panels/emulation/emulation-meta.ts +2 -5
  79. package/front_end/panels/help/help-meta.ts +0 -1
  80. package/front_end/panels/input/input-meta.ts +0 -1
  81. package/front_end/panels/issues/issues-meta.ts +0 -3
  82. package/front_end/panels/js_profiler/js_profiler-meta.ts +0 -4
  83. package/front_end/panels/layers/layers-meta.ts +0 -4
  84. package/front_end/panels/lighthouse/LighthousePanel.ts +2 -4
  85. package/front_end/panels/lighthouse/LighthouseReportRenderer.ts +1 -4
  86. package/front_end/panels/lighthouse/lighthouse-meta.ts +0 -1
  87. package/front_end/panels/lighthouse/lighthouseStartView.css +4 -0
  88. package/front_end/panels/lighthouse/module.json +0 -6
  89. package/front_end/panels/media/media-meta.ts +0 -4
  90. package/front_end/panels/mobile_throttling/mobile_throttling-meta.ts +0 -1
  91. package/front_end/panels/network/ResourceWebSocketFrameView.ts +2 -1
  92. package/front_end/panels/network/network-meta.ts +1 -5
  93. package/front_end/panels/performance_monitor/performance_monitor-meta.ts +0 -1
  94. package/front_end/panels/profiler/CPUProfileView.ts +10 -3
  95. package/front_end/panels/profiler/profiler-meta.ts +0 -3
  96. package/front_end/panels/protocol_monitor/protocol_monitor-meta.ts +0 -1
  97. package/front_end/panels/screencast/screencast-meta.ts +0 -4
  98. package/front_end/panels/security/security-meta.ts +0 -4
  99. package/front_end/panels/sensors/sensors-meta.ts +0 -1
  100. package/front_end/panels/settings/emulation/emulation-meta.ts +0 -1
  101. package/front_end/panels/settings/settings-meta.ts +0 -1
  102. package/front_end/panels/sources/BreakpointEditDialog.ts +16 -30
  103. package/front_end/panels/sources/CSSPlugin.ts +310 -331
  104. package/front_end/panels/sources/CallStackSidebarPane.ts +28 -34
  105. package/front_end/panels/sources/CoveragePlugin.ts +121 -6
  106. package/front_end/panels/sources/DebuggerPlugin.ts +1166 -1243
  107. package/front_end/panels/sources/EditingLocationHistoryManager.ts +71 -101
  108. package/front_end/panels/sources/GoToLineQuickOpen.ts +4 -3
  109. package/front_end/panels/sources/InplaceFormatterEditorAction.ts +3 -3
  110. package/front_end/panels/sources/JavaScriptCompilerPlugin.ts +26 -23
  111. package/front_end/panels/sources/Plugin.ts +20 -4
  112. package/front_end/panels/sources/ProfilePlugin.ts +185 -0
  113. package/front_end/panels/sources/ScriptFormatterEditorAction.ts +3 -3
  114. package/front_end/panels/sources/ScriptOriginPlugin.ts +0 -10
  115. package/front_end/panels/sources/SnippetsPlugin.ts +1 -10
  116. package/front_end/panels/sources/SourcesPanel.ts +6 -5
  117. package/front_end/panels/sources/SourcesView.ts +10 -8
  118. package/front_end/panels/sources/TabbedEditorContainer.ts +31 -27
  119. package/front_end/panels/sources/UISourceCodeFrame.ts +335 -470
  120. package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +3 -2
  121. package/front_end/panels/sources/sources-legacy.ts +0 -6
  122. package/front_end/panels/sources/sources-meta.ts +2 -6
  123. package/front_end/panels/sources/sources.ts +0 -2
  124. package/front_end/panels/timeline/timeline-meta.ts +2 -9
  125. package/front_end/panels/web_audio/web_audio-meta.ts +0 -1
  126. package/front_end/panels/webauthn/webauthn-meta.ts +0 -1
  127. package/front_end/third_party/codemirror.next/bundle.ts +9 -13
  128. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  129. package/front_end/third_party/codemirror.next/chunk/javascript.js +2 -2
  130. package/front_end/third_party/codemirror.next/chunk/markdown.js +2 -6
  131. package/front_end/third_party/codemirror.next/chunk/php.js +2 -6
  132. package/front_end/third_party/codemirror.next/chunk/python.js +1 -1
  133. package/front_end/third_party/codemirror.next/chunk/wast.js +1 -1
  134. package/front_end/third_party/codemirror.next/chunk/xml.js +2 -2
  135. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +279 -198
  136. package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
  137. package/front_end/third_party/codemirror.next/package.json +13 -11
  138. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +1128 -1158
  139. package/front_end/third_party/lighthouse/locales/ar-XB.json +211 -79
  140. package/front_end/third_party/lighthouse/locales/ar.json +213 -81
  141. package/front_end/third_party/lighthouse/locales/bg.json +211 -79
  142. package/front_end/third_party/lighthouse/locales/ca.json +212 -80
  143. package/front_end/third_party/lighthouse/locales/cs.json +211 -79
  144. package/front_end/third_party/lighthouse/locales/da.json +211 -79
  145. package/front_end/third_party/lighthouse/locales/de.json +211 -79
  146. package/front_end/third_party/lighthouse/locales/el.json +213 -81
  147. package/front_end/third_party/lighthouse/locales/en-GB.json +211 -79
  148. package/front_end/third_party/lighthouse/locales/en-US.json +186 -75
  149. package/front_end/third_party/lighthouse/locales/en-XA.json +211 -79
  150. package/front_end/third_party/lighthouse/locales/en-XL.json +186 -75
  151. package/front_end/third_party/lighthouse/locales/es-419.json +211 -79
  152. package/front_end/third_party/lighthouse/locales/es.json +212 -80
  153. package/front_end/third_party/lighthouse/locales/fi.json +211 -79
  154. package/front_end/third_party/lighthouse/locales/fil.json +211 -79
  155. package/front_end/third_party/lighthouse/locales/fr.json +211 -79
  156. package/front_end/third_party/lighthouse/locales/he.json +212 -80
  157. package/front_end/third_party/lighthouse/locales/hi.json +214 -82
  158. package/front_end/third_party/lighthouse/locales/hr.json +211 -79
  159. package/front_end/third_party/lighthouse/locales/hu.json +211 -79
  160. package/front_end/third_party/lighthouse/locales/id.json +211 -79
  161. package/front_end/third_party/lighthouse/locales/it.json +211 -79
  162. package/front_end/third_party/lighthouse/locales/ja.json +211 -79
  163. package/front_end/third_party/lighthouse/locales/ko.json +211 -79
  164. package/front_end/third_party/lighthouse/locales/lt.json +211 -79
  165. package/front_end/third_party/lighthouse/locales/lv.json +214 -82
  166. package/front_end/third_party/lighthouse/locales/nl.json +211 -79
  167. package/front_end/third_party/lighthouse/locales/no.json +211 -79
  168. package/front_end/third_party/lighthouse/locales/pl.json +211 -79
  169. package/front_end/third_party/lighthouse/locales/pt-PT.json +211 -79
  170. package/front_end/third_party/lighthouse/locales/pt.json +211 -79
  171. package/front_end/third_party/lighthouse/locales/ro.json +212 -80
  172. package/front_end/third_party/lighthouse/locales/ru.json +211 -79
  173. package/front_end/third_party/lighthouse/locales/sk.json +211 -79
  174. package/front_end/third_party/lighthouse/locales/sl.json +211 -79
  175. package/front_end/third_party/lighthouse/locales/sr-Latn.json +211 -79
  176. package/front_end/third_party/lighthouse/locales/sr.json +211 -79
  177. package/front_end/third_party/lighthouse/locales/sv.json +211 -79
  178. package/front_end/third_party/lighthouse/locales/ta.json +218 -86
  179. package/front_end/third_party/lighthouse/locales/te.json +251 -119
  180. package/front_end/third_party/lighthouse/locales/th.json +211 -79
  181. package/front_end/third_party/lighthouse/locales/tr.json +211 -79
  182. package/front_end/third_party/lighthouse/locales/uk.json +212 -80
  183. package/front_end/third_party/lighthouse/locales/vi.json +211 -79
  184. package/front_end/third_party/lighthouse/locales/zh-HK.json +211 -79
  185. package/front_end/third_party/lighthouse/locales/zh-TW.json +211 -79
  186. package/front_end/third_party/lighthouse/locales/zh.json +211 -79
  187. package/front_end/third_party/lighthouse/report/bundle.d.ts +72 -34
  188. package/front_end/third_party/lighthouse/report/bundle.js +698 -492
  189. package/front_end/third_party/lighthouse/report-assets/report-generator.js +1 -2
  190. package/front_end/third_party/lighthouse/report-assets/report.js +40 -35
  191. package/front_end/third_party/lighthouse/report-assets/standalone-template.html +2 -4
  192. package/front_end/ui/components/code_highlighter/CodeHighlighter.ts +60 -68
  193. package/front_end/ui/components/data_grid/dataGrid.css +12 -10
  194. package/front_end/ui/components/docs/component_docs.ts +14 -0
  195. package/front_end/ui/components/docs/create_breadcrumbs.ts +1 -1
  196. package/front_end/ui/components/docs/css_overview/start_view.html +25 -0
  197. package/front_end/ui/components/docs/css_overview/start_view.ts +14 -0
  198. package/front_end/ui/components/docs/icon_button/basic.ts +3 -3
  199. package/front_end/ui/components/docs/toggle_dark_mode.ts +1 -0
  200. package/front_end/ui/components/docs/toggle_fonts.ts +2 -0
  201. package/front_end/ui/components/helpers/get-stylesheet.ts +0 -15
  202. package/front_end/ui/components/linear_memory_inspector/linear_memory_inspector-meta.ts +1 -2
  203. package/front_end/ui/components/markdown_view/MarkdownImagesMap.ts +1 -1
  204. package/front_end/ui/components/survey_link/SurveyLink.ts +1 -1
  205. package/front_end/ui/components/text_editor/TextEditor.ts +79 -36
  206. package/front_end/ui/components/text_editor/config.ts +42 -26
  207. package/front_end/ui/components/text_editor/javascript.ts +2 -3
  208. package/front_end/ui/components/text_editor/position.ts +17 -0
  209. package/front_end/ui/components/text_editor/text_editor.ts +1 -0
  210. package/front_end/ui/components/text_editor/theme.ts +5 -1
  211. package/front_end/ui/components/tree_outline/TreeOutline.ts +63 -8
  212. package/front_end/ui/components/tree_outline/TreeOutlineUtils.ts +8 -6
  213. package/front_end/ui/legacy/Dialog.ts +3 -1
  214. package/front_end/ui/legacy/DropTarget.ts +2 -1
  215. package/front_end/ui/legacy/EmptyWidget.ts +2 -1
  216. package/front_end/ui/legacy/FilterBar.ts +2 -1
  217. package/front_end/ui/legacy/GlassPane.ts +4 -2
  218. package/front_end/ui/legacy/Infobar.ts +5 -8
  219. package/front_end/ui/legacy/InspectorView.ts +6 -1
  220. package/front_end/ui/legacy/ListWidget.ts +2 -1
  221. package/front_end/ui/legacy/PopoverHelper.ts +2 -1
  222. package/front_end/ui/legacy/ProgressIndicator.ts +2 -1
  223. package/front_end/ui/legacy/RemoteDebuggingTerminatedScreen.ts +2 -1
  224. package/front_end/ui/legacy/ReportView.ts +2 -1
  225. package/front_end/ui/legacy/RootView.ts +2 -1
  226. package/front_end/ui/legacy/SearchableView.ts +2 -1
  227. package/front_end/ui/legacy/ShortcutRegistry.ts +11 -7
  228. package/front_end/ui/legacy/SoftContextMenu.ts +3 -2
  229. package/front_end/ui/legacy/SoftDropDown.ts +4 -2
  230. package/front_end/ui/legacy/SplitWidget.ts +2 -1
  231. package/front_end/ui/legacy/SuggestBox.ts +2 -1
  232. package/front_end/ui/legacy/TabbedPane.ts +2 -1
  233. package/front_end/ui/legacy/TargetCrashedScreen.ts +2 -1
  234. package/front_end/ui/legacy/TextPrompt.ts +2 -1
  235. package/front_end/ui/legacy/Toolbar.ts +3 -2
  236. package/front_end/ui/legacy/Treeoutline.ts +4 -3
  237. package/front_end/ui/legacy/UIUtils.ts +17 -14
  238. package/front_end/ui/legacy/ViewManager.ts +2 -1
  239. package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +1 -2
  240. package/front_end/ui/legacy/components/inline_editor/cssAngle.css +4 -0
  241. package/front_end/ui/legacy/components/object_ui/JavaScriptREPL.ts +2 -2
  242. package/front_end/ui/legacy/components/object_ui/object_ui-meta.ts +0 -4
  243. package/front_end/ui/legacy/components/perf_ui/LineLevelProfile.ts +35 -131
  244. package/front_end/ui/legacy/components/perf_ui/perf_ui-meta.ts +0 -3
  245. package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +2 -2
  246. package/front_end/ui/legacy/components/quick_open/quick_open-meta.ts +2 -3
  247. package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.ts +3 -6
  248. package/front_end/ui/legacy/components/source_frame/FontView.ts +4 -1
  249. package/front_end/ui/legacy/components/source_frame/ImageView.ts +4 -1
  250. package/front_end/ui/legacy/components/source_frame/JSONView.ts +4 -1
  251. package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +21 -15
  252. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +501 -252
  253. package/front_end/ui/legacy/components/source_frame/XMLView.ts +7 -2
  254. package/front_end/ui/legacy/components/source_frame/source_frame-legacy.ts +0 -11
  255. package/front_end/ui/legacy/components/source_frame/source_frame.ts +0 -2
  256. package/front_end/ui/legacy/components/text_editor/CodeMirrorTextEditor.ts +2 -0
  257. package/front_end/ui/legacy/components/text_editor/cmdevtools.css +3 -1
  258. package/front_end/ui/legacy/components/text_editor/module.json +0 -3
  259. package/front_end/ui/legacy/components/utils/Linkifier.ts +7 -15
  260. package/front_end/ui/legacy/radioButton.css +1 -13
  261. package/front_end/ui/legacy/textButton.css +5 -4
  262. package/front_end/ui/legacy/themeColors.css +36 -0
  263. package/front_end/ui/legacy/theme_support/theme_support_impl.ts +7 -9
  264. package/front_end/ui/legacy/utils/create-shadow-root-with-core-styles.ts +2 -2
  265. package/front_end/ui/legacy/utils/inject-core-styles.ts +7 -4
  266. package/package.json +1 -1
  267. package/scripts/check_gn.js +0 -35
  268. package/scripts/eslint_rules/lib/es_modules_import.js +15 -8
  269. package/scripts/eslint_rules/tests/es_modules_import_test.js +8 -0
  270. package/front_end/Images/radioDot-dark-theme.png +0 -0
  271. package/front_end/Images/radioDot.png +0 -0
  272. package/front_end/emulated_devices/module.json +0 -6
  273. package/front_end/panels/application/module.json +0 -6
  274. package/front_end/panels/emulation/module.json +0 -11
  275. package/front_end/panels/issues/module.json +0 -6
  276. package/front_end/panels/js_profiler/module.json +0 -5
  277. package/front_end/panels/layer_viewer/module.json +0 -5
  278. package/front_end/panels/layers/module.json +0 -5
  279. package/front_end/panels/media/module.json +0 -5
  280. package/front_end/panels/network/module.json +0 -5
  281. package/front_end/panels/profiler/module.json +0 -5
  282. package/front_end/panels/screencast/module.json +0 -6
  283. package/front_end/panels/security/module.json +0 -5
  284. package/front_end/panels/timeline/module.json +0 -7
  285. package/front_end/third_party/lighthouse/report-assets/report.css +0 -1774
  286. package/front_end/ui/legacy/components/source_frame/SourcesTextEditor.ts +0 -1030
  287. package/front_end/ui/legacy/components/source_frame/messagesPopover.css +0 -32
  288. package/front_end/ui/legacy/components/source_frame/module.json +0 -14
  289. package/front_end/ui/legacy/module.json +0 -41
@@ -1,4 +1,136 @@
1
1
  {
2
+ "flow-report/src/i18n/ui-strings.js | allReports": {
3
+ "message": "सभी रिपोर्ट"
4
+ },
5
+ "flow-report/src/i18n/ui-strings.js | categories": {
6
+ "message": "Categories"
7
+ },
8
+ "flow-report/src/i18n/ui-strings.js | categoryAccessibility": {
9
+ "message": "सुलभता"
10
+ },
11
+ "flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
12
+ "message": "सबसे अच्छे तरीके"
13
+ },
14
+ "flow-report/src/i18n/ui-strings.js | categoryPerformance": {
15
+ "message": "परफ़ॉर्मेंस"
16
+ },
17
+ "flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
18
+ "message": "प्रगतिशील वेब ऐप्लिकेशन"
19
+ },
20
+ "flow-report/src/i18n/ui-strings.js | categorySeo": {
21
+ "message": "SEO"
22
+ },
23
+ "flow-report/src/i18n/ui-strings.js | desktop": {
24
+ "message": "डेस्कटॉप"
25
+ },
26
+ "flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
27
+ "message": "Understanding the Lighthouse Flow Report"
28
+ },
29
+ "flow-report/src/i18n/ui-strings.js | helpLabel": {
30
+ "message": "Understanding Flows"
31
+ },
32
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
33
+ "message": "Use Navigation reports to..."
34
+ },
35
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
36
+ "message": "Use Snapshot reports to..."
37
+ },
38
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
39
+ "message": "Use Timespan reports to..."
40
+ },
41
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
42
+ "message": "Obtain a Lighthouse Performance score."
43
+ },
44
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
45
+ "message": "Measure page load Performance metrics such as Largest Contentful Paint and Speed Index."
46
+ },
47
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
48
+ "message": "Assess Progressive Web App capabilities."
49
+ },
50
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
51
+ "message": "Find accessibility issues in single page applications or complex forms."
52
+ },
53
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
54
+ "message": "Evaluate best practices of menus and UI elements hidden behind interaction."
55
+ },
56
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
57
+ "message": "Measure layout shifts and JavaScript execution time on a series of interactions."
58
+ },
59
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
60
+ "message": "Discover performance opportunities to improve the experience for long-lived pages and single-page applications."
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
+ },
68
+ "flow-report/src/i18n/ui-strings.js | mobile": {
69
+ "message": "मोबाइल"
70
+ },
71
+ "flow-report/src/i18n/ui-strings.js | navigationDescription": {
72
+ "message": "पेज लोड"
73
+ },
74
+ "flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
75
+ "message": "Navigation reports analyze a single page load, exactly like the original Lighthouse reports."
76
+ },
77
+ "flow-report/src/i18n/ui-strings.js | navigationReport": {
78
+ "message": "नेविगेशन रिपोर्ट"
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
+ },
89
+ "flow-report/src/i18n/ui-strings.js | ratingAverage": {
90
+ "message": "ठीक-ठाक"
91
+ },
92
+ "flow-report/src/i18n/ui-strings.js | ratingError": {
93
+ "message": "गड़बड़ी"
94
+ },
95
+ "flow-report/src/i18n/ui-strings.js | ratingFail": {
96
+ "message": "खराब"
97
+ },
98
+ "flow-report/src/i18n/ui-strings.js | ratingPass": {
99
+ "message": "अच्छी"
100
+ },
101
+ "flow-report/src/i18n/ui-strings.js | save": {
102
+ "message": "Save"
103
+ },
104
+ "flow-report/src/i18n/ui-strings.js | snapshotDescription": {
105
+ "message": "पेज की कैप्चर की गई स्थिति"
106
+ },
107
+ "flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
108
+ "message": "Snapshot reports analyze the page in a particular state, typically after user interactions."
109
+ },
110
+ "flow-report/src/i18n/ui-strings.js | snapshotReport": {
111
+ "message": "किसी खास समय पर, वेब पेज की स्थिति बताने वाली रिपोर्ट"
112
+ },
113
+ "flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
114
+ "message": "{numSnapshot,plural, =1{{numSnapshot} स्नैपशॉट रिपोर्ट}one{{numSnapshot} स्नैपशॉट रिपोर्ट}other{{numSnapshot} स्नैपशॉट रिपोर्ट}}"
115
+ },
116
+ "flow-report/src/i18n/ui-strings.js | summary": {
117
+ "message": "खास जानकारी"
118
+ },
119
+ "flow-report/src/i18n/ui-strings.js | timespanDescription": {
120
+ "message": "उपयोगकर्ता के इंटरैक्शन"
121
+ },
122
+ "flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
123
+ "message": "Timespan reports analyze an arbitrary period of time, typically containing user interactions."
124
+ },
125
+ "flow-report/src/i18n/ui-strings.js | timespanReport": {
126
+ "message": "पेज पर उपयोगकर्ता के इंटरैक्शन की जानकारी देने वाली रिपोर्ट"
127
+ },
128
+ "flow-report/src/i18n/ui-strings.js | timespanReportCount": {
129
+ "message": "{numTimespan,plural, =1{{numTimespan} टाइमस्पैन रिपोर्ट}one{{numTimespan} टाइमस्पैन रिपोर्ट}other{{numTimespan} टाइमस्पैन रिपोर्ट}}"
130
+ },
131
+ "flow-report/src/i18n/ui-strings.js | title": {
132
+ "message": "Lighthouse की यूज़र फ़्लो रिपोर्ट"
133
+ },
2
134
  "lighthouse-core/audits/accessibility/accesskeys.js | description": {
3
135
  "message": "ऐक्सेस कुंजी से उपयोगकर्ता तेज़ी से पेज के किसी भाग पर फ़ोकस कर सकते हैं. सही नेविगेशन के लिए, हर ऐक्सेस कुंजी सबसे अलग होनी चाहिए. [ज़्यादा जानें](https://web.dev/accesskeys/)."
4
136
  },
@@ -554,6 +686,12 @@
554
686
  "lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | columnDisplayedDimensions": {
555
687
  "message": "दिखाए गए डाइमेंशन"
556
688
  },
689
+ "lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
690
+ "message": "इमेज अपने दिखाए गए साइज़ के हिसाब से बड़ी थीं"
691
+ },
692
+ "lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
693
+ "message": "इमेज अपने दिखाए गए साइज़ के हिसाब से सही थीं"
694
+ },
557
695
  "lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | description": {
558
696
  "message": "ऐसी इमेज ऑफ़र करें जिनका आकार सही हो, ताकि सेल्युलर डेटा बचाया जा सके और लोड होने में लगने वाले समय को कम किया जा सके. [ज़्यादा जानें](https://web.dev/uses-responsive-images/)."
559
697
  },
@@ -626,18 +764,6 @@
626
764
  "lighthouse-core/audits/deprecations.js | title": {
627
765
  "message": "रुके हुई एपीआई का इस्तेमाल नहीं किया जाता"
628
766
  },
629
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
630
- "message": "ऐप्लिकेशन की कैश मेमोरी अब काम नहीं करती. [ज़्यादा जानें](https://web.dev/appcache-manifest/)."
631
- },
632
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
633
- "message": "\"{AppCacheManifest}\" मिल गया"
634
- },
635
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
636
- "message": "ऐप्लिकेशन की कैश मेमोरी का इस्तेमाल किया जाता है"
637
- },
638
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
639
- "message": "ऐप्लिकेशन की कैश मेमोरी का इस्तेमाल नहीं किया जाता"
640
- },
641
767
  "lighthouse-core/audits/dobetterweb/charset.js | description": {
642
768
  "message": "कैरेक्टर एन्कोडिंग को सेट करना ज़रूरी है. एचटीएमएल की पहली 1024 बाइट या कॉन्टेंट-टाइप एचटीटीपी रिस्पॉन्स हेडर में `<meta>` टैग की मदद से ऐसा किया जा सकता है. [ज़्यादा जानें](https://web.dev/charset/)."
643
769
  },
@@ -695,21 +821,6 @@
695
821
  "lighthouse-core/audits/dobetterweb/dom-size.js | title": {
696
822
  "message": "बहुत ज़्यादा बड़े DOM आकार से बचता है"
697
823
  },
698
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | columnFailingAnchors": {
699
- "message": "फ़ेल होने वाले एंकर"
700
- },
701
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | description": {
702
- "message": "किसी बाहरी लिंक में `rel=\"noopener\"` या `rel=\"noreferrer\"` जोड़कर परफ़ॉर्मेंस बेहतर करें और सुरक्षा जोखिमों से बचें. [ज़्यादा जानें](https://web.dev/external-anchors-use-rel-noopener/)."
703
- },
704
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | failureTitle": {
705
- "message": "जिन जगहों पर दो डोमेन से होकर जाना होता है वे सुरक्षित नहीं हैं"
706
- },
707
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | title": {
708
- "message": "जिन जगहों पर दो डोमेन से होकर जाना होता है वे सुरक्षित हैं"
709
- },
710
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | warning": {
711
- "message": "एंकर ({anchorHTML}) के भेजे जाने की जगह नहीं पता की जा सकी. अगर target=_blank का इस्तेमाल हाइपरलिंक की तरह नहीं हो रहा, तो इसे हटा दें."
712
- },
713
824
  "lighthouse-core/audits/dobetterweb/geolocation-on-start.js | description": {
714
825
  "message": "उपयोगकर्ता ऐसी साइटों पर भरोसा नहीं करते या उनकी वजह से उलझन में रहते हैं जो बिना किसी संदर्भ के उनकी जगह की जानकारी पता करने का अनुरोध करती हैं. इसके बजाय, उपयोगकर्ता के जेस्चर के हिसाब से अनुरोध करें. [ज़्यादा जानें](https://web.dev/geolocation-on-start/)."
715
826
  },
@@ -888,7 +999,7 @@
888
999
  "message": "वेब ऐप्लिकेशन मेनिफ़ेस्ट या सर्विस वर्कर, इंस्टॉल करने की ज़रूरी शर्तों को नहीं पूरा करते"
889
1000
  },
890
1001
  "lighthouse-core/audits/installable-manifest.js | ids-do-not-match": {
891
- "message": "Play स्टोर ऐप्लिकेशन का यूआरएल और आईडी आपस में मेल नहीं खाते"
1002
+ "message": "Play Store ऐप्लिकेशन का यूआरएल और आईडी आपस में मेल नहीं खाते"
892
1003
  },
893
1004
  "lighthouse-core/audits/installable-manifest.js | in-incognito": {
894
1005
  "message": "पेज को गुप्त विंडो में लोड किया गया है"
@@ -918,7 +1029,7 @@
918
1029
  "message": "डाउनलोड किया गया आइकॉन खाली या खराब था"
919
1030
  },
920
1031
  "lighthouse-core/audits/installable-manifest.js | no-id-specified": {
921
- "message": "'Play स्टोर' आईडी नहीं दिया गया"
1032
+ "message": "'Play Store' आईडी नहीं दिया गया"
922
1033
  },
923
1034
  "lighthouse-core/audits/installable-manifest.js | no-manifest": {
924
1035
  "message": "पेज में कोई भी मेनिफ़ेस्ट <link> यूआरएल नहीं है"
@@ -1007,6 +1118,15 @@
1007
1118
  "lighthouse-core/audits/layout-shift-elements.js | title": {
1008
1119
  "message": "बड़े लेआउट शिफ़्ट से बचें"
1009
1120
  },
1121
+ "lighthouse-core/audits/lcp-lazy-loaded.js | description": {
1122
+ "message": "पेज के ऊपरी हिस्से पर मौजूद जिन इमेज को पेज लाइफ़साइकल में लेज़ी तरीके से लोड और रेंडर किया गया है, उनसे सबसे बड़े कॉन्टेंटफ़ुल पेंट में देरी हो सकती है. [ज़्यादा जानें](https://web.dev/lcp-lazy-loading/)."
1123
+ },
1124
+ "lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
1125
+ "message": "सबसे बड़े कॉन्टेंटफ़ुल पेंट वाली इमेज को लेज़ी तरीके से लोड किया गया है"
1126
+ },
1127
+ "lighthouse-core/audits/lcp-lazy-loaded.js | title": {
1128
+ "message": "सबसे बड़े कॉन्टेंटफ़ुल पेंट वाली इमेज को लेज़ी तरीके से नहीं लोड किया गया है"
1129
+ },
1010
1130
  "lighthouse-core/audits/long-tasks.js | description": {
1011
1131
  "message": "यह मुख्य थ्रेड पर सबसे लंबे टास्क की सूची बनाता है. इससे इनपुट डिले के लिए, सबसे खराब योगदान देने वालों की पहचान करने में मदद मिलती है. [ज़्यादा जानें](https://web.dev/long-tasks-devtools/)"
1012
1132
  },
@@ -1151,15 +1271,6 @@
1151
1271
  "lighthouse-core/audits/preload-lcp-image.js | title": {
1152
1272
  "message": "सबसे बड़े कॉन्टेंटफ़ुल पेंट वाली इमेज को पहले से लोड करें"
1153
1273
  },
1154
- "lighthouse-core/audits/redirects-http.js | description": {
1155
- "message": "अगर आप एचटीटीपीएस पहले ही सेट अप कर चुके हैं, तो पक्का करें कि अपने सभी उपयोगकर्ताओं के लिए सुरक्षित वेब फ़ीचर चालू करने के मकसद से आप सभी एचटीटीपी ट्रैफ़िक को एचटीटीपीएस पर रीडायरेक्ट करें. [ज़्यादा जानें](https://web.dev/redirects-http/)."
1156
- },
1157
- "lighthouse-core/audits/redirects-http.js | failureTitle": {
1158
- "message": "वेब पेज, एचटीटीपी ट्रैफ़िक को एचटीटीपीएस पर रीडायरेक्ट नहीं करता है"
1159
- },
1160
- "lighthouse-core/audits/redirects-http.js | title": {
1161
- "message": "वेब पेज, एचटीटीपी ट्रैफ़िक को एचटीटीपीएस पर रीडायरेक्ट करता है"
1162
- },
1163
1274
  "lighthouse-core/audits/redirects.js | description": {
1164
1275
  "message": "रीडायरेक्ट की वजह से पेज के लोड होने से लगने वाला समय और बढ़ जाता है. [ज़्यादा जानें](https://web.dev/redirects/)."
1165
1276
  },
@@ -1524,7 +1635,7 @@
1524
1635
  "message": "पेज में मान्य सोर्स मैप हैं"
1525
1636
  },
1526
1637
  "lighthouse-core/audits/viewport.js | description": {
1527
- "message": "अपने ऐप्लिकेशन को किसी भी मोबाइल स्क्रीन पर ऑप्टिमाइज़ करने के लिए `<meta name=\"viewport\">` टैग जोड़ें. [ज़्यादा जानें](https://web.dev/viewport/)."
1638
+ "message": "`<meta name=\"viewport\">`, आपके ऐप्लिकेशन को मोबाइल की स्क्रीन के साइज़ के हिसाब से ऑप्टिमाइज़ करता है. साथ ही, यह [उपयोगकर्ता के इनपुट में, 300 मिलीसेकंड की देरी नहीं होने देता है](https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away). [ज़्यादा जानें](https://web.dev/viewport/)."
1528
1639
  },
1529
1640
  "lighthouse-core/audits/viewport.js | explanationNoTag": {
1530
1641
  "message": "कोई `<meta name=\"viewport\">` टैग नहीं मिला"
@@ -1569,7 +1680,7 @@
1569
1680
  "message": "कंट्रास्ट"
1570
1681
  },
1571
1682
  "lighthouse-core/config/default-config.js | a11yLanguageGroupDescription": {
1572
- "message": "इन अवसरों की मदद से कई भाषाओं में उपयोगकर्ताओं के ज़रिए आपकी सामग्री के प्रस्तुतिकरण को बेहतर बनाया जा सकता है."
1683
+ "message": "इन मौकों से कई भाषाओं में उपयोगकर्ताओं के ज़रिए आपके कॉन्टेंट के पेश करने के तरीके को बेहतर बनाया जा सकता है."
1573
1684
  },
1574
1685
  "lighthouse-core/config/default-config.js | a11yLanguageGroupTitle": {
1575
1686
  "message": "अंतरराष्ट्रीय और स्थानीय भाषा के अनुसार"
@@ -1650,7 +1761,7 @@
1650
1761
  "message": "इस तरह की जांच, बेसलाइन [PWA चेकलिस्ट](https://developers.google.com/web/progressive-web-apps/checklist) के लिए ज़रूरी हैं, लेकिन Lighthouse इनकी जांच अपने आप नहीं करता है. वे आपके स्कोर पर असर नहीं डालते हैं, लेकिन इनकी मैन्युअल तरीके से पुष्टि करना ज़रूरी है."
1651
1762
  },
1652
1763
  "lighthouse-core/config/default-config.js | pwaCategoryTitle": {
1653
- "message": "प्रगतिशील वेब ऐप्लिकेशन"
1764
+ "message": "PWA"
1654
1765
  },
1655
1766
  "lighthouse-core/config/default-config.js | pwaInstallableGroupTitle": {
1656
1767
  "message": "इंस्टॉल किया जा सकता है"
@@ -1659,7 +1770,7 @@
1659
1770
  "message": "PWA ऑप्टिमाइज़ किया गया"
1660
1771
  },
1661
1772
  "lighthouse-core/config/default-config.js | seoCategoryDescription": {
1662
- "message": "ये जांच पक्का करती हैं कि आपका पेज, सर्च इंजन के नतीजे रैंक करने के लिए ऑप्टिमाइज़ किया हुआ है. दूसरी वजहों से Lighthouse जांच नहीं करता है. इसका असर आपकी खोज की रैंकिंग पर हो सकता है. [ज़्यादा जानें](https://support.google.com/webmasters/answer/35769)."
1773
+ "message": "इन जांचों से पक्का होता है कि आपका पेज, सर्च इंजन ऑप्टिमाइज़ेशन को लेकर बुनियादी सलाह को फ़ॉलो कर रहा है या नहीं. ऐसी कई चीज़ें हैं जिनकी वजह से लाइटहाउस आपके पेज की जांच नहीं करता है. इससे, आपकी खोज की रैंकिंग और [वेबसाइट की परफ़ॉर्मेंस से जुड़ी अहम जानकारी](https://web.dev/learn-web-vitals/) की रिपोर्ट पर असर पड़ सकता है. [ज़्यादा जानें](https://support.google.com/webmasters/answer/35769)."
1663
1774
  },
1664
1775
  "lighthouse-core/config/default-config.js | seoCategoryManualDescription": {
1665
1776
  "message": "SEO के दूसरे सबसे अच्छे तरीके देखने के लिए अपनी साइट पर पुष्टि करने वाले ये और भी टूल चलाएं."
@@ -1713,7 +1824,7 @@
1713
1824
  "message": "base-uri डायरेक्टिव शामिल न करने पर, इंजेक्ट किए गए <base> टैग की मदद से सभी मिलते-जुलते यूआरएल (जैसे, स्क्रिप्ट) के लिए बेस यूआरएल सेट हो जाता है. ऐसा उस डोमेन में होता है जिसे कोई हमलावर कंट्रोल करता है. base-uri को 'none' या 'self' पर सेट करें."
1714
1825
  },
1715
1826
  "lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
1716
- "message": "object-src की मदद से कंट्रोल किए जा रहे एलिमेंट, विरासती फ़ीचर माने जाते हैं. object-src को 'none' पर सेट करें, ताकि प्लग इन डाले जा सकें. इनमें ऐसे प्लग इन शामिल हैं जो असुरक्षित स्क्रिप्ट चलाते हैं."
1827
+ "message": "जो object-src उपलब्ध नहीं है, वह ऐसे प्लग इन के इंजेक्शन की अनुमति देता है जो असुरक्षित स्क्रिप्ट को लागू करते हैं. अगर आप कर सकते हैं, तो object-src को 'none' पर सेट करें."
1717
1828
  },
1718
1829
  "lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
1719
1830
  "message": "script-src डायरेक्टिव मौजूद नहीं है. इस वजह से, असुरक्षित स्क्रिप्ट चल सकती हैं."
@@ -1727,6 +1838,12 @@
1727
1838
  "lighthouse-core/lib/csp-evaluator.js | nonceLength": {
1728
1839
  "message": "Nonces में कम से कम आठ वर्ण होने चाहिए."
1729
1840
  },
1841
+ "lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
1842
+ "message": "इस डायरेक्टिव में, प्लेन यूआरएल स्कीम ({keyword}) का इस्तेमाल करने से बचें. प्लेन यूआरएल स्कीम, स्क्रिप्ट को असुरक्षित डोमेन से पाने की अनुमति देती हैं."
1843
+ },
1844
+ "lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
1845
+ "message": "इस डायरेक्टिव में, प्लेन वाइल्डकार्ड ({keyword}) का इस्तेमाल करने से बचें. प्लेन वाइल्डकार्ड, स्क्रिप्ट को असुरक्षित डोमेन से पाने की अनुमति देते हैं."
1846
+ },
1730
1847
  "lighthouse-core/lib/csp-evaluator.js | reportToOnly": {
1731
1848
  "message": "रिपोर्टिंग डेस्टिनेशन को सिर्फ़ report-to डायरेक्टिव की मदद से कॉन्फ़िगर किया जाता है. यह डायरेक्टिव सिर्फ़ Chromium कोड वाले ब्राउज़र में काम करता है, इसलिए report-uri डायरेक्टिव भी इस्तेमाल करने का सुझाव दिया जाता है."
1732
1849
  },
@@ -1734,7 +1851,7 @@
1734
1851
  "message": "कोई भी CSP, रिपोर्टिंग डेस्टिनेशन को कॉन्फ़िगर नहीं करता. समय के साथ, इसकी वजह से CSP को मेंटेन करने और किसी भी तरह के ब्रेकेज को मॉनिटर करने में दिक्कत होती है."
1735
1852
  },
1736
1853
  "lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
1737
- "message": "होस्ट की 'अनुमति वाली सूचियों' को अक्सर बायपास किया जा सकता है. 'strict-dynamic' को CSP nonces या hashes के साथ इस्तेमाल करें."
1854
+ "message": "होस्ट की 'व्हाइटलिस्ट' को अक्सर बायपास किया जा सकता है. अगर ज़रूरी हो, तो इसके बजाय 'strict-dynamic' के साथ-साथ CSP nonces या hashes का इस्तेमाल करें."
1738
1855
  },
1739
1856
  "lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
1740
1857
  "message": "इस CSP डायरेक्टिव की जानकारी नहीं है."
@@ -1742,6 +1859,9 @@
1742
1859
  "lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
1743
1860
  "message": "{keyword} एक गलत/अमान्य कीवर्ड लग रहा है."
1744
1861
  },
1862
+ "lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
1863
+ "message": "'unsafe-inline', असुरक्षित इन-पेज स्क्रिप्ट और इवेंट हैंडलर चलाने की अनुमति देता है. एक-एक करके स्क्रिप्ट को अनुमति देने के लिए, CSP nonces या hashes इस्तेमाल करें."
1864
+ },
1745
1865
  "lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
1746
1866
  "message": "'unsafe-inline' जोड़ें, ताकि CSP पुराने ब्राउज़र के साथ काम कर सके. nonces/hashes के साथ काम करने वाले ब्राउज़र पर 'unsafe-inline' को अनदेखा किया जा सकता है."
1747
1867
  },
@@ -1943,30 +2063,6 @@
1943
2063
  "lighthouse-core/lib/lh-error.js | urlInvalid": {
1944
2064
  "message": "आपका दिया हुआ यूआरएल गलत लगता है."
1945
2065
  },
1946
- "lighthouse-treemap/app/src/util.js | allLabel": {
1947
- "message": "सभी"
1948
- },
1949
- "lighthouse-treemap/app/src/util.js | allScriptsDropdownLabel": {
1950
- "message": "सभी स्क्रिप्ट"
1951
- },
1952
- "lighthouse-treemap/app/src/util.js | coverageColumnName": {
1953
- "message": "कवरेज"
1954
- },
1955
- "lighthouse-treemap/app/src/util.js | duplicateModulesLabel": {
1956
- "message": "डुप्लीकेट मॉड्यूल"
1957
- },
1958
- "lighthouse-treemap/app/src/util.js | resourceBytesLabel": {
1959
- "message": "फ़ाइल का साइज़ (बाइट में)"
1960
- },
1961
- "lighthouse-treemap/app/src/util.js | tableColumnName": {
1962
- "message": "नाम"
1963
- },
1964
- "lighthouse-treemap/app/src/util.js | toggleTableButtonLabel": {
1965
- "message": "टेबल को टॉगल करें"
1966
- },
1967
- "lighthouse-treemap/app/src/util.js | unusedBytesLabel": {
1968
- "message": "इस्तेमाल न की गई बाइट की संख्या"
1969
- },
1970
2066
  "node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
1971
2067
  "message": "ऐनिमेशन वाले कॉन्टेंट के लिए, [`amp-anim`](https://amp.dev/documentation/components/amp-anim/) का इस्तेमाल करें. इससे, कॉन्टेंट के ऑफ़स्क्रीन होने पर सीपीयू का इस्तेमाल कम होगा."
1972
2068
  },
@@ -2234,6 +2330,9 @@
2234
2330
  "report/renderer/util.js | calculatorLink": {
2235
2331
  "message": "कैलकुलेटर देखें."
2236
2332
  },
2333
+ "report/renderer/util.js | collapseView": {
2334
+ "message": "व्यू को छोटा करें"
2335
+ },
2237
2336
  "report/renderer/util.js | crcInitialNavigation": {
2238
2337
  "message": "शुरुआती नेविगेशन"
2239
2338
  },
@@ -2270,9 +2369,15 @@
2270
2369
  "report/renderer/util.js | errorMissingAuditInfo": {
2271
2370
  "message": "गड़बड़ी की रिपोर्ट करें: कोई ऑडिट जानकारी नहीं"
2272
2371
  },
2372
+ "report/renderer/util.js | expandView": {
2373
+ "message": "व्यू को बड़ा करें"
2374
+ },
2273
2375
  "report/renderer/util.js | footerIssue": {
2274
2376
  "message": "समस्या की रिपोर्ट करें"
2275
2377
  },
2378
+ "report/renderer/util.js | hide": {
2379
+ "message": "छिपाएं"
2380
+ },
2276
2381
  "report/renderer/util.js | labDataTitle": {
2277
2382
  "message": "किसी नई या दुबारा जाँची जाने वाली ऐप्लिकेशन के लिए तैयार किया गया डेटा"
2278
2383
  },
@@ -2294,6 +2399,12 @@
2294
2399
  "report/renderer/util.js | passedAuditsGroupTitle": {
2295
2400
  "message": "पास हुए ऑडिट"
2296
2401
  },
2402
+ "report/renderer/util.js | runtimeAnalysisWindow": {
2403
+ "message": "शुरुआती पेज लोड"
2404
+ },
2405
+ "report/renderer/util.js | runtimeCustom": {
2406
+ "message": "कस्टम थ्रॉटलिंग"
2407
+ },
2297
2408
  "report/renderer/util.js | runtimeDesktopEmulation": {
2298
2409
  "message": "एम्युलेट किया गया डेस्कटॉप"
2299
2410
  },
@@ -2312,33 +2423,30 @@
2312
2423
  "report/renderer/util.js | runtimeSettingsCPUThrottling": {
2313
2424
  "message": "सीपीयू थ्रॉटलिंग"
2314
2425
  },
2315
- "report/renderer/util.js | runtimeSettingsChannel": {
2316
- "message": "चैनल"
2317
- },
2318
2426
  "report/renderer/util.js | runtimeSettingsDevice": {
2319
2427
  "message": "डिवाइस"
2320
2428
  },
2321
- "report/renderer/util.js | runtimeSettingsFetchTime": {
2322
- "message": "Lighthouse के चलाए जाने का समय"
2323
- },
2324
2429
  "report/renderer/util.js | runtimeSettingsNetworkThrottling": {
2325
2430
  "message": "नेटवर्क थ्रॉटलिंग"
2326
2431
  },
2327
- "report/renderer/util.js | runtimeSettingsTitle": {
2328
- "message": "रनटाइम सेटिंग"
2329
- },
2330
- "report/renderer/util.js | runtimeSettingsUA": {
2331
- "message": "उपयोगकर्ता एजेंट (होस्ट)"
2332
- },
2333
2432
  "report/renderer/util.js | runtimeSettingsUANetwork": {
2334
2433
  "message": "उपयोगकर्ता एजेंट (नेटवर्क)"
2335
2434
  },
2336
- "report/renderer/util.js | runtimeSettingsUrl": {
2337
- "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 थ्रॉटलिंग"
2338
2443
  },
2339
2444
  "report/renderer/util.js | runtimeUnknown": {
2340
2445
  "message": "अज्ञात"
2341
2446
  },
2447
+ "report/renderer/util.js | show": {
2448
+ "message": "दिखाएं"
2449
+ },
2342
2450
  "report/renderer/util.js | showRelevantAudits": {
2343
2451
  "message": "वे ऑडिट दिखाएं जो इनके लिए काम के हों:"
2344
2452
  },
@@ -2368,5 +2476,29 @@
2368
2476
  },
2369
2477
  "report/renderer/util.js | warningHeader": {
2370
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": "इस्तेमाल न की गई बाइट की संख्या"
2371
2503
  }
2372
2504
  }