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 #======================================================================
 
  41 use List::Util qw(first);
 
  42 use List::MoreUtils qw(any);
 
  51 my %locales_by_country;
 
  54   $main::lxdebug->enter_sub();
 
  56   my ($type, $country) = @_;
 
  58   $country ||= $::lx_office_conf{system}->{language};
 
  62   if (!$locales_by_country{$country}) {
 
  66     $self->_init($country);
 
  68     $locales_by_country{$country} = $self;
 
  71   $main::lxdebug->leave_sub();
 
  73   return $locales_by_country{$country}
 
  80   $self->{countrycode} = $country;
 
  82   if ($country && -d "locale/$country") {
 
  84     if (open(IN, "<", "locale/$country/all")) {
 
  85       my $code = join("", <IN>);
 
  91   binmode STDOUT, ":utf8";
 
  92   binmode STDERR, ":utf8";
 
  94   $self->{iconv}            = SL::Iconv->new('UTF-8',       'UTF-8');
 
  95   $self->{iconv_reverse}    = SL::Iconv->new('UTF-8',       'UTF-8');
 
  96   $self->{iconv_english}    = SL::Iconv->new('ASCII',       'UTF-8');
 
  97   $self->{iconv_iso8859}    = SL::Iconv->new('ISO-8859-15', 'UTF-8');
 
  98   $self->{iconv_to_iso8859} = SL::Iconv->new('UTF-8',       'ISO-8859-15');
 
  99   $self->{iconv_utf8}       = SL::Iconv->new('UTF-8',       'UTF-8');
 
 101   $self->_read_special_chars_file($country);
 
 103   push @{ $self->{LONG_MONTH} },
 
 104     ("January",   "February", "March",    "April",
 
 105      "May ",      "June",     "July",     "August",
 
 106      "September", "October",  "November", "December");
 
 107   push @{ $self->{SHORT_MONTH} },
 
 108     (qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec));
 
 118   for (my $i = 0; $i < length $str; $i++) {
 
 119     my $char = substr $str, $i, 1;
 
 125       } elsif ($char eq 'r') {
 
 128       } elsif ($char eq 's') {
 
 131       } elsif ($char eq 'x') {
 
 132         $new_str .= chr(hex(substr($str, $i + 1, 2)));
 
 141     } elsif ($char eq '\\') {
 
 152 sub _read_special_chars_file {
 
 156   if (! -f "locale/$country/special_chars") {
 
 157     $self->{special_chars_map} = {};
 
 161   $self->{special_chars_map} = Inifile->new("locale/$country/special_chars", 'verbatim' => 1);
 
 163   foreach my $format (keys %{ $self->{special_chars_map} }) {
 
 164     next if (($format eq 'FILE') || ($format eq 'ORDER') || (ref $self->{special_chars_map}->{$format} ne 'HASH'));
 
 166     if ($format ne lc $format) {
 
 167       $self->{special_chars_map}->{lc $format} = $self->{special_chars_map}->{$format};
 
 168       delete $self->{special_chars_map}->{$format};
 
 169       $format = lc $format;
 
 172     my $scmap = $self->{special_chars_map}->{$format};
 
 173     my $order = $self->{iconv}->convert($scmap->{order});
 
 174     delete $scmap->{order};
 
 176     foreach my $key (keys %{ $scmap }) {
 
 177       $scmap->{$key} = $self->_handle_markup($self->{iconv}->convert($scmap->{$key}));
 
 179       my $new_key    = $self->_handle_markup($self->{iconv}->convert($key));
 
 181       if ($key ne $new_key) {
 
 182         $scmap->{$new_key} = $scmap->{$key};
 
 183         delete $scmap->{$key};
 
 187     $self->{special_chars_map}->{"${format}-reverse"}          = { reverse %{ $scmap } };
 
 189     $scmap->{order}                                            = [ map { $self->_handle_markup($_) } split m/\s+/, $order ];
 
 190     $self->{special_chars_map}->{"${format}-reverse"}->{order} = [ grep { $_ } map { $scmap->{$_} } reverse @{ $scmap->{order} } ];
 
 198   return $text->translated if (ref($text) || '') eq 'SL::Locale::String';
 
 200   if ($self->{texts}->{$text}) {
 
 201     $text = $self->{iconv}->convert($self->{texts}->{$text});
 
 203     $text = $self->{iconv_english}->convert($text);
 
 207     $text = Form->format_string($text, @_);
 
 214   my ($self, $requested_lang) = @_;
 
 216   my $requested_locale;
 
 217   $requested_locale = 'de' if $requested_lang =~ m/^_(de|deu|ger)/i;
 
 218   $requested_locale = 'en' if $requested_lang =~ m/^_(en|uk|us|gr)/i;
 
 219   $requested_locale = 'fr' if $requested_lang =~ m/^_fr/i;
 
 220   $requested_locale ||= 'de';
 
 222   return $requested_locale;
 
 226   $main::lxdebug->enter_sub();
 
 228   my ($self, $text) = @_;
 
 229   my $text_rev      = lc $self->{iconv_reverse}->convert($text);
 
 230   $text_rev         =~ s/[\s\-]+/_/g;
 
 232   if (!$self->{texts_reverse}) {
 
 233     $self->{texts_reverse} = { };
 
 234     while (my ($original, $translation) = each %{ $self->{texts} }) {
 
 235       $original    =  lc $original;
 
 236       $original    =~ s/[^a-z0-9]/_/g;
 
 237       $original    =~ s/_+/_/g;
 
 239       $translation =  lc $translation;
 
 240       $translation =~ s/[\s\-]+/_/g;
 
 242       $self->{texts_reverse}->{$translation} ||= [ ];
 
 243       push @{ $self->{texts_reverse}->{$translation} }, $original;
 
 248   $sub_name   = first { defined(&{ "::${_}" }) } @{ $self->{texts_reverse}->{$text_rev} } if $self->{texts_reverse}->{$text_rev};
 
 249   $sub_name ||= $text_rev if ($text_rev =~ m/^[a-z][a-z0-9_]+$/) && defined &{ "::${text_rev}" };
 
 251   $main::form->error("$text not defined in locale/$self->{countrycode}/all") if !$sub_name;
 
 253   $main::lxdebug->leave_sub();
 
 259   $main::lxdebug->enter_sub();
 
 261   my ($self, $myconfig, $date, $longformat) = @_;
 
 264     $main::lxdebug->leave_sub();
 
 269   my $longmonth = ($longformat) ? 'LONG_MONTH' : 'SHORT_MONTH';
 
 271   my ($spc, $yy, $mm, $dd);
 
 274   $spc = $myconfig->{dateformat};
 
 276   $spc = substr($spc, 1, 1);
 
 279     if ($myconfig->{dateformat} =~ /^yy/) {
 
 280       ($yy, $mm, $dd) = split /\D/, $date;
 
 282     if ($myconfig->{dateformat} =~ /^mm/) {
 
 283       ($mm, $dd, $yy) = split /\D/, $date;
 
 285     if ($myconfig->{dateformat} =~ /^dd/) {
 
 286       ($dd, $mm, $yy) = split /\D/, $date;
 
 289     $date = substr($date, 2);
 
 290     ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
 
 295   $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
 296   $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
 298   if ($myconfig->{dateformat} =~ /^dd/) {
 
 299     if (defined $longformat && $longformat == 0) {
 
 301       $dd = "0$dd" if ($dd < 10);
 
 302       $mm = "0$mm" if ($mm < 10);
 
 303       $longdate = "$dd$spc$mm$spc$yy";
 
 306       $longdate .= ($spc eq '.') ? ". " : " ";
 
 307       $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
 
 309   } elsif ($myconfig->{dateformat} eq "yyyy-mm-dd") {
 
 311     # Use German syntax with the ISO date style "yyyy-mm-dd" because
 
 312     # kivitendo is mainly used in Germany or German speaking countries.
 
 313     if (defined $longformat && $longformat == 0) {
 
 315       $dd = "0$dd" if ($dd < 10);
 
 316       $mm = "0$mm" if ($mm < 10);
 
 317       $longdate = "$yy-$mm-$dd";
 
 320       $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
 
 323     if (defined $longformat && $longformat == 0) {
 
 325       $dd = "0$dd" if ($dd < 10);
 
 326       $mm = "0$mm" if ($mm < 10);
 
 327       $longdate = "$mm$spc$dd$spc$yy";
 
 329       $longdate = &text($self, $self->{$longmonth}[$mm]) . " $dd, $yy";
 
 333   $main::lxdebug->leave_sub();
 
 339   $main::lxdebug->enter_sub(2);
 
 341   my ($self, $myconfig, $date, $longformat) = @_;
 
 342   my ($spc, $yy, $mm, $dd);
 
 345     $main::lxdebug->leave_sub(2);
 
 350   $spc = $myconfig->{dateformat};
 
 352   $spc = substr($spc, 1, 1);
 
 355     if ($myconfig->{dateformat} =~ /^yy/) {
 
 356       ($yy, $mm, $dd) = split /\D/, $date;
 
 357     } elsif ($myconfig->{dateformat} =~ /^mm/) {
 
 358       ($mm, $dd, $yy) = split /\D/, $date;
 
 359     } elsif ($myconfig->{dateformat} =~ /^dd/) {
 
 360       ($dd, $mm, $yy) = split /\D/, $date;
 
 363     $date = substr($date, 2);
 
 364     ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
 
 369   $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
 370   $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
 372   $main::lxdebug->leave_sub(2);
 
 373   return ($yy, $mm, $dd);
 
 376 sub parse_date_to_object {
 
 378   my ($yy, $mm, $dd) = $self->parse_date(@_);
 
 380   return $yy && $mm && $dd ? DateTime->new(year => $yy, month => $mm, day => $dd) : undef;
 
 383 sub format_date_object {
 
 384   my ($self, $datetime, %params)    = @_;
 
 386   my $format             =  $::myconfig{dateformat} || 'yyyy-mm-dd';
 
 387   $format                =~ s/yy(?:yy)?/\%Y/;
 
 388   $format                =~ s/mm/\%m/;
 
 389   $format                =~ s/dd/\%d/;
 
 391   my $precision          =  $params{precision} || 'day';
 
 392   $precision             =~ s/s$//;
 
 393   my %precision_spec_map = (
 
 394     second => '%H:%M:%S',
 
 399   $format .= ' ' . $precision_spec_map{$precision} if $precision_spec_map{$precision};
 
 401   return $datetime->strftime($format);
 
 405   $main::lxdebug->enter_sub(2);
 
 407   my ($self, $myconfig, $date, $output_format, $longformat) = @_;
 
 409   $main::lxdebug->leave_sub(2) and return "" unless ($date);
 
 411   my ($yy, $mm, $dd) = $self->parse_date($myconfig, $date);
 
 413   $output_format =~ /d+/;
 
 414   substr($output_format, $-[0], $+[0] - $-[0]) =
 
 415     sprintf("%0" . (length($&)) . "d", $dd);
 
 417   $output_format =~ /m+/;
 
 418   substr($output_format, $-[0], $+[0] - $-[0]) =
 
 419     sprintf("%0" . (length($&)) . "d", $mm);
 
 421   $output_format =~ /y+/;
 
 422   substr($output_format, $-[0], $+[0] - $-[0]) = $yy;
 
 424   $main::lxdebug->leave_sub(2);
 
 426   return $output_format;
 
 430   $main::lxdebug->enter_sub();
 
 433   my $myconfig = shift;
 
 437   my $yy_len   = shift || 4;
 
 439   ($yy, $mm, $dd) = ($yy->year, $yy->month, $yy->day) if ref $yy eq 'DateTime';
 
 441   $main::lxdebug->leave_sub() and return "" unless $yy && $mm && $dd;
 
 443   $yy = $yy % 100 if 2 == $yy_len;
 
 445   my $format = ref $myconfig eq '' ? "$myconfig" : $myconfig->{dateformat};
 
 446   $format =~ s{ d+ }{ sprintf("%0" . (length($&)) . "d", $dd) }gex;
 
 447   $format =~ s{ m+ }{ sprintf("%0" . (length($&)) . "d", $mm) }gex;
 
 448   $format =~ s{ y+ }{ sprintf("%0${yy_len}d",            $yy) }gex;
 
 450   $main::lxdebug->leave_sub();
 
 455 sub quote_special_chars {
 
 457   my $format = lc shift;
 
 460   if ($self->{special_chars_map} && $self->{special_chars_map}->{$format} && $self->{special_chars_map}->{$format}->{order}) {
 
 461     my $scmap = $self->{special_chars_map}->{$format};
 
 463     map { $string =~ s/\Q${_}\E/$scmap->{$_}/g } @{ $scmap->{order} };
 
 469 sub unquote_special_chars {
 
 473   return $self->quote_special_chars("${format}-reverse", shift);
 
 476 sub remap_special_chars {
 
 478   my $src_format = shift;
 
 479   my $dst_format = shift;
 
 481   return $self->quote_special_chars($dst_format, $self->quote_special_chars("${src_format}-reverse", shift));
 
 487   return !!$self->{raw_io_active};
 
 495   $self->{raw_io_active} = 1;
 
 498   binmode $fh, ":utf8";
 
 499   $self->{raw_io_active} = 0;
 
 502 sub set_numberformat_wo_thousands_separator {
 
 504   my $myconfig = shift || \%::myconfig;
 
 506   $self->{saved_numberformat} = $myconfig->{numberformat};
 
 507   $myconfig->{numberformat}   =~ s/^1[,\.]/1/;
 
 510 sub restore_numberformat {
 
 512   my $myconfig = shift || \%::myconfig;
 
 514   $myconfig->{numberformat} = $self->{saved_numberformat} if $self->{saved_numberformat};
 
 517 sub get_local_time_zone {
 
 519   $self->{local_time_zone} ||= DateTime::TimeZone->new(name => 'local');
 
 520   return $self->{local_time_zone};
 
 524   my ($self, $items, %params) = @_;
 
 527   $params{conjunction} ||= $::locale->text('and');
 
 528   my $num                = scalar @{ $items };
 
 530   return 0 == $num ? ''
 
 531        : 1 == $num ? $items->[0]
 
 532        :             join(', ', @{ $items }[0..$num - 2]) . ' ' . $params{conjunction} . ' ' . $items->[$num - 1];
 
 545 Locale - Functions for dealing with locale-dependent information
 
 552   my $locale = Locale->new('de');
 
 553   my $now    = DateTime->now_local;
 
 554   print "Current date and time: ", $::locale->format_date_object($now, precision => 'second'), "\n";
 
 570 TODO: Describe findsub
 
 574 TODO: Describe format_date
 
 576 =item C<format_date_object $datetime, %params>
 
 578 Formats the C<$datetime> object accoring to the user's locale setting.
 
 580 The parameter C<precision> can control whether or not the time
 
 581 component is formatted as well:
 
 587 Only format the year, month and day. This is also the default.
 
 591 Add the hour to the date.
 
 595 Add hour:minute to the date.
 
 599 Add hour:minute:second to the date.
 
 603 =item C<get_local_time_zone>
 
 605 TODO: Describe get_local_time_zone
 
 607 =item C<lang_to_locale>
 
 609 TODO: Describe lang_to_locale
 
 617 TODO: Describe parse_date
 
 619 =item C<parse_date_to_object>
 
 621 TODO: Describe parse_date_to_object
 
 623 =item C<quote_special_chars>
 
 625 TODO: Describe quote_special_chars
 
 627 =item C<raw_io_active>
 
 629 TODO: Describe raw_io_active
 
 631 =item C<reformat_date>
 
 633 TODO: Describe reformat_date
 
 635 =item C<remap_special_chars>
 
 637 TODO: Describe remap_special_chars
 
 639 =item C<restore_numberformat>
 
 641 TODO: Describe restore_numberformat
 
 643 =item C<set_numberformat_wo_thousands_separator>
 
 645 TODO: Describe set_numberformat_wo_thousands_separator
 
 651 =item C<unquote_special_chars>
 
 653 TODO: Describe unquote_special_chars
 
 657 TODO: Describe with_raw_io
 
 667 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>