shell32_Nl.rc 11.9 KB
Newer Older
1 2
/*
 * Copyright 1998 Juergen Schmied
3
 * Copyright 2008 Frans Kool
4 5 6 7 8 9 10 11 12 13 14 15 16
 *
 * 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
17
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18
 */
19 20

#include "shresdef.h"
21 22

#pragma code_page(65001)
23

24
LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
25

26 27
MENU_001 MENU DISCARDABLE
BEGIN
28 29
	MENUITEM "&Grote Pictogrammen",	FCIDM_SHVIEW_BIGICON
	MENUITEM "&Kleine Pictogrammen",	FCIDM_SHVIEW_SMALLICON
30 31 32 33 34 35 36 37 38 39 40 41 42
	MENUITEM "&Lijst",			FCIDM_SHVIEW_LISTVIEW
	MENUITEM "&Details",		FCIDM_SHVIEW_REPORTVIEW
END

/*
 shellview background menu
*/
MENU_002 MENU DISCARDABLE
BEGIN
	POPUP ""
	BEGIN
	  POPUP "&Bekijken"
	  BEGIN
43 44
	    MENUITEM "&Grote Pictogrammen",	FCIDM_SHVIEW_BIGICON
	    MENUITEM "&Kleine Pictogrammen",	FCIDM_SHVIEW_SMALLICON
45 46 47 48
	    MENUITEM "&Lijst",		FCIDM_SHVIEW_LISTVIEW
	    MENUITEM "&Details",	FCIDM_SHVIEW_REPORTVIEW
	  END
	  MENUITEM SEPARATOR
49
	  POPUP "P&ictogrammen Sorteren"
50 51 52 53 54 55 56 57
	  BEGIN
	    MENUITEM "Op &Naam",	0x30	/* column 0 */
	    MENUITEM "Op &Type",	0x32	/* column 2 */
	    MENUITEM "Op &Grootte",	0x31	/* ... */
	    MENUITEM "Op &Datum",	0x33
	    MENUITEM SEPARATOR
	    MENUITEM "&Automatisch",	FCIDM_SHVIEW_AUTOARRANGE
	  END
58
	  MENUITEM "Pictogrammen Uitlijnen",	FCIDM_SHVIEW_SNAPTOGRID
59 60 61 62
	  MENUITEM SEPARATOR
	  MENUITEM "Vernieuwen",		FCIDM_SHVIEW_REFRESH
	  MENUITEM SEPARATOR
	  MENUITEM "Plakken",		FCIDM_SHVIEW_INSERT
63
	  MENUITEM "Plakken als Snelkoppeling",	FCIDM_SHVIEW_INSERTLINK
64 65 66 67
	  MENUITEM SEPARATOR
	  POPUP "Nieuw"
	  BEGIN
	    MENUITEM "Nieuwe &Map",	FCIDM_SHVIEW_NEWFOLDER
68
	    MENUITEM "Nieuwe Sne&lkoppeling",	FCIDM_SHVIEW_NEWLINK
69 70 71 72 73 74 75 76
	    MENUITEM SEPARATOR
	  END
	  MENUITEM SEPARATOR
	  MENUITEM "Eigenschappen",	FCIDM_SHVIEW_PROPERTIES
	END
END


77 78 79 80 81 82 83
/*
 shellview item menu
*/
MENU_SHV_FILE MENU DISCARDABLE
BEGIN
	POPUP ""
	BEGIN
84
	  MENUITEM "&Selecteren"		FCIDM_SHVIEW_OPEN
85
	  MENUITEM "&Verkennen",		FCIDM_SHVIEW_EXPLORE
86
	  MENUITEM "&Openen",		FCIDM_SHVIEW_OPEN
87
	  MENUITEM SEPARATOR
88
	  MENUITEM "K&nippen",		FCIDM_SHVIEW_CUT
89
	  MENUITEM "&Kopiëren",		FCIDM_SHVIEW_COPY
90
	  MENUITEM SEPARATOR
91 92
	  MENUITEM "Maak Sne&lkoppeling",	FCIDM_SHVIEW_CREATELINK
	  MENUITEM "Ver&wijderen",		FCIDM_SHVIEW_DELETE
93
	  MENUITEM "&Hernoemen",		FCIDM_SHVIEW_RENAME
94
	  MENUITEM SEPARATOR
95
	  MENUITEM "&Eigenschappen",	FCIDM_SHVIEW_PROPERTIES
96 97 98
	END
END

99 100
MENU_CPANEL MENU
BEGIN
101
    POPUP "&Bestand"
102 103
    BEGIN
        MENUITEM SEPARATOR
