Sync the out of sync winemine to Wine 1.3.5 and fork it, because of the modified look, improved resources and different code structure.

Additionally call it winmine, as it is in windows, too.

svn path=/trunk/; revision=49185
This commit is contained in:
Daniel Reimer 2010-10-17 17:04:39 +00:00
parent b6bcbf0886
commit ef0b6ce0bc
64 changed files with 3589 additions and 3277 deletions

View file

@ -7,7 +7,7 @@
<directory name="spider">
<xi:include href="spider/spider.rbuild" />
</directory>
<directory name="winemine">
<xi:include href="winemine/winemine.rbuild" />
<directory name="winmine">
<xi:include href="winmine/winmine.rbuild" />
</directory>
</group>

View file

@ -1,21 +0,0 @@
WineMine README
WineMine, copyright March 2000, Joshua Thielen
WineMine is to be distributed under the Wine License
See the Wine License for further information.
This is minesweeper for wine...
Enjoy. I wrote it because it rhymes ;).
KNOWN BUGS:
Chokes on fastest times names greater than 16 characters long, must have
something to do with GetDlgItemText.
No help file.
Starting a new game causes the window to drop one pixel (Peter Hunnisett)
I don't know if it's a window manager problem (KDE)
UNKNOWN BUGS:
???

View file

@ -1,167 +0,0 @@
/*
* WineMine (dialog.c)
*
* Copyright 2000 Joshua Thielen <jt85296@ltu.edu>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <windows.h>
#include <tchar.h>
#include "main.h"
#include "dialog.h"
#include "resource.h"
INT_PTR CALLBACK CustomDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam )
{
static BOARD *pBoard;
switch(uMsg)
{
case WM_INITDIALOG:
pBoard = (BOARD*) lParam;
SetDlgItemInt( hDlg, IDC_EDITROWS, pBoard->uRows, FALSE );
SetDlgItemInt( hDlg, IDC_EDITCOLS, pBoard->uCols, FALSE );
SetDlgItemInt( hDlg, IDC_EDITMINES, pBoard->uMines, FALSE );
return TRUE;
case WM_COMMAND:
switch( LOWORD( wParam ) )
{
case IDOK:
pBoard->uRows = GetDlgItemInt( hDlg, IDC_EDITROWS, NULL, FALSE );
pBoard->uCols = GetDlgItemInt( hDlg, IDC_EDITCOLS, NULL, FALSE );
pBoard->uMines = GetDlgItemInt( hDlg, IDC_EDITMINES, NULL, FALSE );
CheckLevel( pBoard );
/* Fall through */
case IDCANCEL:
EndDialog( hDlg, LOWORD(wParam) );
return TRUE;
}
break;
}
return FALSE;
}
INT_PTR CALLBACK CongratsDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam )
{
static BOARD *pBoard;
switch(uMsg)
{
case WM_INITDIALOG:
pBoard = (BOARD*) lParam;
SetDlgItemText( hDlg, IDC_EDITNAME, pBoard->szBestName[pBoard->Difficulty] );
return TRUE;
case WM_COMMAND:
switch( LOWORD(wParam) )
{
case IDOK:
GetDlgItemText( hDlg, IDC_EDITNAME,
pBoard->szBestName[pBoard->Difficulty],
sizeof( pBoard->szBestName[pBoard->Difficulty] ) );
EndDialog( hDlg, 0 );
return TRUE;
case IDCANCEL:
EndDialog( hDlg, 0 );
return TRUE;
}
break;
}
return FALSE;
}
INT_PTR CALLBACK TimesDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam )
{
static BOARD *pBoard;
HKEY hKey;
UCHAR i;
TCHAR szData[16];
TCHAR szKeyName[8];
TCHAR szTimes[35];
TCHAR szSeconds[23];
TCHAR szNobody[15];
switch(uMsg)
{
case WM_INITDIALOG:
pBoard = (BOARD*) lParam;
/* set best names */
for( i = 0; i < 3; i++ )
SetDlgItemText( hDlg, (IDC_NAME1) + i, pBoard->szBestName[i] );
/* set best times */
LoadString( pBoard->hInst, IDS_SECONDS, szSeconds, sizeof(szSeconds) / sizeof(TCHAR) );
for( i = 0; i < 3; i++ )
{
wsprintf(szTimes, TEXT("%d %s"), pBoard->uBestTime[i], szSeconds);
SetDlgItemText( hDlg, (IDC_TIME1) + i, szTimes );
}
return TRUE;
case WM_COMMAND:
switch( LOWORD( wParam ) )
{
case IDOK:
case IDCANCEL:
EndDialog( hDlg, 0 );
return TRUE;
case IDRESET:
if( RegCreateKeyEx( HKEY_CURRENT_USER, szWineMineRegKey, 0, NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hKey, NULL ) != ERROR_SUCCESS)
return TRUE;
LoadString( pBoard->hInst, IDS_NOBODY, szNobody, sizeof(szNobody) / sizeof(TCHAR) );
LoadString( pBoard->hInst, IDS_SECONDS, szSeconds, sizeof(szSeconds) / sizeof(TCHAR) );
for (i = 0; i < 3; i++)
{
pBoard->uBestTime[i] = 999;
_tcscpy(pBoard->szBestName[i], szNobody);
wsprintf(szTimes, TEXT("%d %s"), pBoard->uBestTime[i], szSeconds);
SetDlgItemText( hDlg, (IDC_NAME1) + i, pBoard->szBestName[i] );
SetDlgItemText( hDlg, (IDC_TIME1) + i, szTimes );
}
/* Write the changes to the registry
As we write to the same registry key as MS WinMine does, we have to start at 1 for the registry keys */
for( i = 0; i < 3; i++ )
{
wsprintf( szKeyName, TEXT("Name%u"), i + 1 );
_tcsncpy( szData, pBoard->szBestName[i], sizeof(szData) / sizeof(TCHAR) );
RegSetValueEx( hKey, szKeyName, 0, REG_SZ, (LPBYTE)szData, (_tcslen(szData) + 1) * sizeof(TCHAR) );
}
for( i = 0; i < 3; i++ )
{
wsprintf( szKeyName, TEXT("Time%u"), i + 1 );
RegSetValueEx( hKey, szKeyName, 0, REG_DWORD, (LPBYTE)&pBoard->uBestTime[i], sizeof(DWORD) );
}
RegCloseKey(hKey);
return TRUE;
}
}
return FALSE;
}

View file

