chrome-devtools-frontend 1.0.941095 → 1.0.943017

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 (254) hide show
  1. package/WATCHLISTS +1 -1
  2. package/config/gni/all_devtools_files.gni +0 -62
  3. package/config/gni/devtools_grd_files.gni +55 -19
  4. package/config/gni/devtools_image_files.gni +2 -3
  5. package/front_end/.eslintrc.js +12 -1
  6. package/front_end/Images/src/feedback_button_icon.svg +3 -0
  7. package/front_end/Images/src/{feedback_thin_16x16_icon.svg → survey_feedback_icon.svg} +1 -1
  8. package/front_end/Tests.js +1 -32
  9. package/front_end/core/common/Color.ts +5 -0
  10. package/front_end/core/i18n/locales/en-US.json +20 -29
  11. package/front_end/core/i18n/locales/en-XL.json +20 -29
  12. package/front_end/core/sdk/CPUProfilerModel.ts +7 -9
  13. package/front_end/core/sdk/ConsoleModel.ts +26 -28
  14. package/front_end/core/sdk/DebuggerModel.ts +4 -14
  15. package/front_end/core/sdk/sdk-meta.ts +17 -3
  16. package/front_end/entrypoints/devtools_app/devtools_app.json +1 -11
  17. package/front_end/entrypoints/inspector/inspector.json +1 -3
  18. package/front_end/entrypoints/js_app/js_app.json +1 -3
  19. package/front_end/entrypoints/main/MainImpl.ts +26 -0
  20. package/front_end/entrypoints/node_app/node_app.json +1 -3
  21. package/front_end/entrypoints/shell/shell.js +0 -11
  22. package/front_end/entrypoints/shell/shell.json +1 -5
  23. package/front_end/entrypoints/worker_app/worker_app.json +1 -7
  24. package/front_end/generated/InspectorBackendCommands.js +19 -0
  25. package/front_end/generated/protocol-mapping.d.ts +31 -1
  26. package/front_end/generated/protocol-proxy-api.d.ts +34 -2
  27. package/front_end/generated/protocol.d.ts +81 -6
  28. package/front_end/global_typings/global_defs.d.ts +5 -0
  29. package/front_end/legacy_test_runner/bindings_test_runner/IsolatedFilesystemTestRunner.js +2 -2
  30. package/front_end/legacy_test_runner/console_test_runner/console_test_runner.js +14 -2
  31. package/front_end/legacy_test_runner/legacy_test_runner.ts +10 -1
  32. package/front_end/legacy_test_runner/test_runner/TestRunner.js +11 -0
  33. package/front_end/models/formatter/SourceFormatter.ts +0 -10
  34. package/front_end/models/workspace/UISourceCode.ts +9 -42
  35. package/front_end/panels/animation/AnimationTimeline.ts +3 -3
  36. package/front_end/panels/application/ApplicationPanelSidebar.ts +3 -3
  37. package/front_end/panels/application/BackForwardCacheStrings.ts +3 -1
  38. package/front_end/panels/application/application-meta.ts +0 -3
  39. package/front_end/panels/application/components/EndpointsGrid.ts +1 -1
  40. package/front_end/panels/application/components/ReportsGrid.ts +1 -1
  41. package/front_end/panels/console/ConsolePinPane.ts +21 -26
  42. package/front_end/panels/coverage/CoverageDecorationManager.ts +4 -5
  43. package/front_end/panels/coverage/CoverageView.ts +2 -105
  44. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +11 -56
  45. package/front_end/panels/css_overview/components/cssOverviewStartView.css +1 -8
  46. package/front_end/panels/elements/ElementsTreeElement.ts +4 -9
  47. package/front_end/panels/elements/components/StylePropertyEditor.ts +2 -0
  48. package/front_end/panels/elements/components/adornerSettingsPane.css +0 -4
  49. package/front_end/panels/emulation/DeviceModeToolbar.ts +3 -1
  50. package/front_end/panels/emulation/DeviceModeView.ts +2 -1
  51. package/front_end/panels/emulation/InspectedPagePlaceholder.ts +3 -1
  52. package/front_end/panels/emulation/MediaQueryInspector.ts +3 -1
  53. package/front_end/panels/emulation/emulation-meta.ts +2 -4
  54. package/front_end/panels/issues/issues-meta.ts +0 -2
  55. package/front_end/panels/js_profiler/js_profiler-meta.ts +0 -3
  56. package/front_end/panels/layers/module.json +0 -1
  57. package/front_end/panels/lighthouse/LighthousePanel.ts +2 -4
  58. package/front_end/panels/lighthouse/LighthouseReportRenderer.ts +1 -4
  59. package/front_end/panels/lighthouse/lighthouseStartView.css +4 -0
  60. package/front_end/panels/lighthouse/module.json +0 -6
  61. package/front_end/panels/media/media-meta.ts +0 -3
  62. package/front_end/panels/network/ResourceWebSocketFrameView.ts +2 -1
  63. package/front_end/panels/network/network-meta.ts +0 -3
  64. package/front_end/panels/profiler/CPUProfileView.ts +10 -3
  65. package/front_end/panels/profiler/profiler-meta.ts +0 -2
  66. package/front_end/panels/screencast/screencast-meta.ts +0 -3
  67. package/front_end/panels/security/security-meta.ts +0 -3
  68. package/front_end/panels/sources/BreakpointEditDialog.ts +16 -30
  69. package/front_end/panels/sources/CSSPlugin.ts +310 -331
  70. package/front_end/panels/sources/CallStackSidebarPane.ts +28 -34
  71. package/front_end/panels/sources/CoveragePlugin.ts +121 -6
  72. package/front_end/panels/sources/DebuggerPlugin.ts +1166 -1243
  73. package/front_end/panels/sources/EditingLocationHistoryManager.ts +71 -101
  74. package/front_end/panels/sources/GoToLineQuickOpen.ts +4 -3
  75. package/front_end/panels/sources/InplaceFormatterEditorAction.ts +3 -3
  76. package/front_end/panels/sources/JavaScriptCompilerPlugin.ts +26 -23
  77. package/front_end/panels/sources/Plugin.ts +20 -4
  78. package/front_end/panels/sources/ProfilePlugin.ts +185 -0
  79. package/front_end/panels/sources/ScriptFormatterEditorAction.ts +3 -3
  80. package/front_end/panels/sources/ScriptOriginPlugin.ts +0 -10
  81. package/front_end/panels/sources/SnippetsPlugin.ts +1 -10
  82. package/front_end/panels/sources/SourcesPanel.ts +6 -5
  83. package/front_end/panels/sources/SourcesView.ts +10 -8
  84. package/front_end/panels/sources/TabbedEditorContainer.ts +31 -27
  85. package/front_end/panels/sources/UISourceCodeFrame.ts +335 -470
  86. package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +3 -2
  87. package/front_end/panels/sources/sources-legacy.ts +0 -6
  88. package/front_end/panels/sources/sources-meta.ts +1 -4
  89. package/front_end/panels/sources/sources.ts +0 -2
  90. package/front_end/panels/timeline/timeline-meta.ts +0 -5
  91. package/front_end/third_party/codemirror.next/bundle.ts +9 -13
  92. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  93. package/front_end/third_party/codemirror.next/chunk/javascript.js +2 -2
  94. package/front_end/third_party/codemirror.next/chunk/markdown.js +2 -6
  95. package/front_end/third_party/codemirror.next/chunk/php.js +2 -6
  96. package/front_end/third_party/codemirror.next/chunk/python.js +1 -1
  97. package/front_end/third_party/codemirror.next/chunk/wast.js +1 -1
  98. package/front_end/third_party/codemirror.next/chunk/xml.js +2 -2
  99. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +279 -198
  100. package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
  101. package/front_end/third_party/codemirror.next/package.json +13 -11
  102. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +1128 -1158
  103. package/front_end/third_party/lighthouse/locales/ar-XB.json +211 -79
  104. package/front_end/third_party/lighthouse/locales/ar.json +213 -81
  105. package/front_end/third_party/lighthouse/locales/bg.json +211 -79
  106. package/front_end/third_party/lighthouse/locales/ca.json +212 -80
  107. package/front_end/third_party/lighthouse/locales/cs.json +211 -79
  108. package/front_end/third_party/lighthouse/locales/da.json +211 -79
  109. package/front_end/third_party/lighthouse/locales/de.json +211 -79
  110. package/front_end/third_party/lighthouse/locales/el.json +213 -81
  111. package/front_end/third_party/lighthouse/locales/en-GB.json +211 -79
  112. package/front_end/third_party/lighthouse/locales/en-US.json +186 -75
  113. package/front_end/third_party/lighthouse/locales/en-XA.json +211 -79
  114. package/front_end/third_party/lighthouse/locales/en-XL.json +186 -75
  115. package/front_end/third_party/lighthouse/locales/es-419.json +211 -79
  116. package/front_end/third_party/lighthouse/locales/es.json +212 -80
  117. package/front_end/third_party/lighthouse/locales/fi.json +211 -79
  118. package/front_end/third_party/lighthouse/locales/fil.json +211 -79
  119. package/front_end/third_party/lighthouse/locales/fr.json +211 -79
  120. package/front_end/third_party/lighthouse/locales/he.json +212 -80
  121. package/front_end/third_party/lighthouse/locales/hi.json +214 -82
  122. package/front_end/third_party/lighthouse/locales/hr.json +211 -79
  123. package/front_end/third_party/lighthouse/locales/hu.json +211 -79
  124. package/front_end/third_party/lighthouse/locales/id.json +211 -79
  125. package/front_end/third_party/lighthouse/locales/it.json +211 -79
  126. package/front_end/third_party/lighthouse/locales/ja.json +211 -79
  127. package/front_end/third_party/lighthouse/locales/ko.json +211 -79
  128. package/front_end/third_party/lighthouse/locales/lt.json +211 -79
  129. package/front_end/third_party/lighthouse/locales/lv.json +214 -82
  130. package/front_end/third_party/lighthouse/locales/nl.json +211 -79
  131. package/front_end/third_party/lighthouse/locales/no.json +211 -79
  132. package/front_end/third_party/lighthouse/locales/pl.json +211 -79
  133. package/front_end/third_party/lighthouse/locales/pt-PT.json +211 -79
  134. package/front_end/third_party/lighthouse/locales/pt.json +211 -79
  135. package/front_end/third_party/lighthouse/locales/ro.json +212 -80
  136. package/front_end/third_party/lighthouse/locales/ru.json +211 -79
  137. package/front_end/third_party/lighthouse/locales/sk.json +211 -79
  138. package/front_end/third_party/lighthouse/locales/sl.json +211 -79
  139. package/front_end/third_party/lighthouse/locales/sr-Latn.json +211 -79
  140. package/front_end/third_party/lighthouse/locales/sr.json +211 -79
  141. package/front_end/third_party/lighthouse/locales/sv.json +211 -79
  142. package/front_end/third_party/lighthouse/locales/ta.json +218 -86
  143. package/front_end/third_party/lighthouse/locales/te.json +251 -119
  144. package/front_end/third_party/lighthouse/locales/th.json +211 -79
  145. package/front_end/third_party/lighthouse/locales/tr.json +211 -79
  146. package/front_end/third_party/lighthouse/locales/uk.json +212 -80
  147. package/front_end/third_party/lighthouse/locales/vi.json +211 -79
  148. package/front_end/third_party/lighthouse/locales/zh-HK.json +211 -79
  149. package/front_end/third_party/lighthouse/locales/zh-TW.json +211 -79
  150. package/front_end/third_party/lighthouse/locales/zh.json +211 -79
  151. package/front_end/third_party/lighthouse/report/bundle.d.ts +72 -34
  152. package/front_end/third_party/lighthouse/report/bundle.js +698 -492
  153. package/front_end/third_party/lighthouse/report-assets/report-generator.js +1 -2
  154. package/front_end/third_party/lighthouse/report-assets/report.js +40 -35
  155. package/front_end/third_party/lighthouse/report-assets/standalone-template.html +2 -4
  156. package/front_end/ui/components/code_highlighter/CodeHighlighter.ts +60 -68
  157. package/front_end/ui/components/data_grid/dataGrid.css +12 -10
  158. package/front_end/ui/components/docs/css_overview/start_view.html +25 -0
  159. package/front_end/ui/components/docs/css_overview/start_view.ts +14 -0
  160. package/front_end/ui/components/docs/icon_button/basic.ts +3 -3
  161. package/front_end/ui/components/docs/panel_feedback/button.html +25 -0
  162. package/front_end/ui/components/docs/panel_feedback/button.ts +18 -0
  163. package/front_end/ui/components/helpers/get-stylesheet.ts +0 -14
  164. package/front_end/ui/components/markdown_view/MarkdownImagesMap.ts +1 -1
  165. package/front_end/ui/components/panel_feedback/FeedbackButton.ts +67 -0
  166. package/front_end/ui/components/panel_feedback/panel_feedback.ts +1 -0
  167. package/front_end/ui/components/survey_link/SurveyLink.ts +1 -1
  168. package/front_end/ui/components/text_editor/TextEditor.ts +79 -36
  169. package/front_end/ui/components/text_editor/config.ts +42 -26
  170. package/front_end/ui/components/text_editor/javascript.ts +2 -3
  171. package/front_end/ui/components/text_editor/position.ts +17 -0
  172. package/front_end/ui/components/text_editor/text_editor.ts +1 -0
  173. package/front_end/ui/components/text_editor/theme.ts +5 -1
  174. package/front_end/ui/legacy/Dialog.ts +3 -1
  175. package/front_end/ui/legacy/DropTarget.ts +2 -1
  176. package/front_end/ui/legacy/EmptyWidget.ts +2 -1
  177. package/front_end/ui/legacy/FilterBar.ts +2 -1
  178. package/front_end/ui/legacy/GlassPane.ts +4 -2
  179. package/front_end/ui/legacy/Infobar.ts +5 -8
  180. package/front_end/ui/legacy/InspectorView.ts +6 -1
  181. package/front_end/ui/legacy/ListWidget.ts +2 -1
  182. package/front_end/ui/legacy/PopoverHelper.ts +2 -1
  183. package/front_end/ui/legacy/ProgressIndicator.ts +2 -1
  184. package/front_end/ui/legacy/RemoteDebuggingTerminatedScreen.ts +2 -1
  185. package/front_end/ui/legacy/ReportView.ts +2 -1
  186. package/front_end/ui/legacy/RootView.ts +2 -1
  187. package/front_end/ui/legacy/SearchableView.ts +2 -1
  188. package/front_end/ui/legacy/ShortcutRegistry.ts +11 -7
  189. package/front_end/ui/legacy/SoftContextMenu.ts +2 -1
  190. package/front_end/ui/legacy/SoftDropDown.ts +4 -2
  191. package/front_end/ui/legacy/SplitWidget.ts +2 -1
  192. package/front_end/ui/legacy/SuggestBox.ts +2 -1
  193. package/front_end/ui/legacy/TabbedPane.ts +2 -1
  194. package/front_end/ui/legacy/TargetCrashedScreen.ts +2 -1
  195. package/front_end/ui/legacy/TextPrompt.ts +2 -1
  196. package/front_end/ui/legacy/Toolbar.ts +3 -2
  197. package/front_end/ui/legacy/Treeoutline.ts +3 -2
  198. package/front_end/ui/legacy/UIUtils.ts +16 -13
  199. package/front_end/ui/legacy/ViewManager.ts +2 -1
  200. package/front_end/ui/legacy/Widget.ts +1 -1
  201. package/front_end/ui/legacy/components/object_ui/object_ui-meta.ts +0 -3
  202. package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +2 -1
  203. package/front_end/ui/legacy/components/perf_ui/FilmStripView.ts +3 -1
  204. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +2 -1
  205. package/front_end/ui/legacy/components/perf_ui/LineLevelProfile.ts +35 -131
  206. package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +2 -1
  207. package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +3 -1
  208. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +2 -1
  209. package/front_end/ui/legacy/components/perf_ui/perf_ui-meta.ts +0 -2
  210. package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +2 -2
  211. package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.ts +3 -6
  212. package/front_end/ui/legacy/components/source_frame/FontView.ts +1 -0
  213. package/front_end/ui/legacy/components/source_frame/ImageView.ts +1 -0
  214. package/front_end/ui/legacy/components/source_frame/JSONView.ts +1 -0
  215. package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +19 -14
  216. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +501 -252
  217. package/front_end/ui/legacy/components/source_frame/XMLView.ts +2 -0
  218. package/front_end/ui/legacy/components/source_frame/module.json +0 -3
  219. package/front_end/ui/legacy/components/source_frame/source_frame-legacy.ts +0 -11
  220. package/front_end/ui/legacy/components/source_frame/source_frame.ts +0 -2
  221. package/front_end/ui/legacy/components/text_editor/CodeMirrorTextEditor.ts +2 -0
  222. package/front_end/ui/legacy/components/text_editor/cmdevtools.css +3 -1
  223. package/front_end/ui/legacy/components/text_editor/module.json +0 -3
  224. package/front_end/ui/legacy/components/utils/Linkifier.ts +7 -15
  225. package/front_end/ui/legacy/radioButton.css +1 -13
  226. package/front_end/ui/legacy/textButton.css +5 -4
  227. package/front_end/ui/legacy/themeColors.css +36 -0
  228. package/front_end/ui/legacy/theme_support/theme_support_impl.ts +7 -9
  229. package/front_end/ui/legacy/utils/append-style.ts +9 -4
  230. package/front_end/ui/legacy/utils/create-shadow-root-with-core-styles.ts +2 -2
  231. package/front_end/ui/legacy/utils/inject-core-styles.ts +7 -4
  232. package/package.json +1 -1
  233. package/scripts/build/generate_css_js_files.js +23 -9
  234. package/scripts/build/ninja/generate_css.gni +10 -1
  235. package/scripts/eslint_rules/lib/check_css_import.js +2 -2
  236. package/scripts/eslint_rules/tests/check_css_import_test.js +12 -0
  237. package/front_end/Images/radioDot-dark-theme.png +0 -0
  238. package/front_end/Images/radioDot.png +0 -0
  239. package/front_end/emulated_devices/module.json +0 -6
  240. package/front_end/panels/application/module.json +0 -7
  241. package/front_end/panels/emulation/module.json +0 -11
  242. package/front_end/panels/issues/module.json +0 -6
  243. package/front_end/panels/js_profiler/module.json +0 -5
  244. package/front_end/panels/layer_viewer/module.json +0 -6
  245. package/front_end/panels/media/module.json +0 -6
  246. package/front_end/panels/network/module.json +0 -6
  247. package/front_end/panels/profiler/module.json +0 -6
  248. package/front_end/panels/screencast/module.json +0 -6
  249. package/front_end/panels/security/module.json +0 -5
  250. package/front_end/panels/timeline/module.json +0 -8
  251. package/front_end/third_party/lighthouse/report-assets/report.css +0 -1774
  252. package/front_end/ui/legacy/components/perf_ui/module.json +0 -13
  253. package/front_end/ui/legacy/components/source_frame/SourcesTextEditor.ts +0 -1030
  254. 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": "Âĺl̂ Ŕêṕôŕt̂ś"
