Added French language support.

This commit is contained in:
Robert Pouliot 1998-10-27 13:19:55 +00:00 committed by Alexandre Julliard
parent 12dc8e7185
commit 45e9b6cda4
4 changed files with 43 additions and 1 deletions

View File

@ -2,6 +2,7 @@ Da.s
De.s
En.s
Es.s
Fr.s
Makefile
Sw.s
clock

38
programs/clock/Fr.rc Normal file
View File

@ -0,0 +1,38 @@
/*
* Clock (French resources)
*
* Copyright 1998 Robert Pouliot <krynos@clic.net>
*/
#define LANGUAGE_ID Fr
#define LANGUAGE_NUMBER 4
/* System Menu */
#define MENU_ON_TOP "&Toujours visible"
/* Window Menu */
#define MENU_PROPERTIES "&Propriétés"
#define MENU_ANALOG "Ana&logue"
#define MENU_DIGITAL "Digi&tale"
#define MENU_FONT "&Fonte..."
#define MENU_WITHOUT_TITLE "&Sans barre titre"
#define MENU_SECONDS "&Secondes"
#define MENU_DATE "&Date"
#define MENU_LANGUAGE "&Langue"
#define LANGUAGE_MENU_ITEM "&Français"
#define MENU_INFO "Inf&o..."
#define MENU_INFO_LICENSE "&Licence"
#define MENU_INFO_NO_WARRANTY "&NO WARRANTY"
#define MENU_INFO_ABOUT_WINE "&A propos de l'horloge..."
/* Window Caption */
#define STRING_CLOCK "Horloge"
#include "clock.rc"

View File

@ -9,7 +9,7 @@ ALL_LIBS = $(WINELIB) $(X_LIBS) $(XPM_LIB) $(XLIB) $(LIBS)
RCFLAGS = -w32 -h
WRCEXTRA = -A -p $*
LANGUAGES = En Da De Sw Es
LANGUAGES = En Da De Fr Sw Es
LICENSELANG = En
MOSTSRCS = \

View File

@ -22,8 +22,11 @@
#include "options.h"
#include "resource.h"
#include "shell.h"
void LIBWINE_Register_Da();
void LIBWINE_Register_De();
void LIBWINE_Register_En();
void LIBWINE_Register_Es();
void LIBWINE_Register_Fr();
void LIBWINE_Register_Sw();
#endif