1
0
forked from GitHub/gf-core

Use [Dig] instead of Digits in Time, to avoid commas in English.

This commit is contained in:
bjorn
2008-02-25 21:24:12 +00:00
parent de23fe7483
commit 9aa025007a
2 changed files with 14 additions and 5 deletions

View File

@@ -17,6 +17,8 @@ Hour = SS ;
Minute = SS ;
Time = SS ;
[Dig] = { s : CardOrd => Str } ;
lin
DateTimeDateTime date time = { s = date.s ++ "at" ++ time.s };
@@ -84,4 +86,8 @@ OnDate date = let prep = case date.t of {
AtTime time = { s = "at" ++ time.s } ;
BaseDig d = { s = \\o => d.s!o } ;
ConsDig d ds = { s = \\o => d.s!NCard ++ ds.s!o } ;
} ;