4
+ },
5
+ "flow-report/src/i18n/ui-strings.js | categories": {
6
+ "message": "Ĉát̂éĝór̂íêś"
7
+ },
8
+ "flow-report/src/i18n/ui-strings.js | categoryAccessibility": {
9
+ "message": "Âćĉéŝśîb́îĺît́ŷ"
10
+ },
11
+ "flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
12
+ "message": "B̂éŝt́ P̂ŕâćt̂íĉéŝ"
13
+ },
14
+ "flow-report/src/i18n/ui-strings.js | categoryPerformance": {
15
+ "message": "P̂ér̂f́ôŕm̂án̂ćê"
16
+ },
17
+ "flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
18
+ "message": "P̂ŕôǵr̂éŝśîv́ê Ẃêb́ Âṕp̂"
19
+ },
20
+ "flow-report/src/i18n/ui-strings.js | categorySeo": {
21
+ "message": "ŜÉÔ"
22
+ },
23
+ "flow-report/src/i18n/ui-strings.js | desktop": {
24
+ "message": "D̂éŝḱt̂óp̂"
25
+ },
26
+ "flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
27
+ "message": "Ûńd̂ér̂śt̂án̂d́îńĝ t́ĥé L̂íĝh́t̂h́ôúŝé F̂ĺôẃ R̂ép̂ór̂t́"
28
+ },
29
+ "flow-report/src/i18n/ui-strings.js | helpLabel": {
30
+ "message": "Ûńd̂ér̂śt̂án̂d́îńĝ F́l̂óŵś"
31
+ },
32
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
33
+ "message": "Ûśê Ńâv́îǵât́îón̂ ŕêṕôŕt̂ś t̂ó..."
34
+ },
35
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
36
+ "message": "Ûśê Śn̂áp̂śĥót̂ ŕêṕôŕt̂ś t̂ó..."
37
+ },
38
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
39
+ "message": "Ûśê T́îḿêśp̂án̂ ŕêṕôŕt̂ś t̂ó..."
40
+ },
41
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
42
+ "message": "Ôb́t̂áîń â Ĺîǵĥt́ĥóûśê Ṕêŕf̂ór̂ḿâńĉé ŝćôŕê."
43
+ },
44
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
45
+ "message": "M̂éâśûŕê ṕâǵê ĺôád̂ Ṕêŕf̂ór̂ḿâńĉé m̂ét̂ŕîćŝ śûćĥ áŝ Ĺâŕĝéŝt́ Ĉón̂t́êńt̂f́ûĺ P̂áîńt̂ án̂d́ Ŝṕêéd̂ Ín̂d́êx́."
46
+ },
47
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
48
+ "message": "Âśŝéŝś P̂ŕôǵr̂éŝśîv́ê Ẃêb́ Âṕp̂ ćâṕâb́îĺît́îéŝ."
49
+ },
50
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
51
+ "message": "F̂ín̂d́ âćĉéŝśîb́îĺît́ŷ íŝśûéŝ ín̂ śîńĝĺê ṕâǵê áp̂ṕl̂íĉát̂íôńŝ ór̂ ćôḿp̂ĺêx́ f̂ór̂ḿŝ."
52
+ },
53
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
54
+ "message": "Êv́âĺûát̂é b̂éŝt́ p̂ŕâćt̂íĉéŝ óf̂ ḿêńûś âńd̂ ÚÎ él̂ém̂én̂t́ŝ h́îd́d̂én̂ b́êh́îńd̂ ín̂t́êŕâćt̂íôń."
55
+ },
56
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
57
+ "message": "M̂éâśûŕê ĺâýôút̂ śĥíf̂t́ŝ án̂d́ Ĵáv̂áŜćr̂íp̂t́ êx́êćût́îón̂ t́îḿê ón̂ á ŝér̂íêś ôf́ îńt̂ér̂áĉt́îón̂ś."
58
+ },
59
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
60
+ "message": "D̂íŝćôv́êŕ p̂ér̂f́ôŕm̂án̂ćê óp̂ṕôŕt̂ún̂ít̂íêś t̂ó îḿp̂ŕôv́ê t́ĥé êx́p̂ér̂íêńĉé f̂ór̂ ĺôńĝ-ĺîv́êd́ p̂áĝéŝ án̂d́ ŝín̂ǵl̂é-p̂áĝé âṕp̂ĺîćât́îón̂ś."
61
+ },
62
+ "flow-report/src/i18n/ui-strings.js | highestImpact": {
63
+ "message": "Ĥíĝh́êśt̂ ím̂ṕâćt̂"
64
+ },
65
+ "flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
66
+ "message": "{numInformative, plural,\n =1 {{numInformative} îńf̂ór̂ḿât́îv́ê áûd́ît́}\n other {{numInformative} îńf̂ór̂ḿât́îv́ê áûd́ît́ŝ}\n }"
67
+ },
68
+ "flow-report/src/i18n/ui-strings.js | mobile": {
69
+ "message": "M̂ób̂íl̂é"
70
+ },
71
+ "flow-report/src/i18n/ui-strings.js | navigationDescription": {
72
+ "message": "P̂áĝé l̂óâd́"
73
+ },
74
+ "flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
75
+ "message": "N̂áv̂íĝát̂íôń r̂ép̂ór̂t́ŝ án̂ál̂ýẑé â śîńĝĺê ṕâǵê ĺôád̂, éx̂áĉt́l̂ý l̂ík̂é t̂h́ê ór̂íĝín̂ál̂ Ĺîǵĥt́ĥóûśê ŕêṕôŕt̂ś."
76
+ },
77
+ "flow-report/src/i18n/ui-strings.js | navigationReport": {
78
+ "message": "N̂áv̂íĝát̂íôń r̂ép̂ór̂t́"
79
+ },
80
+ "flow-report/src/i18n/ui-strings.js | navigationReportCount": {
81
+ "message": "{numNavigation, plural,\n =1 {{numNavigation} n̂áv̂íĝát̂íôń r̂ép̂ór̂t́}\n other {{numNavigation} n̂áv̂íĝát̂íôń r̂ép̂ór̂t́ŝ}\n }"
82
+ },
83
+ "flow-report/src/i18n/ui-strings.js | passableAuditCount": {
84
+ "message": "{numPassableAudits, plural,\n =1 {{numPassableAudits} p̂áŝśâb́l̂é âúd̂ít̂}\n other {{numPassableAudits} ṕâśŝáb̂ĺê áûd́ît́ŝ}\n }"
85
+ },
86
+ "flow-report/src/i18n/ui-strings.js | passedAuditCount": {
87
+ "message": "{numPassed, plural,\n =1 {{numPassed} âúd̂ít̂ ṕâśŝéd̂}\n other {{numPassed} áûd́ît́ŝ ṕâśŝéd̂}\n }"
88
+ },
89
+ "flow-report/src/i18n/ui-strings.js | ratingAverage": {
90
+ "message": "Âv́êŕâǵê"
91
+ },
92
+ "flow-report/src/i18n/ui-strings.js | ratingError": {
93
+ "message": "Êŕr̂ór̂"
94
+ },
95
+ "flow-report/src/i18n/ui-strings.js | ratingFail": {
96
+ "message": "P̂óôŕ"
97
+ },
98
+ "flow-report/src/i18n/ui-strings.js | ratingPass": {
99
+ "message": "Ĝóôd́"
100
+ },
101
+ "flow-report/src/i18n/ui-strings.js | save": {
102
+ "message": "Ŝáv̂é"
103
+ },
104
+ "flow-report/src/i18n/ui-strings.js | snapshotDescription": {
105
+ "message": "Ĉáp̂t́ûŕêd́ ŝt́ât́ê óf̂ ṕâǵê"
106
+ },
107
+ "flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
108
+ "message": "Ŝńâṕŝh́ôt́ r̂ép̂ór̂t́ŝ án̂ál̂ýẑé t̂h́ê ṕâǵê ín̂ á p̂ár̂t́îćûĺâŕ ŝt́ât́ê, t́ŷṕîćâĺl̂ý âf́t̂ér̂ úŝér̂ ín̂t́êŕâćt̂íôńŝ."
109
+ },
110
+ "flow-report/src/i18n/ui-strings.js | snapshotReport": {
111
+ "message": "Ŝńâṕŝh́ôt́ r̂ép̂ór̂t́"
112
+ },
113
+ "flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
114
+ "message": "{numSnapshot, plural,\n =1 {{numSnapshot} ŝńâṕŝh́ôt́ r̂ép̂ór̂t́}\n other {{numSnapshot} ŝńâṕŝh́ôt́ r̂ép̂ór̂t́ŝ}\n }"
115
+ },
116
+ "flow-report/src/i18n/ui-strings.js | summary": {
117
+ "message": "Ŝúm̂ḿâŕŷ"
118
+ },
119
+ "flow-report/src/i18n/ui-strings.js | timespanDescription": {
120
+ "message": "Ûśêŕ îńt̂ér̂áĉt́îón̂ś"
121
+ },
122
+ "flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
123
+ "message": "T̂ím̂éŝṕâń r̂ép̂ór̂t́ŝ án̂ál̂ýẑé âń âŕb̂ít̂ŕâŕŷ ṕêŕîód̂ óf̂ t́îḿê, t́ŷṕîćâĺl̂ý ĉón̂t́âín̂ín̂ǵ ûśêŕ îńt̂ér̂áĉt́îón̂ś."
124
+ },
125
+ "flow-report/src/i18n/ui-strings.js | timespanReport": {
126
+ "message": "T̂ím̂éŝṕâń r̂ép̂ór̂t́"
127
+ },
128
+ "flow-report/src/i18n/ui-strings.js | timespanReportCount": {
129
+ "message": "{numTimespan, plural,\n =1 {{numTimespan} t̂ím̂éŝṕâń r̂ép̂ór̂t́}\n other {{numTimespan} t̂ím̂éŝṕâń r̂ép̂ór̂t́ŝ}\n }"
130
+ },
131
+ "flow-report/src/i18n/ui-strings.js | title": {
132
+ "message": "L̂íĝh́t̂h́ôúŝé Ûśêŕ F̂ĺôẃ R̂ép̂ór̂t́"
133
+ },
2
134
  "lighthouse-core/audits/accessibility/accesskeys.js | description": {
3
135
  "message": "Âćĉéŝś k̂éŷś l̂ét̂ úŝér̂ś q̂úîćk̂ĺŷ f́ôćûś â ṕâŕt̂ óf̂ t́ĥé p̂áĝé. F̂ór̂ ṕr̂óp̂ér̂ ńâv́îǵât́îón̂, éâćĥ áĉćêśŝ ḱêý m̂úŝt́ b̂é ûńîq́ûé. [L̂éâŕn̂ ḿôŕê](https://web.dev/accesskeys/)."
4
136
  },
