diff --git a/src/Java.Interop.Localization/Resources.Designer.cs b/src/Java.Interop.Localization/Resources.Designer.cs
index 851259ec4..2af9ac335 100644
--- a/src/Java.Interop.Localization/Resources.Designer.cs
+++ b/src/Java.Interop.Localization/Resources.Designer.cs
@@ -473,5 +473,113 @@ public static string JavaCallableWrappers_XA4217 {
return ResourceManager.GetString("JavaCallableWrappers_XA4217", resourceCulture);
}
}
+
+ ///
+ /// Looks up a localized string similar to Unable to preload reference '{0}'..
+ ///
+ public static string JniMarshalMethodGen_JM4001 {
+ get {
+ return ResourceManager.GetString("JniMarshalMethodGen_JM4001", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Please specify at least one ASSEMBLY to process..
+ ///
+ public static string JniMarshalMethodGen_JM4002 {
+ get {
+ return ResourceManager.GetString("JniMarshalMethodGen_JM4002", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unable to create Java VM{0}{1}.
+ ///
+ public static string JniMarshalMethodGen_JM4003 {
+ get {
+ return ResourceManager.GetString("JniMarshalMethodGen_JM4003", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unable to read profile file '{0}'.{1}{2}.
+ ///
+ public static string JniMarshalMethodGen_JM4004 {
+ get {
+ return ResourceManager.GetString("JniMarshalMethodGen_JM4004", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Path '{0}' does not exist..
+ ///
+ public static string JniMarshalMethodGen_JM4005 {
+ get {
+ return ResourceManager.GetString("JniMarshalMethodGen_JM4005", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unable to process assembly '{0}'{1}{2}{1}{3}.
+ ///
+ public static string JniMarshalMethodGen_JM4006 {
+ get {
+ return ResourceManager.GetString("JniMarshalMethodGen_JM4006", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Couln't find interface {0}.
+ ///
+ public static string JniMarshalMethodGen_JM8001 {
+ get {
+ return ResourceManager.GetString("JniMarshalMethodGen_JM8001", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Caught an exception while loading types. The types that cannot be loaded will not be processed. Make sure that any additional assembly references required for those types are provided using the -r option. Exception:{0}{1}.
+ ///
+ public static string JniMarshalMethodGen_JM8003 {
+ get {
+ return ResourceManager.GetString("JniMarshalMethodGen_JM8003", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unable to find type '{0}'. The type will not be processed. Make sure the directories for all referenced assemblies are provided with the -L option..
+ ///
+ public static string JniMarshalMethodGen_JM8004 {
+ get {
+ return ResourceManager.GetString("JniMarshalMethodGen_JM8004", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Marshal methods type '{0}' already exists. Skipped generation of marshal methods in assembly '{1}'. Use -f to force regeneration when desired..
+ ///
+ public static string JniMarshalMethodGen_JM8005 {
+ get {
+ return ResourceManager.GetString("JniMarshalMethodGen_JM8005", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unable to find definition of method '{0}' in assembly metadata. It will not be processed. Make sure the directories for all referenced assemblies are provided with the -L option..
+ ///
+ public static string JniMarshalMethodGen_JM8006 {
+ get {
+ return ResourceManager.GetString("JniMarshalMethodGen_JM8006", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unable to find the System.Console.WriteLine() method. Disabling debug injection. To enable debug injection, ensure the directory containing mscorlib is provided with the -L option..
+ ///
+ public static string JniMarshalMethodGen_JM8007 {
+ get {
+ return ResourceManager.GetString("JniMarshalMethodGen_JM8007", resourceCulture);
+ }
+ }
}
}
diff --git a/src/Java.Interop.Localization/Resources.resx b/src/Java.Interop.Localization/Resources.resx
index a6b1aafaf..c4a3843a0 100644
--- a/src/Java.Interop.Localization/Resources.resx
+++ b/src/Java.Interop.Localization/Resources.resx
@@ -332,4 +332,54 @@ Name, com.example.MyClass.
Cannot override Kotlin-generated method '{0}' because it is not a valid Java method name. This method can only be overridden from Kotlin.{0} - Kotlin method name.
+
+ Unable to preload reference '{0}'.
+ {0} - assembly path
+
+
+ Please specify at least one ASSEMBLY to process.
+ The following terms should not be translated or have any capitalization changes: ASSEMBLY. This is a special case for this particular message. In most messages, "assembly" would be translated.
+
+
+ Unable to create Java VM{0}{1}
+ {0} - newline, {1} - exception
+
+
+ Unable to read profile file '{0}'.{1}{2}
+ {0} - path, {1} - newline, {2} - exception. In this message, the term "profile" refers to a customized list of types to process.
+
+
+ Path '{0}' does not exist.
+ {0} - path
+
+
+ Unable to process assembly '{0}'{1}{2}{1}{3}
+ {0} - assembly, {1} - newline, {2} - exception message, {3} exception
+
+
+ Couln't find interface {0}
+ {0} - interface name
+
+
+ Caught an exception while loading types. The types that cannot be loaded will not be processed. Make sure that any additional assembly references required for those types are provided using the -r option. Exception:{0}{1}
+ {0} - newline, {1} - exception. The following terms should not be translated: -r
+
+
+ Unable to find type '{0}'. The type will not be processed. Make sure the directories for all referenced assemblies are provided with the -L option.
+ {0} - type
+The following terms should not be translated: -L
+
+
+ Marshal methods type '{0}' already exists. Skipped generation of marshal methods in assembly '{1}'. Use -f to force regeneration when desired.
+ {0} - type, {1} - assembly name. The following terms should not be translated: -f. In this message, the term "marshal methods" refers to methods that allow interaction between the managed methods and Java methods, similar to the methods of the .NET System.Runtime.InteropServices.Marshal class.
+
+
+ Unable to find definition of method '{0}' in assembly metadata. It will not be processed. Make sure the directories for all referenced assemblies are provided with the -L option.
+ {0} - method
+The following terms should not be translated: -L
+
+
+ Unable to find the System.Console.WriteLine() method. Disabling debug injection. To enable debug injection, ensure the directory containing mscorlib is provided with the -L option.
+ The following terms should not be translated: -L
+
\ No newline at end of file
diff --git a/src/Java.Interop.Localization/xlf/Resources.cs.xlf b/src/Java.Interop.Localization/xlf/Resources.cs.xlf
index d770d9206..091f627f7 100644
--- a/src/Java.Interop.Localization/xlf/Resources.cs.xlf
+++ b/src/Java.Interop.Localization/xlf/Resources.cs.xlf
@@ -263,6 +263,68 @@ Name, com.example.MyClass.
Cannot override Kotlin-generated method '{0}' because it is not a valid Java method name. This method can only be overridden from Kotlin.{0} - Kotlin method name.
+
+ Unable to preload reference '{0}'.
+ Unable to preload reference '{0}'.
+ {0} - assembly path
+
+
+ Please specify at least one ASSEMBLY to process.
+ Please specify at least one ASSEMBLY to process.
+ The following terms should not be translated or have any capitalization changes: ASSEMBLY. This is a special case for this particular message. In most messages, "assembly" would be translated.
+
+
+ Unable to create Java VM{0}{1}
+ Unable to create Java VM{0}{1}
+ {0} - newline, {1} - exception
+
+
+ Unable to read profile file '{0}'.{1}{2}
+ Unable to read profile file '{0}'.{1}{2}
+ {0} - path, {1} - newline, {2} - exception. In this message, the term "profile" refers to a customized list of types to process.
+
+
+ Path '{0}' does not exist.
+ Path '{0}' does not exist.
+ {0} - path
+
+
+ Unable to process assembly '{0}'{1}{2}{1}{3}
+ Unable to process assembly '{0}'{1}{2}{1}{3}
+ {0} - assembly, {1} - newline, {2} - exception message, {3} exception
+
+
+ Couln't find interface {0}
+ Couln't find interface {0}
+ {0} - interface name
+
+
+ Caught an exception while loading types. The types that cannot be loaded will not be processed. Make sure that any additional assembly references required for those types are provided using the -r option. Exception:{0}{1}
+ Caught an exception while loading types. The types that cannot be loaded will not be processed. Make sure that any additional assembly references required for those types are provided using the -r option. Exception:{0}{1}
+ {0} - newline, {1} - exception. The following terms should not be translated: -r
+
+
+ Unable to find type '{0}'. The type will not be processed. Make sure the directories for all referenced assemblies are provided with the -L option.
+ Unable to find type '{0}'. The type will not be processed. Make sure the directories for all referenced assemblies are provided with the -L option.
+ {0} - type
+The following terms should not be translated: -L
+
+
+ Marshal methods type '{0}' already exists. Skipped generation of marshal methods in assembly '{1}'. Use -f to force regeneration when desired.
+ Marshal methods type '{0}' already exists. Skipped generation of marshal methods in assembly '{1}'. Use -f to force regeneration when desired.
+ {0} - type, {1} - assembly name. The following terms should not be translated: -f. In this message, the term "marshal methods" refers to methods that allow interaction between the managed methods and Java methods, similar to the methods of the .NET System.Runtime.InteropServices.Marshal class.
+
+
+ Unable to find definition of method '{0}' in assembly metadata. It will not be processed. Make sure the directories for all referenced assemblies are provided with the -L option.
+ Unable to find definition of method '{0}' in assembly metadata. It will not be processed. Make sure the directories for all referenced assemblies are provided with the -L option.
+ {0} - method
+The following terms should not be translated: -L
+
+
+ Unable to find the System.Console.WriteLine() method. Disabling debug injection. To enable debug injection, ensure the directory containing mscorlib is provided with the -L option.
+ Unable to find the System.Console.WriteLine() method. Disabling debug injection. To enable debug injection, ensure the directory containing mscorlib is provided with the -L option.
+ The following terms should not be translated: -L
+