1 #====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger Accounting
 
   9 # Copyright (C) 1998-2002
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  15 # Contributors: Thomas Bayen <bayen@gmx.de>
 
  16 #               Antti Kaihola <akaihola@siba.fi>
 
  17 #               Moritz Bunkus (tex code)
 
  19 # This program is free software; you can redistribute it and/or modify
 
  20 # it under the terms of the GNU General Public License as published by
 
  21 # the Free Software Foundation; either version 2 of the License, or
 
  22 # (at your option) any later version.
 
  24 # This program is distributed in the hope that it will be useful,
 
  25 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  26 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  27 # GNU General Public License for more details.
 
  28 # You should have received a copy of the GNU General Public License
 
  29 # along with this program; if not, write to the Free Software
 
  30 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  31 #======================================================================
 
  33 # Translations and number/date formatting
 
  35 #======================================================================
 
  48   $main::lxdebug->enter_sub();
 
  50   my ($type, $country, $NLS_file) = @_;
 
  59   $self->_init($country, $NLS_file);
 
  61   $main::lxdebug->leave_sub();
 
  71   $self->{charset}     = Common::DEFAULT_CHARSET;
 
  72   $self->{countrycode} = $country;
 
  73   $self->{NLS_file}    = $NLS_file;
 
  75   if ($country && -d "locale/$country") {
 
  77     if (open(IN, "<", "locale/$country/$NLS_file")) {
 
  78       my $code = join("", <IN>);
 
  83     if (open IN, "<", "locale/$country/charset") {
 
  84       $self->{charset} = <IN>;
 
  87       chomp $self->{charset};
 
  91   my $db_charset            = $main::dbcharset || Common::DEFAULT_CHARSET;
 
  93   $self->{iconv}            = Text::Iconv->new($self->{charset}, $db_charset);
 
  94   $self->{iconv_reverse}    = Text::Iconv->new($db_charset,      $self->{charset});
 
  95   $self->{iconv_english}    = Text::Iconv->new('ASCII',          $db_charset);
 
  96   $self->{iconv_iso8859}    = Text::Iconv->new('ISO-8859-15',    $db_charset);
 
  97   $self->{iconv_to_iso8859} = Text::Iconv->new($db_charset,      'ISO-8859-15');
 
  99   $self->_read_special_chars_file($country);
 
 101   push @{ $self->{LONG_MONTH} },
 
 102     ("January",   "February", "March",    "April",
 
 103      "May ",      "June",     "July",     "August",
 
 104      "September", "October",  "November", "December");
 
 105   push @{ $self->{SHORT_MONTH} },
 
 106     (qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec));
 
 116   for (my $i = 0; $i < length $str; $i++) {
 
 117     my $char = substr $str, $i, 1;
 
 123       } elsif ($char eq 'r') {
 
 126       } elsif ($char eq 's') {
 
 129       } elsif ($char eq 'x') {
 
 130         $new_str .= chr(hex(substr($str, $i + 1, 2)));
 
 139     } elsif ($char eq '\\') {
 
 150 sub _read_special_chars_file {
 
 154   if (! -f "locale/$country/special_chars") {
 
 155     $self->{special_chars_map} = {};
 
 159   $self->{special_chars_map} = Inifile->new("locale/$country/special_chars", 'verbatim' => 1);
 
 161   foreach my $format (keys %{ $self->{special_chars_map} }) {
 
 162     next if (($format eq 'FILE') || ($format eq 'ORDER') || (ref $self->{special_chars_map}->{$format} ne 'HASH'));
 
 164     if ($format ne lc $format) {
 
 165       $self->{special_chars_map}->{lc $format} = $self->{special_chars_map}->{$format};
 
 166       delete $self->{special_chars_map}->{$format};
 
 167       $format = lc $format;
 
 170     my $scmap = $self->{special_chars_map}->{$format};
 
 171     my $order = $self->{iconv}->convert($scmap->{order});
 
 172     delete $scmap->{order};
 
 174     foreach my $key (keys %{ $scmap }) {
 
 175       $scmap->{$key} = $self->_handle_markup($self->{iconv}->convert($scmap->{$key}));
 
 177       my $new_key    = $self->_handle_markup($self->{iconv}->convert($key));
 
 179       if ($key ne $new_key) {
 
 180         $scmap->{$new_key} = $scmap->{$key};
 
 181         delete $scmap->{$key};
 
 185     $self->{special_chars_map}->{"${format}-reverse"}          = { reverse %{ $scmap } };
 
 187     $scmap->{order}                                            = [ map { $self->_handle_markup($_) } split m/\s+/, $order ];
 
 188     $self->{special_chars_map}->{"${format}-reverse"}->{order} = [ grep { $_ } map { $scmap->{$_} } reverse @{ $scmap->{order} } ];
 
 196   if (exists $self->{texts}->{$text}) {
 
 197     $text = $self->{iconv}->convert($self->{texts}->{$text});
 
 199     $text = $self->{iconv_english}->convert($text);
 
 203     $text = Form->format_string($text, @_);
 
 210   $main::lxdebug->enter_sub();
 
 212   my ($self, $text) = @_;
 
 213   my $text_rev      = $self->{iconv_reverse}->convert($text);
 
 215   if (exists $self->{subs}{$text_rev}) {
 
 216     $text = $self->{subs}{$text_rev};
 
 217   } elsif ($self->{countrycode} && $self->{NLS_file}) {
 
 218     $main::form->error("$text not defined in locale/$self->{countrycode}/$self->{NLS_file}");
 
 221   $main::lxdebug->leave_sub();
 
 227   $main::lxdebug->enter_sub();
 
 229   my ($self, $myconfig, $date, $longformat) = @_;
 
 232   my $longmonth = ($longformat) ? 'LONG_MONTH' : 'SHORT_MONTH';
 
 234   my ($spc, $yy, $mm, $dd);
 
 239     $spc = $myconfig->{dateformat};
 
 241     $spc = substr($spc, 1, 1);
 
 244       if ($myconfig->{dateformat} =~ /^yy/) {
 
 245         ($yy, $mm, $dd) = split /\D/, $date;
 
 247       if ($myconfig->{dateformat} =~ /^mm/) {
 
 248         ($mm, $dd, $yy) = split /\D/, $date;
 
 250       if ($myconfig->{dateformat} =~ /^dd/) {
 
 251         ($dd, $mm, $yy) = split /\D/, $date;
 
 254       $date = substr($date, 2);
 
 255       ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
 
 260     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
 261     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
 263     if ($myconfig->{dateformat} =~ /^dd/) {
 
 264       if (defined $longformat && $longformat == 0) {
 
 266         $dd = "0$dd" if ($dd < 10);
 
 267         $mm = "0$mm" if ($mm < 10);
 
 268         $longdate = "$dd$spc$mm$spc$yy";
 
 271         $longdate .= ($spc eq '.') ? ". " : " ";
 
 272         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
 
 274     } elsif ($myconfig->{dateformat} eq "yyyy-mm-dd") {
 
 276       # Use German syntax with the ISO date style "yyyy-mm-dd" because
 
 277       # Lx-Office is mainly used in Germany or German speaking countries.
 
 278       if (defined $longformat && $longformat == 0) {
 
 280         $dd = "0$dd" if ($dd < 10);
 
 281         $mm = "0$mm" if ($mm < 10);
 
 282         $longdate = "$yy-$mm-$dd";
 
 285         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
 
 288       if (defined $longformat && $longformat == 0) {
 
 290         $dd = "0$dd" if ($dd < 10);
 
 291         $mm = "0$mm" if ($mm < 10);
 
 292         $longdate = "$mm$spc$dd$spc$yy";
 
 294         $longdate = &text($self, $self->{$longmonth}[$mm]) . " $dd, $yy";
 
 300   $main::lxdebug->leave_sub();
 
 306   $main::lxdebug->enter_sub();
 
 308   my ($self, $myconfig, $date, $longformat) = @_;
 
 309   my ($spc, $yy, $mm, $dd);
 
 312     $main::lxdebug->leave_sub();
 
 317   $spc = $myconfig->{dateformat};
 
 319   $spc = substr($spc, 1, 1);
 
 322     if ($myconfig->{dateformat} =~ /^yy/) {
 
 323       ($yy, $mm, $dd) = split /\D/, $date;
 
 324     } elsif ($myconfig->{dateformat} =~ /^mm/) {
 
 325       ($mm, $dd, $yy) = split /\D/, $date;
 
 326     } elsif ($myconfig->{dateformat} =~ /^dd/) {
 
 327       ($dd, $mm, $yy) = split /\D/, $date;
 
 330     $date = substr($date, 2);
 
 331     ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
 
 336   $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
 337   $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
 339   $main::lxdebug->leave_sub();
 
 340   return ($yy, $mm, $dd);
 
 344   $main::lxdebug->enter_sub();
 
 346   my ($self, $myconfig, $date, $output_format, $longformat) = @_;
 
 348   $main::lxdebug->leave_sub() and return "" unless ($date);
 
 350   my ($yy, $mm, $dd) = $self->parse_date($myconfig, $date);
 
 352   $output_format =~ /d+/;
 
 353   substr($output_format, $-[0], $+[0] - $-[0]) =
 
 354     sprintf("%0" . (length($&)) . "d", $dd);
 
 356   $output_format =~ /m+/;
 
 357   substr($output_format, $-[0], $+[0] - $-[0]) =
 
 358     sprintf("%0" . (length($&)) . "d", $mm);
 
 360   $output_format =~ /y+/;
 
 361   if (length($&) == 2) {
 
 362     $yy -= $yy >= 2000 ? 2000 : 1900;
 
 364   substr($output_format, $-[0], $+[0] - $-[0]) =
 
 365     sprintf("%0" . (length($&)) . "d", $yy);
 
 367   $main::lxdebug->leave_sub();
 
 369   return $output_format;
 
 372 sub quote_special_chars {
 
 374   my $format = lc shift;
 
 377   if ($self->{special_chars_map} && $self->{special_chars_map}->{$format} && $self->{special_chars_map}->{$format}->{order}) {
 
 378     my $scmap = $self->{special_chars_map}->{$format};
 
 380     map { $string =~ s/\Q${_}\E/$scmap->{$_}/g } @{ $scmap->{order} };
 
 386 sub unquote_special_chars {
 
 390   return $self->quote_special_chars("${format}-reverse", shift);
 
 393 sub remap_special_chars {
 
 395   my $src_format = shift;
 
 396   my $dst_format = shift;
 
 398   return $self->quote_special_chars($dst_format, $self->quote_special_chars("${src_format}-reverse", shift));