From 9d8ca6074b09be7aefad9266b2691fcff2ff5210 Mon Sep 17 00:00:00 2001 From: Jonathan Pobst Date: Thu, 7 Mar 2024 07:31:46 -1000 Subject: [PATCH] [templates] Remove redundant "template" from display name. (#8773) Fixes: https://github.com/xamarin/xamarin-android/issues/8626 Removes the word "template" that shows up in the New Item dialog box, as it is unnecessary. The original issue also mentions not having a custom icon, but as we don't have any of those available, the default icon seems good enough. --- .../android-activity/.template.config/template.json | 2 +- .../android-layout/.template.config/template.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.Android.Templates/android-activity/.template.config/template.json b/src/Microsoft.Android.Templates/android-activity/.template.config/template.json index be928b8a921..64e09af7d3b 100644 --- a/src/Microsoft.Android.Templates/android-activity/.template.config/template.json +++ b/src/Microsoft.Android.Templates/android-activity/.template.config/template.json @@ -2,7 +2,7 @@ "$schema": "http://json.schemastore.org/template", "author": "Microsoft", "classifications": [ "Android", "Mobile" ], - "name": "Android Activity template", + "name": "Android Activity", "description": "An Android Activity class", "tags": { "language": "C#", diff --git a/src/Microsoft.Android.Templates/android-layout/.template.config/template.json b/src/Microsoft.Android.Templates/android-layout/.template.config/template.json index c3cea066474..29701a67b6b 100644 --- a/src/Microsoft.Android.Templates/android-layout/.template.config/template.json +++ b/src/Microsoft.Android.Templates/android-layout/.template.config/template.json @@ -2,7 +2,7 @@ "$schema": "http://json.schemastore.org/template", "author": "Microsoft", "classifications": [ "Android", "Mobile" ], - "name": "Android Layout template", + "name": "Android Layout", "description": "An Android layout (XML) file", "tags": { "language": "C#",