<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Get Route result in different Language in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/get-route-result-in-different-language/m-p/435452#M5270</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For some reason on 100.0 it didnt work, upgrade to 100.1 now make it work&lt;/P&gt;&lt;P&gt;and today 100.2 realsed so i will test also on that &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Dec 2017 07:12:32 GMT</pubDate>
    <dc:creator>ShaharBukra</dc:creator>
    <dc:date>2017-12-19T07:12:32Z</dc:date>
    <item>
      <title>Get Route result in different Language</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/get-route-result-in-different-language/m-p/435450#M5268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I've used this demo&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://github.com/Esri/arcgis-runtime-demos-dotnet/tree/master/src/TurnByTurn" title="https://github.com/Esri/arcgis-runtime-demos-dotnet/tree/master/src/TurnByTurn"&gt;arcgis-runtime-demos-dotnet/src/TurnByTurn at master · Esri/arcgis-runtime-demos-dotnet · GitHub&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i modified it to work locally, with VPTK as basemap and local locators and Network Dataset,&lt;BR /&gt;all work well except 1 thing,&lt;BR /&gt;how do i change the language of the network result to be in hebrew&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P style="text-align: left;"&gt;var parameters = await task.CreateDefaultParametersAsync().ConfigureAwait(false);&lt;BR /&gt; parameters.SetStops(stopList);&lt;BR /&gt; parameters.ReturnStops = true;&lt;BR /&gt; parameters.ReturnDirections = true;&lt;BR /&gt; &lt;STRONG&gt;parameters.DirectionsLanguage = "he";&lt;/STRONG&gt;&lt;BR /&gt; parameters.RouteShapeType = RouteShapeType.TrueShapeWithMeasures;&lt;BR /&gt; parameters.OutputSpatialReference = SpatialReferences.Wgs84;&lt;BR /&gt; parameters.DirectionsDistanceUnits = Esri.ArcGISRuntime.UnitSystem.Metric;&lt;BR /&gt; parameters.StartTime = DateTime.UtcNow;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6;"&gt;try to use DirectionsLanguage&lt;SPAN&gt;&amp;nbsp;with the values "he" or "he-IL" didnt work for me.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6;"&gt;&lt;SPAN&gt;i have the resources.xml file already localized to hebrew and tried to put it inside&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6;"&gt;&lt;SPAN&gt;C:\Program Files (x86)\ArcGIS\Desktop10.5\NetworkAnalyst\Directions\he&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;do i need to put in different place?&lt;BR /&gt;it supposed to be offline navigation app, the client will not have ArcMap install on their local machine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6;"&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f6f6f6;"&gt;&lt;SPAN&gt;Shahar.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Dec 2017 11:44:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/get-route-result-in-different-language/m-p/435450#M5268</guid>
      <dc:creator>ShaharBukra</dc:creator>
      <dc:date>2017-12-10T11:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: Get Route result in different Language</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/get-route-result-in-different-language/m-p/435451#M5269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Setting &lt;STRONG&gt;parameters.DirectionsLanguage&lt;/STRONG&gt; is the only code needed to get route directions in&amp;nbsp;a non-English language. So I'm not sure why this isn't working for you. Could you give a little more info on your app? Is this WPF? What version of ArcGIS Runtime?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that ArcGIS Runtime doesn't use the same localization mechanism used by ArcGIS Desktop so there's no need to copy your localized resources to the ArcGIS Desktop path. With ArcGIS Runtime, the localized direction string resources will be deployed with your application automatically (be default) as satellite resource assemblies. After you build your application you should see a list of language folders beside your application executable ('he' should be one of them) that contain a single satellite resource DLL. Do you see these folders being deployed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tested this locally and I can get Hebrew direction strings so I'm confident we can get this to work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2017 21:57:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/get-route-result-in-different-language/m-p/435451#M5269</guid>
      <dc:creator>GregDeStigter</dc:creator>
      <dc:date>2017-12-13T21:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: Get Route result in different Language</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/get-route-result-in-different-language/m-p/435452#M5270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For some reason on 100.0 it didnt work, upgrade to 100.1 now make it work&lt;/P&gt;&lt;P&gt;and today 100.2 realsed so i will test also on that &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2017 07:12:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/get-route-result-in-different-language/m-p/435452#M5270</guid>
      <dc:creator>ShaharBukra</dc:creator>
      <dc:date>2017-12-19T07:12:32Z</dc:date>
    </item>
  </channel>
</rss>

