highlighters.ftl (3139B)
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 ### This file contains strings used in highlighters. 6 ### Highlighters are visualizations that DevTools draws on top of content to aid 7 ### in understanding content sizing, etc. 8 9 # The row and column position of a grid cell shown in the grid cell infobar when hovering 10 # over the CSS grid outline. 11 # Variables 12 # $row (integer) - The row index 13 # $column (integer) - The column index 14 grid-row-column-positions = Row { $row } / Column { $column } 15 16 # The layout type of an element shown in the infobar when hovering over a DOM element and 17 # it is a grid container. 18 gridtype-container = Grid Container 19 20 # The layout type of an element shown in the infobar when hovering over a DOM element and 21 # it is a grid item. 22 gridtype-item = Grid Item 23 24 # The layout type of an element shown in the infobar when hovering over a DOM element and 25 # it is both a grid container and a grid item. 26 gridtype-dual = Grid Container/Item 27 28 # The layout type of an element shown in the infobar when hovering over a DOM element and 29 # it is a flex container. 30 flextype-container = Flex Container 31 32 # The layout type of an element shown in the infobar when hovering over a DOM element and 33 # it is a flex item. 34 flextype-item = Flex Item 35 36 # The layout type of an element shown in the infobar when hovering over a DOM element and 37 # it is both a flex container and a flex item. 38 flextype-dual = Flex Container/Item 39 40 # The message displayed in the content page when the user clicks on the 41 # "Pick an element from the page" in about:devtools-toolbox inspector panel, when 42 # debugging a remote page. 43 # Variables 44 # $action (string) - Will either be remote-node-picker-notice-action-desktop or 45 # remote-node-picker-notice-action-touch 46 remote-node-picker-notice = DevTools Node Picker enabled. { $action } 47 48 # Text displayed in `remote-node-picker-notice`, when the remote page is on desktop 49 remote-node-picker-notice-action-desktop = Click an element to select it in the Inspector 50 51 # Text displayed in `remote-node-picker-notice`, when the remote page is on Android 52 remote-node-picker-notice-action-touch = Tap an element to select it in the Inspector 53 54 # The text displayed in the button that is in the notice in the content page when the user 55 # clicks on the "Pick an element from the page" in about:devtools-toolbox inspector panel, 56 # when debugging a remote page. 57 remote-node-picker-notice-hide-button = Hide 58 59 # The text displayed in a toolbox notification message which is only displayed 60 # if prefers-reduced-motion is enabled (via OS-level settings or by using the 61 # ui.prefersReducedMotion=1 preference). 62 simple-highlighters-message = When prefers-reduced-motion is enabled, a simpler highlighter can be enabled in the settings panel, to avoid flashing colors. 63 64 # Text displayed in a button inside the "simple-highlighters-message" toolbox 65 # notification. "Settings" here refers to the DevTools settings panel. 66 simple-highlighters-settings-button = Open Settings