Skip to content

Commit 0342fe5

Browse files
brendanzagaeskijonpryor
authored andcommittedDec 7, 2019
[Xamarin.Android.Build.Tasks] Move XA4214 warning text into .resx file (#3900)
Context: https://dev.azure.com/devdiv/DevDiv/_workitems/edit/1009374/ This is a first step toward localizing the MSBuild error and warning messages produced by `Xamarin.Android.Build.Tasks.dll`. We will be following the [.NET Resource Localization pattern][0] and generating satellite assemblies using [`.resx` files][1], in particular `src/Xamarin.Android.Build.Tasks/Properties/Resources.resx`. `Resources.resx` is an XML file, and will contain `/root/data` elements in which `//data/@name` will start with the Xamarin.Android error or warning code, and `//data/value` will be the error or warning message: <root> <data name="XA4214" xml:space="preserve"> <value>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</value> </data> </root> An optional `//data/comment` element may be provided to describe the meaning within the `//data/value` element to translators: <data name="XA4214" xml:space="preserve"> <value>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</value> <comment> {0} - The managed type name {1} - Comma-separated list of all the assemblies where the managed type exists </comment> </data> During the build, `Resources.resx` will be translated into a `Resources.Designer.cs` file: namespace Xamarin.Android.Tasks.Properties { internal partial class Resources { internal static string XA4214 { get => ... } } } The `Resources` members should be used to obtain all strings for use in `LogCodedError()` and `LogCodedWarning()` calls: Log.LogCodedWarning ("XA4214", Properties.Resources.XA4214, kvp.Key, string.Join (", ", kvp.Value)); When an MSBuild error or warning code is used with more than one output string, then a semantically meaningful suffix should be used to distinguish between the two: <data name="XA4214_Result" xml:space="preserve"> <value>References to the type `{0}` will refer to `{0}, {1}`.</value> </data> Note that this infrastructure does not interoperate with C#6 string interpolation. Any error or warning messages currently using C#6 string interpolation will need to use .NET 1.0-style format strings. Our translation team doesn't work directly with `.resx` files. Instead, the translation team works with [XLIFF files][2]. `Resources.resx` is converted into a set of `src/Xamarin.Android.Build.Tasks/Properties/xlf/Resources.*.xlf` files via `XliffTasks.targets` from the [dotnet/xliff-tasks][3] repo. The `Resources.*.xlf` files should be automatically updated whenever `Resources.resx` is updated. Other: * This approach leaves the error code `XA4214` as a string literal for now. This differs from what dotnet/sdk and microsoft/msbuild do; they instead include the message code as part of the string resource in the `.resx` file. That might sometimes provide useful additional context for the translation team, but it also requires using a different set of logging methods from `Microsoft.Build.Utilities.TaskLoggingHelper`. * Fix the Test MSBuild Azure Pipelines build Specify the `feedsToUse` and `nugetConfigPath` inputs for the [`NuGetCommand@2`][6] Azure Pipelines task so that the NuGet restore step will be able to restore XliffTasks successfully from the dotnet-eng Azure DevOps NuGet package feed. This resolves the following error: The nuget command failed with exit code(1) and error(Errors in packages.config projects Unable to find version '1.0.0-beta.19252.1' of package 'XliffTasks'. C:\Users\dlab14\.nuget\packages\: Package 'XliffTasks.1.0.0-beta.19252.1' is not found on source 'C:\Users\dlab14\.nuget\packages\'. https://api.nuget.org/v3/index.json: Package 'XliffTasks.1.0.0-beta.19252.1' is not found on source 'https://api.nuget.org/v3/index.json'.) TODO: * When `Xamarin.Android.Build.Tasks.csproj` is converted into a [short-form project][4], add a dependency on dotnet/arcade and switch to using the [`GenerateResxSource` mechanism][5] instead of using `%(EmbeddedResource.Generator)`=ResXFileCodeGenerator and set `$(UsingToolXliff)`=True. This would match dotnet/sdk. [0]: https://docs.microsoft.com/dotnet/framework/resources/index [1]: https://docs.microsoft.com/dotnet/framework/resources/creating-resource-files-for-desktop-apps#resources-in-resx-files [2]: http://docs.oasis-open.org/xliff/v1.2/os/xliff-core.html [3]: https://github.com/dotnet/xliff-tasks [4]: https://docs.microsoft.com/visualstudio/msbuild/how-to-use-project-sdk [5]: https://github.com/dotnet/arcade/blob/e67d9f098029ebecedf11012a749b532d68ad2a9/Documentation/ArcadeSdk.md#generateresxsource-bool [6]: https://docs.microsoft.com/azure/devops/pipelines/tasks/package/nuget
1 parent eff77a4 commit 0342fe5

27 files changed

+582
-7
lines changed
 

‎.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
*.Designer.cs eol=crlf
2020

2121
*.cs text
22+
*.resx text
23+
*.xlf text
2224
*.xml text
2325
*.md text
2426
Makefile eol=lf

‎Configuration.props

+5
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,11 @@
175175
<RemapAssemblyRefTool>$(ManagedRuntime) $(ManagedRuntimeArgs) &quot;$(RemapAssemblyRefToolExecutable)&quot;</RemapAssemblyRefTool>
176176
</PropertyGroup>
177177

178+
<PropertyGroup>
179+
<XlfLanguages>cs;de;es;fr;it;ja;ko;pl;pt-BR;ru;tr;zh-Hans;zh-Hant</XlfLanguages>
180+
<UpdateXlfOnBuild Condition="'$(RunningOnCI)' != 'true'">true</UpdateXlfOnBuild>
181+
</PropertyGroup>
182+
178183
<!-- Unit Test Properties -->
179184
<PropertyGroup>
180185
<_Runtime Condition=" '$(HostOS)' != 'Windows' ">$(ManagedRuntime) $(ManagedRuntimeArgs)</_Runtime>

‎Documentation/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
* [Using Your Build](workflow/UsingYourBuild.md)
4040
* [Jenkins Build Artifacts](workflow/JenkinsBuildArtifacts.md)
4141
* [Development tips and native debugging](workflow/DevelopmentTips.md)
42+
* [Localization](workflow/Localization.md)
4243

4344

4445
# Coding Guidelines
10.9 KB
Loading
+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# Localization
2+
3+
All new Xamarin.Android MSBuild error or warning messages should be localizable,
4+
so when adding a new message, follow these steps:
5+
6+
1. Add the new message to
7+
`src/Xamarin.Android.Build.Tasks/Properties/Resources.resx`. Use the error
8+
or warning code as the resource name. For example, for `XA0000`, use
9+
`XA0000` as the name:
10+
11+
![Managed Resources Editor with XA0000 as the name for a
12+
resource][resources-editor]
13+
14+
Be sure to use Visual Studio or Visual Studio for Mac to edit the `.resx`
15+
file so that the `ResXFileCodeGenerator` tool will run and update the
16+
corresponding `Resources.Designer.cs` file.
17+
18+
2. Use the generated property from `Resources.Designer.cs` in the
19+
`LogCodedError()` and `LogCodedWarning()` calls:
20+
21+
```csharp
22+
Log.LogCodedError ("XA0000", Properties.Resources.XA0000);
23+
```
24+
25+
3. After adding the new message, build `Xamarin.Android.Build.Tasks.csproj`
26+
locally. This will run the targets from [dotnet/xliff-tasks][xliff-tasks]
27+
to update the `.xlf` [XLIFF][xliff] localization files with the latest
28+
changes from the `.resx` file.
29+
30+
4. Include the changes to the`.resx` file as well as the generated changes to
31+
the `Resources.Designer.cs` file and the `.xlf` files in the commit.
32+
33+
## Guidelines
34+
35+
* When an error or warning code is used with more than one output string, use
36+
semantically meaningful suffixes to distinguish the resource names. As a
37+
made-up example:
38+
39+
```xml
40+
<data name="XA0000_Files" xml:space="preserve">
41+
<value>Invalid files.</value>
42+
</data>
43+
<data name="XA0000_Directories" xml:space="preserve">
44+
<value>Invalid directories.</value>
45+
</data>
46+
```
47+
48+
* To include values of variables in the message, use numbered format items
49+
like `{0}` and `{1}` rather than string interpolation or string
50+
concatenation.
51+
52+
The `.resx` infrastructure does not interoperate with C# 6 string
53+
interpolation.
54+
55+
String concatenation should also be avoided because it means splitting up
56+
the message across multiple string resources, which makes it more
57+
complicated to provide appropriate context to the translators.
58+
59+
* Use the comments field in the `.resx` file to provide additional context to
60+
the translators. For example, if a format item like `{0}` needs additional
61+
explanation, add a comment:
62+
63+
```
64+
{0} - The managed type name
65+
```
66+
67+
For a few more examples, see the dotnet/sdk repo:
68+
69+
https://github.com/dotnet/sdk/blob/master/src/Tasks/Common/Resources/Strings.resx
70+
71+
[resources-editor]: ../images/resources-editor-xa0000.png
72+
[xliff-tasks]: https://github.com/dotnet/xliff-tasks
73+
[xliff]: http://docs.oasis-open.org/xliff/v1.2/os/xliff-core.html

‎NuGet.config

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<packageSources>
44
<clear />
55
<!-- ensure only the sources defined below are used -->
6+
<add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" protocolVersion="3" />
67
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
78
</packageSources>
89
</configuration>

‎build-tools/automation/yaml-templates/setup-test-environment.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ steps:
3737
displayName: nuget restore Xamarin.Android solutions
3838
inputs:
3939
restoreSolution: '**/Xamarin.Android*.sln'
40+
feedsToUse: config
41+
nugetConfigPath: NuGet.config
4042

4143
- task: MSBuild@1
4244
displayName: build Xamarin.Android.Tools.BootstrapTasks.csproj

‎build-tools/installers/create-installers.targets

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="..\scripts\XAVersionInfo.targets" />
4+
<Import Project="..\scripts\LocalizationLanguages.projitems" />
45
<Import Project="..\..\bin\Build$(Configuration)\ProfileAssemblies.projitems" />
56
<Import Project="..\..\bin\Build$(Configuration)\Mono.Android.Apis.projitems" />
67
<UsingTask AssemblyFile="..\..\bin\Build$(Configuration)\xa-prep-tasks.dll" TaskName="Xamarin.Android.BuildTools.PrepTasks.ReplaceFileContents" />
@@ -195,6 +196,7 @@
195196
<_MSBuildFiles Include="$(MSBuildSrcDir)\Xamarin.Android.Bindings.targets" />
196197
<_MSBuildFiles Include="$(MSBuildSrcDir)\Xamarin.Android.Build.Tasks.dll" />
197198
<_MSBuildFiles Include="$(MSBuildSrcDir)\Xamarin.Android.Build.Tasks.pdb" />
199+
<_MSBuildFiles Include="@(_LocalizationLanguages->'$(MSBuildSrcDir)\%(Identity)\Xamarin.Android.Build.Tasks.resources.dll')" />
198200
<_MSBuildFiles Include="$(MSBuildSrcDir)\Xamarin.Android.BuildInfo.txt" />
199201
<_MSBuildFiles Include="$(MSBuildSrcDir)\Xamarin.Android.Cecil.dll" />
200202
<_MSBuildFiles Include="$(MSBuildSrcDir)\Xamarin.Android.Cecil.pdb" />
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<ItemGroup>
3+
<_LocalizationLanguages Include="$(XlfLanguages)" />
4+
</ItemGroup>
5+
</Project>

‎src/Xamarin.Android.Build.Tasks/Properties/Resources.Designer.cs

+81
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<root>
3+
<!--
4+
Microsoft ResX Schema
5+
6+
Version 2.0
7+
8+
The primary goals of this format is to allow a simple XML format
9+
that is mostly human readable. The generation and parsing of the
10+
various data types are done through the TypeConverter classes
11+
associated with the data types.
12+
13+
Example:
14+
15+
... ado.net/XML headers & schema ...
16+
<resheader name="resmimetype">text/microsoft-resx</resheader>
17+
<resheader name="version">2.0</resheader>
18+
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
19+
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
20+
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
21+
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
22+
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
23+
<value>[base64 mime encoded serialized .NET Framework object]</value>
24+
</data>
25+
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
26+
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
27+
<comment>This is a comment</comment>
28+
</data>
29+
30+
There are any number of "resheader" rows that contain simple
31+
name/value pairs.
32+
33+
Each data row contains a name, and value. The row also contains a
34+
type or mimetype. Type corresponds to a .NET class that support
35+
text/value conversion through the TypeConverter architecture.
36+
Classes that don't support this are serialized and stored with the
37+
mimetype set.
38+
39+
The mimetype is used for serialized objects, and tells the
40+
ResXResourceReader how to depersist the object. This is currently not
41+
extensible. For a given mimetype the value must be set accordingly:
42+
43+
Note - application/x-microsoft.net.object.binary.base64 is the format
44+
that the ResXResourceWriter will generate, however the reader can
45+
read any of the formats listed below.
46+
47+
mimetype: application/x-microsoft.net.object.binary.base64
48+
value : The object must be serialized with
49+
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
50+
: and then encoded with base64 encoding.
51+
52+
mimetype: application/x-microsoft.net.object.soap.base64
53+
value : The object must be serialized with
54+
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
55+
: and then encoded with base64 encoding.
56+
57+
mimetype: application/x-microsoft.net.object.bytearray.base64
58+
value : The object must be serialized into a byte array
59+
: using a System.ComponentModel.TypeConverter
60+
: and then encoded with base64 encoding.
61+
-->
62+
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
63+
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
64+
<xsd:element name="root" msdata:IsDataSet="true">
65+
<xsd:complexType>
66+
<xsd:choice maxOccurs="unbounded">
67+
<xsd:element name="metadata">
68+
<xsd:complexType>
69+
<xsd:sequence>
70+
<xsd:element name="value" type="xsd:string" minOccurs="0" />
71+
</xsd:sequence>
72+
<xsd:attribute name="name" use="required" type="xsd:string" />
73+
<xsd:attribute name="type" type="xsd:string" />
74+
<xsd:attribute name="mimetype" type="xsd:string" />
75+
<xsd:attribute ref="xml:space" />
76+
</xsd:complexType>
77+
</xsd:element>
78+
<xsd:element name="assembly">
79+
<xsd:complexType>
80+
<xsd:attribute name="alias" type="xsd:string" />
81+
<xsd:attribute name="name" type="xsd:string" />
82+
</xsd:complexType>
83+
</xsd:element>
84+
<xsd:element name="data">
85+
<xsd:complexType>
86+
<xsd:sequence>
87+
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
88+
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
89+
</xsd:sequence>
90+
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
91+
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
92+
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
93+
<xsd:attribute ref="xml:space" />
94+
</xsd:complexType>
95+
</xsd:element>
96+
<xsd:element name="resheader">
97+
<xsd:complexType>
98+
<xsd:sequence>
99+
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
100+
</xsd:sequence>
101+
<xsd:attribute name="name" type="xsd:string" use="required" />
102+
</xsd:complexType>
103+
</xsd:element>
104+
</xsd:choice>
105+
</xsd:complexType>
106+
</xsd:element>
107+
</xsd:schema>
108+
<resheader name="resmimetype">
109+
<value>text/microsoft-resx</value>
110+
</resheader>
111+
<resheader name="version">
112+
<value>2.0</value>
113+
</resheader>
114+
<resheader name="reader">
115+
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
116+
</resheader>
117+
<resheader name="writer">
118+
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119+
</resheader>
120+
<data name="XA4214" xml:space="preserve">
121+
<value>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</value>
122+
<comment>{0} - The managed type name
123+
{1} - Comma-separated list of all the assemblies where the managed type exists</comment>
124+
</data>
125+
<data name="XA4214_Result" xml:space="preserve">
126+
<value>References to the type `{0}` will refer to `{0}, {1}`.</value>
127+
<comment>The phrase "`{0}, {1}`" does not need to be translated.
128+
{0} - The managed type name
129+
{1} - The the name of the library that contains the type</comment>
130+
</data>
131+
</root>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
3+
<file datatype="xml" source-language="en" target-language="cs" original="../Resources.resx">
4+
<body>
5+
<trans-unit id="XA4214">
6+
<source>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</source>
7+
<target state="new">The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</target>
8+
<note>{0} - The managed type name
9+
{1} - Comma-separated list of all the assemblies where the managed type exists</note>
10+
</trans-unit>
11+
<trans-unit id="XA4214_Result">
12+
<source>References to the type `{0}` will refer to `{0}, {1}`.</source>
13+
<target state="new">References to the type `{0}` will refer to `{0}, {1}`.</target>
14+
<note>The phrase "`{0}, {1}`" does not need to be translated.
15+
{0} - The managed type name
16+
{1} - The the name of the library that contains the type</note>
17+
</trans-unit>
18+
</body>
19+
</file>
20+
</xliff>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
3+
<file datatype="xml" source-language="en" target-language="de" original="../Resources.resx">
4+
<body>
5+
<trans-unit id="XA4214">
6+
<source>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</source>
7+
<target state="new">The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</target>
8+
<note>{0} - The managed type name
9+
{1} - Comma-separated list of all the assemblies where the managed type exists</note>
10+
</trans-unit>
11+
<trans-unit id="XA4214_Result">
12+
<source>References to the type `{0}` will refer to `{0}, {1}`.</source>
13+
<target state="new">References to the type `{0}` will refer to `{0}, {1}`.</target>
14+
<note>The phrase "`{0}, {1}`" does not need to be translated.
15+
{0} - The managed type name
16+
{1} - The the name of the library that contains the type</note>
17+
</trans-unit>
18+
</body>
19+
</file>
20+
</xliff>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
3+
<file datatype="xml" source-language="en" target-language="es" original="../Resources.resx">
4+
<body>
5+
<trans-unit id="XA4214">
6+
<source>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</source>
7+
<target state="new">The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</target>
8+
<note>{0} - The managed type name
9+
{1} - Comma-separated list of all the assemblies where the managed type exists</note>
10+
</trans-unit>
11+
<trans-unit id="XA4214_Result">
12+
<source>References to the type `{0}` will refer to `{0}, {1}`.</source>
13+
<target state="new">References to the type `{0}` will refer to `{0}, {1}`.</target>
14+
<note>The phrase "`{0}, {1}`" does not need to be translated.
15+
{0} - The managed type name
16+
{1} - The the name of the library that contains the type</note>
17+
</trans-unit>
18+
</body>
19+
</file>
20+
</xliff>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
3+
<file datatype="xml" source-language="en" target-language="fr" original="../Resources.resx">
4+
<body>
5+
<trans-unit id="XA4214">
6+
<source>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</source>
7+
<target state="new">The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</target>
8+
<note>{0} - The managed type name
9+
{1} - Comma-separated list of all the assemblies where the managed type exists</note>
10+
</trans-unit>
11+
<trans-unit id="XA4214_Result">
12+
<source>References to the type `{0}` will refer to `{0}, {1}`.</source>
13+
<target state="new">References to the type `{0}` will refer to `{0}, {1}`.</target>
14+
<note>The phrase "`{0}, {1}`" does not need to be translated.
15+
{0} - The managed type name
16+
{1} - The the name of the library that contains the type</note>
17+
</trans-unit>
18+
</body>
19+
</file>
20+
</xliff>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
3+
<file datatype="xml" source-language="en" target-language="it" original="../Resources.resx">
4+
<body>
5+
<trans-unit id="XA4214">
6+
<source>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</source>
7+
<target state="new">The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</target>
8+
<note>{0} - The managed type name
9+
{1} - Comma-separated list of all the assemblies where the managed type exists</note>
10+
</trans-unit>
11+
<trans-unit id="XA4214_Result">
12+
<source>References to the type `{0}` will refer to `{0}, {1}`.</source>
13+
<target state="new">References to the type `{0}` will refer to `{0}, {1}`.</target>
14+
<note>The phrase "`{0}, {1}`" does not need to be translated.
15+
{0} - The managed type name
16+
{1} - The the name of the library that contains the type</note>
17+
</trans-unit>
18+
</body>
19+
</file>
20+
</xliff>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
3+
<file datatype="xml" source-language="en" target-language="ja" original="../Resources.resx">
4+
<body>
5+
<trans-unit id="XA4214">
6+
<source>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</source>
7+
<target state="new">The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</target>
8+
<note>{0} - The managed type name
9+
{1} - Comma-separated list of all the assemblies where the managed type exists</note>
10+
</trans-unit>
11+
<trans-unit id="XA4214_Result">
12+
<source>References to the type `{0}` will refer to `{0}, {1}`.</source>
13+
<target state="new">References to the type `{0}` will refer to `{0}, {1}`.</target>
14+
<note>The phrase "`{0}, {1}`" does not need to be translated.
15+
{0} - The managed type name
16+
{1} - The the name of the library that contains the type</note>
17+
</trans-unit>
18+
</body>
19+
</file>
20+
</xliff>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
3+
<file datatype="xml" source-language="en" target-language="ko" original="../Resources.resx">
4+
<body>
5+
<trans-unit id="XA4214">
6+
<source>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</source>
7+
<target state="new">The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</target>
8+
<note>{0} - The managed type name
9+
{1} - Comma-separated list of all the assemblies where the managed type exists</note>
10+
</trans-unit>
11+
<trans-unit id="XA4214_Result">
12+
<source>References to the type `{0}` will refer to `{0}, {1}`.</source>
13+
<target state="new">References to the type `{0}` will refer to `{0}, {1}`.</target>
14+
<note>The phrase "`{0}, {1}`" does not need to be translated.
15+
{0} - The managed type name
16+
{1} - The the name of the library that contains the type</note>
17+
</trans-unit>
18+
</body>
19+
</file>
20+
</xliff>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
3+
<file datatype="xml" source-language="en" target-language="pl" original="../Resources.resx">
4+
<body>
5+
<trans-unit id="XA4214">
6+
<source>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</source>
7+
<target state="new">The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</target>
8+
<note>{0} - The managed type name
9+
{1} - Comma-separated list of all the assemblies where the managed type exists</note>
10+
</trans-unit>
11+
<trans-unit id="XA4214_Result">
12+
<source>References to the type `{0}` will refer to `{0}, {1}`.</source>
13+
<target state="new">References to the type `{0}` will refer to `{0}, {1}`.</target>
14+
<note>The phrase "`{0}, {1}`" does not need to be translated.
15+
{0} - The managed type name
16+
{1} - The the name of the library that contains the type</note>
17+
</trans-unit>
18+
</body>
19+
</file>
20+
</xliff>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
3+
<file datatype="xml" source-language="en" target-language="pt-BR" original="../Resources.resx">
4+
<body>
5+
<trans-unit id="XA4214">
6+
<source>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</source>
7+
<target state="new">The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</target>
8+
<note>{0} - The managed type name
9+
{1} - Comma-separated list of all the assemblies where the managed type exists</note>
10+
</trans-unit>
11+
<trans-unit id="XA4214_Result">
12+
<source>References to the type `{0}` will refer to `{0}, {1}`.</source>
13+
<target state="new">References to the type `{0}` will refer to `{0}, {1}`.</target>
14+
<note>The phrase "`{0}, {1}`" does not need to be translated.
15+
{0} - The managed type name
16+
{1} - The the name of the library that contains the type</note>
17+
</trans-unit>
18+
</body>
19+
</file>
20+
</xliff>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
3+
<file datatype="xml" source-language="en" target-language="ru" original="../Resources.resx">
4+
<body>
5+
<trans-unit id="XA4214">
6+
<source>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</source>
7+
<target state="new">The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</target>
8+
<note>{0} - The managed type name
9+
{1} - Comma-separated list of all the assemblies where the managed type exists</note>
10+
</trans-unit>
11+
<trans-unit id="XA4214_Result">
12+
<source>References to the type `{0}` will refer to `{0}, {1}`.</source>
13+
<target state="new">References to the type `{0}` will refer to `{0}, {1}`.</target>
14+
<note>The phrase "`{0}, {1}`" does not need to be translated.
15+
{0} - The managed type name
16+
{1} - The the name of the library that contains the type</note>
17+
</trans-unit>
18+
</body>
19+
</file>
20+
</xliff>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
3+
<file datatype="xml" source-language="en" target-language="tr" original="../Resources.resx">
4+
<body>
5+
<trans-unit id="XA4214">
6+
<source>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</source>
7+
<target state="new">The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</target>
8+
<note>{0} - The managed type name
9+
{1} - Comma-separated list of all the assemblies where the managed type exists</note>
10+
</trans-unit>
11+
<trans-unit id="XA4214_Result">
12+
<source>References to the type `{0}` will refer to `{0}, {1}`.</source>
13+
<target state="new">References to the type `{0}` will refer to `{0}, {1}`.</target>
14+
<note>The phrase "`{0}, {1}`" does not need to be translated.
15+
{0} - The managed type name
16+
{1} - The the name of the library that contains the type</note>
17+
</trans-unit>
18+
</body>
19+
</file>
20+
</xliff>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
3+
<file datatype="xml" source-language="en" target-language="zh-Hans" original="../Resources.resx">
4+
<body>
5+
<trans-unit id="XA4214">
6+
<source>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</source>
7+
<target state="new">The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</target>
8+
<note>{0} - The managed type name
9+
{1} - Comma-separated list of all the assemblies where the managed type exists</note>
10+
</trans-unit>
11+
<trans-unit id="XA4214_Result">
12+
<source>References to the type `{0}` will refer to `{0}, {1}`.</source>
13+
<target state="new">References to the type `{0}` will refer to `{0}, {1}`.</target>
14+
<note>The phrase "`{0}, {1}`" does not need to be translated.
15+
{0} - The managed type name
16+
{1} - The the name of the library that contains the type</note>
17+
</trans-unit>
18+
</body>
19+
</file>
20+
</xliff>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
3+
<file datatype="xml" source-language="en" target-language="zh-Hant" original="../Resources.resx">
4+
<body>
5+
<trans-unit id="XA4214">
6+
<source>The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</source>
7+
<target state="new">The managed type `{0}` exists in multiple assemblies: {1}. Please refactor the managed type names in these assemblies so that they are not identical.</target>
8+
<note>{0} - The managed type name
9+
{1} - Comma-separated list of all the assemblies where the managed type exists</note>
10+
</trans-unit>
11+
<trans-unit id="XA4214_Result">
12+
<source>References to the type `{0}` will refer to `{0}, {1}`.</source>
13+
<target state="new">References to the type `{0}` will refer to `{0}, {1}`.</target>
14+
<note>The phrase "`{0}, {1}`" does not need to be translated.
15+
{0} - The managed type name
16+
{1} - The the name of the library that contains the type</note>
17+
</trans-unit>
18+
</body>
19+
</file>
20+
</xliff>

‎src/Xamarin.Android.Build.Tasks/Tasks/GenerateJavaStubs.cs

+2-7
Original file line numberDiff line numberDiff line change
@@ -220,13 +220,8 @@ void Run (DirectoryAssemblyResolver res)
220220
}
221221

