[asterisk-commits] mmichelson: branch 1.8 r373773 - /branches/1.8/main/say.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Sep 25 18:08:03 CDT 2012
Author: mmichelson
Date: Tue Sep 25 18:07:59 2012
New Revision: 373773
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=373773
Log:
Fix saying of date in Dutch.
The Dutch say the date before the month.
(closes issue ASTERISK-20353)
Reported by: Teun Ouwehand
Modified:
branches/1.8/main/say.c
Modified: branches/1.8/main/say.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/main/say.c?view=diff&rev=373773&r1=373772&r2=373773
==============================================================================
--- branches/1.8/main/say.c (original)
+++ branches/1.8/main/say.c Tue Sep 25 18:07:59 2012
@@ -5286,7 +5286,7 @@
char sndfile[256], nextmsg[256];
if (format == NULL)
- format = "ABdY 'digits/at' IMp";
+ format = "AdBY 'digits/at' IMp";
ast_localtime(&when, &tm, tzone);
@@ -5408,7 +5408,7 @@
res = wait_file(chan, ints, nextmsg, lang);
break;
case 'Q':
- /* Shorthand for "Today", "Yesterday", or ABdY */
+ /* Shorthand for "Today", "Yesterday", or AdBY */
/* XXX As emphasized elsewhere, this should the native way in your
* language to say the date, with changes in what you say, depending
* upon how recent the date is. XXX */
@@ -5428,12 +5428,12 @@
/* Yesterday */
res = wait_file(chan, ints, "digits/yesterday", lang);
} else {
- res = ast_say_date_with_format_nl(chan, t, ints, lang, "ABdY", tzone);
+ res = ast_say_date_with_format_nl(chan, t, ints, lang, "AdBY", tzone);
}
}
break;
case 'q':
- /* Shorthand for "" (today), "Yesterday", A (weekday), or ABdY */
+ /* Shorthand for "" (today), "Yesterday", A (weekday), or AdBY */
{
struct timeval now = ast_tvnow();
struct ast_tm tmnow;
@@ -5452,7 +5452,7 @@
/* Within the last week */
res = ast_say_date_with_format_nl(chan, t, ints, lang, "A", tzone);
} else {
- res = ast_say_date_with_format_nl(chan, t, ints, lang, "ABdY", tzone);
+ res = ast_say_date_with_format_nl(chan, t, ints, lang, "AdBY", tzone);
}
}
break;
More information about the asterisk-commits
mailing list