aboutsummaryrefslogtreecommitdiffstats
path: root/main/say.c
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-21 16:10:21 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-21 16:10:21 +0000
commit4d1324be79ee29e24a18992d816e5b944f2b230b (patch)
tree615fa3f533ebdb95002361618c8134154510441b /main/say.c
parent5a731f4858f192e239474f58fedf1f4ef25fbe04 (diff)
Merged revisions 94420 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r94420 | mmichelson | 2007-12-21 09:45:14 -0600 (Fri, 21 Dec 2007) | 5 lines Fixing Portuguese syntax for saying dates and times. Also some coding guidelines cleanup. (closes issue #11599, reported and patched by caio1982, coding guidelines cleanup by me) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@94463 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/say.c')
-rw-r--r--main/say.c22
1 files changed, 9 insertions, 13 deletions
diff --git a/main/say.c b/main/say.c
index 51c9ce3e7..da660d6fc 100644
--- a/main/say.c
+++ b/main/say.c
@@ -5298,7 +5298,7 @@ int ast_say_date_with_format_pt(struct ast_channel *chan, time_t time, const cha
char sndfile[256], nextmsg[256];
if (format == NULL)
- format = "Ad 'digits/pt-de' B 'digits/pt-de' Y 'digits/at' IMp";
+ format = "Ad 'digits/pt-de' B 'digits/pt-de' Y I 'digits/pt-e' Mp";
ast_localtime(&tv, &tm, timezone);
@@ -5369,8 +5369,6 @@ int ast_say_date_with_format_pt(struct ast_channel *chan, time_t time, const cha
}
if (!res)
res = ast_say_number(chan, (tm.tm_hour % 12), ints, lang, "f");
- if ((!res) && (format[offset] == 'I'))
- res = ast_say_date_with_format(chan, time, ints, lang, "P", timezone);
}
} else {
if (tm.tm_hour == 0) {
@@ -5442,10 +5440,9 @@ int ast_say_date_with_format_pt(struct ast_channel *chan, time_t time, const cha
res = wait_file(chan, ints, "digits/pt-hora", lang);
if (tm.tm_hour != 1)
if (!res)
- res = wait_file(chan, ints, "digits/pt-sss", lang); } else {
- res = wait_file(chan,ints,"digits/pt-e",lang);
- if (!res)
- res = ast_say_number(chan, tm.tm_min, ints, lang, (char *) NULL);
+ res = wait_file(chan, ints, "digits/pt-sss", lang);
+ } else {
+ res = ast_say_number(chan, tm.tm_min, ints, lang, (char *) NULL);
}
}
break;
@@ -5637,7 +5634,7 @@ int ast_say_date_with_format_tw(struct ast_channel *chan, time_t time, const cha
res = wait_file(chan,ints,nextmsg,lang);
}
}
- if(!res) res = wait_file(chan,ints,"digits/day",lang);
+ if (!res) res = wait_file(chan,ints,"digits/day",lang);
break;
case 'Y':
/* Year */
@@ -6723,15 +6720,14 @@ static int ast_say_number_full_gr(struct ast_channel *chan, int num, const char
/* 100 < num < 200 */
snprintf(fn, sizeof(fn), "digits/hundred-100");
num %= 100;
- }else if (num < 1000) {
+ } else if (num < 1000) {
/* 200 < num < 1000 */
snprintf(fn, sizeof(fn), "digits/hundred-%d", (num/100)*100);
num %= 100;
- }else if (num < 2000){
+ } else if (num < 2000){
snprintf(fn, sizeof(fn), "digits/xilia");
num %= 1000;
- }
- else {
+ } else {
/* num > 1000 */
if (num < 1000000) {
res = ast_say_number_full_gr(chan, (num / 1000), ints, chan->language, audiofd, ctrlfd);
@@ -7274,7 +7270,7 @@ static int ast_say_number_full_ge(struct ast_channel *chan, int num, const char
ast_free(new_string);
remainder = s + 1; /* position just after the found space char. */
- while(*remainder == ' ') /* skip multiple spaces */
+ while (*remainder == ' ') /* skip multiple spaces */
remainder++;
}