aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_voicemail.c
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-31 19:47:16 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-31 19:47:16 +0000
commitd751b713d526d84dc60901221978e8d7ec8fabe1 (patch)
treea47f275f73af6c58e5789dadfb38ec3ac4e29a9c /apps/app_voicemail.c
parented0311295221665183f5b9c8523d2cba1d3b9e72 (diff)
Merged revisions 185469 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r185469 | mmichelson | 2009-03-31 14:46:18 -0500 (Tue, 31 Mar 2009) | 14 lines 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: http://svn.digium.com/svn/asterisk/branches/1.6.1@185471 f38db490-d61c-443f-a65b-d21fe96a405b
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 bdb403bcf..9fad62880 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -335,11 +335,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:
@@ -7197,7 +7192,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");
}
}