[PEAR-BUG] Bug #19453 [Csd]: Hungarian language wrong spelling
[email protected] Thu, 23 Oct 2014 20:26:32 +0100 (BST)
| Newsgroups | php.pear.bugs |
|---|---|
| Message-ID | <[email protected]> |
Edit report at https://pear.php.net/bugs/bug.php?id=19453&edit=1 ID: 19453 Updated by: [email protected] Reported By: balazs dot nemeth9 at gmail dot com Summary: Hungarian language wrong spelling Status: Closed Type: Bug Package: Numbers_Words Operating System: CentOS Package Version: 0.16.4 PHP Version: 5.2.10 Assigned To: kouber Roadmap Versions: New Comment: Great, thank you very much! Previous Comments: ------------------------------------------------------------------------ [2014-10-23 18:37:41] kouber -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-03-04 15:22:01] doconnor Hi, want to open up a pull request for this? ------------------------------------------------------------------------ [2012-06-03 23:11:13] nemeth9 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; ------------------------------------------------------------------------ -- Edit this bug report at https://pear.php.net/bugs/bug.php?id=19453&edit=1