Hello, ---- \mainlanguage[cz] \starttext \date[d=1,m=3,y=2000][d,~,m,~,y]\par \date[d=1,m=3,y=2000][d,~,mm,~,y]\par \date[d=1,m=3,y=2000][d,~,month,~,y]\par \stoptext ---- gives: " 1 břez. 2000 1 03 2000 1 břez. 2000 " Is there a way to get non-shortened month name, i.e. "března" instead "břez."? Kind regards, Lukas -- Ing. Lukáš Procházka | mailto:LPr@pontex.cz Pontex s. r. o. | mailto:pontex@pontex.cz | http://www.pontex.cz Bezová 1658 147 14 Praha 4 Tel: +420 241 096 751 Fax: +420 244 461 038
On 4/3/2015 1:44 PM, Procházka Lukáš Ing. - Pontex s. r. o. wrote:
Hello,
---- \mainlanguage[cz]
\starttext \date[d=1,m=3,y=2000][d,~,m,~,y]\par \date[d=1,m=3,y=2000][d,~,mm,~,y]\par \date[d=1,m=3,y=2000][d,~,month,~,y]\par \stoptext ----
gives:
" 1 břez. 2000 1 03 2000 1 břez. 2000 "
Is there a way to get non-shortened month name, i.e. "března" instead "břez."?
Kind regards,
\starttext \date[d=1,m=3,y=2000][d,~,m,~,y]\par \date[d=1,m=3,y=2000][d,~,mm,~,y]\par \date[d=1,m=3,y=2000][d,~,month,~,y]\par \date[d=1,m=3,y=2000][d,~,month:mnem,~,y]\par \stoptext buglet: patch core-con.lua: elseif tag == v_month or tag == "m" then if currentlanguage == false then context(months[month] or "unknown") elseif mnemonic then context.labeltext(monthmnem(month)) else context.labeltext(monthname(month)) end ----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com | www.pragma-pod.nl -----------------------------------------------------------------
participants (2)
-
Hans Hagen
-
Procházka Lukáš Ing. - Pontex s. r. o.