see changelog

This commit is contained in:
Eddie Runia
1999-06-13 22:23:48 +00:00
parent f4ecd23436
commit 8e68f7a10f
5 changed files with 69 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
19990613 23:15 CET Eddie Runia
* source/rtl/natmsg/msg???.c
more languages added.
* source/rtl/natxxx.c
id.
19990613 23:00 CET Eddie Runia
* source/rtl/environ.c
__Run() added for Borland and DJGPP

View File

@@ -24,4 +24,10 @@
#include "natmsg/msgspa.c"
#elif (HB_LANGUAGE == UK)
#include "natmsg/msguk.c"
#elif (HB_LANGUAGE == CAT)
#include "natmsg/msgcat.c"
#elif (HB_LANGUAGE == ITA)
#include "natmsg/msgita.c"
#elif (HB_LANGUAGE == FRE)
#include "natmsg/msgfre.c"
#endif

View File

@@ -0,0 +1,19 @@
/*
* $Id$
*/
/*
* Language support unit for Catalan
*
*/
char *hb_monthsname[ 12 ] = {
"Xaner", "Febrer", "Mars",
"April", "Mallol", "Xuniol", "Xuliol",
"Agust", "Setembre", "Octubre",
"Novembre", "Decembre" };
char *hb_daysname[ 7 ] = {
"Diumenge", "Dilluns", "Dimarts",
"Dimecres", "Dijous", "Divendres",
"Disabte" };

View File

@@ -0,0 +1,19 @@
/*
* $Id$
*/
/*
* Language support unit for French
*
*/
char *hb_monthsname[ 12 ] = {
"Janvier", "Fvrier", "Mars",
"Avril", "May", "Juin", "Juillet",
"Aot", "Septembre", "Octobre",
"Novembre", "Dcembre" };
char *hb_daysname[ 7 ] = {
"Dimanche", "Lundi", "Mardi",
"Mercredi", "Jeudi", "Vendredi",
"Samedi" };

View File

@@ -0,0 +1,19 @@
/*
* $Id$
*/
/*
* Language support unit for Italian
*
*/
char *hb_monthsname[ 12 ] = {
"Gennaio", "Febbraio", "Marzo",
"Aprile", "Maggio", "Giugno", "Luglio",
"Agosto", "Settembre", "Ottobre",
"Novembre", "Dicembre" };
char *hb_daysname[ 7 ] = {
"Domenica", "Lunedi", "Martedi",
"Mercoledi", "Giovedi", "Venerdi",
"Sabato" };