Skip to content

Commit c0a8b68

Browse files
authored
Merge pull request #3634 from MicrosoftDocs/Nava_updates
Update localization-api-control.md
2 parents 49ce77d + 70c29a7 commit c0a8b68

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

powerapps-docs/developer/component-framework/sample-controls/localization-api-control.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ author: Nkrb
1414

1515
This sample showcases how localization is done for code components. In this sample, we use the [Increment component](increment-control.md) to localize the text that is displayed on the increment button based on the user’s selected language.
1616

17-
Power Apps component framework uses the concept of implementing String(resx) web resources that is used to manage the localized strings shown on any user interface. More information: [String(Resx) Webresources](https://docs.microsoft.com/dynamics365/customer-engagement/developer/resx-web-resources). You can download the sample component from [here](https://github.com/microsoft/PowerApps-Samples/tree/master/component-framework/TS_LocalizationAPI).
17+
Power Apps component framework uses the concept of implementing String(resx) web resources that is used to manage the localized strings shown on any user interface. More information: [String(Resx) Web resources](https://docs.microsoft.com/dynamics365/customer-engagement/developer/resx-web-resources). You can download the sample component from [here](https://github.com/microsoft/PowerApps-Samples/tree/master/component-framework/TS_LocalizationAPI).
1818

1919
> [!div class="mx-imgBorder"]
2020
> ![Localization API component](../media/localization-api-control.png "Localization API component")
@@ -181,8 +181,8 @@ export class TSLocalizationAPI
181181
```xml
182182
<?xml version="1.0" encoding="utf-8"?>
183183
<root>
184-
<xsd:schema id="root" xmlns="" xmlns:xsd="https://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
185-
<xsd:import namespace="https://www.w3.org/XML/1998/namespace" />
184+
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
185+
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
186186
<xsd:element name="root" msdata:IsDataSet="true">
187187
<xsd:complexType>
188188
<xsd:choice maxOccurs="unbounded">
@@ -265,8 +265,8 @@ export class TSLocalizationAPI
265265
```xml
266266
<?xml version="1.0" encoding="utf-8"?>
267267
<root>
268-
<xsd:schema id="root" xmlns="" xmlns:xsd="https://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
269-
<xsd:import namespace="https://www.w3.org/XML/1998/namespace" />
268+
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
269+
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
270270
<xsd:element name="root" msdata:IsDataSet="true">
271271
<xsd:complexType>
272272
<xsd:choice maxOccurs="unbounded">
@@ -349,8 +349,8 @@ export class TSLocalizationAPI
349349
```xml
350350
<?xml version="1.0" encoding="utf-8"?>
351351
<root>
352-
<xsd:schema id="root" xmlns="" xmlns:xsd="https://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
353-
<xsd:import namespace="https://www.w3.org/XML/1998/namespace" />
352+
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
353+
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
354354
<xsd:element name="root" msdata:IsDataSet="true">
355355
<xsd:complexType>
356356
<xsd:choice maxOccurs="unbounded">

0 commit comments

Comments
 (0)