chrome-devtools-frontend 1.0.940714 → 1.0.942529

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 (241) hide show
  1. package/config/gni/all_devtools_files.gni +0 -57
  2. package/config/gni/devtools_grd_files.gni +55 -15
  3. package/config/gni/devtools_image_files.gni +2 -3
  4. package/front_end/.eslintrc.js +12 -1
  5. package/front_end/Images/src/feedback_button_icon.svg +3 -0
  6. package/front_end/Images/src/{feedback_thin_16x16_icon.svg → survey_feedback_icon.svg} +1 -1
  7. package/front_end/Tests.js +15 -0
  8. package/front_end/core/common/Color.ts +5 -0
  9. package/front_end/core/i18n/locales/en-US.json +31 -28
  10. package/front_end/core/i18n/locales/en-XL.json +31 -28
  11. package/front_end/core/sdk/DebuggerModel.ts +4 -14
  12. package/front_end/core/sdk/sdk-meta.ts +17 -3
  13. package/front_end/emulated_devices/module.json +1 -3
  14. package/front_end/entrypoints/devtools_app/devtools_app.json +1 -9
  15. package/front_end/entrypoints/main/MainImpl.ts +26 -0
  16. package/front_end/entrypoints/shell/shell.js +0 -11
  17. package/front_end/entrypoints/shell/shell.json +0 -2
  18. package/front_end/entrypoints/worker_app/worker_app.json +0 -4
  19. package/front_end/generated/InspectorBackendCommands.js +1 -0
  20. package/front_end/generated/protocol.d.ts +2 -0
  21. package/front_end/global_typings/global_defs.d.ts +5 -0
  22. package/front_end/legacy_test_runner/bindings_test_runner/IsolatedFilesystemTestRunner.js +2 -2
  23. package/front_end/legacy_test_runner/console_test_runner/console_test_runner.js +14 -2
  24. package/front_end/legacy_test_runner/legacy_test_runner.ts +10 -1
  25. package/front_end/legacy_test_runner/test_runner/TestRunner.js +11 -0
  26. package/front_end/models/formatter/SourceFormatter.ts +0 -10
  27. package/front_end/models/workspace/UISourceCode.ts +9 -42
  28. package/front_end/panels/animation/AnimationTimeline.ts +3 -3
  29. package/front_end/panels/application/ApplicationPanelSidebar.ts +3 -3
  30. package/front_end/panels/application/application-meta.ts +0 -3
  31. package/front_end/panels/application/components/EndpointsGrid.ts +1 -1
  32. package/front_end/panels/application/components/ReportsGrid.ts +1 -1
  33. package/front_end/panels/console/ConsolePinPane.ts +21 -26
  34. package/front_end/panels/coverage/CoverageDecorationManager.ts +4 -5
  35. package/front_end/panels/coverage/CoverageView.ts +2 -105
  36. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +11 -56
  37. package/front_end/panels/css_overview/components/cssOverviewStartView.css +1 -8
  38. package/front_end/panels/elements/ElementsTreeElement.ts +4 -9
  39. package/front_end/panels/elements/components/StylePropertyEditor.ts +2 -0
  40. package/front_end/panels/elements/components/adornerSettingsPane.css +0 -4
  41. package/front_end/panels/emulation/DeviceModeToolbar.ts +3 -1
  42. package/front_end/panels/emulation/DeviceModeView.ts +2 -1
  43. package/front_end/panels/emulation/InspectedPagePlaceholder.ts +3 -1
  44. package/front_end/panels/emulation/MediaQueryInspector.ts +3 -1
  45. package/front_end/panels/emulation/emulation-meta.ts +2 -4
  46. package/front_end/panels/issues/issues-meta.ts +0 -2
  47. package/front_end/panels/layers/module.json +0 -1
  48. package/front_end/panels/lighthouse/LighthousePanel.ts +2 -4
  49. package/front_end/panels/lighthouse/LighthouseReportRenderer.ts +1 -4
  50. package/front_end/panels/lighthouse/lighthouseStartView.css +4 -0
  51. package/front_end/panels/lighthouse/module.json +1 -4
  52. package/front_end/panels/media/media-meta.ts +0 -3
  53. package/front_end/panels/network/ResourceWebSocketFrameView.ts +2 -1
  54. package/front_end/panels/network/network-meta.ts +0 -3
  55. package/front_end/panels/profiler/module.json +1 -4
  56. package/front_end/panels/screencast/module.json +1 -4
  57. package/front_end/panels/security/security-meta.ts +0 -3
  58. package/front_end/panels/sources/BreakpointEditDialog.ts +16 -30
  59. package/front_end/panels/sources/CSSPlugin.ts +310 -331
  60. package/front_end/panels/sources/CallStackSidebarPane.ts +28 -34
  61. package/front_end/panels/sources/CoveragePlugin.ts +121 -6
  62. package/front_end/panels/sources/DebuggerPlugin.ts +1166 -1243
  63. package/front_end/panels/sources/EditingLocationHistoryManager.ts +71 -101
  64. package/front_end/panels/sources/GoToLineQuickOpen.ts +4 -3
  65. package/front_end/panels/sources/InplaceFormatterEditorAction.ts +3 -3
  66. package/front_end/panels/sources/JavaScriptCompilerPlugin.ts +26 -23
  67. package/front_end/panels/sources/Plugin.ts +20 -4
  68. package/front_end/panels/sources/ProfilePlugin.ts +185 -0
  69. package/front_end/panels/sources/ScriptFormatterEditorAction.ts +3 -3
  70. package/front_end/panels/sources/ScriptOriginPlugin.ts +0 -10
  71. package/front_end/panels/sources/SnippetsPlugin.ts +1 -10
  72. package/front_end/panels/sources/SourcesPanel.ts +15 -10
  73. package/front_end/panels/sources/SourcesView.ts +10 -8
  74. package/front_end/panels/sources/TabbedEditorContainer.ts +31 -27
  75. package/front_end/panels/sources/UISourceCodeFrame.ts +335 -470
  76. package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +3 -2
  77. package/front_end/panels/sources/sources-legacy.ts +0 -6
  78. package/front_end/panels/sources/sources.ts +0 -2
  79. package/front_end/panels/timeline/module.json +0 -3
  80. package/front_end/third_party/codemirror.next/bundle.ts +9 -13
  81. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  82. package/front_end/third_party/codemirror.next/chunk/javascript.js +2 -2
  83. package/front_end/third_party/codemirror.next/chunk/markdown.js +2 -6
  84. package/front_end/third_party/codemirror.next/chunk/php.js +2 -6
  85. package/front_end/third_party/codemirror.next/chunk/python.js +1 -1
  86. package/front_end/third_party/codemirror.next/chunk/wast.js +1 -1
  87. package/front_end/third_party/codemirror.next/chunk/xml.js +2 -2
  88. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +279 -198
  89. package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
  90. package/front_end/third_party/codemirror.next/package.json +13 -11
  91. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +1128 -1158
  92. package/front_end/third_party/lighthouse/locales/ar-XB.json +211 -79
  93. package/front_end/third_party/lighthouse/locales/ar.json +213 -81
  94. package/front_end/third_party/lighthouse/locales/bg.json +211 -79
  95. package/front_end/third_party/lighthouse/locales/ca.json +212 -80
  96. package/front_end/third_party/lighthouse/locales/cs.json +211 -79
  97. package/front_end/third_party/lighthouse/locales/da.json +211 -79
  98. package/front_end/third_party/lighthouse/locales/de.json +211 -79
  99. package/front_end/third_party/lighthouse/locales/el.json +213 -81
  100. package/front_end/third_party/lighthouse/locales/en-GB.json +211 -79
  101. package/front_end/third_party/lighthouse/locales/en-US.json +186 -75
  102. package/front_end/third_party/lighthouse/locales/en-XA.json +211 -79
  103. package/front_end/third_party/lighthouse/locales/en-XL.json +186 -75
  104. package/front_end/third_party/lighthouse/locales/es-419.json +211 -79
  105. package/front_end/third_party/lighthouse/locales/es.json +212 -80
  106. package/front_end/third_party/lighthouse/locales/fi.json +211 -79
  107. package/front_end/third_party/lighthouse/locales/fil.json +211 -79
  108. package/front_end/third_party/lighthouse/locales/fr.json +211 -79
  109. package/front_end/third_party/lighthouse/locales/he.json +212 -80
  110. package/front_end/third_party/lighthouse/locales/hi.json +214 -82
  111. package/front_end/third_party/lighthouse/locales/hr.json +211 -79
  112. package/front_end/third_party/lighthouse/locales/hu.json +211 -79
  113. package/front_end/third_party/lighthouse/locales/id.json +211 -79
  114. package/front_end/third_party/lighthouse/locales/it.json +211 -79
  115. package/front_end/third_party/lighthouse/locales/ja.json +211 -79
  116. package/front_end/third_party/lighthouse/locales/ko.json +211 -79
  117. package/front_end/third_party/lighthouse/locales/lt.json +211 -79
  118. package/front_end/third_party/lighthouse/locales/lv.json +214 -82
  119. package/front_end/third_party/lighthouse/locales/nl.json +211 -79
  120. package/front_end/third_party/lighthouse/locales/no.json +211 -79
  121. package/front_end/third_party/lighthouse/locales/pl.json +211 -79
  122. package/front_end/third_party/lighthouse/locales/pt-PT.json +211 -79
  123. package/front_end/third_party/lighthouse/locales/pt.json +211 -79
  124. package/front_end/third_party/lighthouse/locales/ro.json +212 -80
  125. package/front_end/third_party/lighthouse/locales/ru.json +211 -79
  126. package/front_end/third_party/lighthouse/locales/sk.json +211 -79
  127. package/front_end/third_party/lighthouse/locales/sl.json +211 -79
  128. package/front_end/third_party/lighthouse/locales/sr-Latn.json +211 -79
  129. package/front_end/third_party/lighthouse/locales/sr.json +211 -79
  130. package/front_end/third_party/lighthouse/locales/sv.json +211 -79
  131. package/front_end/third_party/lighthouse/locales/ta.json +218 -86
  132. package/front_end/third_party/lighthouse/locales/te.json +251 -119
  133. package/front_end/third_party/lighthouse/locales/th.json +211 -79
  134. package/front_end/third_party/lighthouse/locales/tr.json +211 -79
  135. package/front_end/third_party/lighthouse/locales/uk.json +212 -80
  136. package/front_end/third_party/lighthouse/locales/vi.json +211 -79
  137. package/front_end/third_party/lighthouse/locales/zh-HK.json +211 -79
  138. package/front_end/third_party/lighthouse/locales/zh-TW.json +211 -79
  139. package/front_end/third_party/lighthouse/locales/zh.json +211 -79
  140. package/front_end/third_party/lighthouse/report/bundle.d.ts +72 -34
  141. package/front_end/third_party/lighthouse/report/bundle.js +698 -492
  142. package/front_end/third_party/lighthouse/report-assets/report-generator.js +1 -2
  143. package/front_end/third_party/lighthouse/report-assets/report.js +40 -35
  144. package/front_end/third_party/lighthouse/report-assets/standalone-template.html +2 -4
  145. package/front_end/ui/components/code_highlighter/CodeHighlighter.ts +60 -68
  146. package/front_end/ui/components/data_grid/dataGrid.css +12 -10
  147. package/front_end/ui/components/docs/css_overview/start_view.html +25 -0
  148. package/front_end/ui/components/docs/css_overview/start_view.ts +14 -0
  149. package/front_end/ui/components/docs/icon_button/basic.ts +3 -3
  150. package/front_end/ui/components/docs/panel_feedback/basic.html +25 -0
  151. package/front_end/ui/components/docs/panel_feedback/basic.ts +20 -0
  152. package/front_end/ui/components/docs/panel_feedback/button.html +25 -0
  153. package/front_end/ui/components/docs/panel_feedback/button.ts +18 -0
  154. package/front_end/ui/components/helpers/get-stylesheet.ts +0 -13
  155. package/front_end/ui/components/markdown_view/MarkdownImagesMap.ts +1 -1
  156. package/front_end/ui/components/panel_feedback/FeedbackButton.ts +67 -0
  157. package/front_end/ui/components/panel_feedback/PanelFeedback.ts +100 -0
  158. package/front_end/ui/components/panel_feedback/panelFeedback.css +76 -0
  159. package/front_end/ui/components/panel_feedback/panel_feedback.ts +6 -0
  160. package/front_end/ui/components/report_view/reportValue.css +1 -0
  161. package/front_end/ui/components/survey_link/SurveyLink.ts +1 -1
  162. package/front_end/ui/components/text_editor/TextEditor.ts +79 -36
  163. package/front_end/ui/components/text_editor/config.ts +42 -26
  164. package/front_end/ui/components/text_editor/javascript.ts +2 -3
  165. package/front_end/ui/components/text_editor/position.ts +17 -0
  166. package/front_end/ui/components/text_editor/text_editor.ts +1 -0
  167. package/front_end/ui/components/text_editor/theme.ts +5 -1
  168. package/front_end/ui/legacy/Dialog.ts +3 -1
  169. package/front_end/ui/legacy/DropTarget.ts +2 -1
  170. package/front_end/ui/legacy/EmptyWidget.ts +2 -1
  171. package/front_end/ui/legacy/FilterBar.ts +2 -1
  172. package/front_end/ui/legacy/GlassPane.ts +4 -2
  173. package/front_end/ui/legacy/Infobar.ts +5 -8
  174. package/front_end/ui/legacy/InspectorView.ts +6 -1
  175. package/front_end/ui/legacy/ListWidget.ts +2 -1
  176. package/front_end/ui/legacy/PopoverHelper.ts +2 -1
  177. package/front_end/ui/legacy/ProgressIndicator.ts +2 -1
  178. package/front_end/ui/legacy/RemoteDebuggingTerminatedScreen.ts +2 -1
  179. package/front_end/ui/legacy/ReportView.ts +2 -1
  180. package/front_end/ui/legacy/RootView.ts +2 -1
  181. package/front_end/ui/legacy/SearchableView.ts +2 -1
  182. package/front_end/ui/legacy/ShortcutRegistry.ts +11 -7
  183. package/front_end/ui/legacy/SoftContextMenu.ts +2 -1
  184. package/front_end/ui/legacy/SoftDropDown.ts +4 -2
  185. package/front_end/ui/legacy/SplitWidget.ts +2 -1
  186. package/front_end/ui/legacy/SuggestBox.ts +2 -1
  187. package/front_end/ui/legacy/TabbedPane.ts +2 -1
  188. package/front_end/ui/legacy/TargetCrashedScreen.ts +2 -1
  189. package/front_end/ui/legacy/TextPrompt.ts +2 -1
  190. package/front_end/ui/legacy/Toolbar.ts +3 -2
  191. package/front_end/ui/legacy/Treeoutline.ts +3 -2
  192. package/front_end/ui/legacy/UIUtils.ts +16 -13
  193. package/front_end/ui/legacy/ViewManager.ts +2 -1
  194. package/front_end/ui/legacy/Widget.ts +1 -1
  195. package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +2 -1
  196. package/front_end/ui/legacy/components/perf_ui/FilmStripView.ts +3 -1
  197. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +2 -1
  198. package/front_end/ui/legacy/components/perf_ui/LineLevelProfile.ts +35 -131
  199. package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +2 -1
  200. package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +3 -1
  201. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +2 -1
  202. package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +2 -2
  203. package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.ts +3 -6
  204. package/front_end/ui/legacy/components/source_frame/FontView.ts +1 -0
  205. package/front_end/ui/legacy/components/source_frame/ImageView.ts +1 -0
  206. package/front_end/ui/legacy/components/source_frame/JSONView.ts +1 -0
  207. package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +19 -14
  208. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +502 -252
  209. package/front_end/ui/legacy/components/source_frame/XMLView.ts +2 -0
  210. package/front_end/ui/legacy/components/source_frame/module.json +0 -3
  211. package/front_end/ui/legacy/components/source_frame/source_frame-legacy.ts +0 -11
  212. package/front_end/ui/legacy/components/source_frame/source_frame.ts +0 -2
  213. package/front_end/ui/legacy/components/text_editor/CodeMirrorTextEditor.ts +2 -0
  214. package/front_end/ui/legacy/components/text_editor/cmdevtools.css +3 -1
  215. package/front_end/ui/legacy/components/text_editor/module.json +0 -3
  216. package/front_end/ui/legacy/components/utils/Linkifier.ts +7 -15
  217. package/front_end/ui/legacy/radioButton.css +1 -13
  218. package/front_end/ui/legacy/softContextMenu.css +1 -0
  219. package/front_end/ui/legacy/themeColors.css +36 -0
  220. package/front_end/ui/legacy/theme_support/theme_support_impl.ts +7 -9
  221. package/front_end/ui/legacy/utils/append-style.ts +9 -4
  222. package/front_end/ui/legacy/utils/create-shadow-root-with-core-styles.ts +2 -2
  223. package/front_end/ui/legacy/utils/inject-core-styles.ts +7 -4
  224. package/package.json +1 -1
  225. package/scripts/build/generate_css_js_files.js +23 -9
  226. package/scripts/build/ninja/generate_css.gni +10 -1
  227. package/scripts/eslint_rules/lib/check_css_import.js +2 -2
  228. package/scripts/eslint_rules/tests/check_css_import_test.js +12 -0
  229. package/front_end/Images/radioDot-dark-theme.png +0 -0
  230. package/front_end/Images/radioDot.png +0 -0
  231. package/front_end/panels/application/module.json +0 -7
  232. package/front_end/panels/emulation/module.json +0 -11
  233. package/front_end/panels/issues/module.json +0 -6
  234. package/front_end/panels/layer_viewer/module.json +0 -6
  235. package/front_end/panels/media/module.json +0 -6
  236. package/front_end/panels/network/module.json +0 -6
  237. package/front_end/panels/security/module.json +0 -5
  238. package/front_end/third_party/lighthouse/report-assets/report.css +0 -1774
  239. package/front_end/ui/legacy/components/perf_ui/module.json +0 -13
  240. package/front_end/ui/legacy/components/source_frame/SourcesTextEditor.ts +0 -1030
  241. 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": "కేటగిరీలు"
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": "Lighthouse ఫ్లో రిపోర్ట్‌ను అర్థం చేసుకోవడం"
28
+ },
29
+ "flow-report/src/i18n/ui-strings.js | helpLabel": {
30
+ "message": "ఫ్లో రిపోర్ట్‌లను అర్థం చేసుకోవడం"
31
+ },
32
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
33
+ "message": "నావిగేషన్ రిపోర్ట్‌లను ఉపయోగించి..."
34
+ },
35
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
36
+ "message": "స్నాప్‌షాట్ రిపోర్ట్‌లను ఉపయోగించి..."
37
+ },
38
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
39
+ "message": "కాలవ్యవధి రిపోర్ట్‌లను ఉపయోగించి..."
40
+ },
41
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
42
+ "message": "Lighthouse పనితీరు స్కోర్‌ను పొందండి."
43
+ },
44
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
45
+ "message": "కంటెంట్ కలిగి ఉండే అతిపెద్ద పెయింట్, వేగం ఇండెక్స్ వంటి పేజీ లోడ్ పనితీరు కొలమానాలను లెక్కించండి."
46
+ },
47
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
48
+ "message": "ప్రోగ్రెసివ్ వెబ్ యాప్ సామర్థ్యాలను అంచనా వేయండి."
49
+ },
50
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
51
+ "message": "సింగిల్ పేజీ యాప్‌లు లేదా సంక్లిష్ట ఫారమ్‌లలో ఉన్న యాక్సెసిబిలిటీ సమస్యలను కనుగొనండి."
52
+ },
53
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
54
+ "message": "ఇంటరాక్షన్ లోపల ఉన్న మెనూలు, UI ఎలిమెంట్‌ల బెస్ట్ ప్రాక్టీసులను పరిశీలించండి."
55
+ },
56
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
57
+ "message": "వివిధ ఇంటరాక్షన్‌లకు సంబంధించిన లేఅవుట్ షిఫ్ట్‌లను, JavaScript అమలయ్యే సమయాన్ని లెక్కించండి."
58
+ },
59
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
60
+ "message": "దీర్ఘకాలిక పేజీలు, సింగిల్-పేజీ యాప్‌ల అనుభవాన్ని మెరుగుపరచడానికి పనితీరు అవకాశాలను కనుగొనండి."
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} సమాచారాత్మక ఆడిట్}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": "నావిగేషన్ రిపోర్ట్‌లు, ఒరిజినల్ Lighthouse రిపోర్ట్‌ల మాదిరిగానే సింగిల్ పేజీ లోడ్‌ను విశ్లేషిస్తాయి."
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} నావిగేషన్ రిపోర్ట్}other{{numNavigation} నావిగేషన్ రిపోర్ట్‌లు}}"
82
+ },
83
+ "flow-report/src/i18n/ui-strings.js | passableAuditCount": {
84
+ "message": "{numPassableAudits,plural, =1{పాస్ అయ్యే అవకాశం ఉన్న {numPassableAudits} ఆడిట్}other{పాస్ అయ్యే అవకాశం ఉన్న {numPassableAudits} ఆడిట్‌లు}}"
85
+ },
86
+ "flow-report/src/i18n/ui-strings.js | passedAuditCount": {
87
+ "message": "{numPassed,plural, =1{{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": "సేవ్ చేయండి"
103
+ },
104
+ "flow-report/src/i18n/ui-strings.js | snapshotDescription": {
105
+ "message": "పేజీ తాలూకు క్యాప్చర్ చేయబడిన స్టేట్"
106
+ },
107
+ "flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
108
+ "message": "స్నాప్‌షాట్ రిపోర్ట్‌లు, ఒక నిర్దిష్ట స్థితిలో ఉన్న పేజీని విశ్లేషిస్తాయి, సాధారణంగా ఈ విశ్లేషణ అనేది యూజర్ ఇంటరాక్షన్‌ల తర్వాత జరుగుతుంది."
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} స్నాప్‌షాట్ రిపోర్ట్}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": "కాలవ్యవధి రిపోర్ట్‌లు ఒక యాదృచ్ఛిక సమయ వ్యవధిని విశ్లేషిస్తాయి, సాధారణంగా ఈ వ్యవధి యూజర్ ఇంటరాక్షన్‌లను కలిగి ఉంటుంది."
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} కాలవ్యవధి రిపోర్ట్}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
  },
