- Remove licence dialog boxes and implement an about box crediting authors and statin...
[reactos.git] / reactos / subsys / system / notepad / res / Sk.rc
1 /*
2 * Notepad (Slovak resources)
3 *
4 * Copyright 1997,98 Marcel Baur <mbaur@g26.ethz.ch>
5 * Proofread 1998 by David Lee Lambert <lamber45@egr.msu.edu>
6 * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23 LANGUAGE LANG_SLOVAK, SUBLANG_NEUTRAL
24
25 MAIN_MENU MENU
26 {
27 POPUP "&File"
28 BEGIN
29 MENUITEM "&New...", CMD_NEW
30 MENUITEM "&Open", CMD_OPEN
31 MENUITEM "&Save", CMD_SAVE
32 MENUITEM "Save &as...", CMD_SAVE_AS
33 MENUITEM "&Print", CMD_PRINT
34 MENUITEM "Page Se&tup...", CMD_PAGE_SETUP
35 MENUITEM "P&rinter Setup...", CMD_PRINTER_SETUP
36 MENUITEM SEPARATOR
37 MENUITEM "&Exit", CMD_EXIT
38 }
39 POPUP "&Edit"
40 BEGIN
41 MENUITEM "&Undo\tCtrl+Z", CMD_UNDO
42 MENUITEM SEPARATOR
43 MENUITEM "Cu&t\tCtrl+X", CMD_CUT
44 MENUITEM "&Copy\tCtrl+C", CMD_COPY
45 MENUITEM "&Paste\tCtrl+V", CMD_PASTE
46 MENUITEM "&Delete\tDel", CMD_DELETE
47 MENUITEM SEPARATOR
48 MENUITEM "Select &all", CMD_SELECT_ALL
49 MENUITEM "&Time/Date\tF5", CMD_TIME_DATE
50 MENUITEM SEPARATOR
51 MENUITEM "&Wrap long lines", CMD_WRAP
52 }
53 POPUP "&Search"
54 BEGIN
55 MENUITEM "&Search", CMD_SEARCH
56 MENUITEM "&Search next\tF3", CMD_SEARCH_NEXT
57 }
58 POPUP "&Help"
59 BEGIN
60 MENUITEM "&Contents", CMD_HELP_CONTENTS
61 MENUITEM "&Search...", CMD_HELP_SEARCH
62 MENUITEM "&Help on help", CMD_HELP_ON_HELP
63 MENUITEM SEPARATOR
64 POPUP "Inf&o..."
65 BEGIN
66 MENUITEM "&About" CMD_ABOUT
67 MENUITEM "&About Wine", CMD_ABOUT_WINE
68 }
69 }
70 }
71
72 /* Dialog `Page setup' */
73
74 DIALOG_PAGESETUP DIALOG 0, 0, 225, 95
75 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
76 FONT 8, "MS Shell Dlg"
77 CAPTION "Page Setup"
78 {
79 LTEXT "&Header:", 0x140, 10, 07, 40, 15
80 EDITTEXT 0x141, 60, 05,110, 12, WS_BORDER | WS_TABSTOP
81 LTEXT "&Footer:", 0x142, 10, 24, 40, 15
82 EDITTEXT 0x143, 60, 22,110, 12, WS_BORDER | WS_TABSTOP
83
84 GROUPBOX "&Margins:", 0x144, 10, 43,160, 45
85 LTEXT "&Left:", 0x145, 20, 55, 30, 10, WS_CHILD
86 EDITTEXT /*STRING_PAGESETUP_LEFTVALUE,*/ 0x147, 50, 55, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP
87 LTEXT "&Top:", 0x148, 20, 73, 30, 10, WS_CHILD
88 EDITTEXT /*STRING_PAGESETUP_TOPVALUE,*/ 0x14A, 50, 73, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP
89 LTEXT "&Right:", 0x14B, 100, 55, 30, 10, WS_CHILD
90 EDITTEXT /*STRING_PAGESETUP_RIGHTVALUE,*/ 0x14D, 130, 55, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP
91 LTEXT "&Bottom:", 0x14E,100, 73, 30, 10, WS_CHILD
92 EDITTEXT /*STRING_PAGESETUP_BOTTOMVALUE,*/ 0x150, 130, 73, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP
93
94 DEFPUSHBUTTON "OK", 0x151, 180, 3, 40, 15, WS_TABSTOP
95 PUSHBUTTON "Cancel", 0x152, 180, 21, 40, 15, WS_TABSTOP
96 PUSHBUTTON "&Help", 0x153, 180, 39, 40, 15, WS_TABSTOP
97 }
98
99 IDD_ABOUTBOX DIALOG DISCARDABLE 22,16,284,170
100 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
101 CAPTION "About ReactOS Notepad"
102 FONT 8, "Tahoma"
103 BEGIN
104 CONTROL "ReactOS Notepad v1.0\r\nCopyright 1997,98 Marcel Baur <mbaur@g26.ethz.ch>\r\nCopyright 2000 Mike McCormack <Mike_McCormack@looksmart.com.au>\r\nCopyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>\r\nCopyright 2002 Andriy Palamarchuk\r\nIcon borrowed from Notepad2 - http://www.flos-freeware.ch/notepad2.html",
105 -1,"Static",SS_LEFTNOWORDWRAP | WS_GROUP,46,7,232,39
106 CONTROL "Icon borrowed from Notepad2 - http://www.flos-freeware.ch/notepad2.html",
107 -1,"Static",0x50000000,8,48,272,11
108 DEFPUSHBUTTON "Close",IDOK,114,149,44,15,WS_GROUP
109 ICON IDI_NPICON,-1,12,9,20,30
110 EDITTEXT IDC_LICENSE,8,64,272,81,ES_MULTILINE |
111 ES_READONLY | WS_VSCROLL
112 END
113
114 STRINGTABLE DISCARDABLE
115 BEGIN
116 STRING_LICENSE, "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\r\n\r\nThis program 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 General Public License for more details.\r\n\r\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA."
117 END
118
119 STRINGTABLE DISCARDABLE
120 {
121 STRING_PAGESETUP_HEADERVALUE, "&n" /* FIXME */
122 STRING_PAGESETUP_FOOTERVALUE, "Page &s" /* FIXME */
123 STRING_PAGESETUP_LEFTVALUE, "20 mm" /* FIXME */
124 STRING_PAGESETUP_RIGHTVALUE, "20 mm" /* FIXME */
125 STRING_PAGESETUP_TOPVALUE, "25 mm" /* FIXME */
126 STRING_PAGESETUP_BOTTOMVALUE, "25 mm" /* FIXME */
127
128 STRING_NOTEPAD, "Notepad"
129 STRING_ERROR, "ERROR"
130 STRING_WARNING, "WARNING"
131 STRING_INFO, "Information"
132
133 STRING_UNTITLED, "(untitled)"
134
135 STRING_ALL_FILES, "All files (*.*)"
136 STRING_TEXT_FILES_TXT, "Text files (*.txt)"
137
138 STRING_TOOLARGE, "File '%s' is too large for notepad.\n \
139 Please use a different editor."
140 STRING_NOTEXT, "You didn't enter any text. \
141 \nPlease type something and try again"
142 STRING_DOESNOTEXIST, "File '%s'\ndoes not exist\n\n \
143 Do you want to create a new file ?"
144 STRING_NOTSAVED, "File '%s'\nhas been modified\n\n \
145 Would you like to save the changes ?"
146 STRING_NOTFOUND, "'%s' can not be found."
147 STRING_OUT_OF_MEMORY, "Not enough memory to complete this \
148 task. \nClose one or more applications to increase the amount of \nfree \
149 memory."
150
151 }