Page 1 of 1

Announcements always played in english

PostPosted: Fri Jun 06, 2008 4:56 am
by mrcarrera
Hi, I recently installed vicidialnow and purchased the manager and agent manuals. I was trying to make it work in spanish so I installed the spanish announcements and set language='es' in all asterisk configuration files. No matter what I do, announcements are always played in english instead of spanish (i.e. 'You are currently the only person in this conference')
== Manager 'sendcron' logged off from 127.0.0.1
-- Executing MeetMe("IAX2/cc301-5", "8600051|F") in new stack
== Parsing '/etc/asterisk/meetme.conf': Found
-- Created MeetMe conference 1023 for conference '8600051'
-- Playing 'conf-onlyperson' (language 'en')

I have tested the right configuration of agent's language calling to a extension (555) confgiured to play the 'invalid' announcement,
exten => 555,1,Background(invalid)
exten => 555,n,Hangup

and the result was the expected behaviour (announcement is played in spanish,
-- Executing BackGround("IAX2/cc301-3", "invalid") in new stack
-- Playing 'invalid' (language 'es')


so the problem sems to have something to do with vicidial.
Can anybody help me please?

PostPosted: Fri Jun 06, 2008 7:27 am
by mflorell
conf-onlyperson doesn't have anything to do with the programming of VICIDIAL, I would suggest you post a bug to the Digium bug tracker.

hello

PostPosted: Fri Jun 06, 2008 11:35 am
by eliasferreyra
i recommend you use the conf-onlyperson in spanish

my spanish vicidial says '' Usted es la unica persona en la conferencia''

PostPosted: Thu Jun 12, 2008 12:33 pm
by ezhilyakova
I've experienced the same problem with Asterisk 1.2.20. As a way around I changed the following in extensions.conf:

exten => _860005Z,1,Set(LANGUAGE()=pt_BR)
exten => _860005Z,n,Meetme(${EXTEN})

exten => _86000[6-9]X,1,Set(LANGUAGE()=pt_BR)
exten => _86000[6-9]X,n,Meetme(${EXTEN})

exten => _86001XX,1,Set(LANGUAGE()=pt_BR)
exten => _86001XX,n,Meetme(${EXTEN})

PostPosted: Fri Jun 13, 2008 1:31 am
by mrcarrera
Thanks to all for your help. ezhilyakova, I have followed your indications and it worked fine, great!