@@ -183,7 +315,7 @@
183
315
  "message": "నేపథ్యం మరియు ముందువైపు రంగులు తగినంత వర్ణభేద నిష్పత్తితో ఉంటున్నాయి"
184
316
  },
185
317
  "lighthouse-core/audits/accessibility/definition-list.js | description": {
186
- "message": "నిర్వచన జాబితాలను సరిగ్గా గుర్తు పట్టే విధంగా సెట్ చేయనప్పుడు, స్క్రీన్ రీడర్‌లు అయోమయానికి గురి చేసే లేదా అనిర్దిష్టమైన అవుట్‌పుట్‌ను అందించవచ్చు. [మరింత తెలుసుకోండి](https://web.dev/definition-list/)."
318
+ "message": "నిర్వచన లిస్ట్‌లను సరిగ్గా గుర్తు పట్టే విధంగా సెట్ చేయనప్పుడు, స్క్రీన్ రీడర్‌లు అయోమయానికి గురి చేసే లేదా అనిర్దిష్టమైన అవుట్‌పుట్‌ను అందించవచ్చు. [మరింత తెలుసుకోండి](https://web.dev/definition-list/)."
187
319
  },
188
320
  "lighthouse-core/audits/accessibility/definition-list.js | failureTitle": {
189
321
  "message": "`<dl>`'లలో కేవలం సక్రమంగా ఆర్డర్ చేసిన `<dt>`, `<dd>` గ్రూప్‌లు, `<script>`, `<template>` లేదా `<div>` మూలకాలు మాత్రమే ఉండకూడదు."
@@ -192,13 +324,13 @@
192
324
  "message": "`<dl>`'లలో కేవలం సక్రమంగా ఆర్డర్ చేసిన `<dt>`, `<dd>` గ్రూప్‌లు, `<script>`, `<template>` లేదా `<div>` మూలకాలు ఉన్నాయి."
193
325
  },
