<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>rdoc/classes/ActionView.html</filename>
    </added>
    <added>
      <filename>rdoc/classes/ActionView/Helpers.html</filename>
    </added>
    <added>
      <filename>rdoc/classes/ActionView/Helpers/DateHelper.html</filename>
    </added>
    <added>
      <filename>rdoc/classes/ActionView/Helpers/FormOptionsHelper.html</filename>
    </added>
    <added>
      <filename>rdoc/classes/ActionView/Helpers/NumberHelper.html</filename>
    </added>
    <added>
      <filename>rdoc/classes/ActiveRecord.html</filename>
    </added>
    <added>
      <filename>rdoc/classes/ActiveRecord/Errors.html</filename>
    </added>
    <added>
      <filename>rdoc/classes/Array.html</filename>
    </added>
    <added>
      <filename>rdoc/classes/Date.html</filename>
    </added>
    <added>
      <filename>rdoc/classes/Globalite.html</filename>
    </added>
    <added>
      <filename>rdoc/classes/Globalite/L10n.html</filename>
    </added>
    <added>
      <filename>rdoc/classes/Kernel.html</filename>
    </added>
    <added>
      <filename>rdoc/classes/Locale.html</filename>
    </added>
    <added>
      <filename>rdoc/classes/Time.html</filename>
    </added>
    <added>
      <filename>rdoc/created.rid</filename>
    </added>
    <added>
      <filename>rdoc/files/README.html</filename>
    </added>
    <added>
      <filename>rdoc/files/lib/globalite/l10n_rb.html</filename>
    </added>
    <added>
      <filename>rdoc/files/lib/globalite/locale_rb.html</filename>
    </added>
    <added>
      <filename>rdoc/files/lib/globalite_rb.html</filename>
    </added>
    <added>
      <filename>rdoc/files/lib/rails/core_ext_rb.html</filename>
    </added>
    <added>
      <filename>rdoc/files/lib/rails/localization_rb.html</filename>
    </added>
    <added>
      <filename>rdoc/files/lib/rails/localized_action_view_rb.html</filename>
    </added>
    <added>
      <filename>rdoc/files/lib/rails/localized_active_record_rb.html</filename>
    </added>
    <added>
      <filename>rdoc/fr_class_index.html</filename>
    </added>
    <added>
      <filename>rdoc/fr_file_index.html</filename>
    </added>
    <added>
      <filename>rdoc/fr_method_index.html</filename>
    </added>
    <added>
      <filename>rdoc/index.html</filename>
    </added>
    <added>
      <filename>rdoc/rdoc-style.css</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,5 @@
-Globalite
-=========
+=Globalite
+
 
 Globalite is meant to be a breed of the best internationalization/localization plugins available for Rails. 
 
@@ -15,8 +15,7 @@ The Locale is set on the user's session making Globalite a perfect solution for
 The developer can pass dynamic values to be used in the localization.
 
 
-What's the difference between Globalite and the other existing l10n/i18n plugins?
----------------------------------------------------------------------------------
+==What's the difference between Globalite and the other existing l10n/i18n plugins?
 
 Gibberish is a nice plugin but it doesn't handle locales, you can't have your application in British English and American English. I also don't really like the syntax :p I based the UI localization of Globalite on Chris' work on Gibberish.
 
@@ -26,19 +25,16 @@ Also, Globalite doesn't have the concept of a base language. Mainly because I th
 
 
 
-Usage
-=====
+==Usage
 
-installation:
--------------
+===installation:
 
 	script/plugin install http://globalite.googlecode.com/svn/trunk/
 rename the vendor/plugins/trunk =&gt; vendor/plugins/globalite
 or from your vendor/plugins folder:
 	svn checkout http://globalite.googlecode.com/svn/trunk/ globalite
 
-UI Localization:
-----------------
+===UI Localization:
 
 Create a lang folder at the root of your project. Add your localization files in the lang/ui folder if you want to localize your interface. 
 
@@ -61,8 +57,7 @@ You can also pass values to the localization, and the translator can do whatever
 Note that variables can be used in any order the translator wants	
 	
 
-Rails Localization:
--------------------
+===Rails Localization:
 
 Localize a time object by using a predefined format (defined in the date_helper_time_formats variable that you can find  in globalite/lang/rails/[lang].yml)
 
@@ -94,28 +89,23 @@ Get a distance of time in words localized.
 Active record errors are automatically rendered in the locale language
 
 
