chrome-devtools-frontend 1.0.945884 → 1.0.948295

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 (259) hide show
  1. package/.eslintrc.js +1 -0
  2. package/config/gni/all_devtools_files.gni +1 -20
  3. package/config/gni/devtools_grd_files.gni +9 -48
  4. package/config/gni/devtools_image_files.gni +1 -0
  5. package/front_end/.eslintrc.js +6 -1
  6. package/front_end/Images/src/circled_backslash_icon.svg +3 -0
  7. package/front_end/core/host/InspectorFrontendHost.ts +0 -3
  8. package/front_end/core/host/InspectorFrontendHostAPI.ts +0 -1
  9. package/front_end/core/host/UserMetrics.ts +1 -23
  10. package/front_end/core/i18n/locales/en-US.json +41 -41
  11. package/front_end/core/i18n/locales/en-XL.json +41 -41
  12. package/front_end/core/platform/platform.ts +0 -2
  13. package/front_end/core/platform/string-utilities.ts +14 -1
  14. package/front_end/core/platform/utilities.ts +0 -29
  15. package/front_end/core/root/Runtime.ts +4 -212
  16. package/front_end/core/sdk/AccessibilityModel.ts +0 -2
  17. package/front_end/core/sdk/CSSProperty.ts +16 -11
  18. package/front_end/core/sdk/CSSRule.ts +0 -2
  19. package/front_end/core/sdk/Cookie.ts +0 -25
  20. package/front_end/core/sdk/EmulationModel.ts +0 -2
  21. package/front_end/core/sdk/HeapProfilerModel.ts +0 -2
  22. package/front_end/core/sdk/NetworkManager.ts +0 -3
  23. package/front_end/core/sdk/Resource.ts +0 -3
  24. package/front_end/core/sdk/ResourceTreeModel.ts +0 -3
  25. package/front_end/core/sdk/ServiceWorkerManager.ts +0 -2
  26. package/front_end/core/sdk/sdk-legacy.ts +0 -3
  27. package/front_end/devtools_compatibility.js +1 -8
  28. package/front_end/entrypoints/devtools_app/{devtools_app-meta-files.ts → devtools_app.ts} +9 -2
  29. package/front_end/entrypoints/formatter_worker/CSSFormatter.ts +1 -3
  30. package/front_end/entrypoints/formatter_worker/FormatterActions.ts +0 -2
  31. package/front_end/entrypoints/formatter_worker/FormatterWorker.ts +0 -120
  32. package/front_end/entrypoints/formatter_worker/formatter_worker-entrypoint.ts +1 -11
  33. package/front_end/entrypoints/formatter_worker/formatter_worker.ts +5 -0
  34. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +2 -1
  35. package/front_end/entrypoints/inspector/{inspector.js → inspector.ts} +0 -3
  36. package/front_end/entrypoints/js_app/{JsMain.ts → js_app.ts} +5 -1
  37. package/front_end/entrypoints/main/MainImpl.ts +0 -7
  38. package/front_end/entrypoints/ndb_app/{ndb_app.js → ndb_app.ts} +3 -2
  39. package/front_end/entrypoints/{node_main → node_app}/NodeConnectionsPanel.ts +1 -1
  40. package/front_end/entrypoints/{node_main → node_app}/NodeMain.ts +2 -4
  41. package/front_end/entrypoints/{node_main → node_app}/nodeConnectionsPanel.css +0 -0
  42. package/front_end/entrypoints/node_app/node_app.ts +79 -0
  43. package/front_end/entrypoints/shell/{shell-meta-files.ts → shell.ts} +7 -1
  44. package/front_end/entrypoints/worker_app/{worker_app.js → worker_app.ts} +6 -2
  45. package/front_end/generated/InspectorBackendCommands.js +5 -1
  46. package/front_end/generated/protocol.d.ts +12 -0
  47. package/front_end/legacy/legacy-defs.d.ts +0 -4
  48. package/front_end/legacy_test_runner/sources_test_runner/sources_test_runner.js +0 -1
  49. package/front_end/legacy_test_runner/test_runner/TestRunner.js +35 -59
  50. package/front_end/models/bindings/CompilerScriptMapping.ts +0 -1
  51. package/front_end/models/bindings/DebuggerLanguagePlugins.ts +4 -11
  52. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +1 -1
  53. package/front_end/models/bindings/ResourceMapping.ts +1 -1
  54. package/front_end/models/bindings/SASSSourceMapping.ts +0 -1
  55. package/front_end/models/emulation/DeviceModeModel.ts +0 -2
  56. package/front_end/models/formatter/FormatterWorkerPool.ts +0 -18
  57. package/front_end/models/issues_manager/CorsIssue.ts +17 -9
  58. package/front_end/models/issues_manager/descriptions/{corsInsecurePrivateNetworkPreflight.md → corsPreflightAllowPrivateNetworkError.md} +1 -1
  59. package/front_end/models/text_utils/CodeMirrorUtils.ts +6 -51
  60. package/front_end/models/text_utils/TextUtils.ts +1 -2
  61. package/front_end/models/text_utils/text_utils-legacy.ts +0 -5
  62. package/front_end/panels/accessibility/AccessibilitySidebarView.ts +3 -1
  63. package/front_end/panels/animation/AnimationTimeline.ts +0 -2
  64. package/front_end/panels/animation/AnimationUI.ts +0 -2
  65. package/front_end/panels/application/ApplicationPanelSidebar.ts +2 -4
  66. package/front_end/panels/application/BackForwardCacheStrings.ts +2 -5
  67. package/front_end/panels/application/BackForwardCacheView.ts +150 -58
  68. package/front_end/panels/application/ResourcesPanel.ts +0 -42
  69. package/front_end/panels/application/application-legacy.ts +0 -3
  70. package/front_end/panels/application/application-meta.ts +0 -13
  71. package/front_end/panels/application/backForwardCacheView.css +44 -6
  72. package/front_end/panels/application/components/FrameDetailsView.ts +3 -3
  73. package/front_end/panels/application/components/OriginTrialTreeView.ts +3 -3
  74. package/front_end/panels/application/components/StackTrace.ts +1 -1
  75. package/front_end/panels/coverage/CoverageView.ts +1 -1
  76. package/front_end/panels/css_overview/CSSOverviewModel.ts +0 -2
  77. package/front_end/panels/css_overview/CSSOverviewPanel.ts +0 -7
  78. package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +0 -2
  79. package/front_end/panels/css_overview/components/cssOverviewStartView.css +1 -0
  80. package/front_end/panels/css_overview/cssOverviewCompletedView.css +1 -1
  81. package/front_end/panels/developer_resources/DeveloperResourcesView.ts +2 -1
  82. package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +0 -11
  83. package/front_end/panels/elements/ElementsPanel.ts +9 -1
  84. package/front_end/panels/elements/ElementsTreeElement.ts +1 -1
  85. package/front_end/panels/elements/StylesSidebarPane.ts +0 -1
  86. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +1 -1
  87. package/front_end/panels/elements/elementsTreeOutline.css +0 -13
  88. package/front_end/panels/emulation/DeviceModeToolbar.ts +0 -16
  89. package/front_end/panels/issues/CorsIssueDetailsView.ts +18 -2
  90. package/front_end/panels/lighthouse/lighthouse-meta.ts +0 -3
  91. package/front_end/panels/network/NetworkConfigView.ts +10 -0
  92. package/front_end/panels/network/NetworkItemView.ts +3 -0
  93. package/front_end/panels/network/NetworkWaterfallColumn.ts +2 -0
  94. package/front_end/panels/network/networkConfigView.css +5 -0
  95. package/front_end/panels/profiler/CPUProfileFlameChart.ts +3 -1
  96. package/front_end/panels/profiler/ProfileDataGrid.ts +2 -1
  97. package/front_end/panels/profiler/profilesPanel.css +1 -1
  98. package/front_end/panels/search/SearchView.ts +24 -4
  99. package/front_end/panels/settings/components/SyncSection.ts +2 -2
  100. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +52 -50
  101. package/front_end/panels/settings/emulation/components/userAgentClientHintsForm.css +0 -12
  102. package/front_end/panels/sources/CSSPlugin.ts +3 -0
  103. package/front_end/panels/sources/CoveragePlugin.ts +2 -0
  104. package/front_end/panels/sources/DebuggerPlugin.ts +35 -7
  105. package/front_end/panels/sources/JavaScriptCompilerPlugin.ts +3 -0
  106. package/front_end/panels/sources/ProfilePlugin.ts +3 -0
  107. package/front_end/panels/sources/UISourceCodeFrame.ts +11 -2
  108. package/front_end/panels/sources/sourcesView.css +0 -130
  109. package/front_end/panels/timeline/TimelineTreeView.ts +3 -1
  110. package/front_end/third_party/codemirror/codemirror-tsconfig.json +1 -25
  111. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  112. package/front_end/third_party/codemirror.next/chunk/cpp.js +1 -2
  113. package/front_end/third_party/codemirror.next/chunk/java.js +1 -2
  114. package/front_end/third_party/codemirror.next/chunk/json.js +1 -2
  115. package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -2
  116. package/front_end/third_party/codemirror.next/chunk/php.js +1 -2
  117. package/front_end/third_party/codemirror.next/chunk/python.js +1 -2
  118. package/front_end/third_party/codemirror.next/chunk/wast.js +1 -2
  119. package/front_end/third_party/codemirror.next/chunk/xml.js +1 -2
  120. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +1486 -1423
  121. package/front_end/third_party/codemirror.next/codemirror.next.js +1 -2
  122. package/front_end/third_party/codemirror.next/package.json +10 -9
  123. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +168 -164
  124. package/front_end/third_party/lighthouse/locales/ar-XB.json +0 -3
  125. package/front_end/third_party/lighthouse/locales/ar.json +0 -3
  126. package/front_end/third_party/lighthouse/locales/bg.json +17 -20
  127. package/front_end/third_party/lighthouse/locales/ca.json +0 -3
  128. package/front_end/third_party/lighthouse/locales/cs.json +0 -3
  129. package/front_end/third_party/lighthouse/locales/da.json +16 -19
  130. package/front_end/third_party/lighthouse/locales/de.json +0 -3
  131. package/front_end/third_party/lighthouse/locales/el.json +0 -3
  132. package/front_end/third_party/lighthouse/locales/en-GB.json +19 -22
  133. package/front_end/third_party/lighthouse/locales/en-US.json +33 -3
  134. package/front_end/third_party/lighthouse/locales/en-XA.json +0 -3
  135. package/front_end/third_party/lighthouse/locales/en-XL.json +33 -3
  136. package/front_end/third_party/lighthouse/locales/es-419.json +17 -20
  137. package/front_end/third_party/lighthouse/locales/es.json +0 -3
  138. package/front_end/third_party/lighthouse/locales/fi.json +16 -19
  139. package/front_end/third_party/lighthouse/locales/fil.json +33 -36
  140. package/front_end/third_party/lighthouse/locales/fr.json +16 -19
  141. package/front_end/third_party/lighthouse/locales/he.json +16 -19
  142. package/front_end/third_party/lighthouse/locales/hi.json +0 -3
  143. package/front_end/third_party/lighthouse/locales/hr.json +16 -19
  144. package/front_end/third_party/lighthouse/locales/hu.json +16 -19
  145. package/front_end/third_party/lighthouse/locales/id.json +16 -19
  146. package/front_end/third_party/lighthouse/locales/it.json +37 -40
  147. package/front_end/third_party/lighthouse/locales/ja.json +16 -19
  148. package/front_end/third_party/lighthouse/locales/ko.json +16 -19
  149. package/front_end/third_party/lighthouse/locales/lt.json +17 -20
  150. package/front_end/third_party/lighthouse/locales/lv.json +0 -3
  151. package/front_end/third_party/lighthouse/locales/nl.json +16 -19
  152. package/front_end/third_party/lighthouse/locales/no.json +17 -20
  153. package/front_end/third_party/lighthouse/locales/pl.json +16 -19
  154. package/front_end/third_party/lighthouse/locales/pt-PT.json +37 -40
  155. package/front_end/third_party/lighthouse/locales/pt.json +16 -19
  156. package/front_end/third_party/lighthouse/locales/ro.json +0 -3
  157. package/front_end/third_party/lighthouse/locales/ru.json +16 -19
  158. package/front_end/third_party/lighthouse/locales/sk.json +0 -3
  159. package/front_end/third_party/lighthouse/locales/sl.json +0 -3
  160. package/front_end/third_party/lighthouse/locales/sr-Latn.json +16 -19
  161. package/front_end/third_party/lighthouse/locales/sr.json +16 -19
  162. package/front_end/third_party/lighthouse/locales/sv.json +17 -20
  163. package/front_end/third_party/lighthouse/locales/ta.json +0 -3
  164. package/front_end/third_party/lighthouse/locales/te.json +0 -3
  165. package/front_end/third_party/lighthouse/locales/th.json +0 -3
  166. package/front_end/third_party/lighthouse/locales/tr.json +0 -3
  167. package/front_end/third_party/lighthouse/locales/uk.json +17 -20
  168. package/front_end/third_party/lighthouse/locales/vi.json +0 -3
  169. package/front_end/third_party/lighthouse/locales/zh-HK.json +0 -3
  170. package/front_end/third_party/lighthouse/locales/zh-TW.json +0 -3
  171. package/front_end/third_party/lighthouse/locales/zh.json +0 -3
  172. package/front_end/third_party/lighthouse/report/bundle.d.ts +63 -61
  173. package/front_end/third_party/lighthouse/report/bundle.js +36 -7
  174. package/front_end/third_party/lighthouse/report-assets/report-generator.js +205 -192
  175. package/front_end/ui/components/diff_view/DiffView.ts +4 -4
  176. package/front_end/ui/components/helpers/component-server-setup.ts +1 -12
  177. package/front_end/ui/components/helpers/helpers.ts +0 -2
  178. package/front_end/ui/components/icon_button/IconButton.ts +1 -1
  179. package/front_end/ui/components/issue_counter/IssueCounter.ts +2 -2
  180. package/front_end/ui/components/linear_memory_inspector/LinearMemoryViewer.ts +3 -3
  181. package/front_end/ui/components/markdown_view/MarkdownView.ts +4 -4
  182. package/front_end/ui/components/panel_feedback/PreviewToggle.ts +98 -0
  183. package/front_end/ui/components/panel_feedback/panel_feedback.ts +1 -0
  184. package/front_end/ui/components/panel_feedback/previewToggle.css +24 -0
  185. package/front_end/ui/components/report_view/ReportView.ts +22 -0
  186. package/front_end/ui/components/report_view/reportSection.css +20 -0
  187. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +1 -1
  188. package/front_end/ui/components/settings/SettingCheckbox.ts +2 -2
  189. package/front_end/ui/components/text_editor/config.ts +11 -9
  190. package/front_end/ui/components/text_editor/javascript.ts +34 -12
  191. package/front_end/ui/components/text_editor/theme.ts +1 -0
  192. package/front_end/ui/components/text_prompt/TextPrompt.ts +2 -2
  193. package/front_end/ui/legacy/GlassPane.ts +1 -1
  194. package/front_end/ui/legacy/InspectorView.ts +10 -0
  195. package/front_end/ui/legacy/SearchableView.ts +2 -1
  196. package/front_end/ui/legacy/Treeoutline.ts +1 -1
  197. package/front_end/ui/legacy/Widget.ts +1 -1
  198. package/front_end/ui/legacy/XWidget.ts +0 -5
  199. package/front_end/ui/legacy/components/inline_editor/CSSVarSwatch.ts +2 -2
  200. package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +1 -1
  201. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +2 -3
  202. package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +0 -1
  203. package/front_end/ui/legacy/components/object_ui/object_ui-legacy.ts +0 -8
  204. package/front_end/ui/legacy/components/object_ui/object_ui.ts +0 -4
  205. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +40 -29
  206. package/front_end/ui/legacy/inspectorSyntaxHighlight.css +0 -211
  207. package/front_end/ui/legacy/legacy-legacy.ts +0 -6
  208. package/front_end/ui/legacy/legacy.ts +0 -2
  209. package/front_end/ui/legacy/tabbedPane.css +1 -1
  210. package/front_end/ui/legacy/themeColors.css +1 -1
  211. package/front_end/ui/legacy/utils/append-style.ts +2 -13
  212. package/front_end/ui/legacy/utils/create-shadow-root-with-core-styles.ts +7 -5
  213. package/package.json +2 -4
  214. package/scripts/build/build_inspector_overlay.py +15 -1
  215. package/scripts/build/rjsmin.py +84 -115
  216. package/scripts/eslint_rules/lib/l10n_filename_matches.js +4 -4
  217. package/scripts/eslint_rules/lib/lit_html_no_attribute_quotes.js +101 -0
  218. package/scripts/eslint_rules/lib/no_only_eslint_tests.js +53 -0
  219. package/scripts/eslint_rules/tests/.eslintrc.js +14 -0
  220. package/scripts/eslint_rules/tests/l10n_filename_matches_test.js +4 -0
  221. package/scripts/eslint_rules/tests/lit_html_no_attribute_quotes_test.js +45 -0
  222. package/scripts/eslint_rules/tests/no_only_eslint_tests_test.js +94 -0
  223. package/scripts/hosted_mode/server.js +17 -2
  224. package/front_end/entrypoints/devtools_app/devtools_app.js +0 -8
  225. package/front_end/entrypoints/devtools_app/devtools_app.json +0 -6
  226. package/front_end/entrypoints/inspector/inspector.json +0 -4
  227. package/front_end/entrypoints/js_app/js_app.js +0 -9
  228. package/front_end/entrypoints/js_app/js_app.json +0 -4
  229. package/front_end/entrypoints/ndb_app/ndb_app.json +0 -5
  230. package/front_end/entrypoints/node_app/node_app-meta.ts +0 -43
  231. package/front_end/entrypoints/node_app/node_app.js +0 -13
  232. package/front_end/entrypoints/node_app/node_app.json +0 -4
  233. package/front_end/entrypoints/node_main/node_main-meta.ts +0 -48
  234. package/front_end/entrypoints/node_main/node_main.ts +0 -11
  235. package/front_end/entrypoints/shell/shell.js +0 -13
  236. package/front_end/entrypoints/shell/shell.json +0 -5
  237. package/front_end/entrypoints/startup/RuntimeInstantiator.ts +0 -95
  238. package/front_end/entrypoints/startup/startup.ts +0 -9
  239. package/front_end/entrypoints/worker_app/worker_app.json +0 -4
  240. package/front_end/panels/lighthouse/module.json +0 -6
  241. package/front_end/third_party/lighthouse/report-assets/report.d.ts +0 -1
  242. package/front_end/third_party/lighthouse/report-assets/report.js +0 -233
  243. package/front_end/third_party/lighthouse/report-assets/standalone-template.html +0 -38
  244. package/front_end/ui/components/helpers/get-stylesheet.ts +0 -45
  245. package/front_end/ui/legacy/TextEditor.ts +0 -82
  246. package/front_end/ui/legacy/components/object_ui/JavaScriptAutocomplete.ts +0 -836
  247. package/front_end/ui/legacy/components/text_editor/CodeMirrorTextEditor.ts +0 -1676
  248. package/front_end/ui/legacy/components/text_editor/TextEditorAutocompleteController.ts +0 -586
  249. package/front_end/ui/legacy/components/text_editor/autocompleteTooltip.css +0 -20
  250. package/front_end/ui/legacy/components/text_editor/cm_modes.ts +0 -23
  251. package/front_end/ui/legacy/components/text_editor/cmdevtools.css +0 -995
  252. package/front_end/ui/legacy/components/text_editor/module.json +0 -7
  253. package/front_end/ui/legacy/components/text_editor/text_editor-legacy.ts +0 -33
  254. package/front_end/ui/legacy/components/text_editor/text_editor.ts +0 -13
  255. package/scripts/build/build_release_applications.py +0 -216
  256. package/scripts/build/modular_build.py +0 -184
  257. package/scripts/check_gn.js +0 -119
  258. package/scripts/json_validator/module.schema.json +0 -19
  259. package/scripts/json_validator/validate_module_json.js +0 -44
