Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 0.18.2

Bug #19453 Hungarian language wrong spelling
Submitted: 2012-06-04 03:11 UTC
From: nemeth9 Assigned: kouber
Status: Closed Package: Numbers_Words (version 0.16.4)
PHP Version: 5.2.10 OS: CentOS
Roadmaps: (Not assigned)    
Subscription  


 [2012-06-04 03:11 UTC] nemeth9 (Balázs Németh)
Description: ------------ In Hungarian: 20: "húsz" 21: "huszonegy" 22: "huszonkett?" etc. So the "huszon" word is "huszon" not "húszon" Test script: --------------- case 0: $ret .= $this->_sep . 'húsz'; break; case 1: case 2: case 3: case 4: case 5: case 6: case 7: case 8: case 9: $ret .= $this->_sep . 'húszon'; break; } break; Expected result: ---------------- case 0: $ret .= $this->_sep . 'húsz'; break; case 1: case 2: case 3: case 4: case 5: case 6: case 7: case 8: case 9: $ret .= $this->_sep . 'huszon'; break; } break; Actual result: -------------- case 0: $ret .= $this->_sep . 'húsz'; break; case 1: case 2: case 3: case 4: case 5: case 6: case 7: case 8: case 9: $ret .= $this->_sep . 'húszon'; break; } break;

Comments

 [2014-03-04 20:22 UTC] doconnor (Daniel O'Connor)
Hi, want to open up a pull request for this?
 [2014-10-23 22:37 UTC] kouber (Kouber Saparev)
-Status: Open +Status: Closed -Assigned To: +Assigned To: kouber
This bug has been fixed in SVN. If this was a documentation problem, the fix will appear on pear.php.net by the end of next Sunday (CET). If this was a problem with the pear.php.net website, the change should be live shortly. Otherwise, the fix will appear in the package's next release. Thank you for the report and for helping us make PEAR better.
 [2014-10-24 00:26 UTC] nemeth9 (Balázs Németh)
Great, thank you very much!