Skip to content

Commit

Permalink
TuneUp - User facing strings moved to Resources (#70)
Browse files Browse the repository at this point in the history
* progress record

resources created but TuneUp does not show in context menu

* strings moved to resources

* comments removed

* MessageBoxService.Show() from Wpf.Utilities

uses the style from Dynamo when Export to CSV cannot overwrite a locked file

* tooltips + showGroups on

* Resources.en-US added

* Update pipeline.yml
  • Loading branch information
ivaylo-matov authored Oct 25, 2024
1 parent 3ef879a commit 41f5113
Show file tree
Hide file tree
Showing 10 changed files with 953 additions and 60 deletions.
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

0 comments on commit 41f5113

Please sign in to comment.