@ -1,25 +0,0 @@
/*
* WineMine (dialog.h)
*
* Copyright 2000 Joshua Thielen <jt85296@ltu.edu>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
INT_PTR CALLBACK CustomDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );
INT_PTR CALLBACK CongratsDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );
INT_PTR CALLBACK TimesDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );
INT_PTR CALLBACK AboutDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );

View file

@ -1,77 +0,0 @@
#include "resource.h"
LANGUAGE LANG_BULGARIAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
IDS_SECONDS, "seconds"
IDS_NOBODY, "Nobody"
IDS_ABOUT, "by Joshua Thielen and ReactOS developers"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Èãðà"
BEGIN
MENUITEM "&Íîâà\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "Èçïîëçâàíå íà &âúïðîñèòåëíà (?)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "Íà&÷èíàåù", IDM_BEGINNER
MENUITEM "Íà&ïðåäíàë", IDM_ADVANCED
MENUITEM "&Âåù", IDM_EXPERT
MENUITEM "&Íàãàæäàíå", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Íàé- êúñè âðåìåíà", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "Èç&õîä", IDM_EXIT
END
POPUP "&Ñâåäåíèÿ"
BEGIN
MENUITEM "&Çà", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Íàé- êúñè âðåìåíà"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Íàé- êúñè âðåìåíà", IDNONE, 10, 10, 182, 45
LTEXT "Íà÷èíàåù:", IDNONE, 20, 20, 58, 8
LTEXT "Íàïðåäíàë:", IDNONE, 20, 30, 58, 8
LTEXT "Âåù:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "Äîáðå", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Î÷èñòâàíå íà ðåçóëòàòèòå", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Ïîçäðàâè!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Âúâåäåòå èìåòî ñè", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "Äîáðå", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Íàãîäåíà èãðà"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Ðåäà:", IDNONE, 5, 15, 43, 10
LTEXT "Ñòúëáà:", IDNONE, 5, 35, 43, 10
LTEXT "Ìèíè:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "Äîáðå", IDOK, 86, 32, 45, 15
PUSHBUTTON "Îòêàç", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,77 +0,0 @@
#include "resource.h"
LANGUAGE LANG_CATALAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
IDS_SECONDS, "seconds"
IDS_NOBODY, "Nobody"
IDS_ABOUT, "by Joshua Thielen and ReactOS developers"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Game"
BEGIN
MENUITEM "&Nou\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "In&terrogant (?)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Principiant", IDM_BEGINNER
MENUITEM "&Avançat", IDM_ADVANCED
MENUITEM "&Expert", IDM_EXPERT
MENUITEM "Pe&rsonalitzat", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Millors Temps", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "&Sortida", IDM_EXIT
END
POPUP "&Info"
BEGIN
MENUITEM "En q&uant a", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Millors Temps"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Millors Temps", IDNONE, 10, 10, 182, 45
LTEXT "Principiant:", IDNONE, 20, 20, 58, 8
LTEXT "Avançat:", IDNONE, 20, 30, 58, 8
LTEXT "Expert:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "Acceptar", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Reset Scores", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Felicitats!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Si us plau, entreu el vostre nom", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "Acceptar", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Joc Personalitzat"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Files:", IDNONE, 5, 15, 43, 10
LTEXT "Columnes:", IDNONE, 5, 35, 43, 10
LTEXT "Mines:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "Acceptar", IDOK, 86, 32, 45, 15
PUSHBUTTON "Cancel·lar", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,87 +0,0 @@
/* FILE: applications/games/winemine/lang/cs-CZ.rc
* PURPOSE: Czech Language File
* TRANSLATORS: Stepan Gabriel - SGABA (sgaba@centrum.cz); Radek Liska aka Black_Fox (radekliska at gmail dot com)
* TRANSLATED FROM: Slovak translation by Kario (kario@szm.sk)
* UPDATED: 2010-05-25
*
* Czech translation
* Copyleft 2007 Kario (kario@szm.sk),2008 SGABA (sgaba@centrum.cz)
*/
#include "resource.h"
LANGUAGE LANG_CZECH, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
IDS_SECONDS, "sek."
IDS_NOBODY, "Bezejmenný" //windows = Anonym
IDS_ABOUT, "od Joshua Thielena a vývojáøù systému ReactOS"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Hra"
BEGIN
MENUITEM "&Nová hra\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "Zn&aèky (?)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Zaèáteèník", IDM_BEGINNER
MENUITEM "&Pokroèilý", IDM_ADVANCED
MENUITEM "&Expert", IDM_EXPERT
MENUITEM "&Vlastní...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Nejlepší èasy...", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "&Konec", IDM_EXIT
END
POPUP "&Nápovìda" //windows = &Pomocník
BEGIN
MENUITEM "&O programu...", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Nejrychlejší hledaèi min"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Nejlepší èasy", IDNONE, 10, 10, 182, 45
LTEXT "Zaèáteèník:", IDNONE, 20, 20, 58, 8
LTEXT "Pokroèilý:", IDNONE, 20, 30, 58, 8
LTEXT "Expert:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Vynulovat výsledky", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Blahopøeji!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Zadejte prosím svoje jméno", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Vlastní pole"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Výška:", IDNONE, 5, 15, 43, 10
LTEXT "Šíøka:", IDNONE, 5, 35, 43, 10
LTEXT "Miny:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 86, 32, 45, 15
PUSHBUTTON "Storno", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,77 +0,0 @@
#include "resource.h"
LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
IDS_SECONDS, "Sekunden"
IDS_NOBODY, "Niemand"
IDS_ABOUT, "von Joshua Thielen und ReactOS-Entwicklern"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Spiel"
BEGIN
MENUITEM "&Neu\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Merker (?)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Anfänger", IDM_BEGINNER
MENUITEM "&Fortgeschrittene", IDM_ADVANCED
MENUITEM "&Profis", IDM_EXPERT
MENUITEM "&Benutzerdefiniert...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Bestzeiten", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "Beenden", IDM_EXIT
END
POPUP "&?"
BEGIN
MENUITEM "&Info...", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Bestzeiten"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Bestzeiten", IDNONE, 10, 10, 182, 45
LTEXT "Anfänger:", IDNONE, 20, 20, 58, 8
LTEXT "Fortgeschrittene:", IDNONE, 20, 30, 58, 8
LTEXT "Profis:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 127, 57, 50, 15
PUSHBUTTON "Bestzeiten &löschen", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Glückwunsch!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Bitte geben Sie Ihren Namen ein", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Benutzerdefiniertes Spiel"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Höhe:", IDNONE, 5, 15, 43, 10
LTEXT "Breite:", IDNONE, 5, 35, 43, 10
LTEXT "Minen:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 86, 32, 45, 15
PUSHBUTTON "Abbrechen", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,77 +0,0 @@
#include "resource.h"
LANGUAGE LANG_GREEK, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
IDS_SECONDS, "seconds"
IDS_NOBODY, "Nobody"
IDS_ABOUT, "by Joshua Thielen and ReactOS developers"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Game"
BEGIN
MENUITEM "&ÍÝï\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Óçìåßùóç ìå åñùôçìáôéêü", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Áñ÷Üñéïò", IDM_BEGINNER
MENUITEM "&Ðñï÷ùñçìÝíïò", IDM_ADVANCED
MENUITEM "&Åéäéêüò", IDM_EXPERT
MENUITEM "&Ðñïóùðéêü", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Ãñçãïñüôåñïé ×ñüíïé", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "¸&îïäïò", IDM_EXIT
END
POPUP "&?"
BEGIN
MENUITEM "&Ó÷åôéêÜ...", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Ãñçãïñüôåñïé ×ñüíïé"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Ãñçãïñüôåñïé ×ñüíïé", IDNONE, 10, 10, 182, 45
LTEXT "Áñ÷Üñéïò:", IDNONE, 20, 20, 58, 8
LTEXT "Ðñï÷ùñçìÝíïò:", IDNONE, 20, 30, 58, 8
LTEXT "Åéäéêüò:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "OÊ", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Reset Scores", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Óõã÷áñçôÞñéá!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Ðáñáêáëþ óõìðëçñþóôå ôï üíïìÜ óáò", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OÊ", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Ðñïóùðéêü Ðáé÷íßäé"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "ÃñáììÝò:", IDNONE, 5, 15, 43, 10
LTEXT "ÓôÞëåò:", IDNONE, 5, 35, 43, 10
LTEXT "ÍÜñêåò:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "OÊ", IDOK, 86, 32, 45, 15
PUSHBUTTON "Áêýñùóç", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,77 +0,0 @@
#include "resource.h"
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
STRINGTABLE
BEGIN
IDS_SECONDS, "seconds"
IDS_NOBODY, "Nobody"
IDS_ABOUT, "by Joshua Thielen and ReactOS developers"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Game"
BEGIN
MENUITEM "&New\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Marks (?)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Beginner", IDM_BEGINNER
MENUITEM "&Intermediate", IDM_ADVANCED
MENUITEM "&Expert", IDM_EXPERT
MENUITEM "&Custom...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Best Times...", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "E&xit", IDM_EXIT
END
POPUP "&Help"
BEGIN
MENUITEM "&About", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Fastest Times"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Fastest Times", IDNONE, 10, 10, 182, 45
LTEXT "Beginner:", IDNONE, 20, 20, 58, 8
LTEXT "Intermediate:", IDNONE, 20, 30, 58, 8
LTEXT "Expert:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Reset Scores", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Congratulations!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Please enter your name", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Custom Game"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Height:", IDNONE, 5, 15, 43, 10
LTEXT "Width:", IDNONE, 5, 35, 43, 10
LTEXT "Mines:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 86, 32, 45, 15
PUSHBUTTON "Cancel", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,77 +0,0 @@
#include "resource.h"
LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
IDS_SECONDS, "segundos"
IDS_NOBODY, "Nadie"
IDS_ABOUT, "por Joshua Thielen y los programadores de ReactOS"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Juego"
BEGIN
MENUITEM "&Nuevo\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Marcar Interrogantes", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Principiante", IDM_BEGINNER
MENUITEM "&Advanzado", IDM_ADVANCED
MENUITEM "&Experto", IDM_EXPERT
MENUITEM "&Juego Personalizado", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Mejores Tiempos", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "&Salir", IDM_EXIT
END
POPUP "&Información"
BEGIN
MENUITEM "&Acerca de", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Mejores Tiempos"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Mejores Tiempos", IDNONE, 10, 10, 182, 45
LTEXT "Principiante:", IDNONE, 20, 20, 58, 8
LTEXT "Advanzado:", IDNONE, 20, 30, 58, 8
LTEXT "Experto:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "Aceptar", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Limpiar lista", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "¡Felicidades!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Por Favor, introduce tu nombre", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "Aceptar", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Juego Personalizado"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Filas:", IDNONE, 5, 15, 43, 10
LTEXT "Columnas:", IDNONE, 5, 35, 43, 10
LTEXT "Minas:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "Aceptar", IDOK, 86, 32, 45, 15
PUSHBUTTON "Cancelar", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,78 +0,0 @@
#include "resource.h"
LANGUAGE LANG_BASQUE, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
IDS_SECONDS, "segunduak"
IDS_NOBODY, "Inor ez"
IDS_ABOUT, "Joshua Thielen eta ReactOS programatzaileek"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Jokoa"
BEGIN
MENUITEM "&Berria\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Galdera ikurrak jarri", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Hasiberria", IDM_BEGINNER
MENUITEM "&Tartekoa", IDM_ADVANCED
MENUITEM "&Aditua", IDM_EXPERT
MENUITEM "&Pertsonalizatu jokoa", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Denborarik onenak", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "&Irten", IDM_EXIT
END
POPUP "&Informazioa"
BEGIN
MENUITEM "&Buscaminas-i buruz", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Denborarik onenak"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Denborarik onenak ", IDNONE, 10, 10, 182, 45
LTEXT "Hasiberria:", IDNONE, 20, 20, 58, 8
LTEXT "Tartekoa:", IDNONE, 20, 30, 58, 8
LTEXT "Aditua:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "Ados", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Berrezarri markagailuak", IDRESET, 18, 57, 84, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Zorionak!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Mesedez, idatzi zure izena", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "Ados", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Pertsonalizatu jokoa"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Zabalera:", IDNONE, 5, 15, 43, 10
LTEXT "Altuera:", IDNONE, 5, 35, 43, 10
LTEXT "Minak:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "Ados", IDOK, 86, 32, 45, 15
PUSHBUTTON "Utzi", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,84 +0,0 @@
#include "resource.h"
/*
* Translation made by Jerome Signouret, 2006.
* Initial file : http://svn.reactos.org/viewcvs/trunk/reactos/base/applications/games/winemine/En.rc
* Revision : 85
*/
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
IDS_SECONDS, "secondes"
IDS_NOBODY, "Anonyme"
IDS_ABOUT, "par Joshua Thielen et les développeurs de ReactOS"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Jeu"
BEGIN
MENUITEM "&Nouveau\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Marqueur ?", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Débutant", IDM_BEGINNER
MENUITEM "&Amateur", IDM_ADVANCED
MENUITEM "&Expert", IDM_EXPERT
MENUITEM "&Sur mesure", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Temps accéléré", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "&Quitter", IDM_EXIT
END
POPUP "&Informations"
BEGIN
MENUITEM "&Temps accéléré", IDM_TIMES
MENUITEM "&À propos", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Temps accéléré"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Temps accéléré", IDNONE, 10, 10, 182, 45
LTEXT "Débutant:", IDNONE, 20, 20, 58, 8
LTEXT "Amateur:", IDNONE, 20, 30, 58, 8
LTEXT "Expert:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Réinitialiser les scores", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Félicitations !"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Veuillez entrer votre nom :", IDNONE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "Ok", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Sur mesure"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Lignes:", IDNONE, 5, 15, 43, 10
LTEXT "Colonnes:", IDNONE, 5, 35, 43, 10
LTEXT "Mines:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 86, 32, 45, 15
PUSHBUTTON "Annuler", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,77 +0,0 @@
#include "resource.h"
LANGUAGE LANG_INDONESIAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
IDS_SECONDS, "seconds"
IDS_NOBODY, "Nobody"
IDS_ABOUT, "by Joshua Thielen and ReactOS developers"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Game"
BEGIN
MENUITEM "&Baru\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Tandai Pertanyaan", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Pemula", IDM_BEGINNER
MENUITEM "&Lanjutan", IDM_ADVANCED
MENUITEM "&Ahli", IDM_EXPERT
MENUITEM "&Kustom", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Waktu Tercepat", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "E&xit", IDM_EXIT
END
POPUP "&Info"
BEGIN
MENUITEM "&Tentang", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Waktu Tercepat"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Waktu Tercepat", IDNONE, 10, 10, 182, 45
LTEXT "Pemula:", IDNONE, 20, 20, 58, 8
LTEXT "Lanjutan:", IDNONE, 20, 30, 58, 8
LTEXT "Ahli:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Reset Scores", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Selamat!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Silahkan masukkan nama anda", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Game Kustom"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Baris:", IDNONE, 5, 15, 43, 10
LTEXT "Kolom:", IDNONE, 5, 35, 43, 10
LTEXT "Mines:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 86, 32, 45, 15
PUSHBUTTON "Batal", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,77 +0,0 @@
#include "resource.h"
LANGUAGE LANG_ITALIAN, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
IDS_SECONDS, "seconds"
IDS_NOBODY, "Anonimo"
IDS_ABOUT, "by Joshua Thielen and ReactOS developers"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Game"
BEGIN
MENUITEM "&Nuova\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Segno (?)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Principiante", IDM_BEGINNER
MENUITEM "&Intermedio", IDM_ADVANCED
MENUITEM "Espe&rto", IDM_EXPERT
MENUITEM "Personali&zza", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Tempi migliori", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "&Esci", IDM_EXIT
END
POPUP "&Info"
BEGIN
MENUITEM "&Informazioni su Campo minato", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Tempi migliori"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Tempi migliori", IDNONE, 10, 10, 182, 45
LTEXT "Principiante:", IDNONE, 20, 20, 58, 8
LTEXT "Intermedio:", IDNONE, 20, 30, 58, 8
LTEXT "Esperto:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Reset Scores", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Complimenti!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Digita il tuo nome per favore", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "Ok", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Campo personalizzato"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Righe:", IDNONE, 5, 15, 43, 10
LTEXT "Colonne:", IDNONE, 5, 35, 43, 10
LTEXT "Mine:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 86, 32, 45, 15
PUSHBUTTON "Annulla", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,77 +0,0 @@
#include "resource.h"
LANGUAGE LANG_JAPANESE, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
IDS_SECONDS, "秒"
IDS_NOBODY, "名前なし"
IDS_ABOUT, "Joshua ThielenとReactOS developersより"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "ゲーム(&G)"
BEGIN
MENUITEM "新規ゲーム(&N)\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "?マーク(&M)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "初心者(&B)", IDM_BEGINNER
MENUITEM "中級者(&I)", IDM_ADVANCED
MENUITEM "玄人(&E)", IDM_EXPERT
MENUITEM "カスタム(&C)...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "ベストタイム(&B)...", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "終了(&X)", IDM_EXIT
END
POPUP "ヘルプ(&H)"
BEGIN
MENUITEM "WineMineについて(&A)", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "最速タイム"
FONT 9, "MS UI Gothic"
BEGIN
GROUPBOX "最速タイム", IDNONE, 10, 10, 182, 45
LTEXT "初心者:", IDNONE, 20, 20, 58, 8
LTEXT "中級者:", IDNONE, 20, 30, 58, 8
LTEXT "玄人:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 127, 57, 50, 15
PUSHBUTTON "スコアのリセット(&R)", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "おめでとう!"
FONT 9, "MS UI Gothic"
BEGIN
LTEXT "お名前を入力してください", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "カスタムゲーム"
FONT 9, "MS UI Gothic"
BEGIN
LTEXT "高さ:", IDNONE, 5, 15, 43, 10
LTEXT "幅:", IDNONE, 5, 35, 43, 10
LTEXT "地雷の数:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 86, 32, 45, 15
PUSHBUTTON "キャンセル", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,80 +0,0 @@
/*
*Korean translation by manatails007(www.manatails007.org)
*/
#include "resource.h"
LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
IDS_SECONDS, "초"
IDS_NOBODY, "익명"
IDS_ABOUT, "by Joshua Thielen and ReactOS developers"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "게임(&G)"
BEGIN
MENUITEM "새 게임(&N)\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "? 표시(&M)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "초급(&B)", IDM_BEGINNER
MENUITEM "중급(&I)", IDM_ADVANCED
MENUITEM "고급(&E)", IDM_EXPERT
MENUITEM "커스텀(&C)", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "최고 기록(&B)", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "종료(&E)", IDM_EXIT
END
POPUP "도움말(&H)"
BEGIN
MENUITEM "정보(&A)", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Fastest Times"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "최고 기록", IDNONE, 10, 10, 182, 45
LTEXT "초급:", IDNONE, 20, 20, 58, 8
LTEXT "중급:", IDNONE, 20, 30, 58, 8
LTEXT "고급:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "확인", IDOK, 127, 57, 50, 15
PUSHBUTTON "점수 초기화(&R)", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "축하합니다!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "이름을 입력하세요", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "확인", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "커스텀 게임"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "높이:", IDNONE, 5, 15, 43, 10
LTEXT "너비:", IDNONE, 5, 35, 43, 10
LTEXT "지뢰:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "확인", IDOK, 86, 32, 45, 15
PUSHBUTTON "취소", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,80 +0,0 @@
/* Translation by Vytis "CMan" Girdþijauskas (cman@cman.us) */
#include "resource.h"
LANGUAGE LANG_LITHUANIAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
IDS_SECONDS, "sekundës"
IDS_NOBODY, "Niekas"
IDS_ABOUT, "Joshua Thielen ir ReactOS kûrëjai"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Þaidimas"
BEGIN
MENUITEM "&Naujas þaidimas\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "Þymëti &spëjamus (?)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Pradedantis", IDM_BEGINNER
MENUITEM "Pa&þengæs", IDM_ADVANCED
MENUITEM "&Ekspertas", IDM_EXPERT
MENUITEM "Pasi&rinktas", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Greièiausi laikai", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "&Baigti", IDM_EXIT
END
POPUP "&Info"
BEGIN
MENUITEM "&Apie", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Greièiausi laikai"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Greièiausi laikai", IDNONE, 10, 10, 182, 45
LTEXT "Pradedantis:", IDNONE, 20, 20, 58, 8
LTEXT "Paþengæs:", IDNONE, 20, 30, 58, 8
LTEXT "Ekspertas:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Atstatyti", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Sveikiname!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Praðome áraðyti savo vardà", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "Gerai", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Pasirinktas þaidimas"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Eilutës:", IDNONE, 5, 15, 43, 10
LTEXT "Stulpeliai:", IDNONE, 5, 35, 43, 10
LTEXT "Minos:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "Gerai", IDOK, 86, 32, 45, 15
PUSHBUTTON "Atsisakyti", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,77 +0,0 @@
#include "resource.h"
LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
IDS_SECONDS, "seconds"
IDS_NOBODY, "Nobody"
IDS_ABOUT, "by Joshua Thielen and ReactOS developers"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Game"
BEGIN
MENUITEM "&Nieuw\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "Vraagteken a&ctiveren", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Beginner", IDM_BEGINNER
MENUITEM "&Gevorderde", IDM_ADVANCED
MENUITEM "&Expert", IDM_EXPERT
MENUITEM "Aan&passen", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "Bes&te tijd", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "&Afsluiten", IDM_EXIT
END
POPUP "&Info"
BEGIN
MENUITEM "&Over", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Beste tijd"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Beste tijd", IDNONE, 10, 10, 182, 45
LTEXT "Beginner:", IDNONE, 20, 20, 58, 8
LTEXT "Gevorderde:", IDNONE, 20, 30, 58, 8
LTEXT "Expert:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Reset Scores", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Gefeleciteerd!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Gelieve uw naam in te voeren", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "Ok", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Aangepast spel"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Rijen:", IDNONE, 5, 15, 43, 10
LTEXT "Kolommen:", IDNONE, 5, 35, 43, 10
LTEXT "Mijnen:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 86, 32, 45, 15
PUSHBUTTON "Annuleren", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,77 +0,0 @@
#include "resource.h"
LANGUAGE LANG_NORWEGIAN, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
IDS_SECONDS, "Sekunder"
IDS_NOBODY, "Ingen"
IDS_ABOUT, "av Joshua Thielen og ReactOS utviklere"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Spill"
BEGIN
MENUITEM "&Nytt\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Merk spørsmål", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Nybegynner", IDM_BEGINNER
MENUITEM "&Avansert", IDM_ADVANCED
MENUITEM "&Ekspert", IDM_EXPERT
MENUITEM "&Egendefinert", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Beste tider", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "A&vslutt", IDM_EXIT
END
POPUP "&Informasjon"
BEGIN
MENUITEM "&Om", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Beste tider"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Beste tider", IDNONE, 10, 10, 182, 45
LTEXT "Nybegynner:", IDNONE, 20, 20, 58, 8
LTEXT "Avansert:", IDNONE, 20, 30, 58, 8
LTEXT "Ekspert:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Nullstill poeng", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Gratulerer!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Skriv inn navnet ditt", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Tilpasse spill"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Høyde:", IDNONE, 5, 15, 43, 10
LTEXT "Bredde:", IDNONE, 5, 35, 43, 10
LTEXT "Miner:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 86, 32, 45, 15
PUSHBUTTON "Avbryt", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,86 +0,0 @@
/* Polish translation Emil Kaczmarek 2006
*
* small changes by TestamenT
* testament@users.sourceforge.net
* https://sourceforge.net/projects/reactospl
* updated by Caemyr - Olaf Siejka (Jan, 2008)
*/
#include "resource.h"
LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
IDS_SECONDS, "sekund"
IDS_NOBODY, "Anonim"
IDS_ABOUT, "Autorzy: Joshua Thielen i Ekipa ReactOS"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Gra"
BEGIN
MENUITEM "&Nowa gra\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "Poz&iom", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Pocz¹tkuj¹cy", IDM_BEGINNER
MENUITEM "Z&aawansowany", IDM_ADVANCED
MENUITEM "&Ekspert", IDM_EXPERT
MENUITEM "&W³asny poziom", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "N&ajlepsze czasy", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "&Zamknij", IDM_EXIT
END
POPUP "&Informacje"
BEGIN
MENUITEM "N&ajlepsze czasy", IDM_TIMES
MENUITEM "&WineMine - informacje", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Najlepsze czasy"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Najlepsze czasy", IDNONE, 10, 10, 182, 45
LTEXT "Pocz¹tkuj¹cy:", IDNONE, 20, 20, 58, 8
LTEXT "Zaawansowany:", IDNONE, 20, 30, 58, 8
LTEXT "Ekspert:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Zresetuj wyniki", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Gratulacje!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Wpisz swoje imiê", IDNONE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Ustawienia gry"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Iloœæ rzêdów:", IDNONE, 5, 15, 43, 10
LTEXT "IloϾ kolumn:", IDNONE, 5, 35, 43, 10
LTEXT "IloϾ min:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 86, 32, 45, 15
PUSHBUTTON "Anuluj", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,79 +0,0 @@
// Russian language resource file (Dmitry Chapyshev, 2007-06-10)
#include "resource.h"
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
IDS_SECONDS, "ñåêóíä"
IDS_NOBODY, "íåèçâåñòíûé"
IDS_ABOUT, "Joshua Thielen è ðàçðàáîò÷èêè ReactOS"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Èãðà"
BEGIN
MENUITEM "&Íîâàÿ èãðà\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Ìåòêè", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "Í&îâè÷îê", IDM_BEGINNER
MENUITEM "&Ëþáèòåëü", IDM_ADVANCED
MENUITEM "&Ïðîôåññèîíàë", IDM_EXPERT
MENUITEM "Î&ñîáûå...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Ëó÷øåå âðåìÿ", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "&Âûõîä", IDM_EXIT
END
POPUP "&Ñïðàâêà"
BEGIN
MENUITEM "&Î ïðîãðàììå", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Ëó÷øåå âðåìÿ"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Ëó÷øåå âðåìÿ", IDNONE, 10, 10, 182, 45
LTEXT "Íîâè÷îê:", IDNONE, 20, 20, 58, 8
LTEXT "Ëþáèòåëü:", IDNONE, 20, 30, 58, 8
LTEXT "Ïðîôåññèîíàë:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Ñáðîñèòü", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Ïîçäðàâëÿåì!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Ïîæàëóéñòâà ââåäèòå âàøå èìÿ", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Îñîáàÿ èãðà"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Âûñîòà:", IDNONE, 5, 15, 43, 10
LTEXT "Øèðèíà:", IDNONE, 5, 35, 43, 10
LTEXT "×èñëî ìèí:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 86, 32, 45, 15
PUSHBUTTON "Îòìåíà", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,81 +0,0 @@
/* Slovak translation
* Copyleft 2007 Kario (kario@szm.sk)
*/
#include "resource.h"
LANGUAGE LANG_SLOVAK, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
IDS_SECONDS, "sek."
IDS_NOBODY, "Nikto" //windows = Anonym
IDS_ABOUT, "od Joshua Thielen a vývojárov systému ReactOS"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Hra"
BEGIN
MENUITEM "&Nová hra\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "Zn&aèky (?)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Zaèiatoèník", IDM_BEGINNER
MENUITEM "&Pokroèilý", IDM_ADVANCED
MENUITEM "&Expert", IDM_EXPERT
MENUITEM "&Vlastné...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Najlepšie èasy...", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "S&konèi<C3A8>", IDM_EXIT
END
POPUP "&Info" //windows = &Pomocník
BEGIN
MENUITEM "È&o je hra Míny...", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Najrýchlejší h¾adaèi mín"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Najlepšie èasy", IDNONE, 10, 10, 182, 45
LTEXT "Zaèiatoèník:", IDNONE, 20, 20, 58, 8
LTEXT "Pokroèilý:", IDNONE, 20, 30, 58, 8
LTEXT "Expert:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Vynulova<76> výsledky", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Blahoželám!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Zadajte svoje meno, prosím!", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Vlastné pole"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Výška:", IDNONE, 5, 15, 43, 10
LTEXT "Šírka:", IDNONE, 5, 35, 43, 10
LTEXT "Míny:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 86, 32, 45, 15
PUSHBUTTON "Zruši<C5A1>", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,77 +0,0 @@
#include "resource.h"
LANGUAGE LANG_THAI, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
IDS_SECONDS, "seconds"
IDS_NOBODY, "Nobody"
IDS_ABOUT, "by Joshua Thielen and ReactOS developers"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Game"
BEGIN
MENUITEM "ã&ËÁè\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "à&¤Ã×èͧËÁÒ¤ӶÒÁ", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "à&ÃÔèÁµé¹", IDM_BEGINNER
MENUITEM "&¢Ñé¹ÊÙ§¢Öé¹", IDM_ADVANCED
MENUITEM "&¼ÙéªÓ¹Ò­", IDM_EXPERT
MENUITEM "&¤¹·ÑèÇä»", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "à&ÇÅÒ·ÕèàÃçÇ·ÕèÊØ´", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "&ÍÍ¡", IDM_EXIT
END
POPUP "á&¨é§ãËé·ÃÒº"
BEGIN
MENUITEM "à&¡ÕèÂǡѺ", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "àÇÅÒ·ÕèàÃçÇ·ÕèÊØ´"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "àÇÅÒ·ÕèàÃçÇ·ÕèÊØ´", IDNONE, 10, 10, 182, 45
LTEXT "àÃÔèÁµé¹:", IDNONE, 20, 20, 58, 8
LTEXT "¢Ñé¹ÊÙ§¢Öé¹:", IDNONE, 20, 30, 58, 8
LTEXT "¼ÙéªÓ¹Ò­:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "µ¡Å§", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Reset Scores", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "¢ÍáÊ´§¤ÇÒÁÂÔ¹´Õ´éÇÂ!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "â»Ã´¡ÃÍ¡ª×èͧ͢¤Ø³", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "µ¡Å§", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "à¡ÁÃдѺ¤¹·ÑèÇä»"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "á¶Ç:", IDNONE, 5, 15, 43, 10
LTEXT "ËÅÑ¡:", IDNONE, 5, 35, 43, 10
LTEXT "¡ÑºÃÐàºÔ´:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "µ¡Å§", IDOK, 86, 32, 45, 15
PUSHBUTTON "¡àÅÔ¡", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,85 +0,0 @@
/*
* PROJECT: WineMine
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/applications/games/winemine/lang/uk-UA.rc
* PURPOSE: Ukraianian Language File for WineMine
* TRANSLATORS: Artem Reznikov, Igor Paliychuk
*/
#include "resource.h"
LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
IDS_SECONDS, "ñåê"
IDS_NOBODY, "ͳõòî"
IDS_ABOUT, "â³ä Joshua Thielen ³ ðîçðîáíèê³â ReactOS"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "&Ãðà"
BEGIN
MENUITEM "&Íîâà\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&̳òêè (?)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "Íîâà&÷îê", IDM_BEGINNER
MENUITEM "&Àìàòîð", IDM_ADVANCED
MENUITEM "Ïðî&ôåñ³îíàë", IDM_EXPERT
MENUITEM "&Îñîáëèâ³...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&×åìï³îíè...", IDM_TIMES
MENUITEM SEPARATOR
MENUITEM "Â&èõ³ä", IDM_EXIT
END
POPUP "&²íôîðìàö³ÿ"
BEGIN
MENUITEM "&Ïðî ïðîãðàìó...", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "×åìï³îíè çà êàòåãîð³ÿìè"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Êðàù³ ÷àñè", IDNONE, 10, 10, 182, 45
LTEXT "Íîâà÷îê:", IDNONE, 20, 20, 58, 8
LTEXT "Àìàòîð:", IDNONE, 20, 30, 58, 8
LTEXT "Ïðîôåñ³îíàë:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 127, 57, 50, 15
PUSHBUTTON "&Ñêèäàííÿ ðåçóëüòàò³â", IDRESET, 18, 57, 77, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "³òàííÿ!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Ââåä³òü Âàøå ³ì'ÿ", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Ñïåö³àëüíå ïîëå"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Âèñîòà:", IDNONE, 5, 15, 43, 10
LTEXT "Øèðèíà:", IDNONE, 5, 35, 43, 10
LTEXT "̳í:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 86, 32, 45, 15
PUSHBUTTON "Ñêàñóâàòè", IDCANCEL, 86, 52, 45, 15
END

