Skip to content

Commit

Permalink
Adds a new date format
Browse files Browse the repository at this point in the history
  • Loading branch information
Frédéric de Villamil committed Oct 18, 2009
1 parent 14f2b7e commit 4100365
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lang/fr_FR.rb
Expand Up @@ -718,6 +718,10 @@
l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", Proc.new {|date|
sprintf( date.strftime("%%s %d %%s %Y %H:%M:%S GMT"), _(date.strftime("%a")), _(date.strftime("%b")).downcase )
}
l.store "%%a, %%d %%b %%Y %%H:%%M", Proc.new {|date|
sprintf( date.strftime("%%s %d %%s %Y %H:%M"), _(date.strftime("%a")), _(date.strftime("%b")).downcase )
}

l.store "%%d. %%b", Proc.new {|date|
sprintf( date.strftime("%d. %%s"), _(date.strftime("%b")).downcase )
}
Expand Down

0 comments on commit 4100365

Please sign in to comment.