From 450c93958d78b5b7adedf4abfbfdd68ff4418eba Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Thu, 16 Jan 2014 15:40:15 +0100 Subject: [PATCH] MT#5645 Fix time string 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 fa53f86..110bfc4 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/e' 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 'digits/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"))