Skip to content

Commit 3ef9f50

Browse files
committed
Fixed localization in SubworkplanStep
1 parent 9180b10 commit 3ef9f50

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/Moryx/Properties/Strings.Designer.cs

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Moryx/Properties/Strings.resx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@
129129
<data name="SplitWorkplanStep_Name" xml:space="preserve">
130130
<value>Split</value>
131131
</data>
132-
<data name="SubworkflowStep_Description" xml:space="preserve">
132+
<data name="SubworkplanStep_Description" xml:space="preserve">
133133
<value>Nests a sub-workplan in the current workplan</value>
134134
</data>
135-
<data name="SubworkflowStep_Name" xml:space="preserve">
135+
<data name="SubworkplanStep_DisplayName" xml:space="preserve">
136136
<value>Sub-Workplan</value>
137137
</data>
138138
</root>

src/Moryx/Workplans/WorkplanSteps/SubWorkplanStep.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Moryx.Workplans.WorkplanSteps
1212
/// Step that creates a <see cref="SubworkplanTransition"/> with the given workplan
1313
/// </summary>
1414
[DataContract]
15-
[Display(ResourceType = typeof(Strings), Name = "SubworkplanStep_Name", Description = "SubworkplanStep_Description")]
15+
[Display(ResourceType = typeof(Strings), Name = nameof(Strings.SubworkplanStep_DisplayName), Description = nameof(Strings.SubworkplanStep_Description))]
1616
public class SubworkplanStep : SubWorkplanStepBase
1717
{
1818
private SubworkplanStep()

0 commit comments

Comments
 (0)