Korrekturmodul für das Hauptbuch implementiert
[kivitendo-erp.git] / SL / Locale.pm
1 #====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 1998-2002
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 # Contributors: Thomas Bayen <bayen@gmx.de>
16 #               Antti Kaihola <akaihola@siba.fi>
17 #               Moritz Bunkus (tex code)
18 #
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.
23 #
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 #======================================================================
32 #
33 # Translations and number/date formatting
34 #
35 #======================================================================
36
37 package Locale;
38
39 use Text::Iconv;
40
41 use SL::LXDebug;
42 use SL::Common;
43 use SL::Inifile;
44
45 sub new {
46   $main::lxdebug->enter_sub();
47
48   my ($type, $country, $NLS_file) = @_;
49
50   my $self = {};
51   bless $self, $type;
52
53   $country  =~ s|.*/||;
54   $country  =~ s|\.||g;
55   $NLS_file =~ s|.*/||;
56
57   $self->_init($country, $NLS_file);
58
59   $main::lxdebug->leave_sub();
60
61   return $self;
62 }
63
64 sub _init {
65   my $self     = shift;
66   my $country  = shift;
67   my $NLS_file = shift;
68
69   if ($country && -d "locale/$country") {
70     local *IN;
71     $self->{countrycode} = $country;
72     if (open(IN, "<", "locale/$country/$NLS_file")) {
73       my $code = join("", <IN>);
74       eval($code);
75       close(IN);
76     }
77
78     if (open IN, "<", "locale/$country/charset") {
79       $self->{charset} = <IN>;
80       close IN;
81
82       chomp $self->{charset};
83
84     } else {
85       $self->{charset} = Common::DEFAULT_CHARSET;
86     }
87
88     my $db_charset            = $main::dbcharset || Common::DEFAULT_CHARSET;
89
90     $self->{iconv}            = Text::Iconv->new($self->{charset}, $db_charset);
91     $self->{iconv_reverse}    = Text::Iconv->new($db_charset,      $self->{charset});
92     $self->{iconv_english}    = Text::Iconv->new('ASCII',          $db_charset);
93     $self->{iconv_iso8859}    = Text::Iconv->new('ISO-8859-15',    $db_charset);
94     $self->{iconv_to_iso8859} = Text::Iconv->new($db_charset,      'ISO-8859-15');
95
96     $self->_read_special_chars_file($country);
97   }
98
99   $self->{NLS_file} = $NLS_file;
100
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));
107 }
108
109 sub _handle_markup {
110   my $self    = shift;
111   my $str     = shift;
112
113   my $escaped = 0;
114   my $new_str = '';
115
116   for (my $i = 0; $i < length $str; $i++) {
117     my $char = substr $str, $i, 1;
118
119     if ($escaped) {
120       if ($char eq 'n') {
121         $new_str .= "\n";
122
123       } elsif ($char eq 'r') {
124         $new_str .= "\r";
125
126       } elsif ($char eq 's') {
127         $new_str .= ' ';
128
129       } elsif ($char eq 'x') {
130         $new_str .= chr(hex(substr($str, $i + 1, 2)));
131         $i       += 2;
132
133       } else {
134         $new_str .= $char;
135       }
136
137       $escaped  = 0;
138
139     } elsif ($char eq '\\') {
140       $escaped  = 1;
141
142     } else {
143       $new_str .= $char;
144     }
145   }
146
147   return $new_str;
148 }
149
150 sub _read_special_chars_file {
151   my $self    = shift;
152   my $country = shift;
153
154   if (! -f "locale/$country/special_chars") {
155     $self->{special_chars_map} = {};
156     return;
157   }
158
159   $self->{special_chars_map} = Inifile->new("locale/$country/special_chars", 'verbatim' => 1);
160
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'));
163
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;
168     }
169
170     my $scmap = $self->{special_chars_map}->{$format};
171     my $order = $self->{iconv}->convert($scmap->{order});
172     delete $scmap->{order};
173
174     foreach my $key (keys %{ $scmap }) {
175       $scmap->{$key} = $self->_handle_markup($self->{iconv}->convert($scmap->{$key}));
176
177       my $new_key    = $self->_handle_markup($self->{iconv}->convert($key));
178
179       if ($key ne $new_key) {
180         $scmap->{$new_key} = $scmap->{$key};
181         delete $scmap->{$key};
182       }
183     }
184
185     $self->{special_chars_map}->{"${format}-reverse"}          = { reverse %{ $scmap } };
186
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} } ];
189   }
190 }
191
192 sub text {
193   my $self = shift;
194   my $text = shift;
195
196   if (exists $self->{texts}->{$text}) {
197     $text = $self->{iconv}->convert($self->{texts}->{$text});
198   } else {
199     $text = $self->{iconv_english}->convert($text);
200   }
201
202   if (@_) {
203     $text = Form->format_string($text, @_);
204   }
205
206   return $text;
207 }
208
209 sub findsub {
210   $main::lxdebug->enter_sub();
211
212   my ($self, $text) = @_;
213   my $text_rev      = $self->{iconv_reverse}->convert($text);
214
215   if (exists $self->{subs}{$text_rev}) {
216     $text = $self->{subs}{$text_rev};
217   } elsif ($self->{countrycode} && $self->{NLS_file}) {
218     Form->error("$text not defined in locale/$self->{countrycode}/$self->{NLS_file}");
219   }
220
221   $main::lxdebug->leave_sub();
222
223   return $text;
224 }
225
226 sub date {
227   $main::lxdebug->enter_sub();
228
229   my ($self, $myconfig, $date, $longformat) = @_;
230
231   my $longdate  = "";
232   my $longmonth = ($longformat) ? 'LONG_MONTH' : 'SHORT_MONTH';
233
234   if ($date) {
235
236     # get separator
237     $spc = $myconfig->{dateformat};
238     $spc =~ s/\w//g;
239     $spc = substr($spc, 1, 1);
240
241     if ($date =~ /\D/) {
242       if ($myconfig->{dateformat} =~ /^yy/) {
243         ($yy, $mm, $dd) = split /\D/, $date;
244       }
245       if ($myconfig->{dateformat} =~ /^mm/) {
246         ($mm, $dd, $yy) = split /\D/, $date;
247       }
248       if ($myconfig->{dateformat} =~ /^dd/) {
249         ($dd, $mm, $yy) = split /\D/, $date;
250       }
251     } else {
252       $date = substr($date, 2);
253       ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
254     }
255
256     $dd *= 1;
257     $mm--;
258     $yy = ($yy < 70) ? $yy + 2000 : $yy;
259     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
260
261     if ($myconfig->{dateformat} =~ /^dd/) {
262       if (defined $longformat && $longformat == 0) {
263         $mm++;
264         $dd = "0$dd" if ($dd < 10);
265         $mm = "0$mm" if ($mm < 10);
266         $longdate = "$dd$spc$mm$spc$yy";
267       } else {
268         $longdate = "$dd";
269         $longdate .= ($spc eq '.') ? ". " : " ";
270         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
271       }
272     } elsif ($myconfig->{dateformat} eq "yyyy-mm-dd") {
273
274       # Use German syntax with the ISO date style "yyyy-mm-dd" because
275       # Lx-Office is mainly used in Germany or German speaking countries.
276       if (defined $longformat && $longformat == 0) {
277         $mm++;
278         $dd = "0$dd" if ($dd < 10);
279         $mm = "0$mm" if ($mm < 10);
280         $longdate = "$yy-$mm-$dd";
281       } else {
282         $longdate = "$dd. ";
283         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
284       }
285     } else {
286       if (defined $longformat && $longformat == 0) {
287         $mm++;
288         $dd = "0$dd" if ($dd < 10);
289         $mm = "0$mm" if ($mm < 10);
290         $longdate = "$mm$spc$dd$spc$yy";
291       } else {
292         $longdate = &text($self, $self->{$longmonth}[$mm]) . " $dd, $yy";
293       }
294     }
295
296   }
297
298   $main::lxdebug->leave_sub();
299
300   return $longdate;
301 }
302
303 sub parse_date {
304   $main::lxdebug->enter_sub();
305
306   my ($self, $myconfig, $date, $longformat) = @_;
307
308   unless ($date) {
309     $main::lxdebug->leave_sub();
310     return ();
311   }
312
313   # get separator
314   $spc = $myconfig->{dateformat};
315   $spc =~ s/\w//g;
316   $spc = substr($spc, 1, 1);
317
318   if ($date =~ /\D/) {
319     if ($myconfig->{dateformat} =~ /^yy/) {
320       ($yy, $mm, $dd) = split /\D/, $date;
321     } elsif ($myconfig->{dateformat} =~ /^mm/) {
322       ($mm, $dd, $yy) = split /\D/, $date;
323     } elsif ($myconfig->{dateformat} =~ /^dd/) {
324       ($dd, $mm, $yy) = split /\D/, $date;
325     }
326   } else {
327     $date = substr($date, 2);
328     ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
329   }
330
331   $dd *= 1;
332   $mm *= 1;
333   $yy = ($yy < 70) ? $yy + 2000 : $yy;
334   $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
335
336   $main::lxdebug->leave_sub();
337   return ($yy, $mm, $dd);
338 }
339
340 sub reformat_date {
341   $main::lxdebug->enter_sub();
342
343   my ($self, $myconfig, $date, $output_format, $longformat) = @_;
344
345   $main::lxdebug->leave_sub() and return "" unless ($date);
346
347   my ($yy, $mm, $dd) = $self->parse_date($myconfig, $date);
348
349   $output_format =~ /d+/;
350   substr($output_format, $-[0], $+[0] - $-[0]) =
351     sprintf("%0" . (length($&)) . "d", $dd);
352
353   $output_format =~ /m+/;
354   substr($output_format, $-[0], $+[0] - $-[0]) =
355     sprintf("%0" . (length($&)) . "d", $mm);
356
357   $output_format =~ /y+/;
358   if (length($&) == 2) {
359     $yy -= $yy >= 2000 ? 2000 : 1900;
360   }
361   substr($output_format, $-[0], $+[0] - $-[0]) =
362     sprintf("%0" . (length($&)) . "d", $yy);
363
364   $main::lxdebug->leave_sub();
365
366   return $output_format;
367 }
368
369 sub quote_special_chars {
370   my $self   = shift;
371   my $format = lc shift;
372   my $string = shift;
373
374   if ($self->{special_chars_map} && $self->{special_chars_map}->{$format} && $self->{special_chars_map}->{$format}->{order}) {
375     my $scmap = $self->{special_chars_map}->{$format};
376
377     map { $string =~ s/\Q${_}\E/$scmap->{$_}/g } @{ $scmap->{order} };
378   }
379
380   return $string;
381 }
382
383 sub unquote_special_chars {
384   my $self    = shift;
385   my $format  = shift;
386
387   return $self->quote_special_chars("${format}-reverse", shift);
388 }
389
390 sub remap_special_chars {
391   my $self       = shift;
392   my $src_format = shift;
393   my $dst_format = shift;
394
395   return $self->quote_special_chars($dst_format, $self->quote_special_chars("${src_format}-reverse", shift));
396 }
397
398 1;