From 83fdc96856a7a14525cd3257292f8973bffc2275 Mon Sep 17 00:00:00 2001 From: Aabishkar KC Date: Wed, 8 Nov 2023 18:30:13 -0500 Subject: [PATCH] Stop localizing github issue title (#14584) --- src/DynamoCoreWpf/Properties/Resources.en-US.resx | 3 --- src/DynamoCoreWpf/Properties/Resources.resx | 3 --- src/DynamoCoreWpf/Utilities/CrashUtilities.cs | 3 +-- 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/src/DynamoCoreWpf/Properties/Resources.en-US.resx b/src/DynamoCoreWpf/Properties/Resources.en-US.resx index f917d6012b0..a1cddba777e 100644 --- a/src/DynamoCoreWpf/Properties/Resources.en-US.resx +++ b/src/DynamoCoreWpf/Properties/Resources.en-US.resx @@ -2252,9 +2252,6 @@ Uninstall the following packages: {0}? Display the dialog for user to pick agreement on data collecting. - - Crash report from Dynamo {0} - ..\ViewModels\Watch3D\compiledShaders\psDynamoMesh;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 diff --git a/src/DynamoCoreWpf/Properties/Resources.resx b/src/DynamoCoreWpf/Properties/Resources.resx index 9fa60839a53..6f24b9938c3 100644 --- a/src/DynamoCoreWpf/Properties/Resources.resx +++ b/src/DynamoCoreWpf/Properties/Resources.resx @@ -2462,9 +2462,6 @@ Want to publish a different package? Custom Nodes will be placed in the Add-Ons section of the library. Note regarding Custom Node library location - - Crash report from Dynamo {0} - Please wait... diff --git a/src/DynamoCoreWpf/Utilities/CrashUtilities.cs b/src/DynamoCoreWpf/Utilities/CrashUtilities.cs index 645f3ed869f..4386ab4d205 100644 --- a/src/DynamoCoreWpf/Utilities/CrashUtilities.cs +++ b/src/DynamoCoreWpf/Utilities/CrashUtilities.cs @@ -13,8 +13,7 @@ internal static string GithubNewIssueUrlFromCrashContent(object crashContent) { var baseUri = new UriBuilder(Configurations.GitHubBugReportingLink); - // provide fallback values for text content in case Resources or Assembly calls fail - var issueTitle = Properties.Resources.CrashPromptGithubNewIssueTitle ?? "Crash report from Dynamo {0}"; + var issueTitle = "Crash report from Dynamo {0}"; var dynamoVersion = AssemblyHelper.GetDynamoVersion().ToString() ?? "2.1.0+"; // append the title and body to the URL as query parameters