From: Joshua Colp Date: Thu, 10 Apr 2008 15:58:39 +0000 (+0000) Subject: Forgot the 1.4 branch for russian language fix. X-Git-Tag: 1.4.20-rc1~74 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=da024e5196cbbcac1fb1f8394476bf08004a2f38;p=thirdparty%2Fasterisk.git Forgot the 1.4 branch for russian language fix. (closes issue #12404) Reported by: IgorG Patches: voicemail_ru_hardcoded-v1.patch uploaded by IgorG (license 20) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@114032 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 15d4bb9fc3..3a285063d6 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -5719,7 +5719,7 @@ static int vm_intro_ru(struct ast_channel *chan,struct vm_state *vms) res = say_and_wait(chan, dcnum, chan->language); if (!res && lastnum) { if (lastnum == 1) - res = ast_play_and_wait(chan, "digits/ru/odno"); + res = ast_play_and_wait(chan, "digits/odno"); else res = say_and_wait(chan, lastnum, chan->language); } @@ -5738,7 +5738,7 @@ static int vm_intro_ru(struct ast_channel *chan,struct vm_state *vms) res = say_and_wait(chan, dcnum, chan->language); if (!res && lastnum) { if (lastnum == 1) - res = ast_play_and_wait(chan, "digits/ru/odno"); + res = ast_play_and_wait(chan, "digits/odno"); else res = say_and_wait(chan, lastnum, chan->language); }