Fr.rc 2.51 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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
16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 18 19 20 21 22 23 24 25 26 27 28 29 30
 */

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
31
    POPUP "&dition"
32 33
    BEGIN
        MENUITEM "&Annuler\tCtrl+Z",               ID_EDIT_UNDO
34 35
        MENUITEM "&Rpter\tCtrl+Y",               ID_EDIT_REDO
        MENUITEM "&Slectionner tout\tCtrl+A",         ID_EDIT_SELECTALL
36 37 38 39 40
        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
41
        MENUITEM "&Modifi",                   ID_EDIT_MODIFIED
42
        MENUITEM SEPARATOR
43
        POPUP "&Avancs"
44
        BEGIN
45 46 47
            MENUITEM "&Information slection",      ID_EDIT_SELECTIONINFO
            MENUITEM "&Format caractres",          ID_EDIT_CHARFORMAT
            MENUITEM "&Df. format car.",           ID_EDIT_DEFCHARFORMAT
48 49 50 51
            MENUITEM "Format paragrap&he",          ID_EDIT_PARAFORMAT
            MENUITEM "&Recevoir texte",             ID_EDIT_GETTEXT
        END
    END
52
    POPUP "Forma&t"
53 54 55
    BEGIN
        POPUP "&Fond"
        BEGIN
56 57
            MENUITEM "&Systme\tCtrl+1",         ID_BACK_1
            MENUITEM "&Jaunasse\tCtrl+2",           ID_BACK_2
58 59 60
        END
        POPUP "&Alignement"
        BEGIN
61 62 63
            MENUITEM "Align  &gauche\tCtrl+L",         ID_ALIGN_LEFT
            MENUITEM "&Centr\tCtrl+E",       ID_ALIGN_CENTER
            MENUITEM "Align  &droite\tCtrl+R",        ID_ALIGN_RIGHT
64 65 66
        END
    END
END