From 5c9fd7134fa1cce893075ea196a0bd6c3462f038 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Tue, 21 Jul 2009 17:15:59 +0200 Subject: jscript: Add French translation --- dlls/jscript/Makefile.in | 1 + dlls/jscript/jscript_Fr.rc | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 0 deletions(-) create mode 100644 dlls/jscript/jscript_Fr.rc diff --git a/dlls/jscript/Makefile.in b/dlls/jscript/Makefile.in index c76bed0..aaaf0f9 100644 --- a/dlls/jscript/Makefile.in +++ b/dlls/jscript/Makefile.in @@ -7,6 +7,7 @@ IMPORTS = oleaut32 user32 advapi32 kernel32 RC_SRCS = \ jscript_En.rc \ + jscript_Fr.rc \ rsrc.rc C_SRCS = \ diff --git a/dlls/jscript/jscript_Fr.rc b/dlls/jscript/jscript_Fr.rc new file mode 100644 index 0000000..04d19ed --- /dev/null +++ b/dlls/jscript/jscript_Fr.rc @@ -0,0 +1,37 @@ +/* + * French resources for jscript + * + * Copyright 2009 Frédéric Delanoy + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include "resource.h" + +/* UTF-8 */ +#pragma code_page(65001) + +LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL + +STRINGTABLE DISCARDABLE +{ + IDS_INVALID_CALL_ARG "Appel de procédure ou argument invalide" + IDS_NO_PROPERTY "Cet objet ne supporte pas cette propriété ou méthode" + IDS_ARG_NOT_OPT "Argument non optionnel" + IDS_NOT_DATE "« [objet] » n'est pas un objet de type date" + IDS_NOT_NUM "Nombre attendu" + IDS_NOT_BOOL "Booléen attendu" + IDS_INVALID_LENGTH "La longueur d'un tableau doit être un entier positif" +} -- 1.6.3.3