From 5c9fbf4abc8a88536ab9b96dec25a7e9075a63c8 Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Sat, 8 Feb 2014 21:12:47 +0100 Subject: [PATCH] MT#5645 Fix "no message" for Romanian syntax. Should be "nu aveti mesaje" instead of "nu mesaj". --- apps/app_voicemail.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index f40a9d1..0a9fdff 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -6115,7 +6115,8 @@ static int vm_intro_ro(struct ast_channel *chan, struct vm_state *vms) int res; if (!vms->oldmessages && !vms->newmessages) res = ast_play_and_wait(chan, "vm-no") || - ast_play_and_wait(chan, "vm-message"); + ast_play_and_wait(chan, "vm-youhave") || + ast_play_and_wait(chan, "vm-messages"); else res = ast_play_and_wait(chan, "vm-youhave"); if (!res && vms->newmessages) {