View file

@ -1,96 +0,0 @@
/*
* WineMine (Simplified Chinese resources)
*
* Copyright 2007 zhangbing <e_zb@21cn.com, ezb@mail.gywb.cn>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "resource.h"
LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED
STRINGTABLE DISCARDABLE
BEGIN
IDS_SECONDS, "秒"
IDS_NOBODY, "匿名"
IDS_ABOUT, "by Joshua Thielen and ReactOS developers"
END
IDM_WINEMINE MENU DISCARDABLE
BEGIN
POPUP "扫雷(&G)"
BEGIN
MENUITEM "开局(&N)\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "标记(?)(&M)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "初级(&B)", IDM_BEGINNER
MENUITEM "中级(&A)", IDM_ADVANCED
MENUITEM "高级(&E)", IDM_EXPERT
MENUITEM "自定义(&C)...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "退出(&X)", IDM_EXIT
END
POPUP "信息(&I)"
BEGIN
MENUITEM "扫雷英雄榜(&F)...", IDM_TIMES
MENUITEM "关于扫雷(&A)...", IDM_ABOUT
END
END
IDD_TIMES DIALOGEX DISCARDABLE 0, 0, 200, 75
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "扫雷英雄榜"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "最高纪录", IDNONE, 10, 10, 182, 45
LTEXT "初级:", IDNONE, 20, 20, 58, 8
LTEXT "中级:", IDNONE, 20, 30, 58, 8
LTEXT "高级:", IDNONE, 20, 40, 58, 8
LTEXT "", IDC_TIME1, 80, 20, 50, 8
LTEXT "", IDC_TIME2, 80, 30, 50, 8
LTEXT "", IDC_TIME3, 80, 40, 50, 8
LTEXT "", IDC_NAME1, 132, 20, 55, 8
LTEXT "", IDC_NAME2, 132, 30, 55, 8
LTEXT "", IDC_NAME3, 132, 40, 55, 8
DEFPUSHBUTTON "确定", IDOK, 127, 57, 50, 15
PUSHBUTTON "重新记分(&R)", IDRESET, 18, 57, 67, 15
END
IDD_CONGRATS DIALOGEX DISCARDABLE 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
FONT 8, "MS Shell Dlg"
CAPTION "刷新纪录!"
BEGIN
LTEXT "已破纪录,请输入你的名字", IDIGNORE, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "确定", IDOK, 60, 40, 40, 15
END
IDD_CUSTOM DIALOGEX DISCARDABLE 0, 0, 139, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "自定义雷区"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "高度:", IDNONE, 5, 15, 43, 10
LTEXT "宽度:", IDNONE, 5, 35, 43, 10
LTEXT "雷数:", IDNONE, 5, 55, 43, 10
EDITTEXT IDC_EDITROWS, 49, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 49, 35, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 49, 55, 30, 12, ES_NUMBER
DEFPUSHBUTTON "确定", IDOK, 86, 32, 45, 15
PUSHBUTTON "取消", IDCANCEL, 86, 52, 45, 15
END

File diff suppressed because it is too large Load diff

View file

@ -1,155 +0,0 @@
/*
* Copyright 2000 Joshua Thielen <jt85296@ltu.edu>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <windows.h>
static const TCHAR szWineMineRegKey[] = TEXT("Software\\Microsoft\\WinMine");
// Common Controls 6.0 for MSVC 2005 or later
#if _MSC_VER >= 1400
# pragma comment(linker, "/manifestdependency:\"type='win32' " \
"name='Microsoft.Windows.Common-Controls' " \
"version='6.0.0.0' " \
"processorArchitecture='x86' " \
"publicKeyToken='6595b64144ccf1df' " \
"language='*'\"")
#endif
#define ID_TIMER 1000
#define BEGINNER_MINES 10
#define BEGINNER_COLS 9
#define BEGINNER_ROWS 9
#define ADVANCED_MINES 40
#define ADVANCED_COLS 16
#define ADVANCED_ROWS 16
#define EXPERT_MINES 99
#define EXPERT_COLS 30
#define EXPERT_ROWS 16
#define MAX_COLS 30
#define MAX_ROWS 24
#define BOTTOM_MARGIN 20
#define BOARD_WMARGIN 5
#define BOARD_HMARGIN 5
/* mine defines */
#define MINE_WIDTH 16
#define MINE_HEIGHT 16
#define LED_WIDTH 12
#define LED_HEIGHT 23
#define FACE_WIDTH 24
#define FACE_HEIGHT 24
typedef enum { SPRESS_BMP, COOL_BMP, DEAD_BMP, OOH_BMP, SMILE_BMP } FACE_BMP;
typedef enum { WAITING, PLAYING, GAMEOVER, WON } GAME_STATUS;
typedef enum
{
MPRESS_BMP, ONE_BMP, TWO_BMP, THREE_BMP, FOUR_BMP, FIVE_BMP, SIX_BMP,
SEVEN_BMP, EIGHT_BMP, BOX_BMP, FLAG_BMP, QUESTION_BMP, EXPLODE_BMP,
WRONG_BMP, MINE_BMP, QPRESS_BMP
} MINEBMP_OFFSET;
typedef enum { BEGINNER, ADVANCED, EXPERT, CUSTOM } DIFFICULTY;
typedef struct tagBOARD
{
BOOL bMark;
HINSTANCE hInst;
HWND hWnd;
HBITMAP hMinesBMP;
HBITMAP hFacesBMP;
HBITMAP hLedsBMP;
RECT MinesRect;
RECT FaceRect;
RECT TimerRect;
RECT CounterRect;
ULONG uWidth;
ULONG uHeight;
POINT Pos;
ULONG uTime;
ULONG uNumFlags;
ULONG uBoxesLeft;
ULONG uNumMines;
ULONG uRows;
ULONG uCols;
ULONG uMines;
TCHAR szBestName[3][16];
ULONG uBestTime[3];
DIFFICULTY Difficulty;
POINT Press;
FACE_BMP FaceBmp;
GAME_STATUS Status;
struct BOX_STRUCT
{
UINT bIsMine : 1;
UINT bIsPressed : 1;
UINT uFlagType : 2;
UINT uNumMines : 4;
} Box [MAX_COLS + 2] [MAX_ROWS + 2];
/* defines for uFlagType */
#define NORMAL 0
#define QUESTION 1
#define FLAG 2
#define COMPLETE 3
} BOARD;
void ExitApp( int error );
void InitBoard( BOARD *pBoard );
void LoadBoard( BOARD *pBoard );
void SaveBoard( BOARD *pBoard );
void DestroyBoard( BOARD *pBoard );
void SetDifficulty( BOARD *pBoard, DIFFICULTY difficulty );
void CheckLevel( BOARD *pBoard );
void CreateBoard( BOARD *pBoard );
void CreateBoxes( BOARD *pBoard );
void TestBoard( HWND hWnd, BOARD *pBoard, LONG x, LONG y, int msg );
void TestMines( BOARD *pBoard, POINT pt, int msg );
void TestFace( BOARD *pBoard, POINT pt, int msg );
void DrawBoard( HDC hdc, HDC hMemDC, PAINTSTRUCT *ps, BOARD *pBoard );
void DrawMines( HDC hdc, HDC hMemDC, BOARD *pBoard );
void DrawMine( HDC hdc, HDC hMemDC, BOARD *pBoard, ULONG uCol, ULONG uRow, BOOL IsPressed );
void AddFlag( BOARD *pBoard, ULONG uCol, ULONG uRow );
void CompleteBox( BOARD *pBoard, ULONG uCol, ULONG uRow );
void CompleteBoxes( BOARD *pBoard, ULONG uCol, ULONG uRow );
void PressBox( BOARD *pBoard, ULONG uCol, ULONG uRow );
void PressBoxes( BOARD *pBoard, ULONG uCol, ULONG uRow );
void UnpressBox( BOARD *pBoard, ULONG uCol, ULONG uRow );
void UnpressBoxes( BOARD *pBoard, ULONG uCol, ULONG uRow );
void UpdateTimer( BOARD *pBoard );
void DrawLeds( HDC hdc, HDC hMemDC, BOARD *pBoard, LONG nNumber, LONG x, LONG y);
void DrawFace( HDC hdc, HDC hMemDC, BOARD *pBoard );
LRESULT WINAPI MainProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
INT_PTR CALLBACK CustomDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );
INT_PTR CALLBACK CongratsDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );
INT_PTR CALLBACK TimesDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );
/* end of header */

