3 * Portuguese Language Support
5 * Copyright 2003 Marcelo Duarte
6 * Copyright 2004 Américo José Melo
7 * Copyright 2010 Gustavo Henrique Milaré
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.
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.
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
26 #pragma code_page(65001)
28 LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN
31 IDS_APPNAME, "WineMine"
33 IDS_ABOUT, "Copyright 2000 Joshua Thielen"
36 MENU_WINEMINE MENU DISCARDABLE
39 MENUITEM "&Novo\tF2", IDM_NEW
41 MENUITEM "&Marcas", IDM_MARKQ
43 MENUITEM "&Principiante", IDM_BEGINNER
44 MENUITEM "&Intermediário", IDM_ADVANCED
45 MENUITEM "&Experiente", IDM_EXPERT
46 MENUITEM "Personali&zar...", IDM_CUSTOM
48 MENUITEM "Sai&r\tAlt+X", IDM_EXIT
51 MENUITEM "&Melhores tempos", IDM_TIMES
52 MENUITEM "&Sobre", IDM_ABOUT
56 LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE
59 IDS_APPNAME, "WineMine"
61 IDS_ABOUT, "Direitos de autor 2000, Joshua Thielen"
64 MENU_WINEMINE MENU DISCARDABLE
67 MENUITEM "&Novo\tF2", IDM_NEW
69 MENUITEM "&Marcas", IDM_MARKQ
71 MENUITEM "&Principiante", IDM_BEGINNER
72 MENUITEM "&Intermediário", IDM_ADVANCED
73 MENUITEM "&Experiente", IDM_EXPERT
74 MENUITEM "Personali&zar...", IDM_CUSTOM
76 MENUITEM "Sai&r\tAlt+X", IDM_EXIT
79 MENUITEM "&Melhores tempos", IDM_TIMES
80 MENUITEM "&Acerca", IDM_ABOUT
85 LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
87 DLG_TIMES DIALOG DISCARDABLE 0, 0, 170, 80
88 STYLE DS_MODALFRAME | DS_3DLOOK |
89 WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
90 CAPTION "Melhores tempos"
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
106 LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
108 DLG_CONGRATS DIALOG DISCARDABLE 0, 0, 160, 60
109 STYLE DS_MODALFRAME | DS_3DLOOK |
110 WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
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
118 DLG_CUSTOM DIALOG DISCARDABLE 0, 0, 100, 100
119 STYLE DS_MODALFRAME | DS_3DLOOK |
120 WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
121 CAPTION "Jogo personalizado"
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