Uh oh!
There was an error while loading. Please reload this page.
This repository was archived by the owner on Jul 6, 2026. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 64
[jcw-gen] Make MSBuild warning/error strings localizable.#695
Merged
Uh oh!
There was an error while loading. Please reload this page.
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading. Please reload this page.
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.
Oops, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -117,6 +117,10 @@ | ||
| <resheader name="writer"> | ||
| <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | ||
| </resheader> | ||
| <data name="CecilResolver_XA0009" xml:space="preserve"> | ||
| <value>Error while loading assembly: '{0}'.</value> | ||
| <comment>{0} - File name</comment> | ||
| </data> | ||
| <data name="Generator_BG4000" xml:space="preserve"> | ||
| <value>Failed to remove old constants: {0}.</value> | ||
| <comment>{0} - The list of constants that could not be removed. | ||
| @@ -287,4 +291,45 @@ The following terms should not be translated: Metadata.xml.</comment> | ||
| <value>For type '{0}', base interface '{1}' is invalid.</value> | ||
| <comment>{0}, {1} - .NET types.</comment> | ||
| </data> | ||
| <data name="JavaCallableWrappers_XA4200" xml:space="preserve"> | ||
| <value>Cannot generate Java wrapper for type '{0}'. Only 'class' types are supported.</value> | ||
| <comment>{0} - Java type. | ||
| The following terms should not be translated: | ||
| class.</comment> | ||
| </data> | ||
| <data name="JavaCallableWrappers_XA4201" xml:space="preserve"> | ||
| <value>Cannot determine JNI name for type '{0}'.</value> | ||
| <comment>{0} - Java type. | ||
| The following terms should not be translated: JNI.</comment> | ||
| </data> | ||
| <data name="JavaCallableWrappers_XA4203" xml:space="preserve"> | ||
| <value>The 'Name' property must be a fully qualified type like 'com.example.MyClass' and no package was found for '{0}'.</value> | ||
| <comment>{0} - Java type. | ||
| The following terms should not be translated: | ||
| Name, com.example.MyClass.</comment> | ||
| </data> | ||
| <data name="JavaCallableWrappers_XA4204" xml:space="preserve"> | ||
| <value>Unable to resolve interface type '{0}'. Are you missing an assembly reference?</value> | ||
| <comment>{0} - Java interface.</comment> | ||
| </data> | ||
| <data name="JavaCallableWrappers_XA4205" xml:space="preserve"> | ||
| <value>[ExportField] can only be used on methods with 0 parameters.</value> | ||
jpobst marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| <comment>The following terms should not be translated: [ExportField].</comment> | ||
| </data> | ||
| <data name="JavaCallableWrappers_XA4206" xml:space="preserve"> | ||
| <value>[Export] cannot be used on a generic type.</value> | ||
jpobst marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| <comment>The following terms should not be translated: [Export].</comment> | ||
| </data> | ||
| <data name="JavaCallableWrappers_XA4207" xml:space="preserve"> | ||
| <value>[ExportField] cannot be used on a generic type.</value> | ||
jpobst marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| <comment>The following terms should not be translated: [ExportField].</comment> | ||
| </data> | ||
| <data name="JavaCallableWrappers_XA4208" xml:space="preserve"> | ||
| <value>[ExportField] cannot be used on a method returning 'void'.</value> | ||
| <comment>The following terms should not be translated: [ExportField], void.</comment> | ||
| </data> | ||
| <data name="JavaCallableWrappers_XA4217" xml:space="preserve"> | ||
| <value>Cannot override Kotlin-generated method '{0}' because it is not a valid Java method name. This method can only be overridden from Kotlin.</value> | ||
| <comment>{0} - Kotlin method name.</comment> | ||
| </data> | ||
| </root> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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
exampleandMyincom.example.MyClasswill 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.