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### Localization for Developer Tools tooltips. 6 7learn-more = <span data-l10n-name="link">Learn more</span> 8 9## In the Rule View when a CSS property cannot be successfully applied we display 10## an icon. When this icon is hovered this message is displayed to explain why 11## the property is not applied. 12## Variables: 13## $property (string) - A CSS property name e.g. "color". 14## $display (string) - A CSS display value e.g. "inline-block". 15 16inactive-css-not-grid-or-flex-container = <strong>{ $property }</strong> has no effect on this element since it’s neither a flex container nor a grid container. 17 18inactive-css-not-grid-or-flex-container-or-multicol-container = <strong>{ $property }</strong> has no effect on this element since it’s not a flex container, a grid container, or a multi-column container. 19 20inactive-css-not-grid-or-flex-item = <strong>{ $property }</strong> has no effect on this element since it’s not a grid or flex item. 21 22inactive-css-not-grid-item = <strong>{ $property }</strong> has no effect on this element since it’s not a grid item. 23 24inactive-css-not-grid-container = <strong>{ $property }</strong> has no effect on this element since it’s not a grid container. 25 26inactive-css-not-flex-item = <strong>{ $property }</strong> has no effect on this element since it’s not a flex item. 27 28inactive-css-not-flex-container = <strong>{ $property }</strong> has no effect on this element since it’s not a flex container. 29 30inactive-css-not-inline-or-tablecell = <strong>{ $property }</strong> has no effect on this element since it’s not an inline or table-cell element. 31 32inactive-css-property-because-of-display = <strong>{ $property }</strong> has no effect on this element since it has a display of <strong>{ $display }</strong>. 33 34inactive-css-not-display-block-on-floated = The <strong>display</strong> value has been changed by the engine to <strong>block</strong> because the element is <strong>floated</strong>. 35 36inactive-css-property-is-impossible-to-override-in-visited = It’s impossible to override <strong>{ $property }</strong> due to <strong>:visited</strong> restriction. 37 38inactive-css-position-property-on-unpositioned-box = <strong>{ $property }</strong> has no effect on this element since it’s not a positioned element. 39 40inactive-text-overflow-when-no-overflow = <strong>{ $property }</strong> has no effect on this element since <strong>overflow:hidden</strong> is not set. 41 42inactive-css-not-for-internal-table-elements = <strong>{ $property }</strong> has no effect on internal table elements. 43 44inactive-css-not-for-internal-table-elements-except-table-cells = <strong>{ $property }</strong> has no effect on internal table elements except table cells. 45 46inactive-css-not-table = <strong>{ $property }</strong> has no effect on this element since it’s not a table. 47 48inactive-scroll-padding-when-not-scroll-container = <strong>{ $property }</strong> has no effect on this element since it doesn’t scroll. 49 50## In the Rule View when a CSS property cannot be successfully applied we display 51## an icon. When this icon is hovered this message is displayed to explain how 52## the problem can be solved. 53 54inactive-css-not-grid-or-flex-container-fix = Try adding <strong>display:grid</strong> or <strong>display:flex</strong>. { learn-more } 55 56inactive-css-not-grid-or-flex-container-or-multicol-container-fix = Try adding either <strong>display:grid</strong>, <strong>display:flex</strong>, or <strong>columns:2</strong>. { learn-more } 57 58inactive-css-not-grid-or-flex-item-fix-3 = Try adding <strong>display:grid</strong>, <strong>display:flex</strong>, <strong>display:inline-grid</strong>, or <strong>display:inline-flex</strong> to the element’s parent. { learn-more } 59 60inactive-css-not-grid-item-fix-2 =Try adding <strong>display:grid</strong> or <strong>display:inline-grid</strong> to the element’s parent. { learn-more } 61 62inactive-css-not-grid-container-fix = Try adding <strong>display:grid</strong> or <strong>display:inline-grid</strong>. { learn-more } 63 64inactive-css-not-flex-item-fix-2 = Try adding <strong>display:flex</strong> or <strong>display:inline-flex</strong> to the element’s parent. { learn-more } 65 66inactive-css-not-flex-container-fix = Try adding <strong>display:flex</strong> or <strong>display:inline-flex</strong>. { learn-more } 67 68inactive-css-not-inline-or-tablecell-fix = Try adding <strong>display:inline</strong> or <strong>display:table-cell</strong>. { learn-more } 69 70inactive-css-non-replaced-inline-or-table-row-or-row-group-fix = Try adding <strong>display:inline-block</strong> or <strong>display:block</strong>. { learn-more } 71 72inactive-css-non-replaced-inline-or-table-column-or-column-group-fix = Try adding <strong>display:inline-block</strong>. { learn-more } 73 74inactive-css-not-display-block-on-floated-fix = Try removing <strong>float</strong> or adding <strong>display:block</strong>. { learn-more } 75 76inactive-css-position-property-on-unpositioned-box-fix = Try setting its <strong>position</strong> property to something other than <strong>static</strong>. { learn-more } 77 78inactive-text-overflow-when-no-overflow-fix = Try adding <strong>overflow:hidden</strong>. { learn-more } 79 80inactive-css-not-for-internal-table-elements-fix = Try setting its <strong>display</strong> property to something else than <strong>table-cell</strong>, <strong>table-column</strong>, <strong>table-row</strong>, <strong>table-column-group</strong>, <strong>table-row-group</strong>, or <strong>table-footer-group</strong>. { learn-more } 81 82inactive-css-not-for-internal-table-elements-except-table-cells-fix = Try setting its <strong>display</strong> property to something else than <strong>table-column</strong>, <strong>table-row</strong>, <strong>table-column-group</strong>, <strong>table-row-group</strong>, or <strong>table-footer-group</strong>. { learn-more } 83 84inactive-css-not-table-fix = Try adding <strong>display:table</strong> or <strong>display:inline-table</strong>. { learn-more } 85 86inactive-scroll-padding-when-not-scroll-container-fix = Try adding <strong>overflow:auto</strong>, <strong>overflow:scroll</strong>, or <strong>overflow:hidden</strong>. { learn-more } 87 88## In the Rule View when a CSS property may have compatibility issues with other browsers 89## we display an icon. When this icon is hovered this message is displayed to explain why 90## the property is incompatible and the platforms it is incompatible on. 91## Variables: 92## $property (string) - A CSS declaration name e.g. "-moz-user-select" that can be a platform specific alias. 93## $rootProperty (string) - A raw CSS property name e.g. "user-select" that is not a platform specific alias. 94 95css-compatibility-default-message = <strong>{ $property }</strong> is not supported in the following browsers: 96 97css-compatibility-deprecated-experimental-message = <strong>{ $property }</strong> was an experimental property that is now deprecated by W3C standards. It is not supported in the following browsers: 98 99css-compatibility-deprecated-experimental-supported-message = <strong>{ $property }</strong> was an experimental property that is now deprecated by W3C standards. 100 101css-compatibility-deprecated-message = <strong>{ $property }</strong> is deprecated by W3C standards. It is not supported in the following browsers: 102 103css-compatibility-deprecated-supported-message = <strong>{ $property }</strong> is deprecated by W3C standards. 104 105css-compatibility-experimental-message = <strong>{ $property }</strong> is an experimental property. It is not supported in the following browsers: 106 107css-compatibility-experimental-supported-message = <strong>{ $property }</strong> is an experimental property. 108 109css-compatibility-learn-more-message = <span data-l10n-name="link">Learn more</span> about <strong>{ $rootProperty }</strong> 110