@@ -60,10 +60,10 @@
60
60
  "message": "Discover performance opportunities to improve the experience for long-lived pages and single-page applications."
61
61
  },
62
62
  "flow-report/src/i18n/ui-strings.js | highestImpact": {
63
- "message": "Highest impact"
63
+ "message": "הכי הרבה השפעה"
64
64
  },
65
65
  "flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
66
- "message": "{numInformative, plural,\n =1 {{numInformative} informative audit}\n other {{numInformative} informative audits}\n }"
66
+ "message": "{numInformative,plural, =1{ביקורת אינפורמטיבית אחת ({numInformative})}two{{numInformative} ביקורות אינפורמטיביות}many{{numInformative} ביקורות אינפורמטיביות}other{{numInformative} ביקורות אינפורמטיביות}}"
67
67
  },
68
68
  "flow-report/src/i18n/ui-strings.js | mobile": {
69
69
  "message": "ניידים"
@@ -78,13 +78,13 @@
78
78
  "message": "דוח לגבי ניווט"
79
79
  },
80
80
  "flow-report/src/i18n/ui-strings.js | navigationReportCount": {
81
- "message": "{numNavigation, plural,\n =1 {{numNavigation} navigation report}\n other {{numNavigation} navigation reports}\n }"
81
+ "message": "{numNavigation,plural, =1{דוח אחד ({numNavigation}) לגבי ניווט}two{{numNavigation} דוחות לגבי ניווט}many{{numNavigation} דוחות לגבי ניווט}other{{numNavigation} דוחות לגבי ניווט}}"
82
82
  },
