From 582eeaa573b418792013bbe4db0c67b58eaae537 Mon Sep 17 00:00:00 2001 From: Jonathan Ernst Date: Thu, 16 Feb 2006 12:18:17 +0100 Subject: [PATCH] wordpad: French localization. --- programs/wordpad/Fr.rc | 66 ++++++++++++++++++++++++++++++++++++++++ programs/wordpad/rsrc.rc | 1 + 2 files changed, 67 insertions(+) create mode 100644 programs/wordpad/Fr.rc diff --git a/programs/wordpad/Fr.rc b/programs/wordpad/Fr.rc new file mode 100644 index 0000000000..e0ced98019 --- /dev/null +++ b/programs/wordpad/Fr.rc @@ -0,0 +1,66 @@ +/* + * Copyright 2006 by Jonathan Ernst + * + * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL + +MAINMENU MENU DISCARDABLE +BEGIN + POPUP "&Fichier" + BEGIN + MENUITEM "&Nouveau", ID_FILE_NEW + MENUITEM "&Ouvrir", ID_FILE_OPEN + MENUITEM "&Sauver", ID_FILE_SAVE + MENUITEM SEPARATOR + MENUITEM "&Quitter", ID_FILE_EXIT + END + POPUP "&Edition" + BEGIN + MENUITEM "&Annuler\tCtrl+Z", ID_EDIT_UNDO + MENUITEM "&Répéter\tCtrl+Y", ID_EDIT_REDO + MENUITEM "&Sélectionner tout\tCtrl+A", ID_EDIT_SELECTALL + MENUITEM SEPARATOR + MENUITEM "&Couper\tCtrl+X", ID_EDIT_CUT + MENUITEM "Co&pier\tCtrl+C", ID_EDIT_COPY + MENUITEM SEPARATOR + MENUITEM "Lecture-&seule", ID_EDIT_READONLY + MENUITEM "&Modifié", ID_EDIT_MODIFIED + MENUITEM SEPARATOR + POPUP "&Avancés" + BEGIN + MENUITEM "&Information sélection", ID_EDIT_SELECTIONINFO + MENUITEM "&Format caractÚres", ID_EDIT_CHARFORMAT + MENUITEM "&Déf. format car.", ID_EDIT_DEFCHARFORMAT + MENUITEM "Format paragrap&he", ID_EDIT_PARAFORMAT + MENUITEM "&Recevoir texte", ID_EDIT_GETTEXT + END + END + POPUP "F&ormat" + BEGIN + POPUP "&Fond" + BEGIN + MENUITEM "&SystÚme\tCtrl+1", ID_BACK_1 + MENUITEM "&PostThat yellowish\tCtrl+2", ID_BACK_2 + END + POPUP "&Alignement" + BEGIN + MENUITEM "Aligné à &gauche\tCtrl+L", ID_ALIGN_LEFT + MENUITEM "&Centré\tCtrl+E", ID_ALIGN_CENTER + MENUITEM "Aligné à &droite\tCtrl+R", ID_ALIGN_RIGHT + END + END +END diff --git a/programs/wordpad/rsrc.rc b/programs/wordpad/rsrc.rc index d35524277b..669954c873 100644 --- a/programs/wordpad/rsrc.rc +++ b/programs/wordpad/rsrc.rc @@ -78,3 +78,4 @@ IDB_TOOLBAR BITMAP "toolbar.bmp" #include "De.rc" #include "En.rc" +#include "Fr.rc"