﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>StrataFrame Forum » StrataFrame Application Framework - V1 » WinForms (How do I?)  » Strata Frame translation package</title><generator>InstantForum 2017-1 Final</generator><description>StrataFrame Forum</description><link>http://forum.strataframe.net/</link><webMaster>StrataFrame Forum</webMaster><lastBuildDate>Sun, 20 Sep 2026 17:46:42 GMT</lastBuildDate><ttl>20</ttl><item><title>Strata Frame translation package</title><link>http://forum.strataframe.net/FindPost24551.aspx</link><description>I need the strata frame translation package in spanish. Where can I get it?</description><pubDate>Fri, 11 Sep 2009 07:20:08 GMT</pubDate><dc:creator>Felix M Avendano</dc:creator></item><item><title>RE: Strata Frame translation package</title><link>http://forum.strataframe.net/FindPost24615.aspx</link><description>Now is working OK. Thank Youuuuuuu:D</description><pubDate>Fri, 11 Sep 2009 07:20:08 GMT</pubDate><dc:creator>Felix M Avendano</dc:creator></item><item><title>RE: Strata Frame translation package</title><link>http://forum.strataframe.net/FindPost24612.aspx</link><description>Felix,&lt;/P&gt;&lt;P&gt;Isn't it because first you set it to localeID 2058 then later to the activelanguage of windowsapplication1.&lt;/P&gt;&lt;P&gt;If this active language is english or it is not set then this will overwrite the 2058 localeID.&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the Localization docs:&lt;/P&gt;&lt;P&gt;[quote]&lt;/P&gt;&lt;H2&gt;&lt;A name=RetrievingTheActiveLanguage&gt;&lt;/A&gt;GetActiveLanguage() - &lt;SPAN style="FONT-WEIGHT: normal"&gt;Retrieving the Active Language&lt;/SPAN&gt;&lt;/H2&gt;&lt;P&gt;The GetActiveLanguage method in the Localization class loads the locale ID for the active language for a specified application. &amp;nbsp;If no active language is located, the localization database will be used to find the default base language.[/quote]&lt;/P&gt;&lt;P&gt;Try commenting out the last line&amp;nbsp;in your code&amp;nbsp;and run again.&lt;/P&gt;&lt;P&gt;/Teddy</description><pubDate>Thu, 10 Sep 2009 15:56:16 GMT</pubDate><dc:creator>Teddy Jensen</dc:creator></item><item><title>RE: Strata Frame translation package</title><link>http://forum.strataframe.net/FindPost24611.aspx</link><description>Check this out</description><pubDate>Thu, 10 Sep 2009 14:59:03 GMT</pubDate><dc:creator>Felix M Avendano</dc:creator></item><item><title>RE: Strata Frame translation package</title><link>http://forum.strataframe.net/FindPost24610.aspx</link><description>No.</description><pubDate>Thu, 10 Sep 2009 14:41:02 GMT</pubDate><dc:creator>Felix M Avendano</dc:creator></item><item><title>RE: Strata Frame translation package</title><link>http://forum.strataframe.net/FindPost24605.aspx</link><description>If you create a new StrataFrame application, create a maintenance form with nothing on it other than a Maintenance Form Toolstrip, set your locale ID to 2058 and run, does it work?</description><pubDate>Thu, 10 Sep 2009 09:05:40 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Strata Frame translation package</title><link>http://forum.strataframe.net/FindPost24604.aspx</link><description>Here is what Ive got, but is still not working :(&lt;/P&gt;&lt;P&gt;&amp;nbsp; Private Shared Sub InitApplication(ByVal e As InitializingApplicationEventArgs)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '-- Add the main form type&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '-- If more than one form is added to the collection, they can be chosen by showing a "Gateway" form&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;nbsp;&amp;nbsp; and supplying the index of the form to show (At least 1 form type must be added to the collection&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; e.Forms.Add(GetType(WindowsApplication1.frmMenu))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '-- ToDo:&amp;nbsp; Add any extra application initialization&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MicroFour.StrataFrame.UI.Localization.MessageLocaleID = 2058&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MicroFour.StrataFrame.UI.Localization.MessageKeyType = MicroFour.StrataFrame.Messaging.MessageKeyDataType.XML&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MicroFour.StrataFrame.UI.Localization.MessageLocaleID = MicroFour.StrataFrame.UI.Localization.GetActiveLanguage("WindowsApplication1")</description><pubDate>Thu, 10 Sep 2009 08:00:36 GMT</pubDate><dc:creator>Felix M Avendano</dc:creator></item><item><title>RE: Strata Frame translation package</title><link>http://forum.strataframe.net/FindPost24599.aspx</link><description>Ah, then that is not related to the packages, but rather how you have your application setup.&amp;nbsp; In the Appmain.vb or the program.cs, have you set the localization locale ID.&amp;nbsp; This is done in the InitApplication method:&lt;/P&gt;&lt;FONT size=2&gt;&lt;P&gt;[codesnippet]MicroFour.StrataFrame.UI.Localization.MessageLocaleID = 2058;[/codesnippet]&lt;/P&gt;&lt;P&gt;The above is not actually what you may want to do for your application as that locale ID is for Spanish (Mexico).&amp;nbsp; We have SF Spanish flags set for 3 locales:&lt;/P&gt;&lt;P&gt;2058 - Spanish (Mexico)&lt;BR&gt;3082 - Spanish (Spain)&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;11274 - Spanish (Argentina)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size=2&gt;If these are not one of your locales then I would be happy to add another.&amp;nbsp; Finally, if you are getting the SF assemblies to automatically load the values, then you can forcibly call the RegisterEmbeddedXmlFile for the SF UI assembly:&lt;/FONT&gt;&lt;/P&gt;&lt;FONT size=2&gt;&lt;FONT size=2&gt;&lt;P&gt;[codesnippet]MicroFour.StrataFrame.UI.Localization.RegisterEmbeddedXmlFile(...)[/codesnippet]&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;</description><pubDate>Thu, 10 Sep 2009 05:15:28 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Strata Frame translation package</title><link>http://forum.strataframe.net/FindPost24590.aspx</link><description>Nothing is wrong, the matter is&amp;nbsp; I cannot see, for example, the manteniancetollstrip in spanish when the program is running. I see it in spanish when I m in design mode but when the program is running I see it in english.</description><pubDate>Wed, 09 Sep 2009 08:57:17 GMT</pubDate><dc:creator>Felix M Avendano</dc:creator></item><item><title>RE: Strata Frame translation package</title><link>http://forum.strataframe.net/FindPost24552.aspx</link><description>I have to send it to you then you would have to change things, send it back, then I would have to recompile SF with the changes.&lt;/P&gt;&lt;P&gt;What seems to be wrong?&amp;nbsp; It may not be necessary to go through this process.&amp;nbsp; Thanks.</description><pubDate>Mon, 07 Sep 2009 10:46:46 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item></channel></rss>