[interchange-i18n] more Hebrew locale issues

Chen Naor chen at lilux.co.il
Tue Aug 28 17:53:01 UTC 2001


Hello List,

I found more problems while translating the UI to Hebrew.

As with MiniMate MiniVend's admin interface, there are characters encode
decode problems.
In general where there are lines:
HTML::Entities::encode($foo);
In this case you should add before:
my $DECODE_CHARS = qq{[<"\000-\037};
and change the line to: HTML::Entities::encode($foo, $DECODE_CHARS);
And there are the decode lines:
my $DECODE_CHARS = qq{[<"\000-\037\177-\377};
that have to be changed to:
my $DECODE_CHARS = qq{[<"\000-\037};

I'm working on the changes but it will take some time.
I thought it would be wise to give some starting point to those who want to
work on the subject.

Best regards

Chen











More information about the interchange-i18n mailing list