summaryrefslogtreecommitdiff
path: root/apps/app_voicemail.c
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2009-03-31 19:46:18 +0000
committerMark Michelson <mmichelson@digium.com>2009-03-31 19:46:18 +0000
commitde8a0946c8a442416453c327e1f0177ac629e68e (patch)
tree0c0a43fe26912833b79a7886e4a622ae40375f6a /apps/app_voicemail.c
parent8dfcd7e418878dd611c3460d7ce049f3b7cd41c5 (diff)
Merged revisions 185468 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r185468 | mmichelson | 2009-03-31 14:45:30 -0500 (Tue, 31 Mar 2009) | 8 lines Fix Russian voicemail intro to say the word "messages" properly. (closes issue #14736) Reported by: chappell Patches: voicemail_no_messages.diff uploaded by chappell (license 8) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@185469 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_voicemail.c')
-rw-r--r--apps/app_voicemail.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 7d3b6e6b7..ff74c05d7 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -518,11 +518,6 @@ Dutch also uses:
Spanish also uses:
\arg \b vm-youhaveno
-Ukrainian requires the following additional soundfile:
-\arg \b vm-nove 'nove'
-\arg \b vm-stare 'stare'
-\arg \b digits/ua/1e 'odne'
-
Italian requires the following additional soundfile:
For vm_intro_it:
@@ -7320,7 +7315,8 @@ static int vm_intro_multilang(struct ast_channel *chan, struct vm_state *vms, co
if (!res) {
if (lastnum == 0) {
res = ast_play_and_wait(chan, "vm-no");
- } else {
+ }
+ if (!res) {
res = ast_say_counted_noun(chan, lastnum, "vm-message");
}
}