104
        MENUITEM "&Afsluiten", IDM_CPANEL_EXIT
105 106
    END

107
    POPUP "B&eeld"
108
    BEGIN
109 110
        MENUITEM "&Grote Pictogrammen", FCIDM_SHVIEW_BIGICON
        MENUITEM "&Kleine Pictogrammen", FCIDM_SHVIEW_SMALLICON
111 112 113 114 115 116
        MENUITEM "&Lijst", FCIDM_SHVIEW_LISTVIEW
        MENUITEM "&Details", FCIDM_SHVIEW_REPORTVIEW
    END

    POPUP "&Help"
    BEGIN
117
        MENUITEM "&Over Configuratiescherm", IDM_CPANEL_ABOUT
118 119 120
    END
END

121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
SHBRSFORFOLDER_MSGBOX DIALOG LOADONCALL MOVEABLE DISCARDABLE 15, 40, 188, 192
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU | DS_MODALFRAME | DS_SETFONT | DS_3DLOOK
CAPTION "Bladeren naar Map"
FONT 8, "MS Shell Dlg"
{
 DEFPUSHBUTTON "OK", 1, 80, 176, 50, 12, BS_DEFPUSHBUTTON | WS_GROUP | WS_TABSTOP
 PUSHBUTTON "Annuleren", 2, 134, 176, 50, 12, WS_GROUP | WS_TABSTOP
 LTEXT "", IDD_TITLE, 4, 4, 180, 12
 LTEXT "", IDD_STATUS, 4, 25, 180, 12
 CONTROL "", IDD_TREEVIEW, "SysTreeView32",
	TVS_HASBUTTONS | TVS_HASLINES | TVS_LINESATROOT |
	WS_BORDER | WS_TABSTOP,
	4, 40, 180, 120
}

SHNEWBRSFORFOLDER_MSGBOX DIALOG LOADONCALL MOVEABLE DISCARDABLE 15, 40, 218, 196
137
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU | WS_SIZEBOX | DS_MODALFRAME | DS_SETFONT | DS_3DLOOK
138 139 140 141 142
CAPTION "Bladeren naar Map"
FONT 8, "MS Shell Dlg"
{
 LTEXT "", IDD_TITLE, 10, 8, 198, 24
 LTEXT "", IDD_STATUS, 10, 25, 198, 12
143
 LTEXT "Map:", IDD_FOLDER, 10, 156, 40, 12
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
 CONTROL "", IDD_TREEVIEW, "SysTreeView32",
	TVS_HASBUTTONS | TVS_HASLINES | TVS_LINESATROOT |
	WS_BORDER | WS_TABSTOP,
	12, 38, 194, 105
 EDITTEXT IDD_FOLDERTEXT, 46, 150, 160, 14, WS_BORDER | WS_GROUP | WS_TABSTOP
 PUSHBUTTON "Nieuwe &map maken", IDD_MAKENEWFOLDER, 12, 174, 70, 14, WS_GROUP | WS_TABSTOP
 DEFPUSHBUTTON "OK", IDOK, 102, 174, 50, 14, BS_DEFPUSHBUTTON | WS_GROUP | WS_TABSTOP
 PUSHBUTTON "Annuleren", IDCANCEL, 156, 174, 50, 14, WS_GROUP | WS_TABSTOP
}

SHELL_YESTOALL_MSGBOX DIALOG 200, 100, 280, 90
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
CAPTION "Message"
FONT 8, "MS Shell Dlg"
{
    DEFPUSHBUTTON "&Ja", IDYES, 34, 69, 53, 14, WS_GROUP | WS_TABSTOP
    PUSHBUTTON "Ja op &alles", IDD_YESTOALL, 92, 69, 65, 14, WS_GROUP | WS_TABSTOP
    PUSHBUTTON "&Nee", IDNO, 162, 69, 53, 14, WS_GROUP | WS_TABSTOP
    PUSHBUTTON "Ann&uleren", IDCANCEL, 220, 69, 53, 14, WS_GROUP | WS_TABSTOP
    ICON "", IDD_ICON, 10, 10, 16, 16
    LTEXT "", IDD_MESSAGE, 40, 10, 238, 52, 0
}

