author | Carsten "Tomcat" Book <cbook@mozilla.com> |
Thu, 27 Apr 2017 17:00:32 +0200 | |
changeset 355255 | f9673e8aff0e179a75624485e2141d11d71a865e |
parent 355254 | c1339155e30164c191881948a06c8906d8c13f57 |
child 355256 | 7706b9edd277518759814bdec10598db5abc09fa |
push id | 41629 |
push user | cbook@mozilla.com |
push date | Thu, 27 Apr 2017 15:02:03 +0000 |
treeherder | autoland@7706b9edd277 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 1358013 |
milestone | 55.0a1 |
backs out | 553ad9bebfa7840e8429b568f1d1b7adda201ee4 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/devtools/client/locales/en-US/netmonitor.properties +++ b/devtools/client/locales/en-US/netmonitor.properties @@ -138,56 +138,33 @@ jsonpScopeName=JSONP → callback %S() # LOCALIZATION NOTE (networkMenu.sortedAsc): This is the tooltip displayed # in the network table toolbar, for any column that is sorted ascending. networkMenu.sortedAsc=Sorted ascending # LOCALIZATION NOTE (networkMenu.sortedDesc): This is the tooltip displayed # in the network table toolbar, for any column that is sorted descending. networkMenu.sortedDesc=Sorted descending -# LOCALIZATION NOTE (networkMenu.summary.tooltip.perf): A tooltip explaining -# what the perf button does -networkMenu.summary.tooltip.perf=Start performance analysis - -# LOCALIZATION NOTE (networkMenu.summary.tooltip.domContentLoaded): A tooltip explaining -# what the DOMContentLoaded label displays -networkMenu.summary.tooltip.domContentLoaded=Time when "DOMContentLoad" event occurred - -# LOCALIZATION NOTE (networkMenu.summary.tooltip.load): A tooltip explaining -# what the load label displays -networkMenu.summary.tooltip.load=Time when "load" event occurred - # LOCALIZATION NOTE (networkMenu.summary.requestsCount): This label is displayed # in the network table footer providing the number of requests # See: http://developer.mozilla.org/en/docs/Localization_and_Plurals networkMenu.summary.requestsCount=One request;%S requests # LOCALIZATION NOTE (networkMenu.summary.requestsCountEmpty): This label is displayed # in the network table footer when there are no requests networkMenu.summary.requestsCountEmpty=No requests -# LOCALIZATION NOTE (networkMenu.summary.tooltip.requestsCount): A tooltip explaining -# what the requestsCount label displays -networkMenu.summary.tooltip.requestsCount=Number of requests - # LOCALIZATION NOTE (networkMenu.summary.transferred): This label is displayed # in the network table footer providing the transferred size. networkMenu.summary.transferred=%S / %S transferred -# LOCALIZATION NOTE (networkMenu.summary.tooltip.transferred): A tooltip explaining -# what the transferred label displays -networkMenu.summary.tooltip.transferred=Size/transferred size of all requests - # LOCALIZATION NOTE (networkMenu.summary.finish): This label is displayed # in the network table footer providing the transfer time. networkMenu.summary.finish=Finish: %S -# LOCALIZATION NOTE (networkMenu.summary.tooltip.finish): A tooltip explaining -# what the finish label displays -networkMenu.summary.tooltip.finish=Total time needed to load all requests # LOCALIZATION NOTE (networkMenu.sizeB): This is the label displayed # in the network menu specifying the size of a request (in bytes). networkMenu.sizeB=%S B # LOCALIZATION NOTE (networkMenu.sizeKB): This is the label displayed # in the network menu specifying the size of a request (in kilobytes). networkMenu.sizeKB=%S KB
--- a/devtools/client/netmonitor/src/components/status-bar.js +++ b/devtools/client/netmonitor/src/components/status-bar.js @@ -38,45 +38,39 @@ function StatusBar({ summary, openStatis getFormattedSize(contentSize), getFormattedSize(transferredSize)); let finishText = L10N.getFormatStrWithNumbers("networkMenu.summary.finish", getFormattedTime(millis)); return ( div({ className: "devtools-toolbar devtools-status-bottom" }, button({ className: "devtools-button requests-list-network-summary-button", - title: L10N.getStr("networkMenu.summary.tooltip.perf"), onClick: openStatistics, }, div({ className: "summary-info-icon" }), ), - div({ - className: "status-bar-label requests-list-network-summary-count", - title: L10N.getStr("networkMenu.summary.tooltip.requestsCount"), - }, countText), + div({ className: "status-bar-label requests-list-network-summary-count" }, + countText + ), count !== 0 && - div({ - className: "status-bar-label requests-list-network-summary-transfer", - title: L10N.getStr("networkMenu.summary.tooltip.transferred"), - }, transferText), + div({ className: "status-bar-label requests-list-network-summary-transfer" }, + transferText + ), count !== 0 && - div({ - className: "status-bar-label requests-list-network-summary-finish", - title: L10N.getStr("networkMenu.summary.tooltip.finish"), - }, finishText), + div({ className: "status-bar-label requests-list-network-summary-finish" }, + finishText + ), DOMContentLoaded > -1 && - div({ - className: "status-bar-label dom-content-loaded", - title: L10N.getStr("networkMenu.summary.tooltip.domContentLoaded"), - }, `DOMContentLoaded: ${getFormattedTime(DOMContentLoaded)}`), + div({ className: "status-bar-label dom-content-loaded" }, + `DOMContentLoaded: ${getFormattedTime(DOMContentLoaded)}` + ), load > -1 && - div({ - className: "status-bar-label load", - title: L10N.getStr("networkMenu.summary.tooltip.load"), - }, `load: ${getFormattedTime(load)}`), + div({ className: "status-bar-label load" }, + `load: ${getFormattedTime(load)}` + ), ) ); } StatusBar.displayName = "StatusBar"; StatusBar.propTypes = { openStatistics: PropTypes.func.isRequired,