xref: /reactos/base/applications/winhlp32/lang/Sr.rc (revision 845faec4)
1/*
2 * Help Viewer
3 *
4 * Copyright 2010 Nenad Vujic
5 *                Paul Vriens
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 */
21
22#pragma code_page(65001)
23
24LANGUAGE LANG_SERBIAN, SUBLANG_SERBIAN_LATIN
25
26MAIN_MENU MENU
27{
28 POPUP "&Fajl" {
29  MENUITEM "&Otvori", MNID_FILE_OPEN
30  MENUITEM SEPARATOR
31  MENUITEM "&Štampaj", MNID_FILE_PRINT
32  MENUITEM "Štampač &podešavanje...", MNID_FILE_SETUP
33   MENUITEM SEPARATOR
34  MENUITEM "I&zlaz", MNID_FILE_EXIT
35 }
36 POPUP "&Izmeni" {
37   MENUITEM "&Kopiraj...", MNID_EDIT_COPYDLG
38   MENUITEM SEPARATOR
39   MENUITEM "&Pribeleži...", MNID_EDIT_ANNOTATE
40 }
41 POPUP "&Označi" {
42   MENUITEM "&Odredi...", MNID_BKMK_DEFINE
43 }
44  POPUP "&Opcije" {
45  MENUITEM "Uvek na &vrhu", MNID_HELP_HELPTOP
46  MENUITEM "Istorija",		MNID_OPTS_HISTORY
47  POPUP "Fontovi"
48  BEGIN
49    MENUITEM "Mali",		MNID_OPTS_FONTS_SMALL
50    MENUITEM "Normalan",    	MNID_OPTS_FONTS_NORMAL
51    MENUITEM "Veliki",     	MNID_OPTS_FONTS_LARGE
52  END
53 }
54 POPUP "&Pomoć" {
55   MENUITEM "Pomoć &na pomoći", MNID_HELP_HELPON
56   MENUITEM "&Info...", MNID_HELP_ABOUT
57 }
58}
59
60CONTEXT_MENU MENU
61BEGIN
62	POPUP ""
63	BEGIN
64		MENUITEM "Beleške...",       MNID_CTXT_ANNOTATE
65		MENUITEM "Kopiraj",                MNID_CTXT_COPY
66		MENUITEM "Štampaj...",            MNID_CTXT_PRINT
67		POPUP    "Fontovi"
68		BEGIN
69			MENUITEM "Mali",       MNID_CTXT_FONTS_SMALL
70			MENUITEM "Normalno",      MNID_CTXT_FONTS_NORMAL
71			MENUITEM "Veliki",       MNID_CTXT_FONTS_LARGE
72		END
73	END
74END
75
76STRINGTABLE
77{
78STID_WINE_HELP, 	"ReactOS Pomoć"
79STID_WHERROR, 		"GREŠKA"
80STID_WARNING,  		"UPOZORENJE"
81STID_INFO,  		"Informacija"
82STID_NOT_IMPLEMENTED, 	"Nije jos u programu"
83STID_HLPFILE_ERROR_s, 	"Greška tokom čitanja pomoćnog fajla `%s'"
84STID_INDEX, 		"&Index"
85STID_CONTENTS,		"Pregled"
86STID_BACK, 		"&Nazad"
87STID_ALL_FILES, 	"Svi fajlovi (*.*)"
88STID_HELP_FILES_HLP, 	"Pomočni fajlovi (*.hlp)"
89STID_FILE_NOT_FOUND_s	"Ne mogu naći '%s'. Da li želite da sami nađete fajl?"
90STID_NO_RICHEDIT	"Ne mogu naći richedit ubacen... Prekidam"
91STID_PSH_INDEX,		"Teme pomoći: "
92}
93
94IDD_INDEX DIALOGEX 0, 0, 200, 190
95STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
96FONT 8, "MS Shell Dlg"
97CAPTION "Index"
98{
99    LISTBOX IDC_INDEXLIST, 10, 10, 180, 150, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_BORDER
100}
101
102IDD_SEARCH DIALOGEX 0, 0, 200, 190
103STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
104FONT 8, "MS Shell Dlg"
105CAPTION "Traži"
106{
107    LTEXT  "Not implemented yet", -1, 10, 10, 180, 150
108}
109