@@ -632,18 +764,6 @@
632
764
  "lighthouse-core/audits/deprecations.js | title": {
633
765
  "message": "Âv́ôíd̂ś d̂ép̂ŕêćât́êd́ ÂṔÎś"
634
766
  },
635
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
636
- "message": "Âṕp̂ĺîćât́îón̂ Ćâćĥé îś d̂ép̂ŕêćât́êd́. [L̂éâŕn̂ ḿôŕê](https://web.dev/appcache-manifest/)."
637
- },
638
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
639
- "message": "F̂óûńd̂ \"{AppCacheManifest}\""
640
- },
641
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
642
- "message": "Ûśêś Âṕp̂ĺîćât́îón̂ Ćâćĥé"
643
- },
644
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
645
- "message": "Âv́ôíd̂ś Âṕp̂ĺîćât́îón̂ Ćâćĥé"
646
- },
647
767
  "lighthouse-core/audits/dobetterweb/charset.js | description": {
648
768
  "message": "Â ćĥár̂áĉt́êŕ êńĉód̂ín̂ǵ d̂éĉĺâŕât́îón̂ íŝ ŕêq́ûír̂éd̂. Ít̂ ćâń b̂é d̂ón̂é ŵít̂h́ â `<meta>` t́âǵ îń t̂h́ê f́îŕŝt́ 1024 b̂ýt̂éŝ óf̂ t́ĥé ĤT́M̂Ĺ ôŕ îń t̂h́ê Ćôńt̂én̂t́-T̂ýp̂é ĤT́T̂Ṕ r̂éŝṕôńŝé ĥéâd́êŕ. [L̂éâŕn̂ ḿôŕê](https://web.dev/charset/)."
649
769
  },