83
83
  "flow-report/src/i18n/ui-strings.js | passableAuditCount": {
84
- "message": "{numPassableAudits, plural,\n =1 {{numPassableAudits} passable audit}\n other {{numPassableAudits} passable audits}\n }"
84
+ "message": "{numPassableAudits,plural, =1{ביקורת עוברת אחת ({numPassableAudits})}two{{numPassableAudits} ביקורות עוברות}many{{numPassableAudits} ביקורות עוברות}other{{numPassableAudits} ביקורות עוברות}}"
85
85
  },
86
86
  "flow-report/src/i18n/ui-strings.js | passedAuditCount": {
87
- "message": "{numPassed, plural,\n =1 {{numPassed} audit passed}\n other {{numPassed} audits passed}\n }"
87
+ "message": "{numPassed,plural, =1{ביקורת אחת ({numPassed}) עברה}two{{numPassed} ביקורות עברו}many{{numPassed} ביקורות עברו}other{{numPassed} ביקורות עברו}}"
88
88
  },
89
89
  "flow-report/src/i18n/ui-strings.js | ratingAverage": {
90
90
  "message": "ממוצעת"
@@ -111,7 +111,7 @@
111
111
  "message": "דוח תמונת מצב"
112
112
  },
113
113
  "flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
114
- "message": "{numSnapshot, plural,\n =1 {{numSnapshot} snapshot report}\n other {{numSnapshot} snapshot reports}\n }"
114
+ "message": "{numSnapshot,plural, =1{דוח תמונת מצב אחד ({numSnapshot})}two{{numSnapshot} דוחות תמונת מצב}many{{numSnapshot} דוחות תמונת מצב}other{{numSnapshot} דוחות תמונת מצב}}"
115
115
  },
