lighthouse 12.3.0-dev.20250225 → 12.4.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 (47) hide show
  1. package/package.json +9 -8
  2. package/shared/localization/locales/ar-XB.json +48 -0
  3. package/shared/localization/locales/ar.json +50 -2
  4. package/shared/localization/locales/bg.json +48 -0
  5. package/shared/localization/locales/ca.json +48 -0
  6. package/shared/localization/locales/cs.json +48 -0
  7. package/shared/localization/locales/da.json +48 -0
  8. package/shared/localization/locales/de.json +49 -1
  9. package/shared/localization/locales/el.json +48 -0
  10. package/shared/localization/locales/en-GB.json +48 -0
  11. package/shared/localization/locales/en-XA.json +48 -0
  12. package/shared/localization/locales/es-419.json +48 -0
  13. package/shared/localization/locales/es.json +48 -0
  14. package/shared/localization/locales/fi.json +48 -0
  15. package/shared/localization/locales/fil.json +49 -1
  16. package/shared/localization/locales/fr.json +48 -0
  17. package/shared/localization/locales/he.json +56 -8
  18. package/shared/localization/locales/hi.json +48 -0
  19. package/shared/localization/locales/hr.json +49 -1
  20. package/shared/localization/locales/hu.json +48 -0
  21. package/shared/localization/locales/id.json +48 -0
  22. package/shared/localization/locales/it.json +59 -11
  23. package/shared/localization/locales/ja.json +49 -1
  24. package/shared/localization/locales/ko.json +49 -1
  25. package/shared/localization/locales/lt.json +49 -1
  26. package/shared/localization/locales/lv.json +48 -0
  27. package/shared/localization/locales/nl.json +48 -0
  28. package/shared/localization/locales/no.json +49 -1
  29. package/shared/localization/locales/pl.json +48 -0
  30. package/shared/localization/locales/pt-PT.json +48 -0
  31. package/shared/localization/locales/pt.json +48 -0
  32. package/shared/localization/locales/ro.json +48 -0
  33. package/shared/localization/locales/ru.json +48 -0
  34. package/shared/localization/locales/sk.json +48 -0
  35. package/shared/localization/locales/sl.json +48 -0
  36. package/shared/localization/locales/sr-Latn.json +48 -0
  37. package/shared/localization/locales/sr.json +48 -0
  38. package/shared/localization/locales/sv.json +48 -0
  39. package/shared/localization/locales/ta.json +48 -0
  40. package/shared/localization/locales/te.json +48 -0
  41. package/shared/localization/locales/th.json +50 -2
  42. package/shared/localization/locales/tr.json +48 -0
  43. package/shared/localization/locales/uk.json +48 -0
  44. package/shared/localization/locales/vi.json +48 -0
  45. package/shared/localization/locales/zh-HK.json +49 -1
  46. package/shared/localization/locales/zh-TW.json +48 -0
  47. package/shared/localization/locales/zh.json +48 -0
@@ -977,6 +977,36 @@
977
977
  "core/audits/font-display.js | undeclaredFontOriginWarning": {
978
978
  "message": "{fontCountForOrigin,plural, =1{Lighthouse was unable to automatically check the `font-display` value for the origin {fontOrigin}.}other{Lighthouse was unable to automatically check the `font-display` values for the origin {fontOrigin}.}}"
979
979
  },
980
+ "core/audits/has-hsts.js | columnDirective": {
981
+ "message": "Directive"
982
+ },
983
+ "core/audits/has-hsts.js | columnSeverity": {
984
+ "message": "Severity"
985
+ },
986
+ "core/audits/has-hsts.js | description": {
987
+ "message": "Deployment of the HSTS header significantly reduces the risk of downgrading HTTP connections and eavesdropping attacks. A rollout in stages, starting with a low max-age is recommended. [Learn more about using a strong HSTS policy.](https://developer.chrome.com/docs/lighthouse/best-practices/has-hsts)"
988
+ },
989
+ "core/audits/has-hsts.js | invalidSyntax": {
990
+ "message": "Invalid syntax"
991
+ },
992
+ "core/audits/has-hsts.js | lowMaxAge": {
993
+ "message": "`max-age` is too low"
994
+ },
995
+ "core/audits/has-hsts.js | noHsts": {
996
+ "message": "No HSTS header found"
997
+ },
998
+ "core/audits/has-hsts.js | noMaxAge": {
999
+ "message": "No `max-age` directive"
1000
+ },
1001
+ "core/audits/has-hsts.js | noPreload": {
1002
+ "message": "No `preload` directive found"
1003
+ },
1004
+ "core/audits/has-hsts.js | noSubdomain": {
1005
+ "message": "No `includeSubDomains` directive found"
1006
+ },
1007
+ "core/audits/has-hsts.js | title": {
1008
+ "message": "Use a strong HSTS policy"
1009
+ },
980
1010
  "core/audits/image-aspect-ratio.js | columnActual": {
981
1011
  "message": "Aspect ratio (actual)"
982
1012
  },
@@ -1184,6 +1214,24 @@
1184
1214
  "core/audits/non-composited-animations.js | unsupportedTimingParameters": {
1185
1215
  "message": "Effect has unsupported timing parameters"
1186
1216
  },
1217
+ "core/audits/origin-isolation.js | columnDirective": {
1218
+ "message": "Directive"
1219
+ },
1220
+ "core/audits/origin-isolation.js | columnSeverity": {
1221
+ "message": "Severity"
1222
+ },
1223
+ "core/audits/origin-isolation.js | description": {
1224
+ "message": "The Cross-Origin-Opener-Policy (COOP) can be used to isolate the top-level window from other documents such as pop-ups. [Learn more about deploying the COOP header.](https://web.dev/articles/why-coop-coep#coop)"
1225
+ },
1226
+ "core/audits/origin-isolation.js | invalidSyntax": {
1227
+ "message": "Invalid syntax"
1228
+ },
1229
+ "core/audits/origin-isolation.js | noCoop": {
1230
+ "message": "No COOP header found"
1231
+ },
1232
+ "core/audits/origin-isolation.js | title": {
1233
+ "message": "Ensure proper origin isolation with COOP"
1234
+ },
1187
1235
  "core/audits/preload-fonts.js | description": {
1188
1236
  "message": "Preload `optional` fonts so that first-time visitors may use them. [Learn more about preloading fonts](https://web.dev/articles/preload-optional-fonts)"
1189
1237
  },
