From 0dc5ff286063997a40af67772a56d3f5df39ad12 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 23 Mar 2026 21:58:22 +0000 Subject: [PATCH 1/3] Fix duplicate Empty/empty parameters in maui-blazor template.json files Co-authored-by: mattleibow <1096616+mattleibow@users.noreply.github.com> Agent-Logs-Url: https://github.com/dotnet/maui/sessions/5d92997c-8acf-44d6-8eb7-bc127a174184 --- .../maui-blazor-solution/.template.config/template.json | 8 +------- .../templates/maui-blazor/.template.config/template.json | 8 +------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/template.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/template.json index e82c8dc1613d..0254c7879659 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/template.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/template.json @@ -404,12 +404,6 @@ "displayName": "_Include sample pages", "description": "Configures whether to add sample pages and styling to demonstrate basic usage patterns." }, - "Empty": { - "type": "parameter", - "datatype": "bool", - "defaultValue": "false", - "description": "Configures whether to omit sample pages and styling that demonstrate basic usage patterns." - }, "empty": { "type": "parameter", "datatype": "bool", @@ -432,7 +426,7 @@ }, "SampleContent": { "type": "computed", - "value": "(((IncludeSampleContent && (HostIdentifier != \"dotnetcli\" && HostIdentifier != \"dotnetcli-preview\"))) || ((!Empty && (HostIdentifier == \"dotnetcli\" || HostIdentifier == \"dotnetcli-preview\")) && (!empty && (HostIdentifier == \"dotnetcli\" || HostIdentifier == \"dotnetcli-preview\"))))" + "value": "(((IncludeSampleContent && (HostIdentifier != \"dotnetcli\" && HostIdentifier != \"dotnetcli-preview\"))) || (!empty && (HostIdentifier == \"dotnetcli\" || HostIdentifier == \"dotnetcli-preview\")))" }, "AllInteractive": { "type": "parameter", diff --git a/src/Templates/src/templates/maui-blazor/.template.config/template.json b/src/Templates/src/templates/maui-blazor/.template.config/template.json index d1887e57a1e8..94d323cf9e67 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/template.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/template.json @@ -166,12 +166,6 @@ "displayName": "_Include sample pages", "description": "Configures whether to add sample pages and styling to demonstrate basic usage patterns." }, - "Empty": { - "type": "parameter", - "datatype": "bool", - "defaultValue": "false", - "description": "Configures whether to omit sample pages and styling that demonstrate basic usage patterns." - }, "empty": { "type": "parameter", "datatype": "bool", @@ -180,7 +174,7 @@ }, "SampleContent": { "type": "computed", - "value": "(((IncludeSampleContent && (HostIdentifier != \"dotnetcli\" && HostIdentifier != \"dotnetcli-preview\"))) || ((!Empty && (HostIdentifier == \"dotnetcli\" || HostIdentifier == \"dotnetcli-preview\")) && (!empty && (HostIdentifier == \"dotnetcli\" || HostIdentifier == \"dotnetcli-preview\"))))" + "value": "(((IncludeSampleContent && (HostIdentifier != \"dotnetcli\" && HostIdentifier != \"dotnetcli-preview\"))) || (!empty && (HostIdentifier == \"dotnetcli\" || HostIdentifier == \"dotnetcli-preview\")))" } }, "forms": { From 3a89ad00d2bb2b228bfd108191c7965cd0c442c6 Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Tue, 24 Mar 2026 17:10:25 +0200 Subject: [PATCH 2/3] Remove orphaned Empty symbolInfo from dotnetcli.host.json files The Empty parameter was removed from template.json but references remained in the dotnetcli.host.json files for both maui-blazor and maui-blazor-solution templates. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../maui-blazor-solution/.template.config/dotnetcli.host.json | 3 --- .../templates/maui-blazor/.template.config/dotnetcli.host.json | 3 --- 2 files changed, 6 deletions(-) diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/dotnetcli.host.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/dotnetcli.host.json index 40d7c441e5a4..0ce8b5a2fdf1 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/dotnetcli.host.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/dotnetcli.host.json @@ -26,9 +26,6 @@ "InteractivityLocation": { "isHidden": true }, - "Empty": { - "isHidden": true - }, "IncludeSampleContent": { "isHidden": true }, diff --git a/src/Templates/src/templates/maui-blazor/.template.config/dotnetcli.host.json b/src/Templates/src/templates/maui-blazor/.template.config/dotnetcli.host.json index b803d05a1a90..b4853e3d61b5 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/dotnetcli.host.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/dotnetcli.host.json @@ -9,9 +9,6 @@ }, "IncludeSampleContent": { "isHidden": true - }, - "Empty": { - "isHidden": true } }, "usageExamples": [ From c2d2292c75581f1f36905217275e0f3cea337040 Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Tue, 24 Mar 2026 20:32:46 +0200 Subject: [PATCH 3/3] =?UTF-8?q?Fix=20localization=20keys:=20symbols/Empty?= =?UTF-8?q?=20=E2=86=92=20symbols/empty=20in=20templatestrings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rename the localization key to match the remaining lowercase 'empty' parameter after the PascalCase 'Empty' duplicate was removed. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../.template.config/localize/templatestrings.cs.json | 2 +- .../.template.config/localize/templatestrings.de.json | 2 +- .../.template.config/localize/templatestrings.en.json | 2 +- .../.template.config/localize/templatestrings.es.json | 2 +- .../.template.config/localize/templatestrings.fr.json | 2 +- .../.template.config/localize/templatestrings.it.json | 2 +- .../.template.config/localize/templatestrings.ja.json | 2 +- .../.template.config/localize/templatestrings.json | 2 +- .../.template.config/localize/templatestrings.ko.json | 2 +- .../.template.config/localize/templatestrings.pl.json | 2 +- .../.template.config/localize/templatestrings.pt-BR.json | 2 +- .../.template.config/localize/templatestrings.ru.json | 2 +- .../.template.config/localize/templatestrings.tr.json | 2 +- .../.template.config/localize/templatestrings.zh-Hans.json | 2 +- .../.template.config/localize/templatestrings.zh-Hant.json | 2 +- .../.template.config/localize/templatestrings.cs.json | 2 +- .../.template.config/localize/templatestrings.de.json | 2 +- .../.template.config/localize/templatestrings.en.json | 2 +- .../.template.config/localize/templatestrings.es.json | 2 +- .../.template.config/localize/templatestrings.fr.json | 2 +- .../.template.config/localize/templatestrings.it.json | 2 +- .../.template.config/localize/templatestrings.ja.json | 2 +- .../maui-blazor/.template.config/localize/templatestrings.json | 2 +- .../.template.config/localize/templatestrings.ko.json | 2 +- .../.template.config/localize/templatestrings.pl.json | 2 +- .../.template.config/localize/templatestrings.pt-BR.json | 2 +- .../.template.config/localize/templatestrings.ru.json | 2 +- .../.template.config/localize/templatestrings.tr.json | 2 +- .../.template.config/localize/templatestrings.zh-Hans.json | 2 +- .../.template.config/localize/templatestrings.zh-Hant.json | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.cs.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.cs.json index 280ee51122f3..303f34d1b59a 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.cs.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.cs.json @@ -24,7 +24,7 @@ "symbols/InteractivityPlatform/choices/Auto/description": "Při stahování prostředků WebAssembly používá Server a pak WebAssembly", "symbols/IncludeSampleContent/displayName": "_Zahrnout ukázkové stránky", "symbols/IncludeSampleContent/description": "Nastavuje, jestli se mají přidávat ukázkové stránky a styly pro demonstraci základních vzorů použití.", - "symbols/Empty/description": "Nastavuje, jestli se mají vynechat ukázkové stránky a styly, které demonstrují základní vzory použití.", + "symbols/empty/description": "Nastavuje, jestli se mají vynechat ukázkové stránky a styly, které demonstrují základní vzory použití.", "symbols/AllInteractive/displayName": "_Povolit interaktivní vykreslování globálně na celém webu", "symbols/AllInteractive/description": "Konfiguruje, jestli se má každá stránka nastavit jako interaktivní, a to použitím interaktivního režimu vykreslování na nejvyšší úrovni. Pokud se nastaví na false, stránky budou ve výchozím nastavení používat vykreslování statického serveru a dají se označit jako interaktivní pro jednotlivé stránky nebo komponenty.", "symbols/NoHttps/description": "Určuje, jestli se má vypnout protokol HTTPS. Tato možnost platí jenom v případě, že se pro --auth nepoužívá Individual.", diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.de.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.de.json index bb58e1a3c0e3..61295cfacb8c 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.de.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.de.json @@ -24,7 +24,7 @@ "symbols/InteractivityPlatform/choices/Auto/description": "Verwendet Server beim Herunterladen von WebAssembly-Ressourcen und dann WebAssembly", "symbols/IncludeSampleContent/displayName": "_Include Beispielseiten", "symbols/IncludeSampleContent/description": "Konfiguriert, ob Beispielseiten und Stile hinzugefügt werden, um grundlegende Verwendungsmuster zu veranschaulichen.", - "symbols/Empty/description": "Konfiguriert, ob Beispielseiten und Formatierungen weggelassen werden sollen, die grundlegende Verwendungsmuster veranschaulichen.", + "symbols/empty/description": "Konfiguriert, ob Beispielseiten und Formatierungen weggelassen werden sollen, die grundlegende Verwendungsmuster veranschaulichen.", "symbols/AllInteractive/displayName": "_Aktivieren des interaktiven Renderings global auf der gesamten Website", "symbols/AllInteractive/description": "Konfiguriert, ob jede Seite interaktiv werden soll, indem ein interaktiver Rendermodus auf der obersten Ebene angewendet wird. False gibt an, dass Seiten standardmäßig statisches Serverrendering verwenden und auf Seiten- oder Komponentenbasis als interaktiv markiert werden können.", "symbols/NoHttps/description": "Ob HTTPS deaktiviert werden soll. Diese Option gilt nur, wenn \"Individual\" nicht für \"--auth\" verwendet wird.", diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.en.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.en.json index 5f08d99565a3..5140409d67d5 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.en.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.en.json @@ -24,7 +24,7 @@ "symbols/InteractivityPlatform/choices/Auto/description": "Uses Server while downloading WebAssembly assets, then uses WebAssembly", "symbols/IncludeSampleContent/displayName": "_Include sample pages", "symbols/IncludeSampleContent/description": "Configures whether to add sample pages and styling to demonstrate basic usage patterns.", - "symbols/Empty/description": "Configures whether to omit sample pages and styling that demonstrate basic usage patterns.", + "symbols/empty/description": "Configures whether to omit sample pages and styling that demonstrate basic usage patterns.", "symbols/AllInteractive/displayName": "_Enable interactive rendering globally throughout the site", "symbols/AllInteractive/description": "Configures whether to make every page interactive by applying an interactive render mode at the top level. If false, pages will use static server rendering by default, and can be marked interactive on a per-page or per-component basis.", "symbols/NoHttps/description": "Whether to turn off HTTPS. This option only applies if Individual isn't used for --auth.", diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.es.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.es.json index 3ecb2fbad3b3..6f06e65b5085 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.es.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.es.json @@ -24,7 +24,7 @@ "symbols/InteractivityPlatform/choices/Auto/description": "Usa el servidor al descargar los activos de WebAssembly y, a continuación, usa WebAssembly", "symbols/IncludeSampleContent/displayName": "_Incluir páginas de ejemplo", "symbols/IncludeSampleContent/description": "Configura si se van a agregar páginas de ejemplo y estilos para mostrar patrones de uso básicos.", - "symbols/Empty/description": "Configura si se omiten las páginas de ejemplo y los estilos que muestran patrones de uso básicos.", + "symbols/empty/description": "Configura si se omiten las páginas de ejemplo y los estilos que muestran patrones de uso básicos.", "symbols/AllInteractive/displayName": "_Enable representación interactiva globalmente en todo el sitio", "symbols/AllInteractive/description": "Configura si todas las páginas son interactivas aplicando un modo de representación interactivo en el nivel superior. Si es false, las páginas usarán la representación de servidor estático de forma predeterminada y se pueden marcar como interactivas por página o por componente.", "symbols/NoHttps/description": "Si se va a desactivar HTTPS. Esta opción solo se aplica si individual no se usa para --auth.", diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.fr.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.fr.json index d25d10447096..03f02465db6e 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.fr.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.fr.json @@ -24,7 +24,7 @@ "symbols/InteractivityPlatform/choices/Auto/description": "Utilise le serveur lors du téléchargement des ressources WebAssembly, puis utilise WebAssembly", "symbols/IncludeSampleContent/displayName": "_Inclure des exemples de pages", "symbols/IncludeSampleContent/description": "Configure s'il faut ajouter des exemples de pages et de style pour illustrer les modèles d'utilisation de base.", - "symbols/Empty/description": "Configure s'il faut omettre les exemples de pages et de style qui illustrent les modèles d'utilisation de base.", + "symbols/empty/description": "Configure s'il faut omettre les exemples de pages et de style qui illustrent les modèles d'utilisation de base.", "symbols/AllInteractive/displayName": "_Activer le rendu interactif globalement sur l’ensemble du site", "symbols/AllInteractive/description": "Configure si chaque page doit être interactive en appliquant un mode de rendu interactif au niveau global. Si la valeur est False, les pages utilisent le rendu de serveur statique par défaut et peuvent être marquées comme interactives par page ou par composant.", "symbols/NoHttps/description": "Indique s’il faut désactiver HTTPS. Cette option ne s’applique que si Individual n’est pas utilisé pour --auth.", diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.it.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.it.json index addfb653b3a2..0517538ffc21 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.it.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.it.json @@ -24,7 +24,7 @@ "symbols/InteractivityPlatform/choices/Auto/description": "Usa Server durante il download degli asset WebAssembly, quindi usa WebAssembly", "symbols/IncludeSampleContent/displayName": "_Includi pagine di esempio", "symbols/IncludeSampleContent/description": "Consente di configurare se aggiungere pagine di esempio e stile per mostrare modelli di utilizzo di base.", - "symbols/Empty/description": "Consente di configurare se omettere pagine di esempio e stile che mostrano modelli di utilizzo di base.", + "symbols/empty/description": "Consente di configurare se omettere pagine di esempio e stile che mostrano modelli di utilizzo di base.", "symbols/AllInteractive/displayName": "_Abilita rendering interattivo a livello globale in tutto il sito", "symbols/AllInteractive/description": "Configura se rendere interattiva ogni pagina applicando una modalità di rendering interattiva al livello superiore. Se false, le pagine useranno il rendering statico del server per impostazione predefinita e possono essere contrassegnate come interattive per pagina o per componente.", "symbols/NoHttps/description": "Indica se disattivare HTTPS. Questa opzione si applica solo se l'opzione Individual non viene usata per --auth.", diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.ja.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.ja.json index b7bd4044e366..96ca8c18ec94 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.ja.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.ja.json @@ -24,7 +24,7 @@ "symbols/InteractivityPlatform/choices/Auto/description": "WebAssembly 資産のダウンロード中にサーバーを使用してから、WebAssembly を使用します", "symbols/IncludeSampleContent/displayName": "サンプル ページを含める(_I)", "symbols/IncludeSampleContent/description": "基本的な使用パターンを示すサンプル ページとスタイルを追加するかどうかを構成します。", - "symbols/Empty/description": "基本的な使用パターンを示すサンプル ページとスタイルを省略するかどうかを構成します。", + "symbols/empty/description": "基本的な使用パターンを示すサンプル ページとスタイルを省略するかどうかを構成します。", "symbols/AllInteractive/displayName": "対話型レンダリングをサイト全体でグローバルに有効化(_E)", "symbols/AllInteractive/description": "最上位レベルで対話型レンダリング モードを適用して、すべてのページを対話型にするかどうかを構成します。false の場合、ページは既定で静的サーバー レンダリングを使用し、ページ単位またはコンポーネント単位で対話型としてマークできます。", "symbols/NoHttps/description": "HTTPS をオフにするかどうか。このオプションは、--auth に個人が使用されていない場合にのみ適用されます。", diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json index 5f08d99565a3..5140409d67d5 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json @@ -24,7 +24,7 @@ "symbols/InteractivityPlatform/choices/Auto/description": "Uses Server while downloading WebAssembly assets, then uses WebAssembly", "symbols/IncludeSampleContent/displayName": "_Include sample pages", "symbols/IncludeSampleContent/description": "Configures whether to add sample pages and styling to demonstrate basic usage patterns.", - "symbols/Empty/description": "Configures whether to omit sample pages and styling that demonstrate basic usage patterns.", + "symbols/empty/description": "Configures whether to omit sample pages and styling that demonstrate basic usage patterns.", "symbols/AllInteractive/displayName": "_Enable interactive rendering globally throughout the site", "symbols/AllInteractive/description": "Configures whether to make every page interactive by applying an interactive render mode at the top level. If false, pages will use static server rendering by default, and can be marked interactive on a per-page or per-component basis.", "symbols/NoHttps/description": "Whether to turn off HTTPS. This option only applies if Individual isn't used for --auth.", diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.ko.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.ko.json index 05893fc18a67..59b1992e1c3e 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.ko.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.ko.json @@ -24,7 +24,7 @@ "symbols/InteractivityPlatform/choices/Auto/description": "WebAssembly 자산을 다운로드하는 동안 서버를 사용한 다음, WebAssembly를 사용합니다.", "symbols/IncludeSampleContent/displayName": "샘플 페이지 포함(_I)", "symbols/IncludeSampleContent/description": "기본 사용 패턴을 보여주기 위해 샘플 페이지 및 스타일을 추가할지 여부를 구성합니다.", - "symbols/Empty/description": "기본 사용 패턴을 보여주는 샘플 페이지 및 스타일을 생략할지 여부를 구성합니다.", + "symbols/empty/description": "기본 사용 패턴을 보여주는 샘플 페이지 및 스타일을 생략할지 여부를 구성합니다.", "symbols/AllInteractive/displayName": "_사이트 전체에서 전역적으로 인터랙티브 렌더링 활성화", "symbols/AllInteractive/description": "최상위 수준에서 대화형 렌더링 모드를 적용하여 모든 페이지를 대화형으로 설정할지 여부를 구성합니다. false이면 페이지는 기본적으로 정적 서버 렌더링을 사용하며 페이지별 또는 구성 요소별로 대화형으로 표시될 수 있습니다.", "symbols/NoHttps/description": "HTTPS를 끌지 여부입니다. 이 옵션은 개별 항목이 --auth에 사용되지 않는 경우에만 적용됩니다.", diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.pl.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.pl.json index 57e351f83239..8b0c6486178f 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.pl.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.pl.json @@ -24,7 +24,7 @@ "symbols/InteractivityPlatform/choices/Auto/description": "Używa serwera podczas pobierania zasobów WebAssembly, a następnie używa elementu WebAssembly", "symbols/IncludeSampleContent/displayName": "_Dołącz przykładowe strony", "symbols/IncludeSampleContent/description": "Konfiguruje, czy dodać przykładowe strony i style w celu zademonstrowania podstawowych wzorców użycia.", - "symbols/Empty/description": "Konfiguruje, czy pomijać przykładowe strony i style demonstrujące podstawowe wzorce użycia.", + "symbols/empty/description": "Konfiguruje, czy pomijać przykładowe strony i style demonstrujące podstawowe wzorce użycia.", "symbols/AllInteractive/displayName": "_Włącz globalnie renderowanie interakcyjne w całej witrynie", "symbols/AllInteractive/description": "Konfiguruje, czy każda strona ma być interakcyjna, stosując interakcyjny tryb renderowania na najwyższym poziomie. W przypadku wartości false strony będą domyślnie używać statycznego renderowania serwera i mogą być oznaczone jako interakcyjne dla poszczególnych stron lub składników.", "symbols/NoHttps/description": "Określa, czy wyłączyć protokół HTTPS. Ta opcja ma zastosowanie tylko wtedy, gdy parametr Individual nie został użyty dla opcji --auth.", diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.pt-BR.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.pt-BR.json index 7782cb8f11d5..bc8a2af3c6f4 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.pt-BR.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.pt-BR.json @@ -24,7 +24,7 @@ "symbols/InteractivityPlatform/choices/Auto/description": "Usa Servidor ao baixar os ativos WebAssembly e usa o WebAssembly", "symbols/IncludeSampleContent/displayName": "_Incluir páginas de amostra", "symbols/IncludeSampleContent/description": "Configura se deseja adicionar páginas de amostra e estilo para demonstrar padrões de uso básicos.", - "symbols/Empty/description": "Configura a omissão de páginas de amostra e estilo que demonstram padrões básicos de uso.", + "symbols/empty/description": "Configura a omissão de páginas de amostra e estilo que demonstram padrões básicos de uso.", "symbols/AllInteractive/displayName": "_Habilitar renderização interativa globalmente no site", "symbols/AllInteractive/description": "Configura se todas as páginas devem ser interativas aplicando um modo de renderização interativo no nível superior. Se for falso, as páginas usarão a renderização do servidor estático por padrão e poderão ser marcadas como interativas por página ou por componente.", "symbols/NoHttps/description": "Se deve desligar o HTTPS. Essa opção só se aplica se Individual não for usado para --auth.", diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.ru.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.ru.json index e876f241ffb0..773ec76fc279 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.ru.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.ru.json @@ -24,7 +24,7 @@ "symbols/InteractivityPlatform/choices/Auto/description": "Использует сервер при загрузке ресурсов WebAssembly, затем использует WebAssembly", "symbols/IncludeSampleContent/displayName": "_Включить примеры страниц", "symbols/IncludeSampleContent/description": "Настраивает, следует ли добавлять примеры страниц и стили для демонстрации базовых шаблонов использования.", - "symbols/Empty/description": "Настраивает, следует ли пропускать примеры страниц и стили, демонстрирующие базовые шаблоны использования.", + "symbols/empty/description": "Настраивает, следует ли пропускать примеры страниц и стили, демонстрирующие базовые шаблоны использования.", "symbols/AllInteractive/displayName": "_Включить интерактивную отрисовку по всему сайту", "symbols/AllInteractive/description": "Определяет, делать ли каждую страницу интерактивной, применяя интерактивный режим отрисовки на верхнем уровне. Если установлено значение false, страницы по умолчанию будут использовать статическую серверную отрисовку и могут быть помечены как интерактивные для каждой страницы или для каждого компонента.", "symbols/NoHttps/description": "Следует ли отключить HTTPS. Этот параметр применяется только в том случае, если для аргумента --auth не используется значение Individual.", diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.tr.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.tr.json index a79fc6c06a83..cab01b65f405 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.tr.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.tr.json @@ -24,7 +24,7 @@ "symbols/InteractivityPlatform/choices/Auto/description": "WebAssembly varlıkları indirilirken Server kullanır, ardından WebAssembly'i kullanır", "symbols/IncludeSampleContent/displayName": "Örnek _sayfalar ekle", "symbols/IncludeSampleContent/description": "Temel kullanım düzenlerini göstermek için örnek sayfaların ve stil oluşturma özelliklerinin eklenip eklenmeyeceğini yapılandırır.", - "symbols/Empty/description": "Temel kullanım düzenlerini gösteren örnek sayfaların ve stil oluşturma özelliklerinin atlanıp atlanmayacağını yapılandırır.", + "symbols/empty/description": "Temel kullanım düzenlerini gösteren örnek sayfaların ve stil oluşturma özelliklerinin atlanıp atlanmayacağını yapılandırır.", "symbols/AllInteractive/displayName": "_Site genelinde etkileşimli işlemeyi genel olarak etkinleştirin", "symbols/AllInteractive/description": "En üst düzeyde etkileşimli bir işleme modu uygulayarak her sayfanın etkileşimli olup olmayacağını yapılandırır. False ise sayfalar varsayılan olarak statik sunucu işleme kullanır ve sayfa başına veya bileşen başına temelinde etkileşimli olarak işaretlenebilir.", "symbols/NoHttps/description": "HTTPS'nin kapatılıp kapatılmayacağı. Bu seçenek yalnızca Bireysel --auth için kullanılmadığında geçerlidir.", diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.zh-Hans.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.zh-Hans.json index 8df0768532bd..25a440657457 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.zh-Hans.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.zh-Hans.json @@ -24,7 +24,7 @@ "symbols/InteractivityPlatform/choices/Auto/description": "下载 WebAssembly 资产时使用服务器,然后使用 WebAssembly", "symbols/IncludeSampleContent/displayName": "包含示例页(_I)", "symbols/IncludeSampleContent/description": "配置是否添加示例页和样式以演示基本使用模式。", - "symbols/Empty/description": "配置是否忽略演示基本使用模式的示例页和样式。", + "symbols/empty/description": "配置是否忽略演示基本使用模式的示例页和样式。", "symbols/AllInteractive/displayName": "在整个网站全局启用交互式呈现(_E)", "symbols/AllInteractive/description": "配置是否通过在顶层应用交互式呈现模式来使每个页面都具备交互性。如果为 false,页面将默认使用静态服务器呈现,并且可按每页或每组件标记为具有交互性。", "symbols/NoHttps/description": "是否禁用 HTTPS。只有当未对 --auth 使用“个人”时,此选项才适用。", diff --git a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.zh-Hant.json b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.zh-Hant.json index a6574deb6860..6f45f3ff243c 100644 --- a/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.zh-Hant.json +++ b/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.zh-Hant.json @@ -24,7 +24,7 @@ "symbols/InteractivityPlatform/choices/Auto/description": "下載 WebAssembly 資產時使用伺服器,然後使用 WebAssembly", "symbols/IncludeSampleContent/displayName": "包含範例頁面(_I)", "symbols/IncludeSampleContent/description": "設定是否要新增範例頁面和樣式,以示範基本使用模式。", - "symbols/Empty/description": "設定是否要省略範例頁面和樣式,其示範基本使用模式。", + "symbols/empty/description": "設定是否要省略範例頁面和樣式,其示範基本使用模式。", "symbols/AllInteractive/displayName": "_啟用整個網站的全域互動式轉譯", "symbols/AllInteractive/description": "設定是否要在最高層級應用互動式轉譯模式,讓每一頁都能互動。若為 False,則頁面預設會使用靜態伺服器轉譯,而且可以按照頁面或按照元件標示為互動式。", "symbols/NoHttps/description": "是否要關閉 HTTPS。此選項僅適用於個人未用於 --auth 時。", diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.cs.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.cs.json index 0c8b9925be80..03bd293ef8c0 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.cs.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.cs.json @@ -8,5 +8,5 @@ "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Cílový DOTNET_TFM_VALUE", "symbols/IncludeSampleContent/displayName": "_Zahrnout ukázkové stránky", "symbols/IncludeSampleContent/description": "Nastavuje, jestli se mají přidávat ukázkové stránky a styly pro demonstraci základních vzorů použití.", - "symbols/Empty/description": "Nastavuje, jestli se mají vynechat ukázkové stránky a styly, které demonstrují základní vzory použití." + "symbols/empty/description": "Nastavuje, jestli se mají vynechat ukázkové stránky a styly, které demonstrují základní vzory použití." } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.de.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.de.json index d2677d254526..c12f127ec982 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.de.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.de.json @@ -8,5 +8,5 @@ "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Ziel DOTNET_TFM_VALUE", "symbols/IncludeSampleContent/displayName": "_Include Beispielseiten", "symbols/IncludeSampleContent/description": "Konfiguriert, ob Beispielseiten und Stile hinzugefügt werden, um grundlegende Verwendungsmuster zu veranschaulichen.", - "symbols/Empty/description": "Konfiguriert, ob Beispielseiten und Formatierungen weggelassen werden sollen, die grundlegende Verwendungsmuster veranschaulichen." + "symbols/empty/description": "Konfiguriert, ob Beispielseiten und Formatierungen weggelassen werden sollen, die grundlegende Verwendungsmuster veranschaulichen." } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.en.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.en.json index 4fb3f9cf9571..92b112fb81b3 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.en.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.en.json @@ -8,5 +8,5 @@ "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE", "symbols/IncludeSampleContent/displayName": "_Include sample pages", "symbols/IncludeSampleContent/description": "Configures whether to add sample pages and styling to demonstrate basic usage patterns.", - "symbols/Empty/description": "Configures whether to omit sample pages and styling that demonstrate basic usage patterns." + "symbols/empty/description": "Configures whether to omit sample pages and styling that demonstrate basic usage patterns." } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.es.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.es.json index e8143ddab463..fb276b30660c 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.es.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.es.json @@ -8,5 +8,5 @@ "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Objetivo DOTNET_TFM_VALUE", "symbols/IncludeSampleContent/displayName": "_Incluir páginas de ejemplo", "symbols/IncludeSampleContent/description": "Configura si se van a agregar páginas de ejemplo y estilos para mostrar patrones de uso básicos.", - "symbols/Empty/description": "Configura si se omiten las páginas de ejemplo y los estilos que muestran patrones de uso básicos." + "symbols/empty/description": "Configura si se omiten las páginas de ejemplo y los estilos que muestran patrones de uso básicos." } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.fr.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.fr.json index 470e26698afa..1b75114ae493 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.fr.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.fr.json @@ -8,5 +8,5 @@ "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "DOTNET_TFM_VALUE cible", "symbols/IncludeSampleContent/displayName": "_Inclure des exemples de pages", "symbols/IncludeSampleContent/description": "Configure s'il faut ajouter des exemples de pages et de style pour illustrer les modèles d'utilisation de base.", - "symbols/Empty/description": "Configure s'il faut omettre les exemples de pages et le style qui illustrent les modèles d'utilisation de base." + "symbols/empty/description": "Configure s'il faut omettre les exemples de pages et le style qui illustrent les modèles d'utilisation de base." } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.it.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.it.json index 86c054d11f32..7167ad674080 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.it.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.it.json @@ -8,5 +8,5 @@ "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "DOTNET_TFM_VALUE di destinazione", "symbols/IncludeSampleContent/displayName": "_Include pagine di esempio", "symbols/IncludeSampleContent/description": "Consente di configurare se aggiungere pagine di esempio e stile per mostrare modelli di utilizzo di base.", - "symbols/Empty/description": "Consente di configurare se omettere pagine di esempio e stile che mostrano modelli di utilizzo di base." + "symbols/empty/description": "Consente di configurare se omettere pagine di esempio e stile che mostrano modelli di utilizzo di base." } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ja.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ja.json index a15201fb346c..c84ecf35f974 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ja.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ja.json @@ -8,5 +8,5 @@ "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "ターゲット DOTNET_TFM_VALUE", "symbols/IncludeSampleContent/displayName": "サンプル ページを含める(_I)", "symbols/IncludeSampleContent/description": "基本的な使用パターンを示すサンプル ページとスタイルを追加するかどうかを構成します。", - "symbols/Empty/description": "基本的な使用パターンを示すサンプル ページとスタイルを省略するかどうかを構成します。" + "symbols/empty/description": "基本的な使用パターンを示すサンプル ページとスタイルを省略するかどうかを構成します。" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json index 4fb3f9cf9571..92b112fb81b3 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json @@ -8,5 +8,5 @@ "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE", "symbols/IncludeSampleContent/displayName": "_Include sample pages", "symbols/IncludeSampleContent/description": "Configures whether to add sample pages and styling to demonstrate basic usage patterns.", - "symbols/Empty/description": "Configures whether to omit sample pages and styling that demonstrate basic usage patterns." + "symbols/empty/description": "Configures whether to omit sample pages and styling that demonstrate basic usage patterns." } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ko.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ko.json index 402c7acd2c5d..4e0a5053d383 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ko.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ko.json @@ -8,5 +8,5 @@ "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "대상 DOTNET_TFM_VALUE", "symbols/IncludeSampleContent/displayName": "샘플 페이지 포함(_I)", "symbols/IncludeSampleContent/description": "기본 사용 패턴을 보여주기 위해 샘플 페이지 및 스타일을 추가할지 여부를 구성합니다.", - "symbols/Empty/description": "기본 사용 패턴을 보여주는 샘플 페이지 및 스타일을 생략할지 여부를 구성합니다." + "symbols/empty/description": "기본 사용 패턴을 보여주는 샘플 페이지 및 스타일을 생략할지 여부를 구성합니다." } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pl.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pl.json index bb56775960a8..f75979a6d9aa 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pl.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pl.json @@ -8,5 +8,5 @@ "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Docelowa wartość DOTNET_TFM_VALUE", "symbols/IncludeSampleContent/displayName": "_Dołącz przykładowe strony", "symbols/IncludeSampleContent/description": "Konfiguruje, czy dodać przykładowe strony i style w celu zademonstrowania podstawowych wzorców użycia.", - "symbols/Empty/description": "Konfiguruje, czy pomijać przykładowe strony i style demonstrujące podstawowe wzorce użycia." + "symbols/empty/description": "Konfiguruje, czy pomijać przykładowe strony i style demonstrujące podstawowe wzorce użycia." } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pt-BR.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pt-BR.json index 5191639c8ba0..ee178ee43cf1 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pt-BR.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.pt-BR.json @@ -8,5 +8,5 @@ "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE", "symbols/IncludeSampleContent/displayName": "_Incluir páginas de amostra", "symbols/IncludeSampleContent/description": "Configura se deseja adicionar páginas de amostra e estilo para demonstrar padrões de uso básicos.", - "symbols/Empty/description": "Configura a omissão de páginas de amostra e estilo que demonstram padrões básicos de uso." + "symbols/empty/description": "Configura a omissão de páginas de amostra e estilo que demonstram padrões básicos de uso." } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ru.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ru.json index 27c3b23d6469..3581b10d6342 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ru.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.ru.json @@ -8,5 +8,5 @@ "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Target DOTNET_TFM_VALUE", "symbols/IncludeSampleContent/displayName": "_Включить примеры страниц", "symbols/IncludeSampleContent/description": "Настраивает, следует ли добавлять примеры страниц и стили для демонстрации базовых шаблонов использования.", - "symbols/Empty/description": "Настраивает, следует ли пропускать примеры страниц и стили, демонстрирующие базовые шаблоны использования." + "symbols/empty/description": "Настраивает, следует ли пропускать примеры страниц и стили, демонстрирующие базовые шаблоны использования." } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.tr.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.tr.json index f53c310a3c1b..4a80d3d9e163 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.tr.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.tr.json @@ -8,5 +8,5 @@ "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "Hedef DOTNET_TFM_VALUE", "symbols/IncludeSampleContent/displayName": "Örnek _sayfalar ekle", "symbols/IncludeSampleContent/description": "Temel kullanım düzenlerini göstermek için örnek sayfaların ve stil oluşturma özelliklerinin eklenip eklenmeyeceğini yapılandırır.", - "symbols/Empty/description": "Temel kullanım düzenlerini gösteren örnek sayfaların ve stil oluşturma özelliklerinin atlanıp atlanmayacağını yapılandırır." + "symbols/empty/description": "Temel kullanım düzenlerini gösteren örnek sayfaların ve stil oluşturma özelliklerinin atlanıp atlanmayacağını yapılandırır." } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hans.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hans.json index 16497417f67c..1455b0e3de7e 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hans.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hans.json @@ -8,5 +8,5 @@ "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "目标 DOTNET_TFM_VALUE", "symbols/IncludeSampleContent/displayName": "包含示例页(_I)", "symbols/IncludeSampleContent/description": "配置是否添加示例页和样式以演示基本使用模式。", - "symbols/Empty/description": "配置是否忽略演示基本使用模式的示例页和样式。" + "symbols/empty/description": "配置是否忽略演示基本使用模式的示例页和样式。" } \ No newline at end of file diff --git a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hant.json b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hant.json index f3b5252476d7..b61c7344ab3c 100644 --- a/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hant.json +++ b/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.zh-Hant.json @@ -8,5 +8,5 @@ "symbols/Framework/choices/DOTNET_TFM_VALUE/description": "目標 DOTNET_TFM_VALUE", "symbols/IncludeSampleContent/displayName": "包含範例頁面(_I)", "symbols/IncludeSampleContent/description": "設定是否要新增範例頁面和樣式,以示範基本使用模式。", - "symbols/Empty/description": "設定是否要省略範例頁面和樣式,其示範基本使用模式。" + "symbols/empty/description": "設定是否要省略範例頁面和樣式,其示範基本使用模式。" } \ No newline at end of file