Chinese strftime

A

Arthur Chan

Hi guys,

I need to translate the strftime into chinese.

I found a tutorial (ref:
http://out-of-pc.blogspot.com/2008/01/ruby-on-rails.html)
<code>
require 'date'
Date::ABBR_DAYNAMES.replace %w(日 一 二 三 四 五 六)
Date::DAYNAMES.replace %w(星期日 星期一 星期二 星期三 星期四 星期五 星期六)
Date::ABBR_MONTHNAMES.replace %w(nil 1月 2月 3月 4月 5月 6月 7月 8月 9月 10月 11月
12月)
Date::MONTHNAMES.replace %w(nil 一月 二月 三月 四月 五月 六月 七月 八月 ä¹æœˆ å月 å一月 å二月)
</code>

It asked us to update the environment.rb.

However, I found "replace can't modify frozen array" error when I
restart the server.

I don't know whether this way to update the frozen array is correct? Is
there any better solution?

My Rails is "2.0.2".

Thanks much
Arthur
 
K

KDr2

well...

1.Date::ABBR_DAYNAMES is a const var, you can do force-assignment:
Date::ABBR_DAYNAMES=3D%w[=E6=97=A5 =E4=B8=80 =E4=BA=8C =E4=B8=89 =E5=9B=9B =
=E4=BA=94 =E5=85=AD]
just ignore the warnings.

2.Date::ABBR_DAYNAMES is a frezon object, you do some hacking to unfreeze
it:

<code>


1. require 'dl/struct'
2.
3. module Internal
4. extend DL::Importable
5.
6. typealias "VALUE",nil,nil,nil,"unsigned long"
7. typealias "ID",nil,nil,nil,"unsigned long"
8.
9. Basic=3D["long flags","VALUE klass"]
10. RBasic=3Dstruct Basic
11. RObject=3Dstruct(Basic+["st_table *iv_tbl"])
12.
13. FL_FREEZE=3D1<<10
14. end
15.
16. class Object
17. def immediate?
18. [Fixnum,Symbol,NilClass,TrueClass,FalseClass].any?{ |klass| klas=
s
=3D=3D=3Dself}
19. end
20.
21. def unfreeze
22. return self if immediate?
23. Internal::RObject.new(DL::ptrData.new(self.object_id * 2)).flags=
&=3D ~
Internal::FL_FREEZE
24. self
25. end
26.
27. end
28.
29. Date::ABBR_DAYNAMES.unfreeze
30. Date::ABBR_DAYNAMES.replace.....


</code>

But... I think it's much easizer *changing you local(set it to zh_CN.utf-8=
)
*to make strftime return chinese.


Hi guys,

I need to translate the strftime into chinese.

I found a tutorial (ref:
http://out-of-pc.blogspot.com/2008/01/ruby-on-rails.html)
<code>
require 'date'
Date::ABBR_DAYNAMES.replace %w(=E6=97=A5 =E4=B8=80 =E4=BA=8C =E4=B8=89 = =E5=9B=9B =E4=BA=94 =E5=85=AD)
Date::DAYNAMES.replace %w(=E6=98=9F=E6=9C=9F=E6=97=A5 =E6=98=9F=E6=9C=9F=
=E4=B8=80 =E6=98=9F=E6=9C=9F=E4=BA=8C =E6=98=9F=E6=9C=9F=E4=B8=89 =E6=98=9F=
=E6=9C=9F=E5=9B=9B =E6=98=9F=E6=9C=9F=E4=BA=94 =E6=98=9F=E6=9C=9F=E5=85=AD)
Date::ABBR_MONTHNAMES.replace %w(nil 1=E6=9C=88 2=E6=9C=88 3=E6=9C=88 4=
=E6=9C=88 5=E6=9C=88 6=E6=9C=88 7=E6=9C=88 8=E6=9C=88 9=E6=9C=88 10=E6=9C=
=88 11=E6=9C=88
12=E6=9C=88)
Date::MONTHNAMES.replace %w(nil =E4=B8=80=E6=9C=88 =E4=BA=8C=E6=9C=88 =E4=
=B8=89=E6=9C=88 =E5=9B=9B=E6=9C=88 =E4=BA=94=E6=9C=88 =E5=85=AD=E6=9C=88 =
=E4=B8=83=E6=9C=88 =E5=85=AB=E6=9C=88 =E4=B9=9D=E6=9C=88 =E5=8D=81=E6=9C=88=
=E5=8D=81=E4=B8=80=E6=9C=88 =E5=8D=81=E4=BA=8C=E6=9C=88)
</code>

It asked us to update the environment.rb.

However, I found "replace can't modify frozen array" error when I
restart the server.

I don't know whether this way to update the frozen array is correct? Is
there any better solution?

My Rails is "2.0.2".

Thanks much
Arthur


--=20
Best Regards,
-- KDr2, at x-macro.com.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,774
Messages
2,569,598
Members
45,152
Latest member
LorettaGur
Top