chrome-devtools-frontend 1.0.945884 → 1.0.948295
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +1 -0
- package/config/gni/all_devtools_files.gni +1 -20
- package/config/gni/devtools_grd_files.gni +9 -48
- package/config/gni/devtools_image_files.gni +1 -0
- package/front_end/.eslintrc.js +6 -1
- package/front_end/Images/src/circled_backslash_icon.svg +3 -0
- package/front_end/core/host/InspectorFrontendHost.ts +0 -3
- package/front_end/core/host/InspectorFrontendHostAPI.ts +0 -1
- package/front_end/core/host/UserMetrics.ts +1 -23
- package/front_end/core/i18n/locales/en-US.json +41 -41
- package/front_end/core/i18n/locales/en-XL.json +41 -41
- package/front_end/core/platform/platform.ts +0 -2
- package/front_end/core/platform/string-utilities.ts +14 -1
- package/front_end/core/platform/utilities.ts +0 -29
- package/front_end/core/root/Runtime.ts +4 -212
- package/front_end/core/sdk/AccessibilityModel.ts +0 -2
- package/front_end/core/sdk/CSSProperty.ts +16 -11
- package/front_end/core/sdk/CSSRule.ts +0 -2
- package/front_end/core/sdk/Cookie.ts +0 -25
- package/front_end/core/sdk/EmulationModel.ts +0 -2
- package/front_end/core/sdk/HeapProfilerModel.ts +0 -2
- package/front_end/core/sdk/NetworkManager.ts +0 -3
- package/front_end/core/sdk/Resource.ts +0 -3
- package/front_end/core/sdk/ResourceTreeModel.ts +0 -3
- package/front_end/core/sdk/ServiceWorkerManager.ts +0 -2
- package/front_end/core/sdk/sdk-legacy.ts +0 -3
- package/front_end/devtools_compatibility.js +1 -8
- package/front_end/entrypoints/devtools_app/{devtools_app-meta-files.ts → devtools_app.ts} +9 -2
- package/front_end/entrypoints/formatter_worker/CSSFormatter.ts +1 -3
- package/front_end/entrypoints/formatter_worker/FormatterActions.ts +0 -2
- package/front_end/entrypoints/formatter_worker/FormatterWorker.ts +0 -120
- package/front_end/entrypoints/formatter_worker/formatter_worker-entrypoint.ts +1 -11
- package/front_end/entrypoints/formatter_worker/formatter_worker.ts +5 -0
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +2 -1
- package/front_end/entrypoints/inspector/{inspector.js → inspector.ts} +0 -3
- package/front_end/entrypoints/js_app/{JsMain.ts → js_app.ts} +5 -1
- package/front_end/entrypoints/main/MainImpl.ts +0 -7
- package/front_end/entrypoints/ndb_app/{ndb_app.js → ndb_app.ts} +3 -2
- package/front_end/entrypoints/{node_main → node_app}/NodeConnectionsPanel.ts +1 -1
- package/front_end/entrypoints/{node_main → node_app}/NodeMain.ts +2 -4
- package/front_end/entrypoints/{node_main → node_app}/nodeConnectionsPanel.css +0 -0
- package/front_end/entrypoints/node_app/node_app.ts +79 -0
- package/front_end/entrypoints/shell/{shell-meta-files.ts → shell.ts} +7 -1
- package/front_end/entrypoints/worker_app/{worker_app.js → worker_app.ts} +6 -2
- package/front_end/generated/InspectorBackendCommands.js +5 -1
- package/front_end/generated/protocol.d.ts +12 -0
- package/front_end/legacy/legacy-defs.d.ts +0 -4
- package/front_end/legacy_test_runner/sources_test_runner/sources_test_runner.js +0 -1
- package/front_end/legacy_test_runner/test_runner/TestRunner.js +35 -59
- package/front_end/models/bindings/CompilerScriptMapping.ts +0 -1
- package/front_end/models/bindings/DebuggerLanguagePlugins.ts +4 -11
- package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +1 -1
- package/front_end/models/bindings/ResourceMapping.ts +1 -1
- package/front_end/models/bindings/SASSSourceMapping.ts +0 -1
- package/front_end/models/emulation/DeviceModeModel.ts +0 -2
- package/front_end/models/formatter/FormatterWorkerPool.ts +0 -18
- package/front_end/models/issues_manager/CorsIssue.ts +17 -9
- package/front_end/models/issues_manager/descriptions/{corsInsecurePrivateNetworkPreflight.md → corsPreflightAllowPrivateNetworkError.md} +1 -1
- package/front_end/models/text_utils/CodeMirrorUtils.ts +6 -51
- package/front_end/models/text_utils/TextUtils.ts +1 -2
- package/front_end/models/text_utils/text_utils-legacy.ts +0 -5
- package/front_end/panels/accessibility/AccessibilitySidebarView.ts +3 -1
- package/front_end/panels/animation/AnimationTimeline.ts +0 -2
- package/front_end/panels/animation/AnimationUI.ts +0 -2
- package/front_end/panels/application/ApplicationPanelSidebar.ts +2 -4
- package/front_end/panels/application/BackForwardCacheStrings.ts +2 -5
- package/front_end/panels/application/BackForwardCacheView.ts +150 -58
- package/front_end/panels/application/ResourcesPanel.ts +0 -42
- package/front_end/panels/application/application-legacy.ts +0 -3
- package/front_end/panels/application/application-meta.ts +0 -13
- package/front_end/panels/application/backForwardCacheView.css +44 -6
- package/front_end/panels/application/components/FrameDetailsView.ts +3 -3
- package/front_end/panels/application/components/OriginTrialTreeView.ts +3 -3
- package/front_end/panels/application/components/StackTrace.ts +1 -1
- package/front_end/panels/coverage/CoverageView.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewModel.ts +0 -2
- package/front_end/panels/css_overview/CSSOverviewPanel.ts +0 -7
- package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +0 -2
- package/front_end/panels/css_overview/components/cssOverviewStartView.css +1 -0
- package/front_end/panels/css_overview/cssOverviewCompletedView.css +1 -1
- package/front_end/panels/developer_resources/DeveloperResourcesView.ts +2 -1
- package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +0 -11
- package/front_end/panels/elements/ElementsPanel.ts +9 -1
- package/front_end/panels/elements/ElementsTreeElement.ts +1 -1
- package/front_end/panels/elements/StylesSidebarPane.ts +0 -1
- package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +1 -1
- package/front_end/panels/elements/elementsTreeOutline.css +0 -13
- package/front_end/panels/emulation/DeviceModeToolbar.ts +0 -16
- package/front_end/panels/issues/CorsIssueDetailsView.ts +18 -2
- package/front_end/panels/lighthouse/lighthouse-meta.ts +0 -3
- package/front_end/panels/network/NetworkConfigView.ts +10 -0
- package/front_end/panels/network/NetworkItemView.ts +3 -0
- package/front_end/panels/network/NetworkWaterfallColumn.ts +2 -0
- package/front_end/panels/network/networkConfigView.css +5 -0
- package/front_end/panels/profiler/CPUProfileFlameChart.ts +3 -1
- package/front_end/panels/profiler/ProfileDataGrid.ts +2 -1
- package/front_end/panels/profiler/profilesPanel.css +1 -1
- package/front_end/panels/search/SearchView.ts +24 -4
- package/front_end/panels/settings/components/SyncSection.ts +2 -2
- package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +52 -50
- package/front_end/panels/settings/emulation/components/userAgentClientHintsForm.css +0 -12
- package/front_end/panels/sources/CSSPlugin.ts +3 -0
- package/front_end/panels/sources/CoveragePlugin.ts +2 -0
- package/front_end/panels/sources/DebuggerPlugin.ts +35 -7
- package/front_end/panels/sources/JavaScriptCompilerPlugin.ts +3 -0
- package/front_end/panels/sources/ProfilePlugin.ts +3 -0
- package/front_end/panels/sources/UISourceCodeFrame.ts +11 -2
- package/front_end/panels/sources/sourcesView.css +0 -130
- package/front_end/panels/timeline/TimelineTreeView.ts +3 -1
- package/front_end/third_party/codemirror/codemirror-tsconfig.json +1 -25
- package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/cpp.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/java.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/json.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/php.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/python.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/wast.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/xml.js +1 -2
- package/front_end/third_party/codemirror.next/codemirror.next.d.ts +1486 -1423
- package/front_end/third_party/codemirror.next/codemirror.next.js +1 -2
- package/front_end/third_party/codemirror.next/package.json +10 -9
- package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +168 -164
- package/front_end/third_party/lighthouse/locales/ar-XB.json +0 -3
- package/front_end/third_party/lighthouse/locales/ar.json +0 -3
- package/front_end/third_party/lighthouse/locales/bg.json +17 -20
- package/front_end/third_party/lighthouse/locales/ca.json +0 -3
- package/front_end/third_party/lighthouse/locales/cs.json +0 -3
- package/front_end/third_party/lighthouse/locales/da.json +16 -19
- package/front_end/third_party/lighthouse/locales/de.json +0 -3
- package/front_end/third_party/lighthouse/locales/el.json +0 -3
- package/front_end/third_party/lighthouse/locales/en-GB.json +19 -22
- package/front_end/third_party/lighthouse/locales/en-US.json +33 -3
- package/front_end/third_party/lighthouse/locales/en-XA.json +0 -3
- package/front_end/third_party/lighthouse/locales/en-XL.json +33 -3
- package/front_end/third_party/lighthouse/locales/es-419.json +17 -20
- package/front_end/third_party/lighthouse/locales/es.json +0 -3
- package/front_end/third_party/lighthouse/locales/fi.json +16 -19
- package/front_end/third_party/lighthouse/locales/fil.json +33 -36
- package/front_end/third_party/lighthouse/locales/fr.json +16 -19
- package/front_end/third_party/lighthouse/locales/he.json +16 -19
- package/front_end/third_party/lighthouse/locales/hi.json +0 -3
- package/front_end/third_party/lighthouse/locales/hr.json +16 -19
- package/front_end/third_party/lighthouse/locales/hu.json +16 -19
- package/front_end/third_party/lighthouse/locales/id.json +16 -19
- package/front_end/third_party/lighthouse/locales/it.json +37 -40
- package/front_end/third_party/lighthouse/locales/ja.json +16 -19
- package/front_end/third_party/lighthouse/locales/ko.json +16 -19
- package/front_end/third_party/lighthouse/locales/lt.json +17 -20
- package/front_end/third_party/lighthouse/locales/lv.json +0 -3
- package/front_end/third_party/lighthouse/locales/nl.json +16 -19
- package/front_end/third_party/lighthouse/locales/no.json +17 -20
- package/front_end/third_party/lighthouse/locales/pl.json +16 -19
- package/front_end/third_party/lighthouse/locales/pt-PT.json +37 -40
- package/front_end/third_party/lighthouse/locales/pt.json +16 -19
- package/front_end/third_party/lighthouse/locales/ro.json +0 -3
- package/front_end/third_party/lighthouse/locales/ru.json +16 -19
- package/front_end/third_party/lighthouse/locales/sk.json +0 -3
- package/front_end/third_party/lighthouse/locales/sl.json +0 -3
- package/front_end/third_party/lighthouse/locales/sr-Latn.json +16 -19
- package/front_end/third_party/lighthouse/locales/sr.json +16 -19
- package/front_end/third_party/lighthouse/locales/sv.json +17 -20
- package/front_end/third_party/lighthouse/locales/ta.json +0 -3
- package/front_end/third_party/lighthouse/locales/te.json +0 -3
- package/front_end/third_party/lighthouse/locales/th.json +0 -3
- package/front_end/third_party/lighthouse/locales/tr.json +0 -3
- package/front_end/third_party/lighthouse/locales/uk.json +17 -20
- package/front_end/third_party/lighthouse/locales/vi.json +0 -3
- package/front_end/third_party/lighthouse/locales/zh-HK.json +0 -3
- package/front_end/third_party/lighthouse/locales/zh-TW.json +0 -3
- package/front_end/third_party/lighthouse/locales/zh.json +0 -3
- package/front_end/third_party/lighthouse/report/bundle.d.ts +63 -61
- package/front_end/third_party/lighthouse/report/bundle.js +36 -7
- package/front_end/third_party/lighthouse/report-assets/report-generator.js +205 -192
- package/front_end/ui/components/diff_view/DiffView.ts +4 -4
- package/front_end/ui/components/helpers/component-server-setup.ts +1 -12
- package/front_end/ui/components/helpers/helpers.ts +0 -2
- package/front_end/ui/components/icon_button/IconButton.ts +1 -1
- package/front_end/ui/components/issue_counter/IssueCounter.ts +2 -2
- package/front_end/ui/components/linear_memory_inspector/LinearMemoryViewer.ts +3 -3
- package/front_end/ui/components/markdown_view/MarkdownView.ts +4 -4
- package/front_end/ui/components/panel_feedback/PreviewToggle.ts +98 -0
- package/front_end/ui/components/panel_feedback/panel_feedback.ts +1 -0
- package/front_end/ui/components/panel_feedback/previewToggle.css +24 -0
- package/front_end/ui/components/report_view/ReportView.ts +22 -0
- package/front_end/ui/components/report_view/reportSection.css +20 -0
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +1 -1
- package/front_end/ui/components/settings/SettingCheckbox.ts +2 -2
- package/front_end/ui/components/text_editor/config.ts +11 -9
- package/front_end/ui/components/text_editor/javascript.ts +34 -12
- package/front_end/ui/components/text_editor/theme.ts +1 -0
- package/front_end/ui/components/text_prompt/TextPrompt.ts +2 -2
- package/front_end/ui/legacy/GlassPane.ts +1 -1
- package/front_end/ui/legacy/InspectorView.ts +10 -0
- package/front_end/ui/legacy/SearchableView.ts +2 -1
- package/front_end/ui/legacy/Treeoutline.ts +1 -1
- package/front_end/ui/legacy/Widget.ts +1 -1
- package/front_end/ui/legacy/XWidget.ts +0 -5
- package/front_end/ui/legacy/components/inline_editor/CSSVarSwatch.ts +2 -2
- package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +1 -1
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +2 -3
- package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +0 -1
- package/front_end/ui/legacy/components/object_ui/object_ui-legacy.ts +0 -8
- package/front_end/ui/legacy/components/object_ui/object_ui.ts +0 -4
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +40 -29
- package/front_end/ui/legacy/inspectorSyntaxHighlight.css +0 -211
- package/front_end/ui/legacy/legacy-legacy.ts +0 -6
- package/front_end/ui/legacy/legacy.ts +0 -2
- package/front_end/ui/legacy/tabbedPane.css +1 -1
- package/front_end/ui/legacy/themeColors.css +1 -1
- package/front_end/ui/legacy/utils/append-style.ts +2 -13
- package/front_end/ui/legacy/utils/create-shadow-root-with-core-styles.ts +7 -5
- package/package.json +2 -4
- package/scripts/build/build_inspector_overlay.py +15 -1
- package/scripts/build/rjsmin.py +84 -115
- package/scripts/eslint_rules/lib/l10n_filename_matches.js +4 -4
- package/scripts/eslint_rules/lib/lit_html_no_attribute_quotes.js +101 -0
- package/scripts/eslint_rules/lib/no_only_eslint_tests.js +53 -0
- package/scripts/eslint_rules/tests/.eslintrc.js +14 -0
- package/scripts/eslint_rules/tests/l10n_filename_matches_test.js +4 -0
- package/scripts/eslint_rules/tests/lit_html_no_attribute_quotes_test.js +45 -0
- package/scripts/eslint_rules/tests/no_only_eslint_tests_test.js +94 -0
- package/scripts/hosted_mode/server.js +17 -2
- package/front_end/entrypoints/devtools_app/devtools_app.js +0 -8
- package/front_end/entrypoints/devtools_app/devtools_app.json +0 -6
- package/front_end/entrypoints/inspector/inspector.json +0 -4
- package/front_end/entrypoints/js_app/js_app.js +0 -9
- package/front_end/entrypoints/js_app/js_app.json +0 -4
- package/front_end/entrypoints/ndb_app/ndb_app.json +0 -5
- package/front_end/entrypoints/node_app/node_app-meta.ts +0 -43
- package/front_end/entrypoints/node_app/node_app.js +0 -13
- package/front_end/entrypoints/node_app/node_app.json +0 -4
- package/front_end/entrypoints/node_main/node_main-meta.ts +0 -48
- package/front_end/entrypoints/node_main/node_main.ts +0 -11
- package/front_end/entrypoints/shell/shell.js +0 -13
- package/front_end/entrypoints/shell/shell.json +0 -5
- package/front_end/entrypoints/startup/RuntimeInstantiator.ts +0 -95
- package/front_end/entrypoints/startup/startup.ts +0 -9
- package/front_end/entrypoints/worker_app/worker_app.json +0 -4
- package/front_end/panels/lighthouse/module.json +0 -6
- package/front_end/third_party/lighthouse/report-assets/report.d.ts +0 -1
- package/front_end/third_party/lighthouse/report-assets/report.js +0 -233
- package/front_end/third_party/lighthouse/report-assets/standalone-template.html +0 -38
- package/front_end/ui/components/helpers/get-stylesheet.ts +0 -45
- package/front_end/ui/legacy/TextEditor.ts +0 -82
- package/front_end/ui/legacy/components/object_ui/JavaScriptAutocomplete.ts +0 -836
- package/front_end/ui/legacy/components/text_editor/CodeMirrorTextEditor.ts +0 -1676
- package/front_end/ui/legacy/components/text_editor/TextEditorAutocompleteController.ts +0 -586
- package/front_end/ui/legacy/components/text_editor/autocompleteTooltip.css +0 -20
- package/front_end/ui/legacy/components/text_editor/cm_modes.ts +0 -23
- package/front_end/ui/legacy/components/text_editor/cmdevtools.css +0 -995
- package/front_end/ui/legacy/components/text_editor/module.json +0 -7
- package/front_end/ui/legacy/components/text_editor/text_editor-legacy.ts +0 -33
- package/front_end/ui/legacy/components/text_editor/text_editor.ts +0 -13
- package/scripts/build/build_release_applications.py +0 -216
- package/scripts/build/modular_build.py +0 -184
- package/scripts/check_gn.js +0 -119
- package/scripts/json_validator/module.schema.json +0 -19
- package/scripts/json_validator/validate_module_json.js +0 -44
|
@@ -60,10 +60,10 @@
|
|
|
60
60
|
"message": "Descubrir oportunidades de rendimiento para mejorar la experiencia en aplicaciones de página única y en páginas abiertas por largo tiempo."
|
|
61
61
|
},
|
|
62
62
|
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
63
|
-
"message": "
|
|
63
|
+
"message": "Mayor impacto"
|
|
64
64
|
},
|
|
65
65
|
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
|
|
66
|
-
"message": "{numInformative,
|
|
66
|
+
"message": "{numInformative,plural, =1{{numInformative} auditoría informativa}other{{numInformative} auditorías informativas}}"
|
|
67
67
|
},
|
|
68
68
|
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
69
69
|
"message": "Para dispositivos móviles"
|
|
@@ -78,13 +78,13 @@
|
|
|
78
78
|
"message": "Informe de navegación"
|
|
79
79
|
},
|
|
80
80
|
"flow-report/src/i18n/ui-strings.js | navigationReportCount": {
|
|
81
|
-
"message": "{numNavigation,
|
|
81
|
+
"message": "{numNavigation,plural, =1{{numNavigation} informe de navegación}other{{numNavigation} informes de navegación}}"
|
|
82
82
|
},
|
|
83
83
|
"flow-report/src/i18n/ui-strings.js | passableAuditCount": {
|
|
84
|
-
"message": "{numPassableAudits,
|
|
84
|
+
"message": "{numPassableAudits,plural, =1{{numPassableAudits} auditoría con posibilidades de aprobar}other{{numPassableAudits} auditorías con posibilidades de aprobar}}"
|
|
85
85
|
},
|
|
86
86
|
"flow-report/src/i18n/ui-strings.js | passedAuditCount": {
|
|
87
|
-
"message": "{numPassed,
|
|
87
|
+
"message": "{numPassed,plural, =1{{numPassed} auditoría aprobada}other{{numPassed} auditorías aprobadas}}"
|
|
88
88
|
},
|
|
89
89
|
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
90
90
|
"message": "Promedio"
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"message": "Informe de un momento específico"
|
|
112
112
|
},
|
|
113
113
|
"flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
|
|
114
|
-
"message": "{numSnapshot,
|
|
114
|
+
"message": "{numSnapshot,plural, =1{{numSnapshot} informe de un momento específico}other{{numSnapshot} informes de un momento específico}}"
|
|
115
115
|
},
|
|
116
116
|
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
117
117
|
"message": "Resumen"
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
"message": "Informe del período"
|
|
127
127
|
},
|
|
128
128
|
"flow-report/src/i18n/ui-strings.js | timespanReportCount": {
|
|
129
|
-
"message": "{numTimespan,
|
|
129
|
+
"message": "{numTimespan,plural, =1{{numTimespan} informe del período}other{{numTimespan} informes del período}}"
|
|
130
130
|
},
|
|
131
131
|
"flow-report/src/i18n/ui-strings.js | title": {
|
|
132
132
|
"message": "Informe del flujo de usuarios de Lighthouse"
|
|
@@ -1292,9 +1292,6 @@
|
|
|
1292
1292
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1293
1293
|
"message": "Varias URL en conflicto ({urlList})"
|
|
1294
1294
|
},
|
|
1295
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1296
|
-
"message": "Redirige al usuario a otro dominio ({url})"
|
|
1297
|
-
},
|
|
1298
1295
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1299
1296
|
"message": "URL no válida ({url})"
|
|
1300
1297
|
},
|
|
@@ -1761,7 +1758,7 @@
|
|
|
1761
1758
|
"message": "Estas comprobaciones son necesarias según el modelo de referencia [Lista de tareas para AWP](https://developers.google.com/web/progressive-web-apps/checklist), pero Lighthouse no las realiza automáticamente. Es importante que las verifiques a mano (aunque no afectan a la puntuación)."
|
|
1762
1759
|
},
|
|
1763
1760
|
"lighthouse-core/config/default-config.js | pwaCategoryTitle": {
|
|
1764
|
-
"message": "
|
|
1761
|
+
"message": "AWP"
|
|
1765
1762
|
},
|
|
1766
1763
|
"lighthouse-core/config/default-config.js | pwaInstallableGroupTitle": {
|
|
1767
1764
|
"message": "Instalable"
|
|
@@ -2331,7 +2328,7 @@
|
|
|
2331
2328
|
"message": "Consulta la calculadora."
|
|
2332
2329
|
},
|
|
2333
2330
|
"report/renderer/util.js | collapseView": {
|
|
2334
|
-
"message": "
|
|
2331
|
+
"message": "Contraer vista"
|
|
2335
2332
|
},
|
|
2336
2333
|
"report/renderer/util.js | crcInitialNavigation": {
|
|
2337
2334
|
"message": "Navegación inicial"
|
|
@@ -2370,13 +2367,13 @@
|
|
|
2370
2367
|
"message": "Error del informe: No hay información de la auditoría"
|
|
2371
2368
|
},
|
|
2372
2369
|
"report/renderer/util.js | expandView": {
|
|
2373
|
-
"message": "
|
|
2370
|
+
"message": "Expandir vista"
|
|
2374
2371
|
},
|
|
2375
2372
|
"report/renderer/util.js | footerIssue": {
|
|
2376
2373
|
"message": "Informa sobre un problema"
|
|
2377
2374
|
},
|
|
2378
2375
|
"report/renderer/util.js | hide": {
|
|
2379
|
-
"message": "
|
|
2376
|
+
"message": "Ocultar"
|
|
2380
2377
|
},
|
|
2381
2378
|
"report/renderer/util.js | labDataTitle": {
|
|
2382
2379
|
"message": "Datos de prueba"
|
|
@@ -2400,10 +2397,10 @@
|
|
|
2400
2397
|
"message": "Auditorías aprobadas"
|
|
2401
2398
|
},
|
|
2402
2399
|
"report/renderer/util.js | runtimeAnalysisWindow": {
|
|
2403
|
-
"message": "
|
|
2400
|
+
"message": "Carga inicial de la página"
|
|
2404
2401
|
},
|
|
2405
2402
|
"report/renderer/util.js | runtimeCustom": {
|
|
2406
|
-
"message": "
|
|
2403
|
+
"message": "Limitación personalizada"
|
|
2407
2404
|
},
|
|
2408
2405
|
"report/renderer/util.js | runtimeDesktopEmulation": {
|
|
2409
2406
|
"message": "Escritorio emulado"
|
|
@@ -2433,19 +2430,19 @@
|
|
|
2433
2430
|
"message": "Usuario-agente (red)"
|
|
2434
2431
|
},
|
|
2435
2432
|
"report/renderer/util.js | runtimeSingleLoad": {
|
|
2436
|
-
"message": "
|
|
2433
|
+
"message": "Carga de una única página"
|
|
2437
2434
|
},
|
|
2438
2435
|
"report/renderer/util.js | runtimeSingleLoadTooltip": {
|
|
2439
|
-
"message": "
|
|
2436
|
+
"message": "Estos datos se obtienen de la carga de una única página, a diferencia de los datos de campos que sintetizan la información de muchas sesiones."
|
|
2440
2437
|
},
|
|
2441
2438
|
"report/renderer/util.js | runtimeSlow4g": {
|
|
2442
|
-
"message": "
|
|
2439
|
+
"message": "Limitación de la red 4G lenta"
|
|
2443
2440
|
},
|
|
2444
2441
|
"report/renderer/util.js | runtimeUnknown": {
|
|
2445
2442
|
"message": "Desconocido"
|
|
2446
2443
|
},
|
|
2447
2444
|
"report/renderer/util.js | show": {
|
|
2448
|
-
"message": "
|
|
2445
|
+
"message": "Mostrar"
|
|
2449
2446
|
},
|
|
2450
2447
|
"report/renderer/util.js | showRelevantAudits": {
|
|
2451
2448
|
"message": "Mostrar las auditorías relevantes para la métrica:"
|
|
@@ -1292,9 +1292,6 @@
|
|
|
1292
1292
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1293
1293
|
"message": "Varias URL en conflicto ({urlList})"
|
|
1294
1294
|
},
|
|
1295
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1296
|
-
"message": "Dirige a un dominio diferente ({url})"
|
|
1297
|
-
},
|
|
1298
1295
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1299
1296
|
"message": "La URL no es válida ({url})"
|
|
1300
1297
|
},
|
|
@@ -60,10 +60,10 @@
|
|
|
60
60
|
"message": "Discover performance opportunities to improve the experience for long-lived pages and single-page applications."
|
|
61
61
|
},
|
|
62
62
|
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
63
|
-
"message": "
|
|
63
|
+
"message": "Suurin vaikutus"
|
|
64
64
|
},
|
|
65
65
|
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
|
|
66
|
-
"message": "{numInformative,
|
|
66
|
+
"message": "{numInformative,plural, =1{{numInformative} informatiivinen tarkastus}other{{numInformative} informatiivista tarkastusta}}"
|
|
67
67
|
},
|
|
68
68
|
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
69
69
|
"message": "Mobiili"
|
|
@@ -78,13 +78,13 @@
|
|
|
78
78
|
"message": "Navigointiraportti"
|
|
79
79
|
},
|
|
80
80
|
"flow-report/src/i18n/ui-strings.js | navigationReportCount": {
|
|
81
|
-
"message": "{numNavigation,
|
|
81
|
+
"message": "{numNavigation,plural, =1{{numNavigation} navigointiraportti}other{{numNavigation} navigointiraporttia}}"
|
|
82
82
|
},
|
|
83
83
|
"flow-report/src/i18n/ui-strings.js | passableAuditCount": {
|
|
84
|
-
"message": "{numPassableAudits,
|
|
84
|
+
"message": "{numPassableAudits,plural, =1{{numPassableAudits} läpäistävissä oleva tarkastus}other{{numPassableAudits} läpäistävissä olevaa tarkastusta}}"
|
|
85
85
|
},
|
|
86
86
|
"flow-report/src/i18n/ui-strings.js | passedAuditCount": {
|
|
87
|
-
"message": "{numPassed,
|
|
87
|
+
"message": "{numPassed,plural, =1{{numPassed} tarkastus läpäisty}other{{numPassed} tarkastusta läpäisty}}"
|
|
88
88
|
},
|
|
89
89
|
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
90
90
|
"message": "Keskimääräinen"
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"message": "Tilannekuvaraportti"
|
|
112
112
|
},
|
|
113
113
|
"flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
|
|
114
|
-
"message": "{numSnapshot,
|
|
114
|
+
"message": "{numSnapshot,plural, =1{{numSnapshot} tilannekuvaraportti}other{{numSnapshot} tilannekuvaraporttia}}"
|
|
115
115
|
},
|
|
116
116
|
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
117
117
|
"message": "Yhteenveto"
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
"message": "Aikaväliraportti"
|
|
127
127
|
},
|
|
128
128
|
"flow-report/src/i18n/ui-strings.js | timespanReportCount": {
|
|
129
|
-
"message": "{numTimespan,
|
|
129
|
+
"message": "{numTimespan,plural, =1{{numTimespan} aikaväliraportti}other{{numTimespan} aikaväliraporttia}}"
|
|
130
130
|
},
|
|
131
131
|
"flow-report/src/i18n/ui-strings.js | title": {
|
|
132
132
|
"message": "Lighthousen käyttökulkuraportti"
|
|
@@ -1292,9 +1292,6 @@
|
|
|
1292
1292
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1293
1293
|
"message": "Useita ristiriitaisia URL-osoitteita ({urlList})"
|
|
1294
1294
|
},
|
|
1295
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1296
|
-
"message": "Viittaa toiseen verkkotunnukseen ({url})"
|
|
1297
|
-
},
|
|
1298
1295
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1299
1296
|
"message": "Virheellinen URL-osoite ({url})"
|
|
1300
1297
|
},
|
|
@@ -2331,7 +2328,7 @@
|
|
|
2331
2328
|
"message": "Katso laskin."
|
|
2332
2329
|
},
|
|
2333
2330
|
"report/renderer/util.js | collapseView": {
|
|
2334
|
-
"message": "
|
|
2331
|
+
"message": "Tiivistä näkymä"
|
|
2335
2332
|
},
|
|
2336
2333
|
"report/renderer/util.js | crcInitialNavigation": {
|
|
2337
2334
|
"message": "Ensimmäinen navigointi"
|
|
@@ -2370,13 +2367,13 @@
|
|
|
2370
2367
|
"message": "Raporttivirhe: ei tarkastustietoja"
|
|
2371
2368
|
},
|
|
2372
2369
|
"report/renderer/util.js | expandView": {
|
|
2373
|
-
"message": "
|
|
2370
|
+
"message": "Laajenna näkymää"
|
|
2374
2371
|
},
|
|
2375
2372
|
"report/renderer/util.js | footerIssue": {
|
|
2376
2373
|
"message": "Ilmoita ongelmasta"
|
|
2377
2374
|
},
|
|
2378
2375
|
"report/renderer/util.js | hide": {
|
|
2379
|
-
"message": "
|
|
2376
|
+
"message": "Piilota"
|
|
2380
2377
|
},
|
|
2381
2378
|
"report/renderer/util.js | labDataTitle": {
|
|
2382
2379
|
"message": "Laboratoriodata"
|
|
@@ -2400,10 +2397,10 @@
|
|
|
2400
2397
|
"message": "Hyväksytyt tarkastukset"
|
|
2401
2398
|
},
|
|
2402
2399
|
"report/renderer/util.js | runtimeAnalysisWindow": {
|
|
2403
|
-
"message": "
|
|
2400
|
+
"message": "Ensimmäinen sivun lataus"
|
|
2404
2401
|
},
|
|
2405
2402
|
"report/renderer/util.js | runtimeCustom": {
|
|
2406
|
-
"message": "
|
|
2403
|
+
"message": "Omat rajoitukset"
|
|
2407
2404
|
},
|
|
2408
2405
|
"report/renderer/util.js | runtimeDesktopEmulation": {
|
|
2409
2406
|
"message": "Emuloitu työpöytä"
|
|
@@ -2433,19 +2430,19 @@
|
|
|
2433
2430
|
"message": "Käyttäjäagentti (verkko)"
|
|
2434
2431
|
},
|
|
2435
2432
|
"report/renderer/util.js | runtimeSingleLoad": {
|
|
2436
|
-
"message": "
|
|
2433
|
+
"message": "Yksi sivun lataus"
|
|
2437
2434
|
},
|
|
2438
2435
|
"report/renderer/util.js | runtimeSingleLoadTooltip": {
|
|
2439
|
-
"message": "
|
|
2436
|
+
"message": "Tämä data on peräisin yhdestä sivun latauksesta, toisin kuin kenttädata, joka on yhteenveto useista käyttökerroista."
|
|
2440
2437
|
},
|
|
2441
2438
|
"report/renderer/util.js | runtimeSlow4g": {
|
|
2442
|
-
"message": "
|
|
2439
|
+
"message": "Hidasta 4G-yhteyttä simuloiva rajoitus"
|
|
2443
2440
|
},
|
|
2444
2441
|
"report/renderer/util.js | runtimeUnknown": {
|
|
2445
2442
|
"message": "Ei tietoa"
|
|
2446
2443
|
},
|
|
2447
2444
|
"report/renderer/util.js | show": {
|
|
2448
|
-
"message": "
|
|
2445
|
+
"message": "Näytä"
|
|
2449
2446
|
},
|
|
2450
2447
|
"report/renderer/util.js | showRelevantAudits": {
|
|
2451
2448
|
"message": "Näytä tähän liittyvät tarkastukset:"
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"message": "Lahat ng Ulat"
|
|
4
4
|
},
|
|
5
5
|
"flow-report/src/i18n/ui-strings.js | categories": {
|
|
6
|
-
"message": "
|
|
6
|
+
"message": "Mga Kategorya"
|
|
7
7
|
},
|
|
8
8
|
"flow-report/src/i18n/ui-strings.js | categoryAccessibility": {
|
|
9
9
|
"message": "Pagiging accessible"
|
|
@@ -24,46 +24,46 @@
|
|
|
24
24
|
"message": "Desktop"
|
|
25
25
|
},
|
|
26
26
|
"flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
|
|
27
|
-
"message": "
|
|
27
|
+
"message": "Pag-unawa sa Ulat ng Daloy ng Lighthouse"
|
|
28
28
|
},
|
|
29
29
|
"flow-report/src/i18n/ui-strings.js | helpLabel": {
|
|
30
|
-
"message": "
|
|
30
|
+
"message": "Pag-unawa sa Mga Daloy"
|
|
31
31
|
},
|
|
32
32
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
|
|
33
|
-
"message": "
|
|
33
|
+
"message": "Gamitin ang Mga ulat ng pag-navigate para..."
|
|
34
34
|
},
|
|
35
35
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
|
|
36
|
-
"message": "
|
|
36
|
+
"message": "Gamitin ang Mga ulat ng snapshot para..."
|
|
37
37
|
},
|
|
38
38
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
|
|
39
|
-
"message": "
|
|
39
|
+
"message": "Gamitin ang Mga ulat ng tagal ng panahon para..."
|
|
40
40
|
},
|
|
41
41
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
|
|
42
|
-
"message": "
|
|
42
|
+
"message": "Makakuha ng score sa Performance sa Lighthouse."
|
|
43
43
|
},
|
|
44
44
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
|
|
45
|
-
"message": "
|
|
45
|
+
"message": "Sukatin ang mga sukatan ng Performance ng pag-load ng page gaya ng Largest Contentful Paint at Speed Index."
|
|
46
46
|
},
|
|
47
47
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
|
|
48
|
-
"message": "
|
|
48
|
+
"message": "Suriin ang mga kakayahan ng Progressive Web App."
|
|
49
49
|
},
|
|
50
50
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
|
|
51
|
-
"message": "
|
|
51
|
+
"message": "Maghanap ng mga isyu sa accessibility sa mga single page application o kumplikadong form."
|
|
52
52
|
},
|
|
53
53
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
|
|
54
|
-
"message": "
|
|
54
|
+
"message": "Suriin ang mga pinakamahuhusay na kagawian ng mga menu at element ng UI na nakatago sa likod ng pakikipag-ugnayan."
|
|
55
55
|
},
|
|
56
56
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
|
|
57
|
-
"message": "
|
|
57
|
+
"message": "Sukatin ang mga pagbabago sa layout at tagal ng pag-execute sa JavaScript sa isang serye ng mga pakikipag-ugnayan."
|
|
58
58
|
},
|
|
59
59
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
|
|
60
|
-
"message": "
|
|
60
|
+
"message": "Tumuklas ng mga pagkakataon sa performance para pagandahin ang karanasan para sa mga long-lived na page at single-page application."
|
|
61
61
|
},
|
|
62
62
|
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
63
|
-
"message": "
|
|
63
|
+
"message": "Pinakamalaking epekto"
|
|
64
64
|
},
|
|
65
65
|
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
|
|
66
|
-
"message": "{numInformative,
|
|
66
|
+
"message": "{numInformative,plural, =1{{numInformative} nagbibigay impormasyong audit}one{{numInformative} nagbibigay impormasyong audit}other{{numInformative} na nagbibigay impormasyong audit}}"
|
|
67
67
|
},
|
|
68
68
|
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
69
69
|
"message": "Mobile"
|
|
@@ -72,19 +72,19 @@
|
|
|
72
72
|
"message": "Pag-load ng page"
|
|
73
73
|
},
|
|
74
74
|
"flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
|
|
75
|
-
"message": "
|
|
75
|
+
"message": "Nagsusuri ang mga ulat ng pag-navigate ng isang pag-load ng page, na eksaktong kagaya ng mga orihinal na ulat ng Lighthouse."
|
|
76
76
|
},
|
|
77
77
|
"flow-report/src/i18n/ui-strings.js | navigationReport": {
|
|
78
78
|
"message": "Ulat ng pag-navigate"
|
|
79
79
|
},
|
|
80
80
|
"flow-report/src/i18n/ui-strings.js | navigationReportCount": {
|
|
81
|
-
"message": "{numNavigation,
|
|
81
|
+
"message": "{numNavigation,plural, =1{{numNavigation} ulat ng pag-navigate}one{{numNavigation} ulat ng pag-navigate}other{{numNavigation} na ulat ng pag-navigate}}"
|
|
82
82
|
},
|
|
83
83
|
"flow-report/src/i18n/ui-strings.js | passableAuditCount": {
|
|
84
|
-
"message": "{numPassableAudits,
|
|
84
|
+
"message": "{numPassableAudits,plural, =1{{numPassableAudits} maipapasang audit}one{{numPassableAudits} maipapasang audit}other{{numPassableAudits} na maipapasang audit}}"
|
|
85
85
|
},
|
|
86
86
|
"flow-report/src/i18n/ui-strings.js | passedAuditCount": {
|
|
87
|
-
"message": "{numPassed,
|
|
87
|
+
"message": "{numPassed,plural, =1{{numPassed} audit ang pumasa}one{{numPassed} audit ang pumasa}other{{numPassed} na audit ang pumasa}}"
|
|
88
88
|
},
|
|
89
89
|
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
90
90
|
"message": "Average"
|
|
@@ -99,19 +99,19 @@
|
|
|
99
99
|
"message": "Maganda"
|
|
100
100
|
},
|
|
101
101
|
"flow-report/src/i18n/ui-strings.js | save": {
|
|
102
|
-
"message": "
|
|
102
|
+
"message": "I-save"
|
|
103
103
|
},
|
|
104
104
|
"flow-report/src/i18n/ui-strings.js | snapshotDescription": {
|
|
105
105
|
"message": "Na-capture na status ng page"
|
|
106
106
|
},
|
|
107
107
|
"flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
|
|
108
|
-
"message": "
|
|
108
|
+
"message": "Sinusuri ng mga ulat ng snapshot ang page sa isang partikular na status, na karaniwang pagkatapos ng mga pakikipag-ugnayan ng user."
|
|
109
109
|
},
|
|
110
110
|
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
|
|
111
111
|
"message": "Ulat ng snapshot"
|
|
112
112
|
},
|
|
113
113
|
"flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
|
|
114
|
-
"message": "{numSnapshot,
|
|
114
|
+
"message": "{numSnapshot,plural, =1{{numSnapshot} ulat ng snapshot}one{{numSnapshot} ulat ng snapshot}other{{numSnapshot} na ulat ng snapshot}}"
|
|
115
115
|
},
|
|
116
116
|
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
117
117
|
"message": "Buod"
|
|
@@ -120,13 +120,13 @@
|
|
|
120
120
|
"message": "Mga pakikipag-ugnayan ng user"
|
|
121
121
|
},
|
|
122
122
|
"flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
|
|
123
|
-
"message": "
|
|
123
|
+
"message": "Nagsusuri ang mga ulat ng tagal ng panahon ng abitrary na yugto ng panahon, na karaniwang naglalaman ng mga pakikipag-ugnayan ng user."
|
|
124
124
|
},
|
|
125
125
|
"flow-report/src/i18n/ui-strings.js | timespanReport": {
|
|
126
126
|
"message": "Ulat ng tagal ng panahon"
|
|
127
127
|
},
|
|
128
128
|
"flow-report/src/i18n/ui-strings.js | timespanReportCount": {
|
|
129
|
-
"message": "{numTimespan,
|
|
129
|
+
"message": "{numTimespan,plural, =1{{numTimespan} ulat ng tagal ng panahon}one{{numTimespan} ulat ng tagal ng panahon}other{{numTimespan} na ulat ng tagal ng panahon}}"
|
|
130
130
|
},
|
|
131
131
|
"flow-report/src/i18n/ui-strings.js | title": {
|
|
132
132
|
"message": "Ulat ng Daloy ng User ng Lighthouse"
|
|
@@ -1292,9 +1292,6 @@
|
|
|
1292
1292
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1293
1293
|
"message": "Maraming URL ang hindi magkakatugma ({urlList})"
|
|
1294
1294
|
},
|
|
1295
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1296
|
-
"message": "Tumuturo sa ibang domain ({url})"
|
|
1297
|
-
},
|
|
1298
1295
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1299
1296
|
"message": "Invalid na URL ({url})"
|
|
1300
1297
|
},
|
|
@@ -2331,7 +2328,7 @@
|
|
|
2331
2328
|
"message": "Tingnan ang calculator."
|
|
2332
2329
|
},
|
|
2333
2330
|
"report/renderer/util.js | collapseView": {
|
|
2334
|
-
"message": "
|
|
2331
|
+
"message": "I-collapse ang view"
|
|
2335
2332
|
},
|
|
2336
2333
|
"report/renderer/util.js | crcInitialNavigation": {
|
|
2337
2334
|
"message": "Unang Navigation"
|
|
@@ -2370,13 +2367,13 @@
|
|
|
2370
2367
|
"message": "Error sa ulat: walang impormasyon sa pag-audit"
|
|
2371
2368
|
},
|
|
2372
2369
|
"report/renderer/util.js | expandView": {
|
|
2373
|
-
"message": "
|
|
2370
|
+
"message": "Palawakin ang view"
|
|
2374
2371
|
},
|
|
2375
2372
|
"report/renderer/util.js | footerIssue": {
|
|
2376
2373
|
"message": "Mag-file ng isyu"
|
|
2377
2374
|
},
|
|
2378
2375
|
"report/renderer/util.js | hide": {
|
|
2379
|
-
"message": "
|
|
2376
|
+
"message": "Itago"
|
|
2380
2377
|
},
|
|
2381
2378
|
"report/renderer/util.js | labDataTitle": {
|
|
2382
2379
|
"message": "Data ng Lab"
|
|
@@ -2400,10 +2397,10 @@
|
|
|
2400
2397
|
"message": "Mga pumasang pag-audit"
|
|
2401
2398
|
},
|
|
2402
2399
|
"report/renderer/util.js | runtimeAnalysisWindow": {
|
|
2403
|
-
"message": "
|
|
2400
|
+
"message": "Paunang pag-load ng page"
|
|
2404
2401
|
},
|
|
2405
2402
|
"report/renderer/util.js | runtimeCustom": {
|
|
2406
|
-
"message": "Custom
|
|
2403
|
+
"message": "Custom na pag-throttle"
|
|
2407
2404
|
},
|
|
2408
2405
|
"report/renderer/util.js | runtimeDesktopEmulation": {
|
|
2409
2406
|
"message": "Na-emulate na Desktop"
|
|
@@ -2433,19 +2430,19 @@
|
|
|
2433
2430
|
"message": "User agent (network)"
|
|
2434
2431
|
},
|
|
2435
2432
|
"report/renderer/util.js | runtimeSingleLoad": {
|
|
2436
|
-
"message": "
|
|
2433
|
+
"message": "Isang pag-load ng page"
|
|
2437
2434
|
},
|
|
2438
2435
|
"report/renderer/util.js | runtimeSingleLoadTooltip": {
|
|
2439
|
-
"message": "
|
|
2436
|
+
"message": "Kinuha ang data na ito mula sa isang pag-load ng page, kumpara sa data ng field na nagbubuod sa maraming session."
|
|
2440
2437
|
},
|
|
2441
2438
|
"report/renderer/util.js | runtimeSlow4g": {
|
|
2442
|
-
"message": "
|
|
2439
|
+
"message": "Pag-throttle sa mabagal na 4G"
|
|
2443
2440
|
},
|
|
2444
2441
|
"report/renderer/util.js | runtimeUnknown": {
|
|
2445
2442
|
"message": "Hindi alam"
|
|
2446
2443
|
},
|
|
2447
2444
|
"report/renderer/util.js | show": {
|
|
2448
|
-
"message": "
|
|
2445
|
+
"message": "Ipakita"
|
|
2449
2446
|
},
|
|
2450
2447
|
"report/renderer/util.js | showRelevantAudits": {
|
|
2451
2448
|
"message": "Ipakita ang mga audit na may kaugnayan sa:"
|
|
@@ -60,10 +60,10 @@
|
|
|
60
60
|
"message": "Découvrir des opportunités de performances pour améliorer l'expérience utilisateur concernant les pages de longue durée et les applis Web monopages."
|
|
61
61
|
},
|
|
62
62
|
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
63
|
-
"message": "
|
|
63
|
+
"message": "Impact maximal"
|
|
64
64
|
},
|
|
65
65
|
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
|
|
66
|
-
"message": "{numInformative,
|
|
66
|
+
"message": "{numInformative,plural, =1{{numInformative} audit informatif}one{{numInformative} audit informatif}other{{numInformative} audits informatifs}}"
|
|
67
67
|
},
|
|
68
68
|
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
69
69
|
"message": "Mobile"
|
|
@@ -78,13 +78,13 @@
|
|
|
78
78
|
"message": "Rapport sur la navigation"
|
|
79
79
|
},
|
|
80
80
|
"flow-report/src/i18n/ui-strings.js | navigationReportCount": {
|
|
81
|
-
"message": "{numNavigation,
|
|
81
|
+
"message": "{numNavigation,plural, =1{{numNavigation} rapport sur la navigation}one{{numNavigation} rapport sur la navigation}other{{numNavigation} rapports sur la navigation}}"
|
|
82
82
|
},
|
|
83
83
|
"flow-report/src/i18n/ui-strings.js | passableAuditCount": {
|
|
84
|
-
"message": "{numPassableAudits,
|
|
84
|
+
"message": "{numPassableAudits,plural, =1{{numPassableAudits} audit réalisable}one{{numPassableAudits} audit réalisable}other{{numPassableAudits} audits réalisables}}"
|
|
85
85
|
},
|
|
86
86
|
"flow-report/src/i18n/ui-strings.js | passedAuditCount": {
|
|
87
|
-
"message": "{numPassed,
|
|
87
|
+
"message": "{numPassed,plural, =1{{numPassed} audit passé}one{{numPassed} audit passé}other{{numPassed} audits passés}}"
|
|
88
88
|
},
|
|
89
89
|
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
90
90
|
"message": "Moyenne"
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"message": "Rapport sur un instantané"
|
|
112
112
|
},
|
|
113
113
|
"flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
|
|
114
|
-
"message": "{numSnapshot,
|
|
114
|
+
"message": "{numSnapshot,plural, =1{{numSnapshot} rapport instantané}one{{numSnapshot} rapport instantané}other{{numSnapshot} rapports instantanés}}"
|
|
115
115
|
},
|
|
116
116
|
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
117
117
|
"message": "Résumé"
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
"message": "Rapport sur la période"
|
|
127
127
|
},
|
|
128
128
|
"flow-report/src/i18n/ui-strings.js | timespanReportCount": {
|
|
129
|
-
"message": "{numTimespan,
|
|
129
|
+
"message": "{numTimespan,plural, =1{{numTimespan} rapport périodique}one{{numTimespan} rapport périodique}other{{numTimespan} rapports périodiques}}"
|
|
130
130
|
},
|
|
131
131
|
"flow-report/src/i18n/ui-strings.js | title": {
|
|
132
132
|
"message": "Rapport sur le flux d'utilisateurs Lighthouse"
|
|
@@ -1292,9 +1292,6 @@
|
|
|
1292
1292
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1293
1293
|
"message": "Plusieurs URL en conflit ({urlList})"
|
|
1294
1294
|
},
|
|
1295
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1296
|
-
"message": "L'URL mène à un autre domaine ({url})"
|
|
1297
|
-
},
|
|
1298
1295
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1299
1296
|
"message": "URL incorrecte ({url})"
|
|
1300
1297
|
},
|
|
@@ -2331,7 +2328,7 @@
|
|
|
2331
2328
|
"message": "Affichez la calculatrice."
|
|
2332
2329
|
},
|
|
2333
2330
|
"report/renderer/util.js | collapseView": {
|
|
2334
|
-
"message": "
|
|
2331
|
+
"message": "Réduire la vue"
|
|
2335
2332
|
},
|
|
2336
2333
|
"report/renderer/util.js | crcInitialNavigation": {
|
|
2337
2334
|
"message": "Navigation initiale"
|
|
@@ -2370,13 +2367,13 @@
|
|
|
2370
2367
|
"message": "Erreur de rapport : pas d'information d'audit"
|
|
2371
2368
|
},
|
|
2372
2369
|
"report/renderer/util.js | expandView": {
|
|
2373
|
-
"message": "
|
|
2370
|
+
"message": "Développer la vue"
|
|
2374
2371
|
},
|
|
2375
2372
|
"report/renderer/util.js | footerIssue": {
|
|
2376
2373
|
"message": "Signaler un problème"
|
|
2377
2374
|
},
|
|
2378
2375
|
"report/renderer/util.js | hide": {
|
|
2379
|
-
"message": "
|
|
2376
|
+
"message": "Masquer"
|
|
2380
2377
|
},
|
|
2381
2378
|
"report/renderer/util.js | labDataTitle": {
|
|
2382
2379
|
"message": "Données de test"
|
|
@@ -2400,10 +2397,10 @@
|
|
|
2400
2397
|
"message": "Audits réussis"
|
|
2401
2398
|
},
|
|
2402
2399
|
"report/renderer/util.js | runtimeAnalysisWindow": {
|
|
2403
|
-
"message": "
|
|
2400
|
+
"message": "Chargement de page initial"
|
|
2404
2401
|
},
|
|
2405
2402
|
"report/renderer/util.js | runtimeCustom": {
|
|
2406
|
-
"message": "
|
|
2403
|
+
"message": "Limitation personnalisée"
|
|
2407
2404
|
},
|
|
2408
2405
|
"report/renderer/util.js | runtimeDesktopEmulation": {
|
|
2409
2406
|
"message": "Émulation (ordinateur)"
|
|
@@ -2433,19 +2430,19 @@
|
|
|
2433
2430
|
"message": "User-agent (réseau)"
|
|
2434
2431
|
},
|
|
2435
2432
|
"report/renderer/util.js | runtimeSingleLoad": {
|
|
2436
|
-
"message": "
|
|
2433
|
+
"message": "Chargement de page unique"
|
|
2437
2434
|
},
|
|
2438
2435
|
"report/renderer/util.js | runtimeSingleLoadTooltip": {
|
|
2439
|
-
"message": "
|
|
2436
|
+
"message": "Ces données proviennent d'un seul chargement de page, contrairement aux données de champ qui résument plusieurs sessions."
|
|
2440
2437
|
},
|
|
2441
2438
|
"report/renderer/util.js | runtimeSlow4g": {
|
|
2442
|
-
"message": "
|
|
2439
|
+
"message": "Connexion 4G lente"
|
|
2443
2440
|
},
|
|
2444
2441
|
"report/renderer/util.js | runtimeUnknown": {
|
|
2445
2442
|
"message": "Inconnu"
|
|
2446
2443
|
},
|
|
2447
2444
|
"report/renderer/util.js | show": {
|
|
2448
|
-
"message": "
|
|
2445
|
+
"message": "Afficher"
|
|
2449
2446
|
},
|
|
2450
2447
|
"report/renderer/util.js | showRelevantAudits": {
|
|
2451
2448
|
"message": "Afficher les audits pertinents pour :"
|