-
Notifications
You must be signed in to change notification settings - Fork 64
[jcw-gen] Make MSBuild warning/error strings localizable. #695
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
Conversation
brendanzagaeski
left a comment
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.
Looks good! I'll comment with just a few tiny wording ideas.
| </data> | ||
| <data name="JavaCallableWrappers_XA4203" xml:space="preserve"> | ||
| <value>The 'Name' property must be a fully qualified 'package.TypeName' value, and no package was found for '{0}'.</value> | ||
| <value>The 'Name' property must be a fully qualified type like 'com.example.MyClass' and no package was found for '{0}'.</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.
I believe it's fine to leave it as it is, but just to be excessively thorough, note that the English words example and My in com.example.MyClass will lose a tiny bit of special meaning in the translated versions of the message.
Although the Microsoft internal FAQ on fictitious names doesn't specifically mention example.com, I suspect that's because it's an even broader case that is accepted industry-wide (https://tools.ietf.org/html/rfc2606) and so doesn't require a specific mention in the FAQ.
Updates MSBuild warnings and errors in
Java.Interop.Tools.JavaCallableWrappersandJava.Interop.Tools.Cecilto be localizable, building on work done in #689.