Create a branch for audio work
[reactos.git] / base / applications / games / winmine / lang / pt-PT.rc
1 /*
2 * WineMine
3 * Portuguese Language Support
4 *
5 * Copyright 2003 Marcelo Duarte
6 * Copyright 2004 Américo José Melo
7 * Copyright 2010 Gustavo Henrique Milaré
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
24 #include "resource.h"
25
26 #pragma code_page(65001)
27
28 LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN
29
30 STRINGTABLE BEGIN
31 IDS_APPNAME, "WineMine"
32 IDS_NOBODY, "Ninguém"
33 IDS_ABOUT, "Copyright 2000 Joshua Thielen"
34 END
35
36 MENU_WINEMINE MENU
37 BEGIN
38 POPUP "&Opções" BEGIN
39 MENUITEM "&Novo\tF2", IDM_NEW
40 MENUITEM SEPARATOR
41 MENUITEM "&Marcas", IDM_MARKQ
42 MENUITEM SEPARATOR
43 MENUITEM "&Principiante", IDM_BEGINNER
44 MENUITEM "&Intermediário", IDM_ADVANCED
45 MENUITEM "&Experiente", IDM_EXPERT
46 MENUITEM "Personali&zar...", IDM_CUSTOM
47 MENUITEM SEPARATOR
48 MENUITEM "Sai&r\tAlt+X", IDM_EXIT
49 END
50 POPUP "Aj&uda" BEGIN
51 MENUITEM "&Melhores tempos", IDM_TIMES
52 MENUITEM "&Sobre", IDM_ABOUT
53 END
54 END
55
56 LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE
57
58 STRINGTABLE BEGIN
59 IDS_APPNAME, "WineMine"
60 IDS_NOBODY, "Ninguém"
61 IDS_ABOUT, "Direitos de autor 2000, Joshua Thielen"
62 END
63
64 MENU_WINEMINE MENU
65 BEGIN
66 POPUP "&Opções" BEGIN
67 MENUITEM "&Novo\tF2", IDM_NEW
68 MENUITEM SEPARATOR
69 MENUITEM "&Marcas", IDM_MARKQ
70 MENUITEM SEPARATOR
71 MENUITEM "&Principiante", IDM_BEGINNER
72 MENUITEM "&Intermediário", IDM_ADVANCED
73 MENUITEM "&Experiente", IDM_EXPERT
74 MENUITEM "Personali&zar...", IDM_CUSTOM
75 MENUITEM SEPARATOR
76 MENUITEM "Sai&r\tAlt+X", IDM_EXIT
77 END
78 POPUP "Aj&uda" BEGIN
79 MENUITEM "&Melhores tempos", IDM_TIMES
80 MENUITEM "&Acerca", IDM_ABOUT
81 END
82 END
83
84
85 LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
86
87 DLG_TIMES DIALOGEX 0, 0, 170, 80
88 STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
89 CAPTION "Melhores tempos"
90 FONT 8, "MS Shell Dlg"
91 BEGIN
92 GROUPBOX "Melhores tempos", -1, 10, 10, 150, 45
93 LTEXT "Principiante", -1, 20, 20, 50, 8
94 LTEXT "Intermediário", -1, 20, 30, 50, 8
95 LTEXT "Experiente", -1, 20, 40, 50, 8
96 LTEXT "999", IDC_TIME1, 80, 20, 15, 8
97 LTEXT "999", IDC_TIME2, 80, 30, 15, 8
98 LTEXT "999", IDC_TIME3, 80, 40, 15, 8
99 LTEXT "", IDC_NAME1, 100, 20, 55, 8
100 LTEXT "", IDC_NAME2, 100, 30, 55, 8
101 LTEXT "", IDC_NAME3, 100, 40, 55, 8
102 DEFPUSHBUTTON "OK", IDOK, 60, 60, 50, 15
103 END
104
105
106 LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
107
108 DLG_CONGRATS DIALOGEX 0, 0, 160, 60
109 STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
110 CAPTION "Parabéns!"
111 FONT 8, "MS Shell Dlg"
112 BEGIN
113 LTEXT "Por favor, indique o seu nome", -1, 10, 10, 150, 10
114 EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
115 DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
116 END
117
118 DLG_CUSTOM DIALOGEX 0, 0, 100, 100
119 STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
120 CAPTION "Jogo personalizado"
121 FONT 8, "MS Shell Dlg"
122 BEGIN
123 LTEXT "Linhas", -1, 5, 5, 30, 10
124 LTEXT "Colunas", -1, 5, 35, 30, 10
125 LTEXT "Minas", -1, 5, 65, 30, 10
126 EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
127 EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
128 EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
129 DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
130 PUSHBUTTON "Cancelar", IDCANCEL, 40, 50, 50, 15
131 END