# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. ### Localization for Developer Tools tooltips. learn-more = 詳細 ## In the Rule View when a CSS property cannot be successfully applied we display ## an icon. When this icon is hovered this message is displayed to explain why ## the property is not applied. ## Variables: ## $property (string) - A CSS property name e.g. "color". ## $display (string) - A CSS display value e.g. "inline-block". inactive-css-not-grid-or-flex-container = この要素はフレックスコンテナーでもグリッドコンテナーでもないため、{ $property } はこの要素に効果がありません。 inactive-css-not-grid-or-flex-container-or-multicol-container = この要素はフレックスコンテナーでもグリッドコンテナーでも、段組みコンテナーでもないため、{ $property } はこの要素に効果がありません。 inactive-css-not-multicol-container = この要素は段組みコンテナーでないため、{ $property } はこの要素に効果がありません。 inactive-css-not-grid-or-flex-item = この要素はグリッドアイテムでもフレックスアイテムでもないため、{ $property } はこの要素に効果がありません。 inactive-css-not-grid-item = この要素はグリッドアイテムではないため、{ $property } はこの要素に効果がありません。 inactive-css-not-grid-container = この要素はグリッドコンテナーではないため、{ $property } はこの要素に効果がありません。 inactive-css-not-flex-item = この要素はフレックスアイテムではないため、{ $property } はこの要素に効果がありません。 inactive-css-not-flex-container = この要素はフレックスコンテナーではないため、{ $property } はこの要素に効果がありません。 inactive-css-not-inline-or-tablecell = この要素はインライン要素でもテーブルのセル要素でもないため、{ $property } はこの要素に効果がありません。 inactive-css-first-line-pseudo-element-not-supported = ::first-line 疑似要素上で { $property } はサポートされていません。 inactive-css-first-letter-pseudo-element-not-supported = ::first-letter 疑似要素上で { $property } はサポートされていません。 inactive-css-placeholder-pseudo-element-not-supported = ::placeholder 疑似要素上で { $property } はサポートされていません。 inactive-css-property-because-of-display = この要素は { $display } の display プロパティを持つため、{ $property } はこの要素に効果がありません。 inactive-css-not-display-block-on-floated = この要素は floated であるため、display の値はエンジンによって block に変更されました。 inactive-css-property-is-impossible-to-override-in-visited = :visited の制限により、{ $property } をオーバーライドすることはできません。 inactive-css-position-property-on-unpositioned-box = この要素は配置の指定がないため、{ $property } はこの要素に効果がありません。 inactive-text-overflow-when-no-overflow = overflow:hidden が設定されてないため、{ $property } はこの要素に効果がありません。 inactive-css-not-for-internal-table-elements = { $property } はテーブルを構成する要素に効果がありません。 inactive-css-not-for-internal-table-elements-except-table-cells = { $property } はセル以外のテーブルを構成する要素に効果がありません。 inactive-css-not-table = この要素はテーブルではないため、{ $property } はこの要素に効果がありません。 inactive-css-not-table-cell = この要素はテーブルセルではないため、{ $property } はこの要素に効果がありません。 inactive-scroll-padding-when-not-scroll-container = この要素はスクロールしないため、{ $property } はこの要素に効果がありません。 inactive-css-border-image = { $property } は、親テーブル要素の border-collapsecollapse が設定されていて内部テーブル要素に適用できないため、この要素には効果がありません。 inactive-css-ruby-element = この要素は ruby 要素のため、{ $property } は効果がありません。ルビテキストのフォントサイズから自動的に設定されます。 inactive-css-highlight-pseudo-elements-not-supported = highlight 疑似要素上で { $property } はサポートされていません。 inactive-css-cue-pseudo-element-not-supported = ::cue 疑似要素上で { $property } はサポートされていません。 # Variables: # $lineCount (integer) - The number of lines the element has. inactive-css-text-wrap-balance-lines-exceeded = { $property } は行数が { $lineCount } 行より多い要素に効果がありません。 inactive-css-text-wrap-balance-fragmented = { $property } は断片化された要素に効果がありません。例: 段組みページやページをまたがるコンテンツなど。 ## In the Rule View when a CSS property cannot be successfully applied we display ## an icon. When this icon is hovered this message is displayed to explain how ## the problem can be solved. inactive-css-not-grid-or-flex-container-fix = display:grid または display:flex を追加してみてください。{ learn-more } inactive-css-not-grid-or-flex-container-or-multicol-container-fix = display:grid, display:flex, または columns:2 のいずれかを追加してみてください。{ learn-more } inactive-css-not-multicol-container-fix = column-count または column-width のいずれかを追加してみてください。{ learn-more } inactive-css-not-grid-or-flex-item-fix-3 = display:grid, display:flex, display:inline-grid, または display:inline-flex を親要素に追加してみてください。{ learn-more } inactive-css-not-grid-item-fix-2 =display:grid または display:inline-grid を要素の親に追加してみてください。{ learn-more } inactive-css-not-grid-container-fix = display:grid または display:inline-grid を追加してみてください。{ learn-more } inactive-css-not-flex-item-fix-2 = display:flex または display:inline-flex を要素の親に追加してみてください。{ learn-more } inactive-css-not-flex-container-fix = display:flex または display:inline-flex を追加してみてください。{ learn-more } inactive-css-not-inline-or-tablecell-fix = display:inline または display:table-cell を追加してみてください。{ learn-more } inactive-css-non-replaced-inline-or-table-row-or-row-group-fix = display:inline-block または display:block を追加してみてください。{ learn-more } inactive-css-non-replaced-inline-or-table-column-or-column-group-fix = display:inline-block を追加してみてください。{ learn-more } inactive-css-not-display-block-on-floated-fix = float を削除、または display:block を追加してみてください。{ learn-more } inactive-css-position-property-on-unpositioned-box-fix = position プロパティに static 以外の値を設定してみてください。{ learn-more } inactive-text-overflow-when-no-overflow-fix = overflow:hidden を追加してみてください。 { learn-more } inactive-css-not-for-internal-table-elements-fix = セル列グループ行グループ または フッターグループ 以外の要素に display プロパティを設定してみてください。{ learn-more } inactive-css-not-for-internal-table-elements-except-table-cells-fix = 列グループ行グループ または フッターグループ 以外の要素に display プロパティを設定してみてください。{ learn-more } inactive-css-not-table-fix = display:table または display:inline-table を追加してみてください。{ learn-more } inactive-css-not-table-cell-fix = display:table-cell を追加してみてください。{ learn-more } inactive-scroll-padding-when-not-scroll-container-fix = overflow:autooverflow:scroll または overflow:hidden を追加してみてください。{ learn-more } inactive-css-border-image-fix = 親テーブル要素のプロパティを削除するか border-collapsecollapse 以外の値を変更してみてください。{ learn-more } inactive-css-ruby-element-fix = ルビテキストの font-size を変更してみてください。{ learn-more } inactive-css-text-wrap-balance-lines-exceeded-fix = 行数を減らしてみてください。{ learn-more } inactive-css-text-wrap-balance-fragmented-fix = 要素のコンテンツの分断を避けてください。段組みを止めるか page-break-inside:avoid の使用を検討してください。{ learn-more } ## In the Rule View when a CSS property may have compatibility issues with other browsers ## we display an icon. When this icon is hovered this message is displayed to explain why ## the property is incompatible and the platforms it is incompatible on. ## Variables: ## $property (string) - A CSS declaration name e.g. "-moz-user-select" that can be a platform specific alias. ## $rootProperty (string) - A raw CSS property name e.g. "user-select" that is not a platform specific alias. css-compatibility-default-message = { $property } はこれらのブラウザーではサポートされていません: css-compatibility-deprecated-experimental-message = { $property } は実験的なプロパティでしたが、現在は W3C 標準により非推奨とされています。これらのブラウザーではサポートされていません: css-compatibility-deprecated-experimental-supported-message = { $property } は実験的なプロパティでしたが、現在は W3C 標準により非推奨とされています。 css-compatibility-deprecated-message = { $property } は W3C 標準により非推奨とされています。これらのブラウザーではサポートされていません: css-compatibility-deprecated-supported-message = { $property } は W3C 標準により非推奨とされています。 css-compatibility-experimental-message = { $property } は実験的なプロパティです。これらのブラウザーではサポートされていません: css-compatibility-experimental-supported-message = { $property } は実験的なプロパティです。 css-compatibility-learn-more-message = { $rootProperty } についての 詳細 ## In the Rule View when a rule selector can causes issues, we display an icon. ## When this icon is hovered one or more of those messages are displayed to explain what ## the issue are. # :has() should not be translated css-selector-warning-unconstrained-has = このセレクターは制約のない :has() を使用しているため動作が遅くなります