-
Notifications
You must be signed in to change notification settings - Fork 9
/
README
149 lines (108 loc) · 5.38 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
localized_dates
=================
The localized_dates plugin takes away some of the pain of localizing dates and times. It leverages the power of the
Rails i18n plugin (http://rails-i18n.org/) to facilitate localization of dates and times.
Installation
=================
To install the plugin, change into an existing Rails application and run
ruby script/plugin install git://github.com/clemens/localized_dates.git
This will download the plugin and store it in vendor/plugins/localized_dates. It will also create a directory named
config/locales and copy three locale files, en.rb, en.yml, and de.yml into this directory. While the "en"
locale files mimic current Rails formats, "de" serves as a demo on how date and time formats can be customized.
Adding a new locale
=================
To add a new locale, simply create a new file in config/locales. You can make your life easier by copying an existing
locale and basing your new locale on it.
Adding new date and time formats
=================
Adding new date and time formats is easy. Take a look at the basic structure of the locale file en.yml:
en:
date:
formats:
default: "%Y-%m-%d"
short: "%e %b"
long: "%B %e, %Y"
only_day: "%e"
time:
formats:
default: "%a %b %d %H:%M:%S %Z %Y"
time: "%H:%M"
short: "%d %b %H:%M"
long: "%B %d, %Y %H:%M"
only_second: "%S"
datetime:
formats:
default: "%Y-%m-%dT%H:%M:%S%Z"
am: 'am'
pm: 'pm'
As you can see, there are two basic entites: date and time. time also has two children, datetime and time_with_zone
that both inherit from :time so you usually don't even need to define them (the "de" locale, for, example doesn't).
If you need more complex Ruby constructs such as lambdas, you still need to define them in a separate Ruby file. Take
a look at the following default formats of en.rb:
{
:en => {
:date => {
:formats => {
:long_ordinal => lambda { |date| "%B #{date.day.ordinalize}, %Y" }
}
},
:time => {
:formats => {
:long_ordinal => lambda { |time| "%B #{time.day.ordinalize}, %Y %H:%M" }
},
:time_with_zone => {
:formats => {
:default => lambda { |time| "%Y-%m-%d %H:%M:%S #{time.formatted_offset(false, 'UTC')}" }
}
}
}
}
}
For example, if you define a time format named release_date, you can use Time.now.to_s(:release_date) in your views.
You should always define a format named default for both, date and time, that serves as the default format. You can use
the default format by simply writing Time.now.to_s without passing an additional parameter.
You can either use a strftime compatible formatting string or a Proc that returns a strftime formatting string as a
date/time format. Take a look at the following examples:
:short => "%d %B, %H:%M" # => "03 August, 22:49"
:long => lambda { |time| "%A, #{time.day}. %B %Y, %H:%M" } # => "Samstag, 3. August 2008, 22:49"
Please note that the use of Procs is slightly different from Rails' original behavior:
old: :long => lambda { |time| time.strftime("%A, #{time.day}. %B %Y, %H:%M") }
new: :long => lambda { |time| "%A, #{time.day}. %B %Y, %H:%M" }
The old way should still work without throwing error messages, however, the dates and times will not be localized.
For further information on strftime formatting, see http://ruby-doc.org/core/classes/Time.html#M000139.
Check installed locales
=================
To display a list of all locales installed in config/locales, you can use the following rake command:
rake locales
Customizing day and month names
=================
If you localize your application for a language other than English, you most likely want to change the default month
and day names to your own countries' names. Here's how it's done:
de:
date:
day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
order: [ :year, :month, :day ]
The only caveat here is that month_names and abbr_month_names *need* nil as their respective first elements. If you
don't use nil as the first element you'll end up with wrong dates (August will become September, etc.). Also note that
the definition of day names starts with Sunday (not Monday).
Changing the default locale
=================
If you want to use a default locale other than "en", you have to tell the i18n plugin the locale you want to use by
default. Simply put the following line in an initializer in config/initializers or include it in your environment.rb:
I18n.default_locale = :de
Contributors
=================
* Aslak Hellesøy (http://blog.aslakhellesoy.com/)
* Andreas Korth
* Andreas Neuhaus
Bugs and Feedback
=================
If you discover any bugs I'd appreciate if you sent me an e-mail to [email protected]. Please include a detailed
description of your problem if you want me to help you.
If you have positive feedback and want to drop me a line that's fine, too! :-)
Copyright (c) 2008 Clemens Kofler <[email protected]>, released under the MIT license
http://www.railway.at
http://github.com/clemens/localized_dates