aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-31 19:45:30 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-31 19:45:30 +0000
commitfee31fbedbd262e9f55b626e65f97a240cfe366d (patch)
treefd0bf215254f6d24a08762510615540533ab7c6e /apps
parent2cab7c50813e6dae2b85ae88b0b2dcf495057837 (diff)
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.4@185468 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-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 0d0ba405e..2fb2a459e 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -298,11 +298,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:
@@ -5992,7 +5987,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");
}
}