@@ -977,6 +977,36 @@
977
977
  "core/audits/font-display.js | undeclaredFontOriginWarning": {
978
978
  "message": "{fontCountForOrigin,plural, =1{[Ļîĝĥţĥöûšé ŵåš ûñåбļé ţö åûţömåţîçåļļý çĥéçķ ţĥé ᐅ`font-display`ᐊ våļûé ƒöŕ ţĥé öŕîĝîñ ᐅ{fontOrigin}ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen]}other{[Ļîĝĥţĥöûšé ŵåš ûñåбļé ţö åûţömåţîçåļļý çĥéçķ ţĥé ᐅ`font-display`ᐊ våļûéš ƒöŕ ţĥé öŕîĝîñ ᐅ{fontOrigin}ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen]}}"
979
979
  },
980
+ "core/audits/has-hsts.js | columnDirective": {
981
+ "message": "[Ðîŕéçţîvé one two]"
982
+ },
983
+ "core/audits/has-hsts.js | columnSeverity": {
984
+ "message": "[Šévéŕîţý one]"
985
+ },
986
+ "core/audits/has-hsts.js | description": {
987
+ "message": "[Ðéþļöýméñţ öƒ ţĥé ĤŠŢŠ ĥéåðéŕ šîĝñîƒîçåñţļý ŕéðûçéš ţĥé ŕîšķ öƒ ðöŵñĝŕåðîñĝ ĤŢŢÞ çöññéçţîöñš åñð éåvéšðŕöþþîñĝ åţţåçķš. Å ŕöļļöûţ îñ šţåĝéš, šţåŕţîñĝ ŵîţĥ å ļöŵ måx-åĝé îš ŕéçömméñðéð. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ûšîñĝ å šţŕöñĝ ĤŠŢŠ þöļîçý.ᐅ](https://developer.chrome.com/docs/lighthouse/best-practices/has-hsts)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix twentyseven twentyeight twentynine thirty]"
988
+ },
989
+ "core/audits/has-hsts.js | invalidSyntax": {
990
+ "message": "[Îñvåļîð šýñţåx one two]"
991
+ },
992
+ "core/audits/has-hsts.js | lowMaxAge": {
993
+ "message": "[ᐅ`max-age`ᐊ îš ţöö ļöŵ one two three]"
994
+ },
995
+ "core/audits/has-hsts.js | noHsts": {
996
+ "message": "[Ñö ĤŠŢŠ ĥéåðéŕ ƒöûñð one two three four five]"
997
+ },
998
+ "core/audits/has-hsts.js | noMaxAge": {
999
+ "message": "[Ñö ᐅ`max-age`ᐊ ðîŕéçţîvé one two three four]"
1000
+ },
1001
+ "core/audits/has-hsts.js | noPreload": {
1002
+ "message": "[Ñö ᐅ`preload`ᐊ ðîŕéçţîvé ƒöûñð one two three four five]"
1003
+ },
1004
+ "core/audits/has-hsts.js | noSubdomain": {
1005
+ "message": "[Ñö ᐅ`includeSubDomains`ᐊ ðîŕéçţîvé ƒöûñð one two three four five]"
1006
+ },
1007
+ "core/audits/has-hsts.js | title": {
1008
+ "message": "[Ûšé å šţŕöñĝ ĤŠŢŠ þöļîçý one two three four five]"
1009
+ },
980
1010
  "core/audits/image-aspect-ratio.js | columnActual": {
981
1011
  "message": "[Åšþéçţ Ŕåţîö (Åçţûåļ) one two three]"
982
1012
  },
@@ -1184,6 +1214,24 @@
1184
1214
  "core/audits/non-composited-animations.js | unsupportedTimingParameters": {
1185
1215
  "message": "[Ƀƒéçţ ĥåš ûñšûþþöŕţéð ţîmîñĝ þåŕåméţéŕš one two three four five six seven eight]"
1186
1216
  },
1217
+ "core/audits/origin-isolation.js | columnDirective": {
1218
+ "message": "[Ðîŕéçţîvé one two]"
1219
+ },
1220
+ "core/audits/origin-isolation.js | columnSeverity": {
1221
+ "message": "[Šévéŕîţý one]"
1222
+ },
1223
+ "core/audits/origin-isolation.js | description": {
1224
+ "message": "[Ţĥé Çŕöšš-Öŕîĝîñ-Öþéñéŕ-Þöļîçý (ÇÖÖÞ) çåñ бé ûšéð ţö îšöļåţé ţĥé ţöþ-ļévéļ ŵîñðöŵ ƒŕöm öţĥéŕ ðöçûméñţš šûçĥ åš þöþ-ûþš. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ðéþļöýîñĝ ţĥé ÇÖÖÞ ĥéåðéŕ.ᐅ](https://web.dev/articles/why-coop-coep#coop)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour]"
1225
+ },
1226
+ "core/audits/origin-isolation.js | invalidSyntax": {
1227
+ "message": "[Îñvåļîð šýñţåx one two]"
1228
+ },
1229
+ "core/audits/origin-isolation.js | noCoop": {
1230
+ "message": "[Ñö ÇÖÖÞ ĥéåðéŕ ƒöûñð one two three four five]"
1231
+ },
1232
+ "core/audits/origin-isolation.js | title": {
1233
+ "message": "[Éñšûŕé þŕöþéŕ öŕîĝîñ îšöļåţîöñ ŵîţĥ ÇÖÖÞ one two three four five six seven eight]"
1234
+ },
1187
1235
  "core/audits/preload-fonts.js | description": {
1188
1236
  "message": "[Þŕéļöåð ᐅ`optional`ᐊ ƒöñţš šö ƒîŕšţ-ţîmé vîšîţöŕš måý ûšé ţĥém. ᐅ[ᐊĻéåŕñ möŕé åбöûţ þŕéļöåðîñĝ ƒöñţšᐅ](https://web.dev/articles/preload-optional-fonts)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen]"
1189
1237
  },