167
SHELL_ABOUT_MSGBOX DIALOG LOADONCALL MOVEABLE DISCARDABLE 15, 40, 220, 152
168 169
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
CAPTION "Info %s"
170
FONT 10, "MS Shell Dlg"
171
{
172
 DEFPUSHBUTTON "OK", IDOK, 153, 133, 60, 12, WS_TABSTOP
173
 PUSHBUTTON "Wine &licentie...", IDC_ABOUT_LICENSE, 153, 113, 60, 12, WS_TABSTOP
174 175 176 177
 LISTBOX IDC_ABOUT_LISTBOX, 8, 65, 137, 82, LBS_NOTIFY | WS_VSCROLL | WS_BORDER
 ICON "", stc1, 10, 10, 30, 30
 LTEXT "", IDC_ABOUT_STATIC_TEXT1, 40, 10, 137, 10
 LTEXT "", IDC_ABOUT_STATIC_TEXT2, 40, 22, 137, 10
178
 LTEXT "Draait op %s", IDC_ABOUT_STATIC_TEXT3, 42, 34, 170, 10
179
 LTEXT "Wine is geschreven door:", IDC_ABOUT_WINE_TEXT, 8, 55, 137, 10
180 181
}

182 183 184
SHELL_RUN_DLG DIALOG LOADONCALL MOVEABLE DISCARDABLE 0, 0, 227, 95
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
CAPTION ""
185
FONT 8, "MS Shell Dlg"
186 187
{
 ICON "", 12297, 7, 11, 18, 20, WS_VISIBLE
188 189
 LTEXT "Geef de naam van een programma, map, document, of Internet-adres op. Wine zal het vervolgens openen.", 12289, 36, 11, 182, 18
 LTEXT "&Openen:", 12305, 7, 39, 28, 10
190
 CONTROL "", 12298, "COMBOBOX", WS_TABSTOP | WS_GROUP | WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 36, 37, 183, 100
191
 DEFPUSHBUTTON "OK", IDOK, 62, 63, 50, 14, WS_TABSTOP
192 193
 PUSHBUTTON "Annuleren", IDCANCEL, 116, 63, 50, 14, WS_TABSTOP
 PUSHBUTTON "&Bladeren...", 12288, 170, 63, 50, 14, WS_TABSTOP
194
}
195