194
326
  "lighthouse-core/audits/accessibility/dlitem.js | description": {
195
- "message": "స్క్రీన్ రీడర్‌లు నిర్వచన జాబితా అంశాలను ('`<dt>`', '`<dd>`') సక్రమంగా ప్రకటించడం కోసం వాటిని తప్పనిసరిగా మూలాధార '`<dl>`' మూలకంలో సర్దుబాటు చేయాలి. [మరింత తెలుసుకోండి](https://web.dev/dlitem/)."
327
+ "message": "స్క్రీన్ రీడర్‌లు నిర్వచన లిస్ట్‌ అంశాలను ('`<dt>`', '`<dd>`') సక్రమంగా ప్రకటించడం కోసం వాటిని తప్పనిసరిగా మూలాధార '`<dl>`' మూలకంలో సర్దుబాటు చేయాలి. [మరింత తెలుసుకోండి](https://web.dev/dlitem/)."
196
328
  },
197
329
  "lighthouse-core/audits/accessibility/dlitem.js | failureTitle": {
198
- "message": "నిర్వచన జాబితా అంశాలు '`<dl>`' మూలకాలలో సర్దుబాటు చేయబడలేదు"
330
+ "message": "నిర్వచన లిస్ట్‌ అంశాలు '`<dl>`' మూలకాలలో సర్దుబాటు చేయబడలేదు"
199
331
  },
200
332
  "lighthouse-core/audits/accessibility/dlitem.js | title": {
201
- "message": "నిర్వచన జాబితా అంశాలు '`<dl>`' మూలకాలలో సర్దుబాటు చేయబడ్డాయి"
333
+ "message": "నిర్వచన లిస్ట్‌ అంశాలు '`<dl>`' మూలకాలలో సర్దుబాటు చేయబడ్డాయి"
202
334
  },
203
335
  "lighthouse-core/audits/accessibility/document-title.js | description": {
204
336
  "message": "శీర్షిక అన్నది స్క్రీన్ రీడర్ వినియోగదారులకు పేజీ గురించి అవగాహన కలుగజేస్తుంది, అలాగే శోధన ఇంజిన్ వినియోగదారులు ఒక పేజీ వారి శోధనకు సంబంధితమైనదో కాదో గుర్తించడానికి చాలా ఎక్కువగా దీనిపై ఆధారపడుతుంటారు. [మరింత తెలుసుకోండి](https://web.dev/document-title/)."
@@ -309,22 +441,22 @@
309
441
  "message": "లింక్‌లలో కనుగొనదగిన పేరు ఉంది"
310
442
  },
311
443
  "lighthouse-core/audits/accessibility/list.js | description": {
312
- "message": "స్క్రీన్ రీడర్‌లు, జాబితాలను ఒక నిర్దిష్ట రకమైన రీతిలో ప్రకటిస్తాయి. జాబితా నిర్మాణక్రమం సక్రమ రీతిలో ఉందని నిర్ధారించుకుంటే, అది స్క్రీన్ రీడర్ అవుట్‌పుట్‌కు ఉపకరిస్తుంది. [మరింత తెలుసుకోండి](https://web.dev/list/)."
444
+ "message": "స్క్రీన్ రీడర్‌లు, లిస్ట్‌లను ఒక నిర్దిష్ట రకమైన రీతిలో ప్రకటిస్తాయి. లిస్ట్‌ నిర్మాణక్రమం సక్రమ రీతిలో ఉందని నిర్ధారించుకుంటే, అది స్క్రీన్ రీడర్ అవుట్‌పుట్‌కు ఉపకరిస్తుంది. [మరింత తెలుసుకోండి](https://web.dev/list/)."
313
445
  },
314
446
  "lighthouse-core/audits/accessibility/list.js | failureTitle": {
315
- "message": "జాబితాలు కేవలం '`<li>`' మూలకాలు, స్క్రిప్ట్ మద్దతు మూలకాలు ('`<script>`', '`<template>`')తో ఉండకూడదు."
447
+ "message": "లిస్ట్‌లు కేవలం '`<li>`' మూలకాలు, స్క్రిప్ట్ మద్దతు మూలకాలు ('`<script>`', '`<template>`')తో ఉండకూడదు."
316
448
  },
