<?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 on: Finally! Rails goes i18n!</title>
	<atom:link href="http://iain.nl/2008/08/finally-rails-goes-i18n/feed/" rel="self" type="application/rss+xml" />
	<link>http://iain.nl/2008/08/finally-rails-goes-i18n/</link>
	<description></description>
	<lastBuildDate>Wed, 01 Sep 2010 12:36:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: ty</title>
		<link>http://iain.nl/2008/08/finally-rails-goes-i18n/comment-page-1/#comment-255</link>
		<dc:creator>ty</dc:creator>
		<pubDate>Sun, 01 Mar 2009 16:36:47 +0000</pubDate>
		<guid isPermaLink="false">http://iain.nl/?p=52#comment-255</guid>
		<description>I&#039;ve put up a locale YMAL auto translator. It understand YAML format and can automatically translate your YMAL into othere languages. Saves a lot of time for i18n projects. 
http://github.com/yi/rails-localisation-yaml-auto-translator/tree/master</description>
		<content:encoded><![CDATA[<p>I&#8217;ve put up a locale YMAL auto translator. It understand YAML format and can automatically translate your YMAL into othere languages. Saves a lot of time for i18n projects.<br />
<a target="_blank" href="http://github.com/yi/rails-localisation-yaml-auto-translator/tree/master"  rel="nofollow">http://github.com/yi/rails-localisation-yaml-auto-translator/tree/master</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ty</title>
		<link>http://iain.nl/2008/08/finally-rails-goes-i18n/comment-page-1/#comment-1236</link>
		<dc:creator>ty</dc:creator>
		<pubDate>Sun, 01 Mar 2009 16:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://iain.nl/?p=52#comment-1236</guid>
		<description>I&#039;ve put up a locale YMAL auto translator. It understand YAML format and can automatically translate your YMAL into othere languages. Saves a lot of time for i18n projects. 
http://github.com/yi/rails-localisation-yaml-auto-translator/tree/master</description>
		<content:encoded><![CDATA[<p>I&#8217;ve put up a locale YMAL auto translator. It understand YAML format and can automatically translate your YMAL into othere languages. Saves a lot of time for i18n projects.<br />
<a target="_blank" href="http://github.com/yi/rails-localisation-yaml-auto-translator/tree/master"  rel="nofollow">http://github.com/yi/rails-localisation-yaml-auto-translator/tree/master</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin Halsall</title>
		<link>http://iain.nl/2008/08/finally-rails-goes-i18n/comment-page-1/#comment-215</link>
		<dc:creator>Justin Halsall</dc:creator>
		<pubDate>Tue, 25 Nov 2008 15:04:58 +0000</pubDate>
		<guid isPermaLink="false">http://iain.nl/?p=52#comment-215</guid>
		<description>Bedankt voor de nederlandse vertaling! Je bewijst ons nederlandse Rubyers daar een grote dienst mee!

Kom ook eens een keer langs de amsterdam.rb of utrecht.rb meetings, dan kan ik je op een biertje trakteren.</description>
		<content:encoded><![CDATA[<p>Bedankt voor de nederlandse vertaling! Je bewijst ons nederlandse Rubyers daar een grote dienst mee!</p>
<p>Kom ook eens een keer langs de amsterdam.rb of utrecht.rb meetings, dan kan ik je op een biertje trakteren.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin Halsall</title>
		<link>http://iain.nl/2008/08/finally-rails-goes-i18n/comment-page-1/#comment-1235</link>
		<dc:creator>Justin Halsall</dc:creator>
		<pubDate>Tue, 25 Nov 2008 15:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://iain.nl/?p=52#comment-1235</guid>
		<description>Bedankt voor de nederlandse vertaling! Je bewijst ons nederlandse Rubyers daar een grote dienst mee!

Kom ook eens een keer langs de amsterdam.rb of utrecht.rb meetings, dan kan ik je op een biertje trakteren.</description>
		<content:encoded><![CDATA[<p>Bedankt voor de nederlandse vertaling! Je bewijst ons nederlandse Rubyers daar een grote dienst mee!</p>
<p>Kom ook eens een keer langs de amsterdam.rb of utrecht.rb meetings, dan kan ik je op een biertje trakteren.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iain Hecker</title>
		<link>http://iain.nl/2008/08/finally-rails-goes-i18n/comment-page-1/#comment-45</link>
		<dc:creator>Iain Hecker</dc:creator>
		<pubDate>Sun, 10 Aug 2008 13:48:11 +0000</pubDate>
		<guid isPermaLink="false">http://iain.nl/?p=52#comment-45</guid>
		<description>Hi Luca,

active_record.error_messages.custom is for defining your own error messages. If you want a different error message when Post.title is blank than when Product.price is blank. E.g:

&lt;pre lang=&quot;ruby&quot;&gt;
active_record:
  error_messages:
    post:
      title:
        blank: &quot;must be filled in&quot;
    product:
      price:
        blank: &quot;must be specified&quot;
&lt;/pre&gt;

Hope this helps. I&#039;ll be going into this shortly in a new post.</description>
		<content:encoded><![CDATA[<p>Hi Luca,</p>
<p>active_record.error_messages.custom is for defining your own error messages. If you want a different error message when Post.title is blank than when Product.price is blank. E.g:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">active_record:
  error_messages:
    post:
      title:
        blank: <span style="color:#996600;">&quot;must be filled in&quot;</span>
    product:
      price:
        blank: <span style="color:#996600;">&quot;must be specified&quot;</span></pre></div></div>

<p>Hope this helps. I&#8217;ll be going into this shortly in a new post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iain Hecker</title>
		<link>http://iain.nl/2008/08/finally-rails-goes-i18n/comment-page-1/#comment-1234</link>
		<dc:creator>Iain Hecker</dc:creator>
		<pubDate>Sun, 10 Aug 2008 13:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://iain.nl/?p=52#comment-1234</guid>
		<description>Hi Luca,

active_record.error_messages.custom is for defining your own error messages. If you want a different error message when Post.title is blank than when Product.price is blank. E.g:

&lt;pre lang=&quot;ruby&quot;&gt;
active_record:
  error_messages:
    post:
      title:
        blank: &quot;must be filled in&quot;
    product:
      price:
        blank: &quot;must be specified&quot;
&lt;/pre&gt;

Hope this helps. I&#039;ll be going into this shortly in a new post.</description>
		<content:encoded><![CDATA[<p>Hi Luca,</p>
<p>active_record.error_messages.custom is for defining your own error messages. If you want a different error message when Post.title is blank than when Product.price is blank. E.g:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">active_record:
  error_messages:
    post:
      title:
        blank: <span style="color:#996600;">&quot;must be filled in&quot;</span>
    product:
      price:
        blank: <span style="color:#996600;">&quot;must be specified&quot;</span></pre></div></div>

<p>Hope this helps. I&#8217;ll be going into this shortly in a new post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luca Guidi</title>
		<link>http://iain.nl/2008/08/finally-rails-goes-i18n/comment-page-1/#comment-43</link>
		<dc:creator>Luca Guidi</dc:creator>
		<pubDate>Sun, 10 Aug 2008 09:46:59 +0000</pubDate>
		<guid isPermaLink="false">http://iain.nl/?p=52#comment-43</guid>
		<description>Hi Iain, great post!
What about the &#039;custom&#039; namespace in your translations hash?</description>
		<content:encoded><![CDATA[<p>Hi Iain, great post!<br />
What about the &#8216;custom&#8217; namespace in your translations hash?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luca Guidi</title>
		<link>http://iain.nl/2008/08/finally-rails-goes-i18n/comment-page-1/#comment-1233</link>
		<dc:creator>Luca Guidi</dc:creator>
		<pubDate>Sun, 10 Aug 2008 09:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://iain.nl/?p=52#comment-1233</guid>
		<description>Hi Iain, great post!
What about the &#039;custom&#039; namespace in your translations hash?</description>
		<content:encoded><![CDATA[<p>Hi Iain, great post!<br />
What about the &#8216;custom&#8217; namespace in your translations hash?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iain</title>
		<link>http://iain.nl/2008/08/finally-rails-goes-i18n/comment-page-1/#comment-42</link>
		<dc:creator>iain</dc:creator>
		<pubDate>Sat, 09 Aug 2008 20:28:30 +0000</pubDate>
		<guid isPermaLink="false">http://iain.nl/?p=52#comment-42</guid>
		<description>Hi Glenn,

1: You were right, I fucked the hash up. It&#039;s fixed now. This is why I prefer Yaml.

2: Rails is missing much at this point. It does work in the error_messages_for() method though, although that&#039;s the only place.

There is some work done in cleaning stuff up at this moment, but it&#039;s not enough at this time.</description>
		<content:encoded><![CDATA[<p>Hi Glenn,</p>
<p>1: You were right, I fucked the hash up. It&#8217;s fixed now. This is why I prefer Yaml.</p>
<p>2: Rails is missing much at this point. It does work in the error_messages_for() method though, although that&#8217;s the only place.</p>
<p>There is some work done in cleaning stuff up at this moment, but it&#8217;s not enough at this time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iain</title>
		<link>http://iain.nl/2008/08/finally-rails-goes-i18n/comment-page-1/#comment-1232</link>
		<dc:creator>iain</dc:creator>
		<pubDate>Sat, 09 Aug 2008 20:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://iain.nl/?p=52#comment-1232</guid>
		<description>Hi Glenn,

1: You were right, I fucked the hash up. It&#039;s fixed now. This is why I prefer Yaml.

2: Rails is missing much at this point. It does work in the error_messages_for() method though, although that&#039;s the only place.

There is some work done in cleaning stuff up at this moment, but it&#039;s not enough at this time.</description>
		<content:encoded><![CDATA[<p>Hi Glenn,</p>
<p>1: You were right, I fucked the hash up. It&#8217;s fixed now. This is why I prefer Yaml.</p>
<p>2: Rails is missing much at this point. It does work in the error_messages_for() method though, although that&#8217;s the only place.</p>
<p>There is some work done in cleaning stuff up at this moment, but it&#8217;s not enough at this time.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