@@ -977,6 +977,36 @@
977
977
  "core/audits/font-display.js | undeclaredFontOriginWarning": {
978
978
  "message": "{fontCountForOrigin,plural, =1{Lighthouse no pudo verificar automáticamente el valor de `font-display` de la URL de origen {fontOrigin}.}other{Lighthouse no pudo verificar automáticamente los valores de `font-display` de la URL de origen {fontOrigin}.}}"
979
979
  },
980
+ "core/audits/has-hsts.js | columnDirective": {
981
+ "message": "Directiva"
982
+ },
983
+ "core/audits/has-hsts.js | columnSeverity": {
984
+ "message": "Gravedad"
985
+ },
986
+ "core/audits/has-hsts.js | description": {
987
+ "message": "La implementación del encabezado HSTS reduce significativamente el riesgo de cambiar a una versión inferior las conexiones HTTP y los ataques de escucha. Se recomienda un lanzamiento por etapas, comenzando con una edad máxima baja. [Obtén más información para usar una política de HSTS sólida.](https://developer.chrome.com/docs/lighthouse/best-practices/has-hsts)"
988
+ },
989
+ "core/audits/has-hsts.js | invalidSyntax": {
990
+ "message": "Sintaxis no válida"
991
+ },
992
+ "core/audits/has-hsts.js | lowMaxAge": {
993
+ "message": "`max-age` es demasiado baja"
994
+ },
995
+ "core/audits/has-hsts.js | noHsts": {
996
+ "message": "No se encontró el encabezado HSTS"
997
+ },
998
+ "core/audits/has-hsts.js | noMaxAge": {
999
+ "message": "No hay directiva `max-age`"
1000
+ },
1001
+ "core/audits/has-hsts.js | noPreload": {
1002
+ "message": "No se encontró la directiva `preload`"
1003
+ },
1004
+ "core/audits/has-hsts.js | noSubdomain": {
1005
+ "message": "No se encontró la directiva `includeSubDomains`"
1006
+ },
1007
+ "core/audits/has-hsts.js | title": {
1008
+ "message": "Usa una política de HSTS sólida"
1009
+ },
980
1010
  "core/audits/image-aspect-ratio.js | columnActual": {
981
1011
  "message": "Relación de aspecto (real)"
982
1012
  },
@@ -1184,6 +1214,24 @@
1184
1214
  "core/audits/non-composited-animations.js | unsupportedTimingParameters": {
1185
1215
  "message": "El efecto tiene parámetros de tiempo no compatibles"
1186
1216
  },
1217
+ "core/audits/origin-isolation.js | columnDirective": {
1218
+ "message": "Directiva"
1219
+ },
1220
+ "core/audits/origin-isolation.js | columnSeverity": {
1221
+ "message": "Gravedad"
1222
+ },
1223
+ "core/audits/origin-isolation.js | description": {
1224
+ "message": "La política Cross-Origin-Opener-Policy (COOP) se puede usar para aislar la ventana de nivel superior de otros documentos, como las ventanas emergentes. [Obtén más información para implementar el encabezado COOP.](https://web.dev/articles/why-coop-coep#coop)"
1225
+ },
1226
+ "core/audits/origin-isolation.js | invalidSyntax": {
1227
+ "message": "Sintaxis no válida"
1228
+ },
1229
+ "core/audits/origin-isolation.js | noCoop": {
1230
+ "message": "No se encontró el encabezado COOP"
1231
+ },
1232
+ "core/audits/origin-isolation.js | title": {
1233
+ "message": "Asegúrate de que el aislamiento de origen sea adecuado con COOP"
1234
+ },
1187
1235
  "core/audits/preload-fonts.js | description": {
1188
1236
  "message": "Precarga fuentes `optional` para que los visitantes nuevos puedan usarlas. [Más información sobre la precarga de fuentes](https://web.dev/articles/preload-optional-fonts)"
1189
1237
  },
@@ -977,6 +977,36 @@
977
977
  "core/audits/font-display.js | undeclaredFontOriginWarning": {
978
978
  "message": "{fontCountForOrigin,plural, =1{Lighthouse no ha podido comprobar automáticamente el valor `font-display` de la URL de origen: {fontOrigin}.}other{Lighthouse no ha podido comprobar automáticamente los valores `font-display` de la URL de origen: {fontOrigin}.}}"
979
979
  },
980
+ "core/audits/has-hsts.js | columnDirective": {
981
+ "message": "Directiva"
982
+ },
983
+ "core/audits/has-hsts.js | columnSeverity": {
984
+ "message": "Gravedad"
985
+ },
986
+ "core/audits/has-hsts.js | description": {
987
+ "message": "La implementación del encabezado HSTS reduce considerablemente el riesgo de cambiar las conexiones HTTP a versiones inferiores y de recibir ataques de eavesdropping. Se recomienda implementarlo por fases, empezando con un valor de max-age bajo. [Más información sobre usar una política de HSTS sólida](https://developer.chrome.com/docs/lighthouse/best-practices/has-hsts)"
988
+ },
989
+ "core/audits/has-hsts.js | invalidSyntax": {
990
+ "message": "Sintaxis no válida"
991
+ },
992
+ "core/audits/has-hsts.js | lowMaxAge": {
993
+ "message": "`max-age` es demasiado bajo"
994
+ },
995
+ "core/audits/has-hsts.js | noHsts": {
996
+ "message": "No se han encontrado encabezados HSTS"
997
+ },
998
+ "core/audits/has-hsts.js | noMaxAge": {
999
+ "message": "No hay directivas `max-age`"
1000
+ },
1001
+ "core/audits/has-hsts.js | noPreload": {
1002
+ "message": "No se han encontrado directivas `preload`"
1003
+ },
1004
+ "core/audits/has-hsts.js | noSubdomain": {
1005
+ "message": "No se han encontrado directivas `includeSubDomains`"
1006
+ },
1007
+ "core/audits/has-hsts.js | title": {
1008
+ "message": "Usa una política de HSTS sólida"
1009
+ },
980
1010
  "core/audits/image-aspect-ratio.js | columnActual": {
981
1011
  "message": "Relación de aspecto (real)"
982
1012
  },