317
449
  "lighthouse-core/audits/accessibility/list.js | title": {
318
- "message": "జాబితాలలో కేవలం '`<li>`' మూలకాలు, స్క్రిప్ట్ మద్దతు మూలకాలు (`<script>`, `<template>`) మాత్రమే ఉన్నాయి."
450
+ "message": "లిస్ట్‌లలో కేవలం '`<li>`' మూలకాలు, స్క్రిప్ట్ మద్దతు మూలకాలు (`<script>`, `<template>`) మాత్రమే ఉన్నాయి."
319
451
  },
320
452
  "lighthouse-core/audits/accessibility/listitem.js | description": {
321
- "message": "జాబితా అంశాలను ('`<li>`') స్క్రీన్ రీడర్‌లు సక్రమంగా ప్రకటించాలంటే, వాటిని మూలాధార అంశం '`<ul>`' లేదా '`<ol>`'లో ఉంచాలి. [మరింత తెలుసుకోండి](https://web.dev/listitem/)."
453
+ "message": "లిస్ట్‌ అంశాలను ('`<li>`') స్క్రీన్ రీడర్‌లు సక్రమంగా ప్రకటించాలంటే, వాటిని మూలాధార అంశం '`<ul>`' లేదా '`<ol>`'లో ఉంచాలి. [మరింత తెలుసుకోండి](https://web.dev/listitem/)."
322
454
  },
323
455
  "lighthouse-core/audits/accessibility/listitem.js | failureTitle": {
324
- "message": "జాబితా అంశాలు ('`<li>`') అన్నవి '`<ul>`' లేదా '`<ol>`' మూలాధార మూలకాలలో లేవు."
456
+ "message": "లిస్ట్‌ అంశాలు ('`<li>`') అన్నవి '`<ul>`' లేదా '`<ol>`' మూలాధార మూలకాలలో లేవు."
325
457
  },
326
458
  "lighthouse-core/audits/accessibility/listitem.js | title": {
327
- "message": "జాబితా అంశాలు ('`<li>`') అనేవి '`<ul>`' లేదా '`<ol>`' అనే మూలాధార మూలకాలలో భాగంగా ఉంటాయి"
459
+ "message": "లిస్ట్‌ అంశాలు ('`<li>`') అనేవి '`<ul>`' లేదా '`<ol>`' అనే మూలాధార మూలకాలలో భాగంగా ఉంటాయి"
328
460
  },
329
461
  "lighthouse-core/audits/accessibility/meta-refresh.js | description": {
330
462
  "message": "వినియోగదారులు పేజీ ఆటోమేటిక్‌గా రిఫ్రెష్ కావాలని కోరుకోరు, అలా చేయడం వలన దృష్టి కేంద్రీకరణ తిరిగి పేజీ పైభాగంలోకి వెళ్తుంది. ఇది విసుగు తెప్పించే లేదా అయోమయానికి గురి చేసే అనుభవం అందించవచ్చు. [మరింత తెలుసుకోండి](https://web.dev/meta-refresh/)."
@@ -459,7 +591,7 @@
459
591
  "message": "JavaScript అమలు సమయం"
460
592
  },
461
593
  "lighthouse-core/audits/byte-efficiency/duplicated-javascript.js | description": {
462
- "message": "నెట్‌వర్క్ కార్యకలాపంలో అనవసరమైన బైట్‌ల వినియోగం తగ్గించడానికి బండిల్స్ నుండి పెద్దగా ఉండే, డూప్లికేట్ JavaScript మాడ్యూల్స్‌ను తీసివేయండి. "
594
+ "message": "నెట్‌వర్క్ యాక్టివిటీలో అనవసరమైన బైట్‌ల వినియోగం తగ్గించడానికి బండిల్స్ నుండి పెద్దగా ఉండే, డూప్లికేట్ JavaScript మాడ్యూల్స్‌ను తీసివేయండి. "
463
595
  },
464
596
  "lighthouse-core/audits/byte-efficiency/duplicated-javascript.js | title": {
465
597
  "message": "JavaScript బండిల్స్‌లోని డూప్లికేట్‌ మాడ్యూల్‌లను తీసివేయండి"
@@ -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
  },
@@ -585,7 +723,7 @@
585
723
  "message": "{itemCount,plural, =1{1 గొలుసు కనుగొనబడింది}other{# గొలుసులు కనుగొనబడ్డాయి}}"
586
724
  },
587
725
  "lighthouse-core/audits/critical-request-chains.js | title": {
588
- "message": "అత్యంత ముఖ్యమైన అభ్యర్థనలను గొలుసు క్రమంలో అందించడం నివారించండి"
726
+ "message": "అత్యంత ముఖ్యమైన రిక్వెస్ట్‌లను గొలుసు క్రమంలో అందించడం నివారించండి"
589
727
  },
590
728
  "lighthouse-core/audits/csp-xss.js | columnDirective": {
591
729
  "message": "డైరెక్టివ్"
@@ -626,18 +764,6 @@
626
764
  "lighthouse-core/audits/deprecations.js | title": {
627
765
  "message": "విస్మరించబడిన APIలను నివారిస్తుంది"
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": "అక్షర ఎన్‌కోడింగ్ డిక్లేరేషన్ అవసరం. HTMLలోని మొదటి 1024 బైట్‌లలో లేదా కంటెంట్-రకం HTTP ప్రతిస్పందన హెడర్‌లో `<meta>` ట్యాగ్‌తో దీనిని పూర్తి చేయవచ్చు. [మరింత తెలుసుకోండి](https://web.dev/charset/)."
643
769
  },
@@ -695,23 +821,8 @@
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
- "message": "సందర్భం ఏమీ లేకుండా స్థానాన్ని అభ్యర్థించే సైట్‌లను వినియోగదారులు నమ్మరు లేదా గందరగోళానికి గురి అవుతారు. దానికి బదులుగా, వినియోగదారు చర్యతో అభ్యర్థనను ప్రయత్నించడం పరిశీలించండి. [మరింత తెలుసుకోండి](https://web.dev/geolocation-on-start/)."
825
+ "message": "సందర్భం ఏమీ లేకుండా స్థానాన్ని అభ్యర్థించే సైట్‌లను వినియోగదారులు నమ్మరు లేదా గందరగోళానికి గురి అవుతారు. దానికి బదులుగా, వినియోగదారు చర్యతో రిక్వెస్ట్‌ను ప్రయత్నించడం పరిశీలించండి. [మరింత తెలుసుకోండి](https://web.dev/geolocation-on-start/)."
715
826
  },
716
827
  "lighthouse-core/audits/dobetterweb/geolocation-on-start.js | failureTitle": {
717
828
  "message": "పేజీ లోడ్ సమయంలో భౌగోళిక స్థానం అనుమతిని అభ్యర్థిస్తుంది"
@@ -777,7 +888,7 @@
777
888
  "message": "తెలిసిన భద్రతా ప్రమాదాలను కలిగి ఉండే ఫ్రంట్-ఎండ్ JavaScript లైబ్రరీలను నివారిస్తుంది"
778
889
  },
779
890
  "lighthouse-core/audits/dobetterweb/notification-on-start.js | description": {
780
- "message": "సందర్భం ఏమీ లేకుండా నోటిఫికేషన్‌లను పంపడానికి అనుమతి కోరే సైట్‌లను వినియోగదారులు నమ్మరు లేదా గందరగోళానికి గురి అవుతారు. బదులుగా వినియోగదారు సంజ్ఞలకు అభ్యర్థనను ప్రయత్నించడం పరిశీలించండి. [మరింత తెలుసుకోండి](https://web.dev/notification-on-start/)."
891
+ "message": "సందర్భం ఏమీ లేకుండా నోటిఫికేషన్‌లను పంపడానికి అనుమతి కోరే సైట్‌లను వినియోగదారులు నమ్మరు లేదా గందరగోళానికి గురి అవుతారు. బదులుగా వినియోగదారు సంజ్ఞలకు రిక్వెస్ట్‌ను ప్రయత్నించడం పరిశీలించండి. [మరింత తెలుసుకోండి](https://web.dev/notification-on-start/)."
781
892
  },
782
893
  "lighthouse-core/audits/dobetterweb/notification-on-start.js | failureTitle": {
783
894
  "message": "పేజీ లోడ్ సమయంలో నోటిఫికేషన్ అనుమతిని అభ్యర్థిస్తుంది"
@@ -801,7 +912,7 @@
801
912
  "message": "HTTP/2 అన్నది HTTP/1.1 కంటే ఎక్కువ ప్రయోజనాలను అలాగే బైనరీ హెడర్‌లు, మల్టీప్లెక్సింగ్ కూడా అందిస్తుంది. [మరింత తెలుసుకోండి](https://web.dev/uses-http2/)."
802
913
  },
803
914
  "lighthouse-core/audits/dobetterweb/uses-http2.js | displayValue": {
804
- "message": "{itemCount,plural, =1{1 అభ్యర్థన 'HTTP/2' ద్వారా అందించబడలేదు}other{# అభ్యర్థనలు 'HTTP/2' ద్వారా అందించబడలేదు}}"
915
+ "message": "{itemCount,plural, =1{1 రిక్వెస్ట్‌ 'HTTP/2' ద్వారా అందించబడలేదు}other{# రిక్వెస్ట్‌లు 'HTTP/2' ద్వారా అందించబడలేదు}}"
805
916
  },
806
917
  "lighthouse-core/audits/dobetterweb/uses-http2.js | title": {
807
918
  "message": "HTTP/2ను ఉపయోగించండి"
@@ -816,7 +927,7 @@
816
927
  "message": "స్క్రోలింగ్ పనితీరును మెరుగుపరచడానికి పాసివ్ లిజనర్‌లను వినియోగిస్తుంది"
817
928
  },
818
929
  "lighthouse-core/audits/errors-in-console.js | description": {
819
- "message": "కన్సోల్‌లో లాగ్ చేయబడిన ఎర్రర్‌లు పరిష్కారం కాని సమస్యలను సూచిస్తాయి. నెట్‌వర్క్ అభ్యర్థన వైఫల్యాలు, ఇతర బ్రౌజర్ ఇబ్బందుల వలన అవి ఏర్పడి ఉంటాయి. [మరింత తెలుసుకోండి](https://web.dev/errors-in-console/)"
930
+ "message": "కన్సోల్‌లో లాగ్ చేయబడిన ఎర్రర్‌లు పరిష్కారం కాని సమస్యలను సూచిస్తాయి. నెట్‌వర్క్ రిక్వెస్ట్‌ వైఫల్యాలు, ఇతర బ్రౌజర్ ఇబ్బందుల వలన అవి ఏర్పడి ఉంటాయి. [మరింత తెలుసుకోండి](https://web.dev/errors-in-console/)"
820
931
  },
821
932
  "lighthouse-core/audits/errors-in-console.js | failureTitle": {
822
933
  "message": "బ్రౌజర్ ఎర్రర్‌లు కన్సోల్‌లో లాగ్ చేయబడ్డాయి"
@@ -888,7 +999,7 @@
888
999
  "message": "ఇన్‌స్టాల్ సామర్థ్య అవసరాలకు అనుగుణంగా వెబ్ యాప్ మానిఫెస్ట్ లేదా సర్వీస్ వర్కర్ లేదు"
889
1000
  },
890
1001
  "lighthouse-core/audits/installable-manifest.js | ids-do-not-match": {
891
- "message": "Play స్టోర్ యాప్ URL, Play స్టోర్ ID మ్యాచ్ కావడం లేదు"
1002
+ "message": "Play Store యాప్ URL, Play Store ID మ్యాచ్ కావడం లేదు"
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 స్టోర్ IDని అందించలేదు"
1032
+ "message": "Play Store IDని అందించలేదు"
922
1033
  },
923
1034
  "lighthouse-core/audits/installable-manifest.js | no-manifest": {
924
1035
  "message": "పేజీకి మ్యానిఫెస్ట్ <link> URL లేదు"
@@ -978,7 +1089,7 @@
978
1089
  "message": "అన్ని సైట్‌లకు HTTPS రక్షణను జోడించాలి, సున్నితమైన వ్యక్తిగత సమాచారం ఏదీ లేని వాటికి కూడా ఈ రక్షణను జోడించాలి. [మిశ్రమ కంటెంట్](https://developers.google.com/web/fundamentals/security/prevent-mixed-content/what-is-mixed-content)ను నివారించడం కూడా ఇందులో ఉంది, ప్రారంభ రిక్వెస్ట్ అనేది HTTPS ద్వారా అందించబడుతున్నప్పటికీ కొన్ని రిసోర్స్‌లు HTTP ద్వారా లోడ్ చేయబడతాయి. HTTPS రక్షణను జోడించడం వలన దాడులకు పాల్పడే వారు ఎవరూ కూడా మీ యాప్, మీ యూజర్ల మధ్య జరిగే కమ్యూనికేషన్‌లను ట్యాంపర్ చేయడం లేదా దొంగచాటుగా వినడం లాంటివి చేయకుండా అడ్డుకోబడతారు, అలాగే HTTP/2, ఇంకా అనేక కొత్త వెబ్ ప్లాట్‌ఫామ్ APIల కోసం దీనిని తప్పనిసరిగా వినియోగించాలి. [మరింత తెలుసుకోండి](https://web.dev/is-on-https/)."
979
1090
  },
980
1091
  "lighthouse-core/audits/is-on-https.js | displayValue": {
981
- "message": "{itemCount,plural, =1{1 అసురక్షితమైన అభ్యర్థన కనుగొనబడింది}other{# అసురక్షితమైన అభ్యర్థనలు కనుగొనబడ్డాయి}}"
1092
+ "message": "{itemCount,plural, =1{1 అసురక్షితమైన రిక్వెస్ట్‌ కనుగొనబడింది}other{# అసురక్షితమైన రిక్వెస్ట్‌లు కనుగొనబడ్డాయి}}"
982
1093
  },
983
1094
  "lighthouse-core/audits/is-on-https.js | failureTitle": {
984
1095
  "message": "'HTTPS'ను ఉపయోగించడం లేదు"
@@ -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
  },
@@ -1128,10 +1248,10 @@
1128
1248
  "message": "ఎఫెక్ట్‌లో ఉన్న సమయ పారామీటర్‌లకు సపోర్ట్ లేదు"
1129
1249
  },