116
116
  "flow-report/src/i18n/ui-strings.js | summary": {
117
117
  "message": "סיכום"
@@ -126,7 +126,7 @@
126
126
  "message": "דוח על טווח זמן"
127
127
  },
128
128
  "flow-report/src/i18n/ui-strings.js | timespanReportCount": {
129
- "message": "{numTimespan, plural,\n =1 {{numTimespan} timespan report}\n other {{numTimespan} timespan reports}\n }"
129
+ "message": "{numTimespan,plural, =1{דוח אחד ({numTimespan}) על טווח זמן}two{{numTimespan} דוחות על טווח זמן}many{{numTimespan} דוחות על טווח זמן}other{{numTimespan} דוחות על טווח זמן}}"
130
130
  },
131
131
  "flow-report/src/i18n/ui-strings.js | title": {
132
132
  "message": "דוח Lighthouse על מסלולי משתמשים בדף"
@@ -1292,9 +1292,6 @@
1292
1292
  "lighthouse-core/audits/seo/canonical.js | explanationConflict": {
1293
1293
  "message": "התנגשויות בין כתובות URL מרובות ({urlList})"
1294
1294
  },
1295
- "lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
1296
- "message": "הכתובת מפנה לדומיין אחר ({url})"
1297
- },
1298
1295
  "lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
1299
1296
  "message": "כתובת אתר לא חוקית ({url})"
1300
1297
  },
@@ -2331,7 +2328,7 @@
2331
2328
  "message": "להצגת המחשבון."
2332
2329
  },
