Hans Leidekker | 34a34c7 | 2006-02-17 11:37:21 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2006 by Hans Leidekker |
| 3 | * |
| 4 | * This library is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU Lesser General Public |
| 6 | * License as published by the Free Software Foundation; either |
| 7 | * version 2.1 of the License, or (at your option) any later version. |
| 8 | * |
| 9 | * This library is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 | * Lesser General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU Lesser General Public |
| 15 | * License along with this library; if not, write to the Free Software |
Jonathan Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame] | 16 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
Hans Leidekker | 34a34c7 | 2006-02-17 11:37:21 +0100 | [diff] [blame] | 17 | */ |
| 18 | |
Mikołaj Zalewski | 58bd35c | 2006-10-24 10:46:09 +0200 | [diff] [blame] | 19 | LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL |
Hans Leidekker | 34a34c7 | 2006-02-17 11:37:21 +0100 | [diff] [blame] | 20 | |
| 21 | MAINMENU MENU DISCARDABLE |
| 22 | BEGIN |
| 23 | POPUP "&Bestand" |
| 24 | BEGIN |
Jonathan Ernst | ad4516f | 2006-07-12 14:08:47 +0200 | [diff] [blame] | 25 | MENUITEM "&Nieuw\tCtrl+N" ID_FILE_NEW |
Alexander Nicolaysen Sørnes | f19f4de | 2007-06-05 11:11:56 +0200 | [diff] [blame] | 26 | MENUITEM "&Openen...\tCtrl+O", ID_FILE_OPEN |
Jonathan Ernst | ad4516f | 2006-07-12 14:08:47 +0200 | [diff] [blame] | 27 | MENUITEM "O&pslaan\tCtrl+S", ID_FILE_SAVE |
Alexander Nicolaysen Sørnes | 68ce602 | 2007-05-31 15:38:51 +0200 | [diff] [blame] | 28 | MENUITEM "Ops&laan als...", ID_FILE_SAVEAS |
Hans Leidekker | 34a34c7 | 2006-02-17 11:37:21 +0100 | [diff] [blame] | 29 | MENUITEM SEPARATOR |
| 30 | MENUITEM "&Afsluiten", ID_FILE_EXIT |
| 31 | END |
| 32 | POPUP "Be&werken" |
| 33 | BEGIN |
| 34 | MENUITEM "&Ongedaan maken\tCtrl+Z", ID_EDIT_UNDO |
| 35 | MENUITEM "O&pnieuw\tCtrl+Y", ID_EDIT_REDO |
Hans Leidekker | 34a34c7 | 2006-02-17 11:37:21 +0100 | [diff] [blame] | 36 | MENUITEM SEPARATOR |
| 37 | MENUITEM "K&nippen\tCtrl+X", ID_EDIT_CUT |
| 38 | MENUITEM "&Kopieren\tCtrl+C", ID_EDIT_COPY |
Alexander Nicolaysen Sørnes | 194c3f2 | 2007-02-25 14:39:58 +0100 | [diff] [blame] | 39 | MENUITEM "&Plakken\tCtrl+V", ID_EDIT_PASTE |
| 40 | MENUITEM "&Verwijderen\tDel", ID_EDIT_CLEAR |
| 41 | MENUITEM "&Alles selecteren\tCtrl+A", ID_EDIT_SELECTALL |
Hans Leidekker | 34a34c7 | 2006-02-17 11:37:21 +0100 | [diff] [blame] | 42 | MENUITEM SEPARATOR |
Alexander Nicolaysen Sørnes | 55949ae | 2007-07-18 15:41:33 +0200 | [diff] [blame] | 43 | MENUITEM "&Find . . .\tCrtl+F", ID_FIND |
| 44 | MENUITEM "Find &next\tF3", ID_FIND_NEXT |
| 45 | MENUITEM SEPARATOR |
Hans Leidekker | 34a34c7 | 2006-02-17 11:37:21 +0100 | [diff] [blame] | 46 | MENUITEM "Alleen &lezen", ID_EDIT_READONLY |
| 47 | MENUITEM "&Gewijzigd", ID_EDIT_MODIFIED |
| 48 | MENUITEM SEPARATOR |
| 49 | POPUP "&Extra's" |
| 50 | BEGIN |
| 51 | MENUITEM "Selectie&informatie", ID_EDIT_SELECTIONINFO |
| 52 | MENUITEM "&Karakterformaat", ID_EDIT_CHARFORMAT |
| 53 | MENUITEM "&Standaard karakterformaat", ID_EDIT_DEFCHARFORMAT |
| 54 | MENUITEM "&Paragraafformaat", ID_EDIT_PARAFORMAT |
| 55 | MENUITEM "&Haal tekst", ID_EDIT_GETTEXT |
| 56 | END |
| 57 | END |
Alexander Nicolaysen Sørnes | 10b3483 | 2007-06-06 11:10:47 +0200 | [diff] [blame] | 58 | POPUP "&View" |
| 59 | BEGIN |
| 60 | MENUITEM "&Toolbar", ID_TOGGLE_TOOLBAR |
Alexander Nicolaysen Sørnes | ffa7e0e | 2007-06-06 13:28:26 +0200 | [diff] [blame] | 61 | MENUITEM "&Formatbar", ID_TOGGLE_FORMATBAR |
Alexander Nicolaysen Sørnes | 2de3d95 | 2007-06-06 11:21:08 +0200 | [diff] [blame] | 62 | MENUITEM "&Statusbar", ID_TOGGLE_STATUSBAR |
Alexander Nicolaysen Sørnes | 10b3483 | 2007-06-06 11:10:47 +0200 | [diff] [blame] | 63 | END |
Alexander Nicolaysen Sørnes | 4c6c9e5 | 2007-07-18 15:50:21 +0200 | [diff] [blame] | 64 | POPUP "&Insert" |
| 65 | BEGIN |
| 66 | MENUITEM "&Date and time . . .", ID_DATETIME |
| 67 | END |
Hans Leidekker | 34a34c7 | 2006-02-17 11:37:21 +0100 | [diff] [blame] | 68 | POPUP "&Opmaak" |
| 69 | BEGIN |
Alexander Nicolaysen Sørnes | d4ddb7f | 2007-07-20 18:38:08 +0200 | [diff] [blame] | 70 | MENUITEM "&Bullet points" ID_BULLET |
Hans Leidekker | 34a34c7 | 2006-02-17 11:37:21 +0100 | [diff] [blame] | 71 | POPUP "&Achtergrond" |
| 72 | BEGIN |
| 73 | MENUITEM "&Systeem\tCtrl+1", ID_BACK_1 |
| 74 | MENUITEM "&Geeltje\tCtrl+2", ID_BACK_2 |
| 75 | END |
| 76 | POPUP "&Uitlijning" |
| 77 | BEGIN |
| 78 | MENUITEM "&Links\tCtrl+L", ID_ALIGN_LEFT |
| 79 | MENUITEM "&Gecentreerd\tCtrl+E", ID_ALIGN_CENTER |
| 80 | MENUITEM "&Rechts\tCtrl+R", ID_ALIGN_RIGHT |
| 81 | END |
| 82 | END |
| 83 | END |
Alexander Nicolaysen Sørnes | 77bf899 | 2007-07-08 13:51:19 +0200 | [diff] [blame] | 84 | |
Alexander Nicolaysen Sørnes | 4c6c9e5 | 2007-07-18 15:50:21 +0200 | [diff] [blame] | 85 | IDD_DATETIME DIALOG DISCARDABLE 30, 20, 130, 80 |
| 86 | STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU |
| 87 | CAPTION "Date and time" |
| 88 | FONT 10, "MS Sans Serif" |
| 89 | BEGIN |
| 90 | LTEXT "Available formats",0,3,2,100,15 |
| 91 | LISTBOX IDC_DATETIME,3,12,80,65,LBS_NOINTEGRALHEIGHT |
| 92 | PUSHBUTTON "&OK",IDOK,87,12,40,12 |
| 93 | PUSHBUTTON "&Cancel",IDCANCEL,87,26,40,12 |
| 94 | END |
| 95 | |
| 96 | STRINGTABLE DISCARDABLE |
| 97 | BEGIN |
Alexander Nicolaysen Sørnes | 425c2c6 | 2007-07-18 21:59:24 +0200 | [diff] [blame^] | 98 | STRING_RICHTEXT_FILES_RTF, "Rich text format (*.rtf)" |
| 99 | STRING_TEXT_FILES_TXT, "Text documents (*.txt)" |
| 100 | STRING_TEXT_FILES_UNICODE_TXT, "Unicode text document (*.txt)" |
| 101 | STRING_ALL_FILES, "All documents (*.*)" |
Alexander Nicolaysen Sørnes | 4c6c9e5 | 2007-07-18 15:50:21 +0200 | [diff] [blame] | 102 | END |
| 103 | |
Alexander Nicolaysen Sørnes | 77bf899 | 2007-07-08 13:51:19 +0200 | [diff] [blame] | 104 | STRINGTABLE DISCARDABLE |
| 105 | BEGIN |
| 106 | STRING_DEFAULT_FILENAME, "Document" |
| 107 | STRING_PROMPT_SAVE_CHANGES, "Save changes to '%s'?" |
Alexander Nicolaysen Sørnes | 55949ae | 2007-07-18 15:41:33 +0200 | [diff] [blame] | 108 | STRING_SEARCH_FINISHED, "Finished searching the document." |
Alexander Nicolaysen Sørnes | 3161a3c | 2007-07-18 15:44:24 +0200 | [diff] [blame] | 109 | STRING_LOAD_RICHED_FAILED, "Failed to load the RichEdit library." |
Alexander Nicolaysen Sørnes | 425c2c6 | 2007-07-18 21:59:24 +0200 | [diff] [blame^] | 110 | STRING_SAVE_LOSEFORMATTING, "You have chosen to save in plain text format, " \ |
| 111 | "which will cause all formatting to be lost. " \ |
| 112 | "Are you sure that you wish to do this?" |
Alexander Nicolaysen Sørnes | 77bf899 | 2007-07-08 13:51:19 +0200 | [diff] [blame] | 113 | END |