1130
1250
  "lighthouse-core/audits/performance-budget.js | description": {
1131
- "message": "నెట్‌వర్క్ అభ్యర్థనల సంఖ్య, పరిమాణాన్ని అందించబడిన పనితీరు బడ్జెట్ ప్రకారం నిర్దేశించిన లక్ష్యాల కంటే తక్కువకు ఉంచండి. [మరింత తెలుసుకోండి](https://developers.google.com/web/tools/lighthouse/audits/budgets)."
1251
+ "message": "నెట్‌వర్క్ రిక్వెస్ట్‌ల సంఖ్య, పరిమాణాన్ని అందించబడిన పనితీరు బడ్జెట్ ప్రకారం నిర్దేశించిన లక్ష్యాల కంటే తక్కువకు ఉంచండి. [మరింత తెలుసుకోండి](https://developers.google.com/web/tools/lighthouse/audits/budgets)."
1132
1252
  },
1133
1253
  "lighthouse-core/audits/performance-budget.js | requestCountOverBudget": {
1134
- "message": "{count,plural, =1{1 అభ్యర్థన}other{# అభ్యర్థనలు}}"
1254
+ "message": "{count,plural, =1{1 రిక్వెస్ట్‌}other{# రిక్వెస్ట్‌లు}}"
1135
1255
  },
1136
1256
  "lighthouse-core/audits/performance-budget.js | title": {
1137
1257
  "message": "పనితీరు బడ్జెట్"
@@ -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' సెటప్ చేసుకుని ఉంటే, మొత్తం 'HTTP' ట్రాఫిక్‌ను 'HTTPS'కు మళ్లించేలా జాగ్రత్త తీసుకోవడం ద్వారా మీ వినియోగదారులందరికీ సురక్షితమైన వెబ్ ఫీచర్‌లను అందించండి. [మరింత తెలుసుకోండి](https://web.dev/redirects-http/)."
1156
- },
1157
- "lighthouse-core/audits/redirects-http.js | failureTitle": {
1158
- "message": "'HTTP' ట్రాఫిక్‌ను 'HTTPS'కు మళ్లించదు"
1159
- },
1160
- "lighthouse-core/audits/redirects-http.js | title": {
1161
- "message": "'HTTP' ట్రాఫిక్‌ను 'HTTPS'కు మళ్లిస్తుంది"
1162
- },
1163
1274
  "lighthouse-core/audits/redirects.js | description": {
1164
1275
  "message": "మళ్లింపులు పేజీ లోడ్ అవ్వడానికి ముందు అదనపు ఆలస్యాలను కలుగజేస్తాయి. [మరింత తెలుసుకోండి](https://web.dev/redirects/)."
1165
1276
  },
@@ -1173,7 +1284,7 @@
1173
1284
  "message": "{requestCount,plural, =1{1 రిక్వెస్ట్ • {byteCount, number, bytes} KiB}other{# రిక్వెస్ట్‌లు • {byteCount, number, bytes} KiB}}"
1174
1285
  },
1175
1286
  "lighthouse-core/audits/resource-summary.js | title": {
1176
- "message": "అభ్యర్థనల సంఖ్యను తగ్గించుకోండి, బదిలీ పరిమాణాలు తక్కువగా ఉండేలా చూసుకోండి"
1287
+ "message": "రిక్వెస్ట్‌ల సంఖ్యను తగ్గించుకోండి, బదిలీ పరిమాణాలు తక్కువగా ఉండేలా చూసుకోండి"
1177
1288
  },
1178
1289
  "lighthouse-core/audits/seo/canonical.js | description": {
1179
1290
  "message": "శోధన ఫలితాలలో ఏ URLను చూపాలో నియమానుగుణమైన లింక్‌లు సూచిస్తాయి. [మరింత తెలుసుకోండి](https://web.dev/canonical/)."
@@ -1320,7 +1431,7 @@
1320
1431
  "message": "మీ robots.txt ఫైల్ పాడైతే, మీరు మీ వెబ్‌సైట్‌ను ఎలా క్రాల్ చేయాలనుకుంటున్నారు లేదా సూచిక చేయాలనుకుంటున్నారు అన్నది crawlerలకు అర్థం కాకపోవచ్చు. [మరింత తెలుసుకోండి](https://web.dev/robots-txt/)."
1321
1432
  },
1322
1433
  "lighthouse-core/audits/seo/robots-txt.js | displayValueHttpBadCode": {
1323
- "message": "robots.txt కోసం పంపిన అభ్యర్థనకు ప్రతిస్పందనగా అందించబడిన HTTP స్థితి: {statusCode}"
1434
+ "message": "robots.txt కోసం పంపిన రిక్వెస్ట్‌కు ప్రతిస్పందనగా అందించబడిన HTTP స్థితి: {statusCode}"
1324
1435
  },
