From 99b1b76b3183c1d183ef9fa8d6b2cbc47bcca128 Mon Sep 17 00:00:00 2001 From: markster Date: Wed, 25 May 2005 17:28:32 +0000 Subject: Fix sayunixtime for Danish (bug #3239) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5766 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_sayunixtime.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'apps/app_sayunixtime.c') 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