tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

netmonitor.ftl (1746B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 ## Strings used in the status bar of the DevTools Network Panel
      6 
      7 # Tooltip for the performance button in the status bar
      8 network-menu-summary-tooltip-perf =
      9     .title = Start performance analysis
     10 network-menu-summary-tooltip-domcontentloaded =
     11     .title = Time when “DOMContentLoaded” event occurred
     12 network-menu-summary-tooltip-load =
     13     .title = Time when “load” event occurred
     14 # This label is displayed in the network table footer providing the
     15 # number of requests
     16 # Variables:
     17 #   $requestCount (Number): The total number of requests.
     18 network-menu-summary-requests-count =
     19     { $requestCount ->
     20         [0] No requests
     21         [one] { $requestCount } request
     22         *[other] { $requestCount } requests
     23     }
     24 network-menu-summary-tooltip-requests-count =
     25     .title = Number of requests
     26 # This label is displayed in the network table footer providing the
     27 # transferred size.
     28 # Variables:
     29 #   $formattedContentSize (String): The formatted content size.
     30 #   $formattedTransferredSize (String): The formatted transferred size.
     31 network-menu-summary-transferred =
     32     { $formattedContentSize } / { $formattedTransferredSize } transferred
     33 network-menu-summary-tooltip-transferred =
     34     .title = Size/transferred size of all requests
     35 # This label is displayed in the network table footer providing the
     36 # transfer time.
     37 # Variables:
     38 #   $formattedTime (String): The formatted transfer time.
     39 network-menu-summary-finish = Finish: { $formattedTime }
     40 network-menu-summary-tooltip-finish =
     41     .title = Total time needed to load all requests