@@ -1184,6 +1214,24 @@
1184
1214
  "core/audits/non-composited-animations.js | unsupportedTimingParameters": {
1185
1215
  "message": "Este efecto incluye parámetros de temporización no compatibles"
1186
1216
  },
1217
+ "core/audits/origin-isolation.js | columnDirective": {
1218
+ "message": "Directiva"
1219
+ },
1220
+ "core/audits/origin-isolation.js | columnSeverity": {
1221
+ "message": "Gravedad"
1222
+ },
1223
+ "core/audits/origin-isolation.js | description": {
1224
+ "message": "La política de apertura de orígenes cruzados (COOP) se puede usar para aislar la ventana de nivel superior de otros documentos, como ventanas emergentes. [Más información sobre cómo implementar el encabezado COOP](https://web.dev/articles/why-coop-coep#coop)"
1225
+ },
1226
+ "core/audits/origin-isolation.js | invalidSyntax": {
1227
+ "message": "Sintaxis no válida"
1228
+ },
1229
+ "core/audits/origin-isolation.js | noCoop": {
1230
+ "message": "No se han encontrado encabezados COOP"
1231
+ },
1232
+ "core/audits/origin-isolation.js | title": {
1233
+ "message": "Asegúrate de que el aislamiento de orígenes sea adecuado con COOP"
1234
+ },
1187
1235
  "core/audits/preload-fonts.js | description": {
1188
1236
  "message": "Precarga las fuentes `optional` para que los usuarios puedan utilizarlas en su primera visita. [Más información sobre cómo precargar fuentes](https://web.dev/articles/preload-optional-fonts)"
1189
1237
  },
@@ -977,6 +977,36 @@
977
977
  "core/audits/font-display.js | undeclaredFontOriginWarning": {
978
978
  "message": "{fontCountForOrigin,plural, =1{Lighthouse ei voinut automaattisesti tarkistaa lähteen ({fontOrigin}) arvoa: `font-display`.}other{Lighthouse ei voinut automaattisesti tarkistaa lähteen ({fontOrigin}) arvoja: `font-display`.}}"
979
979
  },
980
+ "core/audits/has-hsts.js | columnDirective": {
981
+ "message": "Sääntö"
982
+ },
983
+ "core/audits/has-hsts.js | columnSeverity": {
984
+ "message": "Vakavuus"
985
+ },
986
+ "core/audits/has-hsts.js | description": {
987
+ "message": "HSTS-otsikon käyttöönotto vähentää merkittävästi HTTP-yhteyksien alentamisen ja salakuunteluhyökkäysten riskiä. Suosittelemme käyttöönottoa vaiheittain, aloittaen alhaisesta enimmäisiästä. [Lue lisää vahvan HSTS-käytännön käyttämisestä.](https://developer.chrome.com/docs/lighthouse/best-practices/has-hsts)"
988
+ },
989
+ "core/audits/has-hsts.js | invalidSyntax": {
990
+ "message": "Virheellinen syntaksi"
991
+ },
992
+ "core/audits/has-hsts.js | lowMaxAge": {
993
+ "message": "`max-age` on liian alhainen"
994
+ },
995
+ "core/audits/has-hsts.js | noHsts": {
996
+ "message": "HSTS-otsikkoa ei löytynyt"
997
+ },
998
+ "core/audits/has-hsts.js | noMaxAge": {
999
+ "message": "Ei `max-age`-sääntöä"
1000
+ },
1001
+ "core/audits/has-hsts.js | noPreload": {
1002
+ "message": "`preload`-sääntöä ei löytynyt"
1003
+ },
1004
+ "core/audits/has-hsts.js | noSubdomain": {
1005
+ "message": "`includeSubDomains`-sääntöä ei löytynyt"
1006
+ },
1007
+ "core/audits/has-hsts.js | title": {
1008
+ "message": "Käytä vahvaa HSTS-käytäntöä"
1009
+ },
980
1010
  "core/audits/image-aspect-ratio.js | columnActual": {
981
1011
  "message": "Kuvasuhde (todellinen)"
982
1012
  },
@@ -1184,6 +1214,24 @@
1184
1214
  "core/audits/non-composited-animations.js | unsupportedTimingParameters": {
1185
1215
  "message": "Tehosteessa on ei-tuettuja ajoitusparametreja"
1186
1216
  },
1217
+ "core/audits/origin-isolation.js | columnDirective": {
1218
+ "message": "Sääntö"
1219
+ },
1220
+ "core/audits/origin-isolation.js | columnSeverity": {
1221
+ "message": "Vakavuus"
1222
+ },
1223
+ "core/audits/origin-isolation.js | description": {
1224
+ "message": "Cross-Origin-Opener-Policy-käytännöllä (COOP) voidaan eristää ylimmän tason ikkuna muista dokumenteista, kuten ponnahdusikkunoista. [Lue lisää COOP-otsikon käyttöönotosta.](https://web.dev/articles/why-coop-coep#coop)"
1225
+ },
1226
+ "core/audits/origin-isolation.js | invalidSyntax": {
1227
+ "message": "Virheellinen syntaksi"
1228
+ },
1229
+ "core/audits/origin-isolation.js | noCoop": {
1230
+ "message": "COOP-otsikkoa ei löytynyt"
1231
+ },
1232
+ "core/audits/origin-isolation.js | title": {
1233
+ "message": "Varmista alkuperän oikea eristäminen COOP:n avulla"
1234
+ },
1187
1235
  "core/audits/preload-fonts.js | description": {
1188
1236
  "message": "Esilataa `optional` fonttia ensikertalaisten kävijöiden saataville. [Lue lisää fonttien esilataamisesta](https://web.dev/articles/preload-optional-fonts)."
1189
1237
  },
@@ -774,7 +774,7 @@
774
774
  "message": "Direktiba"
