<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Globalization(Change Language Based on Inputs) in Interface</title><link>https://community.appian.com/discussions/f/user-interface/11661/globalization-change-language-based-on-inputs-in-interface</link><description>I had a Requirement to show the Interface Labels in particular language, 
 Based on the selected Language/Country from radio Button placed in the same form.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Globalization(Change Language Based on Inputs) in Interface</title><link>https://community.appian.com/thread/63558?ContentTypeID=1</link><pubDate>Thu, 20 Dec 2018 05:01:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:111a91b5-9846-457d-b978-f5954b5b7caf</guid><dc:creator>shrutik11</dc:creator><description>Hi Chandrasekharm,&lt;br /&gt;
&lt;br /&gt;
I am also having a scenario in which I need to build entire form content in the user&amp;#39;s preferred language, which user will select in the beginning. So, can you suggest me any way to achieve it?&lt;br /&gt;
Is it possible to implement using resource() function?&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Globalization(Change Language Based on Inputs) in Interface</title><link>https://community.appian.com/thread/51555?ContentTypeID=1</link><pubDate>Wed, 10 Jan 2018 06:08:57 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7ff14cf8-f561-4066-bace-f0dd081ecb74</guid><dc:creator>chandrasekharm0001</dc:creator><description>Thanks for the great solution David, &lt;br /&gt;
   Just 3 to 4 languages I have, but huge labels are there, your answer best suits if we have less variables ,&lt;br /&gt;
I just heared about resource() Function, will check with it aswell.  :)&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Globalization(Change Language Based on Inputs) in Interface</title><link>https://community.appian.com/thread/51540?ContentTypeID=1</link><pubDate>Tue, 09 Jan 2018 21:09:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2a4e7292-3f86-494e-a366-f28e55b887d8</guid><dc:creator>davids0001</dc:creator><description>If you have a reasonably small set of labels to iterate through, you can save each label in a constant.  Each constant will be an array of labels in all the supported languages, all languages in the same order every time. &lt;br /&gt;
&lt;br /&gt;
Label 1 English, Label 1 in French, Label 1 in German, Label 1 in Russian, Label 1 in Arabic&lt;br /&gt;
Label 2 English, Label 2 in French, Label 2 in German, Label 2 in Russian, Label 2 in Arabic&lt;br /&gt;
and so on&lt;br /&gt;
&lt;br /&gt;
Then Label 1 gets value: cons!label1[local!languageRadioButtonValue]&lt;br /&gt;
&lt;br /&gt;
You translate, not Appian.  And not every time, only once ever.  All Appian does is select text from a list.  And no DB connection to contend with, so it should be lightning fast.&lt;br /&gt;
&lt;br /&gt;
This also assumes you have a reasonably small number of languages, seeing as a user is expected to pick with a radio button.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Globalization(Change Language Based on Inputs) in Interface</title><link>https://community.appian.com/thread/51373?ContentTypeID=1</link><pubDate>Fri, 05 Jan 2018 09:53:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:db058550-0785-4d8c-b669-d21f27497fd8</guid><dc:creator>aloks0189</dc:creator><description>An another way can be possible here,&lt;br /&gt;
If your form labels are fixed, which you want to translate, then you can create a table where you can define language type along with language in form of English and it&amp;#39;s corresponding in other form of language. On load, you can query the data for defined labels from DB and translate the form accordingly. &lt;br /&gt;
&lt;br /&gt;
Hope this will help you.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Globalization(Change Language Based on Inputs) in Interface</title><link>https://community.appian.com/thread/51372?ContentTypeID=1</link><pubDate>Fri, 05 Jan 2018 08:24:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:99245d11-8ea5-42ff-a336-fe0af52e122b</guid><dc:creator>chandrasekharm0001</dc:creator><description>Thanks for your reply Alok, &lt;br /&gt;
  I already tried changing the internationalisation settings, that wont change the form labels as you mentioned,  thanks for your suggestion on creating the plugin and by using conditional functions, will try for any other ways to achieve this as this procedure may cause performance issues.&lt;br /&gt;
&lt;br /&gt;
thanks again :) .&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Globalization(Change Language Based on Inputs) in Interface</title><link>https://community.appian.com/thread/51371?ContentTypeID=1</link><pubDate>Fri, 05 Jan 2018 08:07:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8e6ddf2c-c056-47f1-973e-528fbcb902e6</guid><dc:creator>aloks0189</dc:creator><description>&lt;p&gt;Hi &lt;a href="/members/chandrasekharm0001"&gt;chandrasekharm0001&lt;/a&gt; &amp;nbsp;I believe, access to internationalisation settings are only specific to the administrators because these settings will be applied for all the users across the environment, hence the only way which you have is, &lt;/p&gt;
&lt;p&gt;Create a plugin which can translate english to various languages, and then by the help of conditional functions such As if else try to convert the form labels and other informations. But this will cause you performance issues. In fact if you change the internationalisation settings, in such case also most of the form labels, and it&amp;#39;s values won&amp;#39;t be converted, only tempo and predefined text contents will be converted but not the one which we have developed.&lt;/p&gt;
&lt;p&gt;Hope this will give you an understanding about internationalisation settings in Appian.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>