[asterisk-commits] mmichelson: trunk r373776 - in /trunk: ./ main/say.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Sep 25 18:10:25 CDT 2012
Author: mmichelson
Date: Tue Sep 25 18:10:22 2012
New Revision: 373776
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=373776
Log:
Fix saying of date in Dutch.
The Dutch say the date before the month.
(closes issue ASTERISK-20353)
Reported by: Teun Ouwehand
........
Merged revisions 373773 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 373774 from http://svn.asterisk.org/svn/asterisk/branches/10
........
Merged revisions 373775 from http://svn.asterisk.org/svn/asterisk/branches/11
Modified:
trunk/ (props changed)
trunk/main/say.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-11-merged' - no diff available.
Modified: trunk/main/say.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/say.c?view=diff&rev=373776&r1=373775&r2=373776
==============================================================================
--- trunk/main/say.c (original)
+++ trunk/main/say.c Tue Sep 25 18:10:22 2012
@@ -5300,7 +5300,7 @@
char sndfile[256], nextmsg[256];
if (format == NULL)
- format = "ABdY 'digits/at' IMp";
+ format = "AdBY 'digits/at' IMp";
ast_localtime(&when, &tm, tzone);
@@ -5422,7 +5422,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 */
@@ -5442,12 +5442,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;
@@ -5466,7 +5466,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