@@ -701,21 +821,6 @@
701
821
  "lighthouse-core/audits/dobetterweb/dom-size.js | title": {
702
822
  "message": "Âv́ôíd̂ś âń êx́ĉéŝśîv́ê D́ÔḾ ŝíẑé"
703
823
  },
704
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | columnFailingAnchors": {
705
- "message": "F̂áîĺîńĝ Án̂ćĥór̂ś"
706
- },
707
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | description": {
708
- "message": "Âd́d̂ `rel=\"noopener\"` ór̂ `rel=\"noreferrer\"` t́ô án̂ý êx́t̂ér̂ńâĺ l̂ín̂ḱŝ t́ô ím̂ṕr̂óv̂é p̂ér̂f́ôŕm̂án̂ćê án̂d́ p̂ŕêv́êńt̂ śêćûŕît́ŷ v́ûĺn̂ér̂áb̂íl̂ít̂íêś. [L̂éâŕn̂ ḿôŕê](https://web.dev/external-anchors-use-rel-noopener/)."
709
- },
710
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | failureTitle": {
711
- "message": "L̂ín̂ḱŝ t́ô ćr̂óŝś-ôŕîǵîń d̂éŝt́îńât́îón̂ś âŕê ún̂śâf́ê"
712
- },
713
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | title": {
714
- "message": "L̂ín̂ḱŝ t́ô ćr̂óŝś-ôŕîǵîń d̂éŝt́îńât́îón̂ś âŕê śâf́ê"
715
- },
716
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | warning": {
717
- "message": "Ûńâb́l̂é t̂ó d̂ét̂ér̂ḿîńê t́ĥé d̂éŝt́îńât́îón̂ f́ôŕ âńĉh́ôŕ ({anchorHTML}). Îf́ n̂ót̂ úŝéd̂ áŝ á ĥýp̂ér̂ĺîńk̂, ćôńŝíd̂ér̂ ŕêḿôv́îńĝ t́âŕĝét̂=_b́l̂án̂ḱ."
718
- },
719
824
  "lighthouse-core/audits/dobetterweb/geolocation-on-start.js | description": {
720
825
  "message": "Ûśêŕŝ ár̂é m̂íŝt́r̂úŝt́f̂úl̂ óf̂ ór̂ ćôńf̂úŝéd̂ b́ŷ śît́êś t̂h́ât́ r̂éq̂úêśt̂ t́ĥéîŕ l̂óĉát̂íôń ŵít̂h́ôút̂ ćôńt̂éx̂t́. Ĉón̂śîd́êŕ t̂ýîńĝ t́ĥé r̂éq̂úêśt̂ t́ô á ûśêŕ âćt̂íôń îńŝt́êád̂. [Ĺêár̂ń m̂ór̂é](https://web.dev/geolocation-on-start/)."
721
826
  },
