Nl.rc 2.13 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Help Viewer (Dutch resources)
 *
 * Copyright 2003 Hans Leidekker
 *
 * 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
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 20 21 22
 */

/* Menu */

23
MAIN_MENU MENU LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
24 25 26 27 28 29 30 31 32 33
{
 POPUP "&Bestand" {
  MENUITEM "&Openen", MNID_FILE_OPEN
  MENUITEM SEPARATOR
  MENUITEM "Af&drukken", MNID_FILE_PRINT
  MENUITEM "&Printerinstellingen...", MNID_FILE_SETUP
  MENUITEM SEPARATOR
  MENUITEM "&Afsluiten", MNID_FILE_EXIT
 }
 POPUP "&Bewerken" {
34
   MENUITEM "&Kopiren...", MNID_EDIT_COPYDLG
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
   MENUITEM SEPARATOR
   MENUITEM "&Annoteren...", MNID_EDIT_ANNOTATE
 }
 POPUP "&Favorieten" {
   MENUITEM "&Aanmaken...", MNID_BKMK_DEFINE
 }
 POPUP "&Help" {
   MENUITEM "Hulp &bij help", MNID_HELP_HELPON
   MENUITEM "Altijd &zichtbaar", MNID_HELP_HELPTOP
   MENUITEM SEPARATOR
   MENUITEM "&Info...", MNID_HELP_ABOUT
#ifdef WINELIB
   MENUITEM "&Over WINE", MNID_HELP_WINE
#endif
 }
}

/* Strings */
53
STRINGTABLE DISCARDABLE LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
54 55 56 57 58
{
STID_WINE_HELP, 	"WINE Help"
STID_WHERROR, 		"FOUT"
STID_WARNING,  		"WAARSCHUWING"
STID_INFO,  		"Informatie"
59
STID_NOT_IMPLEMENTED, 	"Niet gemplementeerd"
60 61 62 63 64 65 66 67
STID_HLPFILE_ERROR_s, 	"Fout bij het lezen van het helpbestand `%s'"
STID_CONTENTS, 		"&Inhoud"
STID_SEARCH, 		"&Zoeken"
STID_BACK, 		"&Terug"
STID_HISTORY, 		"&Geschiedenis"
STID_TOPICS,		"&Onderwerpen"
STID_ALL_FILES, 	"Alle bestanden (*.*)"
STID_HELP_FILES_HLP, 	"Helpbestanden (*.hlp)"
68
STID_FILE_NOT_FOUND_s	"Cannot find '%s'. Do you want to find this file yourself?"
69
}