[svn-commits] mmichelson: branch 10 r373774 - in /branches/10: ./ main/say.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Sep 25 18:08:50 CDT 2012


Author: mmichelson
Date: Tue Sep 25 18:08:46 2012
New Revision: 373774

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=373774
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

Modified:
    branches/10/   (props changed)
    branches/10/main/say.c

Propchange: branches/10/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.

Modified: branches/10/main/say.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/main/say.c?view=diff&rev=373774&r1=373773&r2=373774
==============================================================================
--- branches/10/main/say.c (original)
+++ branches/10/main/say.c Tue Sep 25 18:08:46 2012
@@ -5298,7 +5298,7 @@
 	char sndfile[256], nextmsg[256];
 
 	if (format == NULL)
-		format = "ABdY 'digits/at' IMp";
+		format = "AdBY 'digits/at' IMp";
 
 	ast_localtime(&when, &tm, tzone);
 
@@ -5420,7 +5420,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 */
@@ -5440,12 +5440,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;
@@ -5464,7 +5464,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 svn-commits mailing list