<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Robert Savage</title>
	<atom:link href="http://www.savage7.com/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.savage7.com</link>
	<description>Professional Software Developer / a.k.a. Programming Junkie</description>
	<lastBuildDate>Wed, 13 Jul 2011 05:57:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Adobe Flex 3.x Localization / Internationalization (i18n) Weaknesses by uday</title>
		<link>http://www.savage7.com/index.php/2009/06/adobe-flex-3x-lack-of-support-for-localization-internationalization-i18n/comment-page-1/#comment-154</link>
		<dc:creator>uday</dc:creator>
		<pubDate>Wed, 13 Jul 2011 05:57:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.savage7.com/?p=194#comment-154</guid>
		<description>Hi,

I am new to this internationalization in Flex, i applied supporting font&#039;s for AMHARIC language in my Flex App, in Windows-XP.  If i want to run an application only LABLE fields are change into AMHARIC language but not the Container Fields. Is there any alternative way for using Container Fields in internationlization process.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am new to this internationalization in Flex, i applied supporting font&#8217;s for AMHARIC language in my Flex App, in Windows-XP.  If i want to run an application only LABLE fields are change into AMHARIC language but not the Container Fields. Is there any alternative way for using Container Fields in internationlization process.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adobe Flex 3: Load localization resources at runtime using XML by Fabien Nicollet</title>
		<link>http://www.savage7.com/index.php/2009/10/adobe-flex-3-load-localization-resources-at-runtime-using-xml/comment-page-1/#comment-153</link>
		<dc:creator>Fabien Nicollet</dc:creator>
		<pubDate>Wed, 29 Jun 2011 12:30:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.savage7.com/?p=589#comment-153</guid>
		<description>Amazing work, saved me a few hours of development!

