Reactos
1/*
2 * HTML Help resources
3 *
4 * Copyright 2005 James Hawkins
5 * Copyright 2010 Claudia Cotună
6 * Michael Stefaniuc
7 * Ș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
26STRINGTABLE
27BEGIN
28#ifdef __REACTOS__
29 IDS_DEFTITLE "HTML Help"
30#endif
31 IDS_CONTENTS "C&uprins"
32 IDS_INDEX "In&dex"
33 IDS_SEARCH "&Caută"
34 IDS_FAVORITES "F&avorite"
35
36 IDS_HIDETABS "Ascunde ta&buri"
37 IDS_SHOWTABS "Afișează ta&buri"
38END
39
40STRINGTABLE
41BEGIN
42 IDTB_EXPAND "Afișează"
43 IDTB_CONTRACT "Ascunde"
44 IDTB_STOP "Oprește"
45 IDTB_REFRESH "Actualizează"
46 IDTB_BACK "Înapoi"
47 IDTB_HOME "Acasă"
48 IDTB_SYNC "Sincronizează"
49 IDTB_PRINT "Imprimă"
50 IDTB_OPTIONS "Opțiuni"
51 IDTB_FORWARD "Înainte"
52END
53
54MENU_POPUP MENU
55{
56 POPUP "" /* Options */
57 {
58 MENUITEM "", IDTB_EXPAND
59 MENUITEM "Sinc&ronizează", IDTB_SYNC
60 MENUITEM "Înap&oi", IDTB_BACK
61 MENUITEM "În&ainte", IDTB_FORWARD
62 MENUITEM "A&casă", IDTB_HOME
63 MENUITEM "Opr&ește", IDTB_STOP
64 MENUITEM "Împrospătea&ză", IDTB_REFRESH
65 MENUITEM "I&mprimare…", IDTB_PRINT
66 }
67}
68
69MENU_WEBBROWSER MENU
70{
71 POPUP ""
72 {
73 MENUITEM "Înap&oi", IDTB_BACK
74 MENUITEM "În&ainte", IDTB_FORWARD
75 MENUITEM SEPARATOR
76 MENUITEM "S&electează tot", MIID_SELECTALL
77 MENUITEM SEPARATOR
78 MENUITEM "Afișează s&ursa paginii", MIID_VIEWSOURCE
79 MENUITEM SEPARATOR
80 MENUITEM "I&mprimare…", IDTB_PRINT
81 MENUITEM "Împrospătea&ză", IDTB_REFRESH
82 MENUITEM SEPARATOR
83 MENUITEM "&Proprietăți", MIID_PROPERTIES
84 }
85 POPUP ""
86 {
87 MENUITEM "&Decupează", MIID_CUT
88 MENUITEM "&Copiază", MIID_COPY
89 MENUITEM "&Lipește", MIID_PASTE
90 MENUITEM "S&electează tot", MIID_SELECTALL
91 MENUITEM "I&mprimă", IDTB_PRINT
92 }
93}