1325
1436
  "lighthouse-core/audits/seo/robots-txt.js | displayValueValidationError": {
1326
1437
  "message": "{itemCount,plural, =1{1 ఎర్రర్ కనుగొనబడింది}other{# ఎర్రర్‌లు కనుగొనబడ్డాయి}}"
@@ -1389,7 +1500,7 @@
1389
1500
  "message": "పేజీని, '`start_url`'ను నియంత్రించే సర్వీస్ వర్కర్ నమోదు చేయబడింది"
1390
1501
  },
1391
1502
  "lighthouse-core/audits/splash-screen.js | description": {
1392
- "message": "ఒక థీమ్‌తో కూడిన స్ప్లాష్ స్క్రీన్ వలన వినియోగదారులు వారి హోమ్ స్క్రీన్‌ల నుండి మీ యాప్‌ను ప్రారంభించినప్పుడు అధిక నాణ్యత గల అనుభవం అందించబడుతుంది. [మరింత తెలుసుకోండి](https://web.dev/splash-screen/)."
1503
+ "message": "ఒక థీమ్‌తో కూడిన స్ప్లాష్ స్క్రీన్ వలన వినియోగదారులు వారి హోమ్ స్క్రీన్‌ల నుండి మీ యాప్‌ను ప్రారంభించినప్పుడు అధిక క్వాలిటీ గల అనుభవం అందించబడుతుంది. [మరింత తెలుసుకోండి](https://web.dev/splash-screen/)."
1393
1504
  },
1394
1505
  "lighthouse-core/audits/splash-screen.js | failureTitle": {
1395
1506
  "message": "అనుకూలమైన స్ప్లాష్ స్క్రీన్ కోసం కాన్ఫిగర్ చేయలేదు"
@@ -1398,13 +1509,13 @@
1398
1509
  "message": "అనుకూలమైన స్ప్లాష్ స్క్రీన్ కోసం కాన్ఫిగర్ చేయబడింది"
1399
1510
  },
1400
1511
  "lighthouse-core/audits/themed-omnibox.js | description": {
1401
- "message": "బ్రౌజర్ చిరునామా బార్‌ను మీ సైట్‌తో సరిపోలే థీమ్‌లోకి మార్చుకోవచ్చు. [మరింత తెలుసుకోండి](https://web.dev/themed-omnibox/)."
1512
+ "message": "బ్రౌజర్ అడ్రస్‌ బార్‌ను మీ సైట్‌తో సరిపోలే థీమ్‌లోకి మార్చుకోవచ్చు. [మరింత తెలుసుకోండి](https://web.dev/themed-omnibox/)."
1402
1513
  },
1403
1514
  "lighthouse-core/audits/themed-omnibox.js | failureTitle": {
1404
- "message": "చిరునామా బార్ కోసం థీమ్ రంగును సెట్ చేయలేదు."
1515
+ "message": "అడ్రస్‌ బార్ కోసం థీమ్ రంగును సెట్ చేయలేదు."
1405
1516
  },
1406
1517
  "lighthouse-core/audits/themed-omnibox.js | title": {
1407
- "message": "చిరునామా బార్ కోసం థీమ్ రంగు సెట్ చేయబడింది."
1518
+ "message": "అడ్రస్‌ బార్ కోసం థీమ్ రంగు సెట్ చేయబడింది."
1408
1519
  },
1409
1520
  "lighthouse-core/audits/third-party-facades.js | categoryCustomerSuccess": {
1410
1521
  "message": "{productName} (కస్టమర్ విజయం)"
@@ -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\">`' ట్యాగ్ ఏదీ కనుగొనబడలేదు"
@@ -1557,7 +1668,7 @@
1557
1668
  "message": "[మీ వెబ్ యాప్ యొక్క యాక్సెసిబిలిటీని మెరుగుపరచగల](https://developers.google.com/web/fundamentals/accessibility) అవకాశాలను ఈ తనిఖీలు హైలైట్ చేస్తాయి. యాక్సెసిబిలిటీ సమస్యలలోని ఒక సబ్‌సెట్‌ను మాత్రమే ఆటోమేటిక్‌గా గుర్తించడం సాధ్యపడుతుంది, కనుక మాన్యువల్ పరీక్ష కూడా చేయాల్సిందిగా సిఫార్సు చేస్తున్నాము."
1558
1669
  },
1559
1670
  "lighthouse-core/config/default-config.js | a11yCategoryManualDescription": {
1560
- "message": "ఆటోమేటెడ్ పరీక్ష సాధనం కవర్ చేయని ప్రాంతాలను ఈ అంశాలు పేర్కొంటాయి. [యాక్సెసిబిలిటీ సమీక్షను నిర్వహించడం](https://developers.google.com/web/fundamentals/accessibility/how-to-review) గురించి మా గైడ్‌లో మరింత తెలుసుకోండి."
1671
+ "message": "ఆటోమేటెడ్ పరీక్ష సాధనం కవర్ చేయని ప్రాంతాలను ఈ అంశాలు పేర్కొంటాయి. [యాక్సెసిబిలిటీ రివ్యూను నిర్వహించడం](https://developers.google.com/web/fundamentals/accessibility/how-to-review) గురించి మా గైడ్‌లో మరింత తెలుసుకోండి."
1561
1672
  },
1562
1673
  "lighthouse-core/config/default-config.js | a11yCategoryTitle": {
1563
1674
  "message": "యాక్సెసిబిలిటీ"
@@ -1590,7 +1701,7 @@
1590
1701
  "message": "ఇవి, స్క్రీన్ రీడర్ లాంటి సహాయకరమైన సాంకేతికతను ఉపయోగించి పట్టికను లేదా లిస్ట్ డేటాను చదువుతున్నప్పుడు మెరుగైన అనుభవాన్ని అందించగల అవకాశాలు."
1591
1702
  },
1592
1703
  "lighthouse-core/config/default-config.js | a11yTablesListsVideoGroupTitle": {
1593
- "message": "పట్టికలు మరియు జాబితాలు"
1704
+ "message": "పట్టికలు మరియు లిస్ట్‌లు"
1594
1705
  },
1595
1706
  "lighthouse-core/config/default-config.js | bestPracticesBrowserCompatGroupTitle": {
1596
1707
  "message": "బ్రౌజర్ అనుకూలత"
@@ -1647,10 +1758,10 @@
1647
1758
  "message": "ఈ తనిఖీల ద్వారా ప్రోగ్రెసివ్ వెబ్ యాప్ అంశాలు ధృవీకరించబడతాయి. [మరింత తెలుసుకోండి](https://developers.google.com/web/progressive-web-apps/checklist)."
1648
1759
  },
1649
1760
  "lighthouse-core/config/default-config.js | pwaCategoryManualDescription": {
1650
- "message": "మౌళికమైన [PWA తనిఖీ జాబితా](https://developers.google.com/web/progressive-web-apps/checklist) ప్రకారం ఈ తనిఖీలను తప్పనిసరిగా నిర్వహించాలి, కానీ ఇవి Lighthouse ద్వారా ఆటోమేటిక్‌గా తనిఖీ చేయబడవు. ఇవి మీ స్కోర్‌పై ప్రభావం చూపవు, కానీ మీరు వీటిని మాన్యువల్‌గా అయినా ధృవీకరించడం ముఖ్యం."
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": "దాడి చేసే వారి ద్వారా కంట్రోల్ చేయబడే డొమైన్‌కు అన్ని సంబంధిత URLల (ఉదా. స్క్రిప్ట్‌లు) కోసం బేస్ URLను సెట్ చేయడానికి, పంపబడిన <base> ట్యాగ్‌లను మిస్ అయిన base-uri అనుమతిస్తుంది. 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 కనీసం 8 అక్షరాల పొడవు ఉండాలి."
1729
1840
  },
1841
+ "lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
1842
+ "message": "ఈ డైరెక్టివ్‌లో సాధారణ URL స్కీమ్‌లను ({keyword}) ఉపయోగించడం మానేయండి. సాధారణ URL స్కీమ్‌లు, సురక్షితం కాని డొమైన్ నుండి సేకరించిన స్క్రిప్ట్‌లను అనుమతిస్తాయి."
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' సురక్షితంకాని unsafe in-page స్క్రిప్ట్‌లు, అలాగే ఈవెంట్ హ్యాండ్లర్‌ల అమలును అనుమతిస్తుంది. స్క్రిప్ట్‌లను వ్యక్తిగతంగా అనుమతించేందుకు CSP nonces లేదా hashesను ఉపయోగించడాన్ని పరిగణించండి."
1864
+ },
1745
1865
  "lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
1746
1866
  "message": "పాత బ్రౌజర్‌లతో అనుకూలంగా ఉండటానికి 'unsafe-inline' (nonces/hashes సపోర్ట్ చేసే బ్రౌజర్‌ల ద్వారా విస్మరించబడినవి) జోడించడాన్ని పరిగణించండి."
1747
1867
  },
@@ -1773,7 +1893,7 @@
1773
1893
  "message": "బడ్జెట్ దాటిపోయింది"
1774
1894
  },
1775
1895
  "lighthouse-core/lib/i18n/i18n.js | columnRequests": {
1776
- "message": "అభ్యర్థనలు"
1896
+ "message": "రిక్వెస్ట్‌లు"
1777
1897
  },
1778
1898
  "lighthouse-core/lib/i18n/i18n.js | columnResourceSize": {
1779
1899
  "message": "రిసోర్స్ సైజ్"
@@ -1914,7 +2034,7 @@
1914
2034
  "message": "ఈ Chrome వెర్షన్ చాలా పాతది, కాబట్టి '{featureName}'కు సపోర్ట్ చెయ్యదు. పూర్తి ఫలితాలు చూడడానికి మరింత కొత్త వెర్షన్‌ను ఉపయోగించండి."
1915
2035
  },
