De.rc 2.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright 2006 by Henning Gerhardt
 *
 * 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
 */

LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT

MAINMENU MENU DISCARDABLE 
BEGIN
    POPUP "&Datei"
    BEGIN
25 26 27
        MENUITEM "&Neu\tCtrl+N",          ID_FILE_NEW
        MENUITEM "&ffnen\tCtrl+O",       ID_FILE_OPEN
        MENUITEM "&Speichern\tCtrl+S",    ID_FILE_SAVE
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
        MENUITEM SEPARATOR
        MENUITEM "&Beenden",      ID_FILE_EXIT
    END
    POPUP "&Bearbeiten"
    BEGIN
        MENUITEM "&Rckgngig\tCtrl+Z",         ID_EDIT_UNDO
        MENUITEM "&Wiederholen\tCtrl+Y",        ID_EDIT_REDO
        MENUITEM "&Alles markieren\tCtrl+A",    ID_EDIT_SELECTALL
        MENUITEM SEPARATOR
        MENUITEM "Aus&schneiden\tCtrl+X",       ID_EDIT_CUT
        MENUITEM "&Kopieren\tCtrl+C",           ID_EDIT_COPY
        MENUITEM SEPARATOR
        MENUITEM "Schreibgesch&tzt",           ID_EDIT_READONLY
        MENUITEM "&Gendert",                   ID_EDIT_MODIFIED
        MENUITEM SEPARATOR
        POPUP "&Extras"
        BEGIN
            MENUITEM "Markierungs&information",     ID_EDIT_SELECTIONINFO
            MENUITEM "Zeichen&format",              ID_EDIT_CHARFORMAT
            MENUITEM "&Standardzeichenformat",      ID_EDIT_DEFCHARFORMAT
            MENUITEM "&Absatzformat",               ID_EDIT_PARAFORMAT
            MENUITEM "&Get text",                   ID_EDIT_GETTEXT
        END
    END
    POPUP "F&ormat"
    BEGIN
        POPUP "&Hintergrund"
        BEGIN
            MENUITEM "&System\tCtrl+1",         ID_BACK_1
            MENUITEM "&PostIt-Notiz\tCtrl+2",           ID_BACK_2
        END
        POPUP "&Ausrichtung"
        BEGIN
            MENUITEM "&Links\tCtrl+L",        ID_ALIGN_LEFT
            MENUITEM "&Zentriert\tCtrl+E",    ID_ALIGN_CENTER
            MENUITEM "&Rechts\tCtrl+R",       ID_ALIGN_RIGHT
        END
    END
END