2333
2330
  "report/renderer/util.js | collapseView": {
2334
- "message": "Collapse view"
2331
+ "message": "כיווץ התצוגה"
2335
2332
  },
2336
2333
  "report/renderer/util.js | crcInitialNavigation": {
2337
2334
  "message": "ניווט התחלתי"
@@ -2370,13 +2367,13 @@
2370
2367
  "message": "שגיאה בדוח: אין מידע על הבדיקה"
2371
2368
  },
2372
2369
  "report/renderer/util.js | expandView": {
2373
- "message": "Expand view"
2370
+ "message": "הרחבת התצוגה"
2374
2371
  },
2375
2372
  "report/renderer/util.js | footerIssue": {
2376
2373
  "message": "דיווח על בעיה"
2377
2374
  },
2378
2375
  "report/renderer/util.js | hide": {
2379
- "message": "Hide"
2376
+ "message": "הסתרה"
2380
2377
  },
2381
2378
  "report/renderer/util.js | labDataTitle": {
2382
2379
  "message": "נתוני בדיקה"
@@ -2400,10 +2397,10 @@
2400
2397
  "message": "בדיקות עם ציון 'עובר'"
2401
2398
  },
2402
2399
  "report/renderer/util.js | runtimeAnalysisWindow": {
2403
- "message": "Initial page load"
2400
+ "message": "טעינת הדף הראשונית"
2404
2401
  },
2405
2402
  "report/renderer/util.js | runtimeCustom": {
2406
- "message": "Custom throttling"
2403
+ "message": "ויסות נתונים בהתאמה אישית"
2407
2404
  },
2408
2405
  "report/renderer/util.js | runtimeDesktopEmulation": {
2409
2406
  "message": "אמולציה של מחשב שולחני"
@@ -2433,19 +2430,19 @@
2433
2430
  "message": "סוכן משתמש (רשת)"
2434
2431
  },
2435
2432
  "report/renderer/util.js | runtimeSingleLoad": {
2436
- "message": "Single page load"
2433
+ "message": "טעינת דף יחיד"
2437
2434
  },
2438
2435
  "report/renderer/util.js | runtimeSingleLoadTooltip": {
2439
- "message": "This data is taken from a single page load, as opposed to field data summarizing many sessions."
2436
+ "message": "הנתונים האלה מגיעים מטעינת דף יחיד, בניגוד לנתוני שטח שמסכמים מספר סשנים."
2440
2437
  },
2441
2438
  "report/renderer/util.js | runtimeSlow4g": {
2442
- "message": "Slow 4G throttling"
2439
+ "message": "ויסות נתונים איטי ב-4G"
2443
2440
  },
2444
2441
  "report/renderer/util.js | runtimeUnknown": {
2445
2442
  "message": "ערך לא ידוע"
2446
2443
  },
2447
2444
  "report/renderer/util.js | show": {
2448
- "message": "Show"
2445
+ "message": "הצגה"
2449
2446
  },
2450
2447
  "report/renderer/util.js | showRelevantAudits": {
2451
2448
  "message": "הצגת הביקורות שרלוונטיות למדדים:"
@@ -1292,9 +1292,6 @@
1292
1292
  "lighthouse-core/audits/seo/canonical.js | explanationConflict": {
1293
1293
  "message": "कई कॉन्फ़्लिक्टिंग यूआरएल हैं ({urlList})"
1294
1294
  },
1295
- "lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
1296
- "message": "किसी दूसरे डोमेन की तरफ़ इशारा करता है ({url})"
1297
- },
1298
1295
  "lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
1299
1296
  "message": "गलत यूआरएल ({url})"
1300
1297
  },
@@ -60,10 +60,10 @@
60
60
  "message": "Discover performance opportunities to improve the experience for long-lived pages and single-page applications."
61
61
  },
62
62
  "flow-report/src/i18n/ui-strings.js | highestImpact": {
63
- "message": "Highest impact"
63
+ "message": "Najviši utjecaj"
64
64
  },
65
65
  "flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
66
- "message": "{numInformative, plural,\n =1 {{numInformative} informative audit}\n other {{numInformative} informative audits}\n }"
66
+ "message": "{numInformative,plural, =1{{numInformative} informativna revizija}one{{numInformative} informativna revizija}few{{numInformative} informativne revizije}other{{numInformative} informativnih revizija}}"
67
67
  },
68
68
  "flow-report/src/i18n/ui-strings.js | mobile": {
69
69
  "message": "Mobilna verzija"
@@ -78,13 +78,13 @@
78
78
  "message": "Izvješće o kretanju"
79
79
  },
80
80
  "flow-report/src/i18n/ui-strings.js | navigationReportCount": {
81
- "message": "{numNavigation, plural,\n =1 {{numNavigation} navigation report}\n other {{numNavigation} navigation reports}\n }"
81
+ "message": "{numNavigation,plural, =1{{numNavigation} izvješće o kretanju}one{{numNavigation} izvješće o kretanju}few{{numNavigation} izvješća o kretanju}other{{numNavigation} izvješća o kretanju}}"
82
82
  },
83
83
  "flow-report/src/i18n/ui-strings.js | passableAuditCount": {
84
- "message": "{numPassableAudits, plural,\n =1 {{numPassableAudits} passable audit}\n other {{numPassableAudits} passable audits}\n }"
84
+ "message": "{numPassableAudits,plural, =1{{numPassableAudits} prolazna revizija}one{{numPassableAudits} prolazna revizija}few{{numPassableAudits} prolazne revizije}other{{numPassableAudits} prolaznih revizija}}"
85
85
  },
86
86
  "flow-report/src/i18n/ui-strings.js | passedAuditCount": {
87
- "message": "{numPassed, plural,\n =1 {{numPassed} audit passed}\n other {{numPassed} audits passed}\n }"
87
+ "message": "{numPassed,plural, =1{{numPassed} uspješna revizija}one{{numPassed} uspješna revizija}few{{numPassed} uspješne revizije}other{{numPassed} uspješnih revizija}}"
88
88
  },
89
89
  "flow-report/src/i18n/ui-strings.js | ratingAverage": {
90
90
  "message": "Prosječno"
@@ -111,7 +111,7 @@
111
111
  "message": "Izvješće o snimci"
112
112
  },
113
113
  "flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
