lighthouse 8.6.0-dev.20211021 → 8.6.0

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.
Files changed (115) hide show
  1. package/dist/report/flow.js +13 -30
  2. package/dist/report/standalone.js +17 -17
  3. package/flow-report/assets/styles.css +30 -51
  4. package/flow-report/src/common.tsx +1 -1
  5. package/flow-report/src/header.tsx +2 -2
  6. package/flow-report/src/help-dialog.tsx +3 -3
  7. package/flow-report/src/i18n/i18n.tsx +13 -50
  8. package/flow-report/src/i18n/ui-strings.js +0 -48
  9. package/flow-report/src/icons.tsx +0 -7
  10. package/flow-report/src/sidebar/sidebar.tsx +6 -8
  11. package/flow-report/src/summary/category.tsx +18 -17
  12. package/flow-report/src/summary/summary.tsx +10 -10
  13. package/flow-report/src/topbar.tsx +5 -9
  14. package/flow-report/src/util.ts +5 -0
  15. package/flow-report/src/wrappers/category-score.tsx +3 -0
  16. package/flow-report/test/common-test.tsx +1 -1
  17. package/flow-report/test/summary/category-test.tsx +5 -9
  18. package/flow-report/test/summary/summary-test.tsx +1 -1
  19. package/flow-report/test/topbar-test.tsx +0 -1
  20. package/flow-report/tsconfig.json +0 -1
  21. package/jest.config.js +0 -1
  22. package/lighthouse-cli/test/smokehouse/lighthouse-runners/cli.js +1 -1
  23. package/lighthouse-core/audits/accessibility/axe-audit.js +1 -7
  24. package/lighthouse-core/audits/redirects-http.js +59 -0
  25. package/lighthouse-core/config/config-helpers.js +0 -1
  26. package/lighthouse-core/config/default-config.js +11 -0
  27. package/lighthouse-core/fraggle-rock/config/config.js +1 -1
  28. package/lighthouse-core/gather/gatherers/accessibility.js +0 -27
  29. package/lighthouse-core/gather/gatherers/http-redirect.js +46 -0
  30. package/lighthouse-core/lib/asset-saver.js +3 -3
  31. package/lighthouse-core/lib/i18n/i18n.js +8 -19
  32. package/lighthouse-core/lib/i18n/locales/en-US.ctc.json +6699 -0
  33. package/lighthouse-core/lib/i18n/locales/en-XL.ctc.json +6672 -0
  34. package/lighthouse-core/util-commonjs.js +37 -25
  35. package/package.json +4 -8
  36. package/readme.md +3 -3
  37. package/report/assets/styles.css +28 -157
  38. package/report/assets/templates.html +47 -2
  39. package/report/clients/psi.js +158 -0
  40. package/report/renderer/category-renderer.js +1 -30
  41. package/report/renderer/components.js +34 -16
  42. package/report/renderer/performance-category-renderer.js +10 -5
  43. package/report/renderer/report-renderer.js +33 -56
  44. package/report/renderer/util.js +37 -25
  45. package/report/test/clients/psi-test.js +143 -0
  46. package/report/test/renderer/category-renderer-test.js +1 -5
  47. package/report/test/renderer/i18n-test.js +7 -0
  48. package/report/test/renderer/performance-category-renderer-test.js +1 -1
  49. package/report/test/renderer/pwa-category-renderer-test.js +2 -2
  50. package/report/test/renderer/report-renderer-axe-test.js +10 -5
  51. package/report/test/renderer/report-renderer-test.js +11 -9
  52. package/report/test-assets/faux-psi-template.html +4 -1
  53. package/report/test-assets/faux-psi.js +16 -39
  54. package/shared/localization/format.js +17 -50
  55. package/shared/localization/locales/ar-XB.json +24 -0
  56. package/shared/localization/locales/ar.json +24 -0
  57. package/shared/localization/locales/bg.json +24 -0
  58. package/shared/localization/locales/ca.json +24 -0
  59. package/shared/localization/locales/cs.json +24 -0
  60. package/shared/localization/locales/da.json +24 -0
  61. package/shared/localization/locales/de.json +24 -0
  62. package/shared/localization/locales/el.json +24 -0
  63. package/shared/localization/locales/en-GB.json +24 -0
  64. package/shared/localization/locales/en-US.ctc.json +6877 -0
  65. package/shared/localization/locales/en-US.json +23 -26
  66. package/shared/localization/locales/en-XA.json +24 -0
  67. package/shared/localization/locales/en-XL.ctc.json +6852 -0
  68. package/shared/localization/locales/en-XL.json +23 -26
  69. package/shared/localization/locales/es-419.json +24 -0
  70. package/shared/localization/locales/es.json +24 -0
  71. package/shared/localization/locales/fi.json +24 -0
  72. package/shared/localization/locales/fil.json +24 -0
  73. package/shared/localization/locales/fr.json +24 -0
  74. package/shared/localization/locales/he.json +24 -0
  75. package/shared/localization/locales/hi.json +24 -0
  76. package/shared/localization/locales/hr.json +24 -0
  77. package/shared/localization/locales/hu.json +24 -0
  78. package/shared/localization/locales/id.json +24 -0
  79. package/shared/localization/locales/it.json +24 -0
  80. package/shared/localization/locales/ja.json +24 -0
  81. package/shared/localization/locales/ko.json +24 -0
  82. package/shared/localization/locales/lt.json +24 -0
  83. package/shared/localization/locales/lv.json +24 -0
  84. package/shared/localization/locales/nl.json +24 -0
  85. package/shared/localization/locales/no.json +24 -0
  86. package/shared/localization/locales/pl.json +24 -0
  87. package/shared/localization/locales/pt-PT.json +24 -0
  88. package/shared/localization/locales/pt.json +24 -0
  89. package/shared/localization/locales/ro.json +24 -0
  90. package/shared/localization/locales/ru.json +24 -0
  91. package/shared/localization/locales/sk.json +24 -0
  92. package/shared/localization/locales/sl.json +24 -0
  93. package/shared/localization/locales/sr-Latn.json +24 -0
  94. package/shared/localization/locales/sr.json +24 -0
  95. package/shared/localization/locales/sv.json +24 -0
  96. package/shared/localization/locales/ta.json +24 -0
  97. package/shared/localization/locales/te.json +24 -0
  98. package/shared/localization/locales/th.json +24 -0
  99. package/shared/localization/locales/tr.json +24 -0
  100. package/shared/localization/locales/uk.json +24 -0
  101. package/shared/localization/locales/vi.json +24 -0
  102. package/shared/localization/locales/zh-HK.json +24 -0
  103. package/shared/localization/locales/zh-TW.json +24 -0
  104. package/shared/localization/locales/zh.json +24 -0
  105. package/shared/localization/locales.js +0 -6
  106. package/shared/test/localization/format-test.js +9 -45
  107. package/shared/test/localization/swap-locale-test.js +12 -0
  108. package/third-party/download-content-shell/download-content-shell.js +2 -2
  109. package/third-party/download-content-shell/utils.js +24 -0
  110. package/tsconfig.json +1 -0
  111. package/types/artifacts.d.ts +3 -1
  112. package/types/enquirer.d.ts +1 -3
  113. package/types/node.d.ts +5 -5
  114. package/flow-report/test/wrappers/category-score-test.tsx +0 -87
  115. package/report/test/clients/bundle-test.js +0 -62
