From 9d9ec72719ca3761161329ed26a81c58b22237b8 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Wed, 25 May 2005 17:28:32 +0000 Subject: Fix sayunixtime for Danish (bug #3239) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5766 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_sayunixtime.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/app_sayunixtime.c b/apps/app_sayunixtime.c index cc2b28c18..05b08597f 100755 --- a/apps/app_sayunixtime.c +++ b/apps/app_sayunixtime.c @@ -67,7 +67,9 @@ static int sayunixtime_exec(struct ast_channel *chan, void *data) gettimeofday(&tv,NULL); unixtime = (time_t)tv.tv_sec; - if( !strcasecmp(chan->language, "de" ) ) { + if( !strcasecmp(chan->language, "da" ) ) { + format = "A dBY HMS"; + } else if ( !strcasecmp(chan->language, "de" ) ) { format = "A dBY HMS"; } else { format = "ABdY 'digits/at' IMp"; -- cgit v1.2.3