Thanks !
Fabien</description>
		<content:encoded><![CDATA[<p>Amazing work, saved me a few hours of development!</p>
<p>Thanks !<br />
Fabien</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on google-api-translate-java-maven-plugin by Robert</title>
		<link>http://www.savage7.com/index.php/2010/02/google-api-translate-java-maven-plugin/comment-page-1/#comment-152</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Wed, 16 Mar 2011 15:59:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.savage7.com/?p=625#comment-152</guid>
		<description>Hi Sri,

This project is for using Maven to perform the localization on Java property files.  If you want to make use of the Google translations Java library from Java code, I suggest you start with this project, it provides the full source and samples to get started:

&lt;a href=&quot;http://code.google.com/p/google-api-translate-java/&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/google-api-translate-java/&lt;/a&gt;


Thanks, Robert</description>
		<content:encoded><![CDATA[<p>Hi Sri,</p>
<p>This project is for using Maven to perform the localization on Java property files.  If you want to make use of the Google translations Java library from Java code, I suggest you start with this project, it provides the full source and samples to get started:</p>
<p><a href="http://code.google.com/p/google-api-translate-java/" rel="nofollow">http://code.google.com/p/google-api-translate-java/</a></p>
<p>Thanks, Robert</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on google-api-translate-java-maven-plugin by Sri ramulu gummadi</title>
		<link>http://www.savage7.com/index.php/2010/02/google-api-translate-java-maven-plugin/comment-page-1/#comment-151</link>
		<dc:creator>Sri ramulu gummadi</dc:creator>
		<pubDate>Wed, 16 Mar 2011 10:08:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.savage7.com/?p=625#comment-151</guid>
		<description>hi i am developing one application using java their i need to translate the text into locale languages please if u have any example please send me how to do it 
i tried like this 
import com.google.api.translate.Language;
import com.google.api.translate.Translate;

public class GoogleTranslator {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        try {
            //Translate.setHttpReferrer(“en-fr”); 
            Translate.setHttpReferrer(&quot;en-fr&quot;);
            String translatedText = Translate.translate(&quot;How are you?&quot;,Language.ENGLISH, Language.HINDI);
		       System.out.println(translatedText);
		} catch (Exception ex) {
			ex.printStackTrace();
		}

    }

}

and i got the error


java.lang.Exception: [google-api-translate-java] Error retrieving translation.
        at com.google.api.GoogleAPI.retrieveJSON(GoogleAPI.java:136)
        at com.google.api.translate.Translate.execute(Translate.java:69)
        at com.google.api.translate.Translate.translate(Translate.java:192)
        at GoogleTranslator.main(GoogleTranslator.java:23)
Caused by: java.net.ConnectException: Connection timed out
        at java.net.PlainSocketImpl.socketConnect(Native Method)
        at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:327)
        at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:193)
        at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:180)
        at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:384)
        at java.net.Socket.connect(Socket.java:546)
        at java.net.Socket.connect(Socket.java:495)
        at sun.net.NetworkClient.doConnect(NetworkClient.java:178)
        at sun.net.www.http.HttpClient.openServer(HttpClient.java:409)
        at sun.net.www.http.HttpClient.openServer(HttpClient.java:530)
        at sun.net.www.http.HttpClient.(HttpClient.java:240)
        at sun.net.www.http.HttpClient.New(HttpClient.java:321)
        at sun.net.www.http.HttpClient.New(HttpClient.java:338)
        at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:935)
        at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:876)
        at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:801)
        at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:979)
        at com.google.api.GoogleAPI.retrieveJSON(GoogleAPI.java:115)
        ... 3 more</description>
		<content:encoded><![CDATA[<p>hi i am developing one application using java their i need to translate the text into locale languages please if u have any example please send me how to do it<br />
i tried like this<br />
import com.google.api.translate.Language;<br />
import com.google.api.translate.Translate;</p>
<p>public class GoogleTranslator {</p>
<p>    /**<br />
     * @param args the command line arguments<br />
     */<br />
    public static void main(String[] args) {<br />
        // TODO code application logic here<br />
        try {<br />
            //Translate.setHttpReferrer(“en-fr”);<br />
            Translate.setHttpReferrer(&#8220;en-fr&#8221;);<br />
            String translatedText = Translate.translate(&#8220;How are you?&#8221;,Language.ENGLISH, Language.HINDI);<br />
		       System.out.println(translatedText);<br />
		} catch (Exception ex) {<br />
			ex.printStackTrace();<br />
		}</p>
<p>    }</p>
<p>}</p>
<p>and i got the error</p>
<p>java.lang.Exception: [google-api-translate-java] Error retrieving translation.<br />
        at com.google.api.GoogleAPI.retrieveJSON(GoogleAPI.java:136)<br />
        at com.google.api.translate.Translate.execute(Translate.java:69)<br />
        at com.google.api.translate.Translate.translate(Translate.java:192)<br />
        at GoogleTranslator.main(GoogleTranslator.java:23)<br />
Caused by: java.net.ConnectException: Connection timed out<br />
        at java.net.PlainSocketImpl.socketConnect(Native Method)<br />
        at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:327)<br />
        at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:193)<br />
        at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:180)<br />
        at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:384)<br />
        at java.net.Socket.connect(Socket.java:546)<br />
        at java.net.Socket.connect(Socket.java:495)<br />
        at sun.net.NetworkClient.doConnect(NetworkClient.java:178)<br />
        at sun.net.www.http.HttpClient.openServer(HttpClient.java:409)<br />
        at sun.net.www.http.HttpClient.openServer(HttpClient.java:530)<br />
        at sun.net.www.http.HttpClient.(HttpClient.java:240)<br />
        at sun.net.www.http.HttpClient.New(HttpClient.java:321)<br />
        at sun.net.www.http.HttpClient.New(HttpClient.java:338)<br />
        at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:935)<br />
        at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:876)<br />
        at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:801)<br />
        at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:979)<br />
        at com.google.api.GoogleAPI.retrieveJSON(GoogleAPI.java:115)<br />
        &#8230; 3 more</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adobe Flex 3: Load localization resources at runtime using XML by Gonzo</title>
		<link>http://www.savage7.com/index.php/2009/10/adobe-flex-3-load-localization-resources-at-runtime-using-xml/comment-page-1/#comment-150</link>
		<dc:creator>Gonzo</dc:creator>
		<pubDate>Tue, 08 Feb 2011 17:33:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.savage7.com/?p=589#comment-150</guid>
		<description>&lt;a href=&quot;#comment-135&quot; rel=&quot;nofollow&quot;&gt;@Karl &lt;/a&gt; 