@@ -13,8 +13,6 @@ const {isObjectOfUnknownValues, isObjectOrArrayOfUnknownValues} = require('../ty
13
13
  /** Contains available locales with messages. May be an empty object if bundled. */
14
14
  const LOCALE_MESSAGES = require('./locales.js');
15
15
 
16
- const DEFAULT_LOCALE = 'en-US';
17
-
18
16
  /**
19
17
  * The locale tags for the localized messages available to Lighthouse on disk.
20
18
  * When bundled, these will be inlined by brfs.
@@ -171,7 +169,7 @@ function _preformatValues(messageFormatter, values, lhlMessage) {
171
169
  * @param {LH.Locale} locale
172
170
  * @return {string}
173
171
  */
174
- function formatMessage(message, values = {}, locale) {
172
+ function _formatMessage(message, values = {}, locale) {
175
173
  // When using accented english, force the use of a different locale for number formatting.
176
174
  const localeForMessageFormat = (locale === 'en-XA' || locale === 'en-XL') ? 'de-DE' : locale;
177
175
 
@@ -191,21 +189,19 @@ function formatMessage(message, values = {}, locale) {
191
189
  * @return {string}
192
190
  */
193
191
  function _localizeIcuMessage(icuMessage, locale) {
194
- const localeMessages = _getLocaleMessages(locale);
192
+ const localeMessages = LOCALE_MESSAGES[locale];
193
+ if (!localeMessages) throw new Error(`Unsupported locale '${locale}'`);
195
194
  const localeMessage = localeMessages[icuMessage.i18nId];
196
195
 
197
- // Use the DEFAULT_LOCALE fallback (usually the original english message) if we couldn't
198
- // find a message in the specified locale. Possible reasons:
199
- // - string drift between Lighthouse versions
200
- // - in a bundle stripped of locale files but running in the DEFAULT_LOCALE
201
- // - new strings haven't been updated yet in a local dev run
202
- // Better to have an english message than no message at all; in some cases it
203
- // won't even matter.
196
+ // Fall back to the default (usually the original english message) if we couldn't find a
197
+ // message in the specified locale. This could be because of string drift between
198
+ // Lighthouse versions or because new strings haven't been updated yet. Better to have
199
+ // an english message than no message at all; in some cases it won't even matter.
204
200
  if (!localeMessage) {
205
201
  return icuMessage.formattedDefault;
206
202
  }
207
203
 
208
- return formatMessage(localeMessage.message, icuMessage.values, locale);
204
+ return _formatMessage(localeMessage.message, icuMessage.values, locale);
209
205
  }
210
206
 
211
207
  /**
@@ -213,10 +209,9 @@ function _localizeIcuMessage(icuMessage, locale) {
213
209
  * @return {Record<string, string>}
214
210
  */
215
211
  function getRendererFormattedStrings(locale) {
216
- const localeMessages = _getLocaleMessages(locale);
212
+ const localeMessages = LOCALE_MESSAGES[locale];
213
+ if (!localeMessages) throw new Error(`Unsupported locale '${locale}'`);
217
214
 
218
- // If `localeMessages` is empty in the bundled and DEFAULT_LOCALE case, this
219
- // will be empty and the report will fall back to the util UIStrings for these.
220
215
  const icuMessageIds = Object.keys(localeMessages).filter(f => f.startsWith('report/'));
221
216
  /** @type {Record<string, string>} */
222
217
  const strings = {};
@@ -354,38 +349,12 @@ function replaceIcuMessages(inputObject, locale) {
354
349
  return icuMessagePaths;
355
350
  }
356
351
 
357
- /**
358
- * Returns the locale messages for the given `locale`, if they exist.
359
- * Throws if an unsupported locale.
360
- *
361
- * NOTE: If DEFAULT_LOCALE is requested and this is inside a bundle with locale
362
- * messages stripped, an empty object will be returned. Default fallbacks will need to handle that case.
363
- * @param {LH.Locale} locale
364
- * @return {import('./locales').LhlMessages}
365
- */
366
- function _getLocaleMessages(locale) {
367
- const localeMessages = LOCALE_MESSAGES[locale];
368
- if (!localeMessages) {
369
- if (locale === DEFAULT_LOCALE) {
370
- // If the default locale isn't in LOCALE_MESSAGES, this is likely executing
371
- // in a bundle. Let the caller use the fallbacks available.
372
- return {};
373
- }
374
- throw new Error(`Unsupported locale '${locale}'`);
375
- }
376
-
377
- return localeMessages;
378
- }
379
-
380
352
  /**
381
353
  * Returns whether the `requestedLocale` can be used.
382
354
  * @param {LH.Locale} requestedLocale
383
355
  * @return {boolean}
384
356
  */
385
357
  function hasLocale(requestedLocale) {
386
- // The default locale is always supported through `IcuMessage.formattedDefault`.
387
- if (requestedLocale === DEFAULT_LOCALE) return true;
388
-
389
358
  const hasIntlSupport = Intl.NumberFormat.supportedLocalesOf([requestedLocale]).length > 0;
390
359
  const hasMessages = Boolean(LOCALE_MESSAGES[requestedLocale]);
391
360
 
@@ -393,9 +362,8 @@ function hasLocale(requestedLocale) {
393
362
  }
394
363
 
395
364
  /**
396
- * Returns a list of canonical locales, as defined by the existent message files.
397
- * In practice, each of these may have aliases in the full list returned by
398
- * `getAvailableLocales()`.
365
+ * Returns a list of canonical locales (each of which may have aliases, but those would
366
+ * only show in getAvailableLocales)
399
367
  * TODO: create a CanonicalLocale type
400
368
  * @return {Array<string>}
401
369
  */
@@ -407,13 +375,13 @@ function getCanonicalLocales() {
407
375
  * Returns a list of available locales.
408
376
  * - if full build, this includes all canonical locales, aliases, and any locale added
409
377
  * via `registerLocaleData`.
410
- * - if bundled and locale messages have been stripped (locales.js shimmed), this includes
411
- * only DEFAULT_LOCALE and any locales from `registerLocaleData`.
378
+ * - if bundled and locale messages have been stripped (locales.js shimmed), this includes no
379
+ * locales (perhaps available in a separate bundle), and perhaps any locales
380
+ * from `registerLocaleData`.
412
381
  * @return {Array<LH.Locale>}
413
382
  */
414
383
  function getAvailableLocales() {
415
- const localesWithMessages = new Set([...Object.keys(LOCALE_MESSAGES), DEFAULT_LOCALE]);
416
- return /** @type {Array<LH.Locale>} */ ([...localesWithMessages].sort());
384
+ return /** @type {Array<LH.Locale>} */ (Object.keys(LOCALE_MESSAGES).sort());
417
385
  }
418
386
 
419
387
  /**
@@ -439,7 +407,6 @@ function getIcuMessageIdParts(i18nMessageId) {
439
407
  }
440
408
 
441
409
  module.exports = {
442
- DEFAULT_LOCALE,
443
410
  _formatPathAsString,
444
411
  collectAllCustomElementsFromICU,
445
412
  isIcuMessage,
@@ -448,7 +415,7 @@ module.exports = {
448
415
  replaceIcuMessages,
449
416
  hasLocale,
450
417
  registerLocaleData,
451
- formatMessage,
418
+ _formatMessage,
452
419
  getIcuMessageIdParts,
453
420
  getAvailableLocales,
454
421
  getCanonicalLocales,
@@ -1277,6 +1277,15 @@
1277
1277
  "lighthouse-core/audits/preload-lcp-image.js | title": {
1278
1278
  "message": "‏‮Preload‬‏ ‏‮Largest‬‏ ‏‮Contentful‬‏ ‏‮Paint‬‏ ‏‮image‬‏"
1279
1279
  },
1280
+ "lighthouse-core/audits/redirects-http.js | description": {
1281
+ "message": "‏‮If‬‏ ‏‮you‬‏'‏‮ve‬‏ ‏‮already‬‏ ‏‮set‬‏ ‏‮up‬‏ ‏‮HTTPS‬‏, ‏‮make‬‏ ‏‮sure‬‏ ‏‮that‬‏ ‏‮you‬‏ ‏‮redirect‬‏ ‏‮all‬‏ ‏‮HTTP‬‏ ‏‮traffic‬‏ ‏‮to‬‏ ‏‮HTTPS‬‏ ‏‮in‬‏ ‏‮order‬‏ ‏‮to‬‏ ‏‮enable‬‏ ‏‮secure‬‏ ‏‮web‬‏ ‏‮features‬‏ ‏‮for‬‏ ‏‮all‬‏ ‏‮your‬‏ ‏‮users‬‏. [‏‮Learn‬‏ ‏‮more‬‏](https://web.dev/redirects-http/)."
1282
+ },
1283
+ "lighthouse-core/audits/redirects-http.js | failureTitle": {
1284
+ "message": "‏‮Does‬‏ ‏‮not‬‏ ‏‮redirect‬‏ ‏‮HTTP‬‏ ‏‮traffic‬‏ ‏‮to‬‏ ‏‮HTTPS‬‏"
1285
+ },
1286
+ "lighthouse-core/audits/redirects-http.js | title": {
1287
+ "message": "‏‮Redirects‬‏ ‏‮HTTP‬‏ ‏‮traffic‬‏ ‏‮to‬‏ ‏‮HTTPS‬‏"
1288
+ },
1280
1289
  "lighthouse-core/audits/redirects.js | description": {
1281
1290
  "message": "‏‮Redirects‬‏ ‏‮introduce‬‏ ‏‮additional‬‏ ‏‮delays‬‏ ‏‮before‬‏ ‏‮the‬‏ ‏‮page‬‏ ‏‮can‬‏ ‏‮be‬‏ ‏‮loaded‬‏. [‏‮Learn‬‏ ‏‮more‬‏](https://web.dev/redirects/)."
1282
1291
  },
@@ -2438,15 +2447,30 @@
2438
2447
  "report/renderer/util.js | runtimeSettingsCPUThrottling": {
2439
2448
  "message": "‏‮CPU‬‏ ‏‮throttling‬‏"
2440
2449
  },
2450
+ "report/renderer/util.js | runtimeSettingsChannel": {
2451
+ "message": "‏‮Channel‬‏"
2452
+ },
2441
2453
  "report/renderer/util.js | runtimeSettingsDevice": {
2442
2454
  "message": "‏‮Device‬‏"
2443
2455
  },
2456
+ "report/renderer/util.js | runtimeSettingsFetchTime": {
2457
+ "message": "‏‮Fetch‬‏ ‏‮Time‬‏"
2458
+ },
2444
2459
  "report/renderer/util.js | runtimeSettingsNetworkThrottling": {
2445
2460
  "message": "‏‮Network‬‏ ‏‮throttling‬‏"
2446
2461
  },
2462
+ "report/renderer/util.js | runtimeSettingsTitle": {
2463
+ "message": "‏‮Runtime‬‏ ‏‮Settings‬‏"
2464
+ },
2465
+ "report/renderer/util.js | runtimeSettingsUA": {
2466
+ "message": "‏‮User‬‏ ‏‮agent‬‏ (‏‮host‬‏)"
2467
+ },
2447
2468
  "report/renderer/util.js | runtimeSettingsUANetwork": {
2448
2469
  "message": "‏‮User‬‏ ‏‮agent‬‏ (‏‮network‬‏)"
2449
2470
  },
2471
+ "report/renderer/util.js | runtimeSettingsUrl": {
2472
+ "message": "‏‮URL‬‏"
2473
+ },
2450
2474
  "report/renderer/util.js | runtimeUnknown": {
2451
2475
  "message": "‏‮Unknown‬‏"
2452
2476
  },
@@ -1277,6 +1277,15 @@
1277
1277
  "lighthouse-core/audits/preload-lcp-image.js | title": {
1278
1278
  "message": "التحميل المُسبَق لصورة المقياس \"سرعة عرض أكبر جزء من المحتوى على الصفحة\""
1279
1279
  },
1280
+ "lighthouse-core/audits/redirects-http.js | description": {
1281
+ "message": "في حال أعددت HTTPS مسبقًا، تأكّد من إعادة توجيه جميع زيارات HTTP إلى HTTPS من أجل تفعيل ميزات الويب الآمنة لجميع المستخدمين. [مزيد من المعلومات](https://web.dev/redirects-http/)"
1282
+ },
1283
+ "lighthouse-core/audits/redirects-http.js | failureTitle": {
1284
+ "message": "عدم إعادة توجيه زيارات HTTP إلى HTTPS"
1285
+ },
1286
+ "lighthouse-core/audits/redirects-http.js | title": {
1287
+ "message": "إعادة توجيه زيارات HTTP إلى HTTPS"
1288
+ },
1280
1289
  "lighthouse-core/audits/redirects.js | description": {
1281
1290
  "message": "تؤدي عمليات إعادة التوجيه إلى حدوث تأخيرات إضافية قبل أن يتم تحميل الصفحة. [مزيد من المعلومات](https://web.dev/redirects/)"
1282
1291
  },
@@ -2438,15 +2447,30 @@
2438
2447
  "report/renderer/util.js | runtimeSettingsCPUThrottling": {
2439
2448
  "message": "تقييد وحدة المعالجة المركزية (CPU)"
2440
2449
  },
2450
+ "report/renderer/util.js | runtimeSettingsChannel": {
2451
+ "message": "قناة"
2452
+ },
2441
2453
  "report/renderer/util.js | runtimeSettingsDevice": {
2442
2454
  "message": "جهاز"
2443
2455
  },
2456
+ "report/renderer/util.js | runtimeSettingsFetchTime": {
2457
+ "message": "وقت الإجراء"
2458
+ },
2444
2459
  "report/renderer/util.js | runtimeSettingsNetworkThrottling": {
2445
2460
  "message": "ضبط الحد الأقصى المسموح لعرض نطاق الشبكة"
2446
2461
  },
2462
+ "report/renderer/util.js | runtimeSettingsTitle": {
2463
+ "message": "إعدادات وقت التشغيل"
2464
+ },
2465
+ "report/renderer/util.js | runtimeSettingsUA": {
2466
+ "message": "وكيل المستخدم (مضيف)"
2467
+ },
2447
2468
  "report/renderer/util.js | runtimeSettingsUANetwork": {
2448
2469
  "message": "وكيل المستخدم (شبكة)"
2449
2470
  },
2471
+ "report/renderer/util.js | runtimeSettingsUrl": {
2472
+ "message": "عنوان URL"
2473
+ },
2450
2474
  "report/renderer/util.js | runtimeUnknown": {
2451
2475
  "message": "غير معروف"
2452
2476
  },
@@ -1277,6 +1277,15 @@
1277
1277
  "lighthouse-core/audits/preload-lcp-image.js | title": {
1278
1278
  "message": "Предварително зареждане на изображението, рендерирано при изобразяване на най-голямото съдържание (LPC)"
1279
1279
  },
1280
+ "lighthouse-core/audits/redirects-http.js | description": {
1281
+ "message": "Ако вече сте настроили HTTPS, целият HTTP трафик трябва да се пренасочва към HTTPS, така че функциите за сигурност в мрежата да са активирани за всичките ви потребители. [Научете повече](https://web.dev/redirects-http/)."
1282
+ },
1283
+ "lighthouse-core/audits/redirects-http.js | failureTitle": {
1284
+ "message": "HTTP трафикът не се пренасочва към HTTPS"
1285
+ },
1286
+ "lighthouse-core/audits/redirects-http.js | title": {
1287
+ "message": "HTTP трафикът се пренасочва към HTTPS"
1288
+ },
1280
1289
  "lighthouse-core/audits/redirects.js | description": {
1281
1290
  "message": "Пренасочванията водят до допълнително забавяне на зареждането на страницата. [Научете повече](https://web.dev/redirects/)."
1282
1291
  },
@@ -2438,15 +2447,30 @@
2438
2447
  "report/renderer/util.js | runtimeSettingsCPUThrottling": {
2439
2448
  "message": "Ограничаване на процесора"
2440
2449
  },
2450
+ "report/renderer/util.js | runtimeSettingsChannel": {
2451
+ "message": "Канал"
2452
+ },
2441
2453
  "report/renderer/util.js | runtimeSettingsDevice": {
2442
2454
  "message": "Устройство"
2443
2455
  },
2456
+ "report/renderer/util.js | runtimeSettingsFetchTime": {
2457
+ "message": "Час на извличането"
2458
+ },
2444
2459
  "report/renderer/util.js | runtimeSettingsNetworkThrottling": {
2445
2460
  "message": "Ограничаване на мрежата"
2446
2461
  },
2462
+ "report/renderer/util.js | runtimeSettingsTitle": {
2463
+ "message": "Настройки за времето на изпълнение"
2464
+ },
2465
+ "report/renderer/util.js | runtimeSettingsUA": {
2466
+ "message": "Потребителски агент (хост)"
2467
+ },
2447
2468
  "report/renderer/util.js | runtimeSettingsUANetwork": {
2448
2469
  "message": "Потребителски агент (мрежа)"
2449
2470
  },
2471
+ "report/renderer/util.js | runtimeSettingsUrl": {
2472
+ "message": "URL адрес"
2473
+ },
2450
2474
  "report/renderer/util.js | runtimeUnknown": {
2451
2475
  "message": "Неизвестно"
2452
2476
  },
@@ -1277,6 +1277,15 @@
1277
1277
  "lighthouse-core/audits/preload-lcp-image.js | title": {
1278
1278
  "message": "Carrega prèviament la imatge de renderització de l'element més gran amb contingut"
1279
1279
  },
1280
+ "lighthouse-core/audits/redirects-http.js | description": {
1281
+ "message": "Si ja has configurat el format HTTPS, 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://web.dev/redirects-http/)."
1282
+ },
1283
+ "lighthouse-core/audits/redirects-http.js | failureTitle": {
1284
+ "message": "No redirigeix el trànsit HTTP cap a HTTPS"
1285
+ },
1286
+ "lighthouse-core/audits/redirects-http.js | title": {
1287
+ "message": "Redirigeix el trànsit HTTP cap a HTTPS"
1288
+ },
1280
1289
  "lighthouse-core/audits/redirects.js | description": {
1281
1290
  "message": "La mètrica Redireccions introdueix retards addicionals abans de poder carregar la pàgina. [Obtén més informació](https://web.dev/redirects/)."
1282
1291
  },
@@ -2438,15 +2447,30 @@
2438
2447
  "report/renderer/util.js | runtimeSettingsCPUThrottling": {
2439
2448
  "message": "Limitació de CPU"
2440
2449
  },
2450
+ "report/renderer/util.js | runtimeSettingsChannel": {
2451
+ "message": "Canal"
2452
+ },
2441
2453
  "report/renderer/util.js | runtimeSettingsDevice": {
2442
2454
  "message": "Dispositiu"
2443
2455
  },
2456
+ "report/renderer/util.js | runtimeSettingsFetchTime": {
2457
+ "message": "Data i hora d'obtenció"
2458
+ },
2444
2459
  "report/renderer/util.js | runtimeSettingsNetworkThrottling": {
2445
2460
  "message": "Limitació de xarxa"
2446
2461
  },
2462
+ "report/renderer/util.js | runtimeSettingsTitle": {
2463
+ "message": "Configuració del temps d'execució"
2464
+ },
2465
+ "report/renderer/util.js | runtimeSettingsUA": {
2466
+ "message": "Agent d'usuari (amfitrió)"
2467
+ },
2447
2468
  "report/renderer/util.js | runtimeSettingsUANetwork": {
2448
2469
  "message": "Agent d'usuari (xarxa)"
2449
2470
  },
2471
+ "report/renderer/util.js | runtimeSettingsUrl": {
2472
+ "message": "URL"
2473
+ },
2450
2474
  "report/renderer/util.js | runtimeUnknown": {
2451
2475
  "message": "Desconegut"
2452
2476
  },
@@ -1277,6 +1277,15 @@
1277
1277
  "lighthouse-core/audits/preload-lcp-image.js | title": {
1278
1278
  "message": "Předběžné načtení obrázku s vykreslením největšího obsahu"
1279
1279
  },
1280
+ "lighthouse-core/audits/redirects-http.js | description": {
1281
+ "message": "Pokud jste protokol HTTPS už nastavili, nezapomeňte veškerý provoz přes protokol HTTP přesměrovat na HTTPS, aby všichni vaši uživatelé měli k dispozici funkce zabezpečeného webu. [Další informace](https://web.dev/redirects-http/)"
1282
+ },
1283
+ "lighthouse-core/audits/redirects-http.js | failureTitle": {
1284
+ "message": "Nepřesměrovává provoz přes protokol HTTP na HTTPS"
1285
+ },
1286
+ "lighthouse-core/audits/redirects-http.js | title": {
1287
+ "message": "Přesměrovává provoz přes protokol HTTP na HTTPS"
1288
+ },
1280
1289
  "lighthouse-core/audits/redirects.js | description": {
1281
1290
  "message": "Přesměrování způsobují další prodlevy před načtením stránky. [Další informace](https://web.dev/redirects/)"
1282
1291
  },
@@ -2438,15 +2447,30 @@
2438
2447
  "report/renderer/util.js | runtimeSettingsCPUThrottling": {
2439
2448
  "message": "Omezení procesoru"
2440
2449
  },
2450
+ "report/renderer/util.js | runtimeSettingsChannel": {
2451
+ "message": "Kanál"
2452
+ },
2441
2453
  "report/renderer/util.js | runtimeSettingsDevice": {
2442
2454
  "message": "Zařízení"
2443
2455
  },
2456
+ "report/renderer/util.js | runtimeSettingsFetchTime": {
2457
+ "message": "Čas načtení"
2458
+ },
2444
2459
  "report/renderer/util.js | runtimeSettingsNetworkThrottling": {
2445
2460
  "message": "Omezení sítě"
2446
2461
  },
2462
+ "report/renderer/util.js | runtimeSettingsTitle": {
2463
+ "message": "Nastavení za běhu"
2464
+ },
2465
+ "report/renderer/util.js | runtimeSettingsUA": {
2466
+ "message": "User agent (hostitel)"
2467
+ },
2447
2468
  "report/renderer/util.js | runtimeSettingsUANetwork": {
2448
2469
  "message": "User agent (síť)"
2449
2470
  },
2471
+ "report/renderer/util.js | runtimeSettingsUrl": {
2472
+ "message": "URL"
2473
+ },
2450
2474
  "report/renderer/util.js | runtimeUnknown": {
2451
2475
  "message": "Není známo"
2452
2476
  },
@@ -1277,6 +1277,15 @@
1277
1277
  "lighthouse-core/audits/preload-lcp-image.js | title": {
1278
1278
  "message": "Forudindlæs billedet med størst udfyldning af indhold"
1279
1279
  },
1280
+ "lighthouse-core/audits/redirects-http.js | description": {
1281
+ "message": "Hvis du allerede har konfigureret HTTPS, skal du sørge for at omdirigere al HTTP-trafik, så alle dine brugere får sikre webfunktioner. [Få flere oplysninger](https://web.dev/redirects-http/)."
1282
+ },
1283
+ "lighthouse-core/audits/redirects-http.js | failureTitle": {
1284
+ "message": "Omdirigerer ikke HTTP-trafik til HTTPS"
1285
+ },
1286
+ "lighthouse-core/audits/redirects-http.js | title": {
1287
+ "message": "Omdirigerer HTTP-trafik til HTTPS"
1288
+ },
1280
1289
  "lighthouse-core/audits/redirects.js | description": {
1281
1290
  "message": "Omdirigeringer medfører yderligere forsinkelser, inden siden kan indlæses. [Få flere oplysninger](https://web.dev/redirects/)."
1282
1291
  },
@@ -2438,15 +2447,30 @@
2438
2447
  "report/renderer/util.js | runtimeSettingsCPUThrottling": {
2439
2448
  "message": "CPU-begrænsning"
2440
2449
  },
2450
+ "report/renderer/util.js | runtimeSettingsChannel": {
2451
+ "message": "Kanal"
2452
+ },
2441
2453
  "report/renderer/util.js | runtimeSettingsDevice": {
2442
2454
  "message": "Enhed"
2443
2455
  },
2456
+ "report/renderer/util.js | runtimeSettingsFetchTime": {
2457
+ "message": "Tidspunkt for hentning"
2458
+ },
2444
2459
  "report/renderer/util.js | runtimeSettingsNetworkThrottling": {
2445
2460
  "message": "Netværksbegrænsning"
2446
2461
  },
2462
+ "report/renderer/util.js | runtimeSettingsTitle": {
2463
+ "message": "Indstillinger for kørselstid"
2464
+ },
2465
+ "report/renderer/util.js | runtimeSettingsUA": {
2466
+ "message": "Brugeragent (host)"
2467
+ },
2447
2468
  "report/renderer/util.js | runtimeSettingsUANetwork": {
2448
2469
  "message": "Brugeragent (netværk)"
2449
2470
  },
2471
+ "report/renderer/util.js | runtimeSettingsUrl": {
2472
+ "message": "Webadresse"
2473
+ },
2450
2474
  "report/renderer/util.js | runtimeUnknown": {
2451
2475
  "message": "Ukendt"
2452
2476
  },
@@ -1277,6 +1277,15 @@
1277
1277
  "lighthouse-core/audits/preload-lcp-image.js | title": {
1278
1278
  "message": "Largest Contentful Paint-Bild vorab laden"
1279
1279
  },
1280
+ "lighthouse-core/audits/redirects-http.js | description": {
1281
+ "message": "Wenn Sie HTTPS bereits eingerichtet haben, sollten Sie den gesamten HTTP-Traffic auf HTTPS weiterleiten, damit für alle Ihre Nutzer sichere Webfunktionen aktiviert sind. [Weitere Informationen.](https://web.dev/redirects-http/)"
1282
+ },
1283
+ "lighthouse-core/audits/redirects-http.js | failureTitle": {
1284
+ "message": "HTTP-Traffic wird nicht auf HTTPS weitergeleitet"
1285
+ },
1286
+ "lighthouse-core/audits/redirects-http.js | title": {
1287
+ "message": "HTTP-Traffic wird auf HTTPS weitergeleitet"
1288
+ },
1280
1289
  "lighthouse-core/audits/redirects.js | description": {
1281
1290
  "message": "Weiterleitungen führen zu zusätzlichen Verzögerungen, bevor die Seite geladen werden kann. [Weitere Informationen.](https://web.dev/redirects/)"
1282
1291
  },
@@ -2438,15 +2447,30 @@
2438
2447
  "report/renderer/util.js | runtimeSettingsCPUThrottling": {
2439
2448
  "message": "CPU-Drosselung"
2440
2449
  },
2450
+ "report/renderer/util.js | runtimeSettingsChannel": {
2451
+ "message": "Kanal"
2452
+ },
2441
2453
  "report/renderer/util.js | runtimeSettingsDevice": {
2442
2454
  "message": "Gerät"
2443
2455
  },
2456
+ "report/renderer/util.js | runtimeSettingsFetchTime": {
2457
+ "message": "Abrufzeit"
2458
+ },
2444
2459
  "report/renderer/util.js | runtimeSettingsNetworkThrottling": {
2445
2460
  "message": "Netzwerkdrosselung"
2446
2461
  },
2462
+ "report/renderer/util.js | runtimeSettingsTitle": {
2463
+ "message": "Laufzeiteinstellungen"
2464
+ },
2465
+ "report/renderer/util.js | runtimeSettingsUA": {
2466
+ "message": "User-Agent (Host)"
2467
+ },
2447
2468
  "report/renderer/util.js | runtimeSettingsUANetwork": {
2448
2469
  "message": "User-Agent (Netzwerk)"
2449
2470
  },
2471
+ "report/renderer/util.js | runtimeSettingsUrl": {
2472
+ "message": "URL"
2473
+ },
2450
2474
  "report/renderer/util.js | runtimeUnknown": {
2451
2475
  "message": "Unbekannt"
2452
2476
  },
@@ -1277,6 +1277,15 @@
1277
1277
  "lighthouse-core/audits/preload-lcp-image.js | title": {
1278
1278
  "message": "Προφόρτωση εικόνας Μεγαλύτερης σχεδίασης με περιεχόμενο"
1279
1279
  },
1280
+ "lighthouse-core/audits/redirects-http.js | description": {
1281
+ "message": "Αν έχετε ήδη ρυθμίσει το HTTPS, βεβαιωθείτε ότι ανακατευθύνετε όλη την επισκεψιμότητα HTTP σε HTTPS, προκειμένου να ενεργοποιήσετε ασφαλείς λειτουργίες ιστού για όλους τους χρήστες σας. [Μάθετε περισσότερα](https://web.dev/redirects-http/)."
1282
+ },
1283
+ "lighthouse-core/audits/redirects-http.js | failureTitle": {
1284
+ "message": "Δεν ανακατευθύνσει την επισκεψιμότητα HTTP σε HTTPS"
1285
+ },
1286
+ "lighthouse-core/audits/redirects-http.js | title": {
1287
+ "message": "Ανακατευθύνει την επισκεψιμότητα HTTP σε HTTPS"
1288
+ },
1280
1289
  "lighthouse-core/audits/redirects.js | description": {
1281
1290
  "message": "Οι ανακατευθύνσεις προκαλούν πρόσθετες καθυστερήσεις στη φόρτωση της σελίδας. [Μάθετε περισσότερα](https://web.dev/redirects/)."
1282
1291
  },
@@ -2438,15 +2447,30 @@
2438
2447
  "report/renderer/util.js | runtimeSettingsCPUThrottling": {
2439
2448
  "message": "Περιορισμός CPU"
2440
2449
  },
2450
+ "report/renderer/util.js | runtimeSettingsChannel": {
2451
+ "message": "Κανάλι"
2452
+ },
2441
2453
  "report/renderer/util.js | runtimeSettingsDevice": {
2442
2454
  "message": "Συσκευή"
2443
2455
  },
2456
+ "report/renderer/util.js | runtimeSettingsFetchTime": {
2457
+ "message": "Ώρα ανάκτησης"
2458
+ },
2444
2459
  "report/renderer/util.js | runtimeSettingsNetworkThrottling": {
2445
2460
  "message": "Περιορισμός δικτύου"
2446
2461
  },
2462
+ "report/renderer/util.js | runtimeSettingsTitle": {
2463
+ "message": "Ρυθμίσεις χρόνου εκτέλεσης (runtime)"
2464
+ },
2465
+ "report/renderer/util.js | runtimeSettingsUA": {
2466
+ "message": "Παράγοντας χρήστη (κεντρικός υπολογιστής)"
2467
+ },
2447
2468
  "report/renderer/util.js | runtimeSettingsUANetwork": {
2448
2469
  "message": "Παράγοντας χρήστη (δίκτυο)"
2449
2470
  },
2471
+ "report/renderer/util.js | runtimeSettingsUrl": {
2472
+ "message": "URL"
2473
+ },
2450
2474
  "report/renderer/util.js | runtimeUnknown": {
2451
2475
  "message": "Άγνωστη"
2452
2476
  },
@@ -1277,6 +1277,15 @@
1277
1277
  "lighthouse-core/audits/preload-lcp-image.js | title": {
1278
1278
  "message": "Preload largest contentful paint image"
1279
1279
  },
1280
+ "lighthouse-core/audits/redirects-http.js | description": {
1281
+ "message": "If you've already set up HTTPS, make sure that you redirect all HTTP traffic to HTTPS in order to enable secure web features for all your users. [Learn more](https://web.dev/redirects-http/)."
1282
+ },
1283
+ "lighthouse-core/audits/redirects-http.js | failureTitle": {
1284
+ "message": "Does not redirect HTTP traffic to HTTPS"
1285
+ },
1286
+ "lighthouse-core/audits/redirects-http.js | title": {
1287
+ "message": "Redirects HTTP traffic to HTTPS"
1288
+ },
1280
1289
  "lighthouse-core/audits/redirects.js | description": {
1281
1290
  "message": "Redirects introduce additional delays before the page can be loaded. [Learn more](https://web.dev/redirects/)."
1282
1291
  },
@@ -2438,15 +2447,30 @@
2438
2447
  "report/renderer/util.js | runtimeSettingsCPUThrottling": {
2439
2448
  "message": "CPU throttling"
2440
2449
  },
2450
+ "report/renderer/util.js | runtimeSettingsChannel": {
2451
+ "message": "Channel"
2452
+ },
2441
2453
  "report/renderer/util.js | runtimeSettingsDevice": {
2442
2454
  "message": "Device"
2443
2455
  },
2456
+ "report/renderer/util.js | runtimeSettingsFetchTime": {
2457
+ "message": "Fetch time"
2458
+ },
2444
2459
  "report/renderer/util.js | runtimeSettingsNetworkThrottling": {
2445
2460
  "message": "Network throttling"
2446
2461
  },
2462
+ "report/renderer/util.js | runtimeSettingsTitle": {
2463
+ "message": "Runtime settings"
2464
+ },
2465
+ "report/renderer/util.js | runtimeSettingsUA": {
2466
+ "message": "User agent (host)"
2467
+ },
2447
2468
  "report/renderer/util.js | runtimeSettingsUANetwork": {
2448
2469
  "message": "User agent (network)"
2449
2470
  },
2471
+ "report/renderer/util.js | runtimeSettingsUrl": {
2472
+ "message": "URL"
2473
+ },
2450
2474
  "report/renderer/util.js | runtimeUnknown": {
2451
2475
  "message": "Unknown"
2452
2476
  },