1 /*
2 * View
3 * Portuguese Language Support
4 *
5 * Copyright 2003 Marcelo Duarte
6 * Copyright 2004 Américo José Melo
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 "resource.h"
24
25 /*
26 *
27 * Menu
28 *
29 */
30
31 LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN
32
33 VIEW MENU
34 BEGIN
35 POPUP "&Arquivo"
36 BEGIN
37 MENUITEM "&A", IDM_OPEN
38 MENUITEM "Sai&r", IDM_EXIT
39 END
40 POPUP "&Pan"
41 BEGIN
42 MENUITEM "Ajustar a &janela", IDM_SET_EXT_TO_WIN
43 MENUITEM SEPARATOR
44 MENUITEM "&Esquerda", IDM_LEFT
45 MENUITEM "&Direita", IDM_RIGHT
46 MENUITEM "&Acima", IDM_UP
47 MENUITEM "A&baixo", IDM_DOWN
48 END
49 END
50
51 LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE
52
53 VIEW MENU
54 BEGIN
55 POPUP "&Ficheiro"
56 BEGIN
57 MENUITEM "&Abrir", IDM_OPEN
58 MENUITEM "Sai&r", IDM_EXIT
59 END
60 POPUP "&Pan"
61 BEGIN
62 MENUITEM "Ajustar &janela", IDM_SET_EXT_TO_WIN
63 MENUITEM SEPARATOR
64 MENUITEM "&Esquerda", IDM_LEFT
65 MENUITEM "&Direita", IDM_RIGHT
66 MENUITEM "&Acima", IDM_UP
67 MENUITEM "A&baixo", IDM_DOWN
68 END
69 END
70
71
72 /*
73 *
74 * Accelerator
75 *
76 */
77
78 LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
79
80 VIEW ACCELERATORS
81 BEGIN
82 "Q", IDM_EXIT, VIRTKEY, CONTROL
83 END
84
85
86 /*
87 *
88 * String Table
89 *
90 */
91
92 LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN
93
94 STRINGTABLE DISCARDABLE
95 BEGIN
96 IDS_DESCRIPTION "Regular Metafile Viewer"
97 END
98
99 LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE
100
101 STRINGTABLE DISCARDABLE
102 BEGIN
103 IDS_DESCRIPTION "Visualizador Regular de Ficheiros Meta"
104 END
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.