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.
31 lines
385 B
C
31 lines
385 B
C
// french.h
|
|
// Created by Pierre-Marie.Allemand@capway.com
|
|
// 08-jan-1999
|
|
|
|
static char daynames[7][3] =
|
|
{
|
|
{"Di"},
|
|
{"Lu"},
|
|
{"Ma"},
|
|
{"Me"},
|
|
{"Je"},
|
|
{"Ve"},
|
|
{"Sa"}
|
|
};
|
|
|
|
static char monthnames[12][4] =
|
|
{
|
|
{"Jan"},
|
|
{"Fev"},
|
|
{"Mar"},
|
|
{"Avr"},
|
|
{"Mai"},
|
|
{"Jun"},
|
|
{"Jui"},
|
|
{"Aou"},
|
|
{"Sep"},
|
|
{"Oct"},
|
|
{"Nov"},
|
|
{"Dec"}
|
|
};
|