@@ -956,6 +1061,9 @@
956
1061
  "lighthouse-core/audits/installable-manifest.js | prefer-related-applications-only-beta-stable": {
957
1062
  "message": "p̂ŕêf́êŕ_r̂él̂át̂éd̂_áp̂ṕl̂íĉát̂íôńŝ íŝ ón̂ĺŷ śûṕp̂ór̂t́êd́ ôń Ĉh́r̂óm̂é B̂ét̂á âńd̂ Śt̂áb̂ĺê ćĥán̂ńêĺŝ ón̂ Án̂d́r̂óîd́."
958
1063
  },
1064
+ "lighthouse-core/audits/installable-manifest.js | protocol-timeout": {
1065
+ "message": "L̂íĝh́t̂h́ôúŝé ĉóûĺd̂ ńôt́ d̂ét̂ér̂ḿîńê íf̂ t́ĥér̂é ŵáŝ á ŝér̂v́îćê ẃôŕk̂ér̂. Ṕl̂éâśê t́r̂ý ŵít̂h́ â ńêẃêŕ v̂ér̂śîón̂ óf̂ Ćĥŕôḿê."
1066
+ },
959
1067
  "lighthouse-core/audits/installable-manifest.js | start-url-not-valid": {
960
1068
  "message": "M̂án̂íf̂éŝt́ ŝt́âŕt̂ ÚR̂Ĺ îś n̂ót̂ v́âĺîd́"
961
1069
  },