1916
2036
  "lighthouse-core/lib/lh-error.js | pageLoadFailed": {
1917
- "message": "మీరు అభ్యర్థించిన పేజీని Lighthouse విశ్వసనీయ రీతిలో పేజీని లోడ్ చేయలేకపోయింది. మీరు సరైన URLని పరీక్షిస్తున్నారని, సర్వర్ అన్ని అభ్యర్థనలకు సరిగ్గా ప్రతిస్పందిస్తుందని నిర్ధారించుకోండి."
2037
+ "message": "మీరు అభ్యర్థించిన పేజీని Lighthouse విశ్వసనీయ రీతిలో పేజీని లోడ్ చేయలేకపోయింది. మీరు సరైన URLని పరీక్షిస్తున్నారని, సర్వర్ అన్ని రిక్వెస్ట్‌లకు సరిగ్గా ప్రతిస్పందిస్తుందని నిర్ధారించుకోండి."
1918
2038
  },
1919
2039
  "lighthouse-core/lib/lh-error.js | pageLoadFailedHung": {
1920
2040
  "message": "పేజీ ప్రతిస్పందించడం ఆపివేసినందున, మీరు అభ్యర్థించిన URLని విశ్వసనీయ రీతిలో Lighthouse లోడ్ చేయలేకపోయింది."
@@ -1923,13 +2043,13 @@
1923
2043
  "message": "మీరు అందించిన URLకు చెల్లుబాటయ్యే భద్రత సర్టిఫికెట్ లేదు. {securityMessages}"
1924
2044
  },
1925
2045
  "lighthouse-core/lib/lh-error.js | pageLoadFailedInterstitial": {
1926
- "message": "మధ్యలో వచ్చే సందేశ బ్యానర్‌తో పేజీ లోడ్ కావడాన్ని Chrome నిరోధించింది. మీరు సరైన URLను పరీక్షిస్తున్నారని, సర్వర్ అన్ని అభ్యర్థనలకు సరిగ్గా ప్రతిస్పందిస్తోందని నిర్ధారించుకోండి."
2046
+ "message": "మధ్యలో వచ్చే సందేశ బ్యానర్‌తో పేజీ లోడ్ కావడాన్ని Chrome నిరోధించింది. మీరు సరైన URLను పరీక్షిస్తున్నారని, సర్వర్ అన్ని రిక్వెస్ట్‌లకు సరిగ్గా ప్రతిస్పందిస్తోందని నిర్ధారించుకోండి."
1927
2047
  },
1928
2048
  "lighthouse-core/lib/lh-error.js | pageLoadFailedWithDetails": {
1929
- "message": "మీరు అభ్యర్థించిన పేజీని Lighthouse విశ్వసనీయ రీతిలో లోడ్ చేయలేకపోయింది. మీరు సరైన URLను పరీక్షిస్తున్నారని, సర్వర్ అన్ని అభ్యర్థనలకు సరిగ్గా ప్రతిస్పందిస్తోందని నిర్ధారించుకోండి. (వివరాలు: {errorDetails})"
2049
+ "message": "మీరు అభ్యర్థించిన పేజీని Lighthouse విశ్వసనీయ రీతిలో లోడ్ చేయలేకపోయింది. మీరు సరైన URLను పరీక్షిస్తున్నారని, సర్వర్ అన్ని రిక్వెస్ట్‌లకు సరిగ్గా ప్రతిస్పందిస్తోందని నిర్ధారించుకోండి. (వివరాలు: {errorDetails})"
1930
2050
  },
1931
2051
  "lighthouse-core/lib/lh-error.js | pageLoadFailedWithStatusCode": {
1932
- "message": "మీరు అభ్యర్థించిన పేజీని Lighthouse విశ్వసనీయ రీతిలో లోడ్ చేయలేకపోయింది. మీరు సరైన URLను పరీక్షిస్తున్నారని, సర్వర్ అన్ని అభ్యర్థనలకు సరిగ్గా ప్రతిస్పందిస్తోందని నిర్ధారించుకోండి. (స్థితి కోడ్: {statusCode})"
2052
+ "message": "మీరు అభ్యర్థించిన పేజీని Lighthouse విశ్వసనీయ రీతిలో లోడ్ చేయలేకపోయింది. మీరు సరైన URLను పరీక్షిస్తున్నారని, సర్వర్ అన్ని రిక్వెస్ట్‌లకు సరిగ్గా ప్రతిస్పందిస్తోందని నిర్ధారించుకోండి. (స్థితి కోడ్: {statusCode})"
1933
2053
  },
