Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 373
- Log:
Initial import of Radiant 0.9.1, which is now packaged as a gem. This is an
import of the tagged 0.9.1 source checked out from GitHub, which isn't quite
the same as the gem distribution - but it doesn't seem to be available in an
archived form and the installed gem already has modifications, so this is
the closest I can get.
- Author:
- rool
- Date:
- Mon Mar 21 13:40:05 +0000 2011
- Size:
- 1174 Bytes
1 | Description: |
2 | The language_extension generator creates stubs for a new Radiant translation. |
3 | |
4 | The generator takes an language abbreviation as its argument. The extension name may be |
5 | given as a language abbreviation 'en' or a localized abbreviation 'en-GB' and should not |
6 | be prefixed with 'i18n' or suffixed with 'Extension'. |
7 | |
8 | The generator creates an extension directory in vendor/extensions that includes |
9 | i18n_<extension_name>_extension.rb, README and Rakefile files as well as lib, task, |
10 | and test directories. |
11 | |
12 | Example: |
13 | ./script/generate language_extension fr |
14 | |
15 | This will create: |
16 | vendor/extensions/i18n_fr/config/locales/fr.yml |
17 | vendor/extensions/i18n_fr/lib/tasks |
18 | vendor/extensions/i18n_fr/README |
19 | vendor/extensions/i18n_fr/i18n_fr_extension.rb |
20 | vendor/extensions/i18n_fr/lib/tasks/i18n_fr_extension_tasks.rake |
21 | vendor/extensions/i18n_fr/spec/controllers |
22 | vendor/extensions/i18n_fr/spec/models |
23 | vendor/extensions/i18n_fr/spec/views |
24 | vendor/extensions/i18n_fr/spec/helpers |
25 | vendor/extensions/i18n_fr/Rakefile |
26 | vendor/extensions/i18n_fr/spec/spec_helper.rb |
27 | vendor/extensions/i18n_fr/spec/spec.opts |