775
775
  },
776
776
  "core/audits/csp-xss.js | columnSeverity": {
777
- "message": "Tindi"
777
+ "message": "Kalalaan"
778
778
  },
779
779
  "core/audits/csp-xss.js | description": {
780
780
  "message": "Malaki ang nagagawa ng mahigpit na Patakaran sa Seguridad ng Content (Content Security Policy o CSP) para mabawasan ang panganib ng mga cross-site scripting (XSS) na pag-atake. [Alamin kung paano gumamit ng CSP para mapigilan ang XSS](https://developer.chrome.com/docs/lighthouse/best-practices/csp-xss/)"
@@ -977,6 +977,36 @@
977
977
  "core/audits/font-display.js | undeclaredFontOriginWarning": {
978
978
  "message": "{fontCountForOrigin,plural, =1{Hindi awtomatikong nasuri ng Lighthouse ang value ng `font-display` para sa origin na {fontOrigin}.}one{Hindi awtomatikong nasuri ng Lighthouse ang mga value ng `font-display` para sa origin na {fontOrigin}.}other{Hindi awtomatikong nasuri ng Lighthouse ang mga value ng `font-display` para sa origin na {fontOrigin}.}}"
979
979
  },
980
+ "core/audits/has-hsts.js | columnDirective": {
981
+ "message": "Direktiba"
982
+ },
983
+ "core/audits/has-hsts.js | columnSeverity": {
984
+ "message": "Kalalaan"
985
+ },
986
+ "core/audits/has-hsts.js | description": {
987
+ "message": "Malaki ang nagagawa ng pag-deploy ng HSTS header para mabawasan ang panganib ng pag-downgrade ng mga koneksyon sa HTTP at mga eavesdropping attack. Inirerekomendang ilunsad ito nang paunti-unti at magsimula sa mababang max-age. [Matuto pa tungkol sa paggamit ng mahigpit na patakaran sa HSTS.](https://developer.chrome.com/docs/lighthouse/best-practices/has-hsts)"
988
+ },
989
+ "core/audits/has-hsts.js | invalidSyntax": {
990
+ "message": "Invalid na syntax"
991
+ },
992
+ "core/audits/has-hsts.js | lowMaxAge": {
993
+ "message": "Masyadong mababa ang `max-age`"
994
+ },
995
+ "core/audits/has-hsts.js | noHsts": {
996
+ "message": "Walang nakitang HSTS header"
997
+ },
998
+ "core/audits/has-hsts.js | noMaxAge": {
999
+ "message": "Walang direktiba na `max-age`"
1000
+ },
1001
+ "core/audits/has-hsts.js | noPreload": {
1002
+ "message": "Walang nakitang direktiba na `preload`"
1003
+ },
1004
+ "core/audits/has-hsts.js | noSubdomain": {
1005
+ "message": "Walang nakitang direktiba na `includeSubDomains`"
1006
+ },
1007
+ "core/audits/has-hsts.js | title": {
1008
+ "message": "Gumamit ng mahigpit na patakaran sa HSTS"
1009
+ },
980
1010
  "core/audits/image-aspect-ratio.js | columnActual": {
981
1011
  "message": "Aspect Ratio (Aktwal)"
982
1012
  },
@@ -1184,6 +1214,24 @@
1184
1214
  "core/audits/non-composited-animations.js | unsupportedTimingParameters": {
1185
1215
  "message": "May mga hindi sinusuportahang parameter ng timing ang effect"
1186
1216
  },
1217
+ "core/audits/origin-isolation.js | columnDirective": {
1218
+ "message": "Direktiba"
1219
+ },
1220
+ "core/audits/origin-isolation.js | columnSeverity": {
1221
+ "message": "Kalalaan"
1222
+ },
1223
+ "core/audits/origin-isolation.js | description": {
1224
+ "message": "Magagamit ang Cross-Origin-Opener-Policy (COOP) para i-isolate ang top-level na window sa iba pang dokumento gaya ng mga pop-up. [Matuto pa tungkol sa pag-deploy ng COOP header.](https://web.dev/articles/why-coop-coep#coop)"
1225
+ },
1226
+ "core/audits/origin-isolation.js | invalidSyntax": {
1227
+ "message": "Invalid na syntax"
1228
+ },
1229
+ "core/audits/origin-isolation.js | noCoop": {
1230
+ "message": "Walang nakitang COOP header"
1231
+ },
1232
+ "core/audits/origin-isolation.js | title": {
1233
+ "message": "Tiyakin ang wastong pag-isolate ng origin gamit ang COOP"
1234
+ },
1187
1235
  "core/audits/preload-fonts.js | description": {
1188
1236
  "message": "Mag-preload ng mga `optional` na font para magamit ng mga unang beses na bisita ang mga ito. [Matuto pa tungkol sa pag-preload ng mga font](https://web.dev/articles/preload-optional-fonts)"
1189
1237
  },
@@ -977,6 +977,36 @@
977
977
  "core/audits/font-display.js | undeclaredFontOriginWarning": {
978
978
  "message": "{fontCountForOrigin,plural, =1{Lighthouse n'a pas pu vérifier automatiquement la valeur `font-display` pour l'origine {fontOrigin}.}one{Lighthouse n'a pas pu vérifier automatiquement la valeur `font-display` pour l'origine {fontOrigin}.}other{Lighthouse n'a pas pu vérifier automatiquement les valeurs `font-display` pour l'origine {fontOrigin}.}}"
979
979
  },
980
+ "core/audits/has-hsts.js | columnDirective": {
981
+ "message": "Directive"
982
+ },
983
+ "core/audits/has-hsts.js | columnSeverity": {
984
+ "message": "Gravité"
985
+ },
986
+ "core/audits/has-hsts.js | description": {
987
+ "message": "Le déploiement de l'en-tête HSTS réduit considérablement le risque d'attaques par écoute et par rétrogradation en connexion HTTP. Nous vous recommandons un déploiement par étapes, en commençant par un max-age faible. [En savoir plus sur l'utilisation d'une règle HSTS efficace](https://developer.chrome.com/docs/lighthouse/best-practices/has-hsts)"
988
+ },
989
+ "core/audits/has-hsts.js | invalidSyntax": {
990
+ "message": "Syntaxe non valide"
991
+ },
992
+ "core/audits/has-hsts.js | lowMaxAge": {
993
+ "message": "`max-age` est trop faible"
994
+ },
995
+ "core/audits/has-hsts.js | noHsts": {
996
+ "message": "Aucun en-tête HSTS trouvé"
997
+ },
998
+ "core/audits/has-hsts.js | noMaxAge": {
999
+ "message": "Aucune directive `max-age`"
1000
+ },
1001
+ "core/audits/has-hsts.js | noPreload": {
1002
+ "message": "Aucune directive `preload` trouvée"
1003
+ },
1004
+ "core/audits/has-hsts.js | noSubdomain": {
1005
+ "message": "Aucune directive `includeSubDomains` trouvée"
1006
+ },
1007
+ "core/audits/has-hsts.js | title": {
1008
+ "message": "Utiliser une règle HSTS efficace"
1009
+ },
980
1010
  "core/audits/image-aspect-ratio.js | columnActual": {
981
1011
  "message": "Format (image réelle)"
982
1012
  },
@@ -1184,6 +1214,24 @@
1184
1214
  "core/audits/non-composited-animations.js | unsupportedTimingParameters": {
1185
1215
  "message": "L'effet comporte des paramètres de minutage non compatibles"
1186
1216
  },
1217
+ "core/audits/origin-isolation.js | columnDirective": {
1218
+ "message": "Directive"
1219
+ },
1220
+ "core/audits/origin-isolation.js | columnSeverity": {
1221
+ "message": "Gravité"
1222
+ },
1223
+ "core/audits/origin-isolation.js | description": {
1224
+ "message": "La règle COOP (Cross-Origin-Opener-Policy) peut être utilisée pour séparer la fenêtre de premier niveau des autres documents, comme les pop-ups. [En savoir plus sur le déploiement de l'en-tête COOP](https://web.dev/articles/why-coop-coep#coop)"
1225
+ },
1226
+ "core/audits/origin-isolation.js | invalidSyntax": {
1227
+ "message": "Syntaxe non valide"
1228
+ },
1229
+ "core/audits/origin-isolation.js | noCoop": {
1230
+ "message": "Aucun en-tête COOP détecté"
1231
+ },
1232
+ "core/audits/origin-isolation.js | title": {
1233
+ "message": "Assurez l'isolation appropriée de l'origine avec COOP"
1234
+ },
1187
1235
  "core/audits/preload-fonts.js | description": {
1188
1236
  "message": "Préchargez les polices `optional` pour que les nouveaux visiteurs puissent les utiliser. [En savoir plus sur le préchargement des polices](https://web.dev/articles/preload-optional-fonts)"
1189
1237
  },
@@ -210,13 +210,13 @@
210
210
  "message": "רכיבים שנכשלו בבדיקה"
211
211
  },