1934
2054
  "lighthouse-core/lib/lh-error.js | pageLoadTookTooLong": {
1935
2055
  "message": "మీ పేజీ లోడ్ కావడానికి చాలా ఎక్కువ సమయం పట్టింది. మీ పేజీ లోడ్ సమయం తగ్గించడానికి దయచేసి రిపోర్ట్‌లో ఉన్న అవకాశాలను అనుసరించి, ఆపై Lighthouseను తిరిగి అమలు చేయడానికి ప్రయత్నించండి. ({errorCode})"
@@ -1943,30 +2063,6 @@
1943
2063
  "lighthouse-core/lib/lh-error.js | urlInvalid": {
1944
2064
  "message": "మీరు అందించిన URL చెల్లనిదిగా కనిపిస్తోంది."
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": "యానిమేట్ చేసిన కంటెంట్ కోసం, కంటెంట్ ఆఫ్‌స్క్రీన్‌లో ఉన్నప్పుడు CPU వినియోగాన్ని తగ్గించడానికి, [`amp-anim`](https://amp.dev/documentation/components/amp-anim/)ను ఉపయోగించండి."
1972
2068
  },
@@ -1986,7 +2082,7 @@
1986
2082
  "message": "స్క్రీన్ సైజ్ ఆధారంగా ఏయే ఇమేజ్ అస్సెట్‌లను ఉపయోగించాలో పేర్కొనడానికి [`amp-img`](https://amp.dev/documentation/components/amp-img/?format=websites) కాంపోనెంట్ [`srcset`](https://web.dev/use-srcset-to-automatically-choose-the-right-image/) లక్షణానికి సపోర్ట్ అందిస్తుంది. [మరింత తెలుసుకోండి](https://amp.dev/documentation/guides-and-tutorials/develop/style_and_layout/art_direction/)."
1987
2083
  },
1988
2084
  "node_modules/lighthouse-stack-packs/packs/angular.js | dom-size": {
1989
- "message": "చాలా ఎక్కువ జాబితాలను అమలు చేస్తున్నట్లయితే, కాంపొనెంట్ డెవలపర్ కిట్ (CDK)తో వర్చువల్ స్క్రోలింగ్ చేయడానికి ప్రయత్నించండి. [మరింత తెలుసుకోండి](https://web.dev/virtualize-lists-with-angular-cdk/)."
2085
+ "message": "చాలా ఎక్కువ లిస్ట్‌లను అమలు చేస్తున్నట్లయితే, కాంపొనెంట్ డెవలపర్ కిట్ (CDK)తో వర్చువల్ స్క్రోలింగ్ చేయడానికి ప్రయత్నించండి. [మరింత తెలుసుకోండి](https://web.dev/virtualize-lists-with-angular-cdk/)."
1990
2086
  },
1991
2087
  "node_modules/lighthouse-stack-packs/packs/angular.js | total-byte-weight": {
1992
2088
  "message": "మీ JavaScript బండిల్‌ల సైజ్‌ను తగ్గించడానికి [మూల స్థాయిలో కోడ్ విభజన](https://web.dev/route-level-code-splitting-in-angular/)ను వర్తింపజేయండి. అలాగే, [Angular సర్వీస్ వర్కర్](https://web.dev/precaching-with-the-angular-service-worker/) సహాయంతో, అస్సెట్‌లను ముందుగానే కాష్ చేయడానికి ప్రయత్నించండి."
@@ -2205,7 +2301,7 @@
2205
2301
  "message": "థీమ్‌లు, ప్లగ్ఇన్‌లు, సర్వర్ లక్షణాలన్నీ కూడా సర్వర్ ప్రతిస్పందన సమయాన్ని ప్రభావితం చేస్తాయి. మరింత ఆప్టిమైజ్ చేయబడిన థీమ్‌ను కనుగొనడానికి, చాలా జాగ్రత్తగా ఆప్టిమైజేషన్ ప్లగ్ఇన్‌ను ఎంచుకోవడానికి మరియు/లేదా మీ సర్వర్‌ను అప్‌గ్రేడ్ చేయడానికి ప్రయత్నించండి."
2206
2302
  },
2207
2303
  "node_modules/lighthouse-stack-packs/packs/wordpress.js | total-byte-weight": {
2208
- "message": "ఇవ్వబడిన పేజీలో చూపబడే పోస్ట్‌ల సంఖ్యను తగ్గించడం, మీ పొడవైన పోస్ట్‌లను బహుళ పేజీలుగా విడగొట్టడం లేదా మందకొడి లోడింగ్ కామెంట్‌ల కోసం ప్లగ్ఇన్‌ను ఉపయోగించడం ద్వారా (అంటే, మరిన్ని ట్యాగ్ ద్వారా) మీ పోస్ట్ జాబితాలలో సారాంశాలను చూపడానికి ప్రయత్నించండి."
2304
+ "message": "ఇవ్వబడిన పేజీలో చూపబడే పోస్ట్‌ల సంఖ్యను తగ్గించడం, మీ పొడవైన పోస్ట్‌లను బహుళ పేజీలుగా విడగొట్టడం లేదా మందకొడి లోడింగ్ కామెంట్‌ల కోసం ప్లగ్ఇన్‌ను ఉపయోగించడం ద్వారా (అంటే, మరిన్ని ట్యాగ్ ద్వారా) మీ పోస్ట్ లిస్ట్‌లలో సారాంశాలను చూపడానికి ప్రయత్నించండి."
2209
2305
  },
2210
2306
  "node_modules/lighthouse-stack-packs/packs/wordpress.js | unminified-css": {
2211
2307
  "message": "అనేక '[WordPress ప్లగ్ఇన్‌లు](https://wordpress.org/plugins/search/minify+css/)' మీ శైలులను క్రమపరచడం, చిన్నవిగా చేయడం, కుదించడం ద్వారా మీ సైట్‌ను మరింత వేగవంతం చేయవచ్చు. వీలైతే, ఈ కనిష్ఠీకరణను ముందుగానే నిర్వహించేలా కూడా మీరు ఒక బిల్డ్ ప్రాసెస్‌ను ఉపయోగించవచ్చు."
@@ -2214,16 +2310,16 @@
2214
2310
  "message": "అనేక [WordPress ప్లగ్ఇన్‌లు](https://wordpress.org/plugins/search/minify+javascript/) మీ స్క్రిప్ట్‌లను క్రమపరచడం, చిన్నవిగా చేయడం, కుదించడం ద్వారా మీ సైట్‌ను మరింత వేగవంతం చేయవచ్చు. వీలైతే, ఈ కనిష్ఠీకరణను ముందుగానే నిర్వహించేలా కూడా మీరు ఒక బిల్డ్ ప్రాసెస్‌ను ఉపయోగించడం పరిగణించవచ్చు."
2215
2311
  },
2216
2312
  "node_modules/lighthouse-stack-packs/packs/wordpress.js | unused-css-rules": {
2217
- "message": "మీ పేజీలో ఉపయోగించని CSSను లోడ్ చేస్తున్న '[WordPress ప్లగ్ఇన్‌‌ల](https://wordpress.org/plugins/)' సంఖ్యను తగ్గించడం లేదా మార్చడాన్ని పరిశీలించండి. అదనపు CSSను జోడించే ప్లగ్ఇన్‌లను గుర్తించడానికి, Chrome DevToolsలో '[కోడ్ కవరేజీ](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage)' అమలు చేయడానికి ప్రయత్నించండి. అందుకు కారణమైన థీమ్/ప్లగ్ఇన్‌ను స్టైల్‌షీట్‌లోని URL నుండి మీరు గుర్తించవచ్చు. కోడ్ కవరేజ్‌లో ఎక్కువ ఎరుపు రంగు కలిగి ఉన్న జాబితాలో అనేక స్టైల్‌షీట్‌లను కలిగి ఉన్న ప్లగ్ఇన్‌లను వెతకండి. నిజంగా ప్లగ్ఇన్‌ను ఆ పేజీలో ఉపయోగించినప్పుడు మాత్రమే స్టైల్‌షీట్‌కు జత చేయాలి."
2313
+ "message": "మీ పేజీలో ఉపయోగించని CSSను లోడ్ చేస్తున్న '[WordPress ప్లగ్ఇన్‌‌ల](https://wordpress.org/plugins/)' సంఖ్యను తగ్గించడం లేదా మార్చడాన్ని పరిశీలించండి. అదనపు CSSను జోడించే ప్లగ్ఇన్‌లను గుర్తించడానికి, Chrome DevToolsలో '[కోడ్ కవరేజీ](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage)' అమలు చేయడానికి ప్రయత్నించండి. అందుకు కారణమైన థీమ్/ప్లగ్ఇన్‌ను స్టైల్‌షీట్‌లోని URL నుండి మీరు గుర్తించవచ్చు. కోడ్ కవరేజ్‌లో ఎక్కువ ఎరుపు రంగు కలిగి ఉన్న లిస్ట్‌లో అనేక స్టైల్‌షీట్‌లను కలిగి ఉన్న ప్లగ్ఇన్‌లను వెతకండి. నిజంగా ప్లగ్ఇన్‌ను ఆ పేజీలో ఉపయోగించినప్పుడు మాత్రమే స్టైల్‌షీట్‌కు జత చేయాలి."
2218
2314
  },
2219
2315
  "node_modules/lighthouse-stack-packs/packs/wordpress.js | unused-javascript": {
2220
- "message": "మీ పేజీలో ఉపయోగించని JavaScriptను లోడ్ చేస్తున్న '[WordPress ప్లగ్ఇన్‌‌ల](https://wordpress.org/plugins/)' సంఖ్యను తగ్గించడం లేదా మార్చడాన్ని పరిశీలించండి. అదనపు JSను జోడించే ప్లగ్ఇన్‌లను గుర్తించడానికి, Chrome DevToolsలో '[కోడ్ కవరేజీ](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage)' అమలు చేయడానికి ప్రయత్నించండి. అందుకు కారణమైన థీమ్/ప్లగ్ఇన్‌ను స్క్రిప్ట్ యొక్క URL నుండి మీరు గుర్తించవచ్చు. కోడ్ కవరేజ్‌లో ఎక్కువ ఎరుపు రంగు కలిగి ఉన్న జాబితాలో అనేక స్క్రిప్ట్‌లను కలిగి ఉన్న ప్లగ్ఇన్‌లను వెతకండి. నిజంగా ప్లగ్ఇన్‌ను ఆ పేజీలో ఉపయోగించినప్పుడు మాత్రమే స్క్రిప్ట్‌కు జత చేయాలి."
2316
+ "message": "మీ పేజీలో ఉపయోగించని JavaScriptను లోడ్ చేస్తున్న '[WordPress ప్లగ్ఇన్‌‌ల](https://wordpress.org/plugins/)' సంఖ్యను తగ్గించడం లేదా మార్చడాన్ని పరిశీలించండి. అదనపు JSను జోడించే ప్లగ్ఇన్‌లను గుర్తించడానికి, Chrome DevToolsలో '[కోడ్ కవరేజీ](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage)' అమలు చేయడానికి ప్రయత్నించండి. అందుకు కారణమైన థీమ్/ప్లగ్ఇన్‌ను స్క్రిప్ట్ యొక్క URL నుండి మీరు గుర్తించవచ్చు. కోడ్ కవరేజ్‌లో ఎక్కువ ఎరుపు రంగు కలిగి ఉన్న లిస్ట్‌లో అనేక స్క్రిప్ట్‌లను కలిగి ఉన్న ప్లగ్ఇన్‌లను వెతకండి. నిజంగా ప్లగ్ఇన్‌ను ఆ పేజీలో ఉపయోగించినప్పుడు మాత్రమే స్క్రిప్ట్‌కు జత చేయాలి."
2221
2317
  },
2222
2318
  "node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-long-cache-ttl": {
2223
2319
  "message": "[WordPressలో బ్రౌజర్ కాష్ విధానం](https://wordpress.org/support/article/optimization/#browser-caching) గురించి చదవండి."
2224
2320
  },
2225
2321
  "node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-optimized-images": {
2226
- "message": "నాణ్యత తగ్గకుండా మీ చిత్రాలను కుదించే [చిత్రం ఆప్టిమైజేషన్ WordPress ప్లగ్ఇన్‌](https://wordpress.org/plugins/search/optimize+images/)ను ఉపయోగించడం పరిశీలించండి."
2322
+ "message": "క్వాలిటీ తగ్గకుండా మీ చిత్రాలను కుదించే [చిత్రం ఆప్టిమైజేషన్ WordPress ప్లగ్ఇన్‌](https://wordpress.org/plugins/search/optimize+images/)ను ఉపయోగించడం పరిశీలించండి."
2227
2323
  },
2228
2324
  "node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-responsive-images": {
2229
2325
  "message": "అవసరమైన చిత్ర పరిమాణాలు అందుబాటులో ఉన్నాయో లేదో నిర్ధారించుకోవడానికి చిత్రాలను నేరుగా [మీడియా లైబ్రరీ](https://wordpress.org/support/article/media-library-screen/) ద్వారా అప్‌లోడ్ చేయండి. ఆపై వాటిని మీడియా లైబ్రరీ నుండి చొప్పించండి లేదా అనుకూలమైన చిత్ర పరిమాణాలు ఉపయోగించబడ్డాయో లేదో నిర్ధారించుకోవడానికి (ప్రతిస్పందనాత్మక బ్రేక్ పాయింట్‌లు కలిగి ఉండే వాటికి కూడా) చిత్ర విడ్జెట్‌ను ఉపయోగించండి. కొలతలు వాటి వినియోగానికి తగినట్లుగా ఉంటే తప్పితే, '`Full Size`' చిత్రాలను వినియోగించడం నివారించండి. [మరింత తెలుసుకోండి](https://wordpress.org/support/article/inserting-images-into-posts-and-pages/)."
@@ -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": "CPU త్రోట్లింగ్"
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": "పొందే సమయం"
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": "URL"
2435
+ "report/renderer/util.js | runtimeSingleLoad": {
2436
+ "message": "సింగిల్ పేజీ లోడ్"
2437
+ },
2438
+ "report/renderer/util.js | runtimeSingleLoadTooltip": {
2439
+ "message": "అనేక సెషన్‌లను కలిగిన ఫీల్డ్ డేటా లాగా కాకుండా, ఈ డేటా సింగిల్ పేజీ లోడ్ నుండి తీసుకోబడింది."
2440
+ },
2441
+ "report/renderer/util.js | runtimeSlow4g": {
2442
+ "message": "నెమ్మదిగా ఉన్న 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
  }