View file

@ -1,40 +0,0 @@
#include <windows.h>
#include "resource.h"
/* define language neutral resources */
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
IDA_WINEMINE ACCELERATORS DISCARDABLE
BEGIN
VK_F2, IDM_NEW, VIRTKEY, NOINVERT
"X", IDM_EXIT, VIRTKEY, ALT, NOINVERT
END
IDI_WINEMINE ICON MOVEABLE "rc/winemine.ico"
IDB_FACES BITMAP MOVEABLE "rc/faces.bmp"
IDB_LEDS BITMAP MOVEABLE "rc/leds.bmp"
IDB_MINES BITMAP MOVEABLE "rc/mines.bmp"
/* include localised resources */
#include "lang/bg-BG.rc"
#include "lang/ca-ES.rc"
#include "lang/cs-CZ.rc"
#include "lang/de-DE.rc"
#include "lang/el-GR.rc"
#include "lang/en-US.rc"
#include "lang/es-ES.rc"
#include "lang/eu-ES.rc"
#include "lang/fr-FR.rc"
#include "lang/id-ID.rc"
#include "lang/it-IT.rc"
#include "lang/ja-JP.rc"
#include "lang/ko-KR.rc"
#include "lang/lt-LT.rc"
#include "lang/no-NO.rc"
#include "lang/nl-NL.rc"
#include "lang/pl-PL.rc"
#include "lang/ru-RU.rc"
#include "lang/sk-SK.rc"
#include "lang/th-TH.rc"
#include "lang/uk-UA.rc"
#include "lang/zh-CN.rc"

