To format a Date in English I do:
Date.today.to_s(:long_ordinal) # => September 28th, 2011
How could I format a date in Russian (or any other language) ?
|
To format a
How could I format a date in Russian (or any other language) ?
| ||||
feedback
|
|
There is the Internationalization API in Rails that explains how to do that. See for example section 3.2 Adding Date/Time Formats.
You can then add for your locale (russian?) a file
See the section 4.4 Setting and Passing a Locale how to set the locale. | ||||
|
feedback
|
|
Date formats and locales are defined in ActiveSupport. You can add these values to your locale file and modify them to fit your requirements. | ||||
|
feedback
|
|
Use strftime. Example:
You set the %-symbols according to how you want the date to format. See the documentation I linked to see what symbols you can use. | |||||
feedback
|