forked from GitHub/gf-core
templates for Danish
This commit is contained in:
33
lib/resource/danish/TimeDan.gf
Normal file
33
lib/resource/danish/TimeDan.gf
Normal file
@@ -0,0 +1,33 @@
|
||||
concrete TimeDan of Time = NumeralsDan **
|
||||
open Prelude, TypesDan, CategoriesDan, ParadigmsDan in {
|
||||
|
||||
lincat
|
||||
Date = SS ;
|
||||
Weekday = N ;
|
||||
Hour = SS ;
|
||||
Minute = SS ;
|
||||
Time = SS ;
|
||||
|
||||
lin
|
||||
DayDate day = ss (day.s ! singular ! Indef ! nominative) ;
|
||||
DayTimeDate day time = ss (day.s ! singular ! Indef ! nominative ++ "klokken" ++ time.s) ;
|
||||
|
||||
FormalTime = infixSS "og" ;
|
||||
PastTime h m = ss (m.s ++ "over" ++ h.s) ;
|
||||
ToTime h m = ss (m.s ++ "på" ++ h.s) ;
|
||||
ExactTime h = ss (h.s ++ "akkurat") ;
|
||||
|
||||
NumHour n = {s = n.s ! Neutr} ;
|
||||
NumMinute n = {s = n.s ! Neutr} ;
|
||||
|
||||
monday = regN "mandag" masculine ;
|
||||
tuesday = regN "tirsdag" masculine ;
|
||||
wednesday = regN "onsdag" masculine ;
|
||||
thursday = regN "torsdag" masculine ;
|
||||
friday = regN "fredag" masculine ;
|
||||
saturday = regN "lørdag" masculine ;
|
||||
sunday = regN "søndag" masculine ;
|
||||
|
||||
|
||||
|
||||
} ;
|
||||
Reference in New Issue
Block a user