View file

@ -0,0 +1,116 @@
/*
* WineMine (dialog.c)
*
* Copyright 2000 Joshua Thielen
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include "main.h"
#include "resource.h"
INT_PTR CALLBACK CustomDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam )
{
BOOL IsRet;
static BOARD *p_board;
switch( uMsg ) {
case WM_INITDIALOG:
p_board = (BOARD*) lParam;
SetDlgItemInt( hDlg, IDC_EDITROWS, p_board->rows, FALSE );
SetDlgItemInt( hDlg, IDC_EDITCOLS, p_board->cols, FALSE );
SetDlgItemInt( hDlg, IDC_EDITMINES, p_board->mines, FALSE );
return TRUE;
case WM_COMMAND:
switch( LOWORD( wParam ) ) {
case IDOK:
p_board->rows = GetDlgItemInt( hDlg, IDC_EDITROWS, &IsRet, FALSE );
p_board->cols = GetDlgItemInt( hDlg, IDC_EDITCOLS, &IsRet, FALSE );
p_board->mines = GetDlgItemInt( hDlg, IDC_EDITMINES, &IsRet, FALSE );
CheckLevel( p_board );
EndDialog( hDlg, 0 );
return TRUE;
case IDCANCEL:
EndDialog( hDlg, 1 );
return TRUE;
}
break;
}
return FALSE;
}
INT_PTR CALLBACK CongratsDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam )
{
static BOARD *p_board;
switch( uMsg ) {
case WM_INITDIALOG:
p_board = (BOARD*) lParam;
SetDlgItemText( hDlg, IDC_EDITNAME,
p_board->best_name[p_board->difficulty] );
return TRUE;
case WM_COMMAND:
switch( LOWORD( wParam ) ) {
case IDOK:
GetDlgItemText( hDlg, IDC_EDITNAME,
p_board->best_name[p_board->difficulty],
sizeof( p_board->best_name[p_board->difficulty] ) );
EndDialog( hDlg, 0 );
return TRUE;
case IDCANCEL:
EndDialog( hDlg, 0 );
return TRUE;
}
break;
}
return FALSE;
}
INT_PTR CALLBACK TimesDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam )
{
static BOARD *p_board;
unsigned i;
switch( uMsg ) {
case WM_INITDIALOG:
p_board = (BOARD*) lParam;
/* set best names */
for( i = 0; i < 3; i++ )
SetDlgItemText( hDlg, (IDC_NAME1) + i, p_board->best_name[i] );
/* set best times */
for( i = 0; i < 3; i++ )
SetDlgItemInt( hDlg, (IDC_TIME1) + i, p_board->best_time[i], FALSE );
return TRUE;
case WM_COMMAND:
switch( LOWORD( wParam ) ) {
case IDOK:
case IDCANCEL:
EndDialog( hDlg, 0 );
return TRUE;
}
break;
}
return FALSE;
}

View file

@ -0,0 +1,98 @@
/* Hey, Emacs, open this file with -*- coding: cp1250 -*-
*
* WineMine
* Czech Language Support
*
* Copyright 2000 Joshua Thielen
* Copyright 2003 Marcelo Duarte
* Copyright 2004 David Kredba
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_CZECH, SUBLANG_DEFAULT
/* Czech strings in CP1250 */
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Nikdo"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "N&astavení" BEGIN
MENUITEM "&Nová\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Oznaèovat nerozhodnuté", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Zaèáteèník", IDM_BEGINNER
MENUITEM "&Pokroèilý", IDM_ADVANCED
MENUITEM "&Expert", IDM_EXPERT
MENUITEM "&Dle libosti", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Konec\tAlt+K", IDM_EXIT
END
POPUP "&Informace" BEGIN
MENUITEM "Ne&jlepší èasy", IDM_TIMES
MENUITEM "&O aplikaci", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Nejlepší èasy"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Nejlepší èasy", -1, 10, 10, 140, 45
LTEXT "Zaèáteèník", -1, 20, 20, 40, 8
LTEXT "Pokroèilý", -1, 20, 30, 40, 8
LTEXT "Expert", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Gratulujeme !"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Prosím, zadejte své jméno", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Vlastní hra"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Øádky", -1, 5, 5, 30, 10
LTEXT "Sloupce", -1, 5, 35, 30, 10
LTEXT "Miny", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
PUSHBUTTON "Storno", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,93 @@
/*
* WineMine
* Danish language support
*
* Copyright 2008 Jens Albretsen <jens@albretsen.dk>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_DANISH, SUBLANG_DEFAULT
STRINGTABLE BEGIN
IDS_APPNAME, "Minerydder"
IDS_NOBODY, "Ingen"
IDS_ABOUT, "Ophavsret 2000 tilhører Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Indstillinger" BEGIN
MENUITEM "&Nyt spil\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Brug spørgsmålstegn",IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "Ny&begynder", IDM_BEGINNER
MENUITEM "&Avanceret", IDM_ADVANCED
MENUITEM "&Ekspert", IDM_EXPERT
MENUITEM "B&rugerdefineret" IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "Afslut&t\tAlt+X", IDM_EXIT
END
POPUP "&Hjælp" BEGIN
MENUITEM "&Bedste tider", IDM_TIMES
MENUITEM "&Om", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Bedste tider"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Bedste tider", -1, 10, 10, 140, 45
LTEXT "Nybegynder", -1, 20, 20, 40, 8
LTEXT "Avanceret", -1, 20, 30, 40, 8
LTEXT "Ekspert", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Tillykke!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Indtast dit navn", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Brugerdefineret spil"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Rækker", -1, 5, 5, 30, 10
LTEXT "Kolonner", -1, 5, 35, 30, 10
LTEXT "Miner", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
PUSHBUTTON "Annuller", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,95 @@
/*
* WineMine
* German Language Support
*
* Copyright 2004 Henning Gerhardt
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
#pragma code_page(65001)
LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Niemand"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Optionen" BEGIN
MENUITEM "&Neu\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Merker", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Anfänger", IDM_BEGINNER
MENUITEM "&Fortgeschrittene", IDM_ADVANCED
MENUITEM "&Experten", IDM_EXPERT
MENUITEM "Benutzer&definiert...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Beenden\tAlt+X", IDM_EXIT
END
POPUP "&Info" BEGIN
MENUITEM "&Beste Zeiten", IDM_TIMES
MENUITEM "&Über", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Beste Zeiten"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Beste Zeiten", -1, 10, 10, 140, 45
LTEXT "Anfänger", -1, 20, 20, 40, 8
LTEXT "Fortgeschrittene", -1, 20, 30, 40, 8
LTEXT "Experten", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Herzlichen Glückwunsch!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Bitte geben Sie Ihren Namen ein", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Benutzerdefiniertes Spiel"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Reihen", -1, 5, 5, 30, 10
LTEXT "Zeilen", -1, 5, 35, 30, 10
LTEXT "Minen", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
PUSHBUTTON "Abbrechen", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,94 @@
/*
* WineMine
* English Language Support
*
* Copyright 2000 Joshua Thielen
* Copyright 2003 Marcelo Duarte
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Nobody"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Options" BEGIN
MENUITEM "&New\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Mark Question", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Beginner", IDM_BEGINNER
MENUITEM "&Advanced", IDM_ADVANCED
MENUITEM "&Expert", IDM_EXPERT
MENUITEM "&Custom...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "E&xit\tAlt+X", IDM_EXIT
END
POPUP "&Info" BEGIN
MENUITEM "&Fastest Times...", IDM_TIMES
MENUITEM "&About", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Fastest Times"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Fastest Times", -1, 10, 10, 140, 45
LTEXT "Beginner", -1, 20, 20, 40, 8
LTEXT "Advanced", -1, 20, 30, 40, 8
LTEXT "Expert", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Congratulations!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Please enter your name", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Custom Game"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Rows", -1, 5, 5, 30, 10
LTEXT "Cols", -1, 5, 35, 30, 10
LTEXT "Mines", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
PUSHBUTTON "Cancel", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,93 @@
/*
* WineMine
* Spanish Language Support
*
* Copyright 2003 José Manuel Ferrer Ortiz <jmfo1982@yahoo.es>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Nadie"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Opciones" BEGIN
MENUITEM "&Nuevo\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Interrogación", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Principiante", IDM_BEGINNER
MENUITEM "&Avanzado", IDM_ADVANCED
MENUITEM "&Experto", IDM_EXPERT
MENUITEM "P&ersonalizado", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Salir\tAlt+X", IDM_EXIT
END
POPUP "&Ayuda" BEGIN
MENUITEM "&Mejores tiempos", IDM_TIMES
MENUITEM "&Acerca de", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Mejores tiempos"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Mejores tiempos", -1, 10, 10, 140, 45
LTEXT "Principiante", -1, 20, 20, 40, 8
LTEXT "Avanzado", -1, 20, 30, 40, 8
LTEXT "Experto", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "Aceptar", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "¡Enhorabuena!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Por favor, introduzca su nombre", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "Aceptar", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Juego personalizado"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Filas", -1, 5, 5, 30, 10
LTEXT "Columnas", -1, 5, 35, 30, 10
LTEXT "Minas", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "Aceptar", IDOK, 40, 30, 50, 15
PUSHBUTTON "Cancelar", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,93 @@
/*
* WineMine
* Finnish Language Support
*
* Copyright 2005 Kimmo Myllyvirta
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_FINNISH, SUBLANG_DEFAULT
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Ei kukaan"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Valinnat" BEGIN
MENUITEM "&Uusi\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Merkitse", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Aloittelija", IDM_BEGINNER
MENUITEM "&Kehittynyt", IDM_ADVANCED
MENUITEM "&Expertti", IDM_EXPERT
MENUITEM "Mukau&ta", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Poistu\tAlt+X", IDM_EXIT
END
POPUP "&Info" BEGIN
MENUITEM "&Nopeimmat ajat", IDM_TIMES
MENUITEM "&Tietoja", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Nopeimmat Ajat"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Nopeimmat Ajat",-1, 10, 10, 140, 45
LTEXT "Aloittelija", -1, 20, 20, 40, 8
LTEXT "Kehittynyt", -1, 20, 30, 40, 8
LTEXT "Expertti", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Onnittelut!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Anna nimesi", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Mukautettu Peli"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Rivejä", -1, 5, 5, 30, 10
LTEXT "Palstoja", -1, 5, 35, 30, 10
LTEXT "Miinoja", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
PUSHBUTTON "Peruuta", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,99 @@
/*
* WineMine
* French Language Support
*
* Copyright 2000 Joshua Thielen
* Copyright 2003 Marcelo Duarte
* Copyright 2003 Vincent Béron
* Copyright 2006 Jonathan Ernst
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
/* UTF-8 */
#pragma code_page(65001)
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
STRINGTABLE BEGIN
IDS_APPNAME, "Démineur de Wine"
IDS_NOBODY, "Anonyme"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Options" BEGIN
MENUITEM "&Nouveau\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Marquage des cases suspectes", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Débutant", IDM_BEGINNER
MENUITEM "&Avancé", IDM_ADVANCED
MENUITEM "&Expert", IDM_EXPERT
MENUITEM "&Personnalisé...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Quitter\tAlt+X", IDM_EXIT
END
POPUP "&Info" BEGIN
MENUITEM "Meilleurs &temps", IDM_TIMES
MENUITEM "À &propos", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Meilleurs temps"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Meilleurs temps", -1, 10, 10, 140, 45
LTEXT "Débutant", -1, 20, 20, 40, 8
LTEXT "Avancé", -1, 20, 30, 40, 8
LTEXT "Expert", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Félicitations !"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Veuillez saisir votre nom :", -1, 25, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Grille personnalisée"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Lignes", -1, 5, 5, 30, 10
LTEXT "Colonnes", -1, 5, 35, 30, 10
LTEXT "Mines", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 30, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 30, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 44, 30, 50, 15
PUSHBUTTON "Annuler", IDCANCEL, 44, 50, 50, 15
END

View file

@ -0,0 +1,98 @@
/*
* WineMine
* Italian Language Support
*
* Copyright 2000 Joshua Thielen
* Copyright 2003 Marcelo Duarte
* Copyright 2003-2004 Ivan Leo Puoti
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
/* UTF-8 */
#pragma code_page(65001)
LANGUAGE LANG_ITALIAN, SUBLANG_NEUTRAL
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Nessuno"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Opzioni" BEGIN
MENUITEM "&Nuovo\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Contrassegna domanda", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Principiante", IDM_BEGINNER
MENUITEM "&Avanzato", IDM_ADVANCED
MENUITEM "&Esperto", IDM_EXPERT
MENUITEM "&Personalizza", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "E&sci\tAlt+X", IDM_EXIT
END
POPUP "&Informazioni" BEGIN
MENUITEM "&Tempi migliori", IDM_TIMES
MENUITEM "&Riguardo a WineMine", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Tempi migliori"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Tempi migliori", -1, 10, 10, 140, 45
LTEXT "Principiante", -1, 20, 20, 40, 8
LTEXT "Avanzato", -1, 20, 30, 40, 8
LTEXT "Esperto", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Congratulazioni!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Inserisci il tuo nome", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Gioco personalizzato"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Righe", -1, 5, 5, 30, 10
LTEXT "Colonne", -1, 5, 35, 30, 10
LTEXT "Mine", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
PUSHBUTTON "Annulla", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,97 @@
/*
* WineMine
* Japanese Language Support
*
* Copyright 2000 Joshua Thielen
* Copyright 2003 Marcelo Duarte
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
/* UTF-8 */
#pragma code_page(65001)
LANGUAGE LANG_JAPANESE, SUBLANG_DEFAULT
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Nobody"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "オプション(&O)" BEGIN
MENUITEM "スタート(&N)\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "?マークを使用(&M)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "初級(&B)", IDM_BEGINNER
MENUITEM "中級(&A)", IDM_ADVANCED
MENUITEM "上級(&E)", IDM_EXPERT
MENUITEM "盤面の変更(&C)", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "終了(&X)\tAlt+X", IDM_EXIT
END
POPUP "情報(&I)" BEGIN
MENUITEM "ハイスコア(&F)", IDM_TIMES
MENUITEM "WineMine について(&A)", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Fastest Times"
FONT 9, "MS UI Gothic"
BEGIN
GROUPBOX "ハイスコア", -1, 10, 10, 140, 45
LTEXT "初級", -1, 20, 20, 40, 8
LTEXT "中級", -1, 20, 30, 40, 8
LTEXT "上級", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "おめでとう!"
FONT 9, "MS UI Gothic"
BEGIN
LTEXT "名前を入力しましょう", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "盤面の変更"
FONT 9, "MS UI Gothic"
BEGIN
LTEXT "Rows", -1, 5, 5, 30, 10
LTEXT "Cols", -1, 5, 35, 30, 10
LTEXT "Mines", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
PUSHBUTTON "Cancel", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,95 @@
/*
* WineMine
* Korean Language Support
*
* Copyright 2000 Joshua Thielen
* Copyright 2003 Marcelo Duarte
* Copyright 2005,2007 YunSong Hwang
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
STRINGTABLE BEGIN
IDS_APPNAME, "Wine지뢰찾기"
IDS_NOBODY, "아무개"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "옵션(&O)" BEGIN
MENUITEM "새 게임(&N)\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "물음표 표시(&M)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "초보자(&B)", IDM_BEGINNER
MENUITEM "중급자(&A)", IDM_ADVANCED
MENUITEM "상급자(&E)", IDM_EXPERT
MENUITEM "사용자 정의(&C)", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "나가기(&X)\tAlt+X", IDM_EXIT
END
POPUP "도움말(&I)" BEGIN
MENUITEM "가장 빠른 시간(&F)", IDM_TIMES
MENUITEM "정보(&A)", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "가장 빠른 시간"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "최단 시간", -1, 10, 10, 140, 45
LTEXT "초보자", -1, 20, 20, 40, 8
LTEXT "중급자", -1, 20, 30, 40, 8
LTEXT "전문가", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "확인", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "축하합니다!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "당신의 이름을 적어주세요", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "확인", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "게임 사용자 정의 "
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "가로줄", -1, 5, 5, 30, 10
LTEXT "새로줄", -1, 5, 35, 30, 10
LTEXT "지뢰", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "확인", IDOK, 40, 30, 50, 15
PUSHBUTTON "취소", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,96 @@
/*
* WineMine
* Lithuanian Language Support
*
* Copyright 2009 Aurimas Fišeras <aurimas@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
/* UTF-8 */
#pragma code_page(65001)
LANGUAGE LANG_LITHUANIAN, SUBLANG_NEUTRAL
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Niekas"
IDS_ABOUT, "Autoriaus teisės 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Parinktys" BEGIN
MENUITEM "&Naujas\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Žymėti klaustuku", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "P&radedantis", IDM_BEGINNER
MENUITEM "&Pažengęs", IDM_ADVANCED
MENUITEM "Ek&spertas", IDM_EXPERT
MENUITEM "Pasirin&ktas...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "Iš&eiti\tAlt+X", IDM_EXIT
END
POPUP "&Informacija" BEGIN
MENUITEM "&Geriausi laikai", IDM_TIMES
MENUITEM "&Apie", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Geriausi laikai"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Geriausi laikai", -1, 10, 10, 140, 45
LTEXT "Pradedantis", -1, 20, 20, 40, 8
LTEXT "Pažengęs", -1, 20, 30, 40, 8
LTEXT "Ekspertas", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "Gerai", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Sveikiname!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Įveskite savo vardą", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "Gerai", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Pasirinktas žaidimas"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Eilutės", -1, 5, 5, 30, 10
LTEXT "Stulpeliai", -1, 5, 35, 30, 10
LTEXT "Minos", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "Gerai", IDOK, 40, 30, 50, 15
PUSHBUTTON "Atsisakyti", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,92 @@
/*
* WineMine (Dutch resources)
*
* Copyright 2003 Hans Leidekker
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Niemand"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Opties" BEGIN
MENUITEM "&Nieuw spel\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Markeer vraag", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Beginner", IDM_BEGINNER
MENUITEM "&Gevorderde", IDM_ADVANCED
MENUITEM "&Expert", IDM_EXPERT
MENUITEM "Aange&past spel", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Afsluiten\tAlt+X", IDM_EXIT
END
POPUP "&Info" BEGIN
MENUITEM "&Snelste tijden...", IDM_TIMES
MENUITEM "&Over WineMine", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Snelste tijden"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Snelste tijden", -1, 10, 10, 140, 45
LTEXT "Beginner", -1, 20, 20, 40, 8
LTEXT "Gevorderde", -1, 20, 30, 40, 8
LTEXT "Expert", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Gefeliciteerd!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Voer uw naam in", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Aangepast spel"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Rijen", -1, 5, 5, 30, 10
LTEXT "Kolommen", -1, 5, 35, 30, 10
LTEXT "Mijnen", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
PUSHBUTTON "Annuleren", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,93 @@
/*
* WineMine
* Norwegian Bokmål language support
*
* Copyright 2005 Alexander N. Sørnes
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
STRINGTABLE BEGIN
IDS_APPNAME, "Minesveiper"
IDS_NOBODY, "Ingen"
IDS_ABOUT, "Kopirett 2000 tilhører Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Innstillinger" BEGIN
MENUITEM "&Ny\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Merk spørsmål", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "Ny&begynner", IDM_BEGINNER
MENUITEM "&Avansert", IDM_ADVANCED
MENUITEM "&Ekspert", IDM_EXPERT
MENUITEM "E&gendefinert", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "Avslut&t\tAlt+X", IDM_EXIT
END
POPUP "&Hjelp" BEGIN
MENUITEM "&Beste tider", IDM_TIMES
MENUITEM "&Om", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Beste tider"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Beste tider", -1, 10, 10, 140, 45
LTEXT "Nybegynner", -1, 20, 20, 40, 8
LTEXT "Avansert", -1, 20, 30, 40, 8
LTEXT "Ekspert", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Gratulerer!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Skriv inn navnet ditt", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Egendefinert spill"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Rader", -1, 5, 5, 30, 10
LTEXT "Kolonner", -1, 5, 35, 30, 10
LTEXT "Miner", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
PUSHBUTTON "Avbryt", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,95 @@
/*
* WineMine
* Polish Language Support
*
* Copyright 2000 Joshua Thielen
* Copyright 2003 Marcelo Duarte
* Copyright 2004 Jacek Caban
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Anonim"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Opcje" BEGIN
MENUITEM "&Nowa\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Znaczniki", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Pocz¹tkuj¹cy", IDM_BEGINNER
MENUITEM "Z&aawansowany", IDM_ADVANCED
MENUITEM "&Ekspert", IDM_EXPERT
MENUITEM "&U¿ytkownika", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "W&yjœcie\tAlt+X", IDM_EXIT
END
POPUP "&Info" BEGIN
MENUITEM "&Najlepsze Wyniki", IDM_TIMES
MENUITEM "&O Programie", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 170, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Najlepsze Wyniki"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Najlepsze Wyniki", -1, 10, 10, 150, 45
LTEXT "Pocz¹tkuj¹cy", -1, 20, 20, 50, 8
LTEXT "Zaawansowany", -1, 20, 30, 50, 8
LTEXT "Ekspert", -1, 20, 40, 50, 8
LTEXT "999", IDC_TIME1, 80, 20, 15, 8
LTEXT "999", IDC_TIME2, 80, 30, 15, 8
LTEXT "999", IDC_TIME3, 80, 40, 15, 8
LTEXT "", IDC_NAME1, 100, 20, 55, 8
LTEXT "", IDC_NAME2, 100, 30, 55, 8
LTEXT "", IDC_NAME3, 100, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 60, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Gratulacje!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Podaj swoje imiê", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Ustawienia U¿ytkownika"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Wiersze", -1, 5, 5, 30, 10
LTEXT "Kolumny", -1, 5, 35, 30, 10
LTEXT "Miny", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
PUSHBUTTON "Anuluj", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,131 @@
/*
* WineMine
* Portuguese Language Support
*
* Copyright 2003 Marcelo Duarte
* Copyright 2004 Américo José Melo
* Copyright 2010 Gustavo Henrique Milaré
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
#pragma code_page(65001)
LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Ninguém"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Opções" BEGIN
MENUITEM "&Novo\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Marcas", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Principiante", IDM_BEGINNER
MENUITEM "&Intermediário", IDM_ADVANCED
MENUITEM "&Experiente", IDM_EXPERT
MENUITEM "Personali&zar...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "Sai&r\tAlt+X", IDM_EXIT
END
POPUP "Aj&uda" BEGIN
MENUITEM "&Melhores tempos", IDM_TIMES
MENUITEM "&Sobre", IDM_ABOUT
END
END
LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Ninguém"
IDS_ABOUT, "Direitos de autor 2000, Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Opções" BEGIN
MENUITEM "&Novo\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Marcas", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Principiante", IDM_BEGINNER
MENUITEM "&Intermediário", IDM_ADVANCED
MENUITEM "&Experiente", IDM_EXPERT
MENUITEM "Personali&zar...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "Sai&r\tAlt+X", IDM_EXIT
END
POPUP "Aj&uda" BEGIN
MENUITEM "&Melhores tempos", IDM_TIMES
MENUITEM "&Acerca", IDM_ABOUT
END
END
LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
DLG_TIMES DIALOGEX 0, 0, 170, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Melhores tempos"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Melhores tempos", -1, 10, 10, 150, 45
LTEXT "Principiante", -1, 20, 20, 50, 8
LTEXT "Intermediário", -1, 20, 30, 50, 8
LTEXT "Experiente", -1, 20, 40, 50, 8
LTEXT "999", IDC_TIME1, 80, 20, 15, 8
LTEXT "999", IDC_TIME2, 80, 30, 15, 8
LTEXT "999", IDC_TIME3, 80, 40, 15, 8
LTEXT "", IDC_NAME1, 100, 20, 55, 8
LTEXT "", IDC_NAME2, 100, 30, 55, 8
LTEXT "", IDC_NAME3, 100, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 60, 60, 50, 15
END
LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Parabéns!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Por favor, indique o seu nome", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Jogo personalizado"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Linhas", -1, 5, 5, 30, 10
LTEXT "Colunas", -1, 5, 35, 30, 10
LTEXT "Minas", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
PUSHBUTTON "Cancelar", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,95 @@
/*
* WineMine
* Romanian Language Support
*
* Copyright 2007 Michael Stefaniuc
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL
#pragma code_page(65001)
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Nimeni"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Opţiuni" BEGIN
MENUITEM "&Nou\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Mark Question", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Începător", IDM_BEGINNER
MENUITEM "&Avansat", IDM_ADVANCED
MENUITEM "&Expert", IDM_EXPERT
MENUITEM "&Personalizat", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Ieşire\tAlt+X", IDM_EXIT
END
POPUP "&Informaţii" BEGIN
MENUITEM "&Scoruri maxime", IDM_TIMES
MENUITEM "&Despre", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Scoruri maxime"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Scoruri maxime", -1, 10, 10, 140, 45
LTEXT "&Începător", -1, 20, 20, 40, 8
LTEXT "Avansat", -1, 20, 30, 40, 8
LTEXT "Expert", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Felicitări!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Scrieţi-vă numele", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Joc personalizat"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Linii", -1, 5, 5, 30, 10
LTEXT "Coloane", -1, 5, 35, 30, 10
LTEXT "Mine", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
PUSHBUTTON "Renunţă", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,96 @@
/*
* WineMine
* Russian Language Support
*
* Copyright 2003 Pavel Roskin
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
/* UTF-8 */
#pragma code_page(65001)
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Nobody"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Игра" BEGIN
MENUITEM "&Новая игра\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Вопросительные знаки", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "Нови&чок", IDM_BEGINNER
MENUITEM "&Мастер", IDM_ADVANCED
MENUITEM "&Эксперт", IDM_EXPERT
MENUITEM "Нестандартные &параметры", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Закрыть\tAlt+X", IDM_EXIT
END
POPUP "&Справка" BEGIN
MENUITEM "&Лучшее время", IDM_TIMES
MENUITEM "&О программе", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Лучшее время"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Лучшее время", -1, 10, 10, 140, 45
LTEXT "Новичок", -1, 20, 20, 40, 8
LTEXT "Мастер", -1, 20, 30, 40, 8
LTEXT "Эксперт", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Поздравляю!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Пожалуйста, введите ваше имя", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 140, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Нестандартные параметры"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "По вертикали", -1, 5, 5, 70, 10
LTEXT "По горизонтали", -1, 5, 35, 70, 10
LTEXT "Число мин", -1, 5, 65, 70, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 80, 30, 50, 15
PUSHBUTTON "Отмена", IDCANCEL, 80, 50, 50, 15
END