@@ -1166,15 +1274,6 @@
1166
1274
  "lighthouse-core/audits/preload-lcp-image.js | title": {
1167
1275
  "message": "P̂ŕêĺôád̂ Ĺâŕĝéŝt́ Ĉón̂t́êńt̂f́ûĺ P̂áîńt̂ ím̂áĝé"
1168
1276
  },
1169
- "lighthouse-core/audits/redirects-http.js | description": {
1170
- "message": "Îf́ ŷóû'v́ê ál̂ŕêád̂ý ŝét̂ úp̂ H́T̂T́P̂Ś, m̂ák̂é ŝúr̂é t̂h́ât́ ŷóû ŕêd́îŕêćt̂ ál̂ĺ ĤT́T̂Ṕ t̂ŕâf́f̂íĉ t́ô H́T̂T́P̂Ś îń ôŕd̂ér̂ t́ô én̂áb̂ĺê śêćûŕê ẃêb́ f̂éât́ûŕêś f̂ór̂ ál̂ĺ ŷóûŕ ûśêŕŝ. [Ĺêár̂ń m̂ór̂é](https://web.dev/redirects-http/)."
1171
- },
1172
- "lighthouse-core/audits/redirects-http.js | failureTitle": {
1173
- "message": "D̂óêś n̂ót̂ ŕêd́îŕêćt̂ H́T̂T́P̂ t́r̂áf̂f́îć t̂ó ĤT́T̂ṔŜ"
1174
- },
1175
- "lighthouse-core/audits/redirects-http.js | title": {
1176
- "message": "R̂éd̂ír̂éĉt́ŝ H́T̂T́P̂ t́r̂áf̂f́îć t̂ó ĤT́T̂ṔŜ"
1177
- },
1178
1277
  "lighthouse-core/audits/redirects.js | description": {
1179
1278
  "message": "R̂éd̂ír̂éĉt́ŝ ín̂t́r̂ód̂úĉé âd́d̂ít̂íôńâĺ d̂él̂áŷś b̂éf̂ór̂é t̂h́ê ṕâǵê ćâń b̂é l̂óâd́êd́. [L̂éâŕn̂ ḿôŕê](https://web.dev/redirects/)."
1180
1279
  },