114
- "message": "{numSnapshot, plural,\n =1 {{numSnapshot} snapshot report}\n other {{numSnapshot} snapshot reports}\n }"
114
+ "message": "{numSnapshot,plural, =1{{numSnapshot} izvješće o snimci}one{{numSnapshot} izvješće o snimci}few{{numSnapshot} izvješća o snimci}other{{numSnapshot} izvješća o snimci}}"
115
115
  },
116
116
  "flow-report/src/i18n/ui-strings.js | summary": {
117
117
  "message": "Sažetak"
@@ -126,7 +126,7 @@
126
126
  "message": "Izvješće o razdoblju"
127
127
  },
128
128
  "flow-report/src/i18n/ui-strings.js | timespanReportCount": {
129
- "message": "{numTimespan, plural,\n =1 {{numTimespan} timespan report}\n other {{numTimespan} timespan reports}\n }"
129
+ "message": "{numTimespan,plural, =1{{numTimespan} izvješće o razdoblju}one{{numTimespan} izvješće o razdoblju}few{{numTimespan} izvješća o razdoblju}other{{numTimespan} izvješća o razdoblju}}"
130
130
  },
131
131
  "flow-report/src/i18n/ui-strings.js | title": {
132
132
  "message": "Lighthouseovo izvješće o putovima korisnika"
@@ -1292,9 +1292,6 @@
1292
1292
  "lighthouse-core/audits/seo/canonical.js | explanationConflict": {
1293
1293
  "message": "Više URL-ova u sukobu ({urlList})"
1294
1294
  },
1295
- "lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
1296
- "message": "Usmjerava na drugu domenu ({url})"
1297
- },
1298
1295
  "lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
1299
1296
  "message": "Nevažeći URL ({url})"
1300
1297
  },
@@ -2331,7 +2328,7 @@
2331
2328
  "message": "Pogledajte kalkulator."
2332
2329
  },
2333
2330
  "report/renderer/util.js | collapseView": {
2334
- "message": "Collapse view"
2331
+ "message": "Sažmi prikaz"
2335
2332
  },
2336
2333
  "report/renderer/util.js | crcInitialNavigation": {
2337
2334
  "message": "Početna navigacija"
@@ -2370,13 +2367,13 @@
2370
2367
  "message": "Pogreška izvješća: nema podataka o pregledu"
2371
2368
  },
2372
2369
  "report/renderer/util.js | expandView": {
2373
- "message": "Expand view"
2370
+ "message": "Proširi prikaz"
2374
2371
  },
2375
2372
  "report/renderer/util.js | footerIssue": {
2376
2373
  "message": "Prijavljivanje poteškoće"
2377
2374
  },
2378
2375
  "report/renderer/util.js | hide": {
2379
- "message": "Hide"
2376
+ "message": "Sakrij"
2380
2377
  },
2381
2378
  "report/renderer/util.js | labDataTitle": {
2382
2379
  "message": "Laboratorijski podaci"
@@ -2400,10 +2397,10 @@
2400
2397
  "message": "Uspješni pregledi"
2401
2398
  },
2402
2399
  "report/renderer/util.js | runtimeAnalysisWindow": {
2403
- "message": "Initial page load"
2400
+ "message": "Početno učitavanje stranice"
2404
2401
  },
2405
2402
  "report/renderer/util.js | runtimeCustom": {
2406
- "message": "Custom throttling"
2403
+ "message": "Prilagođeno potiskivanje"
2407
2404
  },
2408
2405
  "report/renderer/util.js | runtimeDesktopEmulation": {
2409
2406
  "message": "Emulirana radna površina"
@@ -2433,19 +2430,19 @@
2433
2430
  "message": "Korisnički agent (mreža)"
2434
2431
  },
2435
2432
  "report/renderer/util.js | runtimeSingleLoad": {
2436
- "message": "Single page load"
2433
+ "message": "Jedno učitavanje stranice"
2437
2434
  },
2438
2435
  "report/renderer/util.js | runtimeSingleLoadTooltip": {
2439
- "message": "This data is taken from a single page load, as opposed to field data summarizing many sessions."
2436
+ "message": "Ovi su podaci preuzeti s jednog učitavanja stranice, za razliku od podataka polja koji sažimaju mnoge sesije."
2440
2437
  },
2441
2438
  "report/renderer/util.js | runtimeSlow4g": {
2442
- "message": "Slow 4G throttling"
2439
+ "message": "Sporo 4G potiskivanje"
2443
2440
  },
2444
2441
  "report/renderer/util.js | runtimeUnknown": {
2445
2442
  "message": "Nepoznato"
2446
2443
  },
2447
2444
  "report/renderer/util.js | show": {
2448
- "message": "Show"
2445
+ "message": "Prikaži"
2449
2446
  },
2450
2447
  "report/renderer/util.js | showRelevantAudits": {
2451
2448
  "message": "Prikaži revizije relevantne za sljedeće:"
@@ -60,10 +60,10 @@
60
60
  "message": "teljesítményre vonatkozó lehetőségeket fedezhet fel a hosszú életű oldalak és az egyoldalas alkalmazásokkal kapcsolatos élmények javítása érdekében;"
61
61
  },
62
62
  "flow-report/src/i18n/ui-strings.js | highestImpact": {
63
- "message": "Highest impact"
63
+ "message": "Legnagyobb hatás"
64
64
  },
65
65
  "flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
66
- "message": "{numInformative, plural,\n =1 {{numInformative} informative audit}\n other {{numInformative} informative audits}\n }"
66
+ "message": "{numInformative,plural, =1{{numInformative} tájékoztató ellenőrzés}other{{numInformative} tájékoztató ellenőrzés}}"
67
67
  },
68
68
  "flow-report/src/i18n/ui-strings.js | mobile": {
69
69
  "message": "Mobil"
@@ -78,13 +78,13 @@
78
78
  "message": "Navigációs jelentés"
79
79
  },
80
80
  "flow-report/src/i18n/ui-strings.js | navigationReportCount": {
81
- "message": "{numNavigation, plural,\n =1 {{numNavigation} navigation report}\n other {{numNavigation} navigation reports}\n }"
81
+ "message": "{numNavigation,plural, =1{{numNavigation} navigációs jelentés}other{{numNavigation} navigációs jelentés}}"
82
82
  },
