Skip to content

Commit

Permalink
i18n: fix max potential FID description (#7353)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish authored Feb 28, 2019
1 parent a7fc2f0 commit 6753990
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lighthouse-core/audits/metrics/max-potential-fid.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const i18n = require('../../lib/i18n/i18n');
const UIStrings = {
/** The name of the metric "Maximum Potential First Input Delay" that marks the maximum estimated time between the page receiving input (a user clicking, tapping, or typing) and the page responding. Shown to users as the label for the numeric metric value. Ideally fits within a ~40 character limit. */
title: 'Max Potential FID',
/** Description of the Estimated Input Latency metric that estimates the amount of time, in milliseconds, that the app takes to respond to user input. This description is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. 'Learn More' becomes link text to additional documentation. */
/** Description of the Maximum Potential First Input Delay metric that marks the maximum estimated time between the page receiving input (a user clicking, tapping, or typing) and the page responding. This description is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. 'Learn More' becomes link text to additional documentation. */
description: 'The potential First Input Delay that your users could experience is the ' +
'duration, in milliseconds, of the longest task.',
};
Expand Down
2 changes: 1 addition & 1 deletion lighthouse-core/lib/i18n/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@
},
"lighthouse-core/audits/metrics/max-potential-fid.js | description": {
"message": "The potential First Input Delay that your users could experience is the duration, in milliseconds, of the longest task.",
"description": "Description of the Estimated Input Latency metric that estimates the amount of time, in milliseconds, that the app takes to respond to user input. This description is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. 'Learn More' becomes link text to additional documentation."
"description": "Description of the Maximum Potential First Input Delay metric that marks the maximum estimated time between the page receiving input (a user clicking, tapping, or typing) and the page responding. This description is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. 'Learn More' becomes link text to additional documentation."
},
"lighthouse-core/audits/metrics/max-potential-fid.js | title": {
"message": "Max Potential FID",
Expand Down

0 comments on commit 6753990

Please sign in to comment.