~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/programs/winhlp32/Pl.rc

Version: ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  1 /*
  2  * Help Viewer
  3  *
  4  * Copyright 1996 Ulrich Schmid
  5  * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
  6  * Copyright 2004 Piotr Caban
  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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 21  */
 22 
 23 #include "winhelp_res.h"
 24 
 25 /* Menu */
 26 
 27 MAIN_MENU MENU LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
 28 {
 29  POPUP "&Plik" {
 30   MENUITEM "&Otwórz", MNID_FILE_OPEN
 31   MENUITEM SEPARATOR
 32   MENUITEM "&Drukuj", MNID_FILE_PRINT
 33   MENUITEM "&Ustawienia drukarki...", MNID_FILE_SETUP
 34    MENUITEM SEPARATOR
 35   MENUITEM "&Wyjście", MNID_FILE_EXIT
 36  }
 37  POPUP "&Edycja" {
 38    MENUITEM "&Kopiuj...", MNID_EDIT_COPYDLG
 39    MENUITEM SEPARATOR
 40    MENUITEM "&Skomentuj...", MNID_EDIT_ANNOTATE
 41  }
 42  POPUP "&Zakładka" {
 43    MENUITEM "&Zdefiniuj...", MNID_BKMK_DEFINE
 44  }
 45  POPUP "&Options" {
 46    POPUP        "Help always visible"
 47    BEGIN
 48      MENUITEM "Default",        MNID_OPTS_HELP_DEFAULT
 49      MENUITEM "Visible",        MNID_OPTS_HELP_VISIBLE
 50      MENUITEM "Non visible",    MNID_OPTS_HELP_NONVISIBLE
 51   END
 52   MENUITEM "History",           MNID_OPTS_HISTORY
 53   POPUP    "Fonts"
 54   BEGIN
 55     MENUITEM "Small",           MNID_OPTS_FONTS_SMALL
 56     MENUITEM "Normal",          MNID_OPTS_FONTS_NORMAL
 57     MENUITEM "Large",           MNID_OPTS_FONTS_LARGE
 58   END
 59   MENUITEM "Use system colors", MNID_OPTS_SYSTEM_COLORS
 60  }
 61  POPUP "Pomo&c" {
 62    MENUITEM "&Pomoc", MNID_HELP_HELPON
 63    MENUITEM "&Zawsze na wierzchu", MNID_HELP_HELPTOP
 64    MENUITEM SEPARATOR
 65    MENUITEM "&O programie...", MNID_HELP_ABOUT
 66 #ifdef WINELIB
 67    MENUITEM "&O programie WINE", MNID_HELP_WINE
 68 #endif
 69  }
 70 }
 71 
 72 IDD_INDEX DIALOG DISCARDABLE 0, 0, 200, 190 LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
 73 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
 74 FONT 8, "MS Shell Dlg"
 75 CAPTION "Indeks"
 76 {
 77     LISTBOX IDC_INDEXLIST, 10, 10, 180, 150, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_BORDER
 78 }
 79 
 80 /* Strings */
 81 STRINGTABLE DISCARDABLE LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
 82 {
 83 STID_WINE_HELP,         "WINE - Pomoc"
 84 STID_WHERROR,           "BŁĄD"
 85 STID_WARNING,           "OSTRZEŻENIE"
 86 STID_INFO,              "Informacja"
 87 STID_NOT_IMPLEMENTED,   "Nie zaimplementowane"
 88 STID_HLPFILE_ERROR_s,   "Błąd w trakcie odczytu pliku pomocy `%s'"
 89 STID_INDEX,             "&Zawartość"
 90 STID_CONTENTS,          "&Szukaj"
 91 STID_BACK,              "&Wstecz"
 92 STID_ALL_FILES,         "Wszystkie pliki (*.*)"
 93 STID_HELP_FILES_HLP,    "Pliki pomocy (*.hlp)"
 94 STID_FILE_NOT_FOUND_s   "Nie znaleziono pliku '%s'. Czy chcesz poszukać tego pliku samodzielnie?"
 95 STID_NO_RICHEDIT        "Nie udało się znaleźć modułu richedit... Wyświetlenie pomocy nie jest możliwe"
 96 STID_PSH_INDEX,         "Help topics: "
 97 }
 98 
 99 
100 CONTEXT_MENU MENU LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
101 BEGIN
102         POPUP ""
103         BEGIN
104                 MENUITEM "Adnotacja...",       MNID_CTXT_ANNOTATE
105                 MENUITEM "Kopiuj",                MNID_CTXT_COPY
106                 MENUITEM "Drukuj...",            MNID_CTXT_PRINT
107                 POPUP    "Czcionka"
108                 BEGIN
109                         MENUITEM "Mała",       MNID_CTXT_FONTS_SMALL
110                         MENUITEM "Normalna",      MNID_CTXT_FONTS_NORMAL
111                         MENUITEM "Duża",       MNID_CTXT_FONTS_LARGE
112                 END
113                 POPUP   "Pomoc zawsze widoczna"
114                 BEGIN
115                         MENUITEM "Domyślnie",     MNID_CTXT_HELP_DEFAULT
116                         MENUITEM "Widoczna",     MNID_CTXT_HELP_VISIBLE
117                         MENUITEM "Niewidoczna", MNID_CTXT_HELP_NONVISIBLE
118                 END
119                 MENUITEM "Użyj kolorów systemowych",   MNID_CTXT_SYSTEM_COLORS
120         END
121 END

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.