lighthouse 9.2.0-dev.20220126 → 9.2.0-dev.20220127
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/dist/report/flow.js +7 -7
- package/lighthouse-core/audits/preload-fonts.js +2 -3
- package/lighthouse-core/audits/preload-lcp-image.js +1 -11
- package/lighthouse-core/audits/uses-rel-preload.js +2 -3
- package/lighthouse-core/gather/gatherers/inspector-issues.js +1 -0
- package/package.json +3 -3
- package/shared/localization/locales/ar-XB.json +40 -4
- package/shared/localization/locales/ar.json +59 -23
- package/shared/localization/locales/bg.json +40 -4
- package/shared/localization/locales/ca.json +45 -9
- package/shared/localization/locales/cs.json +39 -3
- package/shared/localization/locales/da.json +43 -7
- package/shared/localization/locales/de.json +42 -6
- package/shared/localization/locales/el.json +59 -23
- package/shared/localization/locales/en-GB.json +43 -7
- package/shared/localization/locales/en-XA.json +40 -4
- package/shared/localization/locales/es-419.json +39 -3
- package/shared/localization/locales/es.json +46 -10
- package/shared/localization/locales/fi.json +57 -21
- package/shared/localization/locales/fil.json +40 -4
- package/shared/localization/locales/fr.json +45 -9
- package/shared/localization/locales/he.json +41 -5
- package/shared/localization/locales/hi.json +59 -23
- package/shared/localization/locales/hr.json +57 -21
- package/shared/localization/locales/hu.json +39 -3
- package/shared/localization/locales/id.json +40 -4
- package/shared/localization/locales/it.json +40 -4
- package/shared/localization/locales/ja.json +39 -3
- package/shared/localization/locales/ko.json +40 -4
- package/shared/localization/locales/lt.json +40 -4
- package/shared/localization/locales/lv.json +56 -20
- package/shared/localization/locales/nl.json +40 -4
- package/shared/localization/locales/no.json +56 -20
- package/shared/localization/locales/pl.json +56 -20
- package/shared/localization/locales/pt-PT.json +57 -21
- package/shared/localization/locales/pt.json +41 -5
- package/shared/localization/locales/ro.json +39 -3
- package/shared/localization/locales/ru.json +40 -4
- package/shared/localization/locales/sk.json +39 -3
- package/shared/localization/locales/sl.json +39 -3
- package/shared/localization/locales/sr-Latn.json +40 -4
- package/shared/localization/locales/sr.json +40 -4
- package/shared/localization/locales/sv.json +39 -3
- package/shared/localization/locales/ta.json +47 -11
- package/shared/localization/locales/te.json +61 -25
- package/shared/localization/locales/th.json +39 -3
- package/shared/localization/locales/tr.json +40 -4
- package/shared/localization/locales/uk.json +40 -4
- package/shared/localization/locales/vi.json +63 -27
- package/shared/localization/locales/zh-HK.json +40 -4
- package/shared/localization/locales/zh-TW.json +45 -9
- package/shared/localization/locales/zh.json +41 -5
- package/third-party/chromium-synchronization/inspector-issueAdded-types-test.js +1 -0
- package/third-party/snyk/snapshot.json +1 -0
- package/types/artifacts.d.ts +1 -0
|
@@ -97,9 +97,8 @@ class PreloadFontsAudit extends Audit {
|
|
|
97
97
|
* @return {Promise<LH.Audit.Product>}
|
|
98
98
|
*/
|
|
99
99
|
static async audit() {
|
|
100
|
-
// Preload advice is
|
|
101
|
-
//
|
|
102
|
-
// See https://github.com/GoogleChrome/lighthouse/issues/11960 for more discussion.
|
|
100
|
+
// Preload advice is on hold until https://github.com/GoogleChrome/lighthouse/issues/11960
|
|
101
|
+
// is resolved.
|
|
103
102
|
return {score: 1, notApplicable: true};
|
|
104
103
|
}
|
|
105
104
|
}
|
|
@@ -198,7 +198,7 @@ class PreloadLCPImageAudit extends Audit {
|
|
|
198
198
|
* @param {LH.Audit.Context} context
|
|
199
199
|
* @return {Promise<LH.Audit.Product>}
|
|
200
200
|
*/
|
|
201
|
-
static async
|
|
201
|
+
static async audit(artifacts, context) {
|
|
202
202
|
const gatherContext = artifacts.GatherContext;
|
|
203
203
|
const trace = artifacts.traces[PreloadLCPImageAudit.DEFAULT_PASS];
|
|
204
204
|
const devtoolsLog = artifacts.devtoolsLogs[PreloadLCPImageAudit.DEFAULT_PASS];
|
|
@@ -236,16 +236,6 @@ class PreloadLCPImageAudit extends Audit {
|
|
|
236
236
|
details,
|
|
237
237
|
};
|
|
238
238
|
}
|
|
239
|
-
|
|
240
|
-
/**
|
|
241
|
-
* @return {Promise<LH.Audit.Product>}
|
|
242
|
-
*/
|
|
243
|
-
static async audit() {
|
|
244
|
-
// Preload advice is dangerous until https://bugs.chromium.org/p/chromium/issues/detail?id=788757
|
|
245
|
-
// has been fixed and validated. All preload audits are on hold until then.
|
|
246
|
-
// See https://github.com/GoogleChrome/lighthouse/issues/11960 for more discussion.
|
|
247
|
-
return {score: 1, notApplicable: true, details: Audit.makeOpportunityDetails([], [], 0)};
|
|
248
|
-
}
|
|
249
239
|
}
|
|
250
240
|
|
|
251
241
|
module.exports = PreloadLCPImageAudit;
|
|
@@ -257,9 +257,8 @@ class UsesRelPreloadAudit extends Audit {
|
|
|
257
257
|
* @return {Promise<LH.Audit.Product>}
|
|
258
258
|
*/
|
|
259
259
|
static async audit() {
|
|
260
|
-
// Preload advice is
|
|
261
|
-
//
|
|
262
|
-
// See https://github.com/GoogleChrome/lighthouse/issues/11960 for more discussion.
|
|
260
|
+
// Preload advice is on hold until https://github.com/GoogleChrome/lighthouse/issues/11960
|
|
261
|
+
// is resolved.
|
|
263
262
|
return {score: 1, notApplicable: true, details: Audit.makeOpportunityDetails([], [], 0)};
|
|
264
263
|
}
|
|
265
264
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lighthouse",
|
|
3
|
-
"version": "9.2.0-dev.
|
|
3
|
+
"version": "9.2.0-dev.20220127",
|
|
4
4
|
"description": "Automated auditing, performance metrics, and best practices for the web.",
|
|
5
5
|
"main": "./lighthouse-core/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"cpy": "^8.1.2",
|
|
142
142
|
"cross-env": "^7.0.2",
|
|
143
143
|
"csv-validator": "^0.0.3",
|
|
144
|
-
"devtools-protocol": "0.0.
|
|
144
|
+
"devtools-protocol": "0.0.964215",
|
|
145
145
|
"es-main": "^1.0.2",
|
|
146
146
|
"eslint": "^8.4.1",
|
|
147
147
|
"eslint-config-google": "^0.14.0",
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
"yargs-parser": "^21.0.0"
|
|
215
215
|
},
|
|
216
216
|
"resolutions": {
|
|
217
|
-
"puppeteer/**/devtools-protocol": "0.0.
|
|
217
|
+
"puppeteer/**/devtools-protocol": "0.0.964215"
|
|
218
218
|
},
|
|
219
219
|
"repository": "GoogleChrome/lighthouse",
|
|
220
220
|
"keywords": [
|
|
@@ -477,13 +477,13 @@
|
|
|
477
477
|
"message": "`[user-scalable=\"no\"]` is not used in the `<meta name=\"viewport\">` element and the `[maximum-scale]` attribute is not less than 5."
|
|
478
478
|
},
|
|
479
479
|
"lighthouse-core/audits/accessibility/object-alt.js | description": {
|
|
480
|
-
"message": "Screen readers cannot translate non-text content. Adding
|
|
480
|
+
"message": "Screen readers cannot translate non-text content. Adding alternate text to `<object>` elements helps screen readers convey meaning to users. [Learn more](https://web.dev/object-alt/)."
|
|
481
481
|
},
|
|
482
482
|
"lighthouse-core/audits/accessibility/object-alt.js | failureTitle": {
|
|
483
|
-
"message": "`<object>` elements do not have
|
|
483
|
+
"message": "`<object>` elements do not have alternate text"
|
|
484
484
|
},
|
|
485
485
|
"lighthouse-core/audits/accessibility/object-alt.js | title": {
|
|
486
|
-
"message": "`<object>` elements have
|
|
486
|
+
"message": "`<object>` elements have alternate text"
|
|
487
487
|
},
|
|
488
488
|
"lighthouse-core/audits/accessibility/tabindex.js | description": {
|
|
489
489
|
"message": "A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. [Learn more](https://web.dev/tabindex/)."
|
|
@@ -1052,6 +1052,9 @@
|
|
|
1052
1052
|
"lighthouse-core/audits/installable-manifest.js | not-offline-capable": {
|
|
1053
1053
|
"message": "Page does not work offline"
|
|
1054
1054
|
},
|
|
1055
|
+
"lighthouse-core/audits/installable-manifest.js | pipeline-restarted": {
|
|
1056
|
+
"message": "PWA has been uninstalled and installability checks resetting."
|
|
1057
|
+
},
|
|
1055
1058
|
"lighthouse-core/audits/installable-manifest.js | platform-not-supported-on-android": {
|
|
1056
1059
|
"message": "The specified application platform is not supported on Android"
|
|
1057
1060
|
},
|
|
@@ -1061,6 +1064,9 @@
|
|
|
1061
1064
|
"lighthouse-core/audits/installable-manifest.js | prefer-related-applications-only-beta-stable": {
|
|
1062
1065
|
"message": "prefer_related_applications is only supported on Chrome Beta and Stable channels on Android."
|
|
1063
1066
|
},
|
|
1067
|
+
"lighthouse-core/audits/installable-manifest.js | protocol-timeout": {
|
|
1068
|
+
"message": "Lighthouse could not determine if there was a service worker. Please try with a newer version of Chrome."
|
|
1069
|
+
},
|
|
1064
1070
|
"lighthouse-core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1065
1071
|
"message": "Manifest start URL is not valid"
|
|
1066
1072
|
},
|
|
@@ -1212,7 +1218,7 @@
|
|
|
1212
1218
|
"message": "Server Backend Latencies"
|
|
1213
1219
|
},
|
|
1214
1220
|
"lighthouse-core/audits/no-unload-listeners.js | description": {
|
|
1215
|
-
"message": "The `unload` event does not fire reliably and listening for it can prevent browser optimizations like the Back-Forward Cache.
|
|
1221
|
+
"message": "The `unload` event does not fire reliably and listening for it can prevent browser optimizations like the Back-Forward Cache. Use `pagehide` or `visibilitychange` events instead. [Learn more](https://web.dev/bfcache/#never-use-the-unload-event)"
|
|
1216
1222
|
},
|
|
1217
1223
|
"lighthouse-core/audits/no-unload-listeners.js | failureTitle": {
|
|
1218
1224
|
"message": "Registers an `unload` listener"
|
|
@@ -2219,6 +2225,36 @@
|
|
|
2219
2225
|
"node_modules/lighthouse-stack-packs/packs/magento.js | uses-rel-preload": {
|
|
2220
2226
|
"message": "`<link rel=preload>` tags can be added by [modifying a themes's layout](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)."
|
|
2221
2227
|
},
|
|
2228
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | modern-image-formats": {
|
|
2229
|
+
"message": "Use the `Next.js` Image Optimization API to serve modern formats like `WebP` and `AVIF`. [Learn more](https://nextjs.org/docs/api-reference/next/image#acceptable-formats)."
|
|
2230
|
+
},
|
|
2231
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | offscreen-images": {
|
|
2232
|
+
"message": "Use the `next/image` component, which defaults to `loading=\"lazy\"`. [Learn more](https://nextjs.org/docs/api-reference/next/image#loading)."
|
|
2233
|
+
},
|
|
2234
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | render-blocking-resources": {
|
|
2235
|
+
"message": "Use the `next/script` component to defer loading of non-critical third-party scripts. [Learn more](https://nextjs.org/docs/basic-features/script)."
|
|
2236
|
+
},
|
|
2237
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | unused-css-rules": {
|
|
2238
|
+
"message": "Consider setting up `PurgeCSS` in `Next.js` configuration to remove unused rules from stylesheets. [Learn more](https://purgecss.com/guides/next.html)."
|
|
2239
|
+
},
|
|
2240
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | unused-javascript": {
|
|
2241
|
+
"message": "Use `Webpack Bundle Analyzer` to detect unused JavaScript code. [Learn mode](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer)"
|
|
2242
|
+
},
|
|
2243
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | user-timings": {
|
|
2244
|
+
"message": "Consider using `Next.js Analytics` to measure your app's real-world performance. [Learn more](https://nextjs.org/docs/advanced-features/measuring-performance)."
|
|
2245
|
+
},
|
|
2246
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-long-cache-ttl": {
|
|
2247
|
+
"message": "Configure caching for immutable assets and `Server-side Rendered` (SSR) pages. [Learn more](https://nextjs.org/docs/going-to-production#caching)."
|
|
2248
|
+
},
|
|
2249
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-optimized-images": {
|
|
2250
|
+
"message": "Use the `next/image` component instead of `<img>` to optimize images. [Learn more](https://nextjs.org/docs/basic-features/image-optimization)."
|
|
2251
|
+
},
|
|
2252
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-responsive-images": {
|
|
2253
|
+
"message": "Use the `next/image` component to set the appropriate `sizes`. [Learn more](https://nextjs.org/docs/api-reference/next/image#sizes)."
|
|
2254
|
+
},
|
|
2255
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-text-compression": {
|
|
2256
|
+
"message": "Enable compression on your Next.js server. [Learn more](https://nextjs.org/docs/api-reference/next.config.js/compression)."
|
|
2257
|
+
},
|
|
2222
2258
|
"node_modules/lighthouse-stack-packs/packs/octobercms.js | efficient-animated-content": {
|
|
2223
2259
|
"message": "[Replace animated GIFs with video](https://web.dev/replace-gifs-with-videos/) for faster web page loads and consider using modern file formats such as [WebM](https://web.dev/replace-gifs-with-videos/#create-webm-videos) or [AV1](https://developers.google.com/web/updates/2018/09/chrome-70-media-updates#av1-decoder) to improve compression efficiency by greater than 30% over the current state-of-the-art video codec, VP9."
|
|
2224
2260
|
},
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"message": "كل التقارير"
|
|
4
4
|
},
|
|
5
5
|
"flow-report/src/i18n/ui-strings.js | categories": {
|
|
6
|
-
"message": "
|
|
6
|
+
"message": "الفئات"
|
|
7
7
|
},
|
|
8
8
|
"flow-report/src/i18n/ui-strings.js | categoryAccessibility": {
|
|
9
9
|
"message": "إمكانية الوصول"
|
|
@@ -24,40 +24,40 @@
|
|
|
24
24
|
"message": "سطح المكتب"
|
|
25
25
|
},
|
|
26
26
|
"flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
|
|
27
|
-
"message": "
|
|
27
|
+
"message": "فهم تقرير مسار Lighthouse"
|
|
28
28
|
},
|
|
29
29
|
"flow-report/src/i18n/ui-strings.js | helpLabel": {
|
|
30
|
-
"message": "
|
|
30
|
+
"message": "فهم المسارات"
|
|
31
31
|
},
|
|
32
32
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
|
|
33
|
-
"message": "
|
|
33
|
+
"message": "يمكنك استخدام تقارير التنقُّل من أجل..."
|
|
34
34
|
},
|
|
35
35
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
|
|
36
|
-
"message": "
|
|
36
|
+
"message": "يمكنك استخدام التقارير الخاصة بلحظات معيّنة من أجل..."
|
|
37
37
|
},
|
|
38
38
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
|
|
39
|
-
"message": "
|
|
39
|
+
"message": "يمكنك استخدام تقارير الفترات الزمنية من أجل..."
|
|
40
40
|
},
|
|
41
41
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
|
|
42
|
-
"message": "
|
|
42
|
+
"message": "الحصول على نتيجة أداء أداة Lighthouse"
|
|
43
43
|
},
|
|
44
44
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
|
|
45
|
-
"message": "
|
|
45
|
+
"message": "التعرّف على قيم مقاييس أداء تحميل الصفحة، مثل سرعة عرض أكبر جزء من المحتوى على الصفحة ومؤشر السرعة"
|
|
46
46
|
},
|
|
47
47
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
|
|
48
|
-
"message": "
|
|
48
|
+
"message": "تقييم إمكانات تطبيقات الويب التقدّمية"
|
|
49
49
|
},
|
|
50
50
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
|
|
51
|
-
"message": "
|
|
51
|
+
"message": "التعرّف على المشاكل التي تحول دون سهولة الاستخدام في التطبيقات المكوّنة من صفحة واحدة أو النماذج المُعقَّدة"
|
|
52
52
|
},
|
|
53
53
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
|
|
54
|
-
"message": "
|
|
54
|
+
"message": "تقييم أفضل الممارسات المتعلّقة بالقوائم وعناصر واجهة المستخدم المخفية خلف التفاعلات"
|
|
55
55
|
},
|
|
56
56
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
|
|
57
|
-
"message": "
|
|
57
|
+
"message": "قياس متغيّرات التصميم ووقت تنفيذ JavaScript على سلسلة من التفاعلات"
|
|
58
58
|
},
|
|
59
59
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
|
|
60
|
-
"message": "
|
|
60
|
+
"message": "التعرّف على فرص تحسين الأداء من أجل تحسين تجربة استخدام الصفحات التي يفتحها المستخدم لمدة طويلة والتطبيقات المكوّنة من صفحة واحدة"
|
|
61
61
|
},
|
|
62
62
|
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
63
63
|
"message": "عمليات التدقيق الأعلى تأثيرًا"
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"message": "تحميل الصفحة"
|
|
73
73
|
},
|
|
74
74
|
"flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
|
|
75
|
-
"message": "
|
|
75
|
+
"message": "تحلِّل تقارير التنقُّل أداء تحميل صفحة واحدة، تمامًا مثل تقارير Lighthouse الأصلية."
|
|
76
76
|
},
|
|
77
77
|
"flow-report/src/i18n/ui-strings.js | navigationReport": {
|
|
78
78
|
"message": "تقرير التنقُّل في الصفحة"
|
|
@@ -99,13 +99,13 @@
|
|
|
99
99
|
"message": "جيد"
|
|
100
100
|
},
|
|
101
101
|
"flow-report/src/i18n/ui-strings.js | save": {
|
|
102
|
-
"message": "
|
|
102
|
+
"message": "حفظ"
|
|
103
103
|
},
|
|
104
104
|
"flow-report/src/i18n/ui-strings.js | snapshotDescription": {
|
|
105
105
|
"message": "الحالة التي تم تسجيلها للصفحة"
|
|
106
106
|
},
|
|
107
107
|
"flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
|
|
108
|
-
"message": "
|
|
108
|
+
"message": "تُجري التقارير الخاصة بلحظات معيّنة تحليلاً للصفحة في حالة مُحدَّدة، عادةً ما بعد تفاعلات المستخدم."
|
|
109
109
|
},
|
|
110
110
|
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
|
|
111
111
|
"message": "التقرير الخاص بالصفحة في لحظة معيَّنة"
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"message": "تفاعلات المستخدمين"
|
|
121
121
|
},
|
|
122
122
|
"flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
|
|
123
|
-
"message": "
|
|
123
|
+
"message": "تحلِّل تقارير الفترات الزمنية أداء صفحة خلال فترات زمنية عشوائية، وعادةً ما تتضمّن تفاعلات المستخدم."
|
|
124
124
|
},
|
|
125
125
|
"flow-report/src/i18n/ui-strings.js | timespanReport": {
|
|
126
126
|
"message": "تقرير الإطار الزمني"
|
|
@@ -477,13 +477,13 @@
|
|
|
477
477
|
"message": "`[user-scalable=\"no\"]` غير مستخدم في العنصر `<meta name=\"viewport\">` والسمة `[maximum-scale]` لا تقلّ عن 5."
|
|
478
478
|
},
|
|
479
479
|
"lighthouse-core/audits/accessibility/object-alt.js | description": {
|
|
480
|
-
"message": "لا يمكن لبرامج قراءة الشاشة ترجمة المحتوى غير النصي.
|
|
480
|
+
"message": "لا يمكن لبرامج قراءة الشاشة ترجمة المحتوى غير النصي. وتؤدي إضافة نص بديل إلى عناصر `<object>` إلى مساعدة برامج قراءة الشاشة على إيضاح المعنى للمستخدمين. [مزيد من المعلومات](https://web.dev/object-alt/)"
|
|
481
481
|
},
|
|
482
482
|
"lighthouse-core/audits/accessibility/object-alt.js | failureTitle": {
|
|
483
|
-
"message": "عناصر `<object>` لا تحتوي على نص
|
|
483
|
+
"message": "عناصر `<object>` لا تحتوي على نص بديل"
|
|
484
484
|
},
|
|
485
485
|
"lighthouse-core/audits/accessibility/object-alt.js | title": {
|
|
486
|
-
"message": "عناصر `<object>` تحتوي على نص
|
|
486
|
+
"message": "عناصر `<object>` تحتوي على نص بديل"
|
|
487
487
|
},
|
|
488
488
|
"lighthouse-core/audits/accessibility/tabindex.js | description": {
|
|
489
489
|
"message": "تشير القيمة الأكبر من 0 إلى وجود طلب تنقل صريح. على الرغم من أن ذلك صحيح تقنيًّا، غالبًا ما يؤدي ذلك إلى إنشاء تجارب محبطة للمستخدمين الذين يعتمدون على التقنيات المساعدة. [مزيد من المعلومات](https://web.dev/tabindex/)"
|
|
@@ -1052,6 +1052,9 @@
|
|
|
1052
1052
|
"lighthouse-core/audits/installable-manifest.js | not-offline-capable": {
|
|
1053
1053
|
"message": "لا تعمل هذه الصفحة بلا إنترنت."
|
|
1054
1054
|
},
|
|
1055
|
+
"lighthouse-core/audits/installable-manifest.js | pipeline-restarted": {
|
|
1056
|
+
"message": "تم إلغاء تثبيت تطبيق الويب التقدّمي (PWA) وتتم حاليًا إعادة ضبط عمليات التحقّق من قابلية التثبيت."
|
|
1057
|
+
},
|
|
1055
1058
|
"lighthouse-core/audits/installable-manifest.js | platform-not-supported-on-android": {
|
|
1056
1059
|
"message": "لا تتوفّر منصة التطبيقات المحدّدة على Android."
|
|
1057
1060
|
},
|
|
@@ -1061,6 +1064,9 @@
|
|
|
1061
1064
|
"lighthouse-core/audits/installable-manifest.js | prefer-related-applications-only-beta-stable": {
|
|
1062
1065
|
"message": "لا يتوافق حقل الإدخال prefer_related_applications إلا مع الإصدار التجريبي من متصفِّح Chrome والقنوات الثابتة على Android."
|
|
1063
1066
|
},
|
|
1067
|
+
"lighthouse-core/audits/installable-manifest.js | protocol-timeout": {
|
|
1068
|
+
"message": "تعذَّر على أداة Lighthouse تحديد ما إذا كان يتوفّر مشغّل خدمات. يُرجى إعادة المحاولة باستخدام إصدار أحدث من متصفّح Chrome."
|
|
1069
|
+
},
|
|
1064
1070
|
"lighthouse-core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1065
1071
|
"message": "عنوان URL البداية لملف البيان غير صالح."
|
|
1066
1072
|
},
|
|
@@ -1212,7 +1218,7 @@
|
|
|
1212
1218
|
"message": "أوقات الاستجابة لواجهة الخادم الخلفية"
|
|
1213
1219
|
},
|
|
1214
1220
|
"lighthouse-core/audits/no-unload-listeners.js | description": {
|
|
1215
|
-
"message": "لا يعمل حدث `unload`
|
|
1221
|
+
"message": "لا يعمل حدث `unload` بفاعلية ويمكن أن تؤدي معالجته إلى عدم تنفيذ عمليات تحسين المتصفّح، مثل عملية \"التخزين المؤقت للصفحات\". وبدلاً من هذا الحدث، يمكنك استخدام `pagehide` أو `visibilitychange`. [مزيد من المعلومات](https://web.dev/bfcache/#never-use-the-unload-event)"
|
|
1216
1222
|
},
|
|
1217
1223
|
"lighthouse-core/audits/no-unload-listeners.js | failureTitle": {
|
|
1218
1224
|
"message": "يتم استخدام أدوات معالجة حدث `unload`"
|
|
@@ -2145,7 +2151,7 @@
|
|
|
2145
2151
|
"message": "يمكنك تحميل ملف GIF إلى خدمة ستتيح تضمينه في شكل فيديو HTML5."
|
|
2146
2152
|
},
|
|
2147
2153
|
"node_modules/lighthouse-stack-packs/packs/joomla.js | modern-image-formats": {
|
|
2148
|
-
"message": "يمكنك استخدام [
|
|
2154
|
+
"message": "يمكنك استخدام [مكوِّن إضافي](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=webp) أو خدمة تتيح لك تحويل صورك المحمَّلة إلى أفضل التنسيقات تلقائيًا."
|
|
2149
2155
|
},
|
|
2150
2156
|
"node_modules/lighthouse-stack-packs/packs/joomla.js | offscreen-images": {
|
|
2151
2157
|
"message": "يمكنك تثبيت [مكوِّن Joomla الإضافي المُساعِد في التحميل البطيء](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=lazy%20loading) والذي يتيح لك إمكانية تأجيل أي صور خارج الشاشة، أو يمكنك الانتقال إلى نموذج يوفّر هذه الوظيفة. وبدءًا من الإصدار Joomla 4.0، تحصل كل الصور الجديدة [تلقائيًا](https://github.com/joomla/joomla-cms/pull/30748) على السمة `loading` من الحزمة الأساسية."
|
|
@@ -2219,6 +2225,36 @@
|
|
|
2219
2225
|
"node_modules/lighthouse-stack-packs/packs/magento.js | uses-rel-preload": {
|
|
2220
2226
|
"message": "يمكن إضافة علامات `<link rel=preload>` عن طريق [تعديل تنسيق التصميمات](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)."
|
|
2221
2227
|
},
|
|
2228
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | modern-image-formats": {
|
|
2229
|
+
"message": "يمكنك استخدام Image Optimization API `Next.js` لعرض تنسيقات حديثة مثل `WebP` و`AVIF`. [مزيد من المعلومات](https://nextjs.org/docs/api-reference/next/image#acceptable-formats)"
|
|
2230
|
+
},
|
|
2231
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | offscreen-images": {
|
|
2232
|
+
"message": "يمكنك استخدام المكوِّن `next/image` الذي يتم تلقائيًا ضبطه على `loading=\"lazy\"`. [مزيد من المعلومات](https://nextjs.org/docs/api-reference/next/image#loading)"
|
|
2233
|
+
},
|
|
2234
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | render-blocking-resources": {
|
|
2235
|
+
"message": "يمكنك استخدام المكوِّن `next/script` لتأجيل تحميل النصوص البرمجية غير المهمة التابعة لجهات خارجية. [مزيد من المعلومات](https://nextjs.org/docs/basic-features/script)"
|
|
2236
|
+
},
|
|
2237
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | unused-css-rules": {
|
|
2238
|
+
"message": "يمكنك إعداد `PurgeCSS` في عملية ضبط `Next.js` لإزالة أي قواعد غير مستخدَمة من أوراق الأنماط. [مزيد من المعلومات](https://purgecss.com/guides/next.html)"
|
|
2239
|
+
},
|
|
2240
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | unused-javascript": {
|
|
2241
|
+
"message": "يمكنك استخدام `Webpack Bundle Analyzer` لرصد رمز JavaScript غير المستخدَم. [مزيد من المعلومات](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer)"
|
|
2242
|
+
},
|
|
2243
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | user-timings": {
|
|
2244
|
+
"message": "يمكنك استخدام `Next.js Analytics` لقياس الأداء الفعلي العالمي لتطبيقك. [مزيد من المعلومات](https://nextjs.org/docs/advanced-features/measuring-performance)"
|
|
2245
|
+
},
|
|
2246
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-long-cache-ttl": {
|
|
2247
|
+
"message": "يمكنك ضبط ميزة التخزين المؤقت لمواد العرض وصفحات `Server-side Rendered` (SSR) الثابتة. [مزيد من المعلومات](https://nextjs.org/docs/going-to-production#caching)"
|
|
2248
|
+
},
|
|
2249
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-optimized-images": {
|
|
2250
|
+
"message": "يمكنك استخدام المكوِّن `next/image` بدلاً من `<img>` لتحسين الصور. [مزيد من المعلومات](https://nextjs.org/docs/basic-features/image-optimization)"
|
|
2251
|
+
},
|
|
2252
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-responsive-images": {
|
|
2253
|
+
"message": "يمكنك استخدام المكوِّن `next/image` لضبط `sizes` المناسبة. [مزيد من المعلومات](https://nextjs.org/docs/api-reference/next/image#sizes)"
|
|
2254
|
+
},
|
|
2255
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-text-compression": {
|
|
2256
|
+
"message": "يمكنك تفعيل ميزة ضغط البيانات في خادم Next.js الخاص بك. [مزيد من المعلومات](https://nextjs.org/docs/api-reference/next.config.js/compression)"
|
|
2257
|
+
},
|
|
2222
2258
|
"node_modules/lighthouse-stack-packs/packs/octobercms.js | efficient-animated-content": {
|
|
2223
2259
|
"message": "[يمكنك استخدام الفيديو بدلاً من صور GIF المتحركة](https://web.dev/replace-gifs-with-videos/) لتحميل صفحات الويب بشكل أسرع، بالإضافة إلى استخدام تنسيقات ملفات حديثة، مثل [WebM](https://web.dev/replace-gifs-with-videos/#create-webm-videos) أو [AV1](https://developers.google.com/web/updates/2018/09/chrome-70-media-updates#av1-decoder) لتحسين كفاءة الضغط بنسبة تزيد عن 30% على برنامج ترميز الفيديو المتطوّر الحالي، VP9."
|
|
2224
2260
|
},
|
|
@@ -2286,7 +2322,7 @@
|
|
|
2286
2322
|
"message": "يمكنك تحميل ملف GIF إلى خدمة ستتيح تضمينه في شكل فيديو HTML5."
|
|
2287
2323
|
},
|
|
2288
2324
|
"node_modules/lighthouse-stack-packs/packs/wordpress.js | modern-image-formats": {
|
|
2289
|
-
"message": "يمكنك استخدام [
|
|
2325
|
+
"message": "يمكنك استخدام [مكوِّن إضافي](https://wordpress.org/plugins/search/convert+webp/) أو خدمة تتيح لك تحويل صورك المحمَّلة إلى أفضل التنسيقات تلقائيًا."
|
|
2290
2326
|
},
|
|
2291
2327
|
"node_modules/lighthouse-stack-packs/packs/wordpress.js | offscreen-images": {
|
|
2292
2328
|
"message": "يمكنك تثبيت [مكون WordPress الإضافي للتحميل الكسول](https://wordpress.org/plugins/search/lazy+load/) الذي يوفر القدرة على تأجيل أي صور خارج الشاشة، أو التبديل إلى تصميم يوفِّر هذه القدرة الوظيفية. يمكنك أيضًا استخدام [مكون AMP الإضافي](https://wordpress.org/plugins/amp/)."
|
|
@@ -417,7 +417,7 @@
|
|
|
417
417
|
"message": "Когато за бутон от тип `<input>` се използва изображение, предоставянето на алтернативен текст помага на потребителите на екранни четци да разберат за какво служи бутонът. [Научете повече](https://web.dev/input-image-alt/)."
|
|
418
418
|
},
|
|
419
419
|
"lighthouse-core/audits/accessibility/input-image-alt.js | failureTitle": {
|
|
420
|
-
"message": "Някои елементи `<input type=\"image\">` нямат алтернативен текст `[alt]`"
|
|
420
|
+
"message": "Някои елементи `<input type=\"image\">` нямат алтернативен текст (`[alt]`)"
|
|
421
421
|
},
|
|
422
422
|
"lighthouse-core/audits/accessibility/input-image-alt.js | title": {
|
|
423
423
|
"message": "Елементите `<input type=\"image\">` имат алтернативен текст (`[alt]`)"
|
|
@@ -480,10 +480,10 @@
|
|
|
480
480
|
"message": "Екранните четци не могат да интерпретират нетекстово съдържание. Добавянето на алтернативен текст към елементите `<object>` помага на екранните четци да предават смисъла им на потребителите. [Научете повече](https://web.dev/object-alt/)."
|
|
481
481
|
},
|
|
482
482
|
"lighthouse-core/audits/accessibility/object-alt.js | failureTitle": {
|
|
483
|
-
"message": "
|
|
483
|
+
"message": "`<object>` елемента нямат алтернативен текст"
|
|
484
484
|
},
|
|
485
485
|
"lighthouse-core/audits/accessibility/object-alt.js | title": {
|
|
486
|
-
"message": "
|
|
486
|
+
"message": "`<object>` елемента имат алтернативен текст"
|
|
487
487
|
},
|
|
488
488
|
"lighthouse-core/audits/accessibility/tabindex.js | description": {
|
|
489
489
|
"message": "Ако стойността е по-голяма от 0, значи се използва изричен ред на навигиране. Въпреки че е технически валидно, това често създава неудобства за потребителите, които разчитат на помощни технологии. [Научете повече](https://web.dev/tabindex/)."
|
|
@@ -1052,6 +1052,9 @@
|
|
|
1052
1052
|
"lighthouse-core/audits/installable-manifest.js | not-offline-capable": {
|
|
1053
1053
|
"message": "Страницата не работи офлайн"
|
|
1054
1054
|
},
|
|
1055
|
+
"lighthouse-core/audits/installable-manifest.js | pipeline-restarted": {
|
|
1056
|
+
"message": "PWA бе деинсталирано и проверките на възможността за инсталиране се нулират."
|
|
1057
|
+
},
|
|
1055
1058
|
"lighthouse-core/audits/installable-manifest.js | platform-not-supported-on-android": {
|
|
1056
1059
|
"message": "Посочената платформа за приложения не се поддържа от Android"
|
|
1057
1060
|
},
|
|
@@ -1061,6 +1064,9 @@
|
|
|
1061
1064
|
"lighthouse-core/audits/installable-manifest.js | prefer-related-applications-only-beta-stable": {
|
|
1062
1065
|
"message": "prefer_related_applications се поддържа само в бета- и стабилния канал на Chrome за Android."
|
|
1063
1066
|
},
|
|
1067
|
+
"lighthouse-core/audits/installable-manifest.js | protocol-timeout": {
|
|
1068
|
+
"message": "Lighthouse не успя да установи дали е налице service worker. Опитайте с по-нова версия на Chrome."
|
|
1069
|
+
},
|
|
1064
1070
|
"lighthouse-core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1065
1071
|
"message": "URL адресът за стартиране в манифеста не е валиден"
|
|
1066
1072
|
},
|
|
@@ -1212,7 +1218,7 @@
|
|
|
1212
1218
|
"message": "Забавяния в задния слой на сървъра"
|
|
1213
1219
|
},
|
|
1214
1220
|
"lighthouse-core/audits/no-unload-listeners.js | description": {
|
|
1215
|
-
"message": "Събитието `unload` не се задейства надеждно и приемането му може да попречи на оптимизациите на браузъра, като например кеш за назад/напред. Вместо това
|
|
1221
|
+
"message": "Събитието `unload` не се задейства надеждно и приемането му може да попречи на оптимизациите на браузъра, като например кеш за назад/напред. Вместо това използвайте събитията `pagehide` или `visibilitychange`. [Научете повече](https://web.dev/bfcache/#never-use-the-unload-event)"
|
|
1216
1222
|
},
|
|
1217
1223
|
"lighthouse-core/audits/no-unload-listeners.js | failureTitle": {
|
|
1218
1224
|
"message": "Регистрира приемател за `unload`"
|
|
@@ -2219,6 +2225,36 @@
|
|
|
2219
2225
|
"node_modules/lighthouse-stack-packs/packs/magento.js | uses-rel-preload": {
|
|
2220
2226
|
"message": "Можете да добавите маркери `<link rel=preload>`, като [промените оформлението на дадената тема](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)."
|
|
2221
2227
|
},
|
|
2228
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | modern-image-formats": {
|
|
2229
|
+
"message": "Използвайте API на `Next.js` за оптимизиране на изображенията, за да се показват в съвременни формати, като например `WebP` и `AVIF`. [Научете повече](https://nextjs.org/docs/api-reference/next/image#acceptable-formats)."
|
|
2230
|
+
},
|
|
2231
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | offscreen-images": {
|
|
2232
|
+
"message": "Използвайте компонента `next/image`, който по подразбиране задава `loading=\"lazy\"`. [Научете повече](https://nextjs.org/docs/api-reference/next/image#loading)."
|
|
2233
|
+
},
|
|
2234
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | render-blocking-resources": {
|
|
2235
|
+
"message": "Използвайте компонента `next/script`, за да отложите зареждането на некритични скриптове от трети страни. [Научете повече](https://nextjs.org/docs/basic-features/script)."
|
|
2236
|
+
},
|
|
2237
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | unused-css-rules": {
|
|
2238
|
+
"message": "Добре е да настроите `PurgeCSS` в конфигурацията с `Next.js`, за да премахнете неизползваните правила от стиловите листове. [Научете повече](https://purgecss.com/guides/next.html)."
|
|
2239
|
+
},
|
|
2240
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | unused-javascript": {
|
|
2241
|
+
"message": "Използвайте `Webpack Bundle Analyzer`, за да откриете неизползван JavaScript код. [Научете повече](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer)."
|
|
2242
|
+
},
|
|
2243
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | user-timings": {
|
|
2244
|
+
"message": "Добре е да използвате `Next.js Analytics`, за да измервате действителната ефективност на приложението си. [Научете повече](https://nextjs.org/docs/advanced-features/measuring-performance)."
|
|
2245
|
+
},
|
|
2246
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-long-cache-ttl": {
|
|
2247
|
+
"message": "Конфигурирайте кеширането на непроменливите активи и SSR (`Server-side Rendered`) страници. [Научете повече](https://nextjs.org/docs/going-to-production#caching)."
|
|
2248
|
+
},
|
|
2249
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-optimized-images": {
|
|
2250
|
+
"message": "Използвайте компонента `next/image` вместо `<img>`, за да оптимизирате изображенията. [Научете повече](https://nextjs.org/docs/basic-features/image-optimization)."
|
|
2251
|
+
},
|
|
2252
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-responsive-images": {
|
|
2253
|
+
"message": "Използвайте компонента `next/image`, за да зададете подходяща стойност за `sizes`. [Научете повече](https://nextjs.org/docs/api-reference/next/image#sizes)."
|
|
2254
|
+
},
|
|
2255
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-text-compression": {
|
|
2256
|
+
"message": "Активирайте компресирането в Next.js сървъра си. [Научете повече](https://nextjs.org/docs/api-reference/next.config.js/compression)."
|
|
2257
|
+
},
|
|
2222
2258
|
"node_modules/lighthouse-stack-packs/packs/octobercms.js | efficient-animated-content": {
|
|
2223
2259
|
"message": "[Заменете анимираните GIF файлове с видеосъдържание](https://web.dev/replace-gifs-with-videos/), за да ускорите зареждането на уеб страницата, и помислете за използването на съвременни файлови формати, като [WebM](https://web.dev/replace-gifs-with-videos/#create-webm-videos) или [AV1](https://developers.google.com/web/updates/2018/09/chrome-70-media-updates#av1-decoder), за да подобрите ефективността при компресиране с повече от 30% спрямо най-модерния понастоящем видеокодек VP9."
|
|
2224
2260
|
},
|