lighthouse 12.0.0-dev.20240615 → 12.0.0-dev.20240617
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/lib/lantern/metrics/FirstContentfulPaint.test.js +1 -1
- package/core/lib/lantern/metrics/Interactive.test.js +2 -2
- package/core/lib/lantern/metrics/LargestContentfulPaint.test.js +1 -1
- package/core/lib/lantern/metrics/SpeedIndex.test.js +1 -1
- package/core/lib/lantern/simulation/NetworkAnalyzer.test.js +2 -2
- package/core/lib/lantern/simulation/Simulator.test.js +2 -2
- package/package.json +3 -3
- package/shared/localization/locales/ar-XB.json +43 -4
- package/shared/localization/locales/ar.json +43 -4
- package/shared/localization/locales/bg.json +43 -4
- package/shared/localization/locales/ca.json +44 -5
- package/shared/localization/locales/cs.json +43 -4
- package/shared/localization/locales/da.json +43 -4
- package/shared/localization/locales/de.json +43 -4
- package/shared/localization/locales/el.json +43 -4
- package/shared/localization/locales/en-GB.json +42 -3
- package/shared/localization/locales/en-XA.json +43 -4
- package/shared/localization/locales/es-419.json +43 -4
- package/shared/localization/locales/es.json +42 -3
- package/shared/localization/locales/fi.json +43 -4
- package/shared/localization/locales/fil.json +42 -3
- package/shared/localization/locales/fr.json +42 -3
- package/shared/localization/locales/he.json +48 -9
- package/shared/localization/locales/hi.json +43 -4
- package/shared/localization/locales/hr.json +43 -4
- package/shared/localization/locales/hu.json +42 -3
- package/shared/localization/locales/id.json +42 -3
- package/shared/localization/locales/it.json +43 -4
- package/shared/localization/locales/ja.json +42 -3
- package/shared/localization/locales/ko.json +43 -4
- package/shared/localization/locales/lt.json +42 -3
- package/shared/localization/locales/lv.json +43 -4
- package/shared/localization/locales/nl.json +44 -5
- package/shared/localization/locales/no.json +42 -3
- package/shared/localization/locales/pl.json +43 -4
- package/shared/localization/locales/pt-PT.json +43 -4
- package/shared/localization/locales/pt.json +43 -4
- package/shared/localization/locales/ro.json +43 -4
- package/shared/localization/locales/ru.json +43 -4
- package/shared/localization/locales/sk.json +43 -4
- package/shared/localization/locales/sl.json +42 -3
- package/shared/localization/locales/sr-Latn.json +43 -4
- package/shared/localization/locales/sr.json +43 -4
- package/shared/localization/locales/sv.json +42 -3
- package/shared/localization/locales/ta.json +42 -3
- package/shared/localization/locales/te.json +43 -4
- package/shared/localization/locales/th.json +44 -5
- package/shared/localization/locales/tr.json +43 -4
- package/shared/localization/locales/uk.json +43 -4
- package/shared/localization/locales/vi.json +43 -4
- package/shared/localization/locales/zh-HK.json +43 -4
- package/shared/localization/locales/zh-TW.json +43 -4
- package/shared/localization/locales/zh.json +43 -4
- package/tsconfig-all.json +1 -0
- package/tsconfig.json +1 -0
- /package/core/lib/lantern/metrics/__snapshots__/{first-contentful-paint-test.js.snap → FirstContentfulPaint.test.js.snap} +0 -0
- /package/core/lib/lantern/metrics/__snapshots__/{interactive-test.js.snap → Interactive.test.js.snap} +0 -0
|
@@ -12,7 +12,7 @@ import {getComputationDataFromFixture} from './MetricTestUtils.js';
|
|
|
12
12
|
|
|
13
13
|
const {FirstContentfulPaint} = Lantern.Metrics;
|
|
14
14
|
|
|
15
|
-
const trace = readJson('../../../fixtures/artifacts/progressive-app/trace.json', import.meta);
|
|
15
|
+
const trace = readJson('../../../test/fixtures/artifacts/progressive-app/trace.json', import.meta);
|
|
16
16
|
|
|
17
17
|
describe('Metrics: Lantern FCP', () => {
|
|
18
18
|
it('should compute predicted value', async () => {
|
|
@@ -12,8 +12,8 @@ import {readJson} from '../../../test/test-utils.js';
|
|
|
12
12
|
|
|
13
13
|
const {Interactive, FirstContentfulPaint, LargestContentfulPaint} = Lantern.Metrics;
|
|
14
14
|
|
|
15
|
-
const trace = readJson('../../../fixtures/artifacts/progressive-app/trace.json', import.meta);
|
|
16
|
-
const iframeTrace = readJson('../../../fixtures/artifacts/iframe/trace.json', import.meta);
|
|
15
|
+
const trace = readJson('../../../test/fixtures/artifacts/progressive-app/trace.json', import.meta);
|
|
16
|
+
const iframeTrace = readJson('../../../test/fixtures/artifacts/iframe/trace.json', import.meta);
|
|
17
17
|
|
|
18
18
|
describe('Metrics: Lantern TTI', () => {
|
|
19
19
|
it('should compute predicted value', async () => {
|
|
@@ -12,7 +12,7 @@ import {readJson} from '../../../test/test-utils.js';
|
|
|
12
12
|
|
|
13
13
|
const {FirstContentfulPaint, LargestContentfulPaint} = Lantern.Metrics;
|
|
14
14
|
|
|
15
|
-
const trace = readJson('../../../fixtures/artifacts/paul/trace.json', import.meta);
|
|
15
|
+
const trace = readJson('../../../test/fixtures/artifacts/paul/trace.json', import.meta);
|
|
16
16
|
|
|
17
17
|
describe('Metrics: Lantern LCP', () => {
|
|
18
18
|
it('should compute predicted value', async () => {
|
|
@@ -10,7 +10,7 @@ import {getComputationDataFromFixture} from './MetricTestUtils.js';
|
|
|
10
10
|
|
|
11
11
|
const {SpeedIndex, FirstContentfulPaint} = Lantern.Metrics;
|
|
12
12
|
|
|
13
|
-
const trace = readJson('../../../fixtures/artifacts/progressive-app/trace.json', import.meta);
|
|
13
|
+
const trace = readJson('../../../test/fixtures/artifacts/progressive-app/trace.json', import.meta);
|
|
14
14
|
|
|
15
15
|
const defaultThrottling = Lantern.Simulation.Constants.throttling.mobileSlow4G;
|
|
16
16
|
|
|
@@ -12,8 +12,8 @@ import {runTraceEngine} from '../metrics/MetricTestUtils.js';
|
|
|
12
12
|
|
|
13
13
|
const {NetworkAnalyzer} = Lantern.Simulation;
|
|
14
14
|
|
|
15
|
-
const trace = readJson('../../../fixtures/artifacts/paul/trace.json', import.meta);
|
|
16
|
-
const traceWithRedirect = readJson('../../../fixtures/artifacts/redirect/trace.json', import.meta);
|
|
15
|
+
const trace = readJson('../../../test/fixtures/artifacts/paul/trace.json', import.meta);
|
|
16
|
+
const traceWithRedirect = readJson('../../../test/fixtures/artifacts/redirect/trace.json', import.meta);
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
* @param {Lantern.Trace} trace
|
|
@@ -8,12 +8,12 @@ import assert from 'assert/strict';
|
|
|
8
8
|
|
|
9
9
|
import * as Lantern from '../lantern.js';
|
|
10
10
|
import {readJson} from '../../../test/test-utils.js';
|
|
11
|
-
import {runTraceEngine} from '
|
|
11
|
+
import {runTraceEngine} from '../metrics/MetricTestUtils.js';
|
|
12
12
|
|
|
13
13
|
const {NetworkNode, CPUNode} = Lantern;
|
|
14
14
|
const {Simulator, DNSCache} = Lantern.Simulation;
|
|
15
15
|
|
|
16
|
-
const pwaTrace = readJson('../../../fixtures/artifacts/progressive-app/trace.json', import.meta);
|
|
16
|
+
const pwaTrace = readJson('../../../test/fixtures/artifacts/progressive-app/trace.json', import.meta);
|
|
17
17
|
|
|
18
18
|
let nextRequestId = 1;
|
|
19
19
|
let nextTid = 1;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lighthouse",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "12.0.0-dev.
|
|
4
|
+
"version": "12.0.0-dev.20240617",
|
|
5
5
|
"description": "Automated auditing, performance metrics, and best practices for the web.",
|
|
6
6
|
"main": "./core/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
"pako": "^2.0.3",
|
|
168
168
|
"preact": "^10.7.2",
|
|
169
169
|
"pretty-json-stringify": "^0.0.2",
|
|
170
|
-
"puppeteer": "^22.
|
|
170
|
+
"puppeteer": "^22.11.1",
|
|
171
171
|
"resolve": "^1.22.1",
|
|
172
172
|
"rollup": "^2.52.7",
|
|
173
173
|
"rollup-plugin-polyfill-node": "^0.12.0",
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
"metaviewport-parser": "0.3.0",
|
|
201
201
|
"open": "^8.4.0",
|
|
202
202
|
"parse-cache-control": "1.0.1",
|
|
203
|
-
"puppeteer-core": "^22.
|
|
203
|
+
"puppeteer-core": "^22.11.1",
|
|
204
204
|
"robots-parser": "^3.0.1",
|
|
205
205
|
"semver": "^5.3.0",
|
|
206
206
|
"speedline-core": "^1.4.3",
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"message": "`[aria-*]` attributes match their roles"
|
|
19
19
|
},
|
|
20
20
|
"core/audits/accessibility/aria-allowed-role.js | description": {
|
|
21
|
-
"message": "
|
|
21
|
+
"message": "Many HTML elements can only be assigned certain ARIA roles. Using ARIA roles where they are not allowed can interfere with the accessibility of the web page. [Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)."
|
|
22
22
|
},
|
|
23
23
|
"core/audits/accessibility/aria-allowed-role.js | failureTitle": {
|
|
24
|
-
"message": "
|
|
24
|
+
"message": "Uses ARIA roles on incompatible elements"
|
|
25
25
|
},
|
|
26
26
|
"core/audits/accessibility/aria-allowed-role.js | title": {
|
|
27
|
-
"message": "
|
|
27
|
+
"message": "Uses ARIA roles only on compatible elements"
|
|
28
28
|
},
|
|
29
29
|
"core/audits/accessibility/aria-command-name.js | description": {
|
|
30
30
|
"message": "When an element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn how to make command elements more accessible](https://dequeuniversity.com/rules/axe/4.9/aria-command-name)."
|
|
@@ -35,6 +35,24 @@
|
|
|
35
35
|
"core/audits/accessibility/aria-command-name.js | title": {
|
|
36
36
|
"message": "`button`, `link`, and `menuitem` elements have accessible names"
|
|
37
37
|
},
|
|
38
|
+
"core/audits/accessibility/aria-conditional-attr.js | description": {
|
|
39
|
+
"message": "Some ARIA attributes are only allowed on an element under certain conditions. [Learn more about conditional ARIA attributes](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)."
|
|
40
|
+
},
|
|
41
|
+
"core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
|
|
42
|
+
"message": "ARIA attributes are not used as specified for the element's role"
|
|
43
|
+
},
|
|
44
|
+
"core/audits/accessibility/aria-conditional-attr.js | title": {
|
|
45
|
+
"message": "ARIA attributes are used as specified for the element's role"
|
|
46
|
+
},
|
|
47
|
+
"core/audits/accessibility/aria-deprecated-role.js | description": {
|
|
48
|
+
"message": "Deprecated ARIA roles may not be processed correctly by assistive technology. [Learn more about deprecated ARIA roles](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)."
|
|
49
|
+
},
|
|
50
|
+
"core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
|
|
51
|
+
"message": "Deprecated ARIA roles were used"
|
|
52
|
+
},
|
|
53
|
+
"core/audits/accessibility/aria-deprecated-role.js | title": {
|
|
54
|
+
"message": "Deprecated ARIA roles were not used"
|
|
55
|
+
},
|
|
38
56
|
"core/audits/accessibility/aria-dialog-name.js | description": {
|
|
39
57
|
"message": "ARIA dialog elements without accessible names may prevent screen readers users from discerning the purpose of these elements. [Learn how to make ARIA dialog elements more accessible](https://dequeuniversity.com/rules/axe/4.9/aria-dialog-name)."
|
|
40
58
|
},
|
|
@@ -89,6 +107,15 @@
|
|
|
89
107
|
"core/audits/accessibility/aria-progressbar-name.js | title": {
|
|
90
108
|
"message": "ARIA `progressbar` elements have accessible names"
|
|
91
109
|
},
|
|
110
|
+
"core/audits/accessibility/aria-prohibited-attr.js | description": {
|
|
111
|
+
"message": "Using ARIA attributes in roles where they are prohibited can mean that important information is not communicated to users of assistive technologies. [Learn more about prohibited ARIA roles](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)."
|
|
112
|
+
},
|
|
113
|
+
"core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
|
|
114
|
+
"message": "Elements use prohibited ARIA attributes"
|
|
115
|
+
},
|
|
116
|
+
"core/audits/accessibility/aria-prohibited-attr.js | title": {
|
|
117
|
+
"message": "Elements use only permitted ARIA attributes"
|
|
118
|
+
},
|
|
92
119
|
"core/audits/accessibility/aria-required-attr.js | description": {
|
|
93
120
|
"message": "Some ARIA roles have required attributes that describe the state of the element to screen readers. [Learn more about roles and required attributes](https://dequeuniversity.com/rules/axe/4.9/aria-required-attr)."
|
|
94
121
|
},
|
|
@@ -1175,6 +1202,15 @@
|
|
|
1175
1202
|
"core/audits/prioritize-lcp-image.js | title": {
|
|
1176
1203
|
"message": "Preload Largest Contentful Paint image"
|
|
1177
1204
|
},
|
|
1205
|
+
"core/audits/redirects-http.js | description": {
|
|
1206
|
+
"message": "Make sure that you redirect all HTTP traffic to HTTPS in order to enable secure web features for all your users. [Learn more](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)."
|
|
1207
|
+
},
|
|
1208
|
+
"core/audits/redirects-http.js | failureTitle": {
|
|
1209
|
+
"message": "Does not redirect HTTP traffic to HTTPS"
|
|
1210
|
+
},
|
|
1211
|
+
"core/audits/redirects-http.js | title": {
|
|
1212
|
+
"message": "Redirects HTTP traffic to HTTPS"
|
|
1213
|
+
},
|
|
1178
1214
|
"core/audits/redirects.js | description": {
|
|
1179
1215
|
"message": "Redirects introduce additional delays before the page can be loaded. [Learn how to avoid page redirects](https://developer.chrome.com/docs/lighthouse/performance/redirects/)."
|
|
1180
1216
|
},
|
|
@@ -1713,7 +1749,7 @@
|
|
|
1713
1749
|
"message": "Pages that use Serial API are not eligible for back/forward cache."
|
|
1714
1750
|
},
|
|
1715
1751
|
"core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
|
|
1716
|
-
"message": "Pages that use
|
|
1752
|
+
"message": "Pages that use WebAuthentication API are not eligible for back/forward cache."
|
|
1717
1753
|
},
|
|
1718
1754
|
"core/lib/bf-cache-strings.js | contentWebBluetooth": {
|
|
1719
1755
|
"message": "Pages that use WebBluetooth API are not eligible for back/forward cache."
|
|
@@ -2432,6 +2468,9 @@
|
|
|
2432
2468
|
"core/lib/lh-error.js | requestContentTimeout": {
|
|
2433
2469
|
"message": "Fetching resource content has exceeded the allotted time"
|
|
2434
2470
|
},
|
|
2471
|
+
"core/lib/lh-error.js | targetCrashed": {
|
|
2472
|
+
"message": "Browser tab has unexpectedly crashed."
|
|
2473
|
+
},
|
|
2435
2474
|
"core/lib/lh-error.js | urlInvalid": {
|
|
2436
2475
|
"message": "The URL you have provided appears to be invalid."
|
|
2437
2476
|
},
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"message": "سمات `[aria-*]` هي مطابقة لأدوارها"
|
|
19
19
|
},
|
|
20
20
|
"core/audits/accessibility/aria-allowed-role.js | description": {
|
|
21
|
-
"message": "
|
|
21
|
+
"message": "Many HTML elements can only be assigned certain ARIA roles. Using ARIA roles where they are not allowed can interfere with the accessibility of the web page. [Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)."
|
|
22
22
|
},
|
|
23
23
|
"core/audits/accessibility/aria-allowed-role.js | failureTitle": {
|
|
24
|
-
"message": "
|
|
24
|
+
"message": "Uses ARIA roles on incompatible elements"
|
|
25
25
|
},
|
|
26
26
|
"core/audits/accessibility/aria-allowed-role.js | title": {
|
|
27
|
-
"message": "
|
|
27
|
+
"message": "Uses ARIA roles only on compatible elements"
|
|
28
28
|
},
|
|
29
29
|
"core/audits/accessibility/aria-command-name.js | description": {
|
|
30
30
|
"message": "عند عدم ظهور اسم أحد العناصر على واجهة المستخدم، تشير برامج قراءة الشاشة إلى هذا العنصر باستخدام اسم عام، ما يجعله غير قابل للاستخدام بالنسبة إلى المستخدمين الذين يعتمدون على برامج قراءة الشاشة. تعرَّف على [كيفية تسهيل استخدام عناصر الأوامر](https://dequeuniversity.com/rules/axe/4.9/aria-command-name)."
|
|
@@ -35,6 +35,24 @@
|
|
|
35
35
|
"core/audits/accessibility/aria-command-name.js | title": {
|
|
36
36
|
"message": "تتوفّر لعناصر `button` و`link` و`menuitem` أسماء يمكن الوصول إليها"
|
|
37
37
|
},
|
|
38
|
+
"core/audits/accessibility/aria-conditional-attr.js | description": {
|
|
39
|
+
"message": "لا يُسمح باستخدام بعض سمات ARIA مع أحد العناصر إلا في حال استيفاء شروط معيّنة. [مزيد من المعلومات حول سمات ARIA الشرطية](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)"
|
|
40
|
+
},
|
|
41
|
+
"core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
|
|
42
|
+
"message": "لا يتم استخدام سمات ARIA على النحو المحدَّد لدور العنصر"
|
|
43
|
+
},
|
|
44
|
+
"core/audits/accessibility/aria-conditional-attr.js | title": {
|
|
45
|
+
"message": "يتم استخدام سمات ARIA على النحو المحدَّد لدور العنصر"
|
|
46
|
+
},
|
|
47
|
+
"core/audits/accessibility/aria-deprecated-role.js | description": {
|
|
48
|
+
"message": "قد لا تتم معالجة أدوار ARIA المتوقّفة نهائيًا بشكلٍ صحيح من خلال التكنولوجيا المساعِدة. [مزيد من المعلومات حول أدوار ARIA المتوقّفة نهائيًا](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)"
|
|
49
|
+
},
|
|
50
|
+
"core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
|
|
51
|
+
"message": "تم استخدام أدوار ARIA المتوقّفة نهائيًا"
|
|
52
|
+
},
|
|
53
|
+
"core/audits/accessibility/aria-deprecated-role.js | title": {
|
|
54
|
+
"message": "لم يتم استخدام أدوار ARIA المتوقّفة نهائيًا"
|
|
55
|
+
},
|
|
38
56
|
"core/audits/accessibility/aria-dialog-name.js | description": {
|
|
39
57
|
"message": "عند استخدام عناصر مربّع الحوار ARIA (dialog ARIA) بدون أسماء ظاهرة على واجهة المستخدم، لن يتمكّن مستخدمو برامج قراءة الشاشة من التعرّف على الغرض من هذه العناصر. [التعرّف على كيفية إظهار عناصر مربّع الحوار ARIA (dialog ARIA) على واجهة المستخدم بشكل أوضح](https://dequeuniversity.com/rules/axe/4.9/aria-dialog-name)"
|
|
40
58
|
},
|
|
@@ -89,6 +107,15 @@
|
|
|
89
107
|
"core/audits/accessibility/aria-progressbar-name.js | title": {
|
|
90
108
|
"message": "تتوفّر لعناصر ARIA `progressbar` أسماء يمكن الوصول إليها"
|
|
91
109
|
},
|
|
110
|
+
"core/audits/accessibility/aria-prohibited-attr.js | description": {
|
|
111
|
+
"message": "قد يؤدي استخدام سمات ARIA في الأدوار التي يُحظر فيها استخدامها إلى عدم نقل معلومات مُهمّة إلى مستخدمي التكنولوجيات المساعِدة. [مزيد من المعلومات حول أدوار ARIA المحظورة](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)"
|
|
112
|
+
},
|
|
113
|
+
"core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
|
|
114
|
+
"message": "تستخدِم العناصر سمات ARIA المحظورة"
|
|
115
|
+
},
|
|
116
|
+
"core/audits/accessibility/aria-prohibited-attr.js | title": {
|
|
117
|
+
"message": "تستخدِم العناصر سمات ARIA المسموح بها فقط"
|
|
118
|
+
},
|
|
92
119
|
"core/audits/accessibility/aria-required-attr.js | description": {
|
|
93
120
|
"message": "تتطلّب بعض أدوار ARIA تزويد برامج قراءة الشاشة بسمات تصف حالة العنصر. [مزيد من المعلومات حول الأدوار والسمات المطلوبة](https://dequeuniversity.com/rules/axe/4.9/aria-required-attr)"
|
|
94
121
|
},
|
|
@@ -1175,6 +1202,15 @@
|
|
|
1175
1202
|
"core/audits/prioritize-lcp-image.js | title": {
|
|
1176
1203
|
"message": "التحميل المُسبَق لصورة المقياس \"سرعة عرض أكبر جزء من المحتوى على الصفحة\""
|
|
1177
1204
|
},
|
|
1205
|
+
"core/audits/redirects-http.js | description": {
|
|
1206
|
+
"message": "تأكَّد من إعادة توجيه جميع الزيارات على HTTP إلى HTTPS لتفعيل ميزات الويب الآمنة لجميع المستخدمين. [مزيد من المعلومات](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)"
|
|
1207
|
+
},
|
|
1208
|
+
"core/audits/redirects-http.js | failureTitle": {
|
|
1209
|
+
"message": "عدم إعادة توجيه زيارات HTTP إلى HTTPS"
|
|
1210
|
+
},
|
|
1211
|
+
"core/audits/redirects-http.js | title": {
|
|
1212
|
+
"message": "إعادة توجيه زيارات HTTP إلى HTTPS"
|
|
1213
|
+
},
|
|
1178
1214
|
"core/audits/redirects.js | description": {
|
|
1179
1215
|
"message": "تؤدي عمليات إعادة التوجيه إلى حدوث تأخيرات إضافية قبل أن يتم تحميل الصفحة. تعرَّف على [كيفية تجنُّب عمليات إعادة توجيه الصفحة](https://developer.chrome.com/docs/lighthouse/performance/redirects/)"
|
|
1180
1216
|
},
|
|
@@ -1713,7 +1749,7 @@
|
|
|
1713
1749
|
"message": "لا يمكن استخدام ميزة \"التخزين المؤقت للصفحات\" لتخزين الصفحات التي تستخدم Serial API."
|
|
1714
1750
|
},
|
|
1715
1751
|
"core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
|
|
1716
|
-
"message": "لا يمكن استخدام ميزة \"التخزين المؤقت للصفحات\"
|
|
1752
|
+
"message": "لا يمكن استخدام ميزة \"التخزين المؤقت للصفحات\" في الصفحات التي تستخدم واجهة برمجة التطبيقات WebAuthentication API."
|
|
1717
1753
|
},
|
|
1718
1754
|
"core/lib/bf-cache-strings.js | contentWebBluetooth": {
|
|
1719
1755
|
"message": "لا يمكن استخدام ميزة \"التخزين المؤقت للصفحات\" لتخزين الصفحات التي تستخدم WebBluetooth API."
|
|
@@ -2432,6 +2468,9 @@
|
|
|
2432
2468
|
"core/lib/lh-error.js | requestContentTimeout": {
|
|
2433
2469
|
"message": "تجاوز جلب محتوى المورد الوقت المخصّص"
|
|
2434
2470
|
},
|
|
2471
|
+
"core/lib/lh-error.js | targetCrashed": {
|
|
2472
|
+
"message": "تعطّلت علامة تبويب المتصفّح بشكل غير متوقّع."
|
|
2473
|
+
},
|
|
2435
2474
|
"core/lib/lh-error.js | urlInvalid": {
|
|
2436
2475
|
"message": "يبدو أن عنوان URL الذي قدمته غير صحيح."
|
|
2437
2476
|
},
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"message": "Атрибутите `[aria-*]` съответстват на ролите си"
|
|
19
19
|
},
|
|
20
20
|
"core/audits/accessibility/aria-allowed-role.js | description": {
|
|
21
|
-
"message": "
|
|
21
|
+
"message": "На много от HTML елементите могат да бъдат присвоени само определени роли на ARIA. Използването на роли на ARIA на места, където не са разрешени, може да възпрепятства достъпността на уеб страницата. [Научете повече за ролите на ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)."
|
|
22
22
|
},
|
|
23
23
|
"core/audits/accessibility/aria-allowed-role.js | failureTitle": {
|
|
24
|
-
"message": "
|
|
24
|
+
"message": "Използва роли на ARIA за несъвместими елементи"
|
|
25
25
|
},
|
|
26
26
|
"core/audits/accessibility/aria-allowed-role.js | title": {
|
|
27
|
-
"message": "
|
|
27
|
+
"message": "Използва роли на ARIA само за съвместими елементи"
|
|
28
28
|
},
|
|
29
29
|
"core/audits/accessibility/aria-command-name.js | description": {
|
|
30
30
|
"message": "Когато даден елемент няма достъпно име, екранните четци ще произнасят за него общо име и той ще бъде неизползваем за потребителите, разчитащи на тази технология. [Научете как да направите по-достъпни елементите, свързани с команди](https://dequeuniversity.com/rules/axe/4.9/aria-command-name)."
|
|
@@ -35,6 +35,24 @@
|
|
|
35
35
|
"core/audits/accessibility/aria-command-name.js | title": {
|
|
36
36
|
"message": "Елементите `button`, `link` и `menuitem` имат достъпни имена"
|
|
37
37
|
},
|
|
38
|
+
"core/audits/accessibility/aria-conditional-attr.js | description": {
|
|
39
|
+
"message": "Някои атрибути на ARIA са разрешени за елемент само при определени условия. [Научете повече за условните атрибути на ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)."
|
|
40
|
+
},
|
|
41
|
+
"core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
|
|
42
|
+
"message": "Атрибутите на ARIA не се използват, както е посочено за ролята на елемента"
|
|
43
|
+
},
|
|
44
|
+
"core/audits/accessibility/aria-conditional-attr.js | title": {
|
|
45
|
+
"message": "Атрибутите на ARIA се използват, както е посочено за ролята на елемента"
|
|
46
|
+
},
|
|
47
|
+
"core/audits/accessibility/aria-deprecated-role.js | description": {
|
|
48
|
+
"message": "Оттеглените роли на ARIA може да не бъдат обработени правилно от помощната технология. [Научете повече за оттеглените роли на ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)."
|
|
49
|
+
},
|
|
50
|
+
"core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
|
|
51
|
+
"message": "Използвани са оттеглени роли на ARIA"
|
|
52
|
+
},
|
|
53
|
+
"core/audits/accessibility/aria-deprecated-role.js | title": {
|
|
54
|
+
"message": "Не са използвани оттеглени роли на ARIA"
|
|
55
|
+
},
|
|
38
56
|
"core/audits/accessibility/aria-dialog-name.js | description": {
|
|
39
57
|
"message": "Елементите ARIA в диалоговите прозорци без достъпни имена може да попречат на потребителите на екранни четци да разберат целта на тези елементи. [Научете как да направите по-достъпни елементите ARIA в диалоговите прозорци](https://dequeuniversity.com/rules/axe/4.9/aria-dialog-name)."
|
|
40
58
|
},
|
|
@@ -89,6 +107,15 @@
|
|
|
89
107
|
"core/audits/accessibility/aria-progressbar-name.js | title": {
|
|
90
108
|
"message": "ARIA елементите `progressbar` имат достъпни имена"
|
|
91
109
|
},
|
|
110
|
+
"core/audits/accessibility/aria-prohibited-attr.js | description": {
|
|
111
|
+
"message": "Използването на атрибути на ARIA в роли, където те са забранени, може да означава, че на потребителите на помощни технологии не се съобщава важна информация. [Научете повече за забранените роли на ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)."
|
|
112
|
+
},
|
|
113
|
+
"core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
|
|
114
|
+
"message": "Елементите използват забранени атрибути на ARIA"
|
|
115
|
+
},
|
|
116
|
+
"core/audits/accessibility/aria-prohibited-attr.js | title": {
|
|
117
|
+
"message": "Елементите използват само разрешени атрибути на ARIA"
|
|
118
|
+
},
|
|
92
119
|
"core/audits/accessibility/aria-required-attr.js | description": {
|
|
93
120
|
"message": "Някои роли на ARIA имат задължителни атрибути, от които екранните четци получават описание на състоянието на съответния елемент. [Научете повече за ролите и задължителните атрибути](https://dequeuniversity.com/rules/axe/4.9/aria-required-attr)."
|
|
94
121
|
},
|
|
@@ -1175,6 +1202,15 @@
|
|
|
1175
1202
|
"core/audits/prioritize-lcp-image.js | title": {
|
|
1176
1203
|
"message": "Предварително зареждане на изображението, рендерирано при изобразяване на най-голямото съдържание (LPC)"
|
|
1177
1204
|
},
|
|
1205
|
+
"core/audits/redirects-http.js | description": {
|
|
1206
|
+
"message": "Уверете се, че пренасочвате целия HTTP трафик към HTTPS, за да може функциите за сигурност в мрежата да са активирани за всичките ви потребители. [Научете повече](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)."
|
|
1207
|
+
},
|
|
1208
|
+
"core/audits/redirects-http.js | failureTitle": {
|
|
1209
|
+
"message": "HTTP трафикът не се пренасочва към HTTPS"
|
|
1210
|
+
},
|
|
1211
|
+
"core/audits/redirects-http.js | title": {
|
|
1212
|
+
"message": "HTTP трафикът се пренасочва към HTTPS"
|
|
1213
|
+
},
|
|
1178
1214
|
"core/audits/redirects.js | description": {
|
|
1179
1215
|
"message": "Пренасочванията водят до допълнително забавяне на зареждането на страницата. [Научете как да ги избягвате](https://developer.chrome.com/docs/lighthouse/performance/redirects/)."
|
|
1180
1216
|
},
|
|
@@ -1713,7 +1749,7 @@
|
|
|
1713
1749
|
"message": "Страниците, които използват Serial API, не отговарят на условията за кеша за назад/напред."
|
|
1714
1750
|
},
|
|
1715
1751
|
"core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
|
|
1716
|
-
"message": "Страниците, които използват
|
|
1752
|
+
"message": "Страниците, които използват WebAuthentication API, не отговарят на условията за кеша за назад/напред."
|
|
1717
1753
|
},
|
|
1718
1754
|
"core/lib/bf-cache-strings.js | contentWebBluetooth": {
|
|
1719
1755
|
"message": "Страниците, които използват WebBluetooth API, не отговарят на условията за кеша за назад/напред."
|
|
@@ -2432,6 +2468,9 @@
|
|
|
2432
2468
|
"core/lib/lh-error.js | requestContentTimeout": {
|
|
2433
2469
|
"message": "Предвиденото време за извличане на съдържанието на ресурсите бе превишено"
|
|
2434
2470
|
},
|
|
2471
|
+
"core/lib/lh-error.js | targetCrashed": {
|
|
2472
|
+
"message": "Разделът на браузъра претърпя неочакван срив."
|
|
2473
|
+
},
|
|
2435
2474
|
"core/lib/lh-error.js | urlInvalid": {
|
|
2436
2475
|
"message": "Предоставеният от вас URL адрес изглежда невалиден."
|
|
2437
2476
|
},
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"message": "Els atributs `[aria-*]` coincideixen amb les seves funcions"
|
|
19
19
|
},
|
|
20
20
|
"core/audits/accessibility/aria-allowed-role.js | description": {
|
|
21
|
-
"message": "
|
|
21
|
+
"message": "Many HTML elements can only be assigned certain ARIA roles. Using ARIA roles where they are not allowed can interfere with the accessibility of the web page. [Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)."
|
|
22
22
|
},
|
|
23
23
|
"core/audits/accessibility/aria-allowed-role.js | failureTitle": {
|
|
24
|
-
"message": "
|
|
24
|
+
"message": "Uses ARIA roles on incompatible elements"
|
|
25
25
|
},
|
|
26
26
|
"core/audits/accessibility/aria-allowed-role.js | title": {
|
|
27
|
-
"message": "
|
|
27
|
+
"message": "Uses ARIA roles only on compatible elements"
|
|
28
28
|
},
|
|
29
29
|
"core/audits/accessibility/aria-command-name.js | description": {
|
|
30
30
|
"message": "Si un element no té un nom accessible, els lectors de pantalla l'enuncien amb un nom genèric, de manera que queda inservible per als usuaris que depenen d'aquesta tecnologia. [Obtén informació sobre com pots fer que els elements de les ordres siguin més accessibles](https://dequeuniversity.com/rules/axe/4.9/aria-command-name)."
|
|
@@ -35,6 +35,24 @@
|
|
|
35
35
|
"core/audits/accessibility/aria-command-name.js | title": {
|
|
36
36
|
"message": "Els elements `button`, `link` i `menuitem` tenen noms accessibles"
|
|
37
37
|
},
|
|
38
|
+
"core/audits/accessibility/aria-conditional-attr.js | description": {
|
|
39
|
+
"message": "Alguns atributs ARIA només es permeten en un element en determinades condicions. [Obtén més informació sobre els atributs ARIA condicionals](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)."
|
|
40
|
+
},
|
|
41
|
+
"core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
|
|
42
|
+
"message": "Els atributs ARIA no s'utilitzen tal com s'especifica per a la funció de l'element"
|
|
43
|
+
},
|
|
44
|
+
"core/audits/accessibility/aria-conditional-attr.js | title": {
|
|
45
|
+
"message": "Els atributs ARIA s'utilitzen tal com s'especifica per a la funció de l'element"
|
|
46
|
+
},
|
|
47
|
+
"core/audits/accessibility/aria-deprecated-role.js | description": {
|
|
48
|
+
"message": "És possible que la tecnologia assistencial no pugui processar correctament funcions d'ARIA obsoletes. [Obtén més informació sobre les funcions d'ARIA obsoletes](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)."
|
|
49
|
+
},
|
|
50
|
+
"core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
|
|
51
|
+
"message": "S'han utilitzat funcions d'ARIA obsoletes"
|
|
52
|
+
},
|
|
53
|
+
"core/audits/accessibility/aria-deprecated-role.js | title": {
|
|
54
|
+
"message": "No s'han utilitzat funcions d'ARIA obsoletes"
|
|
55
|
+
},
|
|
38
56
|
"core/audits/accessibility/aria-dialog-name.js | description": {
|
|
39
57
|
"message": "Els elements del quadre de diàleg d'ARIA que no tenen noms accessibles poden impedir que els usuaris de lectors de pantalla puguin discernir la finalitat d'aquests elements. [Obtén informació sobre com pots fer que els elements del quadre de diàleg d'ARIA siguin més accessibles](https://dequeuniversity.com/rules/axe/4.9/aria-dialog-name)."
|
|
40
58
|
},
|
|
@@ -89,6 +107,15 @@
|
|
|
89
107
|
"core/audits/accessibility/aria-progressbar-name.js | title": {
|
|
90
108
|
"message": "Els elements `progressbar` d'ARIA tenen noms accessibles"
|
|
91
109
|
},
|
|
110
|
+
"core/audits/accessibility/aria-prohibited-attr.js | description": {
|
|
111
|
+
"message": "L'ús d'atributs ARIA en funcions en què estan prohibits pot fer que no es comuniqui informació important als usuaris de tecnologies assistencials. [Obtén més informació sobre les funcions d'ARIA prohibides](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)."
|
|
112
|
+
},
|
|
113
|
+
"core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
|
|
114
|
+
"message": "Els elements utilitzen atributs ARIA prohibits"
|
|
115
|
+
},
|
|
116
|
+
"core/audits/accessibility/aria-prohibited-attr.js | title": {
|
|
117
|
+
"message": "Els elements només utilitzen atributs ARIA permesos"
|
|
118
|
+
},
|
|
92
119
|
"core/audits/accessibility/aria-required-attr.js | description": {
|
|
93
120
|
"message": "Algunes funcions d'ARIA tenen atributs obligatoris que descriuen l'estat de l'element als lectors de pantalla. [Obtén més informació sobre les funcions i els atributs obligatoris](https://dequeuniversity.com/rules/axe/4.9/aria-required-attr)."
|
|
94
121
|
},
|
|
@@ -1175,6 +1202,15 @@
|
|
|
1175
1202
|
"core/audits/prioritize-lcp-image.js | title": {
|
|
1176
1203
|
"message": "Precarrega la imatge de renderització de l'element més gran amb contingut"
|
|
1177
1204
|
},
|
|
1205
|
+
"core/audits/redirects-http.js | description": {
|
|
1206
|
+
"message": "Assegura't de redirigir tot el trànsit HTTP cap a HTTPS per activar funcions web segures per a tots els usuaris. [Obtén més informació](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)."
|
|
1207
|
+
},
|
|
1208
|
+
"core/audits/redirects-http.js | failureTitle": {
|
|
1209
|
+
"message": "No redirigeix el trànsit HTTP cap a HTTPS"
|
|
1210
|
+
},
|
|
1211
|
+
"core/audits/redirects-http.js | title": {
|
|
1212
|
+
"message": "Redirigeix el trànsit HTTP cap a HTTPS"
|
|
1213
|
+
},
|
|
1178
1214
|
"core/audits/redirects.js | description": {
|
|
1179
1215
|
"message": "La mètrica Redireccions introdueix retards addicionals abans de poder carregar la pàgina. [Obtén informació sobre com pots evitar les redireccions de pàgina](https://developer.chrome.com/docs/lighthouse/performance/redirects/)."
|
|
1180
1216
|
},
|
|
@@ -1833,7 +1869,7 @@
|
|
|
1833
1869
|
"message": "La navegació s'ha cancel·lat abans que la pàgina es pogués restaurar de la memòria cau endavant/enrere."
|
|
1834
1870
|
},
|
|
1835
1871
|
"core/lib/bf-cache-strings.js | networkExceedsBufferLimit": {
|
|
1836
|
-
"message": "La pàgina s'ha tret de la memòria cau perquè una connexió
|
|
1872
|
+
"message": "La pàgina s'ha tret de la memòria cau perquè una connexió de xarxa activa ha rebut massa dades. Chrome limita la quantitat de dades que pot rebre una pàgina mentre està desada a la memòria cau."
|
|
1837
1873
|
},
|
|
1838
1874
|
"core/lib/bf-cache-strings.js | networkRequestDatapipeDrainedAsBytesConsumer": {
|
|
1839
1875
|
"message": "Actualment, les pàgines que tenen un fetch() o un XHR en trànsit no són aptes per a la memòria cau endavant/enrere."
|
|
@@ -1842,7 +1878,7 @@
|
|
|
1842
1878
|
"message": "La pàgina s'ha tret de la memòria cau endavant/enrere perquè una sol·licitud a la xarxa activa incloïa una redirecció."
|
|
1843
1879
|
},
|
|
1844
1880
|
"core/lib/bf-cache-strings.js | networkRequestTimeout": {
|
|
1845
|
-
"message": "La pàgina s'ha tret de la memòria cau perquè una connexió
|
|
1881
|
+
"message": "La pàgina s'ha tret de la memòria cau perquè una connexió de xarxa ha estat oberta durant massa temps. Chrome limita la quantitat de temps durant el qual una pàgina pot rebre dades mentre està desada a la memòria cau."
|
|
1846
1882
|
},
|
|
1847
1883
|
"core/lib/bf-cache-strings.js | noResponseHead": {
|
|
1848
1884
|
"message": "Les pàgines que no tenen una capçalera de resposta vàlida no poden accedir a la memòria cau endavant/enrere."
|
|
@@ -2432,6 +2468,9 @@
|
|
|
2432
2468
|
"core/lib/lh-error.js | requestContentTimeout": {
|
|
2433
2469
|
"message": "S'ha superat el temps assignat per obtenir el contingut dels recursos"
|
|
2434
2470
|
},
|
|
2471
|
+
"core/lib/lh-error.js | targetCrashed": {
|
|
2472
|
+
"message": "La pestanya del navegador ha fallat de manera inesperada."
|
|
2473
|
+
},
|
|
2435
2474
|
"core/lib/lh-error.js | urlInvalid": {
|
|
2436
2475
|
"message": "Sembla que l'URL que has proporcionat no és vàlid."
|
|
2437
2476
|
},
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"message": "Atributy `[aria-*]` odpovídají příslušným rolím"
|
|
19
19
|
},
|
|
20
20
|
"core/audits/accessibility/aria-allowed-role.js | description": {
|
|
21
|
-
"message": "
|
|
21
|
+
"message": "Many HTML elements can only be assigned certain ARIA roles. Using ARIA roles where they are not allowed can interfere with the accessibility of the web page. [Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)."
|
|
22
22
|
},
|
|
23
23
|
"core/audits/accessibility/aria-allowed-role.js | failureTitle": {
|
|
24
|
-
"message": "
|
|
24
|
+
"message": "Uses ARIA roles on incompatible elements"
|
|
25
25
|
},
|
|
26
26
|
"core/audits/accessibility/aria-allowed-role.js | title": {
|
|
27
|
-
"message": "
|
|
27
|
+
"message": "Uses ARIA roles only on compatible elements"
|
|
28
28
|
},
|
|
29
29
|
"core/audits/accessibility/aria-command-name.js | description": {
|
|
30
30
|
"message": "Když prvek nemá přístupný název, čtečky obrazovek oznamují obecný název a pro jejich uživatele je pak tento prvek v podstatě nepoužitelný. [Jak zajistit, aby příkazové prvky byly přístupnější](https://dequeuniversity.com/rules/axe/4.9/aria-command-name)."
|
|
@@ -35,6 +35,24 @@
|
|
|
35
35
|
"core/audits/accessibility/aria-command-name.js | title": {
|
|
36
36
|
"message": "Prvky `button`, `link` a `menuitem` mají přístupné názvy"
|
|
37
37
|
},
|
|
38
|
+
"core/audits/accessibility/aria-conditional-attr.js | description": {
|
|
39
|
+
"message": "Některé atributy ARIA jsou u prvků povoleny pouze za určitých podmínek. [Další informace o podmíněných atributech ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)."
|
|
40
|
+
},
|
|
41
|
+
"core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
|
|
42
|
+
"message": "Atributy ARIA nejsou použity tak, jak je uvedeno pro roli prvku"
|
|
43
|
+
},
|
|
44
|
+
"core/audits/accessibility/aria-conditional-attr.js | title": {
|
|
45
|
+
"message": "Atributy ARIA jsou použity tak, jak je uvedeno pro roli prvku"
|
|
46
|
+
},
|
|
47
|
+
"core/audits/accessibility/aria-deprecated-role.js | description": {
|
|
48
|
+
"message": "Zastaralé role ARIA nemusí asistenční technologie zpracovat správně. [Další informace o zastaralých rolích ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)."
|
|
49
|
+
},
|
|
50
|
+
"core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
|
|
51
|
+
"message": "Byly použity zastaralé role ARIA"
|
|
52
|
+
},
|
|
53
|
+
"core/audits/accessibility/aria-deprecated-role.js | title": {
|
|
54
|
+
"message": "Zastaralé role ARIA nebyly použity"
|
|
55
|
+
},
|
|
38
56
|
"core/audits/accessibility/aria-dialog-name.js | description": {
|
|
39
57
|
"message": "Dialogové prvky ARIA bez přístupových názvů mohou uživatelům čteček obrazovky znemožňovat rozeznat účel těchto prvků. [Přečtěte si, jak dialogové prvky ARIA zpřístupnit](https://dequeuniversity.com/rules/axe/4.9/aria-dialog-name)."
|
|
40
58
|
},
|
|
@@ -89,6 +107,15 @@
|
|
|
89
107
|
"core/audits/accessibility/aria-progressbar-name.js | title": {
|
|
90
108
|
"message": "Prvky ARIA `progressbar` mají přístupné názvy"
|
|
91
109
|
},
|
|
110
|
+
"core/audits/accessibility/aria-prohibited-attr.js | description": {
|
|
111
|
+
"message": "Pokud jsou atributy ARIA použity v rolích, ve kterých jsou zakázány, nemusejí se uživatelé asistenčních technologií dozvědět některé důležité informace. [Další informace o zakázaných rolích ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)."
|
|
112
|
+
},
|
|
113
|
+
"core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
|
|
114
|
+
"message": "Prvky používají zakázané atributy ARIA"
|
|
115
|
+
},
|
|
116
|
+
"core/audits/accessibility/aria-prohibited-attr.js | title": {
|
|
117
|
+
"message": "Prvky používají pouze povolené atributy ARIA"
|
|
118
|
+
},
|
|
92
119
|
"core/audits/accessibility/aria-required-attr.js | description": {
|
|
93
120
|
"message": "Některé role ARIA mají povinné atributy, které čtečkám obrazovek popisují stav prvku. [Další informace o rolích a povinných atributech](https://dequeuniversity.com/rules/axe/4.9/aria-required-attr)"
|
|
94
121
|
},
|
|
@@ -1175,6 +1202,15 @@
|
|
|
1175
1202
|
"core/audits/prioritize-lcp-image.js | title": {
|
|
1176
1203
|
"message": "Předběžné načtení obrázku s vykreslením největšího obsahu"
|
|
1177
1204
|
},
|
|
1205
|
+
"core/audits/redirects-http.js | description": {
|
|
1206
|
+
"message": "Veškerý provoz HTTP přesměrujte přes HTTPS, aby všichni vaši uživatelé měli k dispozici funkce zabezpečeného webu. [Další informace](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)"
|
|
1207
|
+
},
|
|
1208
|
+
"core/audits/redirects-http.js | failureTitle": {
|
|
1209
|
+
"message": "Nepřesměrovává provoz přes protokol HTTP na HTTPS"
|
|
1210
|
+
},
|
|
1211
|
+
"core/audits/redirects-http.js | title": {
|
|
1212
|
+
"message": "Přesměrovává provoz přes protokol HTTP na HTTPS"
|
|
1213
|
+
},
|
|
1178
1214
|
"core/audits/redirects.js | description": {
|
|
1179
1215
|
"message": "Přesměrování způsobují další prodlevy před načtením stránky. [Jak se vyhnout přesměrování stránek](https://developer.chrome.com/docs/lighthouse/performance/redirects/)"
|
|
1180
1216
|
},
|
|
@@ -1713,7 +1749,7 @@
|
|
|
1713
1749
|
"message": "Stránky, které používají rozhraní Serial API, nemohou využívat mezipaměť pro přechod zpět nebo vpřed."
|
|
1714
1750
|
},
|
|
1715
1751
|
"core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
|
|
1716
|
-
"message": "Stránky, které používají rozhraní
|
|
1752
|
+
"message": "Stránky, které používají rozhraní WebAuthentication API, nemohou využívat mezipaměť pro přechod zpět nebo vpřed."
|
|
1717
1753
|
},
|
|
1718
1754
|
"core/lib/bf-cache-strings.js | contentWebBluetooth": {
|
|
1719
1755
|
"message": "Stránky, které používají rozhraní WebBluetooth API, nemohou využívat mezipaměť pro přechod zpět nebo vpřed."
|
|
@@ -2432,6 +2468,9 @@
|
|
|
2432
2468
|
"core/lib/lh-error.js | requestContentTimeout": {
|
|
2433
2469
|
"message": "Při načítání obsahu zdroje byla překročena přidělená doba"
|
|
2434
2470
|
},
|
|
2471
|
+
"core/lib/lh-error.js | targetCrashed": {
|
|
2472
|
+
"message": "Karta prohlížeče neočekávaně selhala."
|
|
2473
|
+
},
|
|
2435
2474
|
"core/lib/lh-error.js | urlInvalid": {
|
|
2436
2475
|
"message": "Adresa URL, kterou jste poskytli, se zdá být neplatná."
|
|
2437
2476
|
},
|