@@ -1665,7 +1764,7 @@
1665
1764
  "message": "T̂h́êśê ćĥéĉḱŝ ár̂é r̂éq̂úîŕêd́ b̂ý t̂h́ê b́âśêĺîńê [ṔŴÁ Ĉh́êćk̂ĺîśt̂](https://developers.google.com/web/progressive-web-apps/checklist) b́ût́ âŕê ńôt́ âút̂óm̂át̂íĉál̂ĺŷ ćĥéĉḱêd́ b̂ý L̂íĝh́t̂h́ôúŝé. T̂h́êý d̂ó n̂ót̂ áf̂f́êćt̂ ýôúr̂ śĉór̂é b̂út̂ ít̂'ś îḿp̂ór̂t́âńt̂ t́ĥát̂ ýôú v̂ér̂íf̂ý t̂h́êḿ m̂án̂úâĺl̂ý."
1666
1765
  },
1667
1766
  "lighthouse-core/config/default-config.js | pwaCategoryTitle": {
1668
- "message": "P̂ŕôǵr̂éŝśîv́ê êb́ ṕp̂"
1767
+ "message": "P̂ẂÂ"
1669
1768
  },
1670
1769
  "lighthouse-core/config/default-config.js | pwaInstallableGroupTitle": {
1671
1770
  "message": "Îńŝt́âĺl̂áb̂ĺê"
@@ -1967,30 +2066,6 @@
1967
2066
  "lighthouse-core/lib/lh-error.js | urlInvalid": {
1968
2067
  "message": "T̂h́ê ÚR̂Ĺ ŷóû h́âv́ê ṕr̂óv̂íd̂éd̂ áp̂ṕêár̂ś t̂ó b̂é îńv̂ál̂íd̂."
1969
2068
  },
1970
- "lighthouse-treemap/app/src/util.js | allLabel": {
1971
- "message": "Âĺl̂"
1972
- },
1973
- "lighthouse-treemap/app/src/util.js | allScriptsDropdownLabel": {
1974
- "message": "Âĺl̂ Śĉŕîṕt̂ś"
1975
- },
1976
- "lighthouse-treemap/app/src/util.js | coverageColumnName": {
1977
- "message": "Ĉóv̂ér̂áĝé"
1978
- },
1979
- "lighthouse-treemap/app/src/util.js | duplicateModulesLabel": {
1980
- "message": "D̂úp̂ĺîćât́ê Ḿôd́ûĺêś"
1981
- },
1982
- "lighthouse-treemap/app/src/util.js | resourceBytesLabel": {
1983
- "message": "R̂éŝóûŕĉé B̂ýt̂éŝ"
1984
- },
1985
- "lighthouse-treemap/app/src/util.js | tableColumnName": {
1986
- "message": "N̂ám̂é"
1987
- },
1988
- "lighthouse-treemap/app/src/util.js | toggleTableButtonLabel": {
1989
- "message": "T̂óĝǵl̂é T̂áb̂ĺê"
1990
- },
1991
- "lighthouse-treemap/app/src/util.js | unusedBytesLabel": {
1992
- "message": "Ûńûśêd́ B̂ýt̂éŝ"
1993
- },
1994
2069
  "node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
1995
2070
  "message": "F̂ór̂ án̂ím̂át̂éd̂ ćôńt̂én̂t́, ûśê [`amp-anim`](https://amp.dev/documentation/components/amp-anim/) t́ô ḿîńîḿîźê ĆP̂Ú ûśâǵê ẃĥén̂ t́ĥé ĉón̂t́êńt̂ íŝ óf̂f́ŝćr̂éêń."
1996
2071
  },
@@ -2258,6 +2333,9 @@
2258
2333
  "report/renderer/util.js | calculatorLink": {
2259
2334
  "message": "Ŝéê ćâĺĉúl̂át̂ór̂."
2260
2335
  },
2336
+ "report/renderer/util.js | collapseView": {
2337
+ "message": "Ĉól̂ĺâṕŝé v̂íêẃ"
2338
+ },
2261
2339
  "report/renderer/util.js | crcInitialNavigation": {
2262
2340
  "message": "Îńît́îál̂ Ńâv́îǵât́îón̂"
2263
2341
  },
@@ -2294,9 +2372,15 @@
2294
2372
  "report/renderer/util.js | errorMissingAuditInfo": {
2295
2373
  "message": "R̂ép̂ór̂t́ êŕr̂ór̂: ńô áûd́ît́ îńf̂ór̂ḿât́îón̂"
2296
2374
  },
