[asterisk-commits] qwell: trunk r51351 - in /trunk: ./
configs/say.conf.sample
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Fri Jan 19 23:54:46 MST 2007
Author: qwell
Date: Sat Jan 20 00:54:45 2007
New Revision: 51351
URL: http://svn.digium.com/view/asterisk?view=rev&rev=51351
Log:
Merged revisions 51350 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r51350 | qwell | 2007-01-20 00:53:49 -0600 (Sat, 20 Jan 2007) | 5 lines
Fix Italian numeral support in say.conf for "_[2-9]00" case.
"2131" would've translated to something along the lines of (pardon my..Italian {or lack thereof})
"duecentocentotrentuno", which makes no sense at all.
........
Modified:
trunk/ (props changed)
trunk/configs/say.conf.sample
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/configs/say.conf.sample
URL: http://svn.digium.com/view/asterisk/trunk/configs/say.conf.sample?view=diff&rev=51351&r1=51350&r2=51351
==============================================================================
--- trunk/configs/say.conf.sample (original)
+++ trunk/configs/say.conf.sample Sat Jan 20 00:54:45 2007
@@ -126,7 +126,7 @@
_[n]um:[2-9]0 => digits/${SAY}
_[n]um:[2-9][1-9] => digits/${SAY:0:1}0, num:${SAY:1}
_[n]um:1XX => digits/hundred, num:${SAY:1}
- _[n]um:[2-9]1XX => num:${SAY:0:1}, digits/hundred, num:${SAY:1}
+ _[n]um:[2-9]XX => num:${SAY:0:1}, digits/hundred, num:${SAY:1}
_[n]um:1XXX => digits/thousand, num:${SAY:1}
_[n]um:[2-9]XXX => num:${SAY:0:1}, digits/thousands, num:${SAY:1}
More information about the asterisk-commits
mailing list