212
212
  "core/audits/accessibility/button-name.js | description": {
213
- "message": "כשאין ללחצן תווית נגישות, קוראי מסך אומרים את המילה 'לחצן', ובמצב כזה אנשים שמסתמכים על קוראי מסך יתקשו להשתמש בלחצן. [איך לשפר את רמת הנגישות של הלחצנים](https://dequeuniversity.com/rules/axe/4.10/button-name)?"
213
+ "message": "כשאין לכפתור תווית נגישות, קוראי מסך אומרים את המילה \"כפתור\", ובמצב כזה אנשים שמסתמכים על קוראי מסך יתקשו להשתמש בכפתור. [איך לשפר את רמת הנגישות של הכפתורים](https://dequeuniversity.com/rules/axe/4.10/button-name)?"
214
214
  },
215
215
  "core/audits/accessibility/button-name.js | failureTitle": {
216
- "message": "ללחצנים אין שמות ייחודיים"
216
+ "message": "לכפתורים אין שמות ייחודיים"
217
217
  },
218
218
  "core/audits/accessibility/button-name.js | title": {
219
- "message": "ללחצנים יש שם נגיש"
219
+ "message": "לכפתורים יש שם נגיש"
220
220
  },
221
221
  "core/audits/accessibility/bypass.js | description": {
222
222
  "message": "כשמוסיפים דרכים לעקיפת תוכן שחוזר על עצמו, אנשים שמשתמשים במקלדת יכולים לנווט בדף בצורה יעילה יותר. [מידע נוסף על שיטות לעקיפת בלוקים של תוכן](https://dequeuniversity.com/rules/axe/4.10/bypass)"
@@ -363,16 +363,16 @@
363
363
  "message": "לרכיבי התמונה אין מאפייני `[alt]` שהם טקסט מיותר."
364
364
  },
365
365
  "core/audits/accessibility/input-button-name.js | description": {
366
- "message": "הוספה של טקסט נגיש וברור ללחצני קלט עשויה לעזור למשתמשים בקורא מסך להבין את המטרה של לחצן הקלט. [מידע נוסף על לחצני קלט](https://dequeuniversity.com/rules/axe/4.10/input-button-name)"
366
+ "message": "הוספה של טקסט נגיש וברור לכפתורי קלט עשויה לעזור למשתמשים בקורא מסך להבין את המטרה של כפתור הקלט. [מידע נוסף על כפתורי קלט](https://dequeuniversity.com/rules/axe/4.10/input-button-name)"
367
367
  },
368
368
  "core/audits/accessibility/input-button-name.js | failureTitle": {
369
- "message": "אין טקסט ברור בלחצני הקלט"
369
+ "message": "אין טקסט ברור בכפתורי הקלט"
370
370
  },
371
371
  "core/audits/accessibility/input-button-name.js | title": {
372
- "message": "יש טקסט ברור בלחצני הקלט"
372
+ "message": "יש טקסט ברור בכפתורי הקלט"
373
373
  },