2375
+ "report/renderer/util.js | expandView": {
2376
+ "message": "Êx́p̂án̂d́ v̂íêẃ"
2377
+ },
2297
2378
  "report/renderer/util.js | footerIssue": {
2298
2379
  "message": "F̂íl̂é âń îśŝúê"
2299
2380
  },
2381
+ "report/renderer/util.js | hide": {
2382
+ "message": "Ĥíd̂é"
2383
+ },
2300
2384
  "report/renderer/util.js | labDataTitle": {
2301
2385
  "message": "L̂áb̂ D́ât́â"
2302
2386
  },
@@ -2318,6 +2402,12 @@
2318
2402
  "report/renderer/util.js | passedAuditsGroupTitle": {
2319
2403
  "message": "P̂áŝśêd́ âúd̂ít̂ś"
2320
2404
  },
2405
+ "report/renderer/util.js | runtimeAnalysisWindow": {
2406
+ "message": "Îńît́îál̂ ṕâǵê ĺôád̂"
2407
+ },
2408
+ "report/renderer/util.js | runtimeCustom": {
2409
+ "message": "Ĉúŝt́ôḿ t̂h́r̂ót̂t́l̂ín̂ǵ"
2410
+ },
2321
2411
  "report/renderer/util.js | runtimeDesktopEmulation": {
2322
2412
  "message": "Êḿûĺât́êd́ D̂éŝḱt̂óp̂"
2323
2413
  },
@@ -2333,36 +2423,33 @@
2333
2423
  "report/renderer/util.js | runtimeSettingsBenchmark": {
2334
2424
  "message": "ĈṔÛ/Ḿêḿôŕŷ Ṕôẃêŕ"
2335
2425
  },
2336
- "report/renderer/util.js | runtimeSettingsChannel": {
2337
- "message": "Ĉh́âńn̂él̂"
2338
- },
2339
2426
  "report/renderer/util.js | runtimeSettingsCPUThrottling": {
2340
2427
  "message": "ĈṔÛ t́ĥŕôt́t̂ĺîńĝ"
2341
2428
  },
2342
2429
  "report/renderer/util.js | runtimeSettingsDevice": {
2343
2430
  "message": "D̂év̂íĉé"
2344
2431
  },
2345
- "report/renderer/util.js | runtimeSettingsFetchTime": {
2346
- "message": "F̂ét̂ćĥ T́îḿê"
2347
- },
2348
2432
  "report/renderer/util.js | runtimeSettingsNetworkThrottling": {
2349
2433
  "message": "N̂ét̂ẃôŕk̂ t́ĥŕôt́t̂ĺîńĝ"
2350
2434
  },
2351
- "report/renderer/util.js | runtimeSettingsTitle": {
2352
- "message": "R̂ún̂t́îḿê Śêt́t̂ín̂ǵŝ"
2353
- },
2354
- "report/renderer/util.js | runtimeSettingsUA": {
2355
- "message": "Ûśêŕ âǵêńt̂ (h́ôśt̂)"
2356
- },
2357
2435
  "report/renderer/util.js | runtimeSettingsUANetwork": {
2358
2436
  "message": "Ûśêŕ âǵêńt̂ (ńêt́ŵór̂ḱ)"
2359
2437
  },
2360
- "report/renderer/util.js | runtimeSettingsUrl": {
2361
- "message": "ÛŔL̂"
2438
+ "report/renderer/util.js | runtimeSingleLoad": {
2439
+ "message": "Ŝín̂ǵl̂é p̂áĝé l̂óâd́"
2440
+ },
2441
+ "report/renderer/util.js | runtimeSingleLoadTooltip": {
2442
+ "message": "T̂h́îś d̂át̂á îś t̂ák̂én̂ f́r̂óm̂ á ŝín̂ǵl̂é p̂áĝé l̂óâd́, âś ôṕp̂óŝéd̂ t́ô f́îél̂d́ d̂át̂á ŝúm̂ḿâŕîźîńĝ ḿâńŷ śêśŝíôńŝ."
2443
+ },
2444
+ "report/renderer/util.js | runtimeSlow4g": {
2445
+ "message": "Ŝĺôẃ 4Ĝ t́ĥŕôt́t̂ĺîńĝ"
2362
2446
  },
2363
2447
  "report/renderer/util.js | runtimeUnknown": {
2364
2448
  "message": "Ûńk̂ńôẃn̂"
2365
2449
  },
2450
+ "report/renderer/util.js | show": {
2451
+ "message": "Ŝh́ôẃ"
2452
+ },
2366
2453
  "report/renderer/util.js | showRelevantAudits": {
2367
2454
  "message": "Ŝh́ôẃ âúd̂ít̂ś r̂él̂év̂án̂t́ t̂ó:"
2368
2455
  },
@@ -2392,5 +2479,29 @@
2392
2479
  },
2393
2480
  "report/renderer/util.js | warningHeader": {
2394
2481
  "message": "Ŵár̂ńîńĝś: "
2482
+ },
2483
+ "treemap/app/src/util.js | allLabel": {
2484
+ "message": "Âĺl̂"
2485
+ },
2486
+ "treemap/app/src/util.js | allScriptsDropdownLabel": {
2487
+ "message": "Âĺl̂ Śĉŕîṕt̂ś"
2488
+ },
2489
+ "treemap/app/src/util.js | coverageColumnName": {
2490
+ "message": "Ĉóv̂ér̂áĝé"
2491
+ },
2492
+ "treemap/app/src/util.js | duplicateModulesLabel": {
2493
+ "message": "D̂úp̂ĺîćât́ê Ḿôd́ûĺêś"
2494
+ },
2495
+ "treemap/app/src/util.js | resourceBytesLabel": {
2496
+ "message": "R̂éŝóûŕĉé B̂ýt̂éŝ"
2497
+ },
2498
+ "treemap/app/src/util.js | tableColumnName": {
2499
+ "message": "N̂ám̂é"
2500
+ },
2501
+ "treemap/app/src/util.js | toggleTableButtonLabel": {
2502
+ "message": "T̂óĝǵl̂é T̂áb̂ĺê"
2503
+ },
2504
+ "treemap/app/src/util.js | unusedBytesLabel": {
2505
+ "message": "Ûńûśêd́ B̂ýt̂éŝ"
2395
2506
  }
2396
2507
  }