83
83
  "flow-report/src/i18n/ui-strings.js | passableAuditCount": {
84
- "message": "{numPassableAudits, plural,\n =1 {{numPassableAudits} passable audit}\n other {{numPassableAudits} passable audits}\n }"
84
+ "message": "{numPassableAudits,plural, =1{{numPassableAudits} teljesíthető ellenőrzés}other{{numPassableAudits} teljesíthető ellenőrzés}}"
85
85
  },
86
86
  "flow-report/src/i18n/ui-strings.js | passedAuditCount": {
87
- "message": "{numPassed, plural,\n =1 {{numPassed} audit passed}\n other {{numPassed} audits passed}\n }"
87
+ "message": "{numPassed,plural, =1{{numPassed} sikeres ellenőrzés}other{{numPassed} sikeres ellenőrzés}}"
88
88
  },
89
89
  "flow-report/src/i18n/ui-strings.js | ratingAverage": {
90
90
  "message": "Átlagos"
@@ -111,7 +111,7 @@
111
111
  "message": "Pillanatkép-jelentés"
112
112
  },
113
113
  "flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
114
- "message": "{numSnapshot, plural,\n =1 {{numSnapshot} snapshot report}\n other {{numSnapshot} snapshot reports}\n }"
114
+ "message": "{numSnapshot,plural, =1{{numSnapshot} pillanatkép-jelentés}other{{numSnapshot} pillanatkép-jelentés}}"
115
115
  },
116
116
  "flow-report/src/i18n/ui-strings.js | summary": {
117
117
  "message": "Összegzés"
@@ -126,7 +126,7 @@
126
126
  "message": "Időtartam-jelentés"
127
127
  },
128
128
  "flow-report/src/i18n/ui-strings.js | timespanReportCount": {
129
- "message": "{numTimespan, plural,\n =1 {{numTimespan} timespan report}\n other {{numTimespan} timespan reports}\n }"
129
+ "message": "{numTimespan,plural, =1{{numTimespan} időtartam-jelentés}other{{numTimespan} időtartam-jelentés}}"
130
130
  },
131
131
  "flow-report/src/i18n/ui-strings.js | title": {
132
132
  "message": "Lighthouse felhasználóimunkafolyamat-jelentés"
@@ -1292,9 +1292,6 @@
1292
1292
  "lighthouse-core/audits/seo/canonical.js | explanationConflict": {
1293
1293
  "message": "Több ütköző URL ({urlList})"
1294
1294
  },
1295
- "lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
1296
- "message": "Más domainre mutat ({url})"
1297
- },
1298
1295
  "lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
1299
1296
  "message": "Érvénytelen URL ({url})"
1300
1297
  },
@@ -2331,7 +2328,7 @@
2331
2328
  "message": "Számológép megtekintése"
2332
2329
  },
2333
2330
  "report/renderer/util.js | collapseView": {
2334
- "message": "Collapse view"
2331
+ "message": "Nézet összecsukása"
2335
2332
  },
2336
2333
  "report/renderer/util.js | crcInitialNavigation": {
2337
2334
  "message": "Kezdeti navigáció"
@@ -2370,13 +2367,13 @@
2370
2367
  "message": "Jelentési hiba: nincs ellenőrzési információ"
2371
2368
  },
2372
2369
  "report/renderer/util.js | expandView": {
2373
- "message": "Expand view"
2370
+ "message": "Nézet kibontása"
2374
2371
  },
2375
2372
  "report/renderer/util.js | footerIssue": {
2376
2373
  "message": "Probléma beküldése"
2377
2374
  },
2378
2375
  "report/renderer/util.js | hide": {
2379
- "message": "Hide"
2376
+ "message": "Elrejtés"
2380
2377
  },
2381
2378
  "report/renderer/util.js | labDataTitle": {
2382
2379
  "message": "Laboradatok"
@@ -2400,10 +2397,10 @@
2400
2397
  "message": "Sikeresen teljesített ellenőrzések"
2401
2398
  },
2402
2399
  "report/renderer/util.js | runtimeAnalysisWindow": {
2403
- "message": "Initial page load"
2400
+ "message": "Első oldalbetöltés"
2404
2401
  },
2405
2402
  "report/renderer/util.js | runtimeCustom": {
2406
- "message": "Custom throttling"
2403
+ "message": "Egyéni korlátozás"
2407
2404
  },
2408
2405
  "report/renderer/util.js | runtimeDesktopEmulation": {
2409
2406
  "message": "Emulált asztal"
@@ -2433,19 +2430,19 @@
2433
2430
  "message": "Felhasználói ügynök (hálózat)"
2434
2431
  },
2435
2432
  "report/renderer/util.js | runtimeSingleLoad": {
2436
- "message": "Single page load"
2433
+ "message": "Egyetlen oldalbetöltés"
2437
2434
  },
2438
2435
  "report/renderer/util.js | runtimeSingleLoadTooltip": {
2439
- "message": "This data is taken from a single page load, as opposed to field data summarizing many sessions."
2436
+ "message": "Ez az adat egyetlen oldalbetöltésből származik, nem pedig számos munkamenet összesítéséből."
2440
2437
  },
2441
2438
  "report/renderer/util.js | runtimeSlow4g": {
2442
- "message": "Slow 4G throttling"
2439
+ "message": "Lassú 4G emulálása"
2443
2440
  },
2444
2441
  "report/renderer/util.js | runtimeUnknown": {
2445
2442
  "message": "Ismeretlen"
2446
2443
  },
2447
2444
  "report/renderer/util.js | show": {
2448
- "message": "Show"
2445
+ "message": "Megjelenítés"
2449
2446
  },
2450
2447
  "report/renderer/util.js | showRelevantAudits": {
2451
2448
  "message": "A következővel kapcsolatos naplóbejegyzések megjelenítése:"
@@ -60,10 +60,10 @@
60
60
  "message": "Menemukan peluang performa guna meningkatkan pengalaman untuk halaman yang dibuka dalam waktu lama dan aplikasi web satu halaman."
61
61
  },
62
62
  "flow-report/src/i18n/ui-strings.js | highestImpact": {
63
- "message": "Highest impact"
63
+ "message": "Dampak tertinggi"
64
64
  },
65
65
  "flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
66
- "message": "{numInformative, plural,\n =1 {{numInformative} informative audit}\n other {{numInformative} informative audits}\n }"
66
+ "message": "{numInformative,plural, =1{{numInformative} audit informatif}other{{numInformative} audit informatif}}"
67
67
  },
