Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TuneUp - User facing strings moved to Resources #70

Merged
merged 8 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions TuneUp/ProfiledNodeViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
using Dynamo.Graph.Nodes;
using Dynamo.Graph.Nodes.CustomNodes;
using Dynamo.Graph.Nodes.ZeroTouch;
using TuneUp.Properties;

namespace TuneUp
{
Expand Down Expand Up @@ -74,11 +75,11 @@ public bool IsGroupExecutionTime
/// <summary>
/// Prefix string of execution time.
/// </summary>
internal const string ExecutionTimelString = "Execution Time";
internal const string GroupNodePrefix = "Group: ";
internal const string GroupExecutionTimeString = "Group total";
private const string DefaultGroupName = "Title <Double click here to edit group title>";
private const string DefaultDisplayGroupName = "Title";
internal static readonly string ExecutionTimelString = Resources.Label_ExecutionTime;
internal static readonly string GroupNodePrefix = Resources.Label_GroupNodePrefix;
internal static readonly string GroupExecutionTimeString = Resources.Label_GroupTotalExecutionTime;
private static readonly string DefaultGroupName = Resources.Label_DefaultGroupName;
private static readonly string DefaultDisplayGroupName = Resources.Label_DefaultDisplayGroupName;

private string name = String.Empty;
/// <summary>
Expand Down
361 changes: 361 additions & 0 deletions TuneUp/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading