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_NEUTRAL
30 DLG_TIMES DIALOG 0, 0, 170, 80
31 STYLE DS_MODALFRAME | DS_3DLOOK |
32 WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
33 CAPTION "Melhores tempos"
35 GROUPBOX "Melhores tempos", -1, 10, 10, 150, 45
36 LTEXT "Principiante", -1, 20, 20, 50, 8
37 LTEXT "Intermediário", -1, 20, 30, 50, 8
38 LTEXT "Experiente", -1, 20, 40, 50, 8
39 LTEXT "999", IDC_TIME1, 80, 20, 15, 8
40 LTEXT "999", IDC_TIME2, 80, 30, 15, 8
41 LTEXT "999", IDC_TIME3, 80, 40, 15, 8
42 LTEXT "", IDC_NAME1, 100, 20, 55, 8
43 LTEXT "", IDC_NAME2, 100, 30, 55, 8
44 LTEXT "", IDC_NAME3, 100, 40, 55, 8
45 DEFPUSHBUTTON "OK", IDOK, 60, 60, 50, 15
49 LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
51 DLG_CONGRATS DIALOG 0, 0, 160, 60
52 STYLE DS_MODALFRAME | DS_3DLOOK |
53 WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
56 LTEXT "Por favor, indique o seu nome", -1, 10, 10, 150, 10
57 EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
58 DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
61 DLG_CUSTOM DIALOG 0, 0, 100, 100
62 STYLE DS_MODALFRAME | DS_3DLOOK |
63 WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
64 CAPTION "Jogo personalizado"
66 LTEXT "Linhas", -1, 5, 5, 30, 10
67 LTEXT "Colunas", -1, 5, 35, 30, 10
68 LTEXT "Minas", -1, 5, 65, 30, 10
69 EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
70 EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
71 EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
72 DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
73 PUSHBUTTON "Cancelar", IDCANCEL, 40, 50, 50, 15