<?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>Clarify Playbook Appian Application Internationalization Strategy</title><link>https://community.appian.com/discussions/f/best-practices/18202/clarify-playbook-appian-application-internationalization-strategy</link><description>Hi, 
 The Appian Playbook https://community.appian.com/w/the-appian-playbook/100/application-internationalization suggest this for record list views 
 &amp;quot;Internationalized apps need to use an expression-backed record to load the bundle once and pass the</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Clarify Playbook Appian Application Internationalization Strategy</title><link>https://community.appian.com/thread/71619?ContentTypeID=1</link><pubDate>Fri, 24 Jan 2020 16:41:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:711c5464-5975-40f3-84d7-e6c6d335594f</guid><dc:creator>Richard Nolan</dc:creator><description>&lt;p&gt;We do understand that part,&amp;nbsp; the issues is particularly in the wording that Bob has highlighted....&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Clarify Playbook Appian Application Internationalization Strategy</title><link>https://community.appian.com/thread/71618?ContentTypeID=1</link><pubDate>Fri, 24 Jan 2020 16:35:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6e5205c1-264a-41a6-80f5-d808642f5e72</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;I think you might be overlooking the part that specifies &amp;quot;expression-backed record&amp;quot;.&amp;nbsp; Using this method, you&amp;#39;d presumably be able to transform any data in the background prior to it reaching the OOB record type definition (column names, labels, etc).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Clarify Playbook Appian Application Internationalization Strategy</title><link>https://community.appian.com/thread/71615?ContentTypeID=1</link><pubDate>Fri, 24 Jan 2020 15:51:52 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:cf02b851-f2f1-424d-b560-8db9860bf468</guid><dc:creator>Richard Nolan</dc:creator><description>&lt;p&gt;Bob and I are aware of how to use Resource Bundles via the loadbundle plugin.&amp;nbsp; At issue here are two things:&amp;nbsp; the fact that there is no way to efficiently load a bundle for the grid/list views in an Entity-backed record (essentially we&amp;#39;d need to load the bundle for every item - which seems innefficent).&amp;nbsp;&lt;br /&gt;&lt;br /&gt;And, the wording of the instructions that Bob quoted.&amp;nbsp; What is meant by passing the bundle into an element of the record source CDT.&amp;nbsp; This is not clear to me.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Clarify Playbook Appian Application Internationalization Strategy</title><link>https://community.appian.com/thread/71614?ContentTypeID=1</link><pubDate>Fri, 24 Jan 2020 15:33:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f05ddfc8-57b9-4576-84f8-ac7682b9c99d</guid><dc:creator>btravis</dc:creator><description>&lt;p&gt;Hi Robert,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;We understand the strategy to use resource bundles and create a local variables in the context of an interface object.&amp;nbsp; It&amp;#39;s still not clear how to load the bundle once and use it throughout the record type designer interface.&amp;nbsp; &amp;nbsp; How do we define a variable, as suggested in the playbook, inside the record list view expression and use the variable throughout the record type designer (record list definition, related action button labels).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Or are you suggesting we need to reload the bundle inside every column label and related action button using expressions?&amp;nbsp; If so then the playbook recommendation doesn&amp;#39;t make any sense:&lt;br /&gt;&lt;br /&gt;&lt;span&gt;&amp;quot;Internationalized apps need to use an expression-backed record to &lt;strong&gt;load the bundle once and pass the bundle into an element of the record source CDT.&lt;/strong&gt; &lt;strong&gt;In the record list view the bundle element of the source CDT can be referenced&lt;/strong&gt; to internationalize labels and data in the list view&amp;quot;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Clarify Playbook Appian Application Internationalization Strategy</title><link>https://community.appian.com/thread/71611?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2020 18:25:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1a4abf38-d4c5-4bb2-b35c-030df39064e9</guid><dc:creator>Robert Shankin</dc:creator><description>&lt;p&gt;You can i18nize any component which includes an expressionable display element (i.e. a label).&lt;/p&gt;
&lt;p&gt;Ideally on an interface, you can load the bundle into a variable and then index out the value like so:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt; label:index(local!i18n_bundle, &amp;quot;firstName&amp;quot;, &amp;quot;First Name&amp;quot;)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;where local!i18n_bundle is the bundle, &amp;quot;firstName&amp;quot; is the key, and &amp;quot;First Name&amp;quot; is the default display value in the event that no value matches that key.&lt;/p&gt;
&lt;p&gt;Were there&amp;nbsp;use cases in which you don&amp;#39;t have the luxury of loading your bundle in advance, I suppose you can do it on the fly:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt; label:index(rule!i18n_loadBundleFromFolder(cons!someFolder), &amp;quot;firstName&amp;quot;, &amp;quot;First Name&amp;quot;),&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Clarify Playbook Appian Application Internationalization Strategy</title><link>https://community.appian.com/thread/71593?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2020 01:27:36 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5f5ba560-6721-40eb-bece-a7ffb699a400</guid><dc:creator>btravis</dc:creator><description>&lt;p&gt;Hi Robert,&lt;/p&gt;
&lt;p&gt;Sorry my question wasn&amp;#39;t clear,&amp;nbsp; we understand we need to load a bundle as you described, however how to we reference the resource bundle when setting column labels in the record list view or labels for action/related action buttons for example?&amp;nbsp; &amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Clarify Playbook Appian Application Internationalization Strategy</title><link>https://community.appian.com/thread/71589?ContentTypeID=1</link><pubDate>Wed, 22 Jan 2020 20:47:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ccd19221-3c8d-4f06-a4f6-b5a2735239ea</guid><dc:creator>Robert Shankin</dc:creator><description>&lt;p&gt;Hi Bob&lt;/p&gt;
&lt;p&gt;For better context, any mention of a &amp;quot;bundle&amp;quot; is in the context of the `load resource bundle` plugin.&lt;/p&gt;
&lt;p&gt;The plugin enables the product to interact easily with &amp;quot;bundle&amp;quot; files by exposing some functions (detailed on the plugin page).&lt;br /&gt;Bundles are essentially lists of key/value pairs.&amp;nbsp; Typically, there is one bundle per language, and any text that needs to be translated is wrapped in expressions to tell Appian which word or phrase to display from the given bundle.&lt;/p&gt;
&lt;p&gt;&lt;a href="/b/appmarket/posts/load-resource-bundle"&gt;https://community.appian.com/b/appmarket/posts/load-resource-bundle&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>