-Notes
------
+====Notes
 
 
 
-FAQ:
-===
+==FAQ:
 
-Why did you call your plugin 'Globalite'? 
------------------------------------------
+===Why did you call your plugin 'Globalite'? 
 
-Globalize was already taken ;) Most seriously, I was looking for a i18n/l10n solution for a project I was working on, after few hours testing Globalize Josh http://joshknowles.com, Matt http://heidmotron.com/ and I http://railsontherun.com saw it wouldn't work for us. Since we only had the choice between very simple solutions and a complicated solution, I decided to make a &quot;lite&quot; version of Globalize ;)
+Globalize was already taken ;) Most seriously, I was looking for a i18n/l10n solution for a project I was working on, after few hours testing Globalize, Josh http://joshknowles.com, Matt http://heidmotron.com/ and I http://railsontherun.com saw it wouldn't work for us. Since we only had the choice between very simple solutions and a complicated solution, I decided to make a &quot;lite&quot; version of Globalize ;)
 
-TODO:
-=====
+==TODO:
 
 - add support for pluralization
 - content translation
 
 
-Internationalization, Localization, Locale:
-===========================================
+===Internationalization, Localization, Locale:
 
 Internationalization refers to the process of modifying an application&#8217;s design so that it can support 
 locale differences like text orientation, currency, date and time format, sorting, and so forth. This can be done 
@@ -128,30 +118,27 @@ en-US. Locales are specified by RFC 3066 and consist of two parts. The first is
 uses lowercase letters. The second is usually an ISO 3166 country code in uppercase letters.
 [from Ruby on Rails Commerce (Hellsten, Laine)]
 
-CREDITS:
-========
+===CREDITS:
 
-Some code was 'borrowed' from different projects such as:
+Some code was very influenced from different projects such as:
 
 * Gibberish http://require.errtheblog.com/plugins/browser/gibberish written by Chris Wanstrath (http://errtheblog.com)
 * Globalize http://www.globalize-rails.org written by too many people to list them here ;)
-* LocalizationSimplified (L10n-simplified) written By Jesper R&#248;nn-Jensen ( http://justaddwater.dk/ )
+* LocalizationSimplified (L10n-simplified) written By Jesper Ronn-Jensen ( http://justaddwater.dk/ )
 
 
-Author:
-=======
+===Author:
 
 Matt Aimonetti  http://railsontherun.com  mattaimonetti AT gmail DOT com
 
 
-Contributors:
-=============
+===Contributors:
 
 your name here if you submit a patch :)
 
 
-More info:
-==========
+===More info:
 
 http://code.google.com/p/globalite/
+
 http://railsontherun.com/globalite
\ No newline at end of file</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-# Install hook code here
+# Nothing needs to be installed
\ No newline at end of file</diff>
      <filename>install.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,6 @@
+# This examples can only be run if the plugin is installed in a Rails app
+# Requires RSpec plugin or gem
+
 require File.dirname(__FILE__) + '/helpers/spec_helper'
 include ActionView::Helpers::DateHelper
 include ActionView::Helpers::NumberHelper</diff>
      <filename>spec/core_localization_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-# Uninstall hook code here
+# Uninstall hook code here but nothing installed so we are just keeping the file blank</diff>
      <filename>uninstall.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>1bc12f62d608407057bd9d1b6d640344aac939e4</id>
    </parent>
  </parents>
  <author>
    <name>mattAimonetti</name>
    <email>mattAimonetti@5bbf81d9-c631-0410-9a1e-896eab8f3419</email>
  </author>
  <url>http://github.com/mattetti/globalite/commit/c206af49097ff3fde7c10c17945272ea93634204</url>
  <id>c206af49097ff3fde7c10c17945272ea93634204</id>
  <committed-date>2007-06-14T19:12:37-07:00</committed-date>
  <authored-date>2007-06-14T19:12:37-07:00</authored-date>
  <message>updated documentation and created rdoc so people can easily read the doc online

git-svn-id: https://globalite.googlecode.com/svn/trunk@16 5bbf81d9-c631-0410-9a1e-896eab8f3419</message>
  <tree>f2c42a114e562cdba82b84b7eda4ae42b2d4928c</tree>
  <committer>
    <name>mattAimonetti</name>
    <email>mattAimonetti@5bbf81d9-c631-0410-9a1e-896eab8f3419</email>
  </committer>
</commit>
