lighthouse 12.4.0 → 12.5.0-dev.20250325
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/audits/audit.js +3 -1
- package/core/audits/bootup-time.js +1 -1
- package/core/audits/byte-efficiency/duplicated-javascript.js +1 -1
- package/core/audits/byte-efficiency/efficient-animated-content.js +1 -1
- package/core/audits/byte-efficiency/legacy-javascript.d.ts +0 -65
- package/core/audits/byte-efficiency/legacy-javascript.js +11 -363
- package/core/audits/byte-efficiency/modern-image-formats.js +1 -1
- package/core/audits/byte-efficiency/offscreen-images.js +4 -3
- package/core/audits/byte-efficiency/render-blocking-resources.js +6 -3
- package/core/audits/byte-efficiency/unminified-css.js +2 -1
- package/core/audits/byte-efficiency/unminified-javascript.js +2 -1
- package/core/audits/byte-efficiency/unused-css-rules.js +1 -1
- package/core/audits/byte-efficiency/unused-javascript.js +2 -2
- package/core/audits/byte-efficiency/uses-long-cache-ttl.js +1 -1
- package/core/audits/byte-efficiency/uses-optimized-images.js +1 -1
- package/core/audits/byte-efficiency/uses-responsive-images.js +1 -1
- package/core/audits/byte-efficiency/uses-text-compression.js +2 -1
- package/core/audits/critical-request-chains.js +5 -3
- package/core/audits/dobetterweb/dom-size.js +1 -1
- package/core/audits/dobetterweb/uses-http2.js +1 -1
- package/core/audits/insights/cls-culprits-insight.js +1 -1
- package/core/audits/insights/document-latency-insight.js +1 -1
- package/core/audits/insights/dom-size-insight.js +1 -1
- package/core/audits/insights/{long-critical-network-tree-insight.d.ts → duplicated-javascript-insight.d.ts} +3 -3
- package/core/audits/insights/duplicated-javascript-insight.js +54 -0
- package/core/audits/insights/font-display-insight.js +8 -7
- package/core/audits/insights/forced-reflow-insight.d.ts +10 -0
- package/core/audits/insights/forced-reflow-insight.js +64 -12
- package/core/audits/insights/image-delivery-insight.js +9 -10
- package/core/audits/insights/insight-audit.js +9 -4
- package/core/audits/insights/interaction-to-next-paint-insight.js +1 -1
- package/core/audits/insights/lcp-discovery-insight.js +1 -1
- package/core/audits/insights/lcp-phases-insight.js +1 -1
- package/core/audits/insights/network-dependency-tree-insight.d.ts +11 -0
- package/core/audits/insights/{long-critical-network-tree-insight.js → network-dependency-tree-insight.js} +7 -7
- package/core/audits/insights/render-blocking-insight.js +1 -1
- package/core/audits/insights/slow-css-selector-insight.js +1 -1
- package/core/audits/insights/third-parties-insight.js +1 -1
- package/core/audits/insights/use-cache-insight.d.ts +11 -0
- package/core/audits/insights/use-cache-insight.js +61 -0
- package/core/audits/insights/viewport-insight.js +1 -1
- package/core/audits/largest-contentful-paint-element.js +7 -3
- package/core/audits/layout-shifts.js +5 -2
- package/core/audits/lcp-lazy-loaded.js +1 -1
- package/core/audits/long-tasks.js +6 -4
- package/core/audits/mainthread-work-breakdown.js +1 -1
- package/core/audits/metrics/first-contentful-paint.js +4 -2
- package/core/audits/metrics/interactive.js +6 -3
- package/core/audits/metrics/largest-contentful-paint.js +7 -3
- package/core/audits/metrics/max-potential-fid.js +6 -3
- package/core/audits/metrics/speed-index.js +6 -3
- package/core/audits/metrics/total-blocking-time.js +6 -3
- package/core/audits/metrics.js +4 -3
- package/core/audits/predictive-perf.js +4 -3
- package/core/audits/prioritize-lcp-image.js +5 -3
- package/core/audits/redirects.js +4 -2
- package/core/audits/script-treemap-data.js +8 -4
- package/core/audits/third-party-facades.js +1 -1
- package/core/audits/third-party-summary.js +1 -1
- package/core/audits/uses-rel-preconnect.js +7 -5
- package/core/audits/uses-rel-preload.js +5 -3
- package/core/computed/computed-artifact.d.ts +5 -1
- package/core/computed/computed-artifact.js +23 -2
- package/core/computed/critical-request-chains.d.ts +5 -1
- package/core/computed/critical-request-chains.js +4 -4
- package/core/computed/js-bundles.d.ts +1 -1
- package/core/computed/metrics/first-contentful-paint-all-frames.js +1 -1
- package/core/computed/metrics/first-contentful-paint.js +1 -1
- package/core/computed/metrics/interactive.js +1 -1
- package/core/computed/metrics/lantern-first-contentful-paint.js +1 -1
- package/core/computed/metrics/lantern-interactive.js +1 -1
- package/core/computed/metrics/lantern-largest-contentful-paint.js +1 -1
- package/core/computed/metrics/lantern-max-potential-fid.js +1 -1
- package/core/computed/metrics/lantern-metric.js +1 -1
- package/core/computed/metrics/lantern-speed-index.js +1 -1
- package/core/computed/metrics/lantern-total-blocking-time.js +1 -1
- package/core/computed/metrics/largest-contentful-paint-all-frames.js +1 -1
- package/core/computed/metrics/largest-contentful-paint.js +1 -1
- package/core/computed/metrics/lcp-breakdown.js +1 -1
- package/core/computed/metrics/max-potential-fid.js +1 -1
- package/core/computed/metrics/metric.js +2 -0
- package/core/computed/metrics/speed-index.js +1 -1
- package/core/computed/metrics/time-to-first-byte.js +1 -1
- package/core/computed/metrics/timing-summary.d.ts +5 -2
- package/core/computed/metrics/timing-summary.js +8 -4
- package/core/computed/metrics/total-blocking-time.js +1 -1
- package/core/computed/module-duplication.d.ts +1 -1
- package/core/computed/navigation-insights.d.ts +11 -3
- package/core/computed/navigation-insights.js +7 -4
- package/core/computed/page-dependency-graph.d.ts +7 -3
- package/core/computed/page-dependency-graph.js +6 -5
- package/core/computed/tbt-impact-tasks.js +1 -1
- package/core/computed/trace-engine-result.d.ts +36 -2
- package/core/computed/trace-engine-result.js +119 -25
- package/core/computed/unused-javascript-summary.d.ts +2 -2
- package/core/computed/unused-javascript-summary.js +1 -1
- package/core/config/default-config.js +19 -15
- package/core/config/experimental-config.js +19 -0
- package/core/gather/gatherers/source-maps.d.ts +1 -0
- package/core/gather/gatherers/source-maps.js +3 -0
- package/core/gather/gatherers/trace-elements.d.ts +4 -4
- package/core/gather/gatherers/trace-elements.js +8 -4
- package/core/gather/gatherers/trace.js +5 -0
- package/core/lib/bf-cache-strings.d.ts +0 -122
- package/core/lib/bf-cache-strings.js +1 -2
- package/core/lib/deprecation-description.js +2 -1
- package/core/lib/legacy-javascript/legacy-javascript.d.ts +29 -0
- package/core/lib/legacy-javascript/legacy-javascript.js +351 -0
- package/core/lib/legacy-javascript/polyfill-graph-data.json +93 -0
- package/core/lib/legacy-javascript/polyfill-module-data.json +623 -0
- package/core/lib/trace-engine.d.ts +6 -1
- package/core/lib/trace-engine.js +1 -2
- package/package.json +10 -8
- package/shared/localization/locales/ar-XB.json +783 -513
- package/shared/localization/locales/ar.json +783 -513
- package/shared/localization/locales/bg.json +933 -663
- package/shared/localization/locales/ca.json +925 -655
- package/shared/localization/locales/cs.json +926 -656
- package/shared/localization/locales/da.json +926 -656
- package/shared/localization/locales/de.json +803 -533
- package/shared/localization/locales/el.json +928 -658
- package/shared/localization/locales/en-GB.json +929 -659
- package/shared/localization/locales/en-US.json +593 -551
- package/shared/localization/locales/en-XA.json +28 -508
- package/shared/localization/locales/en-XL.json +593 -551
- package/shared/localization/locales/es-419.json +928 -658
- package/shared/localization/locales/es.json +787 -517
- package/shared/localization/locales/fi.json +925 -655
- package/shared/localization/locales/fil.json +929 -659
- package/shared/localization/locales/fr.json +927 -657
- package/shared/localization/locales/he.json +795 -528
- package/shared/localization/locales/hi.json +798 -528
- package/shared/localization/locales/hr.json +929 -659
- package/shared/localization/locales/hu.json +926 -656
- package/shared/localization/locales/id.json +926 -656
- package/shared/localization/locales/it.json +930 -660
- package/shared/localization/locales/ja.json +927 -657
- package/shared/localization/locales/ko.json +936 -666
- package/shared/localization/locales/lt.json +933 -663
- package/shared/localization/locales/lv.json +809 -539
- package/shared/localization/locales/nl.json +925 -655
- package/shared/localization/locales/no.json +928 -658
- package/shared/localization/locales/pl.json +927 -657
- package/shared/localization/locales/pt-PT.json +841 -571
- package/shared/localization/locales/pt.json +841 -571
- package/shared/localization/locales/ro.json +925 -655
- package/shared/localization/locales/ru.json +935 -668
- package/shared/localization/locales/sk.json +925 -655
- package/shared/localization/locales/sl.json +927 -657
- package/shared/localization/locales/sr-Latn.json +925 -655
- package/shared/localization/locales/sr.json +925 -655
- package/shared/localization/locales/sv.json +936 -666
- package/shared/localization/locales/ta.json +935 -668
- package/shared/localization/locales/te.json +785 -515
- package/shared/localization/locales/th.json +813 -543
- package/shared/localization/locales/tr.json +927 -657
- package/shared/localization/locales/uk.json +795 -525
- package/shared/localization/locales/vi.json +929 -659
- package/shared/localization/locales/zh-HK.json +926 -656
- package/shared/localization/locales/zh-TW.json +784 -514
- package/shared/localization/locales/zh.json +926 -656
- package/tsconfig.json +2 -1
- package/types/artifacts.d.ts +2 -1
- package/core/audits/byte-efficiency/polyfill-graph-data.json +0 -53
|
@@ -660,7 +660,10 @@
|
|
|
660
660
|
"message": "Gumamit ng mga format ng video para sa animated na content"
|
|
661
661
|
},
|
|
662
662
|
"core/audits/byte-efficiency/legacy-javascript.js | description": {
|
|
663
|
-
"message": "Nagbibigay-daan ang mga polyfill at transform na magamit ng mga legacy na browser ang mga bagong feature ng JavaScript. Gayunpaman, marami ang hindi kinakailangan para sa mga modernong browser.
|
|
663
|
+
"message": "Nagbibigay-daan ang mga polyfill at transform na magamit ng mga legacy na browser ang mga bagong feature ng JavaScript. Gayunpaman, marami ang hindi kinakailangan para sa mga modernong browser. Pag-isipang baguhin ang iyong proseso ng pagbuo sa JavaScript para hindi ma-transpile ang mga [Baseline](https://web.dev/baseline) na feature, maliban kung alam mong dapat mong masuportahan ang mga legacy na browser. [Matutunan kung bakit puwedeng mag-deploy ang karamihan ng mga site ng ES6+ na code nang hindi nagta-transpile](https://philipwalton.com/articles/the-state-of-es5-on-the-web/)"
|
|
664
|
+
},
|
|
665
|
+
"core/audits/byte-efficiency/legacy-javascript.js | detectedCoreJs2Warning": {
|
|
666
|
+
"message": "Na-detect ang bersyon 2 ng core-js sa page. Dapat kang mag-upgrade sa bersyon 3 para sa maraming pagpapahusay sa performance."
|
|
664
667
|
},
|
|
665
668
|
"core/audits/byte-efficiency/legacy-javascript.js | title": {
|
|
666
669
|
"message": "Iwasan ang paghahatid ng legacy na JavaScript sa mga modernong browser"
|
|
@@ -761,6 +764,18 @@
|
|
|
761
764
|
"core/audits/byte-efficiency/uses-text-compression.js | title": {
|
|
762
765
|
"message": "I-enable ang compression ng text"
|
|
763
766
|
},
|
|
767
|
+
"core/audits/clickjacking-mitigation.js | columnSeverity": {
|
|
768
|
+
"message": "Kalalaan"
|
|
769
|
+
},
|
|
770
|
+
"core/audits/clickjacking-mitigation.js | description": {
|
|
771
|
+
"message": "Ang header ng `X-Frame-Options` (XFO) o direktiba ng `frame-ancestors` sa kontrol sa header ng `Content-Security-Policy` (CSP) kung saan puwedeng mag-embed ng page. Puwedeng i-mitigate ng mga ito ang mga clickjacking attack sa pamamagitan ng pag-block sa ilan sa o lahat ng site sa pag-embed sa page. [Matuto pa tungkol sa pag-mitigate sa clickjacking](https://developer.chrome.com/docs/lighthouse/best-practices/clickjacking-mitigation)."
|
|
772
|
+
},
|
|
773
|
+
"core/audits/clickjacking-mitigation.js | noClickjackingMitigation": {
|
|
774
|
+
"message": "Walang nakitang patakaran sa kontrol ng frame"
|
|
775
|
+
},
|
|
776
|
+
"core/audits/clickjacking-mitigation.js | title": {
|
|
777
|
+
"message": "I-mitigate ang clickjacking gamit ang XFO o CSP"
|
|
778
|
+
},
|
|
764
779
|
"core/audits/critical-request-chains.js | description": {
|
|
765
780
|
"message": "Ipinapakita sa iyo ng Mga Chain ng Mahahalagang Kahilingan kung anong mga resource ang nilo-load nang may mataas na priyoridad. Pag-isipang paikliin ang mga chain, paliitin ang mga dina-download na resource, o ipagpaliban ang pag-download ng mga hindi kinakailangang resource para mapabilis ang pag-load ng page. [Alamin kung paano iwasan ang pagsusunod-sunod ng mahahalagang kahilingan](https://developer.chrome.com/docs/lighthouse/performance/critical-request-chains/)."
|
|
766
781
|
},
|
|
@@ -1040,6 +1055,9 @@
|
|
|
1040
1055
|
"core/audits/image-size-responsive.js | title": {
|
|
1041
1056
|
"message": "Nagpapakita ng mga larawang may naaangkop na resolution"
|
|
1042
1057
|
},
|
|
1058
|
+
"core/audits/insights/cls-culprits-insight.js | columnScore": {
|
|
1059
|
+
"message": "Score ng pagbabago sa layout"
|
|
1060
|
+
},
|
|
1043
1061
|
"core/audits/is-on-https.js | allowed": {
|
|
1044
1062
|
"message": "Pinapayagan"
|
|
1045
1063
|
},
|
|
@@ -1658,6 +1676,9 @@
|
|
|
1658
1676
|
"core/config/default-config.js | firstPaintImprovementsGroupTitle": {
|
|
1659
1677
|
"message": "Mga Pagpapahusay sa First Paint"
|
|
1660
1678
|
},
|
|
1679
|
+
"core/config/default-config.js | insightGroupTitle": {
|
|
1680
|
+
"message": "Mga Insight"
|
|
1681
|
+
},
|
|
1661
1682
|
"core/config/default-config.js | metricGroupTitle": {
|
|
1662
1683
|
"message": "Mga Sukatan"
|
|
1663
1684
|
},
|
|
@@ -1721,1013 +1742,1259 @@
|
|
|
1721
1742
|
"core/gather/timespan-runner.js | warningNavigationDetected": {
|
|
1722
1743
|
"message": "May na-detect na nabigasyon ng page habang gumagana. Hindi inirerekomenda ang paggamit ng timespan mode para mag-audit ng mga nabigasyon ng page. Gamitin ang navigation mode para mag-audit ng mga nabigasyon ng page para sa mas mahusay na third-party na attribution at pag-detect ng pangunahing thread."
|
|
1723
1744
|
},
|
|
1724
|
-
"core/lib/
|
|
1725
|
-
"message": "
|
|
1745
|
+
"core/lib/csp-evaluator.js | allowlistFallback": {
|
|
1746
|
+
"message": "Pag-isipang magdagdag ng https: at http: na URL scheme (binabalewala ng mga browser na sumusuporta sa `'strict-dynamic'`) para maging backward compatible sa mga lumang browser."
|
|
1726
1747
|
},
|
|
1727
|
-
"core/lib/
|
|
1728
|
-
"message": "
|
|
1748
|
+
"core/lib/csp-evaluator.js | deprecatedDisownOpener": {
|
|
1749
|
+
"message": "Hindi na ginagamit ang `disown-opener` simula sa CSP3. Pakigamit na lang ang header na Cross-Origin-Opener-Policy."
|
|
1729
1750
|
},
|
|
1730
|
-
"core/lib/
|
|
1731
|
-
"message": "
|
|
1751
|
+
"core/lib/csp-evaluator.js | deprecatedReferrer": {
|
|
1752
|
+
"message": "Hindi na ginagamit ang `referrer` simula sa CSP2. Pakigamit na lang ang header na Referrer-Policy."
|
|
1732
1753
|
},
|
|
1733
|
-
"core/lib/
|
|
1734
|
-
"message": "
|
|
1754
|
+
"core/lib/csp-evaluator.js | deprecatedReflectedXSS": {
|
|
1755
|
+
"message": "Hindi na ginagamit ang `reflected-xss` simula sa CSP2. Pakigamit na lang ang header na X-XSS-Protection."
|
|
1735
1756
|
},
|
|
1736
|
-
"core/lib/
|
|
1737
|
-
"message": "
|
|
1757
|
+
"core/lib/csp-evaluator.js | missingBaseUri": {
|
|
1758
|
+
"message": "Binibigyang-daan ng nawawalang `base-uri` ang mga na-inject na `<base>` na tag na itakda ang base na URL para sa lahat ng relative URL (hal. mga script) sa isang domain na kinokontrol ng attacker. Pag-isipang itakda ang `base-uri` sa `'none'` o `'self'`."
|
|
1738
1759
|
},
|
|
1739
|
-
"core/lib/
|
|
1740
|
-
"message": "
|
|
1760
|
+
"core/lib/csp-evaluator.js | missingObjectSrc": {
|
|
1761
|
+
"message": "Pinapayagan ng kulang na `object-src` ang pag-inject ng mga plugin na nag-e-execute ng mga hindi ligtas na script. Pag-isipang itakda ang `object-src` sa `'none'` kung magagawa mo."
|
|
1741
1762
|
},
|
|
1742
|
-
"core/lib/
|
|
1743
|
-
"message": "
|
|
1763
|
+
"core/lib/csp-evaluator.js | missingScriptSrc": {
|
|
1764
|
+
"message": "Nawawala ang direktibang `script-src`. Puwede nitong bigyang-daan ang pag-execute ng mga hindi ligtas na script."
|
|
1744
1765
|
},
|
|
1745
|
-
"core/lib/
|
|
1746
|
-
"message": "
|
|
1766
|
+
"core/lib/csp-evaluator.js | missingSemicolon": {
|
|
1767
|
+
"message": "Nakalimutan mo ba ang semicolon? Mukhang direktiba ang {keyword} at hindi isang keyword."
|
|
1747
1768
|
},
|
|
1748
|
-
"core/lib/
|
|
1749
|
-
"message": "
|
|
1769
|
+
"core/lib/csp-evaluator.js | nonceCharset": {
|
|
1770
|
+
"message": "Dapat gamitin ng mga nonce ang base64 na charset."
|
|
1750
1771
|
},
|
|
1751
|
-
"core/lib/
|
|
1752
|
-
"message": "
|
|
1772
|
+
"core/lib/csp-evaluator.js | nonceLength": {
|
|
1773
|
+
"message": "Dapat ay hindi bababa sa 8 character ang haba ng mga nonce."
|
|
1753
1774
|
},
|
|
1754
|
-
"core/lib/
|
|
1755
|
-
"message": "
|
|
1775
|
+
"core/lib/csp-evaluator.js | plainUrlScheme": {
|
|
1776
|
+
"message": "Iwasang gumamit ng mga plain na URL scheme ({keyword}) sa direktibang ito. Pinapayagan ng mga plain na URL scheme na ma-source ang mga script mula sa hindi ligtas na domain."
|
|
1756
1777
|
},
|
|
1757
|
-
"core/lib/
|
|
1758
|
-
"message": "
|
|
1778
|
+
"core/lib/csp-evaluator.js | plainWildcards": {
|
|
1779
|
+
"message": "Iwasang gumamit ng mga plain na wildcard ({keyword}) sa direktibang ito. Pinapayagan ng mga plain na wildcard na ma-source ang mga script mula sa hindi ligtas na domain."
|
|
1759
1780
|
},
|
|
1760
|
-
"core/lib/
|
|
1761
|
-
"message": "
|
|
1781
|
+
"core/lib/csp-evaluator.js | reportToOnly": {
|
|
1782
|
+
"message": "Nako-configure lang ang destinasyon ng pag-uulat sa pamamagitan ng report-to na direktiba. Sinusuportahan lang ang direktibang ito sa mga browser na batay sa Chromium kung kaya inirerekomendang gumamit din ng `report-uri` na direktiba."
|
|
1762
1783
|
},
|
|
1763
|
-
"core/lib/
|
|
1764
|
-
"message": "
|
|
1784
|
+
"core/lib/csp-evaluator.js | reportingDestinationMissing": {
|
|
1785
|
+
"message": "Walang CSP na nagko-configure ng destinasyon ng pag-uulat. Pinapahirap nitong mapanatili ang CSP sa paglipas ng panahon at masubaybayan ang anumang pagkasira."
|
|
1765
1786
|
},
|
|
1766
|
-
"core/lib/
|
|
1767
|
-
"message": "
|
|
1787
|
+
"core/lib/csp-evaluator.js | strictDynamic": {
|
|
1788
|
+
"message": "Puwedeng madalas na ma-bypass ang mga allowlist ng host. Pag-isipang gumamit ng mga CSP nonce o hash sa halip, kasama ng `'strict-dynamic'` kung kinakailangan."
|
|
1768
1789
|
},
|
|
1769
|
-
"core/lib/
|
|
1770
|
-
"message": "Hindi
|
|
1790
|
+
"core/lib/csp-evaluator.js | unknownDirective": {
|
|
1791
|
+
"message": "Hindi kilalang direktiba ng CSP."
|
|
1771
1792
|
},
|
|
1772
|
-
"core/lib/
|
|
1773
|
-
"message": "
|
|
1793
|
+
"core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1794
|
+
"message": "Mukhang invalid na keyword ang {keyword}."
|
|
1774
1795
|
},
|
|
1775
|
-
"core/lib/
|
|
1776
|
-
"message": "
|
|
1796
|
+
"core/lib/csp-evaluator.js | unsafeInline": {
|
|
1797
|
+
"message": "Nagbibigay-daan ang `'unsafe-inline'` sa pag-execute ng mga hindi ligtas na in-page na script at tagapangasiwa ng event. Pag-isipang gumamit ng mga CSP nonce o hash para indibidwal na payagan ang mga script."
|
|
1777
1798
|
},
|
|
1778
|
-
"core/lib/
|
|
1779
|
-
"message": "
|
|
1799
|
+
"core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1800
|
+
"message": "Pag-isipang magdagdag ng `'unsafe-inline'` (binabalewala ng mga browser na sumusuporta sa mga nonce/hash) para maging backward compatible sa mga lumang browser."
|
|
1780
1801
|
},
|
|
1781
|
-
"core/lib/
|
|
1782
|
-
"message": "
|
|
1802
|
+
"core/lib/deprecation-description.js | feature": {
|
|
1803
|
+
"message": "Tingnan ang page ng status ng feature para sa higit pang detalye."
|
|
1783
1804
|
},
|
|
1784
|
-
"core/lib/
|
|
1785
|
-
"message": "
|
|
1805
|
+
"core/lib/deprecation-description.js | milestone": {
|
|
1806
|
+
"message": "Magkakaroon ng bisa ang pagbabagong ito sa milestone na {milestone}."
|
|
1786
1807
|
},
|
|
1787
|
-
"core/lib/
|
|
1788
|
-
"message": "
|
|
1808
|
+
"core/lib/deprecation-description.js | title": {
|
|
1809
|
+
"message": "Gumagamit ng Hindi na Ginagamit na Feature"
|
|
1789
1810
|
},
|
|
1790
|
-
"core/lib/
|
|
1791
|
-
"message": "
|
|
1811
|
+
"core/lib/i18n/i18n.js | columnBlockingTime": {
|
|
1812
|
+
"message": "Oras ng Pag-block ng Pangunahing Thread"
|
|
1792
1813
|
},
|
|
1793
|
-
"core/lib/
|
|
1794
|
-
"message": "
|
|
1814
|
+
"core/lib/i18n/i18n.js | columnCacheTTL": {
|
|
1815
|
+
"message": "TTL ng Cache"
|
|
1795
1816
|
},
|
|
1796
|
-
"core/lib/
|
|
1797
|
-
"message": "
|
|
1817
|
+
"core/lib/i18n/i18n.js | columnDescription": {
|
|
1818
|
+
"message": "Paglalarawan"
|
|
1798
1819
|
},
|
|
1799
|
-
"core/lib/
|
|
1800
|
-
"message": "
|
|
1820
|
+
"core/lib/i18n/i18n.js | columnDuration": {
|
|
1821
|
+
"message": "Tagal"
|
|
1801
1822
|
},
|
|
1802
|
-
"core/lib/
|
|
1803
|
-
"message": "
|
|
1823
|
+
"core/lib/i18n/i18n.js | columnElement": {
|
|
1824
|
+
"message": "Elemento"
|
|
1804
1825
|
},
|
|
1805
|
-
"core/lib/
|
|
1806
|
-
"message": "
|
|
1826
|
+
"core/lib/i18n/i18n.js | columnFailingElem": {
|
|
1827
|
+
"message": "Mga Hindi Nakapasang Element"
|
|
1807
1828
|
},
|
|
1808
|
-
"core/lib/
|
|
1809
|
-
"message": "
|
|
1829
|
+
"core/lib/i18n/i18n.js | columnLocation": {
|
|
1830
|
+
"message": "Lokasyon"
|
|
1810
1831
|
},
|
|
1811
|
-
"core/lib/
|
|
1812
|
-
"message": "
|
|
1832
|
+
"core/lib/i18n/i18n.js | columnName": {
|
|
1833
|
+
"message": "Pangalan"
|
|
1813
1834
|
},
|
|
1814
|
-
"core/lib/
|
|
1815
|
-
"message": "
|
|
1835
|
+
"core/lib/i18n/i18n.js | columnRequests": {
|
|
1836
|
+
"message": "Mga Kahilingan"
|
|
1816
1837
|
},
|
|
1817
|
-
"core/lib/
|
|
1818
|
-
"message": "
|
|
1838
|
+
"core/lib/i18n/i18n.js | columnResourceSize": {
|
|
1839
|
+
"message": "Laki ng Resource"
|
|
1819
1840
|
},
|
|
1820
|
-
"core/lib/
|
|
1821
|
-
"message": "
|
|
1841
|
+
"core/lib/i18n/i18n.js | columnResourceType": {
|
|
1842
|
+
"message": "Uri ng Resource"
|
|
1822
1843
|
},
|
|
1823
|
-
"core/lib/
|
|
1824
|
-
"message": "
|
|
1844
|
+
"core/lib/i18n/i18n.js | columnSize": {
|
|
1845
|
+
"message": "Laki"
|
|
1825
1846
|
},
|
|
1826
|
-
"core/lib/
|
|
1827
|
-
"message": "
|
|
1847
|
+
"core/lib/i18n/i18n.js | columnSource": {
|
|
1848
|
+
"message": "Pinagmulan"
|
|
1828
1849
|
},
|
|
1829
|
-
"core/lib/
|
|
1830
|
-
"message": "
|
|
1850
|
+
"core/lib/i18n/i18n.js | columnStartTime": {
|
|
1851
|
+
"message": "Oras ng Pagsisimula"
|
|
1831
1852
|
},
|
|
1832
|
-
"core/lib/
|
|
1833
|
-
"message": "
|
|
1853
|
+
"core/lib/i18n/i18n.js | columnTimeSpent": {
|
|
1854
|
+
"message": "Oras na Ginugol"
|
|
1834
1855
|
},
|
|
1835
|
-
"core/lib/
|
|
1836
|
-
"message": "
|
|
1856
|
+
"core/lib/i18n/i18n.js | columnTransferSize": {
|
|
1857
|
+
"message": "Laki ng Paglipat"
|
|
1837
1858
|
},
|
|
1838
|
-
"core/lib/
|
|
1839
|
-
"message": "
|
|
1859
|
+
"core/lib/i18n/i18n.js | columnURL": {
|
|
1860
|
+
"message": "URL"
|
|
1840
1861
|
},
|
|
1841
|
-
"core/lib/
|
|
1842
|
-
"message": "
|
|
1862
|
+
"core/lib/i18n/i18n.js | columnWastedBytes": {
|
|
1863
|
+
"message": "Puwedeng Matipid"
|
|
1843
1864
|
},
|
|
1844
|
-
"core/lib/
|
|
1845
|
-
"message": "
|
|
1865
|
+
"core/lib/i18n/i18n.js | columnWastedMs": {
|
|
1866
|
+
"message": "Puwedeng Matipid"
|
|
1846
1867
|
},
|
|
1847
|
-
"core/lib/
|
|
1848
|
-
"message": "
|
|
1868
|
+
"core/lib/i18n/i18n.js | cumulativeLayoutShiftMetric": {
|
|
1869
|
+
"message": "Cumulative Layout Shift"
|
|
1849
1870
|
},
|
|
1850
|
-
"core/lib/
|
|
1851
|
-
"message": "
|
|
1871
|
+
"core/lib/i18n/i18n.js | displayValueByteSavings": {
|
|
1872
|
+
"message": "Puwedeng makatipid ng {wastedBytes, number, bytes} KiB"
|
|
1852
1873
|
},
|
|
1853
|
-
"core/lib/
|
|
1854
|
-
"message": "
|
|
1874
|
+
"core/lib/i18n/i18n.js | displayValueElementsFound": {
|
|
1875
|
+
"message": "{nodeCount,plural, =1{1 element ang nakita}one{# element ang nakita}other{# na element ang nakita}}"
|
|
1855
1876
|
},
|
|
1856
|
-
"core/lib/
|
|
1857
|
-
"message": "
|
|
1877
|
+
"core/lib/i18n/i18n.js | displayValueMsSavings": {
|
|
1878
|
+
"message": "Puwedeng makatipid ng {wastedMs, number, milliseconds} ms"
|
|
1858
1879
|
},
|
|
1859
|
-
"core/lib/
|
|
1860
|
-
"message": "
|
|
1880
|
+
"core/lib/i18n/i18n.js | documentResourceType": {
|
|
1881
|
+
"message": "Dokumento"
|
|
1861
1882
|
},
|
|
1862
|
-
"core/lib/
|
|
1863
|
-
"message": "
|
|
1883
|
+
"core/lib/i18n/i18n.js | firstContentfulPaintMetric": {
|
|
1884
|
+
"message": "First Contentful Paint"
|
|
1864
1885
|
},
|
|
1865
|
-
"core/lib/
|
|
1866
|
-
"message": "
|
|
1886
|
+
"core/lib/i18n/i18n.js | firstMeaningfulPaintMetric": {
|
|
1887
|
+
"message": "First Meaningful Paint"
|
|
1867
1888
|
},
|
|
1868
|
-
"core/lib/
|
|
1869
|
-
"message": "
|
|
1889
|
+
"core/lib/i18n/i18n.js | fontResourceType": {
|
|
1890
|
+
"message": "Font"
|
|
1870
1891
|
},
|
|
1871
|
-
"core/lib/
|
|
1872
|
-
"message": "
|
|
1892
|
+
"core/lib/i18n/i18n.js | imageResourceType": {
|
|
1893
|
+
"message": "Larawan"
|
|
1873
1894
|
},
|
|
1874
|
-
"core/lib/
|
|
1875
|
-
"message": "
|
|
1895
|
+
"core/lib/i18n/i18n.js | interactionToNextPaint": {
|
|
1896
|
+
"message": "Interaction to Next Paint"
|
|
1876
1897
|
},
|
|
1877
|
-
"core/lib/
|
|
1878
|
-
"message": "
|
|
1898
|
+
"core/lib/i18n/i18n.js | interactiveMetric": {
|
|
1899
|
+
"message": "Time to Interactive"
|
|
1879
1900
|
},
|
|
1880
|
-
"core/lib/
|
|
1881
|
-
"message": "
|
|
1901
|
+
"core/lib/i18n/i18n.js | itemSeverityHigh": {
|
|
1902
|
+
"message": "Mataas"
|
|
1882
1903
|
},
|
|
1883
|
-
"core/lib/
|
|
1884
|
-
"message": "
|
|
1904
|
+
"core/lib/i18n/i18n.js | itemSeverityLow": {
|
|
1905
|
+
"message": "Mababa"
|
|
1885
1906
|
},
|
|
1886
|
-
"core/lib/
|
|
1887
|
-
"message": "
|
|
1907
|
+
"core/lib/i18n/i18n.js | itemSeverityMedium": {
|
|
1908
|
+
"message": "Katamtaman"
|
|
1888
1909
|
},
|
|
1889
|
-
"core/lib/
|
|
1890
|
-
"message": "
|
|
1910
|
+
"core/lib/i18n/i18n.js | largestContentfulPaintMetric": {
|
|
1911
|
+
"message": "Largest Contentful Paint"
|
|
1891
1912
|
},
|
|
1892
|
-
"core/lib/
|
|
1893
|
-
"message": "
|
|
1913
|
+
"core/lib/i18n/i18n.js | maxPotentialFIDMetric": {
|
|
1914
|
+
"message": "Max na Potensyal na First Input Delay"
|
|
1894
1915
|
},
|
|
1895
|
-
"core/lib/
|
|
1896
|
-
"message": "
|
|
1916
|
+
"core/lib/i18n/i18n.js | mediaResourceType": {
|
|
1917
|
+
"message": "Media"
|
|
1897
1918
|
},
|
|
1898
|
-
"core/lib/
|
|
1899
|
-
"message": "
|
|
1919
|
+
"core/lib/i18n/i18n.js | ms": {
|
|
1920
|
+
"message": "{timeInMs, number, milliseconds} ms"
|
|
1900
1921
|
},
|
|
1901
|
-
"core/lib/
|
|
1902
|
-
"message": "
|
|
1922
|
+
"core/lib/i18n/i18n.js | otherResourceType": {
|
|
1923
|
+
"message": "Iba pa"
|
|
1903
1924
|
},
|
|
1904
|
-
"core/lib/
|
|
1905
|
-
"message": "
|
|
1925
|
+
"core/lib/i18n/i18n.js | otherResourcesLabel": {
|
|
1926
|
+
"message": "Iba pang resource"
|
|
1906
1927
|
},
|
|
1907
|
-
"core/lib/
|
|
1908
|
-
"message": "
|
|
1928
|
+
"core/lib/i18n/i18n.js | scriptResourceType": {
|
|
1929
|
+
"message": "Script"
|
|
1909
1930
|
},
|
|
1910
|
-
"core/lib/
|
|
1911
|
-
"message": "
|
|
1931
|
+
"core/lib/i18n/i18n.js | seconds": {
|
|
1932
|
+
"message": "{timeInMs, number, seconds} s"
|
|
1912
1933
|
},
|
|
1913
|
-
"core/lib/
|
|
1914
|
-
"message": "
|
|
1934
|
+
"core/lib/i18n/i18n.js | speedIndexMetric": {
|
|
1935
|
+
"message": "Speed Index"
|
|
1915
1936
|
},
|
|
1916
|
-
"core/lib/
|
|
1917
|
-
"message": "
|
|
1937
|
+
"core/lib/i18n/i18n.js | stylesheetResourceType": {
|
|
1938
|
+
"message": "Stylesheet"
|
|
1918
1939
|
},
|
|
1919
|
-
"core/lib/
|
|
1920
|
-
"message": "
|
|
1940
|
+
"core/lib/i18n/i18n.js | thirdPartyResourceType": {
|
|
1941
|
+
"message": "Third-party"
|
|
1921
1942
|
},
|
|
1922
|
-
"core/lib/
|
|
1923
|
-
"message": "
|
|
1943
|
+
"core/lib/i18n/i18n.js | total": {
|
|
1944
|
+
"message": "Kabuuan"
|
|
1924
1945
|
},
|
|
1925
|
-
"core/lib/
|
|
1926
|
-
"message": "
|
|
1946
|
+
"core/lib/i18n/i18n.js | totalBlockingTimeMetric": {
|
|
1947
|
+
"message": "Total Blocking Time"
|
|
1927
1948
|
},
|
|
1928
|
-
"core/lib/
|
|
1929
|
-
"message": "
|
|
1949
|
+
"core/lib/i18n/i18n.js | totalResourceType": {
|
|
1950
|
+
"message": "Kabuuan"
|
|
1930
1951
|
},
|
|
1931
|
-
"core/lib/
|
|
1932
|
-
"message": "
|
|
1952
|
+
"core/lib/lh-error.js | badTraceRecording": {
|
|
1953
|
+
"message": "Nagkaroon ng problema sa pag-record ng trace sa pag-load ng iyong page. Paganahin ulit ang Lighthouse. ({errorCode})"
|
|
1933
1954
|
},
|
|
1934
|
-
"core/lib/
|
|
1935
|
-
"message": "
|
|
1955
|
+
"core/lib/lh-error.js | criTimeout": {
|
|
1956
|
+
"message": "Nag-timeout habang naghihintay para sa paunang koneksyon sa Protocol ng Debugger."
|
|
1936
1957
|
},
|
|
1937
|
-
"core/lib/
|
|
1938
|
-
"message": "
|
|
1958
|
+
"core/lib/lh-error.js | didntCollectScreenshots": {
|
|
1959
|
+
"message": "Hindi nangolekta ang Chrome ng anumang screenshot habang nilo-load ang page. Pakitiyak na may nakikitang content sa page, at pagkatapos ay subukang paganahin ulit ang Lighthouse. ({errorCode})"
|
|
1939
1960
|
},
|
|
1940
|
-
"core/lib/
|
|
1941
|
-
"message": "
|
|
1961
|
+
"core/lib/lh-error.js | dnsFailure": {
|
|
1962
|
+
"message": "Hindi malutas ng mga DNS server ang ibinigay na domain."
|
|
1942
1963
|
},
|
|
1943
|
-
"core/lib/
|
|
1944
|
-
"message": "
|
|
1964
|
+
"core/lib/lh-error.js | erroredRequiredArtifact": {
|
|
1965
|
+
"message": "Ang kinakailangang gatherer na {artifactName} ay nagkaroon ng error: {errorMessage}"
|
|
1945
1966
|
},
|
|
1946
|
-
"core/lib/
|
|
1947
|
-
"message": "
|
|
1967
|
+
"core/lib/lh-error.js | internalChromeError": {
|
|
1968
|
+
"message": "Nagkaroon ng internal na error sa Chrome. Paki-restart ang Chrome at subukan ulit na paganahin ang Lighthouse."
|
|
1948
1969
|
},
|
|
1949
|
-
"core/lib/
|
|
1950
|
-
"message": "
|
|
1970
|
+
"core/lib/lh-error.js | missingRequiredArtifact": {
|
|
1971
|
+
"message": "Hindi tumakbo ang kinakailangang gatherer na {artifactName}."
|
|
1951
1972
|
},
|
|
1952
|
-
"core/lib/
|
|
1953
|
-
"message": "
|
|
1973
|
+
"core/lib/lh-error.js | noFcp": {
|
|
1974
|
+
"message": "Hindi nag-paint ang page ng anumang content. Pakitiyak na papanatilihin mong nasa foreground ang window ng browser habang naglo-load at subukan ulit. ({errorCode})"
|
|
1954
1975
|
},
|
|
1955
|
-
"core/lib/
|
|
1956
|
-
"message": "
|
|
1976
|
+
"core/lib/lh-error.js | noLcp": {
|
|
1977
|
+
"message": "Hindi nagpakita ang page ng content na kwalipikado bilang Largest Contentful Paint (LCP). Tiyaking may valid na element ng LCP ang page at pagkatapos ay subukan ulit. ({errorCode})"
|
|
1957
1978
|
},
|
|
1958
|
-
"core/lib/
|
|
1959
|
-
"message": "
|
|
1979
|
+
"core/lib/lh-error.js | notHtml": {
|
|
1980
|
+
"message": "Hindi HTML ang ibinigay na page (inihatid bilang uri ng MIME {mimeType})."
|
|
1960
1981
|
},
|
|
1961
|
-
"core/lib/
|
|
1962
|
-
"message": "
|
|
1982
|
+
"core/lib/lh-error.js | oldChromeDoesNotSupportFeature": {
|
|
1983
|
+
"message": "Masyadong luma ang bersyong ito ng Chrome para suportahan ang '{featureName}.' Gumamit ng mas bagong bersyon para makita ang mga buong resulta."
|
|
1963
1984
|
},
|
|
1964
|
-
"core/lib/
|
|
1965
|
-
"message": "
|
|
1985
|
+
"core/lib/lh-error.js | pageLoadFailed": {
|
|
1986
|
+
"message": "Hindi na-load nang maayos ng Lighthouse ang page na hiniling mo. Tiyaking tamang URL ang sinusubukan mo at tumutugon nang maayos ang server sa lahat ng kahilingan."
|
|
1966
1987
|
},
|
|
1967
|
-
"core/lib/
|
|
1968
|
-
"message": "
|
|
1988
|
+
"core/lib/lh-error.js | pageLoadFailedHung": {
|
|
1989
|
+
"message": "Hindi na-load nang maayos ng Lighthouse ang URL na hiniling mo dahil huminto sa pagtugon ang page."
|
|
1969
1990
|
},
|
|
1970
|
-
"core/lib/
|
|
1971
|
-
"message": "
|
|
1991
|
+
"core/lib/lh-error.js | pageLoadFailedInsecure": {
|
|
1992
|
+
"message": "Walang valid na panseguridad na certificate ang URL na ibinigay mo. {securityMessages}"
|
|
1972
1993
|
},
|
|
1973
|
-
"core/lib/
|
|
1974
|
-
"message": "
|
|
1994
|
+
"core/lib/lh-error.js | pageLoadFailedInterstitial": {
|
|
1995
|
+
"message": "Pinigilan ng Chrome ang pag-load ng page gamit ang interstitial. Tiyaking tamang URL ang sinusubukan mo at tumutugon nang maayos ang server sa lahat ng kahilingan."
|
|
1975
1996
|
},
|
|
1976
|
-
"core/lib/
|
|
1977
|
-
"message": "
|
|
1997
|
+
"core/lib/lh-error.js | pageLoadFailedWithDetails": {
|
|
1998
|
+
"message": "Hindi na-load nang maayos ng Lighthouse ang page na hiniling mo. Tiyaking tamang URL ang sinusubukan mo at tumutugon nang maayos ang server sa lahat ng kahilingan. (Mga Detalye: {errorDetails})"
|
|
1978
1999
|
},
|
|
1979
|
-
"core/lib/
|
|
1980
|
-
"message": "
|
|
2000
|
+
"core/lib/lh-error.js | pageLoadFailedWithStatusCode": {
|
|
2001
|
+
"message": "Hindi na-load nang maayos ng Lighthouse ang page na ni-request mo. Tiyaking tamang URL ang sinusubukan mo at tumutugon nang maayos ang server sa lahat ng request. (Status code: {statusCode})"
|
|
1981
2002
|
},
|
|
1982
|
-
"core/lib/
|
|
1983
|
-
"message": "
|
|
2003
|
+
"core/lib/lh-error.js | pageLoadTookTooLong": {
|
|
2004
|
+
"message": "Masyadong matagal na na-load ang iyong page. Pakisunod ang mga pagkakataon sa ulat para mabawasan ang tagal ng pag-load ng iyong page, at pagkatapos ay paganahin ulit ang Lighthouse. ({errorCode})"
|
|
1984
2005
|
},
|
|
1985
|
-
"core/lib/
|
|
1986
|
-
"message": "
|
|
2006
|
+
"core/lib/lh-error.js | protocolTimeout": {
|
|
2007
|
+
"message": "Lumampas na sa nakalaang oras ang paghihintay ng tugon ng DevTools protocol. (Pamamaraan: {protocolMethod})"
|
|
1987
2008
|
},
|
|
1988
|
-
"core/lib/
|
|
1989
|
-
"message": "
|
|
2009
|
+
"core/lib/lh-error.js | requestContentTimeout": {
|
|
2010
|
+
"message": "Lumampas na sa nakalaang panahon ang pag-fetch ng content ng resource"
|
|
1990
2011
|
},
|
|
1991
|
-
"core/lib/
|
|
1992
|
-
"message": "
|
|
2012
|
+
"core/lib/lh-error.js | targetCrashed": {
|
|
2013
|
+
"message": "Nag-crash nang hindi inaasahan ang tab ng browser."
|
|
1993
2014
|
},
|
|
1994
|
-
"core/lib/
|
|
1995
|
-
"message": "
|
|
2015
|
+
"core/lib/lh-error.js | urlInvalid": {
|
|
2016
|
+
"message": "Mukhang invalid ang URL na ibinigay mo."
|
|
1996
2017
|
},
|
|
1997
|
-
"core/lib/
|
|
1998
|
-
"message": "
|
|
2018
|
+
"core/lib/navigation-error.js | warningStatusCode": {
|
|
2019
|
+
"message": "Hindi na-load nang maayos ng Lighthouse ang page na ni-request mo. Tiyaking tamang URL ang sinusubukan mo at tumutugon nang maayos ang server sa lahat ng request. (Status code: {errorCode})"
|
|
1999
2020
|
},
|
|
2000
|
-
"core/lib/
|
|
2001
|
-
"message": "
|
|
2021
|
+
"core/lib/navigation-error.js | warningXhtml": {
|
|
2022
|
+
"message": "XHTML ang uri ng MIME ng page: Hindi explicit na sinusuportahan ng Lighthouse ang uri ng dokumentong ito"
|
|
2002
2023
|
},
|
|
2003
|
-
"core/
|
|
2004
|
-
"message": "
|
|
2024
|
+
"core/user-flow.js | defaultFlowName": {
|
|
2025
|
+
"message": "Daloy ng user ({url})"
|
|
2005
2026
|
},
|
|
2006
|
-
"core/
|
|
2007
|
-
"message": "
|
|
2027
|
+
"core/user-flow.js | defaultNavigationName": {
|
|
2028
|
+
"message": "Ulat ng pag-navigate ({url})"
|
|
2008
2029
|
},
|
|
2009
|
-
"core/
|
|
2010
|
-
"message": "
|
|
2030
|
+
"core/user-flow.js | defaultSnapshotName": {
|
|
2031
|
+
"message": "Ulat ng snapshot ({url})"
|
|
2011
2032
|
},
|
|
2012
|
-
"core/
|
|
2013
|
-
"message": "
|
|
2033
|
+
"core/user-flow.js | defaultTimespanName": {
|
|
2034
|
+
"message": "Ulat ng tagal ng panahon ({url})"
|
|
2014
2035
|
},
|
|
2015
|
-
"
|
|
2016
|
-
"message": "
|
|
2036
|
+
"flow-report/src/i18n/ui-strings.js | allReports": {
|
|
2037
|
+
"message": "Lahat ng Ulat"
|
|
2017
2038
|
},
|
|
2018
|
-
"
|
|
2019
|
-
"message": "
|
|
2039
|
+
"flow-report/src/i18n/ui-strings.js | categories": {
|
|
2040
|
+
"message": "Mga Kategorya"
|
|
2020
2041
|
},
|
|
2021
|
-
"
|
|
2022
|
-
"message": "
|
|
2042
|
+
"flow-report/src/i18n/ui-strings.js | categoryAccessibility": {
|
|
2043
|
+
"message": "Pagiging accessible"
|
|
2023
2044
|
},
|
|
2024
|
-
"
|
|
2025
|
-
"message": "
|
|
2045
|
+
"flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
|
|
2046
|
+
"message": "Pinakamahuhusay na Kagawian"
|
|
2026
2047
|
},
|
|
2027
|
-
"
|
|
2028
|
-
"message": "
|
|
2048
|
+
"flow-report/src/i18n/ui-strings.js | categoryPerformance": {
|
|
2049
|
+
"message": "Performance"
|
|
2029
2050
|
},
|
|
2030
|
-
"
|
|
2031
|
-
"message": "
|
|
2051
|
+
"flow-report/src/i18n/ui-strings.js | categorySeo": {
|
|
2052
|
+
"message": "SEO"
|
|
2032
2053
|
},
|
|
2033
|
-
"
|
|
2034
|
-
"message": "
|
|
2054
|
+
"flow-report/src/i18n/ui-strings.js | desktop": {
|
|
2055
|
+
"message": "Desktop"
|
|
2035
2056
|
},
|
|
2036
|
-
"
|
|
2037
|
-
"message": "
|
|
2057
|
+
"flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
|
|
2058
|
+
"message": "Pag-unawa sa Ulat ng Daloy ng Lighthouse"
|
|
2038
2059
|
},
|
|
2039
|
-
"
|
|
2040
|
-
"message": "
|
|
2060
|
+
"flow-report/src/i18n/ui-strings.js | helpLabel": {
|
|
2061
|
+
"message": "Pag-unawa sa Mga Daloy"
|
|
2041
2062
|
},
|
|
2042
|
-
"
|
|
2043
|
-
"message": "
|
|
2063
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
|
|
2064
|
+
"message": "Gamitin ang Mga ulat ng pag-navigate para..."
|
|
2044
2065
|
},
|
|
2045
|
-
"
|
|
2046
|
-
"message": "
|
|
2066
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
|
|
2067
|
+
"message": "Gamitin ang Mga ulat ng snapshot para..."
|
|
2047
2068
|
},
|
|
2048
|
-
"
|
|
2049
|
-
"message": "
|
|
2069
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
|
|
2070
|
+
"message": "Gamitin ang Mga ulat ng tagal ng panahon para..."
|
|
2050
2071
|
},
|
|
2051
|
-
"
|
|
2052
|
-
"message": "
|
|
2072
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
|
|
2073
|
+
"message": "Makakuha ng score sa Performance sa Lighthouse."
|
|
2053
2074
|
},
|
|
2054
|
-
"
|
|
2055
|
-
"message": "
|
|
2075
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
|
|
2076
|
+
"message": "Sukatin ang mga sukatan ng Performance ng pag-load ng page gaya ng Largest Contentful Paint at Speed Index."
|
|
2056
2077
|
},
|
|
2057
|
-
"
|
|
2058
|
-
"message": "
|
|
2078
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
|
|
2079
|
+
"message": "Suriin ang mga kakayahan ng Progressive Web App."
|
|
2059
2080
|
},
|
|
2060
|
-
"
|
|
2061
|
-
"message": "
|
|
2081
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
|
|
2082
|
+
"message": "Maghanap ng mga isyu sa accessibility sa mga single page application o kumplikadong form."
|
|
2062
2083
|
},
|
|
2063
|
-
"
|
|
2064
|
-
"message": "
|
|
2084
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
|
|
2085
|
+
"message": "Suriin ang mga pinakamahuhusay na kagawian ng mga menu at element ng UI na nakatago sa likod ng pakikipag-ugnayan."
|
|
2065
2086
|
},
|
|
2066
|
-
"
|
|
2067
|
-
"message": "
|
|
2087
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
|
|
2088
|
+
"message": "Sukatin ang mga pagbabago sa layout at tagal ng pag-execute sa JavaScript sa isang serye ng mga pakikipag-ugnayan."
|
|
2068
2089
|
},
|
|
2069
|
-
"
|
|
2070
|
-
"message": "
|
|
2090
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
|
|
2091
|
+
"message": "Tumuklas ng mga pagkakataon sa performance para pagandahin ang karanasan para sa mga long-lived na page at single-page application."
|
|
2071
2092
|
},
|
|
2072
|
-
"
|
|
2073
|
-
"message": "
|
|
2093
|
+
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
2094
|
+
"message": "Pinakamalaking epekto"
|
|
2074
2095
|
},
|
|
2075
|
-
"
|
|
2076
|
-
"message": "
|
|
2096
|
+
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
|
|
2097
|
+
"message": "{numInformative,plural, =1{{numInformative} audit na nagbibigay ng impormasyon}one{{numInformative} audit na nagbibigay ng impormasyon}other{{numInformative} na audit na nagbibigay ng impormasyon}}"
|
|
2077
2098
|
},
|
|
2078
|
-
"
|
|
2079
|
-
"message": "
|
|
2099
|
+
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
2100
|
+
"message": "Mobile"
|
|
2080
2101
|
},
|
|
2081
|
-
"
|
|
2082
|
-
"message": "
|
|
2102
|
+
"flow-report/src/i18n/ui-strings.js | navigationDescription": {
|
|
2103
|
+
"message": "Pag-load ng page"
|
|
2083
2104
|
},
|
|
2084
|
-
"
|
|
2085
|
-
"message": "
|
|
2105
|
+
"flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
|
|
2106
|
+
"message": "Nagsusuri ang mga ulat ng pag-navigate ng isang pag-load ng page, na eksaktong kagaya ng mga orihinal na ulat ng Lighthouse."
|
|
2086
2107
|
},
|
|
2087
|
-
"
|
|
2088
|
-
"message": "
|
|
2108
|
+
"flow-report/src/i18n/ui-strings.js | navigationReport": {
|
|
2109
|
+
"message": "Ulat ng pag-navigate"
|
|
2089
2110
|
},
|
|
2090
|
-
"
|
|
2091
|
-
"message": "
|
|
2111
|
+
"flow-report/src/i18n/ui-strings.js | navigationReportCount": {
|
|
2112
|
+
"message": "{numNavigation,plural, =1{{numNavigation} ulat ng pag-navigate}one{{numNavigation} ulat ng pag-navigate}other{{numNavigation} na ulat ng pag-navigate}}"
|
|
2092
2113
|
},
|
|
2093
|
-
"
|
|
2094
|
-
"message": "
|
|
2114
|
+
"flow-report/src/i18n/ui-strings.js | passableAuditCount": {
|
|
2115
|
+
"message": "{numPassableAudits,plural, =1{{numPassableAudits} maipapasang audit}one{{numPassableAudits} maipapasang audit}other{{numPassableAudits} na maipapasang audit}}"
|
|
2095
2116
|
},
|
|
2096
|
-
"
|
|
2097
|
-
"message": "
|
|
2117
|
+
"flow-report/src/i18n/ui-strings.js | passedAuditCount": {
|
|
2118
|
+
"message": "{numPassed,plural, =1{{numPassed} audit ang pumasa}one{{numPassed} audit ang pumasa}other{{numPassed} na audit ang pumasa}}"
|
|
2098
2119
|
},
|
|
2099
|
-
"
|
|
2100
|
-
"message": "
|
|
2120
|
+
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
2121
|
+
"message": "Average"
|
|
2101
2122
|
},
|
|
2102
|
-
"
|
|
2103
|
-
"message": "
|
|
2123
|
+
"flow-report/src/i18n/ui-strings.js | ratingError": {
|
|
2124
|
+
"message": "Error"
|
|
2104
2125
|
},
|
|
2105
|
-
"
|
|
2106
|
-
"message": "
|
|
2126
|
+
"flow-report/src/i18n/ui-strings.js | ratingFail": {
|
|
2127
|
+
"message": "Pangit"
|
|
2107
2128
|
},
|
|
2108
|
-
"
|
|
2109
|
-
"message": "
|
|
2129
|
+
"flow-report/src/i18n/ui-strings.js | ratingPass": {
|
|
2130
|
+
"message": "Maganda"
|
|
2110
2131
|
},
|
|
2111
|
-
"
|
|
2112
|
-
"message": "
|
|
2132
|
+
"flow-report/src/i18n/ui-strings.js | save": {
|
|
2133
|
+
"message": "I-save"
|
|
2113
2134
|
},
|
|
2114
|
-
"
|
|
2115
|
-
"message": "
|
|
2135
|
+
"flow-report/src/i18n/ui-strings.js | snapshotDescription": {
|
|
2136
|
+
"message": "Na-capture na status ng page"
|
|
2116
2137
|
},
|
|
2117
|
-
"
|
|
2118
|
-
"message": "
|
|
2138
|
+
"flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
|
|
2139
|
+
"message": "Sinusuri ng mga ulat ng snapshot ang page sa isang partikular na status, na karaniwang pagkatapos ng mga pakikipag-ugnayan ng user."
|
|
2119
2140
|
},
|
|
2120
|
-
"
|
|
2121
|
-
"message": "
|
|
2141
|
+
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
|
|
2142
|
+
"message": "Ulat ng snapshot"
|
|
2122
2143
|
},
|
|
2123
|
-
"
|
|
2124
|
-
"message": "
|
|
2144
|
+
"flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
|
|
2145
|
+
"message": "{numSnapshot,plural, =1{{numSnapshot} ulat ng snapshot}one{{numSnapshot} ulat ng snapshot}other{{numSnapshot} na ulat ng snapshot}}"
|
|
2125
2146
|
},
|
|
2126
|
-
"
|
|
2127
|
-
"message": "
|
|
2147
|
+
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
2148
|
+
"message": "Buod"
|
|
2128
2149
|
},
|
|
2129
|
-
"
|
|
2130
|
-
"message": "
|
|
2150
|
+
"flow-report/src/i18n/ui-strings.js | timespanDescription": {
|
|
2151
|
+
"message": "Mga pakikipag-ugnayan ng user"
|
|
2131
2152
|
},
|
|
2132
|
-
"
|
|
2133
|
-
"message": "
|
|
2153
|
+
"flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
|
|
2154
|
+
"message": "Nagsusuri ang mga ulat ng tagal ng panahon ng abitrary na yugto ng panahon, na karaniwang naglalaman ng mga pakikipag-ugnayan ng user."
|
|
2134
2155
|
},
|
|
2135
|
-
"
|
|
2136
|
-
"message": "
|
|
2156
|
+
"flow-report/src/i18n/ui-strings.js | timespanReport": {
|
|
2157
|
+
"message": "Ulat ng tagal ng panahon"
|
|
2158
|
+
},
|
|
2159
|
+
"flow-report/src/i18n/ui-strings.js | timespanReportCount": {
|
|
2160
|
+
"message": "{numTimespan,plural, =1{{numTimespan} ulat ng tagal ng panahon}one{{numTimespan} ulat ng tagal ng panahon}other{{numTimespan} na ulat ng tagal ng panahon}}"
|
|
2161
|
+
},
|
|
2162
|
+
"flow-report/src/i18n/ui-strings.js | title": {
|
|
2163
|
+
"message": "Ulat ng Daloy ng User ng Lighthouse"
|
|
2164
|
+
},
|
|
2165
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | AuthorizationCoveredByWildcard": {
|
|
2166
|
+
"message": "Hindi sasaklawin ang pagpapahintulot ng simbolong wildcard (*) sa pangangasiwa ng Access-Control-Allow-Headers sa CORS."
|
|
2137
2167
|
},
|
|
2138
|
-
"
|
|
2139
|
-
"message": "Dapat gamitin ang attribute na
|
|
2168
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CSSSelectorInternalMediaControlsOverlayCastButton": {
|
|
2169
|
+
"message": "Dapat gamitin ang attribute na disableRemotePlayback para i-disable ang default na integration ng Cast sa halip na gamitin ang selector na -internal-media-controls-overlay-cast-button."
|
|
2140
2170
|
},
|
|
2141
|
-
"
|
|
2142
|
-
"message": "
|
|
2171
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CSSValueAppearanceSliderVertical": {
|
|
2172
|
+
"message": "Hindi naka-standardize ang value ng hitsura sa CSS na slider-vertical at aalisin ito."
|
|
2143
2173
|
},
|
|
2144
|
-
"
|
|
2145
|
-
"message": "
|
|
2174
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CanRequestURLHTTPContainingNewline": {
|
|
2175
|
+
"message": "Naka-block ang mga kahiligan sa resource na may mga URL na naglalaman ng mga inalis na whitespace \\(n|r|t) character at less-than character (<). Pakialis ang mga newline at i-encode ang mga less-than character mula sa mga lugar tulad ng mga value na attribute ng element para ma-load ang mga resource na ito."
|
|
2146
2176
|
},
|
|
2147
|
-
"
|
|
2148
|
-
"message": "Hindi na ginagamit ang
|
|
2177
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesConnectionInfo": {
|
|
2178
|
+
"message": "Hindi na ginagamit ang chrome.loadTimes(), standardized na API: Navigation Timing 2 na lang ang gamitin."
|
|
2149
2179
|
},
|
|
2150
|
-
"
|
|
2151
|
-
"message": "Hindi na ginagamit ang
|
|
2180
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesFirstPaintAfterLoadTime": {
|
|
2181
|
+
"message": "Hindi na ginagamit ang chrome.loadTimes(), standardized na API: Paint Timing na lang ang gamitin."
|
|
2152
2182
|
},
|
|
2153
|
-
"
|
|
2154
|
-
"message": "
|
|
2183
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesWasAlternateProtocolAvailable": {
|
|
2184
|
+
"message": "Hindi na ginagamit ang chrome.loadTimes(), standardized na API: nextHopProtocol sa Navigation Timing 2 na lang ang gamitin."
|
|
2155
2185
|
},
|
|
2156
|
-
"
|
|
2157
|
-
"message": "
|
|
2186
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CookieWithTruncatingChar": {
|
|
2187
|
+
"message": "Tatanggihan sa halip na puputulin ang cookies na naglalaman ng \\(0|r|n) character."
|
|
2158
2188
|
},
|
|
2159
|
-
"
|
|
2189
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginAccessBasedOnDocumentDomain": {
|
|
2190
|
+
"message": "Hindi na ginagamit, at madi-disable nang default ang pagpapahinga ng patakaran sa iisang origin sa pamamagitan ng pagtatakda sa document.domain. Ang babalang ito sa paghinto sa paggamit ay para sa isang cross-origin na access na na-enable sa pamamagitan ng pagtatakda sa document.domain."
|
|
2191
|
+
},
|
|
2192
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginWindowAlert": {
|
|
2160
2193
|
"message": "Hindi na ginagamit ang pag-trigger ng window.alert mula sa mga cross origin na iframe at aalisin na ito sa hinaharap."
|
|
2161
2194
|
},
|
|
2162
|
-
"
|
|
2195
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginWindowConfirm": {
|
|
2163
2196
|
"message": "Hindi na ginagamit ang pag-trigger ng window.confirm mula sa mga cross origin na iframe at aalisin na ito sa hinaharap."
|
|
2164
2197
|
},
|
|
2165
|
-
"
|
|
2166
|
-
"message": "Hindi na ginagamit at aalisin na ang Mga Event ng DOM Mutation, kasama ang
|
|
2198
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | DOMMutationEvents": {
|
|
2199
|
+
"message": "Hindi na ginagamit at aalisin na ang Mga Event ng DOM Mutation, kasama ang DOMSubtreeModified, DOMNodeInserted, DOMNodeRemoved, DOMNodeRemovedFromDocument, DOMNodeInsertedIntoDocument, at DOMCharacterDataModified (https://w3c.github.io/uievents/#legacy-event-types). Pakigamit na lang ang MutationObserver."
|
|
2200
|
+
},
|
|
2201
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | DataUrlInSvgUse": {
|
|
2202
|
+
"message": "Suporta para sa data: Hindi na ginagamit ang mga URL sa SVGUseElement at aalisin na ito sa hinaharap."
|
|
2167
2203
|
},
|
|
2168
|
-
"
|
|
2169
|
-
"message": "
|
|
2204
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GeolocationInsecureOrigin": {
|
|
2205
|
+
"message": "Hindi na gumagana ang getCurrentPosition() at watchPosition() sa mga hindi secure na origin. Para magamit ang feature na ito, dapat mong isaalang-alang ang paglipat ng iyong application sa isang secure na origin, tulad ng HTTPS. Tingnan ang https://goo.gle/chrome-insecure-origins para sa higit pang detalye."
|
|
2170
2206
|
},
|
|
2171
|
-
"
|
|
2172
|
-
"message": "Hindi na
|
|
2207
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GeolocationInsecureOriginDeprecatedNotRemoved": {
|
|
2208
|
+
"message": "Hindi na ginagamit ang getCurrentPosition() at watchPosition() sa mga hindi secure na origin. Para magamit ang feature na ito, dapat mong isaalang-alang ang paglipat ng iyong application sa isang secure na origin, tulad ng HTTPS. Tingnan ang https://goo.gle/chrome-insecure-origins para sa higit pang detalye."
|
|
2173
2209
|
},
|
|
2174
|
-
"
|
|
2175
|
-
"message": "Hindi na
|
|
2210
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GetUserMediaInsecureOrigin": {
|
|
2211
|
+
"message": "Hindi na gumagana ang getUserMedia() sa mga hindi secure na origin. Para magamit ang feature na ito, dapat mong isaalang-alang ang paglipat ng iyong application sa isang secure na origin, tulad ng HTTPS. Tingnan ang https://goo.gle/chrome-insecure-origins para sa higit pang detalye."
|
|
2176
2212
|
},
|
|
2177
|
-
"
|
|
2178
|
-
"message": "Hindi na
|
|
2213
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | HostCandidateAttributeGetter": {
|
|
2214
|
+
"message": "Hindi na ginagamit ang RTCPeerConnectionIceErrorEvent.hostCandidate. RTCPeerConnectionIceErrorEvent.address o RTCPeerConnectionIceErrorEvent.port na lang ang gamitin."
|
|
2179
2215
|
},
|
|
2180
|
-
"
|
|
2181
|
-
"message": "
|
|
2216
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | IdentityInCanMakePaymentEvent": {
|
|
2217
|
+
"message": "Ang origin ng merchant at arbitrary na data mula sa canmakepayment na event ng service worker ay hindi na ginagamit at aalisin: topOrigin, paymentRequestOrigin, methodData, modifiers."
|
|
2182
2218
|
},
|
|
2183
|
-
"
|
|
2184
|
-
"message": "
|
|
2219
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | InsecurePrivateNetworkSubresourceRequest": {
|
|
2220
|
+
"message": "Humiling ang website ng subresource mula sa isang network na maa-access lang nito dahil sa privileged na posisyon ng network ng mga user nito. Inilalantad ng mga kahilingang ito ang mga hindi pampublikong device at server sa internet, na nagpapataas sa panganib ng cross-site request forgery (CSRF) na pag-atake, at/o pag-leak ng impormasyon. Para mapigilan ang mga panganib na ito, hindi na gagamitin ng Chrome ang mga kahilingan sa mga hindi pampublikong subresource kapag sinimulan mula sa mga hindi secure na konteksto, at magsisimula itong i-block ang mga iyon."
|
|
2185
2221
|
},
|
|
2186
|
-
"
|
|
2187
|
-
"message": "
|
|
2222
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | InterestGroupDailyUpdateUrl": {
|
|
2223
|
+
"message": "Na-rename sa updateUrl ang field ng dailyUpdateUrl ng InterestGroups na ipinasa sa joinAdInterestGroup(), para mas tumpak na maipakita ang gawi nito."
|
|
2188
2224
|
},
|
|
2189
|
-
"
|
|
2190
|
-
"message": "
|
|
2225
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | IntlV8BreakIterator": {
|
|
2226
|
+
"message": "Hindi na ginagamit ang Intl.v8BreakIterator. Intl.Segmenter na lang ang gamitin."
|
|
2191
2227
|
},
|
|
2192
|
-
"
|
|
2193
|
-
"message": "Hindi ma-load ang CSS mula sa mga URL ng
|
|
2228
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | LocalCSSFileExtensionRejected": {
|
|
2229
|
+
"message": "Hindi ma-load ang CSS mula sa mga URL ng file: maliban kung nagtatapos ang mga ito sa file extension na .css."
|
|
2194
2230
|
},
|
|
2195
|
-
"
|
|
2196
|
-
"message": "Hindi na ginagamit ang paggamit ng
|
|
2231
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | MediaSourceAbortRemove": {
|
|
2232
|
+
"message": "Hindi na ginagamit ang paggamit ng SourceBuffer.abort() para i-abort ang asynchronous na pag-aalis ng sakop ng remove() dahil sa pagbabago ng detalye. Aalisin ang suporta sa hinaharap. Dapat mong pakinggan na lang ang updateend. Nilalayon lang ng abort() na i-abort ang asynchronous na pagdaragdag ng media o i-reset ang status ng pang-parse."
|
|
2197
2233
|
},
|
|
2198
|
-
"
|
|
2199
|
-
"message": "Hindi na ginagamit ang pagtatakda ng
|
|
2234
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | MediaSourceDurationTruncatingBuffered": {
|
|
2235
|
+
"message": "Hindi na ginagamit ang pagtatakda ng MediaSource.duration sa ibaba ng pinakamataas na timestamp ng presentation ng anumang naka-buffer at naka-code na frame dahil sa pagbabago ng detalye. Aalisin ang suporta para sa direktang pag-aalis ng naputol at naka-buffer na media sa hinaharap. Sa halip, dapat kang magsagawa ng direktang remove(newDuration, oldDuration) sa lahat ng sourceBuffers, kung saan newDuration < oldDuration."
|
|
2200
2236
|
},
|
|
2201
|
-
"
|
|
2202
|
-
"message": "Hihingi ng pahintulot ang Web MIDI sa paggamit kahit na hindi tinukoy ang sysex sa
|
|
2237
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NoSysexWebMIDIWithoutPermission": {
|
|
2238
|
+
"message": "Hihingi ng pahintulot ang Web MIDI sa paggamit kahit na hindi tinukoy ang sysex sa MIDIOptions."
|
|
2203
2239
|
},
|
|
2204
|
-
"
|
|
2205
|
-
"message": "Posibleng hindi na magamit ang Notification API mula sa mga hindi secure na origin.
|
|
2240
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NotificationInsecureOrigin": {
|
|
2241
|
+
"message": "Posibleng hindi na magamit ang Notification API mula sa mga hindi secure na origin. Dapat mong isaalang-alang ang paglipat ng iyong application sa isang secure na origin, tulad ng HTTPS. Tingnan ang https://goo.gle/chrome-insecure-origins para sa higit pang detalye."
|
|
2206
2242
|
},
|
|
2207
|
-
"
|
|
2208
|
-
"message": "Posibleng hindi na humiling ng pahintulot para sa Notification API mula sa isang cross-origin na iframe.
|
|
2243
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NotificationPermissionRequestedIframe": {
|
|
2244
|
+
"message": "Posibleng hindi na humiling ng pahintulot para sa Notification API mula sa isang cross-origin na iframe. Dapat mong isaalang-alang ang paghiling ng pahintulot mula sa isang top-level na frame o sa halip ay magbukas ng bagong window."
|
|
2209
2245
|
},
|
|
2210
|
-
"
|
|
2211
|
-
"message": "Hindi na ginagamit ang opsyong
|
|
2246
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ObsoleteCreateImageBitmapImageOrientationNone": {
|
|
2247
|
+
"message": "Hindi na ginagamit ang opsyong imageOrientation: 'none' sa createImageBitmap. Gamitin na lang ang createImageBitmap na may opsyong '\\\\{imageOrientation: 'from-image'\\\\}.'"
|
|
2212
2248
|
},
|
|
2213
|
-
"
|
|
2214
|
-
"message": "
|
|
2249
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ObsoleteWebRtcCipherSuite": {
|
|
2250
|
+
"message": "Nakikipagkasundo ang iyong partner sa isang lumang bersyon ng (D)TLS. Sumangguni sa iyong partner para maayos ito."
|
|
2215
2251
|
},
|
|
2216
|
-
"
|
|
2217
|
-
"message": "Kapag tinukoy ang
|
|
2252
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | OverflowVisibleOnReplacedElement": {
|
|
2253
|
+
"message": "Kapag tinukoy ang overflow: visible sa mga tag ng img, video at canvas, posibleng gumawa ang mga ito ng visual na content sa labas ng mga hangganan ng element. Tingnan ang https://github.com/WICG/shared-element-transitions/blob/main/debugging_overflow_on_images.md."
|
|
2218
2254
|
},
|
|
2219
|
-
"
|
|
2220
|
-
"message": "Hindi na ginagamit ang
|
|
2255
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PaymentInstruments": {
|
|
2256
|
+
"message": "Hindi na ginagamit ang paymentManager.instruments. Gumamit na lang ng just-in-time na pag-install para sa mga tagapangasiwa ng pagbabayad."
|
|
2221
2257
|
},
|
|
2222
|
-
"
|
|
2223
|
-
"message": "Na-bypass ng iyong call na
|
|
2258
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PaymentRequestCSPViolation": {
|
|
2259
|
+
"message": "Na-bypass ng iyong call na PaymentRequest ang direktibang connect-src ng Content-Security-Policy (CSP). Hindi na ginagamit ang pag-bypass na ito. Magdagdag ng identifier ng paraan ng pagbabayad mula sa PaymentRequest API (sa field na supportedMethods) sa iyong direktibang connect-src ng CSP."
|
|
2224
2260
|
},
|
|
2225
|
-
"
|
|
2226
|
-
"message": "Hindi na ginagamit ang
|
|
2261
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PersistentQuotaType": {
|
|
2262
|
+
"message": "Hindi na ginagamit ang StorageType.persistent. Pakigamit na lang ang standardized na navigator.storage."
|
|
2227
2263
|
},
|
|
2228
|
-
"
|
|
2229
|
-
"message": "Invalid at binabalewala ang
|
|
2264
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PictureSourceSrc": {
|
|
2265
|
+
"message": "Invalid at binabalewala ang <source src> na may parent na <picture>. <source srcset> na lang ang gamitin."
|
|
2230
2266
|
},
|
|
2231
|
-
"
|
|
2267
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedCancelAnimationFrame": {
|
|
2232
2268
|
"message": "Partikular sa vendor ang webkitCancelAnimationFrame. Pakigamit na lang ang karaniwang cancelAnimationFrame."
|
|
2233
2269
|
},
|
|
2234
|
-
"
|
|
2270
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedRequestAnimationFrame": {
|
|
2235
2271
|
"message": "Partikular sa vendor ang webkitRequestAnimationFrame. Pakigamit na lang ang karaniwang requestAnimationFrame."
|
|
2236
2272
|
},
|
|
2237
|
-
"
|
|
2273
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoDisplayingFullscreen": {
|
|
2238
2274
|
"message": "Hindi na ginagamit ang HTMLVideoElement.webkitDisplayingFullscreen. Pakigamit na lang ang Document.fullscreenElement."
|
|
2239
2275
|
},
|
|
2240
|
-
"
|
|
2276
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoEnterFullScreen": {
|
|
2241
2277
|
"message": "Hindi na ginagamit ang HTMLVideoElement.webkitEnterFullScreen(). Pakigamit na lang ang Element.requestFullscreen()."
|
|
2242
2278
|
},
|
|
2243
|
-
"
|
|
2279
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoEnterFullscreen": {
|
|
2244
2280
|
"message": "Hindi na ginagamit ang HTMLVideoElement.webkitEnterFullscreen(). Pakigamit na lang ang Element.requestFullscreen()."
|
|
2245
2281
|
},
|
|
2246
|
-
"
|
|
2282
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoExitFullScreen": {
|
|
2247
2283
|
"message": "Hindi na ginagamit ang HTMLVideoElement.webkitExitFullScreen(). Pakigamit na lang ang Document.exitFullscreen()."
|
|
2248
2284
|
},
|
|
2249
|
-
"
|
|
2285
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoExitFullscreen": {
|
|
2250
2286
|
"message": "Hindi na ginagamit ang HTMLVideoElement.webkitExitFullscreen(). Pakigamit na lang ang Document.exitFullscreen()."
|
|
2251
2287
|
},
|
|
2252
|
-
"
|
|
2288
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoSupportsFullscreen": {
|
|
2253
2289
|
"message": "Hindi na ginagamit ang HTMLVideoElement.webkitSupportsFullscreen. Pakigamit na lang ang Document.fullscreenEnabled."
|
|
2254
2290
|
},
|
|
2255
|
-
"
|
|
2256
|
-
"message": "Hindi na namin gagamitin ang API na
|
|
2291
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrivacySandboxExtensionsAPI": {
|
|
2292
|
+
"message": "Hindi na namin gagamitin ang API na chrome.privacy.websites.privacySandboxEnabled, pero mananatili itong aktibo para sa backward compatibility hanggang sa pag-release ng M113. Sa halip, pakigamit ang chrome.privacy.websites.topicsEnabled, chrome.privacy.websites.fledgeEnabled, at chrome.privacy.websites.adMeasurementEnabled. Tingnan ang https://developer.chrome.com/docs/extensions/reference/privacy/#property-websites-privacySandboxEnabled."
|
|
2257
2293
|
},
|
|
2258
|
-
"
|
|
2259
|
-
"message": "Inalis ang paghihigpit na
|
|
2294
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCConstraintEnableDtlsSrtpFalse": {
|
|
2295
|
+
"message": "Inalis ang paghihigpit na DtlsSrtpKeyAgreement. Tinukoy mo ang isang false na value para sa paghihigpit na ito, na itinuturing na pagsubok na gamitin ang inalis na paraan ng SDES key negotiation. Inalis ang functionality na ito; isang serbisyong sumusuporta sa DTLS key negotiation na lang ang gamitin."
|
|
2260
2296
|
},
|
|
2261
|
-
"
|
|
2262
|
-
"message": "Inalis ang paghihigpit na
|
|
2297
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCConstraintEnableDtlsSrtpTrue": {
|
|
2298
|
+
"message": "Inalis ang paghihigpit na DtlsSrtpKeyAgreement. Tinukoy mo ang isang true na value para sa paghihigpit na ito, na walang epekto, pero puwede mong alisin ang paghihigpit na ito para sa kaayusan."
|
|
2263
2299
|
},
|
|
2264
|
-
"
|
|
2300
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCPeerConnectionGetStatsLegacyNonCompliant": {
|
|
2265
2301
|
"message": "Hindi na ginagamit at aalisin na ang nakabatay sa callback na getStats(). Gamitin na lang ang sumusunod sa spec na getStats()."
|
|
2266
2302
|
},
|
|
2267
|
-
"
|
|
2303
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RangeExpand": {
|
|
2268
2304
|
"message": "Hindi na ginagamit ang Range.expand(). Pakigamit na lang ang Selection.modify()."
|
|
2269
2305
|
},
|
|
2270
|
-
"
|
|
2271
|
-
"message": "Naka-block ang mga kahilingan sa subresource na may mga URL na naglalaman ng mga naka-embed na kredensyal (hal
|
|
2306
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RequestedSubresourceWithEmbeddedCredentials": {
|
|
2307
|
+
"message": "Naka-block ang mga kahilingan sa subresource na may mga URL na naglalaman ng mga naka-embed na kredensyal (hal., https://user:pass@host/)."
|
|
2272
2308
|
},
|
|
2273
|
-
"
|
|
2274
|
-
"message": "Hindi na ginagamit at aalisin
|
|
2309
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RtcpMuxPolicyNegotiate": {
|
|
2310
|
+
"message": "Hindi na ginagamit at aalisin ang opsyong rtcpMuxPolicy."
|
|
2275
2311
|
},
|
|
2276
|
-
"
|
|
2277
|
-
"message": "Mangangailangan ang
|
|
2312
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | SharedArrayBufferConstructedWithoutIsolation": {
|
|
2313
|
+
"message": "Mangangailangan ang SharedArrayBuffer ng pag-isolate ng cross-origin. Tingnan ang https://developer.chrome.com/blog/enabling-shared-array-buffer/ para sa higit pang detalye."
|
|
2278
2314
|
},
|
|
2279
|
-
"
|
|
2280
|
-
"message": "Hindi na ginagamit at aalisin ang
|
|
2315
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | TextToSpeech_DisallowedByAutoplay": {
|
|
2316
|
+
"message": "Hindi na ginagamit at aalisin ang speechSynthesis.speak() nang walang pag-activate ng user."
|
|
2281
2317
|
},
|
|
2282
|
-
"
|
|
2283
|
-
"message": "
|
|
2318
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | UnloadHandler": {
|
|
2319
|
+
"message": "Hindi na ginagamit at aalisin na ang mag-unload ng mga event listener."
|
|
2284
2320
|
},
|
|
2285
|
-
"
|
|
2286
|
-
"message": "
|
|
2321
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | V8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
|
2322
|
+
"message": "Dapat mag-opt in ang mga extension sa mga pag-isolate ng cross-origin para patuloy na magamit ang SharedArrayBuffer. Tingnan ang https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
|
|
2287
2323
|
},
|
|
2288
|
-
"
|
|
2289
|
-
"message": "Hindi sinusuportahan ang UTF-16 ng sagot na json sa
|
|
2324
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | XHRJSONEncodingDetection": {
|
|
2325
|
+
"message": "Hindi sinusuportahan ang UTF-16 ng sagot na json sa XMLHttpRequest"
|
|
2290
2326
|
},
|
|
2291
|
-
"
|
|
2292
|
-
"message": "Hindi na ginagamit ang synchronous na
|
|
2327
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
|
2328
|
+
"message": "Hindi na ginagamit ang synchronous na XMLHttpRequest sa pangunahing thread dahil sa mga nakakapinsalang epekto nito sa experience ng end user. Para sa higit pang tulong, tingnan ang https://xhr.spec.whatwg.org/."
|
|
2293
2329
|
},
|
|
2294
|
-
"
|
|
2295
|
-
"message": "
|
|
2330
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | animation": {
|
|
2331
|
+
"message": "Animation"
|
|
2296
2332
|
},
|
|
2297
|
-
"
|
|
2298
|
-
"message": "
|
|
2333
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | description": {
|
|
2334
|
+
"message": "Nangyayari ang mga pagbabago sa layout kapag gumagalaw ang mga element nang walang anumang interaction ng user. [Siyasatin ang mga dahilan ng pagbabago sa layout](https://web.dev/articles/optimize-cls), tulad ng mga pagdaragdag ng mga element, pag-alis, o pagbabago ng mga font nito kapag naglo-load ang page."
|
|
2299
2335
|
},
|
|
2300
|
-
"
|
|
2301
|
-
"message": "
|
|
2336
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | fontRequest": {
|
|
2337
|
+
"message": "Request sa font"
|
|
2302
2338
|
},
|
|
2303
|
-
"
|
|
2304
|
-
"message": "
|
|
2339
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | injectedIframe": {
|
|
2340
|
+
"message": "Na-inject na iframe"
|
|
2305
2341
|
},
|
|
2306
|
-
"
|
|
2307
|
-
"message": "
|
|
2342
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | layoutShiftCluster": {
|
|
2343
|
+
"message": "Cluster ng pagbabago sa layout @ {PH1}"
|
|
2308
2344
|
},
|
|
2309
|
-
"
|
|
2310
|
-
"message": "
|
|
2345
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | noCulprits": {
|
|
2346
|
+
"message": "Walang ma-detect na anumang dahilan ng pagbabago sa layout"
|
|
2311
2347
|
},
|
|
2312
|
-
"
|
|
2313
|
-
"message": "
|
|
2348
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | noLayoutShifts": {
|
|
2349
|
+
"message": "Walang pagbabago sa layout"
|
|
2314
2350
|
},
|
|
2315
|
-
"
|
|
2316
|
-
"message": "
|
|
2351
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | title": {
|
|
2352
|
+
"message": "Mga dahilan ng pagbabago sa layout"
|
|
2317
2353
|
},
|
|
2318
|
-
"
|
|
2319
|
-
"message": "
|
|
2354
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | topCulprits": {
|
|
2355
|
+
"message": "Mga nangungunang dahilan ng pagbabago sa layout"
|
|
2320
2356
|
},
|
|
2321
|
-
"
|
|
2322
|
-
"message": "Mga
|
|
2357
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | unsizedImages": {
|
|
2358
|
+
"message": "Mga Larawang Walang Malinaw na Sukat"
|
|
2323
2359
|
},
|
|
2324
|
-
"
|
|
2325
|
-
"message": "
|
|
2360
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | worstCluster": {
|
|
2361
|
+
"message": "Pinakahindi magandang cluster"
|
|
2326
2362
|
},
|
|
2327
|
-
"
|
|
2328
|
-
"message": "
|
|
2363
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | worstLayoutShiftCluster": {
|
|
2364
|
+
"message": "Pinakamalalang cluster ng pagbabago sa layout"
|
|
2329
2365
|
},
|
|
2330
|
-
"
|
|
2331
|
-
"message": "
|
|
2366
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | description": {
|
|
2367
|
+
"message": "Kapag malaki ang DOM, puwedeng tumaas ang tagal ng pagkalkula ng istilo at mga reflow ng layout, na nakakaapekto sa pagiging responsive ng page. Madaragdagan din ng malaking DOM ang paggamit ng memory. [Alamin kung paano iwasan ang masyadong malaking DOM](https://developer.chrome.com/docs/lighthouse/performance/dom-size/)."
|
|
2332
2368
|
},
|
|
2333
|
-
"
|
|
2334
|
-
"message": "
|
|
2369
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | element": {
|
|
2370
|
+
"message": "Element"
|
|
2335
2371
|
},
|
|
2336
|
-
"
|
|
2337
|
-
"message": "
|
|
2372
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | maxChildren": {
|
|
2373
|
+
"message": "Pinakamaraming child"
|
|
2338
2374
|
},
|
|
2339
|
-
"
|
|
2340
|
-
"message": "
|
|
2375
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | maxDOMDepth": {
|
|
2376
|
+
"message": "Lalim ng DOM"
|
|
2341
2377
|
},
|
|
2342
|
-
"
|
|
2343
|
-
"message": "
|
|
2378
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | statistic": {
|
|
2379
|
+
"message": "Istatistika"
|
|
2344
2380
|
},
|
|
2345
|
-
"
|
|
2346
|
-
"message": "
|
|
2381
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | title": {
|
|
2382
|
+
"message": "I-optimize ang laki ng DOM"
|
|
2347
2383
|
},
|
|
2348
|
-
"
|
|
2349
|
-
"message": "
|
|
2384
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | totalElements": {
|
|
2385
|
+
"message": "Kabuuang element"
|
|
2350
2386
|
},
|
|
2351
|
-
"
|
|
2352
|
-
"message": "
|
|
2387
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | value": {
|
|
2388
|
+
"message": "Value"
|
|
2353
2389
|
},
|
|
2354
|
-
"
|
|
2355
|
-
"message": "
|
|
2390
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | description": {
|
|
2391
|
+
"message": "Pinakamahalaga ang iyong unang request sa network. Bawasan ang latency nito sa pamamagitan ng pag-iwas sa mga pag-redirect, na tumitiyak sa mabilis na pagtugon ng server, at nagbibigay-daan sa pag-compress ng text."
|
|
2356
2392
|
},
|
|
2357
|
-
"
|
|
2358
|
-
"message": "
|
|
2393
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | failedRedirects": {
|
|
2394
|
+
"message": "Nagkaroon ng mga pag-redirect"
|
|
2359
2395
|
},
|
|
2360
|
-
"
|
|
2361
|
-
"message": "
|
|
2396
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | failedServerResponseTime": {
|
|
2397
|
+
"message": "Mas mabagal na tumugon ang server"
|
|
2362
2398
|
},
|
|
2363
|
-
"
|
|
2364
|
-
"message": "
|
|
2399
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | failedTextCompression": {
|
|
2400
|
+
"message": "Wala inilapat na pag-compress"
|
|
2365
2401
|
},
|
|
2366
|
-
"
|
|
2367
|
-
"message": "
|
|
2402
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | passingRedirects": {
|
|
2403
|
+
"message": "Umiiwas sa mga pag-redirect"
|
|
2368
2404
|
},
|
|
2369
|
-
"
|
|
2370
|
-
"message": "
|
|
2405
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | passingServerResponseTime": {
|
|
2406
|
+
"message": "Mabilis na tumugon ang server"
|
|
2371
2407
|
},
|
|
2372
|
-
"
|
|
2373
|
-
"message": "
|
|
2408
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | passingTextCompression": {
|
|
2409
|
+
"message": "Naglalapat ng pag-compress ng text"
|
|
2374
2410
|
},
|
|
2375
|
-
"
|
|
2411
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | redirectsLabel": {
|
|
2412
|
+
"message": "Mga pag-redirect"
|
|
2413
|
+
},
|
|
2414
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | serverResponseTimeLabel": {
|
|
2415
|
+
"message": "Tagal ng pagsagot ng server"
|
|
2416
|
+
},
|
|
2417
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | title": {
|
|
2418
|
+
"message": "Latency ng pag-request ng dokumento"
|
|
2419
|
+
},
|
|
2420
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | uncompressedDownload": {
|
|
2421
|
+
"message": "Hindi naka-compress na pag-download"
|
|
2422
|
+
},
|
|
2423
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | description": {
|
|
2424
|
+
"message": "Pag-isipang itakda ang [font-display](https://developer.chrome.com/blog/font-display) sa swap o optional para tiyaking patuloy na makikita ang text. Puwede pang i-optimize ang swap para mabawasan ang mga pagbabago sa layout gamit ang [mga override sa sukatan ng font](https://developer.chrome.com/blog/font-fallbacks)."
|
|
2425
|
+
},
|
|
2426
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | fontColumn": {
|
|
2376
2427
|
"message": "Font"
|
|
2377
2428
|
},
|
|
2378
|
-
"
|
|
2379
|
-
"message": "
|
|
2429
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | title": {
|
|
2430
|
+
"message": "Font display"
|
|
2380
2431
|
},
|
|
2381
|
-
"
|
|
2382
|
-
"message": "
|
|
2432
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | wastedTimeColumn": {
|
|
2433
|
+
"message": "Nasayang na oras"
|
|
2383
2434
|
},
|
|
2384
|
-
"
|
|
2385
|
-
"message": "
|
|
2435
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | description": {
|
|
2436
|
+
"message": "Pinipilit ng maraming API, na kadalasang nagbabasa ng geometry ng layout, ang rendering engine na i-pause ang pag-execute ng script para makalkula nito ang istilo at layout. Matuto pa tungkol sa [sapilitang reflow](https://developers.google.com/web/fundamentals/performance/rendering/avoid-large-complex-layouts-and-layout-thrashing#avoid-forced-synchronous-layouts) at ang mga pag-mitigate nito."
|
|
2386
2437
|
},
|
|
2387
|
-
"
|
|
2388
|
-
"message": "
|
|
2438
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | relatedStackTrace": {
|
|
2439
|
+
"message": "Stack trace"
|
|
2389
2440
|
},
|
|
2390
|
-
"
|
|
2391
|
-
"message": "
|
|
2441
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | title": {
|
|
2442
|
+
"message": "Sapilitang reflow"
|
|
2392
2443
|
},
|
|
2393
|
-
"
|
|
2394
|
-
"message": "
|
|
2444
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | topTimeConsumingFunctionCall": {
|
|
2445
|
+
"message": "Nangungunang function call"
|
|
2395
2446
|
},
|
|
2396
|
-
"
|
|
2397
|
-
"message": "
|
|
2447
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | totalReflowTime": {
|
|
2448
|
+
"message": "Kabuuang tagal ng pag-reflow"
|
|
2398
2449
|
},
|
|
2399
|
-
"
|
|
2400
|
-
"message": "
|
|
2450
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | description": {
|
|
2451
|
+
"message": "Kapag binawasan ang tagal ng pag-download ng mga larawan, posibleng mapahusay ang natukoy na oras ng pag-load ng page at LCP. [Matuto pa tungkol sa pag-optimize ng laki ng larawan](https://developer.chrome.com/docs/lighthouse/performance/uses-optimized-images/)"
|
|
2401
2452
|
},
|
|
2402
|
-
"
|
|
2403
|
-
"message": "
|
|
2453
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | estimatedSavings": {
|
|
2454
|
+
"message": "{PH1} (Tinatayang {PH2})"
|
|
2404
2455
|
},
|
|
2405
|
-
"
|
|
2406
|
-
"message": "
|
|
2456
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | noOptimizableImages": {
|
|
2457
|
+
"message": "Walang mao-optimize na larawan"
|
|
2407
2458
|
},
|
|
2408
|
-
"
|
|
2409
|
-
"message": "
|
|
2459
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | optimizeFile": {
|
|
2460
|
+
"message": "I-optimize ang laki ng file"
|
|
2410
2461
|
},
|
|
2411
|
-
"
|
|
2412
|
-
"message": "
|
|
2462
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | others": {
|
|
2463
|
+
"message": "{PH1} pa"
|
|
2413
2464
|
},
|
|
2414
|
-
"
|
|
2415
|
-
"message": "
|
|
2465
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | title": {
|
|
2466
|
+
"message": "Pahusayin ang paghahatid ng larawan"
|
|
2416
2467
|
},
|
|
2417
|
-
"
|
|
2418
|
-
"message": "
|
|
2468
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useCompression": {
|
|
2469
|
+
"message": "Kapag tinaasan ang salik ng pag-compress ng larawan, posibleng mapahusay ang laki ng download ng larawang ito."
|
|
2419
2470
|
},
|
|
2420
|
-
"
|
|
2421
|
-
"message": "
|
|
2471
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useModernFormat": {
|
|
2472
|
+
"message": "Kapag gumamit ng modernong format ng imahe (WebP, AVIF) o kapag tinaasan ang pag-compress ng larawan, posibleng mapahusay ang laki ng download ng larawang ito."
|
|
2422
2473
|
},
|
|
2423
|
-
"
|
|
2424
|
-
"message": "
|
|
2474
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useResponsiveSize": {
|
|
2475
|
+
"message": "Ang image file na ito ay mas malaki kaysa sa dapat nitong laki ({PH1}) para sa mga ipinapakitang dimensyon nito ({PH2}). Gumamit ng mga responsive na larawan para bawasan ang laki ng download ng larawan."
|
|
2425
2476
|
},
|
|
2426
|
-
"
|
|
2427
|
-
"message": "
|
|
2477
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useVideoFormat": {
|
|
2478
|
+
"message": "Kapag gumamit ng mga format ng video sa halip na mga GIF, posibleng mapahusay ang laki ng download ng animated na content."
|
|
2428
2479
|
},
|
|
2429
|
-
"
|
|
2430
|
-
"message": "
|
|
2480
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | description": {
|
|
2481
|
+
"message": "Simulan ang pagsisiyasat sa pinakamahabang phase. [Puwedeng mabawasan ang mga pagkaantala](https://web.dev/articles/optimize-inp#optimize_interactions). Para pabilisin ang pagpoproseso, [i-optimize ang mga gastos sa pangunahing thread](https://web.dev/articles/optimize-long-tasks), na madalas na JS."
|
|
2431
2482
|
},
|
|
2432
|
-
"
|
|
2483
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | duration": {
|
|
2484
|
+
"message": "Tagal"
|
|
2485
|
+
},
|
|
2486
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | inputDelay": {
|
|
2487
|
+
"message": "Pagkaantala ng input"
|
|
2488
|
+
},
|
|
2489
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | noInteractions": {
|
|
2490
|
+
"message": "Walang na-detect na interaction"
|
|
2491
|
+
},
|
|
2492
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | phase": {
|
|
2493
|
+
"message": "Phase"
|
|
2494
|
+
},
|
|
2495
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | presentationDelay": {
|
|
2496
|
+
"message": "Pagkaantala ng presentation"
|
|
2497
|
+
},
|
|
2498
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | processingDuration": {
|
|
2499
|
+
"message": "Tagal ng pagpoproseso"
|
|
2500
|
+
},
|
|
2501
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | title": {
|
|
2502
|
+
"message": "INP ayon sa phase"
|
|
2503
|
+
},
|
|
2504
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | description": {
|
|
2505
|
+
"message": "Gawing [nahahanap](https://web.dev/articles/optimize-lcp#1_eliminate_resource_load_delay) kaagad ang larawan para sa LCP mula sa HTML para ma-optimize ang LCP, at [maiwasan ang mabagal na pag-load](https://web.dev/articles/lcp-lazy-loading)"
|
|
2506
|
+
},
|
|
2507
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | fetchPriorityApplied": {
|
|
2508
|
+
"message": "In-apply ang fetchpriority=high"
|
|
2509
|
+
},
|
|
2510
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | fetchPriorityShouldBeApplied": {
|
|
2511
|
+
"message": "Dapat i-apply ang fetchpriority=high"
|
|
2512
|
+
},
|
|
2513
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | lazyLoadNotApplied": {
|
|
2514
|
+
"message": "hindi na-apply ang mabagal na pag-load"
|
|
2515
|
+
},
|
|
2516
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | lcpLoadDelay": {
|
|
2517
|
+
"message": "Nag-load ang LCP na larawan {PH1} pagkatapos ng pinakaunang punto ng pagsisimula."
|
|
2518
|
+
},
|
|
2519
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | noLcp": {
|
|
2520
|
+
"message": "Walang na-detect na LCP"
|
|
2521
|
+
},
|
|
2522
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | noLcpResource": {
|
|
2523
|
+
"message": "Walang na-detect na resource ng LCP dahil hindi larawan ang LCP"
|
|
2524
|
+
},
|
|
2525
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | requestDiscoverable": {
|
|
2526
|
+
"message": "Nahahanap ang request sa paunang dokumento"
|
|
2527
|
+
},
|
|
2528
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | title": {
|
|
2529
|
+
"message": "Pagtuklas sa request ng LCP"
|
|
2530
|
+
},
|
|
2531
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | description": {
|
|
2532
|
+
"message": "Ang bawat [phase ay may mga partikular na strategy sa pagpapahusay](https://web.dev/articles/optimize-lcp#lcp-breakdown). Mainam kung gugugulin sa pag-load ng mga resource ang malaking bahagi ng tagal ng LCP, hindi sa mga pagkaantala."
|
|
2533
|
+
},
|
|
2534
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | duration": {
|
|
2535
|
+
"message": "Tagal"
|
|
2536
|
+
},
|
|
2537
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | elementRenderDelay": {
|
|
2538
|
+
"message": "Pagkaantala sa pag-render ng element"
|
|
2539
|
+
},
|
|
2540
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | fieldDuration": {
|
|
2541
|
+
"message": "Ika-75 percentile ng field"
|
|
2542
|
+
},
|
|
2543
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | noLcp": {
|
|
2544
|
+
"message": "Walang na-detect na LCP"
|
|
2545
|
+
},
|
|
2546
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | phase": {
|
|
2547
|
+
"message": "Phase"
|
|
2548
|
+
},
|
|
2549
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | resourceLoadDelay": {
|
|
2550
|
+
"message": "Pagkaantala sa pag-load ng resource"
|
|
2551
|
+
},
|
|
2552
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | resourceLoadDuration": {
|
|
2553
|
+
"message": "Tagal ng pag-load ng resource"
|
|
2554
|
+
},
|
|
2555
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | timeToFirstByte": {
|
|
2556
|
+
"message": "Time to first byte"
|
|
2557
|
+
},
|
|
2558
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | title": {
|
|
2559
|
+
"message": "LCP ayon sa bahagi"
|
|
2560
|
+
},
|
|
2561
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | description": {
|
|
2562
|
+
"message": "[Iwasan ang pag-chain ng mahahalagang request](https://developer.chrome.com/docs/lighthouse/performance/critical-request-chains) sa pamamagitan ng pagbabawas sa haba ng mga chain, pagbabawas sa laki ng mga dina-download na resource, o pagpapaliban sa pag-download ng mga hindi kinakailangang resource para mapabilis ang pag-load ng page."
|
|
2563
|
+
},
|
|
2564
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | maxCriticalPathLatency": {
|
|
2565
|
+
"message": "Maximum na latency ng critical path:"
|
|
2566
|
+
},
|
|
2567
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | noNetworkDependencyTree": {
|
|
2568
|
+
"message": "Walang gawain sa pag-render na naapektuhan ng mga dependency ng network"
|
|
2569
|
+
},
|
|
2570
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | title": {
|
|
2571
|
+
"message": "Dependency tree ng network"
|
|
2572
|
+
},
|
|
2573
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | warningDescription": {
|
|
2574
|
+
"message": "Iwasan ang pag-chain ng mahahalagang request sa pamamagitan ng pagbabawas sa haba ng mga chain, pagbabawas sa laki ng mga dina-download na resource, o pagpapaliban sa pag-download ng mga hindi kinakailangang resource para mapabilis ang pag-load ng page."
|
|
2575
|
+
},
|
|
2576
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | description": {
|
|
2577
|
+
"message": "Bina-block ng mga request ang unang pag-render ng page, na posibleng makaantala sa LCP. Puwedeng alisin ng [pagpapaliban o pag-inline](https://web.dev/learn/performance/understanding-the-critical-path#render-blocking_resources/) ang mga request sa network na ito sa critical path."
|
|
2578
|
+
},
|
|
2579
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | duration": {
|
|
2580
|
+
"message": "Tagal"
|
|
2581
|
+
},
|
|
2582
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | noRenderBlocking": {
|
|
2583
|
+
"message": "Walang request na nagba-block ng pag-render para sa navigation na ito"
|
|
2584
|
+
},
|
|
2585
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | renderBlockingRequest": {
|
|
2586
|
+
"message": "Request"
|
|
2587
|
+
},
|
|
2588
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | title": {
|
|
2589
|
+
"message": "Mag-render ng mga request sa pag-block"
|
|
2590
|
+
},
|
|
2591
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | description": {
|
|
2592
|
+
"message": "Kung mananatiling mataas ang mga gastos sa Kalkulahin Ulit ang Istilo, mapapababa ito ng pag-optimize ng selector. [I-optimize ang mga selector](https://developer.chrome.com/docs/devtools/performance/selector-stats) gamit ang matagal na lumipas na oras at mataas na % ng slow-path. Mapapaliit ng mga mas simpleng selector, mga mas kaunting selector, mas maliit na DOM, at mas mababaw na DOM ang mga tumutugmang gastos."
|
|
2593
|
+
},
|
|
2594
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | elapsed": {
|
|
2595
|
+
"message": "Lumipas na oras"
|
|
2596
|
+
},
|
|
2597
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | enableSelectorData": {
|
|
2598
|
+
"message": "Walang nakitang data ng CSS selector. Kailangang i-enable ang mga istatistika ng CSS selector sa mga setting ng panel ng performance."
|
|
2599
|
+
},
|
|
2600
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | matchAttempts": {
|
|
2601
|
+
"message": "Mga pagsubok sa pagtutugma"
|
|
2602
|
+
},
|
|
2603
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | matchCount": {
|
|
2604
|
+
"message": "Bilang ng tugma"
|
|
2605
|
+
},
|
|
2606
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | title": {
|
|
2607
|
+
"message": "Mga gastos sa CSS Selector"
|
|
2608
|
+
},
|
|
2609
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | topSelectors": {
|
|
2610
|
+
"message": "Mga nangungunang selector"
|
|
2611
|
+
},
|
|
2612
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | total": {
|
|
2433
2613
|
"message": "Kabuuan"
|
|
2434
2614
|
},
|
|
2435
|
-
"
|
|
2436
|
-
"message": "
|
|
2615
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | columnMainThreadTime": {
|
|
2616
|
+
"message": "Oras sa pangunahing thread"
|
|
2437
2617
|
},
|
|
2438
|
-
"
|
|
2439
|
-
"message": "
|
|
2618
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | columnThirdParty": {
|
|
2619
|
+
"message": "3rd party"
|
|
2440
2620
|
},
|
|
2441
|
-
"
|
|
2442
|
-
"message": "
|
|
2621
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | columnTransferSize": {
|
|
2622
|
+
"message": "Laki ng paglipat"
|
|
2443
2623
|
},
|
|
2444
|
-
"
|
|
2445
|
-
"message": "
|
|
2624
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | description": {
|
|
2625
|
+
"message": "Puwedeng lubos na makaapekto ang code ng 3rd party sa performance ng pag-load. [Bawasan at ipagpaliban ang pag-load ng code ng 3rd party](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/loading-third-party-javascript/) para isapriyoridad ang content ng iyong page."
|
|
2626
|
+
},
|
|
2627
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | noThirdParties": {
|
|
2628
|
+
"message": "Walang nakitang third party"
|
|
2629
|
+
},
|
|
2630
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | title": {
|
|
2631
|
+
"message": "Mga 3rd party"
|
|
2632
|
+
},
|
|
2633
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/Viewport.js | description": {
|
|
2634
|
+
"message": "Posibleng [maantala nang hanggang 300 ms](https://developer.chrome.com/blog/300ms-tap-delay-gone-away/) ang mga interaction sa pag-tap kung hindi na-optimize para sa mobile ang viewport."
|
|
2635
|
+
},
|
|
2636
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/Viewport.js | title": {
|
|
2637
|
+
"message": "I-optimize ang viewport para sa mobile"
|
|
2638
|
+
},
|
|
2639
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | HTTPMethodNotGET": {
|
|
2640
|
+
"message": "Ang mga page lang na nag-load sa pamamagitan ng kahilingan gamit ang GET ang kwalipikado para sa back/forward cache."
|
|
2641
|
+
},
|
|
2642
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | HTTPStatusNotOK": {
|
|
2643
|
+
"message": "Ang mga page lang na may status code na 2XX ang puwedeng i-cache."
|
|
2644
|
+
},
|
|
2645
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | JavaScriptExecution": {
|
|
2646
|
+
"message": "Naka-detect ang Chrome ng pagsubok na i-execute ang JavaScript habang nasa cache."
|
|
2647
|
+
},
|
|
2648
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | appBanner": {
|
|
2649
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na humiling ng AppBanner."
|
|
2650
|
+
},
|
|
2651
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabled": {
|
|
2652
|
+
"message": "Dini-disable ng mga pag-flag ang back/forward cache. Bumisita sa chrome://flags/#back-forward-cache para lokal itong i-enable sa device na ito."
|
|
2653
|
+
},
|
|
2654
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledByCommandLine": {
|
|
2655
|
+
"message": "Dini-disable ng command line ang back/forward cache."
|
|
2656
|
+
},
|
|
2657
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledByLowMemory": {
|
|
2658
|
+
"message": "Naka-disable ang back/forward cache dahil sa hindi sapat na memory."
|
|
2659
|
+
},
|
|
2660
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledForDelegate": {
|
|
2661
|
+
"message": "Hindi sinusuportahan ng pag-delegate ang back/forward cache."
|
|
2662
|
+
},
|
|
2663
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledForPrerender": {
|
|
2664
|
+
"message": "Naka-disable ang back/forward cache para sa prerenderer."
|
|
2665
|
+
},
|
|
2666
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | broadcastChannel": {
|
|
2667
|
+
"message": "Hindi puwedeng i-cache ang page dahil mayroon itong instance na BroadcastChannel na may mga nakarehistrong listener."
|
|
2668
|
+
},
|
|
2669
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cacheControlNoStore": {
|
|
2670
|
+
"message": "Hindi puwedeng pumasok sa back/forward cache ang mga page na may header na cache-control:no-store."
|
|
2671
|
+
},
|
|
2672
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cacheFlushed": {
|
|
2673
|
+
"message": "Sadyang na-clear ang cache."
|
|
2674
|
+
},
|
|
2675
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cacheLimit": {
|
|
2676
|
+
"message": "Inalis sa cache ang page para mapayagang ma-cache ang isa pang page."
|
|
2677
|
+
},
|
|
2678
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | containsPlugins": {
|
|
2679
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na naglalaman ng mga plugin."
|
|
2680
|
+
},
|
|
2681
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentDiscarded": {
|
|
2682
|
+
"message": "Hindi tinukoy"
|
|
2683
|
+
},
|
|
2684
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentFileChooser": {
|
|
2685
|
+
"message": "Hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng FileChooser API."
|
|
2686
|
+
},
|
|
2687
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentFileSystemAccess": {
|
|
2688
|
+
"message": "Hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng File System Access API."
|
|
2689
|
+
},
|
|
2690
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaDevicesDispatcherHost": {
|
|
2691
|
+
"message": "Hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng Dispatcher ng Media Device."
|
|
2692
|
+
},
|
|
2693
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaPlay": {
|
|
2694
|
+
"message": "May nagpe-play na media player noong nag-navigate paalis."
|
|
2695
|
+
},
|
|
2696
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaSession": {
|
|
2697
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng MediaSession API at nagtakda ng status ng pag-playback."
|
|
2698
|
+
},
|
|
2699
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaSessionService": {
|
|
2700
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng MediaSession API at nagtakda ng mga tagapangasiwa ng pagkilos."
|
|
2701
|
+
},
|
|
2702
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentScreenReader": {
|
|
2703
|
+
"message": "Naka-disable ang back/forward cache dahil sa screen reader."
|
|
2704
|
+
},
|
|
2705
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentSecurityHandler": {
|
|
2706
|
+
"message": "Hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng SecurityHandler."
|
|
2707
|
+
},
|
|
2708
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentSerial": {
|
|
2709
|
+
"message": "Hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng Serial API."
|
|
2446
2710
|
},
|
|
2447
|
-
"
|
|
2448
|
-
"message": "
|
|
2711
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentWebAuthenticationAPI": {
|
|
2712
|
+
"message": "Hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng WebAuthentication API."
|
|
2449
2713
|
},
|
|
2450
|
-
"
|
|
2451
|
-
"message": "
|
|
2714
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentWebBluetooth": {
|
|
2715
|
+
"message": "Hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng WebBluetooth API."
|
|
2452
2716
|
},
|
|
2453
|
-
"
|
|
2454
|
-
"message": "Hindi
|
|
2717
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentWebUSB": {
|
|
2718
|
+
"message": "Hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng WebUSB API."
|
|
2455
2719
|
},
|
|
2456
|
-
"
|
|
2457
|
-
"message": "
|
|
2720
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cookieDisabled": {
|
|
2721
|
+
"message": "Naka-disable ang back/forward cache dahil naka-disable ang cookies sa isang page na gumagamit ng Cache-Control: no-store."
|
|
2458
2722
|
},
|
|
2459
|
-
"
|
|
2460
|
-
"message": "
|
|
2723
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | dedicatedWorkerOrWorklet": {
|
|
2724
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng nakalaang worker o worklet."
|
|
2461
2725
|
},
|
|
2462
|
-
"
|
|
2463
|
-
"message": "Hindi
|
|
2726
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | documentLoaded": {
|
|
2727
|
+
"message": "Hindi natapos mag-load ang dokumento bago nag-navigate paalis dito."
|
|
2464
2728
|
},
|
|
2465
|
-
"
|
|
2466
|
-
"message": "
|
|
2729
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderAppBannerManager": {
|
|
2730
|
+
"message": "May App Banner noong nag-navigate paalis."
|
|
2467
2731
|
},
|
|
2468
|
-
"
|
|
2469
|
-
"message": "
|
|
2732
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderChromePasswordManagerClientBindCredentialManager": {
|
|
2733
|
+
"message": "May Password Manager ng Chrome noong nag-navigate paalis."
|
|
2470
2734
|
},
|
|
2471
|
-
"
|
|
2472
|
-
"message": "
|
|
2735
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderDomDistillerSelfDeletingRequestDelegate": {
|
|
2736
|
+
"message": "Isinasagawa ang DOM distillation noong nag-navigate paalis."
|
|
2473
2737
|
},
|
|
2474
|
-
"
|
|
2475
|
-
"message": "
|
|
2738
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderDomDistillerViewerSource": {
|
|
2739
|
+
"message": "May DOM Distiller Viewer noong nag-navigate paalis."
|
|
2476
2740
|
},
|
|
2477
|
-
"
|
|
2478
|
-
"message": "
|
|
2741
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensionMessaging": {
|
|
2742
|
+
"message": "Naka-disable ang back/forward cache dahil gumagamit ang mga extension ng messaging API."
|
|
2479
2743
|
},
|
|
2480
|
-
"
|
|
2481
|
-
"message": "
|
|
2744
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensionMessagingForOpenPort": {
|
|
2745
|
+
"message": "Dapat isara ng mga extension na may long-lived na koneksyon ang koneksyon bago pumasok sa back/forward cache."
|
|
2482
2746
|
},
|
|
2483
|
-
"
|
|
2484
|
-
"message": "
|
|
2747
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensionSentMessageToCachedFrame": {
|
|
2748
|
+
"message": "Sinubukang magpadala ng mga extension na may long-lived na koneksyon ng mga mensahe sa mga frame sa back/forward cache."
|
|
2485
2749
|
},
|
|
2486
|
-
"
|
|
2487
|
-
"message": "
|
|
2750
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensions": {
|
|
2751
|
+
"message": "Naka-disable ang back/forward cache dahil sa mga extension."
|
|
2488
2752
|
},
|
|
2489
|
-
"
|
|
2490
|
-
"message": "
|
|
2753
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderModalDialog": {
|
|
2754
|
+
"message": "Ipinakita ang modal dialog, gaya ng dialog para sa pagsusumite ulit ng form o http password, para sa page noong nag-navigate paalis."
|
|
2491
2755
|
},
|
|
2492
|
-
"
|
|
2493
|
-
"message": "
|
|
2756
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderOfflinePage": {
|
|
2757
|
+
"message": "Ipinakita ang offline na page noong nag-navigate paalis."
|
|
2494
2758
|
},
|
|
2495
|
-
"
|
|
2496
|
-
"message": "
|
|
2759
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderOomInterventionTabHelper": {
|
|
2760
|
+
"message": "May Out-Of-Memory Intervention bar noong nag-navigate paalis."
|
|
2497
2761
|
},
|
|
2498
|
-
"
|
|
2499
|
-
"message": "
|
|
2762
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderPermissionRequestManager": {
|
|
2763
|
+
"message": "May mga kahilingan sa pahintulot noong nag-navigate paalis."
|
|
2500
2764
|
},
|
|
2501
|
-
"
|
|
2502
|
-
"message": "
|
|
2765
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderPopupBlockerTabHelper": {
|
|
2766
|
+
"message": "May popup blocker noong nag-navigate paalis."
|
|
2503
2767
|
},
|
|
2504
|
-
"
|
|
2505
|
-
"message": "
|
|
2768
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderSafeBrowsingThreatDetails": {
|
|
2769
|
+
"message": "Ipinakita ang mga detalye ng Ligtas na Pag-browse noong nag-navigate paalis."
|
|
2506
2770
|
},
|
|
2507
|
-
"
|
|
2508
|
-
"message": "
|
|
2771
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderSafeBrowsingTriggeredPopupBlocker": {
|
|
2772
|
+
"message": "Tinukoy ng Ligtas na Pag-browse ang page na ito bilang mapang-abuso at nag-block ito ng popup."
|
|
2509
2773
|
},
|
|
2510
|
-
"
|
|
2511
|
-
"message": "
|
|
2774
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | enteredBackForwardCacheBeforeServiceWorkerHostAdded": {
|
|
2775
|
+
"message": "May service worker na na-activate habang nasa back/forward cache ang page."
|
|
2512
2776
|
},
|
|
2513
|
-
"
|
|
2514
|
-
"message": "
|
|
2777
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | errorDocument": {
|
|
2778
|
+
"message": "Naka-disable ang back/forward cache dahil sa isang error sa dokumento."
|
|
2515
2779
|
},
|
|
2516
|
-
"
|
|
2517
|
-
"message": "
|
|
2780
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | fencedFramesEmbedder": {
|
|
2781
|
+
"message": "Hindi puwedeng i-store sa bfcache ang mga page na gumagamit ng FencedFrames."
|
|
2518
2782
|
},
|
|
2519
|
-
"
|
|
2520
|
-
"message": "
|
|
2783
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | foregroundCacheLimit": {
|
|
2784
|
+
"message": "Inalis sa cache ang page para mapayagang ma-cache ang isa pang page."
|
|
2521
2785
|
},
|
|
2522
|
-
"
|
|
2523
|
-
"message": "
|
|
2786
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | grantedMediaStreamAccess": {
|
|
2787
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na nagbigay ng access sa pag-stream ng media."
|
|
2524
2788
|
},
|
|
2525
|
-
"
|
|
2526
|
-
"message": "
|
|
2789
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | haveInnerContents": {
|
|
2790
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na may ilang partikular na uri ng naka-embed na content (hal. mga PDF)."
|
|
2527
2791
|
},
|
|
2528
|
-
"
|
|
2529
|
-
"message": "
|
|
2792
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | idleManager": {
|
|
2793
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng IdleManager."
|
|
2530
2794
|
},
|
|
2531
|
-
"
|
|
2532
|
-
"message": "
|
|
2795
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | indexedDBConnection": {
|
|
2796
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na may bukas na IndexedDBConnection."
|
|
2533
2797
|
},
|
|
2534
|
-
"
|
|
2535
|
-
"message": "
|
|
2798
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | indexedDBEvent": {
|
|
2799
|
+
"message": "Naka-disable ang back/forward cache dahil sa event na IndexedDB."
|
|
2536
2800
|
},
|
|
2537
|
-
"
|
|
2538
|
-
"message": "
|
|
2801
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | ineligibleAPI": {
|
|
2802
|
+
"message": "May ginamit na mga hindi kwalipikadong API."
|
|
2539
2803
|
},
|
|
2540
|
-
"
|
|
2541
|
-
"message": "
|
|
2804
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | injectedJavascript": {
|
|
2805
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page kung saan na-inject ng mga extension ang JavaScript."
|
|
2542
2806
|
},
|
|
2543
|
-
"
|
|
2544
|
-
"message": "
|
|
2807
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | injectedStyleSheet": {
|
|
2808
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page kung saan na-inject ng mga extension ang StyleSheet."
|
|
2545
2809
|
},
|
|
2546
|
-
"
|
|
2547
|
-
"message": "
|
|
2810
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | internalError": {
|
|
2811
|
+
"message": "Internal na error."
|
|
2548
2812
|
},
|
|
2549
|
-
"
|
|
2550
|
-
"message": "
|
|
2813
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | jsNetworkRequestReceivedCacheControlNoStoreResource": {
|
|
2814
|
+
"message": "Naka-disable ang back/forward cache dahil nakatanggap ang ilang request sa network ng JavaScript ng resource na may Cache-Control: no-store na header."
|
|
2551
2815
|
},
|
|
2552
|
-
"
|
|
2553
|
-
"message": "
|
|
2816
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | keepaliveRequest": {
|
|
2817
|
+
"message": "Naka-disable ang back/forward cache dahil sa isang keepalive na kahilingan."
|
|
2554
2818
|
},
|
|
2555
|
-
"
|
|
2556
|
-
"message": "
|
|
2819
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | keyboardLock": {
|
|
2820
|
+
"message": "Kasalukuyang hindi available para sa back/forward cache ang mag page na gumagamit ng KeyboardLock."
|
|
2557
2821
|
},
|
|
2558
|
-
"
|
|
2559
|
-
"message": "
|
|
2822
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | loading": {
|
|
2823
|
+
"message": "Hindi natapos mag-load ang page bago nag-navigate paalis dito."
|
|
2560
2824
|
},
|
|
2561
|
-
"
|
|
2562
|
-
"message": "
|
|
2825
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | mainResourceHasCacheControlNoCache": {
|
|
2826
|
+
"message": "Hindi puwedeng pumasok sa back/forward cache ang mga page na may pangunahing resource na may cache-control:no-cache."
|
|
2563
2827
|
},
|
|
2564
|
-
"
|
|
2565
|
-
"message": "
|
|
2828
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | mainResourceHasCacheControlNoStore": {
|
|
2829
|
+
"message": "Hindi puwedeng pumasok sa back/forward cache ang mga page na may pangunahing resource na may cache-control:no-store."
|
|
2566
2830
|
},
|
|
2567
|
-
"
|
|
2568
|
-
"message": "
|
|
2831
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | navigationCancelledWhileRestoring": {
|
|
2832
|
+
"message": "Kinansela ang pag-navigate bago ma-restore ang page mula sa back/forward cache."
|
|
2569
2833
|
},
|
|
2570
|
-
"
|
|
2571
|
-
"message": "
|
|
2834
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkExceedsBufferLimit": {
|
|
2835
|
+
"message": "Inalis sa cache ang page dahil may aktibong koneksyon ng network na nakatanggap ng masyadong maraming data. Nililimitahan ng Chrome ang dami ng data na puwedeng matanggap ng page habang naka-cache."
|
|
2572
2836
|
},
|
|
2573
|
-
"
|
|
2574
|
-
"message": "
|
|
2837
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkRequestDatapipeDrainedAsBytesConsumer": {
|
|
2838
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na may inflight na fetch() o XHR)."
|
|
2575
2839
|
},
|
|
2576
|
-
"
|
|
2577
|
-
"message": "
|
|
2840
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkRequestRedirected": {
|
|
2841
|
+
"message": "Inalis sa back/forward cache ang page dahil may kaugnay na pag-redirect ang isang kahilingan sa aktibong network."
|
|
2578
2842
|
},
|
|
2579
|
-
"
|
|
2580
|
-
"message": "
|
|
2843
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkRequestTimeout": {
|
|
2844
|
+
"message": "Inalis sa cache ang page dahil masyadong matagal na nakabukas ang isang koneksyon ng network. Nililimitahan ng Chrome ang haba ng oras na puwedeng makatanggap ng data ang isa page habang naka-cache."
|
|
2581
2845
|
},
|
|
2582
|
-
"
|
|
2583
|
-
"message": "
|
|
2846
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | noResponseHead": {
|
|
2847
|
+
"message": "Hindi puwedeng pumasok sa back/forward cache ang mga page na walang valid na header ng sagot."
|
|
2584
2848
|
},
|
|
2585
|
-
"
|
|
2586
|
-
"message": "
|
|
2849
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | notMainFrame": {
|
|
2850
|
+
"message": "Nangyari ang pag-navigate sa frame bukod pa sa pangunahing frame."
|
|
2587
2851
|
},
|
|
2588
|
-
"
|
|
2589
|
-
"message": "
|
|
2852
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingIndexedDBTransaction": {
|
|
2853
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang page na may mga kasalukuyang naka-index na transaksyon sa DB."
|
|
2590
2854
|
},
|
|
2591
|
-
"
|
|
2592
|
-
"message": "
|
|
2855
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestDirectSocket": {
|
|
2856
|
+
"message": "Kasalukuyang hindi available para sa back/forward cache ang mga page na may in-flight na kahilingan sa network."
|
|
2593
2857
|
},
|
|
2594
|
-
"
|
|
2595
|
-
"message": "
|
|
2858
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestFetch": {
|
|
2859
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na may in-flight na kahilingan sa fetch network."
|
|
2596
2860
|
},
|
|
2597
|
-
"
|
|
2598
|
-
"message": "
|
|
2861
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestOthers": {
|
|
2862
|
+
"message": "Kasalukuyang hindi available para sa back/forward cache ang mga page na may in-flight na kahilingan sa network."
|
|
2599
2863
|
},
|
|
2600
|
-
"
|
|
2601
|
-
"message": "
|
|
2864
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestXHR": {
|
|
2865
|
+
"message": "Kasalukuyang hindi available para sa back/forward cache ang mga page na may in-flight na kahilingan sa network na XHR."
|
|
2602
2866
|
},
|
|
2603
|
-
"
|
|
2604
|
-
"message": "
|
|
2867
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | paymentManager": {
|
|
2868
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng PaymentManager."
|
|
2605
2869
|
},
|
|
2606
|
-
"
|
|
2607
|
-
"message": "
|
|
2870
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | pictureInPicture": {
|
|
2871
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng Picture-in-Picture."
|
|
2608
2872
|
},
|
|
2609
|
-
"
|
|
2610
|
-
"message": "
|
|
2873
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | printing": {
|
|
2874
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na nagpapakita ng UI sa Pag-print."
|
|
2611
2875
|
},
|
|
2612
|
-
"
|
|
2613
|
-
"message": "
|
|
2876
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | relatedActiveContentsExist": {
|
|
2877
|
+
"message": "Binuksan ang page gamit ang 'window.open()' at may ibang tab na tumutukoy rito, o may window na binuksan ang page."
|
|
2614
2878
|
},
|
|
2615
|
-
"
|
|
2616
|
-
"message": "
|
|
2879
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | rendererProcessCrashed": {
|
|
2880
|
+
"message": "Nag-crash ang proseso ng pag-render para sa page sa back/forward cache."
|
|
2617
2881
|
},
|
|
2618
|
-
"
|
|
2619
|
-
"message": "
|
|
2882
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | rendererProcessKilled": {
|
|
2883
|
+
"message": "Inihinto ang proseso ng pag-render para sa page na nasa back/forward cache."
|
|
2620
2884
|
},
|
|
2621
|
-
"
|
|
2622
|
-
"message": "
|
|
2885
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedAudioCapturePermission": {
|
|
2886
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na humiling ng mga pahintulot sa pag-capture ng audio."
|
|
2623
2887
|
},
|
|
2624
|
-
"
|
|
2625
|
-
"message": "
|
|
2888
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedBackForwardCacheBlockedSensors": {
|
|
2889
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na humiling ng mga pahintulot sa sensor."
|
|
2626
2890
|
},
|
|
2627
|
-
"
|
|
2628
|
-
"message": "
|
|
2891
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedBackgroundWorkPermission": {
|
|
2892
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na humiling ng mga pahintulot sa pag-sync o pag-fetch ng background."
|
|
2629
2893
|
},
|
|
2630
|
-
"
|
|
2631
|
-
"message": "
|
|
2894
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedMIDIPermission": {
|
|
2895
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na humiling ng mga pahintulot sa MIDI."
|
|
2632
2896
|
},
|
|
2633
|
-
"
|
|
2634
|
-
"message": "
|
|
2897
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedNotificationsPermission": {
|
|
2898
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na humiling ng mga pahintulot sa mga notification."
|
|
2635
2899
|
},
|
|
2636
|
-
"
|
|
2637
|
-
"message": "
|
|
2900
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedStorageAccessGrant": {
|
|
2901
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na humiling ng access sa storage."
|
|
2638
2902
|
},
|
|
2639
|
-
"
|
|
2640
|
-
"message": "
|
|
2903
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedVideoCapturePermission": {
|
|
2904
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na humiling ng mga pahintulot sa pag-capture ng video."
|
|
2641
2905
|
},
|
|
2642
|
-
"
|
|
2643
|
-
"message": "
|
|
2906
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | schemeNotHTTPOrHTTPS": {
|
|
2907
|
+
"message": "Ang mga page lang na may scheme ng URL na HTTP / HTTPS ang puwedeng i-cache."
|
|
2644
2908
|
},
|
|
2645
|
-
"
|
|
2646
|
-
"message": "
|
|
2909
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerClaim": {
|
|
2910
|
+
"message": "Na-claim ng service worker ang page habang nasa back/forward cache ito."
|
|
2647
2911
|
},
|
|
2648
|
-
"node_modules/@paulirish/trace_engine/
|
|
2649
|
-
"message": "
|
|
2912
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerPostMessage": {
|
|
2913
|
+
"message": "May service worker na sumubok na magpadala ng MessageEvent sa page na nasa back/forward cache."
|
|
2650
2914
|
},
|
|
2651
|
-
"node_modules/@paulirish/trace_engine/
|
|
2652
|
-
"message": "
|
|
2915
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerUnregistration": {
|
|
2916
|
+
"message": "Na-unregister ang ServiceWorker habang nasa back/forward cache ang isang page."
|
|
2653
2917
|
},
|
|
2654
|
-
"node_modules/@paulirish/trace_engine/
|
|
2655
|
-
"message": "
|
|
2918
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerVersionActivation": {
|
|
2919
|
+
"message": "Inalis sa back/forward cache ang page dahil sa pag-activate ng service worker."
|
|
2656
2920
|
},
|
|
2657
|
-
"node_modules/@paulirish/trace_engine/
|
|
2658
|
-
"message": "
|
|
2921
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | sessionRestored": {
|
|
2922
|
+
"message": "Ni-restart at na-clear ng Chrome ang mga entry sa back/forward cache."
|
|
2659
2923
|
},
|
|
2660
|
-
"node_modules/@paulirish/trace_engine/
|
|
2661
|
-
"message": "
|
|
2924
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | sharedWorker": {
|
|
2925
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng SharedWorker."
|
|
2662
2926
|
},
|
|
2663
|
-
"node_modules/@paulirish/trace_engine/
|
|
2664
|
-
"message": "
|
|
2927
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | speechRecognizer": {
|
|
2928
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng SpeechRecognizer."
|
|
2665
2929
|
},
|
|
2666
|
-
"node_modules/@paulirish/trace_engine/
|
|
2667
|
-
"message": "
|
|
2930
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | speechSynthesis": {
|
|
2931
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng SpeechSynthesis."
|
|
2668
2932
|
},
|
|
2669
|
-
"node_modules/@paulirish/trace_engine/
|
|
2670
|
-
"message": "
|
|
2933
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | subframeIsNavigating": {
|
|
2934
|
+
"message": "May iframe sa page na nagsimula ng pag-navigate na hindi natapos."
|
|
2671
2935
|
},
|
|
2672
|
-
"node_modules/@paulirish/trace_engine/
|
|
2673
|
-
"message": "
|
|
2936
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | subresourceHasCacheControlNoCache": {
|
|
2937
|
+
"message": "Hindi puwedeng pumasok sa back/forward cache ang mga page na may subresource na may cache-control:no-cache."
|
|
2674
2938
|
},
|
|
2675
|
-
"node_modules/@paulirish/trace_engine/
|
|
2676
|
-
"message": "
|
|
2939
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | subresourceHasCacheControlNoStore": {
|
|
2940
|
+
"message": "Hindi puwedeng pumasok sa back/forward cache ang mga page na may subresource na may cache-control:no-store."
|
|
2677
2941
|
},
|
|
2678
|
-
"node_modules/@paulirish/trace_engine/
|
|
2679
|
-
"message": "
|
|
2942
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | timeout": {
|
|
2943
|
+
"message": "Lumampas ang page sa maximum na oras sa back/forward cache at nag-expire na ito."
|
|
2680
2944
|
},
|
|
2681
|
-
"node_modules/@paulirish/trace_engine/
|
|
2682
|
-
"message": "
|
|
2945
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | timeoutPuttingInCache": {
|
|
2946
|
+
"message": "Nag-time out ang page habang pumapasok sa back/forward cache (malamang na dahil sa mga matagal na tumatakbong tagapangasiwa ng pagehide)."
|
|
2683
2947
|
},
|
|
2684
|
-
"node_modules/@paulirish/trace_engine/
|
|
2685
|
-
"message": "Ang
|
|
2948
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | unloadHandlerExistsInMainFrame": {
|
|
2949
|
+
"message": "Ang page ay may tagapangasiwa ng pag-unload sa pangunahing frame."
|
|
2686
2950
|
},
|
|
2687
|
-
"node_modules/@paulirish/trace_engine/
|
|
2688
|
-
"message": "
|
|
2951
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | unloadHandlerExistsInSubFrame": {
|
|
2952
|
+
"message": "Ang page ay may tagapangasiwa ng pag-unload sa sub frame."
|
|
2689
2953
|
},
|
|
2690
|
-
"node_modules/@paulirish/trace_engine/
|
|
2691
|
-
"message": "
|
|
2954
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | userAgentOverrideDiffers": {
|
|
2955
|
+
"message": "Binago ng browser ang header ng override ng user agent."
|
|
2692
2956
|
},
|
|
2693
|
-
"node_modules/@paulirish/trace_engine/
|
|
2694
|
-
"message": "
|
|
2957
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | wasGrantedMediaAccess": {
|
|
2958
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na nagbigay ng access sa pag-record ng video o audio."
|
|
2695
2959
|
},
|
|
2696
|
-
"node_modules/@paulirish/trace_engine/
|
|
2697
|
-
"message": "
|
|
2960
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webDatabase": {
|
|
2961
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng WebDatabase."
|
|
2698
2962
|
},
|
|
2699
|
-
"node_modules/@paulirish/trace_engine/
|
|
2700
|
-
"message": "
|
|
2963
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webHID": {
|
|
2964
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng WebHID."
|
|
2701
2965
|
},
|
|
2702
|
-
"node_modules/@paulirish/trace_engine/
|
|
2703
|
-
"message": "
|
|
2966
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webLocks": {
|
|
2967
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng WebLocks."
|
|
2704
2968
|
},
|
|
2705
|
-
"node_modules/@paulirish/trace_engine/
|
|
2706
|
-
"message": "
|
|
2969
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webNfc": {
|
|
2970
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng WebNfc."
|
|
2707
2971
|
},
|
|
2708
|
-
"node_modules/@paulirish/trace_engine/
|
|
2709
|
-
"message": "
|
|
2972
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webOTPService": {
|
|
2973
|
+
"message": "Kasalukuyang hindi kwalipikado para sa bfcache ang mga page na gumagamit ng WebOTPService."
|
|
2710
2974
|
},
|
|
2711
|
-
"node_modules/@paulirish/trace_engine/
|
|
2712
|
-
"message": "
|
|
2975
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTC": {
|
|
2976
|
+
"message": "Hindi puwedeng pumasok sa back/forward cache ang mga page na may WebRTC."
|
|
2713
2977
|
},
|
|
2714
|
-
"node_modules/@paulirish/trace_engine/
|
|
2715
|
-
"message": "
|
|
2978
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCSticky": {
|
|
2979
|
+
"message": "Naka-disable ang back/forward cache dahil ginamit ang WebRTC."
|
|
2716
2980
|
},
|
|
2717
|
-
"node_modules/@paulirish/trace_engine/
|
|
2718
|
-
"message": "
|
|
2981
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webShare": {
|
|
2982
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng WebShare."
|
|
2719
2983
|
},
|
|
2720
|
-
"node_modules/@paulirish/trace_engine/
|
|
2721
|
-
"message": "
|
|
2984
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocket": {
|
|
2985
|
+
"message": "Hindi puwedeng pumasok sa back/forward cache ang mga page na may WebSocket."
|
|
2722
2986
|
},
|
|
2723
|
-
"node_modules/@paulirish/trace_engine/
|
|
2724
|
-
"message": "
|
|
2987
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketSticky": {
|
|
2988
|
+
"message": "Naka-disable ang back/forward cache dahil ginamit ang WebSocket."
|
|
2725
2989
|
},
|
|
2726
|
-
"node_modules/@paulirish/trace_engine/
|
|
2727
|
-
"message": "
|
|
2990
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransport": {
|
|
2991
|
+
"message": "Hindi puwedeng pumasok sa back/forward cache ang mga page na may WebTransport."
|
|
2728
2992
|
},
|
|
2729
|
-
"node_modules/@paulirish/trace_engine/
|
|
2730
|
-
"message": "
|
|
2993
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportSticky": {
|
|
2994
|
+
"message": "Naka-disable ang back/forward cache dahil ginamit ang WebTransport."
|
|
2995
|
+
},
|
|
2996
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webXR": {
|
|
2997
|
+
"message": "Kasalukuyang hindi kwalipikado para sa back/forward cache ang mga page na gumagamit ng WebXR."
|
|
2731
2998
|
},
|
|
2732
2999
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
2733
3000
|
"message": "Para sa animated na content, gamitin ang [`amp-anim`](https://amp.dev/documentation/components/amp-anim/) para mabawasan ang paggamit ng CPU kapag offscreen ang content."
|
|
@@ -3221,6 +3488,9 @@
|
|
|
3221
3488
|
"report/renderer/report-utils.js | dropdownDarkTheme": {
|
|
3222
3489
|
"message": "I-toggle ang Madilim na Tema"
|
|
3223
3490
|
},
|
|
3491
|
+
"report/renderer/report-utils.js | dropdownInsightsToggle": {
|
|
3492
|
+
"message": "I-toggle ang mga pang-eksperimentong insight"
|
|
3493
|
+
},
|
|
3224
3494
|
"report/renderer/report-utils.js | dropdownPrintExpanded": {
|
|
3225
3495
|
"message": "Pinalawak ang Pag-print"
|
|
3226
3496
|
},
|