374
374
  "core/audits/accessibility/input-image-alt.js | description": {
375
- "message": "כשתמונה משמשת כלחצן `<input>`, הוספה של טקסט חלופי יכולה לעזור למשתמשים הנעזרים בקוראי מסך להבין מה מטרת הלחצן. [מידע על טקסט חלופי של תמונה בקלט](https://dequeuniversity.com/rules/axe/4.10/input-image-alt)"
375
+ "message": "כשתמונה משמשת ככפתור `<input>`, הוספה של טקסט חלופי יכולה לעזור למשתמשים הנעזרים בקוראי מסך להבין מה מטרת הכפתור. [מידע על טקסט חלופי של תמונה בקלט](https://dequeuniversity.com/rules/axe/4.10/input-image-alt)"
376
376
  },
377
377
  "core/audits/accessibility/input-image-alt.js | failureTitle": {
378
378
  "message": "יש רכיבי `<input type=\"image\">` שאין להם טקסט `[alt]`"
@@ -977,6 +977,36 @@
977
977
  "core/audits/font-display.js | undeclaredFontOriginWarning": {
978
978
  "message": "{fontCountForOrigin,plural, =1{מערכת Lighthouse לא הצליחה לבדוק את הערך `font-display` של המקור {fontOrigin} באופן אוטומטי.}one{מערכת Lighthouse לא הצליחה לבדוק את ערכי `font-display` של המקור {fontOrigin} באופן אוטומטי.}two{מערכת Lighthouse לא הצליחה לבדוק את ערכי `font-display` של המקור {fontOrigin} באופן אוטומטי.}other{מערכת Lighthouse לא הצליחה לבדוק את ערכי `font-display` של המקור {fontOrigin} באופן אוטומטי.}}"
979
979
  },
980
+ "core/audits/has-hsts.js | columnDirective": {
981
+ "message": "הוראה"
982
+ },
983
+ "core/audits/has-hsts.js | columnSeverity": {
984
+ "message": "מידת החומרה"
985
+ },
986
+ "core/audits/has-hsts.js | description": {
987
+ "message": "פריסה של כותרת HSTS מפחיתה באופן משמעותי את הסיכון לשדרוג לאחור של חיבורי HTTP ולמתקפות של ציתות. מומלץ לבצע השקה בשלבים, כשהשלב הראשון הוא עם ערך גיל מקסימלי נמוך. ‫[מידע נוסף על שימוש במדיניות HSTS חזקה.](https://developer.chrome.com/docs/lighthouse/best-practices/has-hsts)"
988
+ },
989
+ "core/audits/has-hsts.js | invalidSyntax": {
990
+ "message": "התחביר לא תקין"
991
+ },
992
+ "core/audits/has-hsts.js | lowMaxAge": {
993
+ "message": "הערך של `max-age` נמוך מדי"
994
+ },
995
+ "core/audits/has-hsts.js | noHsts": {
996
+ "message": "לא נמצאה כותרת HSTS"
997
+ },
998
+ "core/audits/has-hsts.js | noMaxAge": {
999
+ "message": "אין הוראה של `max-age`"
1000
+ },
1001
+ "core/audits/has-hsts.js | noPreload": {
1002
+ "message": "לא נמצאה הוראה מסוג `preload`"
1003
+ },
1004
+ "core/audits/has-hsts.js | noSubdomain": {
1005
+ "message": "לא נמצאה הוראה מסוג `includeSubDomains`"
1006
+ },
1007
+ "core/audits/has-hsts.js | title": {
1008
+ "message": "שימוש במדיניות HSTS חזקה"
1009
+ },
980
1010
  "core/audits/image-aspect-ratio.js | columnActual": {
981
1011
  "message": "יחס גובה-רוחב (בפועל)"
982
1012
  },
@@ -1184,6 +1214,24 @@
1184
1214
  "core/audits/non-composited-animations.js | unsupportedTimingParameters": {
1185
1215
  "message": "האפקט כולל פרמטרים של תזמון שאינם נתמכים"
1186
1216
  },
1217
+ "core/audits/origin-isolation.js | columnDirective": {
1218
+ "message": "הוראה"
1219
+ },
1220
+ "core/audits/origin-isolation.js | columnSeverity": {
1221
+ "message": "מידת החומרה"
1222
+ },
1223
+ "core/audits/origin-isolation.js | description": {
1224
+ "message": "אפשר להשתמש במדיניות של פתיחה ממקורות שונים (COOP) כדי לבודד את החלון ברמה העליונה ממסמכים אחרים, כמו חלונות קופצים. [מידע נוסף על פריסה של כותרת COOP.](https://web.dev/articles/why-coop-coep#coop)"
1225
+ },
1226
+ "core/audits/origin-isolation.js | invalidSyntax": {
1227
+ "message": "התחביר לא תקין"
1228
+ },
1229
+ "core/audits/origin-isolation.js | noCoop": {
1230
+ "message": "לא נמצאה כותרת COOP"
1231
+ },
1232
+ "core/audits/origin-isolation.js | title": {
1233
+ "message": "צריך להשתמש ב-COOP כדי להבטיח חסימת גישה נכונה של המקור"
1234
+ },
1187
1235
  "core/audits/preload-fonts.js | description": {
1188
1236
  "message": "כדאי לטעון מראש גופני `optional` כדי שמבקרים לראשונה יוכלו להשתמש בהם. [מידע נוסף על טעינה מראש של גופנים](https://web.dev/articles/preload-optional-fonts)"
1189
1237
  },
@@ -3021,7 +3069,7 @@
3021
3069
  "message": "עיצובים, יישומי פלאגין ומפרטי שרתים משפיעים על זמן התגובה של השרת. אפשר להשתמש בעיצוב שעבר אופטימיזציה, לבחור בקפידה פלאגין לאופטימיזציה ו/או לשדרג את השרת. מערכת ניהול התוכן October גם מאפשרת למפתחים להשתמש ב[`Queues`](https://octobercms.com/docs/services/queues) כדי לדחות את העיבוד של משימה שגוזלת זמן רב, כמו שליחת אימייל. אפשרות זו מאיצה בקשות אינטרנט באופן משמעותי."
3022
3070
  },
