mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
- Add more resources
- More dialogs implementation svn path=/trunk/; revision=38629
This commit is contained in:
parent
71d636cbfd
commit
2037c316a8
22 changed files with 376 additions and 5 deletions
|
@ -124,10 +124,27 @@ IsConnctedPageDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
||||||
{
|
{
|
||||||
case PSN_SETACTIVE:
|
case PSN_SETACTIVE:
|
||||||
{
|
{
|
||||||
/* Disable "Next" button */
|
if ((SendDlgItemMessage(hwndDlg, IDC_CONNECTED, BM_GETCHECK, 0, 0) == BST_CHECKED) ||
|
||||||
PropSheet_SetWizButtons(GetParent(hwndDlg), PSWIZB_BACK);
|
(SendDlgItemMessage(hwndDlg, IDC_NOTCONNECTED, BM_GETCHECK, 0, 0) == BST_CHECKED))
|
||||||
|
{
|
||||||
|
PropSheet_SetWizButtons(GetParent(hwndDlg), PSWIZB_NEXT | PSWIZB_BACK);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
PropSheet_SetWizButtons(GetParent(hwndDlg), PSWIZB_BACK);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case PSN_WIZNEXT:
|
||||||
|
{
|
||||||
|
if (SendDlgItemMessage(hwndDlg, IDC_NOTCONNECTED, BM_GETCHECK, 0, 0) == BST_CHECKED)
|
||||||
|
SetWindowLong(hwndDlg, DWL_MSGRESULT, IDD_NOTCONNECTEDPAGE);
|
||||||
|
else
|
||||||
|
SetWindowLong(hwndDlg, DWL_MSGRESULT, IDD_PROBELISTPAGE);
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -168,10 +185,83 @@ FinishPageDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static INT_PTR CALLBACK
|
||||||
|
NotConnectedPageDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
||||||
|
{
|
||||||
|
switch (uMsg)
|
||||||
|
{
|
||||||
|
case WM_INITDIALOG:
|
||||||
|
{
|
||||||
|
/* Set title font */
|
||||||
|
SendDlgItemMessage(hwndDlg, IDC_FINISHTITLE, WM_SETFONT, (WPARAM)hTitleFont, (LPARAM)TRUE);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case WM_NOTIFY:
|
||||||
|
{
|
||||||
|
LPNMHDR lpnm = (LPNMHDR)lParam;
|
||||||
|
|
||||||
|
switch (lpnm->code)
|
||||||
|
{
|
||||||
|
case PSN_SETACTIVE:
|
||||||
|
{
|
||||||
|
PropSheet_SetWizButtons(GetParent(hwndDlg), PSWIZB_FINISH | PSWIZB_BACK);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case PSN_WIZBACK:
|
||||||
|
{
|
||||||
|
SetWindowLong(hwndDlg, DWL_MSGRESULT, IDD_ISCONNECTEDPAGE);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static INT_PTR CALLBACK
|
||||||
|
ProbeListPageDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
||||||
|
{
|
||||||
|
switch (uMsg)
|
||||||
|
{
|
||||||
|
case WM_COMMAND:
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case WM_NOTIFY:
|
||||||
|
{
|
||||||
|
LPNMHDR lpnm = (LPNMHDR)lParam;
|
||||||
|
|
||||||
|
switch (lpnm->code)
|
||||||
|
{
|
||||||
|
case PSN_SETACTIVE:
|
||||||
|
{
|
||||||
|
PropSheet_SetWizButtons(GetParent(hwndDlg), PSWIZB_BACK);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case PSN_WIZNEXT:
|
||||||
|
{
|
||||||
|
SetWindowLong(hwndDlg, DWL_MSGRESULT, IDD_FINISHPAGE);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
static VOID
|
static VOID
|
||||||
HardwareWizardInit(HWND hwnd)
|
HardwareWizardInit(HWND hwnd)
|
||||||
{
|
{
|
||||||
HPROPSHEETPAGE ahpsp[3];
|
HPROPSHEETPAGE ahpsp[5];
|
||||||
PROPSHEETPAGE psp = {0};
|
PROPSHEETPAGE psp = {0};
|
||||||
PROPSHEETHEADER psh;
|
PROPSHEETHEADER psh;
|
||||||
UINT nPages = 0;
|
UINT nPages = 0;
|
||||||
|
@ -207,6 +297,17 @@ HardwareWizardInit(HWND hwnd)
|
||||||
psp.pszTemplate = MAKEINTRESOURCE(IDD_ISCONNECTEDPAGE);
|
psp.pszTemplate = MAKEINTRESOURCE(IDD_ISCONNECTEDPAGE);
|
||||||
ahpsp[nPages++] = CreatePropertySheetPage(&psp);
|
ahpsp[nPages++] = CreatePropertySheetPage(&psp);
|
||||||
|
|
||||||
|
/* Create probe list page */
|
||||||
|
psp.dwSize = sizeof(PROPSHEETPAGE);
|
||||||
|
psp.dwFlags = PSP_DEFAULT | PSP_USEHEADERTITLE | PSP_USEHEADERSUBTITLE;
|
||||||
|
psp.pszHeaderTitle = MAKEINTRESOURCE(IDS_PROBELISTTITLE);
|
||||||
|
psp.pszHeaderSubTitle = NULL;
|
||||||
|
psp.hInstance = hApplet;
|
||||||
|
psp.lParam = 0;
|
||||||
|
psp.pfnDlgProc = ProbeListPageDlgProc;
|
||||||
|
psp.pszTemplate = MAKEINTRESOURCE(IDD_PROBELISTPAGE);
|
||||||
|
ahpsp[nPages++] = CreatePropertySheetPage(&psp);
|
||||||
|
|
||||||
/* Create finish page */
|
/* Create finish page */
|
||||||
psp.dwSize = sizeof(PROPSHEETPAGE);
|
psp.dwSize = sizeof(PROPSHEETPAGE);
|
||||||
psp.dwFlags = PSP_DEFAULT | PSP_HIDEHEADER;
|
psp.dwFlags = PSP_DEFAULT | PSP_HIDEHEADER;
|
||||||
|
@ -216,6 +317,15 @@ HardwareWizardInit(HWND hwnd)
|
||||||
psp.pszTemplate = MAKEINTRESOURCE(IDD_FINISHPAGE);
|
psp.pszTemplate = MAKEINTRESOURCE(IDD_FINISHPAGE);
|
||||||
ahpsp[nPages++] = CreatePropertySheetPage(&psp);
|
ahpsp[nPages++] = CreatePropertySheetPage(&psp);
|
||||||
|
|
||||||
|
/* Create not connected page */
|
||||||
|
psp.dwSize = sizeof(PROPSHEETPAGE);
|
||||||
|
psp.dwFlags = PSP_DEFAULT | PSP_HIDEHEADER;
|
||||||
|
psp.hInstance = hApplet;
|
||||||
|
psp.lParam = 0;
|
||||||
|
psp.pfnDlgProc = NotConnectedPageDlgProc;
|
||||||
|
psp.pszTemplate = MAKEINTRESOURCE(IDD_NOTCONNECTEDPAGE);
|
||||||
|
ahpsp[nPages++] = CreatePropertySheetPage(&psp);
|
||||||
|
|
||||||
/* Create the property sheet */
|
/* Create the property sheet */
|
||||||
psh.dwSize = sizeof(PROPSHEETHEADER);
|
psh.dwSize = sizeof(PROPSHEETHEADER);
|
||||||
psh.dwFlags = PSH_WIZARD97 | PSH_WATERMARK | PSH_HEADER;
|
psh.dwFlags = PSH_WIZARD97 | PSH_WATERMARK | PSH_HEADER;
|
||||||
|
|
|
@ -121,6 +121,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Äîáàâÿíå íà îáîðóäâàíå"
|
IDS_CPLNAME "Äîáàâÿíå íà îáîðóäâàíå"
|
||||||
|
@ -128,4 +140,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -121,6 +121,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Pøidat hardware"
|
IDS_CPLNAME "Pøidat hardware"
|
||||||
|
@ -128,4 +140,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -121,6 +121,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Hardware"
|
IDS_CPLNAME "Hardware"
|
||||||
|
@ -128,4 +140,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -121,6 +121,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Ðñüóèåóç óõóêåõþí"
|
IDS_CPLNAME "Ðñüóèåóç óõóêåõþí"
|
||||||
|
@ -128,4 +140,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -121,6 +121,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Add hardware"
|
IDS_CPLNAME "Add hardware"
|
||||||
|
@ -128,4 +140,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -121,6 +121,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Añade Nuevo Hardware"
|
IDS_CPLNAME "Añade Nuevo Hardware"
|
||||||
|
@ -128,4 +140,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -121,6 +121,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Ajout de matériel"
|
IDS_CPLNAME "Ajout de matériel"
|
||||||
|
@ -128,4 +140,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -122,6 +122,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Hardver hozzáadása"
|
IDS_CPLNAME "Hardver hozzáadása"
|
||||||
|
@ -129,4 +141,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -121,6 +121,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Tambah hardware"
|
IDS_CPLNAME "Tambah hardware"
|
||||||
|
@ -128,4 +140,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -121,6 +121,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Aggiungi hardware"
|
IDS_CPLNAME "Aggiungi hardware"
|
||||||
|
@ -128,4 +140,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -121,6 +121,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "ハードウェアの追加"
|
IDS_CPLNAME "ハードウェアの追加"
|
||||||
|
@ -128,4 +140,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -121,6 +121,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Hardware toevoegen"
|
IDS_CPLNAME "Hardware toevoegen"
|
||||||
|
@ -128,4 +140,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -121,6 +121,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Legg til maskinvare"
|
IDS_CPLNAME "Legg til maskinvare"
|
||||||
|
@ -128,4 +140,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -126,6 +126,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Dodaj sprzêt"
|
IDS_CPLNAME "Dodaj sprzêt"
|
||||||
|
@ -133,4 +145,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -121,6 +121,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Adicionar hardware"
|
IDS_CPLNAME "Adicionar hardware"
|
||||||
|
@ -128,4 +140,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -121,6 +121,18 @@ BEGIN
|
||||||
LTEXT "Для прекращения работы мастера нажмите кнопку ""Отмена"".", IDC_STATUSTEXT, 114, 158, 192, 19
|
LTEXT "Для прекращения работы мастера нажмите кнопку ""Отмена"".", IDC_STATUSTEXT, 114, 158, 192, 19
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Мастер установки оборудования"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Мастер установки оборудования", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "Чтобы продолжить, подключите это устройство к компьютеру.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Отключить компьютер после нажатия кнопки ""Готово"", чтобы можно было открыть корпус и подключить устройство.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 30, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "В большинстве случаев ReactOS автоматически установит новое оборудование после его подключения. Если ReactOS не обнаружит его, надо будет вновь запустить этот мастер для установки программной поддержки.", -1, 114, 98, 193, 44
|
||||||
|
LTEXT "Для закрытия мастера нажмите кнопку ""Готово"".", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Установка оборудования"
|
IDS_CPLNAME "Установка оборудования"
|
||||||
|
@ -128,6 +140,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Подождите, выполняется поиск..."
|
IDS_SEARCHTITLE "Подождите, выполняется поиск..."
|
||||||
IDS_SEARCHTEXT "Этот мастер выполняет поиск оборудования, которое недавно было подключено к компьютеру, но еще не было установлено."
|
IDS_SEARCHTEXT "Этот мастер выполняет поиск оборудования, которое недавно было подключено к компьютеру, но еще не было установлено."
|
||||||
IDS_ISCONNECTED "Подключено ли устройство?"
|
IDS_ISCONNECTED "Подключено ли устройство?"
|
||||||
|
IDS_PROBELISTTITLE "На этом компьютере уже установлено следующее оборудование"
|
||||||
END
|
END
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -125,6 +125,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Prida<64> hardvér"
|
IDS_CPLNAME "Prida<64> hardvér"
|
||||||
|
@ -132,4 +144,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -121,6 +121,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "à¾ÔèÁ¡ÒõԴµÑé§ÍØ»¡Ã³ì"
|
IDS_CPLNAME "à¾ÔèÁ¡ÒõԴµÑé§ÍØ»¡Ã³ì"
|
||||||
|
@ -128,4 +140,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -129,6 +129,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Äîäàòè óñòàòêóâàííÿ"
|
IDS_CPLNAME "Äîäàòè óñòàòêóâàííÿ"
|
||||||
|
@ -136,4 +148,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -127,6 +127,18 @@ BEGIN
|
||||||
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
LTEXT "To exit this wizard, click Cancel.", IDC_STATUSTEXT, 114, 166, 132, 8
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_NOTCONNECTEDPAGE DIALOG DISCARDABLE 0, 0, 317, 186
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
||||||
|
CAPTION "Add Hardware Wizard"
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "Cannot Continue the Add Hardware Wizard", IDC_FINISHTITLE, 114, 8, 203, 28
|
||||||
|
LTEXT "To continue, connect this hardware to your computer.", -1, 114, 40, 193, 16
|
||||||
|
AUTOCHECKBOX "&Turn off the computer when I click Finish so that I can open the computer and connect the hardware.", IDC_TURNOFFCHECKBOX, 114, 64, 203, 20, BS_TOP | BS_MULTILINE
|
||||||
|
LTEXT "In most cases ReactOS will automatically install your hardware after you connect it. If ReactOS does not find it, you can reopen this wizard to install the supporting software.", -1, 114, 98, 193, 32
|
||||||
|
LTEXT "To close this wizard, click Finish.", IDC_STATUSTEXT, 114, 166, 193, 8
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_CPLNAME "Ìí¼ÓÓ²¼þ"
|
IDS_CPLNAME "Ìí¼ÓÓ²¼þ"
|
||||||
|
@ -134,4 +146,5 @@ BEGIN
|
||||||
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
IDS_SEARCHTITLE "Please wait while the wizard searches..."
|
||||||
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
IDS_SEARCHTEXT "This wizard is searching for hardware that has been connected to your computer recently but has not yet been installed."
|
||||||
IDS_ISCONNECTED "Is the hardware connected?"
|
IDS_ISCONNECTED "Is the hardware connected?"
|
||||||
|
IDS_PROBELISTTITLE "The following hardware is already installed on your computer"
|
||||||
END
|
END
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
/* Strings */
|
/* Strings */
|
||||||
#define IDS_CPLNAME 1000
|
#define IDS_CPLNAME 1000
|
||||||
#define IDS_CPLDESCRIPTION 1001
|
#define IDS_CPLDESCRIPTION 1001
|
||||||
|
#define IDS_PROBELISTTITLE 1005
|
||||||
#define IDS_SEARCHTEXT 1020
|
#define IDS_SEARCHTEXT 1020
|
||||||
#define IDS_SEARCHTITLE 1025
|
#define IDS_SEARCHTITLE 1025
|
||||||
#define IDS_ISCONNECTED 1113
|
#define IDS_ISCONNECTED 1113
|
||||||
|
@ -22,6 +23,7 @@
|
||||||
#define IDD_SEARCHPAGE 204
|
#define IDD_SEARCHPAGE 204
|
||||||
#define IDD_ISFOUNDPAGE 205
|
#define IDD_ISFOUNDPAGE 205
|
||||||
#define IDD_ISCONNECTEDPAGE 206
|
#define IDD_ISCONNECTEDPAGE 206
|
||||||
|
#define IDD_NOTCONNECTEDPAGE 207
|
||||||
#define IDD_PROBELISTPAGE 208
|
#define IDD_PROBELISTPAGE 208
|
||||||
#define IDD_HWSTATUSPAGE 209
|
#define IDD_HWSTATUSPAGE 209
|
||||||
#define IDD_SELECTWAYPAGE 210
|
#define IDD_SELECTWAYPAGE 210
|
||||||
|
@ -50,6 +52,7 @@
|
||||||
#define IDC_WARNINGICON 502
|
#define IDC_WARNINGICON 502
|
||||||
#define IDC_CONNECTED 504
|
#define IDC_CONNECTED 504
|
||||||
#define IDC_NOTCONNECTED 505
|
#define IDC_NOTCONNECTED 505
|
||||||
|
#define IDC_TURNOFFCHECKBOX 506
|
||||||
|
|
||||||
#endif /* __CPL_RESOURCE_H */
|
#endif /* __CPL_RESOURCE_H */
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue