Skip to content

Commit

Permalink
resx Clean Up
Browse files Browse the repository at this point in the history
  • Loading branch information
QilongTang committed Jan 13, 2025
1 parent 8831432 commit 9c4ab07
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
18 changes: 9 additions & 9 deletions src/DynamoCoreWpf/Properties/Resources.Designer.cs

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

4 changes: 2 additions & 2 deletions src/DynamoCoreWpf/Properties/Resources.en-US.resx
Original file line number Diff line number Diff line change
Expand Up @@ -4102,7 +4102,7 @@ To make this file into a new template, save it to a different folder, then move
<data name="PackageVersionTooltip" xml:space="preserve">
<value>Versions marked with .x include all versions in the specified major or minor release</value>
</data>
<data name="PackageManagerUnknownCompatibilityVersionDownloadMsg" xml:space="preserve">
<value>&lt;Bold&gt;The compatibility of this version with your setup has not been verified.&lt;/Bold&gt; It may or may not work as expected.</value>
<data name="PackageUnknownCompatibilityVersionDownloadMsg" xml:space="preserve">
<value>The compatibility of this version with your setup has not been verified. It may or may not work as expected.</value>
</data>
</root>
6 changes: 3 additions & 3 deletions src/DynamoCoreWpf/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -4089,7 +4089,7 @@ To make this file into a new template, save it to a different folder, then move
<data name="PackageVersionTooltip" xml:space="preserve">
<value>Versions marked with .x include all versions in the specified major or minor release</value>
</data>
<data name="PackageManagerUnknownCompatibilityVersionDownloadMsg" xml:space="preserve">
<value>&lt;Bold&gt;The compatibility of this version with your setup has not been verified.&lt;/Bold&gt; It may or may not work as expected. </value>
<data name="PackageUnknownCompatibilityVersionDownloadMsg" xml:space="preserve">
<value>The compatibility of this version with your setup has not been verified. It may or may not work as expected. </value>
</data>
</root>
</root>
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ internal async void ExecutePackageDownload(string name, PackageVersion package,
// Unknown package compatibility with current Dynamo env, this is expected to be the most popular case for now
if (compatible == null && !DynamoModel.IsTestMode)
{
msg = msg + "/n" + Resources.PackageManagerUnknownCompatibilityVersionDownloadMsg;
msg = msg + "\n\n" + Resources.PackageUnknownCompatibilityVersionDownloadMsg;
result = MessageBoxService.Show(ViewModelOwner, msg,
Resources.PackageDownloadConfirmMessageBoxTitle,
MessageBoxButton.OKCancel, MessageBoxImage.Question);
Expand All @@ -775,7 +775,7 @@ internal async void ExecutePackageDownload(string name, PackageVersion package,
// Package incompatible with current Dynamo env
else if (compatible == false && !DynamoModel.IsTestMode)
{
msg = msg + "/n" + Resources.PackageManagerIncompatibleVersionDownloadMsg;
msg = msg + "\n\n" + Resources.PackageManagerIncompatibleVersionDownloadMsg;
result = MessageBoxService.Show(ViewModelOwner, msg,
Resources.PackageManagerIncompatibleVersionDownloadTitle,
MessageBoxButton.OKCancel, MessageBoxImage.Warning);
Expand Down

0 comments on commit 9c4ab07

Please sign in to comment.