[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i18n: perf-budget and res-summary column headers #9127

Merged
merged 5 commits into from
Jun 7, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updated desc strings
  • Loading branch information
exterkamp committed Jun 6, 2019
commit 53925ee1e646b2ae7920ae28f3cb1cfb2b9f6e10
2 changes: 1 addition & 1 deletion lighthouse-core/audits/performance-budget.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const UIStrings = {
=1 {1 request}
other {# requests}
}`,
/** Table column header for how displaying how much larger the size of network requests were than a predetermined budget. */
/** Label for a column in a data table; entries will be how much greater the quantity of network requests were than a predetermined budget, or how much larger the size of network requests were than a predetermined budget.*/
exterkamp marked this conversation as resolved.
Show resolved Hide resolved
columnOverBudget: 'Over Budget',
};

Expand Down
8 changes: 4 additions & 4 deletions lighthouse-core/lib/i18n/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@
},
"lighthouse-core/audits/performance-budget.js | columnOverBudget": {
"message": "Over Budget",
"description": "Table column header for how displaying how much larger the size of network requests were than a predetermined budget."
"description": "Label for a column in a data table; entries will be how much greater the quantity of network requests were than a predetermined budget, or how much larger the size of network requests were than a predetermined budget."
},
"lighthouse-core/audits/performance-budget.js | description": {
"message": "Keep the quantity and size of network requests under the targets set by the provided performance budget. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/budgets).",
Expand Down Expand Up @@ -1249,11 +1249,11 @@
},
"lighthouse-core/lib/i18n/i18n.js | columnRequests": {
"message": "Requests",
"description": "Label for the count of network requests column in data tables, entries will be the number of network requests done by a webpage."
"description": "Label for a column in a data table; entries will be the number of network requests done by a webpage."
},
"lighthouse-core/lib/i18n/i18n.js | columnResourceType": {
"message": "Resource Type",
"description": "Label for the type of network resource column in data tables, entries will be enumerated kinds of network requests e.g. \"Scripts\", \"Third-Party\", \"Stylesheet\"."
"description": "Label for a column in a data table; entries will be types of resources loaded over the network, e.g. \"Scripts\", \"Third-Party\", \"Stylesheet\"."
},
"lighthouse-core/lib/i18n/i18n.js | columnSize": {
"message": "Size",
Expand All @@ -1265,7 +1265,7 @@
},
"lighthouse-core/lib/i18n/i18n.js | columnTransferSize": {
"message": "Transfer Size",
"description": "Label for the transfer size of network requests column in data tables, entries will be the total bytes transferred of a group of network requests."
"description": "Label for a column in a data table; entries will be the number of kilobytes transferred to load a set of files."
},
"lighthouse-core/lib/i18n/i18n.js | columnURL": {
"message": "URL",
Expand Down
6 changes: 3 additions & 3 deletions lighthouse-core/lib/i18n/i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ const UIStrings = {
columnWastedMs: 'Potential Savings',
/** Label for the time spent column in data tables, entries will be the number of milliseconds spent during a particular activity */
columnTimeSpent: 'Time Spent',
/** Label for the type of network resource column in data tables, entries will be enumerated kinds of network requests e.g. "Scripts", "Third-Party", "Stylesheet".*/
/** Label for a column in a data table; entries will be types of resources loaded over the network, e.g. "Scripts", "Third-Party", "Stylesheet". */
columnResourceType: 'Resource Type',
/** Label for the count of network requests column in data tables, entries will be the number of network requests done by a webpage.*/
/** Label for a column in a data table; entries will be the number of network requests done by a webpage.*/
columnRequests: 'Requests',
/** Label for the transfer size of network requests column in data tables, entries will be the total bytes transferred of a group of network requests.*/
/** Label for a column in a data table; entries will be the number of kilobytes transferred to load a set of files.*/
columnTransferSize: 'Transfer Size',
/** Label for a row in a data table; entries will be the total number and byte size of all resources loaded by a web page. */
totalResourceType: 'Total',
Expand Down