Re: asterisk AGI male/female in hebrew language

re: asterisk AGI male/female in hebrew language

Asterisk ver 1.4.33

If I try this:
SAY NUMBER 123 ""
counts in female gender.

If I try this:
SAY NUMBER 123 “” "m"
I get an error:
520-Invalid command syntax. Proper usage follows:

Please help find where to look.

SOLVED.

Cause:
Looks like it is not implemented in AGI.

Workaround:
What works - is a dialplan command - for example: SayNumber(33,m)
so here is a workaround:

$AGI->exec(“SayNumber”,“33|m”);

or

$AGI->exec(“Exec”,“SayNumber(33|m)”);