View file

@ -0,0 +1,95 @@
/*
* WineMine
* Slovenian Language Support
*
* Copyright 2003, 2008 Rok Mandeljc
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
#pragma code_page(65001)
LANGUAGE LANG_SLOVENIAN, SUBLANG_DEFAULT
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Nihče"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Možnosti" BEGIN
MENUITEM "&Nova igra\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Vprašaji", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Začetnik", IDM_BEGINNER
MENUITEM "&Napreden", IDM_ADVANCED
MENUITEM "&Strokovnjak", IDM_EXPERT
MENUITEM "&Poljubno", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "Iz&hod\tAlt+X", IDM_EXIT
END
POPUP "&Info" BEGIN
MENUITEM "&Najboljši časi", IDM_TIMES
MENUITEM "&O programu", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Najboljši časi"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Najboljši časi", -1, 10, 10, 140, 45
LTEXT "Začetnik", -1, 20, 20, 40, 8
LTEXT "Napreden", -1, 20, 30, 40, 8
LTEXT "Strokovnjak", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "V redu", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Čestitamo!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Vnesite svoje ime", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "V redu", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Poljubna igra"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Vrstice", -1, 5, 5, 30, 10
LTEXT "Stolpci", -1, 5, 35, 30, 10
LTEXT "Mine", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "V redu", IDOK, 40, 30, 50, 15
PUSHBUTTON "Prekliči", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,98 @@
/*
* WineMine
* Swedish Language Support
*
* Copyright 2000 Joshua Thielen
* Copyright 2003 Marcelo Duarte
* Copyright 2008 Daniel Nylander <po@danielnylander.se>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
/* UTF-8 */
#pragma code_page(65001)
LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
STRINGTABLE BEGIN
IDS_APPNAME, "Minor"
IDS_NOBODY, "Ingen"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "A&lternativ" BEGIN
MENUITEM "&Nytt\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Markera fråga", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "Ny&börjare", IDM_BEGINNER
MENUITEM "&Avancerad", IDM_ADVANCED
MENUITEM "&Expert", IDM_EXPERT
MENUITEM "An&passad...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "A&vsluta\tAlt+X", IDM_EXIT
END
POPUP "&Info" BEGIN
MENUITEM "&Snabbaste tider...", IDM_TIMES
MENUITEM "&Om", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Snabbaste tider"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Snabbaste tider", -1, 10, 10, 140, 45
LTEXT "Nybörjare", -1, 20, 20, 40, 8
LTEXT "Avancerad", -1, 20, 30, 40, 8
LTEXT "Expert", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Gratulerar!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Ange ditt namn", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Anpassat spel"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Rader", -1, 5, 5, 30, 10
LTEXT "Kolumner", -1, 5, 35, 35, 10
LTEXT "Minor", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
PUSHBUTTON "Avbryt", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,93 @@
/*
* WineMine
* Turkish Language Support
*
* Copyright 2006 Fatih Aþýcý
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_TURKISH, SUBLANG_DEFAULT
STRINGTABLE BEGIN
IDS_APPNAME, "Wine Mayýn Tarlasý"
IDS_NOBODY, "Hiç kimse"
IDS_ABOUT, "Telif hakký 2000, Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Seçenekler" BEGIN
MENUITEM "&Yeni\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Soru Ýþareti", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "&Acemi", IDM_BEGINNER
MENUITEM "&Geliþmiþ", IDM_ADVANCED
MENUITEM "&Uzman", IDM_EXPERT
MENUITEM "&Özel", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Çýkýþ\tAlt+X", IDM_EXIT
END
POPUP "&Bilgi" BEGIN
MENUITEM "&En Kýsa Süreler", IDM_TIMES
MENUITEM "&Hakkýnda", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "En Kýsa Süreler"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "En Kýsa Süreler", -1, 10, 10, 140, 45
LTEXT "Acemi", -1, 20, 20, 40, 8
LTEXT "Geliþmiþ", -1, 20, 30, 40, 8
LTEXT "Uzman", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "Tamam", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Tebrikler!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Lütfen adýnýzý girin", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "Tamam", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Özel Oyun"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Satýrlar", -1, 5, 5, 30, 10
LTEXT "Sütunlar", -1, 5, 35, 30, 10
LTEXT "Mayýnlar", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "Tamam", IDOK, 40, 30, 50, 15
PUSHBUTTON "Ýptal", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,99 @@
/*
/*
* WineMine
* Ukrainian Language Support
*
* Copyright 2000 Joshua Thielen
* Copyright 2003 Marcelo Duarte
* Copyright 2010 Igor Paliychuk
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
/* UTF-8 */
#pragma code_page(65001)
LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT
STRINGTABLE BEGIN
IDS_APPNAME, "WineMine"
IDS_NOBODY, "Nobody"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "&Гра" BEGIN
MENUITEM "&Нова\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "&Знаки питання", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "Н&овачок", IDM_BEGINNER
MENUITEM "&Майстер", IDM_ADVANCED
MENUITEM "&Експерт", IDM_EXPERT
MENUITEM "&Свої параметри...", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "&Вихід\tAlt+X", IDM_EXIT
END
POPUP "&Довідка" BEGIN
MENUITEM "&Кращий час...", IDM_TIMES
MENUITEM "&Про програму", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Кращий час"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Кращий час", -1, 10, 10, 140, 45
LTEXT "Новачок", -1, 20, 20, 40, 8
LTEXT "Майстер", -1, 20, 30, 40, 8
LTEXT "Експерт", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Вітання!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Введіть ваше ім'я", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "Свої параметри"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Рядків", -1, 5, 5, 30, 10
LTEXT "Стовпців", -1, 5, 35, 30, 10
LTEXT "Мін", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
PUSHBUTTON "Скасувати", IDCANCEL, 40, 50, 50, 15
END

View file