&lt;blockquote cite=&quot;#commentbody-135&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-135&quot; rel=&quot;nofollow&quot;&gt;Karl&lt;/a&gt; :&lt;/strong&gt;
Greetings Robert 
I got the following error, it’s similar to one written before
ReferenceError: Error #1069: Property -1 not found on __AS3__.vec.Vector. and there is no default value.
and several lines referring to methods like truncateText() ,validateSize() , measureSize()
This error only appears when I put a small sized button, then I believe that the problem is when the button isnt large enough for the label. Has this happened to you?
&lt;/blockquote&gt;
Hi, I got that issue when using different controls, not only buttons. Any solving?</description>
		<content:encoded><![CDATA[<p><a href="#comment-135" rel="nofollow">@Karl </a> </p>
<blockquote cite="#commentbody-135"><p>
<strong><a href="#comment-135" rel="nofollow">Karl</a> :</strong><br />
Greetings Robert<br />
I got the following error, it’s similar to one written before<br />
ReferenceError: Error #1069: Property -1 not found on __AS3__.vec.Vector. and there is no default value.<br />
and several lines referring to methods like truncateText() ,validateSize() , measureSize()<br />
This error only appears when I put a small sized button, then I believe that the problem is when the button isnt large enough for the label. Has this happened to you?
</p></blockquote>
<p>Hi, I got that issue when using different controls, not only buttons. Any solving?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adobe Flex 3: Load localization resources at runtime using XML by Paul</title>
		<link>http://www.savage7.com/index.php/2009/10/adobe-flex-3-load-localization-resources-at-runtime-using-xml/comment-page-1/#comment-148</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 25 Jan 2011 15:20:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.savage7.com/?p=589#comment-148</guid>
		<description>Hi Robert,
I couldn&#039;t find a way to prevent the xml files from caching without editing your class.
It would be nice if an additional parameter could be passed to xmlResourceLoader.load( localeChain, cacheControl ), so this could be used if supplied to prevent caching.

Cheers
Paul</description>
		<content:encoded><![CDATA[<p>Hi Robert,<br />
I couldn&#8217;t find a way to prevent the xml files from caching without editing your class.<br />
It would be nice if an additional parameter could be passed to xmlResourceLoader.load( localeChain, cacheControl ), so this could be used if supplied to prevent caching.</p>
<p>Cheers<br />
Paul</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adobe Flex 3: Load localization resources at runtime using XML by Robert</title>
		<link>http://www.savage7.com/index.php/2009/10/adobe-flex-3-load-localization-resources-at-runtime-using-xml/comment-page-1/#comment-147</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Mon, 24 Jan 2011 15:20:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.savage7.com/?p=589#comment-147</guid>
		<description>To override the date formatting strings for different locales, you have to create framework resources.  Please see this article for more information:  http://www.savage7.com/index.php/2011/01/adobe-flex-3-load-framework-localization-resources-at-runtime-using-xml/</description>
		<content:encoded><![CDATA[<p>To override the date formatting strings for different locales, you have to create framework resources.  Please see this article for more information:  <a href="http://www.savage7.com/index.php/2011/01/adobe-flex-3-load-framework-localization-resources-at-runtime-using-xml/" rel="nofollow">http://www.savage7.com/index.php/2011/01/adobe-flex-3-load-framework-localization-resources-at-runtime-using-xml/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adobe Flex 3: Load localization resources at runtime using XML by Paul</title>
		<link>http://www.savage7.com/index.php/2009/10/adobe-flex-3-load-localization-resources-at-runtime-using-xml/comment-page-1/#comment-146</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Mon, 24 Jan 2011 11:27:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.savage7.com/?p=589#comment-146</guid>
		<description>Hi Robert,

Great work!
I&#039;ve managed to apply format Dates for different locales, but they all display the formatted Dates in English. How can I get them to show the translated day and month strings?

Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi Robert,</p>
<p>Great work!<br />
I&#8217;ve managed to apply format Dates for different locales, but they all display the formatted Dates in English. How can I get them to show the translated day and month strings?</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adobe Flex 3: Load localization resources at runtime using XML by Robert</title>
		<link>http://www.savage7.com/index.php/2009/10/adobe-flex-3-load-localization-resources-at-runtime-using-xml/comment-page-1/#comment-140</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Sat, 08 Jan 2011 01:25:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.savage7.com/?p=589#comment-140</guid>
		<description>&lt;a href=&quot;#comment-137&quot; rel=&quot;nofollow&quot;&gt;@Karl &lt;/a&gt; 

Check out this new article for more information:
http://www.savage7.com/index.php/2011/01/adobe-flex-3-load-framework-localization-resources-at-runtime-using-xml/</description>
		<content:encoded><![CDATA[<p><a href="#comment-137" rel="nofollow">@Karl </a> </p>
<p>Check out this new article for more information:<br />
<a href="http://www.savage7.com/index.php/2011/01/adobe-flex-3-load-framework-localization-resources-at-runtime-using-xml/" rel="nofollow">http://www.savage7.com/index.php/2011/01/adobe-flex-3-load-framework-localization-resources-at-runtime-using-xml/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adobe Flex 3: Load localization resources at runtime using XML by Adobe Flex 3: Load Framework Localization Resources at Runtime using XML &#124; Robert Savage</title>
		<link>http://www.savage7.com/index.php/2009/10/adobe-flex-3-load-localization-resources-at-runtime-using-xml/comment-page-1/#comment-139</link>
		<dc:creator>Adobe Flex 3: Load Framework Localization Resources at Runtime using XML &#124; Robert Savage</dc:creator>
		<pubDate>Sat, 08 Jan 2011 01:23:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.savage7.com/?p=589#comment-139</guid>
		<description>[...]  [...]</description>
		<content:encoded><![CDATA[<p>[...]  [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

