#include <windows.h>
#include <winver.h>
#include "resource.h"

/////////////////////////////////////////////////////////////////////////////
//
// Strings
//

STRINGTABLE DISCARDABLE
BEGIN
    IDS_IMPORTMSG       "To import your Outlook Express V6.0 mail, select File | Import | Messages."
    IDS_V1NYI           "The mail you downloaded in Outlook Express 6 can not be accessed from Internet Mail and News. Your Outlook Express 6 mail will not be deleted and can be accessed again when you re-install Outlook Express 6."
    IDS_TITLE           "Microsoft Outlook Express"
    IDS_MIGRATING       "%s (%s)"
    IDS_COMPLETE        "%d%% Completed..."
    IDS_UPGRADEMESSAGE  "Outlook Express 6 needs to migrate your mail files from an older version of Outlook Express. This process will take a few minutes.\r\n\r\nIf you decide to uninstall Outlook Express 6, the messages you received while in Outlook Express 6 can be imported by Outlook Express 5 by selecting Import from the File menu."
    IDS_DISKSPACEERROR  "Migration can not be completed because your computer doesn't have enough disk space. Migration needs %s, but your computer only has %s free."
    IDS_SHARINGVIOLATION "Migration can not be completed because another application has Outlook Express files open. To resolve this problem close all other applications and try again."
    IDS_GENERALERROR    "Migration can not be completed for an unknown reason. You may want to shut down other applications or run ScanDisk."
    IDS_NEWSOUTBOX      "News Outbox (Migrated)"
    IDS_NEWSPOSTED      "News Posted Items (Migrated)"
    IDS_NEWSSAVED       "News Saved Items (Migrated)"
    IDS_POSTEDITEMS     "Posted Items"
    IDS_SAVEDITEMS      "Saved Items"
END

STRINGTABLE DISCARDABLE
BEGIN
    IDS_INBOX               "Inbox"
    IDS_OUTBOX              "Outbox"
    IDS_SENTITEMS           "Sent Items"
    IDS_DELETED             "Deleted Items"
    IDS_DRAFT               "Drafts"
END

STRINGTABLE DISCARDABLE
BEGIN
    IDS_BYTES               "%s bytes"
    IDS_ORDERKB             "%s KB"
    IDS_ORDERMB             "%s MB"
    IDS_ORDERGB             "%s GB"
    IDS_ORDERTB             "%s TB"
    IDS_ORDERPB             "%s PB"  // Peta  (10^15)
    IDS_ORDEREB             "%s EB"  // Exa   (10^18)
END

/////////////////////////////////////////////////////////////////////////////
//
// Dialog
//

IDD_PROGRESS DIALOG DISCARDABLE  0, 0, 237, 78
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION
CAPTION "Microsoft Outlook Express"
FONT 8, "MS Shell Dlg"
BEGIN
    CONTROL         "Progress1",IDC_PROGRESS,"msctls_progress32",WS_BORDER,7,
                    49,223,9
    LTEXT           "",IDS_DESCRIPT,
                    51,11,175,32
    LTEXT           "",IDS_STATUS,9,62,221,8
    ICON            IDI_MIGRATE,IDC_STATIC,14,17,20,20
    CONTROL         "",IDC_STATIC,"NativeFontCtl",NFS_ALL,0,0,0,0
END

IDD_MIGRATEERROR DIALOG DISCARDABLE  0, 0, 260, 146
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION
CAPTION "Microsoft Outlook Express"
FONT 8, "MS Shell Dlg"
BEGIN
    CONTROL         "Start Outlook Express...",IDR_STARTOE,"Button",
                    BS_AUTORADIOBUTTON,43,55,210,10
    CONTROL         "Don't start Outlook Express...",IDR_DONTSTARTOE,"Button",
                    BS_AUTORADIOBUTTON,43,87,107,10
    DEFPUSHBUTTON   "OK",IDOK,203,125,50,14
    LTEXT           "",IDS_MESSAGE,42,15,202,33
    LTEXT           "You can choose Import from the File menu to import your current Outlook Express message store.",
                    IDC_STATIC,57,66,190,18
    LTEXT           "You can try to correct the problem. Migration will be tried again the next time you start Outlook Express.",
                    IDC_STATIC,57,98,190,18
    CONTROL         "",IDC_STATIC,"Static",SS_ETCHEDHORZ,7,119,246,1
    ICON            IDI_MIGRATE,IDC_STATIC,12,18,20,20
END

/////////////////////////////////////////////////////////////////////////////
//
// Icon
//

IDI_MIGRATE             ICON    DISCARDABLE     "migrate.ico"

#include "migrate.rcv"