-
Notifications
You must be signed in to change notification settings - Fork 635
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
Multiple fixes for 2.18 #13880
Multiple fixes for 2.18 #13880
Changes from all commits
36817c0
0cf5cc7
a1e45ff
d8a6f27
bcf6f13
b5abaf7
2f7ca4b
f1b7c06
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1835,7 +1835,7 @@ Do you want to install the latest Dynamo update?</value> | |
<value>Run started with new working range...</value> | ||
</data> | ||
<data name="GroupDefaultText" xml:space="preserve"> | ||
<value><Double click here to edit group description></value> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are we using the same resource string in both Core and CoreWpf? Should we get rid of one of them? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, we are using the same resource string in both, but the Wpf resources are unavailable in Core. |
||
<value>Description <Double click here to edit group description></value> | ||
</data> | ||
<data name="GroupContextMenuBackground" xml:space="preserve"> | ||
<value>Select Background</value> | ||
|
@@ -2541,11 +2541,11 @@ Uninstall the following packages: {0}?</value> | |
<value>Confidence rating</value> | ||
<comment>Confidence tooltip title</comment> | ||
</data> | ||
<data name="ConfidenceToolTipDescription" xml:space="preserve"> | ||
<data name="ConfidenceToolTipDescription" xml:space="preserve"> | ||
<value>Represents estimated probability that the given node is the right choice. Recommended nodes are listed in order from highest to lowest confidence level. Confidence level percentages for all recommended nodes add up to about 100%.</value> | ||
<comment>Confidence tooltip description</comment> | ||
</data> | ||
<data name="ConfidenceToolTipoLearnMore" xml:space="preserve"> | ||
<data name="ConfidenceToolTipoLearnMore" xml:space="preserve"> | ||
<value>Learn more</value> | ||
<comment>Confidence tooltip Learn more</comment> | ||
</data> | ||
|
@@ -2805,7 +2805,7 @@ Do you wish to uninstall {1}? Restart {2} to complete the uninstall and try down | |
<value>Finished</value> | ||
</data> | ||
<data name="GroupNameDefaultText" xml:space="preserve"> | ||
<value><Double click here to edit group title></value> | ||
<value>Title <Double click here to edit group title></value> | ||
</data> | ||
<data name="GroupContextMenuAddGroupToGroup" xml:space="preserve"> | ||
<value>Add Group to This Group</value> | ||
|
@@ -3524,28 +3524,28 @@ In certain complex graphs or host program scenarios, Automatic mode may cause in | |
<value>Library</value> | ||
</data> | ||
<data name="PortPropertiesPromptInputWindowTitle"> | ||
<value>Input Port Properties</value> | ||
<comment>Input Port title</comment> | ||
<value>Input Port Properties</value> | ||
<comment>Input Port title</comment> | ||
</data> | ||
<data name="PortPropertiesPromptOutputWindowTitle"> | ||
<value>Output Port Properties</value> | ||
<comment>Output Port title</comment> | ||
<value>Output Port Properties</value> | ||
<comment>Output Port title</comment> | ||
</data> | ||
<data name="PortPropertiesPromptDescriptionTooltip"> | ||
<value>Description of port</value> | ||
<comment>Description of port</comment> | ||
<value>Description of port</value> | ||
<comment>Description of port</comment> | ||
</data> | ||
<data name="PortPropertiesPromptWindowDescription"> | ||
<value>Description</value> | ||
<comment>Port Description Label</comment> | ||
<value>Description</value> | ||
<comment>Port Description Label</comment> | ||
</data> | ||
<data name="PortPropertiesPromptNameTooltip"> | ||
<value>Port name</value> | ||
<comment>Name of port</comment> | ||
<value>Port name</value> | ||
<comment>Name of port</comment> | ||
</data> | ||
<data name="PortPropertiesPromptWindowName"> | ||
<value>Name</value> | ||
<comment>Port Name Label</comment> | ||
<value>Name</value> | ||
<comment>Port Name Label</comment> | ||
</data> | ||
<data name="RemovePythonPortWarningMessageBoxTitle" xml:space="preserve"> | ||
<value>Remove port?</value> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!