63 lines
2.3 KiB
Plaintext
63 lines
2.3 KiB
Plaintext
/*
|
|
* Help Viewer
|
|
*
|
|
* Copyright 1996 Ulrich Schmid
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
/* This file is not yet complete !! */
|
|
|
|
#define LANGUAGE_ID De
|
|
#define LANGUAGE_NUMBER 2
|
|
|
|
/* Menu */
|
|
|
|
#define MENU_FILE "&Datei"
|
|
#define MENU_FILE_OPEN "Ö&ffnen..."
|
|
#define MENU_FILE_PRINT "Thema &drucken"
|
|
#define MENU_FILE_PRINTER_SETUP "Drucker&einrichtung..."
|
|
#define MENU_FILE_EXIT "&Beenden"
|
|
|
|
#define MENU_EDIT "&Bearbeiten"
|
|
#define MENU_EDIT_COPY_DIALOG "&Kopieren..."
|
|
#define MENU_EDIT_ANNOTATE "&Anmerken..."
|
|
|
|
#define MENU_BOOKMARK "&Lesezeichen"
|
|
#define MENU_BOOKMARK_DEFINE "&Definieren..."
|
|
|
|
#define MENU_HELP "&Hilfe"
|
|
#define MENU_HELP_ON_HELP "&Hilfe benutzen"
|
|
#define MENU_HELP_ON_TOP "Immer im &Vordergrund"
|
|
#define MENU_HELP_INFO "Inf&o..."
|
|
#define MENU_HELP_ABOUT_WINE "&Über WINE"
|
|
|
|
/* Strings */
|
|
|
|
#define STRING_WINE_HELP "WINE Hilfe"
|
|
#define STRING_ERROR "FEHLER"
|
|
#define STRING_WARNING "ACHTUNG"
|
|
#define STRING_INFO "Information"
|
|
#define STRING_NOT_IMPLEMENTED "Nicht implementiert"
|
|
#define STRING_HLPFILE_ERROR_s "Fehler beim Lesen der Hilfe-Datei `%s'"
|
|
#define STRING_CONTENTS "&Inhalt"
|
|
#define STRING_SEARCH "&Suchen"
|
|
#define STRING_BACK "&Zurück"
|
|
#define STRING_HISTORY "&Bisher"
|
|
#define STRING_ALL_FILES "Alle Dateien (*.*)"
|
|
#define STRING_HELP_FILES_HLP "Hilfe-Dateien (*.hlp)"
|
|
|
|
#include "Xx.rc"
|