lighthouse 10.4.0-dev.20230715 → 10.4.0-dev.20230717
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/cli/test/smokehouse/core-tests.js +0 -2
- package/core/audits/byte-efficiency/duplicated-javascript.js +2 -2
- package/core/audits/installable-manifest.d.ts +1 -5
- package/core/audits/installable-manifest.js +2 -7
- package/core/config/default-config.js +0 -2
- package/core/gather/gatherers/dobetterweb/response-compression.js +8 -6
- package/core/lib/navigation-error.js +5 -0
- package/package.json +1 -1
- package/shared/localization/locales/ar-XB.json +0 -24
- package/shared/localization/locales/ar.json +0 -24
- package/shared/localization/locales/bg.json +0 -24
- package/shared/localization/locales/ca.json +0 -24
- package/shared/localization/locales/cs.json +0 -24
- package/shared/localization/locales/da.json +0 -24
- package/shared/localization/locales/de.json +0 -24
- package/shared/localization/locales/el.json +0 -24
- package/shared/localization/locales/en-GB.json +0 -24
- package/shared/localization/locales/en-US.json +1 -25
- package/shared/localization/locales/en-XA.json +0 -24
- package/shared/localization/locales/en-XL.json +1 -25
- package/shared/localization/locales/es-419.json +0 -24
- package/shared/localization/locales/es.json +0 -24
- package/shared/localization/locales/fi.json +0 -24
- package/shared/localization/locales/fil.json +0 -24
- package/shared/localization/locales/fr.json +0 -24
- package/shared/localization/locales/he.json +0 -24
- package/shared/localization/locales/hi.json +0 -24
- package/shared/localization/locales/hr.json +0 -24
- package/shared/localization/locales/hu.json +0 -24
- package/shared/localization/locales/id.json +0 -24
- package/shared/localization/locales/it.json +0 -24
- package/shared/localization/locales/ja.json +0 -24
- package/shared/localization/locales/ko.json +0 -24
- package/shared/localization/locales/lt.json +0 -24
- package/shared/localization/locales/lv.json +0 -24
- package/shared/localization/locales/nl.json +0 -24
- package/shared/localization/locales/no.json +0 -24
- package/shared/localization/locales/pl.json +0 -24
- package/shared/localization/locales/pt-PT.json +0 -24
- package/shared/localization/locales/pt.json +0 -24
- package/shared/localization/locales/ro.json +0 -24
- package/shared/localization/locales/ru.json +0 -24
- package/shared/localization/locales/sk.json +0 -24
- package/shared/localization/locales/sl.json +0 -24
- package/shared/localization/locales/sr-Latn.json +0 -24
- package/shared/localization/locales/sr.json +0 -24
- package/shared/localization/locales/sv.json +0 -24
- package/shared/localization/locales/ta.json +0 -24
- package/shared/localization/locales/te.json +0 -24
- package/shared/localization/locales/th.json +0 -24
- package/shared/localization/locales/tr.json +0 -24
- package/shared/localization/locales/uk.json +0 -24
- package/shared/localization/locales/vi.json +0 -24
- package/shared/localization/locales/zh-HK.json +0 -24
- package/shared/localization/locales/zh-TW.json +0 -24
- package/shared/localization/locales/zh.json +0 -24
- package/core/audits/service-worker.d.ts +0 -46
- package/core/audits/service-worker.js +0 -182
|
@@ -33,7 +33,6 @@ import metricsTrickyTtiLateFcp from './test-definitions/metrics-tricky-tti-late-
|
|
|
33
33
|
import offlineOnlineOnly from './test-definitions/offline-online-only.js';
|
|
34
34
|
import offlineReady from './test-definitions/offline-ready.js';
|
|
35
35
|
import offlineSwBroken from './test-definitions/offline-sw-broken.js';
|
|
36
|
-
import offlineSwSlow from './test-definitions/offline-sw-slow.js';
|
|
37
36
|
import oopifRequests from './test-definitions/oopif-requests.js';
|
|
38
37
|
import oopifScripts from './test-definitions/oopif-scripts.js';
|
|
39
38
|
import perfBudgets from './test-definitions/perf-budgets.js';
|
|
@@ -97,7 +96,6 @@ const smokeTests = [
|
|
|
97
96
|
offlineOnlineOnly,
|
|
98
97
|
offlineReady,
|
|
99
98
|
offlineSwBroken,
|
|
100
|
-
offlineSwSlow,
|
|
101
99
|
oopifRequests,
|
|
102
100
|
oopifScripts,
|
|
103
101
|
perfBudgets,
|
|
@@ -229,8 +229,8 @@ class DuplicatedJavascript extends ByteEfficiencyAudit {
|
|
|
229
229
|
const headings = [
|
|
230
230
|
/* eslint-disable max-len */
|
|
231
231
|
{key: 'source', valueType: 'code', subItemsHeading: {key: 'url', valueType: 'url'}, label: str_(i18n.UIStrings.columnSource)},
|
|
232
|
-
{key: null, valueType: 'bytes', subItemsHeading: {key: 'sourceTransferBytes'}, granularity:
|
|
233
|
-
{key: 'wastedBytes', valueType: 'bytes', granularity:
|
|
232
|
+
{key: null, valueType: 'bytes', subItemsHeading: {key: 'sourceTransferBytes'}, granularity: 10, label: str_(i18n.UIStrings.columnTransferSize)},
|
|
233
|
+
{key: 'wastedBytes', valueType: 'bytes', granularity: 10, label: str_(i18n.UIStrings.columnWastedBytes)},
|
|
234
234
|
/* eslint-enable max-len */
|
|
235
235
|
];
|
|
236
236
|
|
|
@@ -59,10 +59,6 @@ export const UIStrings: {
|
|
|
59
59
|
'manifest-display-not-supported': string;
|
|
60
60
|
/** Error message explaining that the manifest could not be fetched, might be empty, or could not be parsed. */
|
|
61
61
|
'manifest-empty': string;
|
|
62
|
-
/** Error message explaining that no matching service worker was detected,
|
|
63
|
-
* and provides a suggestion to reload the page or check whether the scope of the service worker
|
|
64
|
-
* for the current page encloses the scope and start URL from the manifest. */
|
|
65
|
-
'no-matching-service-worker': string;
|
|
66
62
|
/**
|
|
67
63
|
* @description Error message explaining that the manifest does not contain a suitable icon.
|
|
68
64
|
* @example {192} value0
|
|
@@ -104,7 +100,7 @@ export const UIStrings: {
|
|
|
104
100
|
'manifest-location-changed': string;
|
|
105
101
|
/** Warning message explaining that the page does not work offline. */
|
|
106
102
|
'warn-not-offline-capable': string;
|
|
107
|
-
/** Error message explaining that Lighthouse failed while
|
|
103
|
+
/** Error message explaining that Lighthouse failed while checking if the page is installable, and directing the user to try again in a new Chrome. */
|
|
108
104
|
'protocol-timeout': string;
|
|
109
105
|
/** Message logged when the web app has been uninstalled o desktop, signalling that the install banner state is being reset. */
|
|
110
106
|
'pipeline-restarted': string;
|
|
@@ -44,11 +44,6 @@ const UIStrings = {
|
|
|
44
44
|
'manifest-display-not-supported': `Manifest 'display' property must be one of 'standalone', 'fullscreen', or 'minimal-ui'`,
|
|
45
45
|
/** Error message explaining that the manifest could not be fetched, might be empty, or could not be parsed. */
|
|
46
46
|
'manifest-empty': `Manifest could not be fetched, is empty, or could not be parsed`,
|
|
47
|
-
// TODO: This error was removed in M114, we can remove this message when it hits stable.
|
|
48
|
-
/** Error message explaining that no matching service worker was detected,
|
|
49
|
-
* and provides a suggestion to reload the page or check whether the scope of the service worker
|
|
50
|
-
* for the current page encloses the scope and start URL from the manifest. */
|
|
51
|
-
'no-matching-service-worker': `No matching service worker detected. You may need to reload the page, or check that the scope of the service worker for the current page encloses the scope and start URL from the manifest.`,
|
|
52
47
|
/**
|
|
53
48
|
* @description Error message explaining that the manifest does not contain a suitable icon.
|
|
54
49
|
* @example {192} value0
|
|
@@ -93,8 +88,8 @@ const UIStrings = {
|
|
|
93
88
|
'manifest-location-changed': `Manifest URL changed while the manifest was being fetched.`,
|
|
94
89
|
/** Warning message explaining that the page does not work offline. */
|
|
95
90
|
'warn-not-offline-capable': `Page does not work offline. The page will not be regarded as installable after Chrome 93, stable release August 2021.`,
|
|
96
|
-
/** Error message explaining that Lighthouse failed while
|
|
97
|
-
'protocol-timeout': `Lighthouse could not determine if
|
|
91
|
+
/** Error message explaining that Lighthouse failed while checking if the page is installable, and directing the user to try again in a new Chrome. */
|
|
92
|
+
'protocol-timeout': `Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome.`,
|
|
98
93
|
/** Message logged when the web app has been uninstalled o desktop, signalling that the install banner state is being reset. */
|
|
99
94
|
'pipeline-restarted': 'PWA has been uninstalled and installability checks resetting.',
|
|
100
95
|
/**
|
|
@@ -176,7 +176,6 @@ const defaultConfig = {
|
|
|
176
176
|
],
|
|
177
177
|
audits: [
|
|
178
178
|
'is-on-https',
|
|
179
|
-
'service-worker',
|
|
180
179
|
'viewport',
|
|
181
180
|
'metrics/first-contentful-paint',
|
|
182
181
|
'metrics/largest-contentful-paint',
|
|
@@ -638,7 +637,6 @@ const defaultConfig = {
|
|
|
638
637
|
// Installable
|
|
639
638
|
{id: 'installable-manifest', weight: 2, group: 'pwa-installable'},
|
|
640
639
|
// PWA Optimized
|
|
641
|
-
{id: 'service-worker', weight: 1, group: 'pwa-optimized'},
|
|
642
640
|
{id: 'splash-screen', weight: 1, group: 'pwa-optimized'},
|
|
643
641
|
{id: 'themed-omnibox', weight: 1, group: 'pwa-optimized'},
|
|
644
642
|
{id: 'content-width', weight: 1, group: 'pwa-optimized'},
|
|
@@ -13,9 +13,10 @@
|
|
|
13
13
|
import {Buffer} from 'buffer';
|
|
14
14
|
import {gzip} from 'zlib';
|
|
15
15
|
|
|
16
|
+
import log from 'lighthouse-logger';
|
|
17
|
+
|
|
16
18
|
import BaseGatherer from '../../base-gatherer.js';
|
|
17
19
|
import UrlUtils from '../../../lib/url-utils.js';
|
|
18
|
-
import {Sentry} from '../../../lib/sentry.js';
|
|
19
20
|
import {NetworkRequest} from '../../../lib/network-request.js';
|
|
20
21
|
import DevtoolsLog from '../devtools-log.js';
|
|
21
22
|
import {fetchResponseBodyFromCache} from '../../driver/network.js';
|
|
@@ -119,12 +120,13 @@ class ResponseCompression extends BaseGatherer {
|
|
|
119
120
|
});
|
|
120
121
|
});
|
|
121
122
|
}).catch(err => {
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
extra
|
|
125
|
-
|
|
126
|
-
}
|
|
123
|
+
const isExpectedError = err?.message?.includes('No resource with given identifier found');
|
|
124
|
+
if (!isExpectedError) {
|
|
125
|
+
err.extra = {url: UrlUtils.elideDataURI(record.url)};
|
|
126
|
+
throw err;
|
|
127
|
+
}
|
|
127
128
|
|
|
129
|
+
log.error('ResponseCompression', err.message);
|
|
128
130
|
record.gzipSize = undefined;
|
|
129
131
|
return record;
|
|
130
132
|
});
|
|
@@ -95,6 +95,9 @@ function getNonHtmlError(finalRecord) {
|
|
|
95
95
|
// If we never requested a document, there's no doctype error, let other cases handle it.
|
|
96
96
|
if (!finalRecord) return undefined;
|
|
97
97
|
|
|
98
|
+
// If the document request error'd, we should not complain about a bad mimeType.
|
|
99
|
+
if (!finalRecord.mimeType || finalRecord.statusCode === -1) return undefined;
|
|
100
|
+
|
|
98
101
|
// mimeType is determined by the browser, we assume Chrome is determining mimeType correctly,
|
|
99
102
|
// independently of 'Content-Type' response headers, and always sending mimeType if well-formed.
|
|
100
103
|
if (finalRecord.mimeType !== HTML_MIME_TYPE && finalRecord.mimeType !== XHTML_MIME_TYPE) {
|
|
@@ -163,6 +166,8 @@ function getPageLoadError(navigationError, context) {
|
|
|
163
166
|
// Navigation errors are rather generic and express some failure of the page to render properly.
|
|
164
167
|
// Use `navigationError` as the last resort.
|
|
165
168
|
// Example: `NO_FCP`, the page never painted content for some unknown reason.
|
|
169
|
+
// Note that the caller possibly gave this to us as undefined, in which case we have determined
|
|
170
|
+
// there to be no error with this page load - but there was perhaps a warning.
|
|
166
171
|
return navigationError;
|
|
167
172
|
}
|
|
168
173
|
|
package/package.json
CHANGED
|
@@ -938,9 +938,6 @@
|
|
|
938
938
|
"core/audits/installable-manifest.js | no-manifest": {
|
|
939
939
|
"message": "Page has no manifest <link> URL"
|
|
940
940
|
},
|
|
941
|
-
"core/audits/installable-manifest.js | no-matching-service-worker": {
|
|
942
|
-
"message": "No matching service worker detected. You may need to reload the page, or check that the scope of the service worker for the current page encloses the scope and start URL from the manifest."
|
|
943
|
-
},
|
|
944
941
|
"core/audits/installable-manifest.js | no-url-for-service-worker": {
|
|
945
942
|
"message": "Could not check service worker without a 'start_url' field in the manifest"
|
|
946
943
|
},
|
|
@@ -1412,27 +1409,6 @@
|
|
|
1412
1409
|
"core/audits/server-response-time.js | title": {
|
|
1413
1410
|
"message": "Initial server response time was short"
|
|
1414
1411
|
},
|
|
1415
|
-
"core/audits/service-worker.js | description": {
|
|
1416
|
-
"message": "The service worker is the technology that enables your app to use many Progressive Web App features, such as offline, add to homescreen, and push notifications. [Learn more about Service Workers](https://developer.chrome.com/docs/lighthouse/pwa/service-worker/)."
|
|
1417
|
-
},
|
|
1418
|
-
"core/audits/service-worker.js | explanationBadManifest": {
|
|
1419
|
-
"message": "This page is controlled by a service worker, however no `start_url` was found because manifest failed to parse as valid JSON"
|
|
1420
|
-
},
|
|
1421
|
-
"core/audits/service-worker.js | explanationBadStartUrl": {
|
|
1422
|
-
"message": "This page is controlled by a service worker, however the `start_url` ({startUrl}) is not in the service worker's scope ({scopeUrl})"
|
|
1423
|
-
},
|
|
1424
|
-
"core/audits/service-worker.js | explanationNoManifest": {
|
|
1425
|
-
"message": "This page is controlled by a service worker, however no `start_url` was found because no manifest was fetched."
|
|
1426
|
-
},
|
|
1427
|
-
"core/audits/service-worker.js | explanationOutOfScope": {
|
|
1428
|
-
"message": "This origin has one or more service workers, however the page ({pageUrl}) is not in scope."
|
|
1429
|
-
},
|
|
1430
|
-
"core/audits/service-worker.js | failureTitle": {
|
|
1431
|
-
"message": "Does not register a service worker that controls page and `start_url`"
|
|
1432
|
-
},
|
|
1433
|
-
"core/audits/service-worker.js | title": {
|
|
1434
|
-
"message": "Registers a service worker that controls page and `start_url`"
|
|
1435
|
-
},
|
|
1436
1412
|
"core/audits/splash-screen.js | description": {
|
|
1437
1413
|
"message": "A themed splash screen ensures a high-quality experience when users launch your app from their homescreens. [Learn more about splash screens](https://developer.chrome.com/docs/lighthouse/pwa/splash-screen/)."
|
|
1438
1414
|
},
|
|
@@ -938,9 +938,6 @@
|
|
|
938
938
|
"core/audits/installable-manifest.js | no-manifest": {
|
|
939
939
|
"message": "لا تتضمّن الصفحة عنوان URL <link> لملف البيان."
|
|
940
940
|
},
|
|
941
|
-
"core/audits/installable-manifest.js | no-matching-service-worker": {
|
|
942
|
-
"message": "لم يتم رصد مشغّل خدمات مطابق. قد تحتاج إلى إعادة تحميل الصفحة، أو التأكّد أن نطاق مشغّل الخدمات للصفحة الحالية يشتمل على النطاق وعنوان URL البداية من ملف البيان."
|
|
943
|
-
},
|
|
944
941
|
"core/audits/installable-manifest.js | no-url-for-service-worker": {
|
|
945
942
|
"message": "تعذّر التحقّق من مشغّل الخدمات بدون توفّر حقل \"start_url\" في ملف البيان."
|
|
946
943
|
},
|
|
@@ -1412,27 +1409,6 @@
|
|
|
1412
1409
|
"core/audits/server-response-time.js | title": {
|
|
1413
1410
|
"message": "وقت استجابة الخادم الأوّلي قصير"
|
|
1414
1411
|
},
|
|
1415
|
-
"core/audits/service-worker.js | description": {
|
|
1416
|
-
"message": "مشغّل الخدمات هو التكنولوجيا التي تمكّن تطبيقك من استخدام ميزات عديدة في \"تطبيق الويب التقدّمي\"، مثل الاستجابة عند عدم الاتصال بالإنترنت والإضافة إلى الشاشة الرئيسية والإشعارات الفورية. [مزيد من المعلومات حول مشغِّلات الخدمات](https://developer.chrome.com/docs/lighthouse/pwa/service-worker/)"
|
|
1417
|
-
},
|
|
1418
|
-
"core/audits/service-worker.js | explanationBadManifest": {
|
|
1419
|
-
"message": "يتحكم مشغّل الخدمات في هذه الصفحة، ومع ذلك لم يتم العثور على `start_url` بسبب تعذّر تحليل البيان كملف JSON صالح"
|
|
1420
|
-
},
|
|
1421
|
-
"core/audits/service-worker.js | explanationBadStartUrl": {
|
|
1422
|
-
"message": "يتحكم مشغّل الخدمات في هذه الصفحة، ومع ذلك لا يتوفر `start_url` ({startUrl}) في نطاق مشغّل الخدمات ({scopeUrl})"
|
|
1423
|
-
},
|
|
1424
|
-
"core/audits/service-worker.js | explanationNoManifest": {
|
|
1425
|
-
"message": "يتحكم مشغّل الخدمات في هذه الصفحة، ومع ذلك لم يتم العثور على `start_url` لأنه لم يتم جلب أي بيان."
|
|
1426
|
-
},
|
|
1427
|
-
"core/audits/service-worker.js | explanationOutOfScope": {
|
|
1428
|
-
"message": "تحتوي نقطة الانطلاق هذه على مشغّل خدمات واحد أو أكثر، ولكن لا يوجد مشغّل يتحكم في الصفحة ({pageUrl})."
|
|
1429
|
-
},
|
|
1430
|
-
"core/audits/service-worker.js | failureTitle": {
|
|
1431
|
-
"message": "عدم تسجيل مشغّل الخدمات الذي يتحكّم في صفحة و`start_url`"
|
|
1432
|
-
},
|
|
1433
|
-
"core/audits/service-worker.js | title": {
|
|
1434
|
-
"message": "تسجيل مشغّل الخدمات الذي يتحكّم في صفحة و`start_url`"
|
|
1435
|
-
},
|
|
1436
1412
|
"core/audits/splash-screen.js | description": {
|
|
1437
1413
|
"message": "تضمن شاشة البداية المميَّزة توفير تجربة عالية الجودة عند تشغيل المستخدمين لتطبيقك من الشاشات الرئيسية. [مزيد من المعلومات حول شاشات البداية](https://developer.chrome.com/docs/lighthouse/pwa/splash-screen/)"
|
|
1438
1414
|
},
|
|
@@ -938,9 +938,6 @@
|
|
|
938
938
|
"core/audits/installable-manifest.js | no-manifest": {
|
|
939
939
|
"message": "В страницата не е зададен URL адрес на манифеста чрез маркера <link>"
|
|
940
940
|
},
|
|
941
|
-
"core/audits/installable-manifest.js | no-matching-service-worker": {
|
|
942
|
-
"message": "Не бе открит съответстващ файл service worker. Може да се наложи да презаредите страницата или да се уверите, че зададените в манифеста обхват и URL адрес за стартиране попадат в обхвата на service worker за текущата страница."
|
|
943
|
-
},
|
|
944
941
|
"core/audits/installable-manifest.js | no-url-for-service-worker": {
|
|
945
942
|
"message": "Файлът service worker не бе проверен, тъй като за него липсваше поле start_url в манифеста"
|
|
946
943
|
},
|
|
@@ -1412,27 +1409,6 @@
|
|
|
1412
1409
|
"core/audits/server-response-time.js | title": {
|
|
1413
1410
|
"message": "Началното време за реакция на сървъра бе кратко"
|
|
1414
1411
|
},
|
|
1415
|
-
"core/audits/service-worker.js | description": {
|
|
1416
|
-
"message": "Service worker е технологията, която дава възможност на приложението ви да използва много от функциите на прогресивните уеб приложения (PWA), като например работа офлайн, добавяне към началния екран и насочени известия. [Научете повече за service worker](https://developer.chrome.com/docs/lighthouse/pwa/service-worker/)."
|
|
1417
|
-
},
|
|
1418
|
-
"core/audits/service-worker.js | explanationBadManifest": {
|
|
1419
|
-
"message": "Тази страница е контролирана от service worker, но не бе намерен параметър `start_url`, тъй като при синтактичния анализ бе установено, че манифестът не е във валиден формат JSON"
|
|
1420
|
-
},
|
|
1421
|
-
"core/audits/service-worker.js | explanationBadStartUrl": {
|
|
1422
|
-
"message": "Тази страница се контролира от файл service worker, но `start_url` ({startUrl}) не е в обхвата му ({scopeUrl})"
|
|
1423
|
-
},
|
|
1424
|
-
"core/audits/service-worker.js | explanationNoManifest": {
|
|
1425
|
-
"message": "Тази страница се контролира от service worker, но не бе намерен параметър `start_url`, тъй като не бе извлечен манифест."
|
|
1426
|
-
},
|
|
1427
|
-
"core/audits/service-worker.js | explanationOutOfScope": {
|
|
1428
|
-
"message": "Този източник има един или повече файлове service worker, но страницата ({pageUrl}) не е в обхвата им."
|
|
1429
|
-
},
|
|
1430
|
-
"core/audits/service-worker.js | failureTitle": {
|
|
1431
|
-
"message": "Няма регистриран service worker, който контролира страницата и `start_url`"
|
|
1432
|
-
},
|
|
1433
|
-
"core/audits/service-worker.js | title": {
|
|
1434
|
-
"message": "Регистриран е service worker, който контролира страницата и `start_url`"
|
|
1435
|
-
},
|
|
1436
1412
|
"core/audits/splash-screen.js | description": {
|
|
1437
1413
|
"message": "Тематичният първоначален екран гарантира висококачествена практическа работа, когато потребителите стартират приложението ви от началния екран. [Научете повече за първоначалните екрани](https://developer.chrome.com/docs/lighthouse/pwa/splash-screen/)."
|
|
1438
1414
|
},
|
|
@@ -938,9 +938,6 @@
|
|
|
938
938
|
"core/audits/installable-manifest.js | no-manifest": {
|
|
939
939
|
"message": "La pàgina no té cap URL <link> del fitxer de manifest"
|
|
940
940
|
},
|
|
941
|
-
"core/audits/installable-manifest.js | no-matching-service-worker": {
|
|
942
|
-
"message": "No s'ha detectat cap Service Worker coincident. Pot ser que hagis de tornar a carregar la pàgina o comprovar que l'abast del Service Worker per a la pàgina actual englobi l'abast i l'URL d'inici del fitxer de manifest."
|
|
943
|
-
},
|
|
944
941
|
"core/audits/installable-manifest.js | no-url-for-service-worker": {
|
|
945
942
|
"message": "No s'ha pogut comprovar el Service Worker perquè el fitxer de manifest no té cap camp \"start_url\""
|
|
946
943
|
},
|
|
@@ -1412,27 +1409,6 @@
|
|
|
1412
1409
|
"core/audits/server-response-time.js | title": {
|
|
1413
1410
|
"message": "El temps inicial de resposta del servidor ha estat breu"
|
|
1414
1411
|
},
|
|
1415
|
-
"core/audits/service-worker.js | description": {
|
|
1416
|
-
"message": "El Service Worker és la tecnologia que fa possible que la teva aplicació utilitzi moltes funcions d'aplicació web progressiva, com ara funcionar sense connexió, poder afegir-se a la pantalla d'inici i mostrar notificacions automàtiques. [Obtén més informació sobre els Service Workers](https://developer.chrome.com/docs/lighthouse/pwa/service-worker/)."
|
|
1417
|
-
},
|
|
1418
|
-
"core/audits/service-worker.js | explanationBadManifest": {
|
|
1419
|
-
"message": "Tot i que un Service Worker controla aquesta pàgina, no s'ha trobat cap atribut `start_url` perquè el fitxer de manifest no s'ha pogut analitzar com a format JSON vàlid"
|
|
1420
|
-
},
|
|
1421
|
-
"core/audits/service-worker.js | explanationBadStartUrl": {
|
|
1422
|
-
"message": "Tot i que un Service Worker controla aquesta pàgina, l'atribut `start_url` ({startUrl}) no és a l'abast del Service Worker ({scopeUrl})"
|
|
1423
|
-
},
|
|
1424
|
-
"core/audits/service-worker.js | explanationNoManifest": {
|
|
1425
|
-
"message": "Tot i que un Service Worker controla aquesta pàgina, no s'ha trobat cap `start_url` perquè no s'ha obtingut cap fitxer de manifest."
|
|
1426
|
-
},
|
|
1427
|
-
"core/audits/service-worker.js | explanationOutOfScope": {
|
|
1428
|
-
"message": "Aquest origen té un Service Worker o més, però la pàgina ({pageUrl}) està fora de l'abast."
|
|
1429
|
-
},
|
|
1430
|
-
"core/audits/service-worker.js | failureTitle": {
|
|
1431
|
-
"message": "No registra cap Service Worker que controli la pàgina i l'atribut `start_url`"
|
|
1432
|
-
},
|
|
1433
|
-
"core/audits/service-worker.js | title": {
|
|
1434
|
-
"message": "Registra un Service Worker que controla la pàgina i l'atribut `start_url`"
|
|
1435
|
-
},
|
|
1436
1412
|
"core/audits/splash-screen.js | description": {
|
|
1437
1413
|
"message": "Utilitzar una pantalla inicial temàtica garanteix una experiència d'alta qualitat quan els usuaris inicien l'aplicació des de la pantalla d'inici. [Obtén més informació sobre les pantalles inicials](https://developer.chrome.com/docs/lighthouse/pwa/splash-screen/)."
|
|
1438
1414
|
},
|
|
@@ -938,9 +938,6 @@
|
|
|
938
938
|
"core/audits/installable-manifest.js | no-manifest": {
|
|
939
939
|
"message": "Stránka neobsahuje prvek <link> s adresou URL manifestu"
|
|
940
940
|
},
|
|
941
|
-
"core/audits/installable-manifest.js | no-matching-service-worker": {
|
|
942
|
-
"message": "Nebyl nalezen žádný odpovídající pracovní proces služby. Je možné, že stránku budete muset načíst znovu nebo zkontrolovat, zda rozsah (scope) skriptu pracovní proces služby pro aktuální stránku zahrnuje rozsah a počáteční URL (start_url) z manifestu."
|
|
943
|
-
},
|
|
944
941
|
"core/audits/installable-manifest.js | no-url-for-service-worker": {
|
|
945
942
|
"message": "Skript pracovní proces služby nelze zkontrolovat bez pole „start_url“ v manifestu"
|
|
946
943
|
},
|
|
@@ -1412,27 +1409,6 @@
|
|
|
1412
1409
|
"core/audits/server-response-time.js | title": {
|
|
1413
1410
|
"message": "Počáteční odpověď serveru byla rychlá"
|
|
1414
1411
|
},
|
|
1415
|
-
"core/audits/service-worker.js | description": {
|
|
1416
|
-
"message": "Pracovní proces služby je technologie, která aplikaci umožňuje využívat mnoho funkcí progresivní webové aplikace, jako je režim offline, přidání na plochu nebo oznámení push. [Další informace o skriptech service službě worker](https://developer.chrome.com/docs/lighthouse/pwa/service-worker/)"
|
|
1417
|
-
},
|
|
1418
|
-
"core/audits/service-worker.js | explanationBadManifest": {
|
|
1419
|
-
"message": "Tuto stránku ovládá soubor pracovní proces služby, nebyl ale nalezen atribut `start_url`, protože se manifest nepodařilo analyzovat jako platný soubor JSON"
|
|
1420
|
-
},
|
|
1421
|
-
"core/audits/service-worker.js | explanationBadStartUrl": {
|
|
1422
|
-
"message": "Tuto stránku ovládá soubor pracovní proces služby, ale atribut `start_url` ({startUrl}) pod soubor pracovní proces služby ({scopeUrl}) nespadá."
|
|
1423
|
-
},
|
|
1424
|
-
"core/audits/service-worker.js | explanationNoManifest": {
|
|
1425
|
-
"message": "Tuto stránku ovládá soubor pracovní proces služby, ale atribut `start_url` nebyl nalezen, protože nebyl načten žádný manifest."
|
|
1426
|
-
},
|
|
1427
|
-
"core/audits/service-worker.js | explanationOutOfScope": {
|
|
1428
|
-
"message": "Tento zdroj má jeden či více souborů pracovní proces služby, ale stránka ({pageUrl}) pod něj nespadá."
|
|
1429
|
-
},
|
|
1430
|
-
"core/audits/service-worker.js | failureTitle": {
|
|
1431
|
-
"message": "Neregistruje soubor pracovní proces služby, který ovládá stránku a `start_url`"
|
|
1432
|
-
},
|
|
1433
|
-
"core/audits/service-worker.js | title": {
|
|
1434
|
-
"message": "Registruje soubor pracovní proces služby, který ovládá stránku a atribut `start_url`"
|
|
1435
|
-
},
|
|
1436
1412
|
"core/audits/splash-screen.js | description": {
|
|
1437
1413
|
"message": "Stylová úvodní obrazovka zajišťuje kvalitní uživatelský dojem při spuštění aplikace z plochy. [Další informace o úvodních obrazovkách](https://developer.chrome.com/docs/lighthouse/pwa/splash-screen/)"
|
|
1438
1414
|
},
|
|
@@ -938,9 +938,6 @@
|
|
|
938
938
|
"core/audits/installable-manifest.js | no-manifest": {
|
|
939
939
|
"message": "Siden har ikke nogen <link>-webadresse for manifestet"
|
|
940
940
|
},
|
|
941
|
-
"core/audits/installable-manifest.js | no-matching-service-worker": {
|
|
942
|
-
"message": "Der blev ikke registreret nogen matchende scripttjeneste. Du skal muligvis genindlæse siden eller tjekke, at omfanget af scripttjenesten for den aktuelle side omslutter omfanget og startwebadressen fra manifestet."
|
|
943
|
-
},
|
|
944
941
|
"core/audits/installable-manifest.js | no-url-for-service-worker": {
|
|
945
942
|
"message": "Scripttjenesten kunne ikke tjekkes, da feltet \"start_url\" i manifestet ikke var angivet"
|
|
946
943
|
},
|
|
@@ -1412,27 +1409,6 @@
|
|
|
1412
1409
|
"core/audits/server-response-time.js | title": {
|
|
1413
1410
|
"message": "Den indledende serversvartid var kort"
|
|
1414
1411
|
},
|
|
1415
|
-
"core/audits/service-worker.js | description": {
|
|
1416
|
-
"message": "Scripttjenesten er den teknologi, der gør det muligt for din app at bruge mange funktioner til progressive webapps, f.eks. offline, tilføjelse på startskærme og push-notifikationer. [Få flere oplysninger om scripttjenester](https://developer.chrome.com/docs/lighthouse/pwa/service-worker/)."
|
|
1417
|
-
},
|
|
1418
|
-
"core/audits/service-worker.js | explanationBadManifest": {
|
|
1419
|
-
"message": "Denne side styres af en scripttjeneste, men der blev ikke fundet noget `start_url`, fordi manifestet ikke kunne parse den som en gyldig JSON-fil"
|
|
1420
|
-
},
|
|
1421
|
-
"core/audits/service-worker.js | explanationBadStartUrl": {
|
|
1422
|
-
"message": "Denne side styres af en scripttjeneste, men `start_url` ({startUrl}) er ikke omfattet af scripttjenesten ({scopeUrl})"
|
|
1423
|
-
},
|
|
1424
|
-
"core/audits/service-worker.js | explanationNoManifest": {
|
|
1425
|
-
"message": "Denne side styres af en scripttjeneste, men der blev ikke fundet nogen `start_url`, da der ikke blev hentet noget manifest."
|
|
1426
|
-
},
|
|
1427
|
-
"core/audits/service-worker.js | explanationOutOfScope": {
|
|
1428
|
-
"message": "Dette website har én eller flere scripttjenester, men siden ({pageUrl}) er ikke omfattet af disse."
|
|
1429
|
-
},
|
|
1430
|
-
"core/audits/service-worker.js | failureTitle": {
|
|
1431
|
-
"message": "Registrerer ikke en scripttjeneste, der styrer siden og `start_url`"
|
|
1432
|
-
},
|
|
1433
|
-
"core/audits/service-worker.js | title": {
|
|
1434
|
-
"message": "Registrerer en scripttjeneste, der styrer siden og `start_url`"
|
|
1435
|
-
},
|
|
1436
1412
|
"core/audits/splash-screen.js | description": {
|
|
1437
1413
|
"message": "En splash-skærm med tema sikrer, at brugerne får en god oplevelse, når de starter din app på deres startskærm. [Få flere oplysninger om splash-skærme](https://developer.chrome.com/docs/lighthouse/pwa/splash-screen/)."
|
|
1438
1414
|
},
|
|
@@ -938,9 +938,6 @@
|
|
|
938
938
|
"core/audits/installable-manifest.js | no-manifest": {
|
|
939
939
|
"message": "Die Seite hat keine Manifest-URL <link>"
|
|
940
940
|
},
|
|
941
|
-
"core/audits/installable-manifest.js | no-matching-service-worker": {
|
|
942
|
-
"message": "Es wurde kein passender Service Worker gefunden. Versuche, die Seite zu aktualisieren oder prüfe, ob der Bereich des Service Workers für die aktuelle Seite den Bereich und die Start-URL des Manifests umfasst."
|
|
943
|
-
},
|
|
944
941
|
"core/audits/installable-manifest.js | no-url-for-service-worker": {
|
|
945
942
|
"message": "Service Worker konnte ohne das Feld „start_url“ im Manifest nicht geprüft werden"
|
|
946
943
|
},
|
|
@@ -1412,27 +1409,6 @@
|
|
|
1412
1409
|
"core/audits/server-response-time.js | title": {
|
|
1413
1410
|
"message": "Kurze Erstreaktionszeit des Servers"
|
|
1414
1411
|
},
|
|
1415
|
-
"core/audits/service-worker.js | description": {
|
|
1416
|
-
"message": "Der Service Worker ermöglicht es deiner App, viele Funktionen von progressiven Web-Apps zu nutzen, beispielsweise den Offlinemodus, das Hinzufügen zum Startbildschirm und Push-Benachrichtigungen. [Weitere Informationen.](https://developer.chrome.com/docs/lighthouse/pwa/service-worker/)"
|
|
1417
|
-
},
|
|
1418
|
-
"core/audits/service-worker.js | explanationBadManifest": {
|
|
1419
|
-
"message": "Diese Seite wird von einem Service Worker kontrolliert. Es wurde jedoch keine `start_url` gefunden, weil das Manifest nicht als gültige JSON-Datei geparst werden konnte."
|
|
1420
|
-
},
|
|
1421
|
-
"core/audits/service-worker.js | explanationBadStartUrl": {
|
|
1422
|
-
"message": "Diese Seite wird zwar von einem Service Worker kontrolliert, die `start_url` ({startUrl}) liegt jedoch nicht in dessen Zuständigkeitsbereich ({scopeUrl})"
|
|
1423
|
-
},
|
|
1424
|
-
"core/audits/service-worker.js | explanationNoManifest": {
|
|
1425
|
-
"message": "Diese Seite wird zwar von einem Service Worker kontrolliert, es wurde jedoch keine `start_url` gefunden, da kein Manifest abgerufen wurde."
|
|
1426
|
-
},
|
|
1427
|
-
"core/audits/service-worker.js | explanationOutOfScope": {
|
|
1428
|
-
"message": "Dieser Ursprung verfügt über mindestens einen Service Worker. Die Seite ({pageUrl}) liegt jedoch nicht in dessen Zuständigkeitsbereich."
|
|
1429
|
-
},
|
|
1430
|
-
"core/audits/service-worker.js | failureTitle": {
|
|
1431
|
-
"message": "Es wurde kein Service Worker erkannt, der die Seite und `start_url` kontrolliert"
|
|
1432
|
-
},
|
|
1433
|
-
"core/audits/service-worker.js | title": {
|
|
1434
|
-
"message": "Es wurde ein Service Worker erkannt, der die Seite und `start_url` kontrolliert."
|
|
1435
|
-
},
|
|
1436
1412
|
"core/audits/splash-screen.js | description": {
|
|
1437
1413
|
"message": "Wenn du deinen Startbildschirm passend zum Design deiner App gestaltest, vermittelst du den Nutzern schon beim Ladevorgang einen hochwertigen Eindruck. [Weitere Informationen zu Startbildschirmen.](https://developer.chrome.com/docs/lighthouse/pwa/splash-screen/)"
|
|
1438
1414
|
},
|
|
@@ -938,9 +938,6 @@
|
|
|
938
938
|
"core/audits/installable-manifest.js | no-manifest": {
|
|
939
939
|
"message": "Η σελίδα δεν περιέχει <link> URL μανιφέστου"
|
|
940
940
|
},
|
|
941
|
-
"core/audits/installable-manifest.js | no-matching-service-worker": {
|
|
942
|
-
"message": "Δεν εντοπίστηκε service worker που να αντιστοιχεί. Μπορεί να χρειαστεί να επαναφορτώσετε τη σελίδα ή να ελέγξετε ότι το εύρος του service worker για την τρέχουσα σελίδα περικλείει το εύρος του URL έναρξης από το μανιφέστο."
|
|
943
|
-
},
|
|
944
941
|
"core/audits/installable-manifest.js | no-url-for-service-worker": {
|
|
945
942
|
"message": "Δεν ήταν δυνατός ο έλεγχος του service worker χωρίς πεδίο \"start_url\" στο μανιφέστο."
|
|
946
943
|
},
|
|
@@ -1412,27 +1409,6 @@
|
|
|
1412
1409
|
"core/audits/server-response-time.js | title": {
|
|
1413
1410
|
"message": "Ο αρχικός χρόνος απόκρισης διακομιστή ήταν σύντομος"
|
|
1414
1411
|
},
|
|
1415
|
-
"core/audits/service-worker.js | description": {
|
|
1416
|
-
"message": "Το service worker είναι η τεχνολογία που επιτρέπει στην εφαρμογή σας να χρησιμοποιεί πολλές λειτουργίες προηγμένων εφαρμογών ιστού, όπως είναι η λειτουργία εκτός σύνδεσης, η προσθήκη στην αρχική οθόνη και οι ειδοποιήσεις push. [Μάθετε περισσότερα σχετικά με τα service worker](https://developer.chrome.com/docs/lighthouse/pwa/service-worker/)."
|
|
1417
|
-
},
|
|
1418
|
-
"core/audits/service-worker.js | explanationBadManifest": {
|
|
1419
|
-
"message": "Αυτή η σελίδα ελέγχεται από ένα service worker, αλλά δεν βρέθηκε κανένα `start_url` επειδή το μανιφέστο απέτυχε να αναλυθεί ως έγκυρο JSON"
|
|
1420
|
-
},
|
|
1421
|
-
"core/audits/service-worker.js | explanationBadStartUrl": {
|
|
1422
|
-
"message": "Αυτή η σελίδα ελέγχεται από ένα service worker, αλλά το `start_url` ({startUrl}) δεν βρίσκεται στο εύρος του service worker ({scopeUrl})"
|
|
1423
|
-
},
|
|
1424
|
-
"core/audits/service-worker.js | explanationNoManifest": {
|
|
1425
|
-
"message": "Αυτή η σελίδα ελέγχεται από ένα service worker, αλλά δεν βρέθηκε κανένα `start_url` επειδή δεν έγινε λήψη μανιφέστου."
|
|
1426
|
-
},
|
|
1427
|
-
"core/audits/service-worker.js | explanationOutOfScope": {
|
|
1428
|
-
"message": "Αυτή η προέλευση διαθέτει ένα περισσότερα service worker, αλλά η σελίδα ({pageUrl}) βρίσκεται εκτός εύρους."
|
|
1429
|
-
},
|
|
1430
|
-
"core/audits/service-worker.js | failureTitle": {
|
|
1431
|
-
"message": "Δεν καταγράφει service worker που ελέγχει τη σελίδα και το `start_url`"
|
|
1432
|
-
},
|
|
1433
|
-
"core/audits/service-worker.js | title": {
|
|
1434
|
-
"message": "Καταγράφει ένα service worker που ελέγχει μια σελίδα και το `start_url`"
|
|
1435
|
-
},
|
|
1436
1412
|
"core/audits/splash-screen.js | description": {
|
|
1437
1413
|
"message": "Μια θεματική οθόνη εκκίνησης διασφαλίζει μια εμπειρία υψηλής ποιότητας όταν οι χρήστες εκκινούν την εφαρμογή σας από την αρχική οθόνη τους. [Μάθετε περισσότερα σχετικά με τις οθόνες εκκίνησης](https://developer.chrome.com/docs/lighthouse/pwa/splash-screen/)."
|
|
1438
1414
|
},
|
|
@@ -938,9 +938,6 @@
|
|
|
938
938
|
"core/audits/installable-manifest.js | no-manifest": {
|
|
939
939
|
"message": "Page has no manifest <link> URL"
|
|
940
940
|
},
|
|
941
|
-
"core/audits/installable-manifest.js | no-matching-service-worker": {
|
|
942
|
-
"message": "No matching service worker detected. You may need to reload the page, or check that the scope of the service worker for the current page encloses the scope and start URL from the manifest."
|
|
943
|
-
},
|
|
944
941
|
"core/audits/installable-manifest.js | no-url-for-service-worker": {
|
|
945
942
|
"message": "Could not check service worker without a 'start_url' field in the manifest"
|
|
946
943
|
},
|
|
@@ -1412,27 +1409,6 @@
|
|
|
1412
1409
|
"core/audits/server-response-time.js | title": {
|
|
1413
1410
|
"message": "Initial server response time was short"
|
|
1414
1411
|
},
|
|
1415
|
-
"core/audits/service-worker.js | description": {
|
|
1416
|
-
"message": "The service worker is the technology that enables your app to use many progressive web app features, such as offline, add to home screen and push notifications. [Learn more about service workers](https://developer.chrome.com/docs/lighthouse/pwa/service-worker/)."
|
|
1417
|
-
},
|
|
1418
|
-
"core/audits/service-worker.js | explanationBadManifest": {
|
|
1419
|
-
"message": "This page is controlled by a service worker, however no `start_url` was found because manifest failed to parse as valid JSON"
|
|
1420
|
-
},
|
|
1421
|
-
"core/audits/service-worker.js | explanationBadStartUrl": {
|
|
1422
|
-
"message": "This page is controlled by a service worker, however the `start_url` ({startUrl}) is not in the service worker's scope ({scopeUrl})"
|
|
1423
|
-
},
|
|
1424
|
-
"core/audits/service-worker.js | explanationNoManifest": {
|
|
1425
|
-
"message": "This page is controlled by a service worker, however no `start_url` was found because no manifest was fetched."
|
|
1426
|
-
},
|
|
1427
|
-
"core/audits/service-worker.js | explanationOutOfScope": {
|
|
1428
|
-
"message": "This origin has one or more service workers, however the page ({pageUrl}) is not in scope."
|
|
1429
|
-
},
|
|
1430
|
-
"core/audits/service-worker.js | failureTitle": {
|
|
1431
|
-
"message": "Does not register a service worker that controls page and `start_url`"
|
|
1432
|
-
},
|
|
1433
|
-
"core/audits/service-worker.js | title": {
|
|
1434
|
-
"message": "Registers a service worker that controls page and `start_url`"
|
|
1435
|
-
},
|
|
1436
1412
|
"core/audits/splash-screen.js | description": {
|
|
1437
1413
|
"message": "A themed splash screen ensures a high-quality experience when users launch your app from their home screens. [Learn more about splash screens](https://developer.chrome.com/docs/lighthouse/pwa/splash-screen/)."
|
|
1438
1414
|
},
|
|
@@ -1010,9 +1010,6 @@
|
|
|
1010
1010
|
"core/audits/installable-manifest.js | no-manifest": {
|
|
1011
1011
|
"message": "Page has no manifest <link> URL"
|
|
1012
1012
|
},
|
|
1013
|
-
"core/audits/installable-manifest.js | no-matching-service-worker": {
|
|
1014
|
-
"message": "No matching service worker detected. You may need to reload the page, or check that the scope of the service worker for the current page encloses the scope and start URL from the manifest."
|
|
1015
|
-
},
|
|
1016
1013
|
"core/audits/installable-manifest.js | no-url-for-service-worker": {
|
|
1017
1014
|
"message": "Could not check service worker without a 'start_url' field in the manifest"
|
|
1018
1015
|
},
|
|
@@ -1041,7 +1038,7 @@
|
|
|
1041
1038
|
"message": "prefer_related_applications is only supported on Chrome Beta and Stable channels on Android."
|
|
1042
1039
|
},
|
|
1043
1040
|
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1044
|
-
"message": "Lighthouse could not determine if
|
|
1041
|
+
"message": "Lighthouse could not determine if the page is installable. Please try with a newer version of Chrome."
|
|
1045
1042
|
},
|
|
1046
1043
|
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
1047
1044
|
"message": "The manifest URL scheme ({scheme}) is not supported on Android."
|
|
@@ -1484,27 +1481,6 @@
|
|
|
1484
1481
|
"core/audits/server-response-time.js | title": {
|
|
1485
1482
|
"message": "Initial server response time was short"
|
|
1486
1483
|
},
|
|
1487
|
-
"core/audits/service-worker.js | description": {
|
|
1488
|
-
"message": "The service worker is the technology that enables your app to use many Progressive Web App features, such as offline, add to homescreen, and push notifications. [Learn more about Service Workers](https://developer.chrome.com/docs/lighthouse/pwa/service-worker/)."
|
|
1489
|
-
},
|
|
1490
|
-
"core/audits/service-worker.js | explanationBadManifest": {
|
|
1491
|
-
"message": "This page is controlled by a service worker, however no `start_url` was found because manifest failed to parse as valid JSON"
|
|
1492
|
-
},
|
|
1493
|
-
"core/audits/service-worker.js | explanationBadStartUrl": {
|
|
1494
|
-
"message": "This page is controlled by a service worker, however the `start_url` ({startUrl}) is not in the service worker's scope ({scopeUrl})"
|
|
1495
|
-
},
|
|
1496
|
-
"core/audits/service-worker.js | explanationNoManifest": {
|
|
1497
|
-
"message": "This page is controlled by a service worker, however no `start_url` was found because no manifest was fetched."
|
|
1498
|
-
},
|
|
1499
|
-
"core/audits/service-worker.js | explanationOutOfScope": {
|
|
1500
|
-
"message": "This origin has one or more service workers, however the page ({pageUrl}) is not in scope."
|
|
1501
|
-
},
|
|
1502
|
-
"core/audits/service-worker.js | failureTitle": {
|
|
1503
|
-
"message": "Does not register a service worker that controls page and `start_url`"
|
|
1504
|
-
},
|
|
1505
|
-
"core/audits/service-worker.js | title": {
|
|
1506
|
-
"message": "Registers a service worker that controls page and `start_url`"
|
|
1507
|
-
},
|
|
1508
1484
|
"core/audits/splash-screen.js | description": {
|
|
1509
1485
|
"message": "A themed splash screen ensures a high-quality experience when users launch your app from their homescreens. [Learn more about splash screens](https://developer.chrome.com/docs/lighthouse/pwa/splash-screen/)."
|
|
1510
1486
|
},
|
|
@@ -938,9 +938,6 @@
|
|
|
938
938
|
"core/audits/installable-manifest.js | no-manifest": {
|
|
939
939
|
"message": "[Þåĝé ĥåš ñö måñîƒéšţ <link> ÛŔĻ one two three four five six]"
|
|
940
940
|
},
|
|
941
|
-
"core/audits/installable-manifest.js | no-matching-service-worker": {
|
|
942
|
-
"message": "[Ñö måţçĥîñĝ šéŕvîçé ŵöŕķéŕ ðéţéçţéð. Ýöû måý ñééð ţö ŕéļöåð ţĥé þåĝé, öŕ çĥéçķ ţĥåţ ţĥé šçöþé öƒ ţĥé šéŕvîçé ŵöŕķéŕ ƒöŕ ţĥé çûŕŕéñţ þåĝé éñçļöšéš ţĥé šçöþé åñð šţåŕţ ÛŔĻ ƒŕöm ţĥé måñîƒéšţ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix]"
|
|
943
|
-
},
|
|
944
941
|
"core/audits/installable-manifest.js | no-url-for-service-worker": {
|
|
945
942
|
"message": "[Çöûļð ñöţ çĥéçķ šéŕvîçé ŵöŕķéŕ ŵîţĥöûţ å 'šţåŕţ_ûŕļ' ƒîéļð îñ ţĥé måñîƒéšţ one two three four five six seven eight nine ten eleven twelve thirteen fourteen]"
|
|
946
943
|
},
|
|
@@ -1412,27 +1409,6 @@
|
|
|
1412
1409
|
"core/audits/server-response-time.js | title": {
|
|
1413
1410
|
"message": "[Îñîţîåļ šéŕvéŕ ŕéšþöñšé ţîmé ŵåš šĥöŕţ one two three four five six seven eight]"
|
|
1414
1411
|
},
|
|
1415
|
-
"core/audits/service-worker.js | description": {
|
|
1416
|
-
"message": "[Ţĥé šéŕvîçé ŵöŕķéŕ îš ţĥé ţéçĥñöļöĝý ţĥåţ éñåбļéš ýöûŕ åþþ ţö ûšé måñý Þŕöĝŕéššîvé Ŵéб Åþþ ƒéåţûŕéš, šûçĥ åš öƒƒļîñé, åðð ţö ĥöméšçŕééñ, åñð þûšĥ ñöţîƒîçåţîöñš. ᐅ[ᐊĻéåŕñ möŕé åбöûţ Šéŕvîçé Ŵöŕķéŕšᐅ](https://developer.chrome.com/docs/lighthouse/pwa/service-worker/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix twentyseven]"
|
|
1417
|
-
},
|
|
1418
|
-
"core/audits/service-worker.js | explanationBadManifest": {
|
|
1419
|
-
"message": "[Ţĥîš þåĝé îš çöñţŕöļļéð бý å šéŕvîçé ŵöŕķéŕ, ĥöŵévéŕ ñö ᐅ`start_url`ᐊ ŵåš ƒöûñð бéçåûšé måñîƒéšţ ƒåîļéð ţö þåŕšé åš våļîð ĴŠÖÑ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen]"
|
|
1420
|
-
},
|
|
1421
|
-
"core/audits/service-worker.js | explanationBadStartUrl": {
|
|
1422
|
-
"message": "[Ţĥîš þåĝé îš çöñţŕöļļéð бý å šéŕvîçé ŵöŕķéŕ, ĥöŵévéŕ ţĥé ᐅ`start_url`ᐊ (ᐅ{startUrl}ᐊ) îš ñöţ îñ ţĥé šéŕvîçé ŵöŕķéŕ'š šçöþé (ᐅ{scopeUrl}ᐊ) one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen]"
|
|
1423
|
-
},
|
|
1424
|
-
"core/audits/service-worker.js | explanationNoManifest": {
|
|
1425
|
-
"message": "[Ţĥîš þåĝé îš çöñţŕöļļéð бý å šéŕvîçé ŵöŕķéŕ, ĥöŵévéŕ ñö ᐅ`start_url`ᐊ ŵåš ƒöûñð бéçåûšé ñö måñîƒéšţ ŵåš ƒéţçĥéð. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen]"
|
|
1426
|
-
},
|
|
1427
|
-
"core/audits/service-worker.js | explanationOutOfScope": {
|
|
1428
|
-
"message": "[Ţĥîš öŕîĝîñ ĥåš öñé öŕ möŕé šéŕvîçé ŵöŕķéŕš, ĥöŵévéŕ ţĥé þåĝé (ᐅ{pageUrl}ᐊ) îš ñöţ îñ šçöþé. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen]"
|
|
1429
|
-
},
|
|
1430
|
-
"core/audits/service-worker.js | failureTitle": {
|
|
1431
|
-
"message": "[Ðöéš ñöţ ŕéĝîšţéŕ å šéŕvîçé ŵöŕķéŕ ţĥåţ çöñţŕöļš þåĝé åñð ᐅ`start_url`ᐊ one two three four five six seven eight nine ten eleven twelve]"
|
|
1432
|
-
},
|
|
1433
|
-
"core/audits/service-worker.js | title": {
|
|
1434
|
-
"message": "[Ŕéĝîšţéŕš å šéŕvîçé ŵöŕķéŕ ţĥåţ çöñţŕöļš þåĝé åñð ᐅ`start_url`ᐊ one two three four five six seven eight nine ten eleven]"
|
|
1435
|
-
},
|
|
1436
1412
|
"core/audits/splash-screen.js | description": {
|
|
1437
1413
|
"message": "[Å ţĥéméð šþļåšĥ šçŕééñ éñšûŕéš å ĥîĝĥ-qûåļîţý éxþéŕîéñçé ŵĥéñ ûšéŕš ļåûñçĥ ýöûŕ åþþ ƒŕöm ţĥéîŕ ĥöméšçŕééñš. ᐅ[ᐊĻéåŕñ möŕé åбöûţ šþļåšĥ šçŕééñšᐅ](https://developer.chrome.com/docs/lighthouse/pwa/splash-screen/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo]"
|
|
1438
1414
|
},
|