wined3d: Make ActivateContext a bit smaller.
[wine] / programs / wordpad / Pl.rc
1 /*
2  * Copyright 2004 by Krzysztof Foltman
3  * Copyright 2006 by Mikolaj Zalewski
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * 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 LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
21
22 MAINMENU MENU DISCARDABLE
23 BEGIN
24     POPUP "&Plik"
25     BEGIN
26         MENUITEM "&Nowy\tCtrl+N",           ID_FILE_NEW
27         MENUITEM "&Otwórz...\tCtrl+O",      ID_FILE_OPEN
28         MENUITEM "&Zapisz\tCtrl+S",         ID_FILE_SAVE
29         MENUITEM "Z&apisz jako...",         ID_FILE_SAVEAS
30         MENUITEM SEPARATOR
31         MENUITEM "Za&koñcz",         ID_FILE_EXIT
32     END
33     POPUP "&Edycja"
34     BEGIN
35         MENUITEM "&Cofnij\tCtrl+Z",               ID_EDIT_UNDO
36         MENUITEM "&Powtórz\tCtrl+Y",               ID_EDIT_REDO
37         MENUITEM SEPARATOR
38         MENUITEM "Wy&tnij\tCtrl+X",                ID_EDIT_CUT
39         MENUITEM "&Kopiuj\tCtrl+C",               ID_EDIT_COPY
40         MENUITEM "Wkl&ej\tCtrl+V",                ID_EDIT_PASTE
41         MENUITEM "&Usuñ\tDel",                    ID_EDIT_CLEAR
42         MENUITEM "&Zaznacz wszystko\tCtrl+A",         ID_EDIT_SELECTALL
43         MENUITEM SEPARATOR
44         MENUITEM "Tylko do &odczytu",                  ID_EDIT_READONLY
45         MENUITEM "&Zmodifykowany",                   ID_EDIT_MODIFIED
46         MENUITEM SEPARATOR
47         POPUP "&Dodatki"
48         BEGIN
49             MENUITEM "Zaznaczenie - &info",             ID_EDIT_SELECTIONINFO
50             MENUITEM "&Format znaków",           ID_EDIT_CHARFORMAT
51             MENUITEM "&Standardowy format znaków",           ID_EDIT_DEFCHARFORMAT
52             MENUITEM "Format aka&pitu",           ID_EDIT_PARAFORMAT
53             MENUITEM "&Pobie¿ tekst",                   ID_EDIT_GETTEXT
54         END
55     END
56     POPUP "&View"
57     BEGIN
58         MENUITEM "&Toolbar",        ID_TOGGLE_TOOLBAR
59         MENUITEM "&Formatbar",      ID_TOGGLE_FORMATBAR
60         MENUITEM "&Statusbar",      ID_TOGGLE_STATUSBAR
61     END
62     POPUP "F&ormat"
63     BEGIN
64         POPUP "&T³o"
65         BEGIN
66             MENUITEM "&System\tCtrl+1",         ID_BACK_1
67             MENUITEM "&PostThat (¿ó³ty)\tCtrl+2",           ID_BACK_2
68         END
69         POPUP "&Wyrównanie"
70         BEGIN
71             MENUITEM "Do &lewej\tCtrl+L",         ID_ALIGN_LEFT
72             MENUITEM "&Wy\9crodkowanie\tCtrl+E",       ID_ALIGN_CENTER
73             MENUITEM "Do &Prawej\tCtrl+R",        ID_ALIGN_RIGHT
74         END
75     END
76 END
77
78 STRINGTABLE DISCARDABLE
79 BEGIN
80     STRING_RICHTEXT_FILES_RTF,  "Tekst sformatowany - RTF (*.rtf)"
81     STRING_TEXT_FILES_TXT,      "Dokument tekstowy (*.txt)"
82     STRING_ALL_FILES,           "Wszystkie dokumenty (*.*)"
83 END
84
85 STRINGTABLE DISCARDABLE
86 BEGIN
87     STRING_DEFAULT_FILENAME,     "Document"
88     STRING_PROMPT_SAVE_CHANGES,  "Save changes to '%s'?"
89 END