From fd75cebc35b71d15f0875191c6664377bd32b9e3 Mon Sep 17 00:00:00 2001 From: Doug Bunting <6431421+dougbu@users.noreply.github.com> Date: Sat, 25 Feb 2023 12:13:48 -0800 Subject: [PATCH 1/5] Update template spelling and wording - follow up to #46714 - align template.json and templatestrings.en.json files - correct 'ReadWrite' and 'Am' - ask a few questions of reviewers --- .../.template.config/localize/templatestrings.en.json | 2 ++ .../content/ApiController/.template.config/template.json | 2 +- .../.template.config/localize/templatestrings.en.json | 4 +++- .../content/MvcController/.template.config/template.json | 4 ++-- .../.template.config/localize/templatestrings.en.json | 3 ++- .../content/RazorView/.template.config/template.json | 4 ++-- 6 files changed, 12 insertions(+), 7 deletions(-) diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.en.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.en.json index 5046461e45b8..1705424d8131 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.en.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.en.json @@ -3,7 +3,9 @@ "name": "API Controller", "description": "API Controller with or without read/write actions", "symbols/namespace/description": "namespace for the generated code", + "_symbols/namespace/description.comment": "Should this start w/ 'Namespace'?", "symbols/actions/description": "create controller with read/write actions", + "_symbols/actions/description.comment": "Should this start w/ 'Create'?", "symbols/actions/displayName": "Add ReadWrite Actions", "postActions/openInEditor/description": "Opens ValueController.cs in the editor" } diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json index b2cf79254082..6e4b4c0dc3c8 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json @@ -46,7 +46,7 @@ { "id": "openInEditor", "condition": "(HostIdentifier != \"dotnetcli\" && HostIdentifier != \"dotnetcli-preview\")", - "description": "Opens the created controller in the editor", + "description": "Opens ValueController.cs in the editor", "manualInstructions": [ ], "actionId": "84C0DA21-51C8-4541-9940-6CA19AF04EE6", "args": { diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.en.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.en.json index 34e6bebd0542..8f399a9297fe 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.en.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.en.json @@ -3,7 +3,9 @@ "name": "MVC Controller", "description": "MVC Controller with or without read/write actions", "symbols/namespace/description": "namespace for the generated code", + "_symbols/namespace/description.comment": "Should this start w/ 'Namespace'?", "symbols/actions/description": "create controller with read/write actions", - "symbols/actions/displayName": "Add ReadWrite Actions", + "_symbols/actions/description.comment": "Should this start w/ 'Create'?", + "symbols/actions/displayName": "Add Read/Write Actions", "postActions/openInEditor/description": "Opens HomeController.cs in the editor" } diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/template.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/template.json index 92917953eab3..94b6e9d66904 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/template.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/template.json @@ -28,7 +28,7 @@ }, "actions": { "description": "create controller with read/write actions", - "displayName": "Add ReadWrite Actions", + "displayName": "Add Read/Write Actions", "type": "parameter", "datatype": "bool", "defaultValue": "false" @@ -46,7 +46,7 @@ { "id": "openInEditor", "condition": "(HostIdentifier != \"dotnetcli\" && HostIdentifier != \"dotnetcli-preview\")", - "description": "Opens the created controller in the editor", + "description": "Opens HomeController.cs in the editor", "manualInstructions": [ ], "actionId": "84C0DA21-51C8-4541-9940-6CA19AF04EE6", "args": { diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.en.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.en.json index 4035fb703792..3b3b7facfd90 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.en.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.en.json @@ -1,6 +1,7 @@ { "author": "Microsoft", "name": "Razor View", - "description": "A Razor view without a page model", + "description": "An empty Razor view", + "_description.comment": "Reviewers: Could also be 'A Razor view without a page model'. And should View be capitalized?", "postActions/openInEditor/description": "Opens Index.cshtml in the editor" } diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/template.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/template.json index 602f10bc76c1..e4d615eb9b0f 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/template.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/template.json @@ -4,7 +4,7 @@ "classifications": [ "Web", "ASP.NET" ], "name": "Razor View", "generatorVersions": "[1.0.0.0-*)", - "description": "Am empty razor view", + "description": "An empty Razor view", "tags": { "language": "C#", "type": "item" @@ -28,7 +28,7 @@ { "id": "openInEditor", "condition": "(HostIdentifier != \"dotnetcli\" && HostIdentifier != \"dotnetcli-preview\")", - "description": "Opens the created view in the editor", + "description": "Opens Index.cshtml in the editor", "manualInstructions": [ ], "actionId": "84C0DA21-51C8-4541-9940-6CA19AF04EE6", "args": { From cc8397f3673a318123be6e3929dfec3245596971 Mon Sep 17 00:00:00 2001 From: Doug Bunting <6431421+dougbu@users.noreply.github.com> Date: Mon, 27 Feb 2023 15:20:54 -0800 Subject: [PATCH 2/5] Address code review comments - no need to change post-action `description`s --- .../content/ApiController/.template.config/template.json | 2 +- .../content/MvcController/.template.config/template.json | 2 +- .../content/RazorView/.template.config/template.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json index 6e4b4c0dc3c8..b2cf79254082 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json @@ -46,7 +46,7 @@ { "id": "openInEditor", "condition": "(HostIdentifier != \"dotnetcli\" && HostIdentifier != \"dotnetcli-preview\")", - "description": "Opens ValueController.cs in the editor", + "description": "Opens the created controller in the editor", "manualInstructions": [ ], "actionId": "84C0DA21-51C8-4541-9940-6CA19AF04EE6", "args": { diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/template.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/template.json index 94b6e9d66904..93c07579ee80 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/template.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/template.json @@ -46,7 +46,7 @@ { "id": "openInEditor", "condition": "(HostIdentifier != \"dotnetcli\" && HostIdentifier != \"dotnetcli-preview\")", - "description": "Opens HomeController.cs in the editor", + "description": "Opens the created controller in the editor", "manualInstructions": [ ], "actionId": "84C0DA21-51C8-4541-9940-6CA19AF04EE6", "args": { diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/template.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/template.json index e4d615eb9b0f..45e23887655a 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/template.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/template.json @@ -28,7 +28,7 @@ { "id": "openInEditor", "condition": "(HostIdentifier != \"dotnetcli\" && HostIdentifier != \"dotnetcli-preview\")", - "description": "Opens Index.cshtml in the editor", + "description": "Opens the created view in the editor", "manualInstructions": [ ], "actionId": "84C0DA21-51C8-4541-9940-6CA19AF04EE6", "args": { From dcf751766a0f30a51f4f542e8af987212bf09dd0 Mon Sep 17 00:00:00 2001 From: Doug Bunting <6431421+dougbu@users.noreply.github.com> Date: Mon, 27 Feb 2023 15:29:43 -0800 Subject: [PATCH 3/5] !fixup! Missed one `ReadWrite` misspelling --- .../content/ApiController/.template.config/template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json index b2cf79254082..911e5c95ea28 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json @@ -28,7 +28,7 @@ }, "actions": { "description": "create controller with read/write actions", - "displayName": "Add ReadWrite Actions", + "displayName": "Add Read/Write Actions", "type": "parameter", "datatype": "bool", "defaultValue": "false" From 40fc2187082eb1f14032bb1ecf0aed68dc2f4e8b Mon Sep 17 00:00:00 2001 From: Doug Bunting <6431421+dougbu@users.noreply.github.com> Date: Tue, 28 Feb 2023 11:13:19 -0800 Subject: [PATCH 4/5] Capitalize as agreed in PR - remove comment nodes from templatestrings.en.json files - also, update English resources to match template.json content --- .../localize/templatestrings.en.json | 12 +++++------- .../ApiController/.template.config/template.json | 4 ++-- .../localize/templatestrings.en.json | 10 ++++------ .../MvcController/.template.config/template.json | 4 ++-- .../localize/templatestrings.en.json | 6 +++--- .../content/RazorView/.template.config/template.json | 2 +- 6 files changed, 17 insertions(+), 21 deletions(-) diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.en.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.en.json index 1705424d8131..6e2cfa9d1cbb 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.en.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.en.json @@ -2,10 +2,8 @@ "author": "Microsoft", "name": "API Controller", "description": "API Controller with or without read/write actions", - "symbols/namespace/description": "namespace for the generated code", - "_symbols/namespace/description.comment": "Should this start w/ 'Namespace'?", - "symbols/actions/description": "create controller with read/write actions", - "_symbols/actions/description.comment": "Should this start w/ 'Create'?", - "symbols/actions/displayName": "Add ReadWrite Actions", - "postActions/openInEditor/description": "Opens ValueController.cs in the editor" -} + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json index 911e5c95ea28..4f775477702c 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/template.json @@ -22,12 +22,12 @@ "defaultName": "ValueController", "symbols": { "namespace": { - "description": "namespace for the generated code", + "description": "Namespace for the generated code", "replaces": "MyApp.Namespace", "type": "parameter" }, "actions": { - "description": "create controller with read/write actions", + "description": "Create controller with read/write actions", "displayName": "Add Read/Write Actions", "type": "parameter", "datatype": "bool", diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.en.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.en.json index 8f399a9297fe..61861e90cd69 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.en.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.en.json @@ -2,10 +2,8 @@ "author": "Microsoft", "name": "MVC Controller", "description": "MVC Controller with or without read/write actions", - "symbols/namespace/description": "namespace for the generated code", - "_symbols/namespace/description.comment": "Should this start w/ 'Namespace'?", - "symbols/actions/description": "create controller with read/write actions", - "_symbols/actions/description.comment": "Should this start w/ 'Create'?", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", "symbols/actions/displayName": "Add Read/Write Actions", - "postActions/openInEditor/description": "Opens HomeController.cs in the editor" -} + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/template.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/template.json index 93c07579ee80..44dddb65d8b6 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/template.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/template.json @@ -22,12 +22,12 @@ "defaultName": "HomeController", "symbols": { "namespace": { - "description": "namespace for the generated code", + "description": "Namespace for the generated code", "replaces": "MyApp.Namespace", "type": "parameter" }, "actions": { - "description": "create controller with read/write actions", + "description": "Create controller with read/write actions", "displayName": "Add Read/Write Actions", "type": "parameter", "datatype": "bool", diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.en.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.en.json index 3b3b7facfd90..616680f1e671 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.en.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.en.json @@ -1,7 +1,7 @@ { "author": "Microsoft", "name": "Razor View", - "description": "An empty Razor view", + "description": "An empty Razor View", "_description.comment": "Reviewers: Could also be 'A Razor view without a page model'. And should View be capitalized?", - "postActions/openInEditor/description": "Opens Index.cshtml in the editor" -} + "postActions/openInEditor/description": "Opens the created view in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/template.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/template.json index 45e23887655a..6ef941327fcd 100644 --- a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/template.json +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/template.json @@ -4,7 +4,7 @@ "classifications": [ "Web", "ASP.NET" ], "name": "Razor View", "generatorVersions": "[1.0.0.0-*)", - "description": "An empty Razor view", + "description": "An empty Razor View", "tags": { "language": "C#", "type": "item" From f082d7da7b0e72603c6f9d6e01a4e322ca94b6cf Mon Sep 17 00:00:00 2001 From: Doug Bunting <6431421+dougbu@users.noreply.github.com> Date: Tue, 28 Feb 2023 11:47:26 -0800 Subject: [PATCH 5/5] Build to propagate strings - fill in missed files in localize/ folder --- .../.template.config/localize/templatestrings.cs.json | 9 +++++++++ .../.template.config/localize/templatestrings.de.json | 9 +++++++++ .../.template.config/localize/templatestrings.es.json | 9 +++++++++ .../.template.config/localize/templatestrings.fr.json | 9 +++++++++ .../.template.config/localize/templatestrings.it.json | 9 +++++++++ .../.template.config/localize/templatestrings.ja.json | 9 +++++++++ .../.template.config/localize/templatestrings.ko.json | 9 +++++++++ .../.template.config/localize/templatestrings.pl.json | 9 +++++++++ .../.template.config/localize/templatestrings.pt-BR.json | 9 +++++++++ .../.template.config/localize/templatestrings.ru.json | 9 +++++++++ .../.template.config/localize/templatestrings.tr.json | 9 +++++++++ .../localize/templatestrings.zh-Hans.json | 9 +++++++++ .../localize/templatestrings.zh-Hant.json | 9 +++++++++ .../.template.config/localize/templatestrings.cs.json | 9 +++++++++ .../.template.config/localize/templatestrings.de.json | 9 +++++++++ .../.template.config/localize/templatestrings.es.json | 9 +++++++++ .../.template.config/localize/templatestrings.fr.json | 9 +++++++++ .../.template.config/localize/templatestrings.it.json | 9 +++++++++ .../.template.config/localize/templatestrings.ja.json | 9 +++++++++ .../.template.config/localize/templatestrings.ko.json | 9 +++++++++ .../.template.config/localize/templatestrings.pl.json | 9 +++++++++ .../.template.config/localize/templatestrings.pt-BR.json | 9 +++++++++ .../.template.config/localize/templatestrings.ru.json | 9 +++++++++ .../.template.config/localize/templatestrings.tr.json | 9 +++++++++ .../localize/templatestrings.zh-Hans.json | 9 +++++++++ .../localize/templatestrings.zh-Hant.json | 9 +++++++++ .../.template.config/localize/templatestrings.cs.json | 6 ++++++ .../.template.config/localize/templatestrings.de.json | 6 ++++++ .../.template.config/localize/templatestrings.es.json | 6 ++++++ .../.template.config/localize/templatestrings.fr.json | 6 ++++++ .../.template.config/localize/templatestrings.it.json | 6 ++++++ .../.template.config/localize/templatestrings.ja.json | 6 ++++++ .../.template.config/localize/templatestrings.ko.json | 6 ++++++ .../.template.config/localize/templatestrings.pl.json | 6 ++++++ .../.template.config/localize/templatestrings.pt-BR.json | 6 ++++++ .../.template.config/localize/templatestrings.ru.json | 6 ++++++ .../.template.config/localize/templatestrings.tr.json | 6 ++++++ .../localize/templatestrings.zh-Hans.json | 6 ++++++ .../localize/templatestrings.zh-Hant.json | 6 ++++++ 39 files changed, 312 insertions(+) create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.cs.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.de.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.es.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.fr.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.it.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.ja.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.ko.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.pl.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.pt-BR.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.ru.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.tr.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.zh-Hans.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.zh-Hant.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.cs.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.de.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.es.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.fr.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.it.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.ja.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.ko.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.pl.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.pt-BR.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.ru.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.tr.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.zh-Hans.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.zh-Hant.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.cs.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.de.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.es.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.fr.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.it.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.ja.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.ko.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.pl.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.pt-BR.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.ru.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.tr.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.zh-Hans.json create mode 100644 src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.zh-Hant.json diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.cs.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.cs.json new file mode 100644 index 000000000000..6e2cfa9d1cbb --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.cs.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "API Controller", + "description": "API Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.de.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.de.json new file mode 100644 index 000000000000..6e2cfa9d1cbb --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.de.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "API Controller", + "description": "API Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.es.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.es.json new file mode 100644 index 000000000000..6e2cfa9d1cbb --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.es.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "API Controller", + "description": "API Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.fr.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.fr.json new file mode 100644 index 000000000000..6e2cfa9d1cbb --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.fr.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "API Controller", + "description": "API Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.it.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.it.json new file mode 100644 index 000000000000..6e2cfa9d1cbb --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.it.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "API Controller", + "description": "API Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.ja.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.ja.json new file mode 100644 index 000000000000..6e2cfa9d1cbb --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.ja.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "API Controller", + "description": "API Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.ko.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.ko.json new file mode 100644 index 000000000000..6e2cfa9d1cbb --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.ko.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "API Controller", + "description": "API Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.pl.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.pl.json new file mode 100644 index 000000000000..6e2cfa9d1cbb --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.pl.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "API Controller", + "description": "API Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.pt-BR.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.pt-BR.json new file mode 100644 index 000000000000..6e2cfa9d1cbb --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.pt-BR.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "API Controller", + "description": "API Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.ru.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.ru.json new file mode 100644 index 000000000000..6e2cfa9d1cbb --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.ru.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "API Controller", + "description": "API Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.tr.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.tr.json new file mode 100644 index 000000000000..6e2cfa9d1cbb --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.tr.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "API Controller", + "description": "API Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.zh-Hans.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.zh-Hans.json new file mode 100644 index 000000000000..6e2cfa9d1cbb --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.zh-Hans.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "API Controller", + "description": "API Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.zh-Hant.json b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.zh-Hant.json new file mode 100644 index 000000000000..6e2cfa9d1cbb --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/ApiController/.template.config/localize/templatestrings.zh-Hant.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "API Controller", + "description": "API Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.cs.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.cs.json new file mode 100644 index 000000000000..61861e90cd69 --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.cs.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "MVC Controller", + "description": "MVC Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.de.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.de.json new file mode 100644 index 000000000000..61861e90cd69 --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.de.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "MVC Controller", + "description": "MVC Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.es.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.es.json new file mode 100644 index 000000000000..61861e90cd69 --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.es.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "MVC Controller", + "description": "MVC Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.fr.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.fr.json new file mode 100644 index 000000000000..61861e90cd69 --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.fr.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "MVC Controller", + "description": "MVC Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.it.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.it.json new file mode 100644 index 000000000000..61861e90cd69 --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.it.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "MVC Controller", + "description": "MVC Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.ja.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.ja.json new file mode 100644 index 000000000000..61861e90cd69 --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.ja.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "MVC Controller", + "description": "MVC Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.ko.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.ko.json new file mode 100644 index 000000000000..61861e90cd69 --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.ko.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "MVC Controller", + "description": "MVC Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.pl.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.pl.json new file mode 100644 index 000000000000..61861e90cd69 --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.pl.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "MVC Controller", + "description": "MVC Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.pt-BR.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.pt-BR.json new file mode 100644 index 000000000000..61861e90cd69 --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.pt-BR.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "MVC Controller", + "description": "MVC Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.ru.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.ru.json new file mode 100644 index 000000000000..61861e90cd69 --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.ru.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "MVC Controller", + "description": "MVC Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.tr.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.tr.json new file mode 100644 index 000000000000..61861e90cd69 --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.tr.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "MVC Controller", + "description": "MVC Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.zh-Hans.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.zh-Hans.json new file mode 100644 index 000000000000..61861e90cd69 --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.zh-Hans.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "MVC Controller", + "description": "MVC Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.zh-Hant.json b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.zh-Hant.json new file mode 100644 index 000000000000..61861e90cd69 --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/MvcController/.template.config/localize/templatestrings.zh-Hant.json @@ -0,0 +1,9 @@ +{ + "author": "Microsoft", + "name": "MVC Controller", + "description": "MVC Controller with or without read/write actions", + "symbols/namespace/description": "Namespace for the generated code", + "symbols/actions/description": "Create controller with read/write actions", + "symbols/actions/displayName": "Add Read/Write Actions", + "postActions/openInEditor/description": "Opens the created controller in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.cs.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.cs.json new file mode 100644 index 000000000000..7f4eed10042e --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.cs.json @@ -0,0 +1,6 @@ +{ + "author": "Microsoft", + "name": "Razor View", + "description": "An empty Razor View", + "postActions/openInEditor/description": "Opens the created view in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.de.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.de.json new file mode 100644 index 000000000000..7f4eed10042e --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.de.json @@ -0,0 +1,6 @@ +{ + "author": "Microsoft", + "name": "Razor View", + "description": "An empty Razor View", + "postActions/openInEditor/description": "Opens the created view in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.es.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.es.json new file mode 100644 index 000000000000..7f4eed10042e --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.es.json @@ -0,0 +1,6 @@ +{ + "author": "Microsoft", + "name": "Razor View", + "description": "An empty Razor View", + "postActions/openInEditor/description": "Opens the created view in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.fr.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.fr.json new file mode 100644 index 000000000000..7f4eed10042e --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.fr.json @@ -0,0 +1,6 @@ +{ + "author": "Microsoft", + "name": "Razor View", + "description": "An empty Razor View", + "postActions/openInEditor/description": "Opens the created view in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.it.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.it.json new file mode 100644 index 000000000000..7f4eed10042e --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.it.json @@ -0,0 +1,6 @@ +{ + "author": "Microsoft", + "name": "Razor View", + "description": "An empty Razor View", + "postActions/openInEditor/description": "Opens the created view in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.ja.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.ja.json new file mode 100644 index 000000000000..7f4eed10042e --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.ja.json @@ -0,0 +1,6 @@ +{ + "author": "Microsoft", + "name": "Razor View", + "description": "An empty Razor View", + "postActions/openInEditor/description": "Opens the created view in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.ko.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.ko.json new file mode 100644 index 000000000000..7f4eed10042e --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.ko.json @@ -0,0 +1,6 @@ +{ + "author": "Microsoft", + "name": "Razor View", + "description": "An empty Razor View", + "postActions/openInEditor/description": "Opens the created view in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.pl.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.pl.json new file mode 100644 index 000000000000..7f4eed10042e --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.pl.json @@ -0,0 +1,6 @@ +{ + "author": "Microsoft", + "name": "Razor View", + "description": "An empty Razor View", + "postActions/openInEditor/description": "Opens the created view in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.pt-BR.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.pt-BR.json new file mode 100644 index 000000000000..7f4eed10042e --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.pt-BR.json @@ -0,0 +1,6 @@ +{ + "author": "Microsoft", + "name": "Razor View", + "description": "An empty Razor View", + "postActions/openInEditor/description": "Opens the created view in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.ru.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.ru.json new file mode 100644 index 000000000000..7f4eed10042e --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.ru.json @@ -0,0 +1,6 @@ +{ + "author": "Microsoft", + "name": "Razor View", + "description": "An empty Razor View", + "postActions/openInEditor/description": "Opens the created view in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.tr.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.tr.json new file mode 100644 index 000000000000..7f4eed10042e --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.tr.json @@ -0,0 +1,6 @@ +{ + "author": "Microsoft", + "name": "Razor View", + "description": "An empty Razor View", + "postActions/openInEditor/description": "Opens the created view in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.zh-Hans.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.zh-Hans.json new file mode 100644 index 000000000000..7f4eed10042e --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.zh-Hans.json @@ -0,0 +1,6 @@ +{ + "author": "Microsoft", + "name": "Razor View", + "description": "An empty Razor View", + "postActions/openInEditor/description": "Opens the created view in the editor" +} \ No newline at end of file diff --git a/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.zh-Hant.json b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.zh-Hant.json new file mode 100644 index 000000000000..7f4eed10042e --- /dev/null +++ b/src/ProjectTemplates/Web.ItemTemplates/content/RazorView/.template.config/localize/templatestrings.zh-Hant.json @@ -0,0 +1,6 @@ +{ + "author": "Microsoft", + "name": "Razor View", + "description": "An empty Razor View", + "postActions/openInEditor/description": "Opens the created view in the editor" +} \ No newline at end of file