lighthouse 11.0.0-dev.20230814 → 11.0.0-dev.20230816
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/core/audits/dobetterweb/dom-size.d.ts +8 -2
- package/core/audits/dobetterweb/dom-size.js +50 -3
- package/core/audits/installable-manifest.d.ts +0 -6
- package/core/audits/installable-manifest.js +1 -17
- package/core/audits/largest-contentful-paint-element.js +21 -4
- package/core/audits/lcp-lazy-loaded.d.ts +3 -2
- package/core/audits/lcp-lazy-loaded.js +34 -5
- package/core/audits/third-party-facades.js +13 -5
- package/core/audits/third-party-summary.d.ts +4 -2
- package/core/audits/third-party-summary.js +24 -11
- package/core/computed/tbt-impact-tasks.d.ts +8 -13
- package/core/computed/tbt-impact-tasks.js +4 -6
- package/core/index.cjs +13 -13
- package/core/index.d.cts +15 -2
- package/package.json +2 -2
- package/shared/localization/locales/ar-XB.json +0 -3
- package/shared/localization/locales/ar.json +0 -3
- package/shared/localization/locales/bg.json +0 -3
- package/shared/localization/locales/ca.json +0 -3
- package/shared/localization/locales/cs.json +0 -3
- package/shared/localization/locales/da.json +0 -3
- package/shared/localization/locales/de.json +0 -3
- package/shared/localization/locales/el.json +0 -3
- package/shared/localization/locales/en-GB.json +0 -3
- package/shared/localization/locales/en-US.json +0 -3
- package/shared/localization/locales/en-XA.json +0 -3
- package/shared/localization/locales/en-XL.json +0 -3
- package/shared/localization/locales/es-419.json +0 -3
- package/shared/localization/locales/es.json +0 -3
- package/shared/localization/locales/fi.json +0 -3
- package/shared/localization/locales/fil.json +0 -3
- package/shared/localization/locales/fr.json +0 -3
- package/shared/localization/locales/he.json +0 -3
- package/shared/localization/locales/hi.json +0 -3
- package/shared/localization/locales/hr.json +0 -3
- package/shared/localization/locales/hu.json +0 -3
- package/shared/localization/locales/id.json +0 -3
- package/shared/localization/locales/it.json +0 -3
- package/shared/localization/locales/ja.json +0 -3
- package/shared/localization/locales/ko.json +0 -3
- package/shared/localization/locales/lt.json +0 -3
- package/shared/localization/locales/lv.json +0 -3
- package/shared/localization/locales/nl.json +0 -3
- package/shared/localization/locales/no.json +0 -3
- package/shared/localization/locales/pl.json +0 -3
- package/shared/localization/locales/pt-PT.json +0 -3
- package/shared/localization/locales/pt.json +0 -3
- package/shared/localization/locales/ro.json +0 -3
- package/shared/localization/locales/ru.json +0 -3
- package/shared/localization/locales/sk.json +0 -3
- package/shared/localization/locales/sl.json +0 -3
- package/shared/localization/locales/sr-Latn.json +0 -3
- package/shared/localization/locales/sr.json +0 -3
- package/shared/localization/locales/sv.json +0 -3
- package/shared/localization/locales/ta.json +0 -3
- package/shared/localization/locales/te.json +0 -3
- package/shared/localization/locales/th.json +0 -3
- package/shared/localization/locales/tr.json +0 -3
- package/shared/localization/locales/uk.json +0 -3
- package/shared/localization/locales/vi.json +0 -3
- package/shared/localization/locales/zh-HK.json +0 -3
- package/shared/localization/locales/zh-TW.json +0 -3
- package/shared/localization/locales/zh.json +0 -3
- package/third-party/chromium-synchronization/installability-errors-test.js +0 -1
- package/types/artifacts.d.ts +1 -0
package/core/index.cjs
CHANGED
|
@@ -5,38 +5,38 @@
|
|
|
5
5
|
*/
|
|
6
6
|
'use strict';
|
|
7
7
|
|
|
8
|
-
/**
|
|
8
|
+
/**
|
|
9
|
+
* @typedef ExportType
|
|
10
|
+
* @property {import('./index.js')['startFlow']} startFlow
|
|
11
|
+
* @property {import('./index.js')['navigation']} navigation
|
|
12
|
+
* @property {import('./index.js')['startTimespan']} startTimespan
|
|
13
|
+
* @property {import('./index.js')['snapshot']} snapshot
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
/** @type {import('./index.js')['default'] & ExportType} */
|
|
9
17
|
const lighthouse = async function lighthouse(...args) {
|
|
10
18
|
const {default: lighthouse} = await import('./index.js');
|
|
11
19
|
return lighthouse(...args);
|
|
12
20
|
};
|
|
13
21
|
|
|
14
|
-
|
|
15
|
-
const startFlow = async function startFlow(...args) {
|
|
22
|
+
lighthouse.startFlow = async function startFlow(...args) {
|
|
16
23
|
const {startFlow} = await import('./index.js');
|
|
17
24
|
return startFlow(...args);
|
|
18
25
|
};
|
|
19
26
|
|
|
20
|
-
|
|
21
|
-
const navigation = async function navigation(...args) {
|
|
27
|
+
lighthouse.navigation = async function navigation(...args) {
|
|
22
28
|
const {navigation} = await import('./index.js');
|
|
23
29
|
return navigation(...args);
|
|
24
30
|
};
|
|
25
31
|
|
|
26
|
-
|
|
27
|
-
const startTimespan = async function startTimespan(...args) {
|
|
32
|
+
lighthouse.startTimespan = async function startTimespan(...args) {
|
|
28
33
|
const {startTimespan} = await import('./index.js');
|
|
29
34
|
return startTimespan(...args);
|
|
30
35
|
};
|
|
31
36
|
|
|
32
|
-
|
|
33
|
-
const snapshot = async function snapshot(...args) {
|
|
37
|
+
lighthouse.snapshot = async function snapshot(...args) {
|
|
34
38
|
const {snapshot} = await import('./index.js');
|
|
35
39
|
return snapshot(...args);
|
|
36
40
|
};
|
|
37
41
|
|
|
38
42
|
module.exports = lighthouse;
|
|
39
|
-
module.exports.startFlow = startFlow;
|
|
40
|
-
module.exports.navigation = navigation;
|
|
41
|
-
module.exports.startTimespan = startTimespan;
|
|
42
|
-
module.exports.snapshot = snapshot;
|
package/core/index.d.cts
CHANGED
|
@@ -1,4 +1,17 @@
|
|
|
1
1
|
export = lighthouse;
|
|
2
|
-
/**
|
|
3
|
-
|
|
2
|
+
/**
|
|
3
|
+
* @typedef ExportType
|
|
4
|
+
* @property {import('./index.js')['startFlow']} startFlow
|
|
5
|
+
* @property {import('./index.js')['navigation']} navigation
|
|
6
|
+
* @property {import('./index.js')['startTimespan']} startTimespan
|
|
7
|
+
* @property {import('./index.js')['snapshot']} snapshot
|
|
8
|
+
*/
|
|
9
|
+
/** @type {import('./index.js')['default'] & ExportType} */
|
|
10
|
+
declare const lighthouse: typeof import("./index.js")['default'] & ExportType;
|
|
11
|
+
type ExportType = {
|
|
12
|
+
startFlow: typeof import("./index.js")['startFlow'];
|
|
13
|
+
navigation: typeof import("./index.js")['navigation'];
|
|
14
|
+
startTimespan: typeof import("./index.js")['startTimespan'];
|
|
15
|
+
snapshot: typeof import("./index.js")['snapshot'];
|
|
16
|
+
};
|
|
4
17
|
//# sourceMappingURL=index.d.cts.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lighthouse",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "11.0.0-dev.
|
|
4
|
+
"version": "11.0.0-dev.20230816",
|
|
5
5
|
"description": "Automated auditing, performance metrics, and best practices for the web.",
|
|
6
6
|
"main": "./core/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"unit-viewer": "yarn mocha --testMatch viewer/**/*-test.js",
|
|
57
57
|
"unit-flow": "bash flow-report/test/run-flow-report-tests.sh",
|
|
58
58
|
"unit": "yarn unit-flow && yarn mocha",
|
|
59
|
-
"unit:ci": "NODE_OPTIONS=--max-old-space-size=8192 npm run unit
|
|
59
|
+
"unit:ci": "NODE_OPTIONS=--max-old-space-size=8192 npm run unit",
|
|
60
60
|
"core-unit": "yarn unit-core",
|
|
61
61
|
"cli-unit": "yarn unit-cli",
|
|
62
62
|
"viewer-unit": "yarn unit-viewer",
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "The manifest URL scheme ({scheme}) is not supported on Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Manifest start URL is not valid"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "مخطّط عنوان URL الخاص بملف البيان ({scheme}) غير متاح لنظام التشغيل Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "عنوان URL البداية لملف البيان غير صالح."
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Схемата ({scheme}) на URL адреса на манифеста не се поддържа под Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "URL адресът за стартиране в манифеста не е валиден"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "L'esquema d'URL del manifest ({scheme}) no s'admet a Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "L'URL d'inici del manifest no és vàlid"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Schéma adresy URL manifestu ({scheme}) není v systému Android podporováno."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Počáteční URL (start_url) v manifestu není platná"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Manifestets webadresseskema ({scheme}) understøttes ikke i Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Manifestets startwebadresse er ikke gyldig"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Das Manifest-URL-Schema ({scheme}) wird unter Android nicht unterstützt."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Start-URL des Manifests ist nicht gültig"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Το URL μανιφέστου ({scheme}) δεν υποστηρίζεται στο Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Το URL έναρξης μανιφέστου δεν είναι έγκυρο"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "The manifest URL scheme ({scheme}) is not supported on Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Manifest start URL is not valid"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "The manifest URL scheme ({scheme}) is not supported on Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Manifest start URL is not valid"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "[Ţĥé måñîƒéšţ ÛŔĻ šçĥémé (ᐅ{scheme}ᐊ) îš ñöţ šûþþöŕţéð öñ Åñðŕöîð. one two three four five six seven eight nine ten eleven twelve]"
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "[Måñîƒéšţ šţåŕţ ÛŔĻ îš ñöţ våļîð one two three four five six seven]"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "L̂íĝh́t̂h́ôúŝé ĉóûĺd̂ ńôt́ d̂ét̂ér̂ḿîńê íf̂ t́ĥé p̂áĝé îś îńŝt́âĺl̂áb̂ĺê. Ṕl̂éâśê t́r̂ý ŵít̂h́ â ńêẃêŕ v̂ér̂śîón̂ óf̂ Ćĥŕôḿê."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "T̂h́ê ḿâńîf́êśt̂ ÚR̂Ĺ ŝćĥém̂é ({scheme}) îś n̂ót̂ śûṕp̂ór̂t́êd́ ôń Âńd̂ŕôíd̂."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "M̂án̂íf̂éŝt́ ŝt́âŕt̂ ÚR̂Ĺ îś n̂ót̂ v́âĺîd́"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "El esquema de URL del manifiesto ({scheme}) no es compatible en Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "La URL de inicio del manifiesto no es válida"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "El esquema de URL del archivo de manifiesto ({scheme}) no es compatible con Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "La URL de inicio del archivo de manifiesto no es válida"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Manifestin URL-kaava ({scheme}) ei ole Androidin tukema."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Manifestin aloitus-URL ei kelpaa"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Hindi sinusuportahan sa Android ang scheme ng URL ng manifest ({scheme})."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Hindi valid ang start URL ng manifest"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Le schéma d'URL du fichier manifeste ({scheme}) n'est pas compatible avec Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "L'URL de démarrage du fichier manifeste n'est pas valide"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "הסכימה של כתובת ה-URL של המניפסט ({scheme}) אינה נתמכת ב-Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "כתובת ה-URL להתחלה של המניפסט לא חוקית"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "मेनिफ़ेस्ट का यूआरएल जिस स्कीम ({scheme}) का इस्तेमाल करता है वह Android पर काम नहीं करती."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "दिया गया मेनिफ़ेस्ट स्टार्ट यूआरएल मान्य नहीं है"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Shema URL-a manifesta ({scheme}) nije podržana na Androidu."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Početni URL manifesta nije važeći"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "A manifest URL-sémája ({scheme}) nem támogatott Androidon."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "A manifest kezdési URL-je érvénytelen"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Skema URL manifes ({scheme}) tidak didukung di Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "URL mulai manifes tidak valid"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Lo schema dell'URL del file manifest ({scheme}) non è supportato su Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "L'URL di avvio del file manifest non è valido"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "マニフェスト URL スキーム({scheme})は Android ではサポートされていません。"
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "マニフェストの開始 URL が無効です"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Android에서 지원되지 않는 매니페스트 URL 스키마({scheme})입니다."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "잘못된 매니페스트 시작 URL입니다."
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Aprašo URL schema ({scheme}) nepalaikoma sistemoje „Android“."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Aprašo pradžios URL netinkamas"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Manifesta URL shēma ({scheme}) netiek atbalstīta operētājsistēmā Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Manifesta sākuma URL nav derīgs"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Het URL-schema van het manifest ({scheme}) wordt niet ondersteund op Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "De start-URL voor het manifest is ongeldig"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Protokollen for manifestets nettadresse ({scheme}) støttes ikke i Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Start-nettadressen til manifestet er ikke gyldig"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Schemat adresu URL pliku manifestu ({scheme}) nie jest obsługiwany na urządzeniach z Androidem."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "URL początkowy pliku manifestu jest nieprawidłowy"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "O esquema do URL do manifesto ({scheme}) não é suportado no Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "O URL de início do manifesto não é válido."
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "O Android não tem suporte ao esquema de URL do manifesto ({scheme})."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "O URL de início do manifesto não é válido"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Schema adresei URL a manifestului ({scheme}) nu este acceptată pe Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Adresa URL inițială a manifestului nu este validă"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Android не поддерживает схему URL манифеста ({scheme})."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Недействительный URL стартовой страницы манифеста."
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Schéma webovej adresy manifestu ({scheme}) nie je v Androide podporovaná."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Začiatočná webová adresa manifestu nie je platná"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Shema URL-ja v manifestu ({scheme}) ni podprta v sistemu Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Začetni URL manifesta ni veljaven"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Šema URL-a manifesta ({scheme}) nije podržana na Android-u."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Početni URL manifesta nije važeći"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Шема URL-а манифеста ({scheme}) није подржана на Android-у."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Почетни URL манифеста није важећи"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Manifestets webbadresschema ({scheme}) stöds inte på Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Startwebbadressen i manifestet är ogiltig"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Androidல் மெனிஃபெஸ்ட் URL ஸ்கீம் ({scheme}) ஆதரிக்கப்படவில்லை."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "மெனிஃபெஸ்ட் ஸ்டார்ட் URL தவறானது"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "మ్యానిఫెస్ట్ URL స్కీమ్ ({scheme})కు Androidలో సపోర్ట్ లేదు."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "మ్యానిఫెస్ట్ ప్రారంభ URL చెల్లదు"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "รูปแบบ URL ของไฟล์ Manifest ({scheme}) ใช้ไม่ได้ใน Android"
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "URL เริ่มต้นของไฟล์ Manifest ไม่ถูกต้อง"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Manifest dosyasının URL şeması ({scheme}) Android'de desteklenmiyor."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Manifest başlangıç URL'si geçerli değil"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Схема URL-адреси маніфесту ({scheme}) не підтримується на Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "Початкова URL-адреса в маніфесті недійсна"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Lược đồ URL kê khai ({scheme}) không được hỗ trợ trên Android."
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "URL bắt đầu của tệp kê khai là không hợp lệ"
|
|
1093
1090
|
},
|
|
@@ -1085,9 +1085,6 @@
|
|
|
1085
1085
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1086
1086
|
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1087
1087
|
},
|
|
1088
|
-
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1089
|
-
"message": "Android 不支援資訊清單網址配置 ({scheme})。"
|
|
1090
|
-
},
|
|
1091
1088
|
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
1089
|
"message": "資訊清單起始網址無效"
|
|
1093
1090
|
},
|