Skip to content

Commit 6f2357f

Browse files
authored
change text for interactivity option in blazor web template (#51160)
# Change Interactivity option text in Blazor web template ![blazor-web-interactivitu-text2](https://github.com/dotnet/aspnetcore/assets/114938397/2ad5981d-582c-45a5-a8f4-3fb8ae66437c) ![blazor-web-interactivity-text](https://github.com/dotnet/aspnetcore/assets/114938397/3aa0c243-e860-47c0-808f-fc23b215a4f8) ## Description 1. Changed the text for Interactivity option in Blazor Web template from "Interactivity type" to "Interactivity render mode". 2. Changed text for `--interactivity` option CLI help text changing "hosting platform" to "interactive render mode". Fixes #51108 ## Customer Impact Customers will see different text for interactivity option in Blazor Web template that uses better terminology. ## Regression? - [ ] Yes - [x] No [If yes, specify the version the behavior has regressed from] ## Risk - [ ] High - [ ] Medium - [x] Low [Justify the selection above] ## Verification - [x] Manual (required) - [ ] Automated ## Packaging changes reviewed? - [ ] Yes - [ ] No - [x] N/A ---- ## When servicing release/2.1 - [ ] Make necessary changes in eng/PatchConfig.props
1 parent 48c5817 commit 6f2357f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/ProjectTemplates/Web.ProjectTemplates/content/BlazorWeb-CSharp/.template.config/localize/templatestrings.en.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"symbols/kestrelHttpsPort/description": "Port number to use for the HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used (no-https will be ignored if Individual auth is used).",
1212
"symbols/iisHttpPort/description": "Port number to use for the IIS Express HTTP endpoint in launchSettings.json.",
1313
"symbols/iisHttpsPort/description": "Port number to use for the IIS Express HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used (no-https will be ignored if Individual auth is used).",
14-
"symbols/InteractivityPlatform/displayName": "_Interactivity type",
15-
"symbols/InteractivityPlatform/description": "Chooses which hosting platform to use for interactive components",
14+
"symbols/InteractivityPlatform/displayName": "_Interactive render mode",
15+
"symbols/InteractivityPlatform/description": "Chooses which interactive render mode to use for interactive components",
1616
"symbols/InteractivityPlatform/choices/None/displayName": "None",
1717
"symbols/InteractivityPlatform/choices/None/description": "No interactivity (static server rendering only)",
1818
"symbols/InteractivityPlatform/choices/Server/displayName": "Server",

src/ProjectTemplates/Web.ProjectTemplates/content/BlazorWeb-CSharp/.template.config/template.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,8 @@
318318
"type": "parameter",
319319
"datatype": "choice",
320320
"defaultValue": "Server",
321-
"displayName": "_Interactivity type",
322-
"description": "Chooses which hosting platform to use for interactive components",
321+
"displayName": "_Interactive render mode",
322+
"description": "Chooses which interactive render mode to use for interactive components",
323323
"choices": [
324324
{
325325
"choice": "None",

0 commit comments

Comments
 (0)