lighthouse 9.5.0-dev.20220725 → 9.5.0-dev.20220728
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/lighthouse-cli/test/smokehouse/readme.md +1 -1
- package/lighthouse-cli/test/smokehouse/report-assert.js +7 -7
- package/lighthouse-core/config/default-config.js +2 -4
- package/package.json +1 -1
- package/report/test/generator/report-generator-test.js +1 -1
- package/report/test/renderer/category-renderer-test.js +2 -2
- package/shared/localization/locales/ar-XB.json +0 -12
- package/shared/localization/locales/ar.json +0 -12
- package/shared/localization/locales/bg.json +0 -12
- package/shared/localization/locales/ca.json +0 -12
- package/shared/localization/locales/cs.json +0 -12
- package/shared/localization/locales/da.json +0 -12
- package/shared/localization/locales/de.json +0 -12
- package/shared/localization/locales/el.json +0 -12
- package/shared/localization/locales/en-GB.json +0 -12
- package/shared/localization/locales/en-US.json +2 -14
- package/shared/localization/locales/en-XA.json +0 -12
- package/shared/localization/locales/en-XL.json +2 -14
- package/shared/localization/locales/es-419.json +0 -12
- package/shared/localization/locales/es.json +0 -12
- package/shared/localization/locales/fi.json +0 -12
- package/shared/localization/locales/fil.json +0 -12
- package/shared/localization/locales/fr.json +0 -12
- package/shared/localization/locales/he.json +0 -12
- package/shared/localization/locales/hi.json +0 -12
- package/shared/localization/locales/hr.json +0 -12
- package/shared/localization/locales/hu.json +0 -12
- package/shared/localization/locales/id.json +0 -12
- package/shared/localization/locales/it.json +0 -12
- package/shared/localization/locales/ja.json +0 -12
- package/shared/localization/locales/ko.json +0 -12
- package/shared/localization/locales/lt.json +0 -12
- package/shared/localization/locales/lv.json +0 -12
- package/shared/localization/locales/nl.json +0 -12
- package/shared/localization/locales/no.json +0 -12
- package/shared/localization/locales/pl.json +0 -12
- package/shared/localization/locales/pt-PT.json +0 -12
- package/shared/localization/locales/pt.json +0 -12
- package/shared/localization/locales/ro.json +0 -12
- package/shared/localization/locales/ru.json +0 -12
- package/shared/localization/locales/sk.json +0 -12
- package/shared/localization/locales/sl.json +0 -12
- package/shared/localization/locales/sr-Latn.json +0 -12
- package/shared/localization/locales/sr.json +0 -12
- package/shared/localization/locales/sv.json +0 -12
- package/shared/localization/locales/ta.json +0 -12
- package/shared/localization/locales/te.json +0 -12
- package/shared/localization/locales/th.json +0 -12
- package/shared/localization/locales/tr.json +0 -12
- package/shared/localization/locales/uk.json +0 -12
- package/shared/localization/locales/vi.json +0 -12
- package/shared/localization/locales/zh-HK.json +0 -12
- package/shared/localization/locales/zh-TW.json +0 -12
- package/shared/localization/locales/zh.json +0 -12
- package/types/smokehouse.d.ts +2 -2
- package/lighthouse-core/audits/apple-touch-icon.js +0 -72
|
@@ -116,8 +116,8 @@ All pruning checks:
|
|
|
116
116
|
- `_maxChromiumVersion`
|
|
117
117
|
- `_legacyOnly`
|
|
118
118
|
- `_fraggleRockOnly`
|
|
119
|
-
- `_skipInBundled`
|
|
120
119
|
- `_runner` (set to same value provided to CLI --runner flag, ex: `'devtools'`)
|
|
120
|
+
- `_excludeRunner` (set to same value provided to CLI --runner flag, ex: `'devtools'`)
|
|
121
121
|
|
|
122
122
|
## Pipeline
|
|
123
123
|
|
|
@@ -217,11 +217,10 @@ function makeComparison(name, actualResult, expectedResult) {
|
|
|
217
217
|
* @param {LocalConsole} localConsole
|
|
218
218
|
* @param {LH.Result} lhr
|
|
219
219
|
* @param {Smokehouse.ExpectedRunnerResult} expected
|
|
220
|
-
* @param {{runner?: string,
|
|
220
|
+
* @param {{runner?: string, useLegacyNavigation?: boolean}=} reportOptions
|
|
221
221
|
*/
|
|
222
222
|
function pruneExpectations(localConsole, lhr, expected, reportOptions) {
|
|
223
223
|
const isLegacyNavigation = reportOptions?.useLegacyNavigation;
|
|
224
|
-
const isBundled = reportOptions?.isBundled;
|
|
225
224
|
|
|
226
225
|
/**
|
|
227
226
|
* Lazily compute the Chrome version because some reports are explicitly asserting error conditions.
|
|
@@ -289,15 +288,15 @@ function pruneExpectations(localConsole, lhr, expected, reportOptions) {
|
|
|
289
288
|
`Actual channel: ${lhr.configSettings.channel}`,
|
|
290
289
|
].join(' '));
|
|
291
290
|
remove(key);
|
|
292
|
-
} else if (value.
|
|
291
|
+
} else if (value._runner && reportOptions?.runner !== value._runner) {
|
|
293
292
|
localConsole.log([
|
|
294
|
-
`[${key}]
|
|
293
|
+
`[${key}] is only for runner ${value._runner}, pruning expectation:`,
|
|
295
294
|
JSON.stringify(value, null, 2),
|
|
296
295
|
].join(' '));
|
|
297
296
|
remove(key);
|
|
298
|
-
} else if (value.
|
|
297
|
+
} else if (value._excludeRunner && reportOptions?.runner === value._excludeRunner) {
|
|
299
298
|
localConsole.log([
|
|
300
|
-
`[${key}] is
|
|
299
|
+
`[${key}] is excluded for runner ${value._excludeRunner}, pruning expectation:`,
|
|
301
300
|
JSON.stringify(value, null, 2),
|
|
302
301
|
].join(' '));
|
|
303
302
|
remove(key);
|
|
@@ -312,6 +311,7 @@ function pruneExpectations(localConsole, lhr, expected, reportOptions) {
|
|
|
312
311
|
delete obj._minChromiumVersion;
|
|
313
312
|
delete obj._maxChromiumVersion;
|
|
314
313
|
delete obj._runner;
|
|
314
|
+
delete obj._excludeRunner;
|
|
315
315
|
}
|
|
316
316
|
|
|
317
317
|
const cloned = cloneDeep(expected);
|
|
@@ -459,7 +459,7 @@ function reportAssertion(localConsole, assertion) {
|
|
|
459
459
|
* summary. Returns count of passed and failed tests.
|
|
460
460
|
* @param {{lhr: LH.Result, artifacts: LH.Artifacts, networkRequests?: string[]}} actual
|
|
461
461
|
* @param {Smokehouse.ExpectedRunnerResult} expected
|
|
462
|
-
* @param {{runner?: string, isDebug?: boolean,
|
|
462
|
+
* @param {{runner?: string, isDebug?: boolean, useLegacyNavigation?: boolean}=} reportOptions
|
|
463
463
|
* @return {{passed: number, failed: number, log: string}}
|
|
464
464
|
*/
|
|
465
465
|
function getAssertionReport(actual, expected, reportOptions = {}) {
|
|
@@ -100,10 +100,10 @@ const UIStrings = {
|
|
|
100
100
|
pwaCategoryTitle: 'PWA',
|
|
101
101
|
/** Description of the Progressive Web Application (PWA) category. This is displayed at the top of a list of audits focused on topics related to whether or not a site is a progressive web app, e.g. responds offline, uses a service worker, is on https, etc. No character length limits. 'Learn More' becomes link text to additional documentation. */
|
|
102
102
|
pwaCategoryDescription: 'These checks validate the aspects of a Progressive Web App. ' +
|
|
103
|
-
'[Learn more](https://
|
|
103
|
+
'[Learn more](https://web.dev/pwa-checklist/).',
|
|
104
104
|
/** Description of the Progressive Web Application (PWA) manual checks category, containing a list of additional validators must be run by hand in order to check all PWA best practices. This is displayed at the top of a list of manually run audits focused on topics related to whether or not a site is a progressive web app, e.g. responds offline, uses a service worker, is on https, etc.. No character length limits. */
|
|
105
105
|
pwaCategoryManualDescription: 'These checks are required by the baseline ' +
|
|
106
|
-
'[PWA Checklist](https://
|
|
106
|
+
'[PWA Checklist](https://web.dev/pwa-checklist/) but are ' +
|
|
107
107
|
'not automatically checked by Lighthouse. They do not affect your score but it\'s important that you verify them manually.',
|
|
108
108
|
/** Title of the Best Practices category of audits. This is displayed at the top of a list of audits focused on topics related to following web development best practices and accepted guidelines. Also used as a label of a score gauge; try to limit to 20 characters. */
|
|
109
109
|
bestPracticesCategoryTitle: 'Best Practices',
|
|
@@ -298,7 +298,6 @@ const defaultConfig = {
|
|
|
298
298
|
'critical-request-chains',
|
|
299
299
|
'redirects',
|
|
300
300
|
'installable-manifest',
|
|
301
|
-
'apple-touch-icon',
|
|
302
301
|
'splash-screen',
|
|
303
302
|
'themed-omnibox',
|
|
304
303
|
'maskable-icon',
|
|
@@ -723,7 +722,6 @@ const defaultConfig = {
|
|
|
723
722
|
{id: 'themed-omnibox', weight: 1, group: 'pwa-optimized'},
|
|
724
723
|
{id: 'content-width', weight: 1, group: 'pwa-optimized'},
|
|
725
724
|
{id: 'viewport', weight: 2, group: 'pwa-optimized'},
|
|
726
|
-
{id: 'apple-touch-icon', weight: 1, group: 'pwa-optimized'},
|
|
727
725
|
{id: 'maskable-icon', weight: 1, group: 'pwa-optimized'},
|
|
728
726
|
// Manual audits
|
|
729
727
|
{id: 'pwa-cross-browser', weight: 0},
|
package/package.json
CHANGED
|
@@ -99,7 +99,7 @@ category,score
|
|
|
99
99
|
\\"accessibility\\",\\"0.78\\"
|
|
100
100
|
\\"best-practices\\",\\"0.25\\"
|
|
101
101
|
\\"seo\\",\\"0.67\\"
|
|
102
|
-
\\"pwa\\",\\"0.
|
|
102
|
+
\\"pwa\\",\\"0.33\\"
|
|
103
103
|
|
|
104
104
|
category,audit,score,displayValue,description
|
|
105
105
|
\\"performance\\",\\"first-contentful-paint\\",\\"0.01\\",\\"6.8 s\\",\\"First Contentful Paint marks the time at which the first text or image is painted. [Learn more about the First Contentful Paint metric](https://web.dev/first-contentful-paint/).\\"
|
|
@@ -421,7 +421,7 @@ describe('CategoryRenderer', () => {
|
|
|
421
421
|
const naAudits = elem.querySelectorAll('.lh-clump--notapplicable .lh-audit');
|
|
422
422
|
|
|
423
423
|
assert.equal(passedAudits.length, 0);
|
|
424
|
-
assert.equal(failedAudits.length,
|
|
424
|
+
assert.equal(failedAudits.length, 4);
|
|
425
425
|
assert.equal(warningAudits.length, 2);
|
|
426
426
|
assert.equal(manualAudits.length, 3);
|
|
427
427
|
assert.equal(naAudits.length, 1);
|
|
@@ -441,7 +441,7 @@ describe('CategoryRenderer', () => {
|
|
|
441
441
|
const failedAudits = elem.querySelectorAll('.lh-clump--failed .lh-audit');
|
|
442
442
|
|
|
443
443
|
assert.equal(passedAudits.length, 0);
|
|
444
|
-
assert.equal(failedAudits.length,
|
|
444
|
+
assert.equal(failedAudits.length, 7);
|
|
445
445
|
});
|
|
446
446
|
|
|
447
447
|
it('expands warning audit group', () => {
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "`<video>` elements contain a `<track>` element with `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "For ideal appearance on iOS when users add a progressive web app to the home screen, define an `apple-touch-icon`. It must point to a non-transparent 192px (or 180px) square PNG. [Learn More](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "Does not provide a valid `apple-touch-icon`"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "`apple-touch-icon-precomposed` is out of date; `apple-touch-icon` is preferred."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Provides a valid `apple-touch-icon`"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Current Value"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "عناصر `<video>` تحتوي على عنصر `<track>` مع `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "للحصول على المظهر المثالي على نظام التشغيل iOS عند إضافة المستخدمين تطبيق ويب تقدّمي إلى الشاشة الرئيسية، يمكنك تحديد `apple-touch-icon`. يجب أن تشير هذه السمة إلى مربع غير شفاف بتنسيق PNG مقاسه 192 بكسل (أو 180 بكسل). [مزيد من المعلومات](https://web.dev/apple-touch-icon/)"
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "لا يتم تقديم رمز `apple-touch-icon` صالح"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "سمة `apple-touch-icon-precomposed` هي قديمة، ويُفضّل استخدام سمة `apple-touch-icon`"
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "يتم تقديم رمز `apple-touch-icon` صالح"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "القيمة الحالية"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "Елементите `<video>` съдържат елемент `<track>` с `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "За най-добро изобразяване под iOS, когато потребителите добавят прогресивно уеб приложение (PWA) към началния екран, дефинирайте атрибут `apple-touch-icon`. Той трябва да сочи към непрозрачен квадратен PNG файл със страна от 192 (или 180) пиксела. [Научете повече](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "Не осигурява валиден атрибут `apple-touch-icon`"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "Атрибутът `apple-touch-icon-precomposed` не е актуален, препоръчва се `apple-touch-icon`."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Съдържа валиден атрибут `apple-touch-icon`"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Текуща стойност"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "Els elements `<video>` contenen un element `<track>` amb `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "Perquè l'aspecte a iOS sigui l'ideal quan els usuaris afegeixin una aplicació web progressiva a la pantalla d'inici, defineix un atribut `apple-touch-icon`. Ha de dirigir a una imatge PNG quadrada de 192 píxels o de 180 píxels que no sigui transparent. [Obtén més informació](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "No conté un atribut `apple-touch-icon` vàlid"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "L'atribut `apple-touch-icon-precomposed` no està actualitzat. És preferible l'atribut `apple-touch-icon`."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Proporciona una `apple-touch-icon` vàlida"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Valor actual"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "Prvky `<video>` obsahují prvek `<track>` s atributem `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "Pro ideální vzhled po přidání progresivní webové aplikace na plochu v systému iOS definujte atribut `apple-touch-icon`. Musí odkazovat na neprůhledný čtvercový obrázek PNG se stranami o délce 192 px (nebo 180 px). [Další informace](https://web.dev/apple-touch-icon/)"
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "Neobsahuje platný atribut `apple-touch-icon`"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "Atribut `apple-touch-icon-precomposed` je zastaralý. Je preferován atribut `apple-touch-icon`."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Obsahuje platný atribut `apple-touch-icon`"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Současná hodnota"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "`<video>`-elementerne indeholder et `<track>`-element med `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "Angiv et `apple-touch-icon` for at optimere iOS-brugerfladen, når brugere føjer en progressiv app til startskærmen. Det skal føre til en ikke-transparent firkantet PNG på 192 px (eller 180 px). [Få flere oplysninger](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "Angiver ikke en gyldig `apple-touch-icon`"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "`apple-touch-icon-precomposed` er forældet, og `apple-touch-icon` foretrækkes."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Angiver et gyldigt `apple-touch-icon`"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Aktuel værdi"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "`<video>`-Elemente enthalten ein `<track>`-Element mit `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "Definieren Sie ein `apple-touch-icon` für eine ideale Darstellung unter iOS, wenn Nutzer die progressive Web-App dem Startbildschirm hinzufügen. Es muss auf eine nicht transparente, quadratische PNG-Datei mit 192 px (oder 180 px) verweisen. [Weitere Informationen.](https://web.dev/apple-touch-icon/)"
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "Hat kein gültiges `apple-touch-icon`"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "`apple-touch-icon-precomposed` ist veraltet; `apple-touch-icon` wird bevorzugt."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Enthält ein gültiges `apple-touch-icon`"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Aktueller Wert"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "Τα στοιχεία `<video>` περιέχουν ένα στοιχείο `<track>` με `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "Για ιδανική εμφάνιση στο iOS όταν οι χρήστες προσθέτουν μια προηγμένη εφαρμογή ιστού στην αρχική οθόνη, ορίστε ένα `apple-touch-icon`. Το εικονίδιο πρέπει να παραπέμπει σε μια μη διαφανή, τετράγωνη εικόνα PNG 192px (ή 180px). [Μάθετε περισσότερα](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "Δεν παρέχει ένα έγκυρο `apple-touch-icon`"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "Το `apple-touch-icon-precomposed` δεν είναι ενημερωμένο. Συνιστάται η χρήση του `apple-touch-icon`."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Παρέχει ένα έγκυρο `apple-touch-icon`"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Τρέχουσα τιμή"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "`<video>` elements contain a `<track>` element with `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "For ideal appearance on iOS when users add a progressive web app to the home screen, define an `apple-touch-icon`. It must point to a non-transparent 192px (or 180px) square PNG. [Learn More](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "Does not provide a valid `apple-touch-icon`"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "`apple-touch-icon-precomposed` is out of date; `apple-touch-icon` is preferred."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Provides a valid `apple-touch-icon`"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Current value"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "`<video>` elements contain a `<track>` element with `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "For ideal appearance on iOS when users add a progressive web app to the home screen, define an `apple-touch-icon`. It must point to a non-transparent 192px (or 180px) square PNG. [Learn more about `apple-touch-icon`](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "Does not provide a valid `apple-touch-icon`"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "`apple-touch-icon-precomposed` is out of date; `apple-touch-icon` is preferred."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Provides a valid `apple-touch-icon`"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Current Value"
|
|
547
535
|
},
|
|
@@ -1791,10 +1779,10 @@
|
|
|
1791
1779
|
"message": "Performance"
|
|
1792
1780
|
},
|
|
1793
1781
|
"lighthouse-core/config/default-config.js | pwaCategoryDescription": {
|
|
1794
|
-
"message": "These checks validate the aspects of a Progressive Web App. [Learn more](https://
|
|
1782
|
+
"message": "These checks validate the aspects of a Progressive Web App. [Learn more](https://web.dev/pwa-checklist/)."
|
|
1795
1783
|
},
|
|
1796
1784
|
"lighthouse-core/config/default-config.js | pwaCategoryManualDescription": {
|
|
1797
|
-
"message": "These checks are required by the baseline [PWA Checklist](https://
|
|
1785
|
+
"message": "These checks are required by the baseline [PWA Checklist](https://web.dev/pwa-checklist/) but are not automatically checked by Lighthouse. They do not affect your score but it's important that you verify them manually."
|
|
1798
1786
|
},
|
|
1799
1787
|
"lighthouse-core/config/default-config.js | pwaCategoryTitle": {
|
|
1800
1788
|
"message": "PWA"
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "[ᐅ`<video>`ᐊ éļéméñţš çöñţåîñ å ᐅ`<track>`ᐊ éļéméñţ ŵîţĥ ᐅ`[kind=\"captions\"]`ᐊ one two three four five six seven eight nine]"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "[Föŕ îðéåļ åþþéåŕåñçé öñ îÖŠ ŵĥéñ ûšéŕš åðð å þŕöĝŕéššîvé ŵéб åþþ ţö ţĥé ĥömé šçŕééñ, ðéƒîñé åñ ᐅ`apple-touch-icon`ᐊ. Îţ mûšţ þöîñţ ţö å ñöñ-ţŕåñšþåŕéñţ 192þx (öŕ 180þx) šqûåŕé ÞÑĜ. ᐅ[ᐊĻéåŕñ Möŕéᐅ](https://web.dev/apple-touch-icon/)ᐊ. 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]"
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "[Ðöéš ñöţ þŕövîðé å våļîð ᐅ`apple-touch-icon`ᐊ one two three four five six]"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "[ᐅ`apple-touch-icon-precomposed`ᐊ îš öûţ öƒ ðåţé; ᐅ`apple-touch-icon`ᐊ îš þŕéƒéŕŕéð. one two three four five six seven eight]"
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "[Þŕövîðéš å våļîð ᐅ`apple-touch-icon`ᐊ one two three four five]"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "[Çûŕŕéñţ Våļûé one two]"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "`<video>` êĺêḿêńt̂ś ĉón̂t́âín̂ á `<track>` êĺêḿêńt̂ ẃît́ĥ `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "F̂ór̂ íd̂éâĺ âṕp̂éâŕâńĉé ôń îÓŜ ẃĥén̂ úŝér̂ś âd́d̂ á p̂ŕôǵr̂éŝśîv́ê ẃêb́ âṕp̂ t́ô t́ĥé ĥóm̂é ŝćr̂éêń, d̂éf̂ín̂é âń `apple-touch-icon`. Ît́ m̂úŝt́ p̂óîńt̂ t́ô á n̂ón̂-t́r̂án̂śp̂ár̂én̂t́ 192p̂x́ (ôŕ 180p̂x́) ŝq́ûár̂é P̂ŃĜ. [Ĺêár̂ń m̂ór̂é âb́ôút̂ `apple-touch-icon`](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "D̂óêś n̂ót̂ ṕr̂óv̂íd̂é â v́âĺîd́ `apple-touch-icon`"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "`apple-touch-icon-precomposed` îś ôút̂ óf̂ d́ât́ê; `apple-touch-icon` íŝ ṕr̂éf̂ér̂ŕêd́."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "P̂ŕôv́îd́êś â v́âĺîd́ `apple-touch-icon`"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Ĉúr̂ŕêńt̂ V́âĺûé"
|
|
547
535
|
},
|
|
@@ -1791,10 +1779,10 @@
|
|
|
1791
1779
|
"message": "P̂ér̂f́ôŕm̂án̂ćê"
|
|
1792
1780
|
},
|
|
1793
1781
|
"lighthouse-core/config/default-config.js | pwaCategoryDescription": {
|
|
1794
|
-
"message": "T̂h́êśê ćĥéĉḱŝ v́âĺîd́ât́ê t́ĥé âśp̂éĉt́ŝ óf̂ á P̂ŕôǵr̂éŝśîv́ê Ẃêb́ Âṕp̂. [Ĺêár̂ń m̂ór̂é](https://
|
|
1782
|
+
"message": "T̂h́êśê ćĥéĉḱŝ v́âĺîd́ât́ê t́ĥé âśp̂éĉt́ŝ óf̂ á P̂ŕôǵr̂éŝśîv́ê Ẃêb́ Âṕp̂. [Ĺêár̂ń m̂ór̂é](https://web.dev/pwa-checklist/)."
|
|
1795
1783
|
},
|
|
1796
1784
|
"lighthouse-core/config/default-config.js | pwaCategoryManualDescription": {
|
|
1797
|
-
"message": "T̂h́êśê ćĥéĉḱŝ ár̂é r̂éq̂úîŕêd́ b̂ý t̂h́ê b́âśêĺîńê [ṔŴÁ Ĉh́êćk̂ĺîśt̂](https://
|
|
1785
|
+
"message": "T̂h́êśê ćĥéĉḱŝ ár̂é r̂éq̂úîŕêd́ b̂ý t̂h́ê b́âśêĺîńê [ṔŴÁ Ĉh́êćk̂ĺîśt̂](https://web.dev/pwa-checklist/) b́ût́ âŕê ńôt́ âút̂óm̂át̂íĉál̂ĺŷ ćĥéĉḱêd́ b̂ý L̂íĝh́t̂h́ôúŝé. T̂h́êý d̂ó n̂ót̂ áf̂f́êćt̂ ýôúr̂ śĉór̂é b̂út̂ ít̂'ś îḿp̂ór̂t́âńt̂ t́ĥát̂ ýôú v̂ér̂íf̂ý t̂h́êḿ m̂án̂úâĺl̂ý."
|
|
1798
1786
|
},
|
|
1799
1787
|
"lighthouse-core/config/default-config.js | pwaCategoryTitle": {
|
|
1800
1788
|
"message": "P̂ẂÂ"
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "Los elementos `<video>` contienen un elemento `<track>` con `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "Para que el aspecto en iOS sea perfecto cuando los usuarios agreguen una app web progresiva a la pantalla principal, define un atributo `apple-touch-icon`. El atributo debe apuntar a un archivo PNG cuadrado de 192 px (o 180 px) que no sea transparente. [Obtén más información](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "No proporciona un ícono `apple-touch-icon` válido"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "El atributo `apple-touch-icon-precomposed` está desactualizado; usa en su lugar`apple-touch-icon`."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Proporciona un `apple-touch-icon` válido"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Valor actual"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "Los elementos `<video>` contienen un elemento `<track>` con el atributo `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "Para que el aspecto en iOS sea perfecto cuando los usuarios añadan una aplicación web progresiva a la pantalla de inicio, define un `apple-touch-icon`. Debe apuntar a una imagen PNG cuadrada de 192 px (o 180 px) que sea opaca. [Más información](https://web.dev/apple-touch-icon/)"
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "No proporciona un `apple-touch-icon` válido"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "`apple-touch-icon-precomposed` está obsoleto; se recomienda usar `apple-touch-icon`."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Proporciona un `apple-touch-icon` válido"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Valor actual"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "Elementit (`<video>`) sisältävät elementin (`<track>`), jossa on `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "Määritä `apple-touch-icon`, jotta iOS-näkyvyys on paras mahdollinen, kun käyttäjä lisää progressiivisen web-sovelluksen aloitusnäytölle. Sen on viitattava läpinäkymättömään neliön muotoiseen (192 px tai 180 px) PNG-tiedostoon. [Lue lisää](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "Ei sisällä kelvollista `apple-touch-icon`-arvoa"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "`apple-touch-icon-precomposed` on vanhentunut; `apple-touch-icon`-määritettä suositellaan."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Sisältää kelvollisen `apple-touch-icon`-määritteen"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Nykyinen arvo"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "Naglalaman ng element na `<track>` na may `[kind=\"captions\"]` ang mga element ng `<video>`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "Para sa magandang hitsura sa iOS kapag nagdagdag ang mga user ng progressive web app sa home screen, tumukoy ng `apple-touch-icon`. Dapat itong nakadirekta sa isang hindi transparent na kuwadradong 192px (o 180px) PNG. [Matuto Pa](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "Hindi nagbibigay ng valid na `apple-touch-icon`"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "Hindi napapanahon ang `apple-touch-icon-precomposed`; mas gusto ang `apple-touch-icon`."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Nagbibigay ng valid na `apple-touch-icon`"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Kasalukuyang Value"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "Les éléments `<video>` contiennent un élément `<track>` avec `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "Définissez un attribut `apple-touch-icon` afin d'optimiser l'affichage de votre progressive web app sur l'écran d'accueil des appareils iOS. Il doit mener vers une image PNG carrée opaque de 180 ou 192 pixels. [Découvrez-en davantage](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "La valeur de l'attribut `apple-touch-icon` n'est pas valide"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "`apple-touch-icon-precomposed` est obsolète. Utilisez plutôt `apple-touch-icon`."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "La valeur de l'attribut `apple-touch-icon` est valide"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Valeur actuelle"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "רכיבי `<video>` מכילים רכיב `<track>` עם `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "כדי שהדף יוצג למשתמשים באופן אידיאלי ב-iOS לאחר הוספת Progressive Web App למסך הבית, מומלץ להגדיר `apple-touch-icon`. המאפיין חייב להפנות לתמונת PNG לא שקופה בפורמט ריבוע בגודל 192 פיקסלים (או 180 פיקסלים). [מידע נוסף](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "הדף לא מכיל `apple-touch-icon` חוקי"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "`apple-touch-icon-precomposed` לא עדכני; עדיף להשתמש ב-`apple-touch-icon`."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "האתר מכיל `apple-touch-icon` חוקי"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "ערך נוכחי"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "`<video>` एलिमेंट में `[kind=\"captions\"]` वाला एक `<track>` एलिमेंट है"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "उपयोगकर्ता जब होम स्क्रीन पर प्रगतिशील वेब ऐप्लिकेशन जोड़ें, तो iOS पर वह अच्छे से नज़र आए, इसके लिए `apple-touch-icon` तय करें. यह ज़रूरी है कि यह आइकॉन किसी ऐसे 192px (या 180px) के वर्गाकार PNG की तरफ़ इशारा करे जिसके आर-पार न देखा जा सके. [ज़्यादा जानें](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "एक सही `apple-touch-icon` नहीं उपलब्ध कराता"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "`apple-touch-icon-precomposed` पुराना हो गया है; `apple-touch-icon` को प्राथमिकता दी जाती है."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "एक सही `apple-touch-icon` देता है"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "मौजूदा मान"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "Elementi `<video>` sadržavaju element `<track>` s `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "Za idealan izgled na iOS-u kad korisnici na početni zaslon dodaju progresivnu web-aplikaciju definirajte `apple-touch-icon`. Mora ukazivati na neprozirni kvadratni PNG od 192 px (ili 180 px). [Saznajte više](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "Ne pruža valjani `apple-touch-icon`"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "`apple-touch-icon-precomposed` je zastario; prednost ima `apple-touch-icon`."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Ima valjanu ikonu `apple-touch-icon`"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Trenutačna vrijednost"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "A(z) `<video>` elemekhez `[kind=\"captions\"]` tartalmú `<track>` elem tartozik"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "Ha azt szeretné, hogy a megjelenés ideális legyen iOS rendszeren, amikor a felhasználók progresszív webes alkalmazást adnak hozzá a kezdőképernyőhöz, határozzon meg egy `apple-touch-icon` elemet. Az ikonnak 192 képpont (vagy 180 képpont) méretű, nem átlátszó, négyzetes PNG-re kell mutatnia. [További információ](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "Nincs érvényes `apple-touch-icon`"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "A(z) `apple-touch-icon-precomposed` elavult; a(z) `apple-touch-icon` használandó helyette."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Érvényes `apple-touch-icon` elemet tartalmaz"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Jelenlegi érték"
|
|
547
535
|
},
|
|
@@ -530,18 +530,6 @@
|
|
|
530
530
|
"lighthouse-core/audits/accessibility/video-caption.js | title": {
|
|
531
531
|
"message": "Elemen `<video>` memuat elemen `<track>` dengan `[kind=\"captions\"]`"
|
|
532
532
|
},
|
|
533
|
-
"lighthouse-core/audits/apple-touch-icon.js | description": {
|
|
534
|
-
"message": "Untuk tampilan ideal pada iOS saat pengguna menambahkan progressive web app ke layar utama, tentukan `apple-touch-icon`. Ikon harus mengarah ke PNG persegi 192 piksel (atau 180 piksel) yang tidak transparan. [Pelajari Lebih Lanjut](https://web.dev/apple-touch-icon/)."
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "Tidak menyediakan `apple-touch-icon` yang valid"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "`apple-touch-icon-precomposed` sudah usang; `apple-touch-icon` dipilih."
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "Memberikan `apple-touch-icon` yang valid"
|
|
544
|
-
},
|
|
545
533
|
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
546
534
|
"message": "Nilai Saat Ini"
|
|
547
535
|
},
|