21625f40b5
I tried to get the latest versions from dockapps.org, but I haven't tested any of them. More dockapps will be added as time permits.
35 lines
332 B
C
35 lines
332 B
C
// language.h
|
|
|
|
static char daynames[7][3] =
|
|
{
|
|
{"Su"},
|
|
{"Mo"},
|
|
{"Tu"},
|
|
{"We"},
|
|
{"Th"},
|
|
{"Fr"},
|
|
{"Sa"}
|
|
};
|
|
|
|
static char monthnames[12][4] =
|
|
{
|
|
{"Jan"},
|
|
{"Feb"},
|
|
{"Mar"},
|
|
{"Apr"},
|
|
{"May"},
|
|
{"Jun"},
|
|
{"Jul"},
|
|
{"Aug"},
|
|
{"Sep"},
|
|
{"Oct"},
|
|
{"Nov"},
|
|
{"Dec"}
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|