Home » Numbers » Numbers_Words » Bug #2411
Wrong spelling in german file
Details
| Submitted | 2004-09-29 00:03 UTC |
|---|---|
| From | neuner at futureweb dot at |
| Assigned | makler |
| Status | Closed |
| Package | Numbers_Words |
| PHP Version | 4.3.5 |
| OS | redhat9 |
| Roadmaps | (Not assigned) |
Comments
[2004-09-29 00:03 UTC] neuner at futureweb dot at
Description:
------------
at the german file there is a small error:
your script makes with 1000 "einetausend", correct is "eintausend". While "eine Million" is correct, not "eine Millione".
Reproduce code:
---------------
< // $Id: lang.de.php,v 1.2 2004/09/02 11:07:59 makler Exp $
---
> // $Id: lang.de.php,v 1.5 2003/09/29 12:23:58 makler Exp $
23a24,25
> // neuner@futureweb.at : added a small fix to make the one thousand spelled correct
>
87c89
< 6 => array('Millione','Millionen'),
---
> 6 => array('Million','Millionen'),
230c232,234
< $ret .= 'e'; // fuer eine
---
> if ($power != 3) { //tausend ausnehmen
> $ret .= 'e'; // fuer eine
> }