From 3707f80bbfbdbc836cefdb1af07896bd3abe259c Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Thu, 16 Jan 2014 15:49:18 +0100 Subject: [PATCH] MT#5645 Fix path to vm-and for "ro" language. --- apps/app_voicemail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 110bfc4..e5a8acc 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -5407,7 +5407,7 @@ static int play_message_datetime(struct ast_channel *chan, struct ast_vm_user *v else if (!strcasecmp(chan->language,"it")) /* ITALIAN syntax */ res = ast_say_date_with_format(chan, t, AST_DIGIT_ANY, chan->language, "'vm-received' q 'digits/at' 'digits/hours' k 'digits/e' M 'digits/minutes'", NULL); else if (!strcasecmp(chan->language,"ro")) /* ROMANIAN syntax */ - res = ast_say_date_with_format(chan, t, AST_DIGIT_ANY, chan->language, "'vm-received' q 'digits/at' 'digits/hours' k 'digits/vm-and' M 'digits/minutes'", NULL); + res = ast_say_date_with_format(chan, t, AST_DIGIT_ANY, chan->language, "'vm-received' q 'digits/at' 'digits/hours' k 'vm-and' M 'digits/minutes'", NULL); else if (!strcasecmp(chan->language,"gr")) res = ast_say_date_with_format(chan, t, AST_DIGIT_ANY, chan->language, "'vm-received' q H 'digits/kai' M ", NULL); else if (!strcasecmp(chan->language,"pt_BR"))