3023
3071
  "node_modules/lighthouse-stack-packs/packs/octobercms.js | total-byte-weight": {
3024
- "message": "אפשר להציג קטעים ברשימות הפוסטים (למשל, עם לחצן `show more`), לצמצם את מספר הפוסטים המוצגים בדף נתון, לחלק פוסטים ארוכים למספר דפים או להשתמש בפלאגין כדי לטעון תגובות בצורה מדורגת."
3072
+ "message": "אפשר להציג קטעים ברשימות הפוסטים (למשל, עם כפתור `show more`), לצמצם את מספר הפוסטים המוצגים בדף נתון, לחלק פוסטים ארוכים למספר דפים או להשתמש בפלאגין כדי לטעון תגובות בצורה מדורגת."
3025
3073
  },
3026
3074
  "node_modules/lighthouse-stack-packs/packs/octobercms.js | unminified-css": {
3027
3075
  "message": "יש הרבה [יישומי פלאגין](https://octobercms.com/plugins?search=css) שיכולים להאיץ את האתר בעזרת שרשור, הקטנה ודחיסה של סגנונות. ניתן להאיץ את הפיתוח בעזרת הקטנה מראש בתהליך build."
@@ -977,6 +977,36 @@
977
977
  "core/audits/font-display.js | undeclaredFontOriginWarning": {
978
978
  "message": "{fontCountForOrigin,plural, =1{लाइटहाउस, अपने-आप मूल {fontOrigin} के लिए `font-display` की वैल्यू नहीं देख सका.}one{लाइटहाउस, अपने-आप मूल {fontOrigin} के लिए `font-display` की वैल्यू नहीं देख सका.}other{लाइटहाउस, अपने-आप मूल {fontOrigin} के लिए `font-display` की वैल्यू नहीं देख सका.}}"
979
979
  },
980
+ "core/audits/has-hsts.js | columnDirective": {
981
+ "message": "डायरेक्टिव"
982
+ },
983
+ "core/audits/has-hsts.js | columnSeverity": {
984
+ "message": "गंभीरता"
985
+ },
986
+ "core/audits/has-hsts.js | description": {
987
+ "message": "एचएसटीएस हेडर को लागू करने से, एचटीटीपी कनेक्शन के डाउनग्रेड होने के जोखिम को कम किया जा सकता है. इससे, अनजान हमलों के खतरे को भी काफ़ी हद तक कम किया जा सकता है. हमारा सुझाव है कि इसे अलग-अलग चरणों में लागू करें. साथ ही, शुरुआत में कम अवधि वाली वैल्यू का इस्तेमाल करें. [मज़बूत एचएसटीएस नीति इस्तेमाल करने के बारे में ज़्यादा जानें.](https://developer.chrome.com/docs/lighthouse/best-practices/has-hsts)"
988
+ },
989
+ "core/audits/has-hsts.js | invalidSyntax": {
990
+ "message": "अमान्य सिंटैक्स"
991
+ },
992
+ "core/audits/has-hsts.js | lowMaxAge": {
993
+ "message": "`max-age` बहुत कम है"
994
+ },
995
+ "core/audits/has-hsts.js | noHsts": {
996
+ "message": "कोई एचएसटीएस हेडर नहीं मिला"
997
+ },
998
+ "core/audits/has-hsts.js | noMaxAge": {
999
+ "message": "कोई `max-age` डायरेक्टिव मौजूद नहीं है"
1000
+ },
1001
+ "core/audits/has-hsts.js | noPreload": {
1002
+ "message": "कोई `preload` डायरेक्टिव नहीं मिला"
1003
+ },
1004
+ "core/audits/has-hsts.js | noSubdomain": {
1005
+ "message": "कोई `includeSubDomains` डायरेक्टिव नहीं मिला"
1006
+ },
1007
+ "core/audits/has-hsts.js | title": {
1008
+ "message": "मज़बूत एचएसटीएस नीति का इस्तेमाल करें"
1009
+ },
980
1010
  "core/audits/image-aspect-ratio.js | columnActual": {
981
1011
  "message": "चौड़ाई-ऊंचाई का अनुपात (असल)"
982
1012
  },
@@ -1184,6 +1214,24 @@
1184
1214
  "core/audits/non-composited-animations.js | unsupportedTimingParameters": {
1185
1215
  "message": "इस इफ़ेक्ट में समय के ऐसे पैरामीटर हैं जो काम नहीं करते"
1186
1216
  },
1217
+ "core/audits/origin-isolation.js | columnDirective": {
1218
+ "message": "डायरेक्टिव"
1219
+ },
1220
+ "core/audits/origin-isolation.js | columnSeverity": {
1221
+ "message": "गंभीरता"
1222
+ },
1223
+ "core/audits/origin-isolation.js | description": {
1224
+ "message": "क्रॉस-ऑरिजिन-ओपनर-नीति (COOP) का इस्तेमाल, टॉप-लेवल विंडो को अन्य दस्तावेज़ों से सुरक्षित रखने के लिए किया जा सकता है. जैसे, पॉप-अप. [COOP हेडर को लागू करने के बारे में ज़्यादा जानें.](https://web.dev/articles/why-coop-coep#coop)"
1225
+ },
1226
+ "core/audits/origin-isolation.js | invalidSyntax": {
1227
+ "message": "अमान्य सिंटैक्स"
1228
+ },
1229
+ "core/audits/origin-isolation.js | noCoop": {
1230
+ "message": "कोई COOP हेडर नहीं मिला"
1231
+ },
1232
+ "core/audits/origin-isolation.js | title": {
1233
+ "message": "COOP की मदद से, ऑरिजिन को पूरी तरह आइसोलेट करें"
1234
+ },
1187
1235
  "core/audits/preload-fonts.js | description": {
1188
1236
  "message": "`optional` फ़ॉन्ट पहले से लोड करें, ताकि वेबसाइट पर पहली बार आने वाले उनका इस्तेमाल कर सकें. [पहले से फ़ॉन्ट लोड करने के बारे में ज़्यादा जानें](https://web.dev/articles/preload-optional-fonts)"
1189
1237
  },