xref: /reactos/base/applications/winhlp32/lang/Ro.rc (revision d6eebaa4)
1/*
2 * Help Viewer
3 *
4 * Copyright 1996 Ulrich Schmid
5 * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
6 * Copyright 2009 Michael Stefaniuc
7 * Copyright 2014 Ștefan Fulea
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL
25
26MAIN_MENU MENU
27{
28 POPUP "&Fișier" {
29  MENUITEM "&Deschide", MNID_FILE_OPEN
30  MENUITEM SEPARATOR
31  MENUITEM "I&mprimare…", MNID_FILE_PRINT
32  MENUITEM "&Configurare imprimantă…", MNID_FILE_SETUP
33   MENUITEM SEPARATOR
34  MENUITEM "I&eșire", MNID_FILE_EXIT
35 }
36 POPUP "&Editare" {
37   MENUITEM "&Copiere…", MNID_EDIT_COPYDLG
38   MENUITEM SEPARATOR
39   MENUITEM "&Adnotare…", MNID_EDIT_ANNOTATE
40 }
41 POPUP "Se&mn de carte" {
42   MENUITEM "&Definire…", MNID_BKMK_DEFINE
43 }
44 POPUP "&Opțiuni" {
45  MENUITEM "Î&ntotdeauna deasupra", MNID_HELP_HELPTOP
46  MENUITEM "Ist&oric",		MNID_OPTS_HISTORY
47  POPUP    "&Font"
48  BEGIN
49    MENUITEM "&Mic",		MNID_OPTS_FONTS_SMALL
50    MENUITEM "&Normal",    	MNID_OPTS_FONTS_NORMAL
51    MENUITEM "M&are",     	MNID_OPTS_FONTS_LARGE
52  END
53 }
54 POPUP "Aj&utor" {
55   MENUITEM "&Despre…", MNID_HELP_HELPON
56   MENUITEM "In&formații…", MNID_HELP_ABOUT
57 }
58}
59
60CONTEXT_MENU MENU
61BEGIN
62	POPUP ""
63	BEGIN
64		MENUITEM "Adnotare…",       MNID_CTXT_ANNOTATE
65		MENUITEM "Copiază",                MNID_CTXT_COPY
66		MENUITEM "Imprimare…",            MNID_CTXT_PRINT
67		POPUP    "Font"
68		BEGIN
69			MENUITEM "Mic",       MNID_CTXT_FONTS_SMALL
70			MENUITEM "Normal",      MNID_CTXT_FONTS_NORMAL
71			MENUITEM "Mare",       MNID_CTXT_FONTS_LARGE
72		END
73	END
74END
75
76STRINGTABLE
77{
78STID_WINE_HELP, 	"Manual ReactOS"
79STID_WHERROR, 		"EROARE"
80STID_WARNING,  		"AVERTISMENT"
81STID_INFO,  		"Informație"
82STID_NOT_IMPLEMENTED, 	"Neimplementat"
83STID_HLPFILE_ERROR_s, 	"Eroare la citirea manualului „%s”"
84STID_INDEX, 		"Inde&x"
85STID_CONTENTS,		"Rezumat"
86STID_BACK, 		"Înap&oi"
87STID_ALL_FILES, 	"Toate fișierele (*.*)"
88STID_HELP_FILES_HLP, 	"Fișierele manual (*.hlp)"
89STID_FILE_NOT_FOUND_s	"Fișierul „%s” nu poate fi găsit. Doriți să-l căutați?"
90STID_NO_RICHEDIT	"Nu a fost găsită o implementare pentru richedit… Operație abandonată."
91STID_PSH_INDEX,		"Subiecte în manual:"
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 "Căutare"
106{
107    LTEXT  "Încă neimplementată", -1, 10, 10, 180, 150
108}
109