222222
foreach (var kvp in managedConflicts) {
223-
Log.LogCodedWarning (
224-
"XA4214",
225-
"The managed type `{0}` exists in multiple assemblies: {1}. " +
226-
"Please refactor the managed type names in these assemblies so that they are not identical.",
227-
kvp.Key,
228-
string.Join (", ", kvp.Value));
229-
Log.LogCodedWarning ("XA4214", "References to the type `{0}` will refer to `{0}, {1}`.", kvp.Key, kvp.Value [0]);
223+
Log.LogCodedWarning ("XA4214", Properties.Resources.XA4214, kvp.Key, string.Join (", ", kvp.Value));
224+
Log.LogCodedWarning ("XA4214", Properties.Resources.XA4214_Result, kvp.Key, kvp.Value [0]);
230225
}
231226

232227
foreach (var kvp in javaConflicts) {

‎src/Xamarin.Android.Build.Tasks/Xamarin.Android.Build.Tasks.csproj

+16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="..\..\packages\Xamarin.Build.AsyncTask.0.3.4\build\Xamarin.Build.AsyncTask.props" Condition="Exists('..\..\packages\Xamarin.Build.AsyncTask.0.3.4\build\Xamarin.Build.AsyncTask.props')" />
4+
<Import Project="..\..\packages\XliffTasks.1.0.0-beta.19252.1\build\XliffTasks.props" Condition="Exists('..\..\packages\XliffTasks.1.0.0-beta.19252.1\build\XliffTasks.props')" />
45
<PropertyGroup>
56
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
67
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -16,6 +17,7 @@
1617
<DebugSymbols>True</DebugSymbols>
1718
</PropertyGroup>
1819
<Import Project="..\..\Configuration.props" />
20+
<Import Project="..\..\build-tools\scripts\LocalizationLanguages.projitems" />
1921
<Import Project="..\..\build-tools\scripts\MSBuildReferences.projitems" />
2022
<Import Project="..\Xamarin.Android.NamingCustomAttributes\Xamarin.Android.NamingCustomAttributes.projitems" Label="Shared" Condition="Exists('..\Xamarin.Android.NamingCustomAttributes\Xamarin.Android.NamingCustomAttributes.projitems')" />
2123
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
@@ -186,6 +188,11 @@
186188
<Compile Include="Tasks\AndroidToolTask.cs" />
187189
<Compile Include="Tasks\PrepareAbiItems.cs" />
188190
<Compile Include="Properties\AssemblyInfo.cs" />
191+
<Compile Include="Properties\Resources.Designer.cs">
192+
<AutoGen>True</AutoGen>
193+
<DesignTime>True</DesignTime>
194+
<DependentUpon>Resources.resx</DependentUpon>
195+
</Compile>
189196
<Compile Include="Mono.Android\ApplicationAttribute.Partial.cs" />
190197
<Compile Include="Mono.Android\BroadcastReceiverAttribute.Partial.cs" />
191198
<Compile Include="Mono.Android\ActivityAttribute.Partial.cs" />
@@ -592,6 +599,14 @@
592599
<Compile Include="Tasks\GetAndroidActivityName.cs" />
593600
<Compile Include="Tasks\ManifestMerger.cs" />
594601
</ItemGroup>
602+
<ItemGroup>
603+
<EmbeddedResource Include="Properties\Resources.resx">
604+
<Generator>ResXFileCodeGenerator</Generator>
605+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
606+
<SubType>Designer</SubType>
607+
</EmbeddedResource>
608+
<None Include="@(_LocalizationLanguages->'Properties\xlf\Resources.%(Identity).xlf')" />
609+
</ItemGroup>
595610
<ItemGroup>
596611
<_MonoAndroidEnum Include="$(AndroidGeneratedClassDirectory)\Android.Content.PM.LaunchMode.cs" />
597612
<_MonoAndroidEnum Include="$(AndroidGeneratedClassDirectory)\Android.Content.PM.ScreenOrientation.cs" />
@@ -761,4 +776,5 @@
761776
</ItemGroup>
762777
<Import Project="ILRepack.targets" />
763778
<Import Project="..\..\packages\Xamarin.LibZipSharp.1.0.6\build\Xamarin.LibZipSharp.targets" Condition="Exists('..\..\packages\Xamarin.LibZipSharp.1.0.6\build\Xamarin.LibZipSharp.targets')" />
779+
<Import Project="..\..\packages\XliffTasks.1.0.0-beta.19252.1\build\XliffTasks.targets" Condition="Exists('..\..\packages\XliffTasks.1.0.0-beta.19252.1\build\XliffTasks.targets')" />
764780
</Project>

‎src/Xamarin.Android.Build.Tasks/packages.config

+1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@
2626
<package id="System.Runtime.InteropServices" version="4.3.0" targetFramework="net462" />
2727
<package id="Xamarin.Build.AsyncTask" version="0.3.4" targetFramework="net472" />
2828
<package id="Xamarin.LibZipSharp" version="1.0.6" targetFramework="net472" />
29+
<package id="XliffTasks" version="1.0.0-beta.19252.1" targetFramework="net472" />
2930
</packages>

0 commit comments

Comments
 (0)
Please sign in to comment.