196
STRINGTABLE
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
{
        /* columns in the shellview */
	IDS_SHV_COLUMN1		"Bestand"
	IDS_SHV_COLUMN2		"Grootte"
	IDS_SHV_COLUMN3		"Type"
	IDS_SHV_COLUMN4		"Gewijzigd"
	IDS_SHV_COLUMN5		"Attributen"
	IDS_SHV_COLUMN6		"Grootte"
	IDS_SHV_COLUMN7		"Beschikbare ruimte"
	IDS_SHV_COLUMN8		"Naam"
	IDS_SHV_COLUMN9		"Commentaar"
	IDS_SHV_COLUMN10	"Eigenaar"
	IDS_SHV_COLUMN11	"Groep"
	IDS_SHV_COLUMN_DELFROM	"Originele locatie"
	IDS_SHV_COLUMN_DELDATE	"Datum verwijderd"

        /* special folders */
	IDS_DESKTOP		"Bureaublad"
	IDS_MYCOMPUTER		"Mijn Computer"
	IDS_RECYCLEBIN_FOLDER_NAME      "Vuilnisbak"
217
	IDS_CONTROLPANEL	"Configuratiescherm"
218 219

        /* context menus */
220 221
	IDS_VIEW_LARGE		"Grote Pictogrammen"
	IDS_VIEW_SMALL		"&Kleine Pictogrammen"
222 223
	IDS_VIEW_LIST		"&Lijst"
	IDS_VIEW_DETAILS	"&Details"
224 225
	IDS_SELECT		"Selecteren"
	IDS_OPEN		"Openen"
226

227 228 229 230
	IDS_CREATEFOLDER_DENIED "Niet mogelijk om nieuwe map te maken: Geen permissies."
	IDS_CREATEFOLDER_CAPTION "Fout tijdens het maken van een nieuwe map"
	IDS_DELETEITEM_CAPTION "Bevestig bestandsverwijdering"
	IDS_DELETEFOLDER_CAPTION "Bevestig mapverwijdering"
231 232 233
	IDS_DELETEITEM_TEXT "Weet u zeker dat u '%1' wilt verwijderen?"
	IDS_DELETEMULTIPLE_TEXT "Weet u zeker dat u deze %1 bestanden wilt verwijderen?"
	IDS_DELETESELECTED_TEXT "Weet u zeker dat u de geselecteerde bestand(en) wilt verwijderen?"
234 235 236 237
	IDS_TRASHITEM_TEXT "Weet u zeker dat u '%1' naar de Vuilnisbak wilt verplaatsen?"
	IDS_TRASHFOLDER_TEXT "Weet u zeker dat u '%1' en zijn gehele inhoud naar de Vuilnisbak wilt verplaatsen?"
	IDS_TRASHMULTIPLE_TEXT "Weet u zeker dat u deze %1 bestanden naar de Vuilnisbak wilt verplaatsen?"
	IDS_CANTTRASH_TEXT "Bestand '%1' kan niet naar de Vuilnisbak worden verplaatst. Wilt u het bestand permanent verwijderen?"
238
	IDS_OVERWRITEFILE_TEXT "Deze map bevat reeds een bestand genaamd '%1'.\n\nWilt u het vervangen?"
239
	IDS_OVERWRITEFILE_CAPTION "Bevestig bestandsoverschrijving"
240
	IDS_OVERWRITEFOLDER_TEXT "Deze map bevat reeds een map genaamd '%1'.\n\n"\
241 242
	    "Als de bestanden in de doelmap dezelfde naam hebben als de bestanden in de\n"\
	    "geselecteerde map zullen ze worden overschreven. Wilt u alsnog de map kopiëren\n"\
243 244 245 246 247 248 249 250
	    "of verplaatsen?"

        /* message box strings */
        IDS_RESTART_TITLE       "Herstarten"
        IDS_RESTART_PROMPT      "Wilt u een Windows herstart simuleren?"
        IDS_SHUTDOWN_TITLE      "Afsluiten"
        IDS_SHUTDOWN_PROMPT     "Wilt u uw Wine sessie afsluiten?"

251
        /* Run File dialog */
252 253
        IDS_RUNDLG_ERROR           "Fout tijdens tonen venster 'Uitvoeren Bestand' (interne fout)"
        IDS_RUNDLG_BROWSE_ERROR    "Fout tijdens tonen van Bladeren venster (interne fout)"
254 255 256
        IDS_RUNDLG_BROWSE_CAPTION  "Bladeren"
        IDS_RUNDLG_BROWSE_FILTER   "Uitvoerbare bestanden\0*.exe\0Alle bestanden\0*.*\0\0"

257
        /* shell folder path default values */
258
	IDS_PROGRAMS                "Start Menu\\Programma's"
259 260
	IDS_PERSONAL                "Mijn Documenten"
	IDS_FAVORITES               "Favorieten"
261
	IDS_STARTUP                 "Start Menu\\Programma's\\Opstarten"
262
	IDS_RECENT                  "Recent"
263
	IDS_SENDTO                  "SendTo"
264 265
	IDS_STARTMENU               "Start Menu"
	IDS_MYMUSIC                 "Mijn Muziek"
266
	IDS_MYVIDEO                 "Mijn Video's"
267 268 269
	IDS_DESKTOPDIRECTORY        "Bureaublad"
	IDS_NETHOOD                 "Netwerkomgeving"
	IDS_TEMPLATES               "Sjablonen"
270
	IDS_APPDATA                 "Application Data"
271
	IDS_PRINTHOOD               "Printeromgeving"
272 273 274 275
	IDS_LOCAL_APPDATA           "Local Settings\\Application Data"
	IDS_INTERNET_CACHE          "Local Settings\\Tijdelijke Internetbestanden"
	IDS_COOKIES                 "Cookies"
	IDS_HISTORY                 "Local Settings\\Geschiedenis"
276
	IDS_PROGRAM_FILES           "Program Files"
277
	IDS_MYPICTURES              "Mijn Afbeeldingen"
278
	IDS_PROGRAM_FILES_COMMON    "Program Files\\Common Files"
279 280 281 282 283
	IDS_COMMON_DOCUMENTS        "Documenten"
	IDS_ADMINTOOLS              "Start Menu\\Programmas\\Administratieve Tools"
	IDS_COMMON_MUSIC            "Documenten\\Mijn Muziek"
	IDS_COMMON_PICTURES         "Documenten\\Mijn Afbeeldingen"
	IDS_COMMON_VIDEO            "Documenten\\Mijn Videos"
284
	IDS_CDBURN_AREA             "Local Settings\\Applicatie Data\\Microsoft\\CD Branden"
285 286

	IDS_NEWFOLDER		"Nieuwe Map"
287

288
	IDS_CPANEL_TITLE            "Wine Configuratiescherm"
289 290 291
	IDS_CPANEL_NAME             "Naam"
	IDS_CPANEL_DESCRIPTION      "Beschrijving"

292
        IDS_SHLEXEC_NOASSOC         "Er is geen Windows-programma geconfigureerd om dit soort bestanden te openen."
293
}
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311

STRINGTABLE
{
IDS_LICENSE_CAPTION,            "Wine Licentie"
/* Only translated the title, since there is no official translation of the LGPL */
IDS_LICENSE,
"Wine 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.\n\n\
Wine 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.\n\n\
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA."
}