68
68
  "flow-report/src/i18n/ui-strings.js | mobile": {
69
69
  "message": "Seluler"
@@ -78,13 +78,13 @@
78
78
  "message": "Laporan navigasi"
79
79
  },
80
80
  "flow-report/src/i18n/ui-strings.js | navigationReportCount": {
81
- "message": "{numNavigation, plural,\n =1 {{numNavigation} navigation report}\n other {{numNavigation} navigation reports}\n }"
81
+ "message": "{numNavigation,plural, =1{{numNavigation} laporan navigasi}other{{numNavigation} laporan navigasi}}"
82
82
  },
83
83
  "flow-report/src/i18n/ui-strings.js | passableAuditCount": {
84
- "message": "{numPassableAudits, plural,\n =1 {{numPassableAudits} passable audit}\n other {{numPassableAudits} passable audits}\n }"
84
+ "message": "{numPassableAudits,plural, =1{{numPassableAudits} audit yang dapat diluluskan}other{{numPassableAudits} audit yang dapat diluluskan}}"
85
85
  },
86
86
  "flow-report/src/i18n/ui-strings.js | passedAuditCount": {
87
- "message": "{numPassed, plural,\n =1 {{numPassed} audit passed}\n other {{numPassed} audits passed}\n }"
87
+ "message": "{numPassed,plural, =1{{numPassed} audit lulus}other{{numPassed} audit lulus}}"
88
88
  },
89
89
  "flow-report/src/i18n/ui-strings.js | ratingAverage": {
90
90
  "message": "Biasa"
@@ -111,7 +111,7 @@
111
111
  "message": "Laporan snapshot"
112
112
  },
113
113
  "flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
114
- "message": "{numSnapshot, plural,\n =1 {{numSnapshot} snapshot report}\n other {{numSnapshot} snapshot reports}\n }"
114
+ "message": "{numSnapshot,plural, =1{{numSnapshot} laporan snapshot}other{{numSnapshot} laporan snapshot}}"
115
115
  },
116
116
  "flow-report/src/i18n/ui-strings.js | summary": {
117
117
  "message": "Ringkasan"
@@ -126,7 +126,7 @@
126
126
  "message": "Laporan rentang waktu"
127
127
  },
128
128
  "flow-report/src/i18n/ui-strings.js | timespanReportCount": {
129
- "message": "{numTimespan, plural,\n =1 {{numTimespan} timespan report}\n other {{numTimespan} timespan reports}\n }"
129
+ "message": "{numTimespan,plural, =1{{numTimespan} laporan rentang waktu}other{{numTimespan} laporan rentang waktu}}"
130
130
  },
131
131
  "flow-report/src/i18n/ui-strings.js | title": {
132
132
  "message": "Laporan Alur Pengguna Lighthouse"
@@ -1292,9 +1292,6 @@
1292
1292
  "lighthouse-core/audits/seo/canonical.js | explanationConflict": {
1293
1293
  "message": "Ada beberapa URL yang bertentangan ({urlList})"
1294
1294
  },
1295
- "lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
1296
- "message": "Mengarahkan ke domain yang berbeda ({url})"
1297
- },
1298
1295
  "lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
1299
1296
  "message": "URL tidak valid ({url})"
1300
1297
  },
@@ -2331,7 +2328,7 @@
2331
2328
  "message": "Lihat kalkulator."
2332
2329
  },
2333
2330
  "report/renderer/util.js | collapseView": {
2334
- "message": "Collapse view"
2331
+ "message": "Ciutkan tampilan"
2335
2332
  },
2336
2333
  "report/renderer/util.js | crcInitialNavigation": {
2337
2334
  "message": "Navigasi Awal"
@@ -2370,13 +2367,13 @@
2370
2367
  "message": "Error laporan: tidak ada informasi audit"
2371
2368
  },
2372
2369
  "report/renderer/util.js | expandView": {
2373
- "message": "Expand view"
2370
+ "message": "Luaskan tampilan"
2374
2371
  },
2375
2372
  "report/renderer/util.js | footerIssue": {
2376
2373
  "message": "Laporkan masalah"
2377
2374
  },
2378
2375
  "report/renderer/util.js | hide": {
2379
- "message": "Hide"
2376
+ "message": "Sembunyikan"
2380
2377
  },
2381
2378
  "report/renderer/util.js | labDataTitle": {
2382
2379
  "message": "Data Lab"
@@ -2400,10 +2397,10 @@
2400
2397
  "message": "Lulus audit"
2401
2398
  },
2402
2399
  "report/renderer/util.js | runtimeAnalysisWindow": {
2403
- "message": "Initial page load"
2400
+ "message": "Pemuatan halaman awal"
2404
2401
  },
2405
2402
  "report/renderer/util.js | runtimeCustom": {
2406
- "message": "Custom throttling"
2403
+ "message": "Throttle kustom"
2407
2404
  },
2408
2405
  "report/renderer/util.js | runtimeDesktopEmulation": {
2409
2406
  "message": "Desktop Emulasi"
@@ -2433,19 +2430,19 @@
2433
2430
  "message": "Agen pengguna (jaringan)"
2434
2431
  },
2435
2432
  "report/renderer/util.js | runtimeSingleLoad": {
2436
- "message": "Single page load"
2433
+ "message": "Pemuatan satu halaman"
2437
2434
  },
2438
2435
  "report/renderer/util.js | runtimeSingleLoadTooltip": {
2439
- "message": "This data is taken from a single page load, as opposed to field data summarizing many sessions."
2436
+ "message": "Data ini diambil dari pemuatan satu halaman, tidak seperti data kolom yang merangkum banyak sesi."
2440
2437
  },
2441
2438
  "report/renderer/util.js | runtimeSlow4g": {
2442
- "message": "Slow 4G throttling"
2439
+ "message": "Throttle 4G lambat"
2443
2440
  },
2444
2441
  "report/renderer/util.js | runtimeUnknown": {
2445
2442
  "message": "Tidak dikenal"
2446
2443
  },
2447
2444
  "report/renderer/util.js | show": {
2448
- "message": "Show"
2445
+ "message": "Tampilkan"
2449
2446
  },
2450
2447
  "report/renderer/util.js | showRelevantAudits": {
2451
2448
  "message": "Tampilkan audit yang relevan dengan:"