From 3b6ce2d62985414aea84bf45ed040d9c6e358fbc Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Thu, 13 Jan 2022 03:13:57 +0900 Subject: 2021/10/11 時点の英語版に同期 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/manifest/short_name/index.md | 82 +++++++++++-------------------- 1 file changed, 30 insertions(+), 52 deletions(-) diff --git a/files/ja/web/manifest/short_name/index.md b/files/ja/web/manifest/short_name/index.md index c111fc2bc5..050a0125e9 100644 --- a/files/ja/web/manifest/short_name/index.md +++ b/files/ja/web/manifest/short_name/index.md @@ -2,73 +2,51 @@ title: short_name slug: Web/Manifest/short_name tags: - - Manifest - - Web - - short_name - マニフェスト + - ウェブ + - short_name +browser-compat: html.manifest.short_name translation_of: Web/Manifest/short_name --- -
{{QuickLinksWithSubpages("/ja/docs/Web/Manifest")}}
+{{QuickLinksWithSubpages("/ja/docs/Web/Manifest")}} - - - - - - - - - - + + + + + + + + + +
String
必須はい
String
必須はい
-

short_name メンバーは文字列で、 name を表示するのに十分なスペースがない場合 (例えば、携帯電話のホーム画面にあるアイコンのラベルなど) に、ユーザーに表示するウェブアプリケーションの名前を表します。 short_name は書字方向に対応しており、 dir および lang の各マニフェストメンバーの値に基づいて左書きで表示されたり右書きで表示されたりします。

+_`short_name`_ メンバーは文字列で、 [`name`](/ja/docs/Web/Manifest/name) を表示するのに十分なスペースがない場合 (例えば、携帯電話のホーム画面にあるアイコンのラベルなど) に、ユーザーに表示するウェブアプリケーションの名前を表します。 `short_name` は書字方向に対応しており、 [`dir`](/ja/docs/Web/Manifest/dir) および [`lang`](/ja/docs/Web/Manifest/lang) の各マニフェストメンバーの値に基づいて左書きで表示されたり右書きで表示されたりします。 -

+## 例 -

単純な short_name を左書き言語で:

+単純な `short_name` を左書き言語で: -
"name": "Awesome application",
-"short_name": "Awesome app"
+```json +"name": "Awesome application", +"short_name": "Awesome app" +``` -

アラビア語で右書きの short_name:

+アラビア語で右書きの `short_name`: -
"dir": "rtl",
+```json
+"dir": "rtl",
 "lang": "ar",
-"name": "تطبيق رائع",
+"name": "تطبيق رائع",
 "short_name": "رائع"
-
+``` -

仕様書

+## 仕様書 - - - - - - - - - - - - - - - - - -
仕様書状態備考フィードバック
-

{{SpecName('Manifest', '#short_name-member', 'short_name')}}

-
-

{{Spec2('Manifest')}}

-
-

初回定義

-
-

Web App Manifest Working Group drafts

-
+{{Specifications}} -

ブラウザーの互換性

+## ブラウザーの互換性 -

{{Compat("html.manifest.short_name")}}

+{{Compat}} -- cgit v1.2.3-54-g00ecf