From 2c4d43494bb6329bbb24a8355c8d0deaa9ba0ccb Mon Sep 17 00:00:00 2001 From: tetragon Date: Tue, 24 Oct 2006 14:54:25 +0000 Subject: Convert French translations to gettext git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@289 4979c152-3d1c-0410-bac9-87ea11338e46 --- locale/be_fr/Num2text | 202 -------------------------------------------------- 1 file changed, 202 deletions(-) delete mode 100755 locale/be_fr/Num2text (limited to 'locale/be_fr/Num2text') diff --git a/locale/be_fr/Num2text b/locale/be_fr/Num2text deleted file mode 100755 index a9f5385b..00000000 --- a/locale/be_fr/Num2text +++ /dev/null @@ -1,202 +0,0 @@ -#===================================================================== -# LedgerSMB Small Medium Business Accounting -# Copyright (C) 2002 -# -# Author: Dieter Simader -# Email: dsimader@sql-ledger.org -# Web: http://www.ledgersmb.org/ -# -# Contributors: Bruno Leveque -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -#===================================================================== -# -# this is the french code for printing numbers in text -# -#===================================================================== - - -sub init { - my $self = shift; - - %{ $self->{numbername} } = - (0 => 'Zéro', - 1 => 'Un', - 2 => 'Deux', - 3 => 'Trois', - 4 => 'Quatre', - 5 => 'Cinq', - 6 => 'Six', - 7 => 'Sept', - 8 => 'Huit', - 9 => 'Neuf', - 10 => 'Dix', - 11 => 'Onze', - 12 => 'Douze', - 13 => 'Treize', - 14 => 'Quatorze', - 15 => 'Quinze', - 16 => 'Seize', - 17 => 'Dix-sept', - 18 => 'Dix-huit', - 19 => 'Dix-neuf', - 20 => 'Vingt', - 30 => 'Trente', - 40 => 'Quarante', - 50 => 'Cinquante', - 60 => 'Soixante', - 70 => 'Septante', - 80 => 'Quatre-vingt', - 90 => 'Nonante', - 10**2 => 'Cent', - 10**3 => 'Mille', - 10**6 => 'Million', - 10**9 => 'Milliard', - 10**12 => 'Billion', - ); - -} - - -sub num2text { - my ($self, $amount) = @_; - - return $self->{numbername}{0} unless $amount; - - my @textnumber = (); - - # split amount into chunks of 3 - my @num = reverse split //, abs($amount); - my @numblock = (); - my @a; - my $i; - - while (@num) { - @a = (); - for (1 .. 3) { - push @a, shift @num; - } - push @numblock, join / /, reverse @a; - } - - my $cent=0; - - while (@numblock) { - - $i = $#numblock; - @num = split //, $numblock[$i]; - - if ($numblock[$i] == 0) { - pop @numblock; - next; - } - - if ($numblock[$i] > 99) { - $cent=1; - - # the one from hundreds - - if ($num[0] > 1) { - push @textnumber, $self->{numbername}{$num[0]}; - } - - # reduce numblock - $numblock[$i] -= $num[0] * 100; - - # add hundred designation - if ($num[0] > 1) { - if($numblock[$i] > 0) { - push @textnumber, $self->{numbername}{10**2}; - } else { - push @textnumber, "$self->{numbername}{10**2}s"; - } - } else { - push @textnumber, $self->{numbername}{10**2}; - } - - } - - $numblock[$i] *= 1; - - if ($numblock[$i] > 9) { - # tens - push @textnumber, $self->format_ten($numblock[$i]); - } elsif ($numblock[$i] > 0) { - # ones - if ($i == 1) { - if ($cent == 1) { - push @textnumber, $self->{numbername}{$numblock[$i]}; - } - $cent = 0; - } else { - push @textnumber, $self->{numbername}{$numblock[$i]}; - } - } - - # add thousand, million - if ($i) { - $num = 10**($i * 3); - if ($i == 1) { - push @textnumber, $self->{numbername}{$num}; - } elsif ($numblock[$i] > 1) { - push @textnumber, "$self->{numbername}{$num}s"; - } else { - push @textnumber, "$self->{numbername}{$num}"; - } - } - - pop @numblock; - - } - - join ' ', @textnumber; - -} - - -sub format_ten { - my ($self, $amount) = @_; - - my $textnumber = ""; - my @num = split //, $amount; - - if ($amount > 20) { - if ($num[0] == 8) { - if ($num[1] > 0) { - $textnumber = $self->{numbername}{$num[0]*10}; - } else { - $textnumber = "$self->{numbername}{$num[0]*10}s"; - } - } else { - $textnumber = $self->{numbername}{$num[0]*10}; - - $textnumber .= " et" if ($num[1] == 1); - - - } - $amount = $num[1]; - } else { - $textnumber = "$self->{numbername}{$amount}"; - $amount = 0; - } - - $textnumber .= " ".$self->{numbername}{$amount} if $amount; - - $textnumber; - -} - - -1; - -- cgit v1.2.3