@ -0,0 +1,167 @@
/*
* WineMine (Simplified and Traditional Chinese Resource)
*
* Copyright 2008 Hongbo Ni <hongbo.at.njstar.com>
* Copyright 2010 Cheer Xiao <xiaqqaix.at.gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
/* Chinese text is encoded in UTF-8 */
#pragma code_page(65001)
LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED
STRINGTABLE BEGIN
IDS_APPNAME, "Wine地雷"
IDS_NOBODY, "无人"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "选项(&O)" BEGIN
MENUITEM "新游戏(&N)\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "允许问号标记(&M)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "初学者(&B)", IDM_BEGINNER
MENUITEM "高级(&A)", IDM_ADVANCED
MENUITEM "专家(&E)", IDM_EXPERT
MENUITEM "自定义(&C)", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "退出(&X)\tAlt+X", IDM_EXIT
END
POPUP "信息(&I)" BEGIN
MENUITEM "最快时间(&F)", IDM_TIMES
MENUITEM "关于(&A)", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "最快时间"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "最快时间", -1, 10, 10, 140, 45
LTEXT "初学者", -1, 20, 20, 40, 8
LTEXT "高级", -1, 20, 30, 40, 8
LTEXT "专家", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "确定", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "祝贺!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "请输入你的名字", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "确定", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "自定义游戏"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "行", -1, 5, 5, 30, 10
LTEXT "列", -1, 5, 35, 30, 10
LTEXT "地雷", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "确定", IDOK, 40, 30, 50, 15
PUSHBUTTON "取消", IDCANCEL, 40, 50, 50, 15
END
LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_TRADITIONAL
STRINGTABLE BEGIN
IDS_APPNAME, "Wine地雷"
IDS_NOBODY, "無人"
IDS_ABOUT, "Copyright 2000 Joshua Thielen"
END
MENU_WINEMINE MENU
BEGIN
POPUP "選項(&O)" BEGIN
MENUITEM "新遊戲(&N)\tF2", IDM_NEW
MENUITEM SEPARATOR
MENUITEM "標出問題(&M)", IDM_MARKQ
MENUITEM SEPARATOR
MENUITEM "初學者(&B)", IDM_BEGINNER
MENUITEM "高級(&A)", IDM_ADVANCED
MENUITEM "專家(&E)", IDM_EXPERT
MENUITEM "自定義(&C)", IDM_CUSTOM
MENUITEM SEPARATOR
MENUITEM "結束(&X)\tAlt+X", IDM_EXIT
END
POPUP "資訊(&I)" BEGIN
MENUITEM "最快時間(&F)", IDM_TIMES
MENUITEM "關於(&A)", IDM_ABOUT
END
END
DLG_TIMES DIALOGEX 0, 0, 160, 80
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "最快時間"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "最快時間", -1, 10, 10, 140, 45
LTEXT "初學者", -1, 20, 20, 40, 8
LTEXT "高級", -1, 20, 30, 40, 8
LTEXT "專家", -1, 20, 40, 40, 8
LTEXT "999", IDC_TIME1, 70, 20, 15, 8
LTEXT "999", IDC_TIME2, 70, 30, 15, 8
LTEXT "999", IDC_TIME3, 70, 40, 15, 8
LTEXT "", IDC_NAME1, 90, 20, 55, 8
LTEXT "", IDC_NAME2, 90, 30, 55, 8
LTEXT "", IDC_NAME3, 90, 40, 55, 8
DEFPUSHBUTTON "確定", IDOK, 55, 60, 50, 15
END
DLG_CONGRATS DIALOGEX 0, 0, 160, 60
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "祝賀!"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "請輸入你的名字", -1, 10, 10, 150, 10
EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
DEFPUSHBUTTON "確定", IDOK, 60, 40, 40, 15
END
DLG_CUSTOM DIALOGEX 0, 0, 100, 100
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
CAPTION "自定義遊戲"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "行", -1, 5, 5, 30, 10
LTEXT "列", -1, 5, 35, 30, 10
LTEXT "地雷", -1, 5, 65, 30, 10
EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
DEFPUSHBUTTON "確定", IDOK, 40, 30, 50, 15
PUSHBUTTON "取消", IDCANCEL, 40, 50, 50, 15
END

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,132 @@
/*
* Copyright 2000 Joshua Thielen
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windows.h>
#define BEGINNER_MINES 10
#define BEGINNER_COLS 9
#define BEGINNER_ROWS 9
#define ADVANCED_MINES 40
#define ADVANCED_COLS 16
#define ADVANCED_ROWS 16
#define EXPERT_MINES 99
#define EXPERT_COLS 30
#define EXPERT_ROWS 16
#define MAX_COLS 30
#define MAX_ROWS 24
#define BOTTOM_MARGIN 20
#define BOARD_WMARGIN 5
#define BOARD_HMARGIN 5
/* mine defines */
#define MINE_WIDTH 16
#define MINE_HEIGHT 16
#define LED_WIDTH 12
#define LED_HEIGHT 23
#define FACE_WIDTH 24
#define FACE_HEIGHT 24
#define MAX_PLAYER_NAME_SIZE 31
typedef enum { SPRESS_BMP, COOL_BMP, DEAD_BMP, OOH_BMP, SMILE_BMP } FACE_BMP;
typedef enum { WAITING, PLAYING, GAMEOVER, WON } GAME_STATUS;
typedef enum {
MPRESS_BMP, ONE_BMP, TWO_BMP, THREE_BMP, FOUR_BMP, FIVE_BMP, SIX_BMP,
SEVEN_BMP, EIGHT_BMP, BOX_BMP, FLAG_BMP, QUESTION_BMP, EXPLODE_BMP,
WRONG_BMP, MINE_BMP, QPRESS_BMP
} MINEBMP_OFFSET;
typedef enum { BEGINNER, ADVANCED, EXPERT, CUSTOM } DIFFICULTY;
typedef struct tagBOARD
{
BOOL IsMarkQ;
HDC hdc;
HINSTANCE hInst;
HWND hWnd;
HBITMAP hMinesBMP;
HBITMAP hFacesBMP;
HBITMAP hLedsBMP;
RECT mines_rect;
RECT face_rect;
RECT timer_rect;
RECT counter_rect;
unsigned width;
unsigned height;
POINT pos;
unsigned time;
unsigned num_flags;
unsigned boxes_left;
unsigned num_mines;
/* difficulty info */
unsigned rows;
unsigned cols;
unsigned mines;
char best_name [3][MAX_PLAYER_NAME_SIZE+1];
DWORD best_time [3];
DIFFICULTY difficulty;
POINT press;
/* defines for mb */
#define MB_NONE 0
#define MB_LEFTDOWN 1
#define MB_LEFTUP 2
#define MB_RIGHTDOWN 3
#define MB_RIGHTUP 4
#define MB_BOTHDOWN 5
#define MB_BOTHUP 6
unsigned mb;
FACE_BMP face_bmp;
GAME_STATUS status;
struct BOX_STRUCT
{
unsigned IsMine : 1;
unsigned IsPressed : 1;
unsigned FlagType : 2;
unsigned NumMines : 4;
} box [MAX_COLS + 2] [MAX_ROWS + 2];
/* defines for FlagType */
#define NORMAL 0
#define QUESTION 1
#define FLAG 2
#define COMPLETE 3
} BOARD;
void CheckLevel( BOARD *p_board );
INT_PTR CALLBACK CustomDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );
INT_PTR CALLBACK CongratsDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );
INT_PTR CALLBACK TimesDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );
/* end of header */

View file

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

View file

@ -1,7 +1,7 @@
/*
* WineMine (resource.h)
*
* Copyright 2000 Joshua Thielen <jt85296@ltu.edu>
* Copyright 2000 Joshua Thielen
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@ -15,14 +15,15 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windef.h>
#include <winuser.h>
#define IDNONE -1
#define ID_TIMER 1000
/* menu defines */
#define IDM_WINEMINE 1000
#define IDM_NEW 1001
#define IDM_EXIT 1002
#define IDM_TIMES 1003
@ -46,19 +47,8 @@
#define IDC_EDITROWS 1032
#define IDC_EDITMINES 1033
#define IDS_SECONDS 1101
#define IDS_APPNAME 1101
#define IDS_NOBODY 1102
#define IDS_ABOUT 1103
#define IDI_WINEMINE 1201
#define IDA_WINEMINE 1202
#define IDB_FACES 1301
#define IDB_LEDS 1302
#define IDB_MINES 1303
#define IDRESET 1401
#define IDD_CONGRATS 1501
#define IDD_TIMES 1502
#define IDD_CUSTOM 1503
#define IDA_WINEMINE 1201

View file

@ -0,0 +1,68 @@
/*
* WineMine (rsrc.rc)
*
* Copyright 2000 Joshua Thielen
* Copyright 2003 Marcelo Duarte
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_NEUTRAL,SUBLANG_NEUTRAL
IDA_WINEMINE ACCELERATORS
{
VK_F2, IDM_NEW, VIRTKEY, NOINVERT
"X", IDM_EXIT, VIRTKEY, ALT, NOINVERT
}
/* @makedep: winemine.ico */
WINEMINE ICON rc/winemine.ico
/* @makedep: faces.bmp */
FACES BITMAP rc/faces.bmp
/* @makedep: leds.bmp */
LEDS BITMAP rc/leds.bmp
/* @makedep: mines.bmp */
MINES BITMAP rc/mines.bmp
/* include localised resources */
#include "lang/cs-CZ.rc"
#include "lang/da-DK.rc"
#include "lang/en-US.rc"
#include "lang/es-ES.rc"
#include "lang/fi-FI.rc"
#include "lang/ko-KR.rc"
#include "lang/nl-NL.rc"
#include "lang/no-NO.rc"
#include "lang/pl-PL.rc"
#include "lang/tr-TR.rc"
/* UTF-8 */
#include "lang/de-DE.rc"
#include "lang/fr-FR.rc"
#include "lang/it-IT.rc"
#include "lang/ja-JP.rc"
#include "lang/lt-LT.rc"
#include "lang/pt-PT.rc"
#include "lang/ro-RO.rc"
#include "lang/ru-RU.rc"
#include "lang/sl-SI.rc"
#include "lang/sv-SE.rc"
#include "lang/uk-UA.rc"
#include "lang/zh-CN.rc"

View file

@ -1,7 +1,8 @@
<?xml version="1.0"?>
<!DOCTYPE module SYSTEM "../../../../tools/rbuild/project.dtd">
<module name="winemine" type="win32gui" installbase="system32" installname="winemine.exe" unicode="yes">
<include base="winemine">.</include>
<module name="winmine" type="win32gui" installbase="system32" installname="winmine.exe" unicode="no">
<include base="winmine">.</include>
<library>wine</library>
<library>gdi32</library>
<library>user32</library>
<library>advapi32</library>

View file

@ -48,7 +48,7 @@ base\applications\extrac32\extrac32.exe 1
base\applications\fontview\fontview.exe 1
base\applications\games\solitaire\sol.exe 1
base\applications\games\spider\spider.exe 1
base\applications\games\winemine\winemine.exe 1
base\applications\games\winmine\winmine.exe 1
base\applications\hh\hh.exe 4
base\applications\kbswitch\kbswitch.exe 1
base\applications\kbswitch\kbsdll\kbsdll.dll 1

View file

@ -810,7 +810,7 @@ CreateShortcuts(VOID)
if (CreateShortcutFolder(CSIDL_PROGRAMS, IDS_GAMES, szFolder, sizeof(szFolder)/sizeof(szFolder[0])))
{
CreateShortcut(CSIDL_PROGRAMS, szFolder, IDS_SHORT_SOLITAIRE, _T("%SystemRoot%\\system32\\sol.exe"), IDS_CMT_SOLITAIRE, TRUE);
CreateShortcut(CSIDL_PROGRAMS, szFolder, IDS_SHORT_WINEMINE, _T("%SystemRoot%\\system32\\winemine.exe"), IDS_CMT_WINEMINE, TRUE);
CreateShortcut(CSIDL_PROGRAMS, szFolder, IDS_SHORT_WINEMINE, _T("%SystemRoot%\\system32\\winmine.exe"), IDS_CMT_WINEMINE, TRUE);
CreateShortcut(CSIDL_PROGRAMS, szFolder, IDS_SHORT_SPIDER, _T("%SystemRoot%\\system32\\spider.exe"), IDS_CMT_SPIDER, TRUE);
}

View file

@ -188,7 +188,7 @@ reactos/dll/win32/xmllite # Autosync
ReactOS shares the following programs with Winehq.
reactos/base/applications/cmdutils/xcopy # Autosync
reactos/base/applications/games/winemine # Out of sync
reactos/base/applications/games/winmine # Forked at Wine-1_3_5
reactos/base/applications/extrac32 # Autosync
reactos/base/applications/iexplore # Autosync
reactos/base/applications/notepad # Forked at Wine-20041201