xref: /reactos/dll/win32/ieframe/lang/en-US.rc (revision c2c66aff)
1LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
2
3IDR_BROWSE_MAIN_MENU MENU
4{
5    POPUP "&File"
6    {
7        POPUP "&New"
8        {
9            MENUITEM "&Window",                 ID_BROWSE_NEW_WINDOW
10        }
11        MENUITEM "&Open...",                    ID_BROWSE_OPEN
12        MENUITEM "&Save",                       ID_BROWSE_SAVE
13        MENUITEM "Save &As...",                 ID_BROWSE_SAVE_AS
14        MENUITEM SEPARATOR
15        MENUITEM "Print &Format...",            ID_BROWSE_PRINT_FORMAT
16        MENUITEM "Pr&int...",                   ID_BROWSE_PRINT
17        MENUITEM "Print Pre&view",              ID_BROWSE_PRINT_PREVIEW
18        MENUITEM SEPARATOR
19        MENUITEM "&Properties",                 ID_BROWSE_PROPERTIES
20        MENUITEM "&Close",                      ID_BROWSE_QUIT
21    }
22    POPUP "&View"
23    {
24        POPUP "&Toolbars"
25        {
26            MENUITEM "&Standard bar",           ID_BROWSE_BAR_STD
27            MENUITEM "&Address bar",            ID_BROWSE_BAR_ADDR
28        }
29    }
30    POPUP "F&avorites"
31    {
32        MENUITEM "&Add to favorites...",        ID_BROWSE_ADDFAV
33        MENUITEM SEPARATOR
34    }
35    POPUP "&Help"
36    {
37        MENUITEM "&About Internet Explorer", ID_BROWSE_ABOUT
38    }
39}
40
41STRINGTABLE
42{
43    IDS_TB_BACK             "Back"
44    IDS_TB_FORWARD          "Forward"
45    IDS_TB_STOP             "Stop"
46    IDS_TB_REFRESH          "Refresh"
47    IDS_TB_HOME             "Home"
48    IDS_TB_PRINT            "Print..."
49}
50
51STRINGTABLE
52{
53    IDS_ADDRESS             "Address"
54}
55
56STRINGTABLE
57{
58    IDS_FINDINGRESOURCE     "Searching for %s"
59    IDS_BEGINDOWNLOADDATA   "Start downloading %s"
60    IDS_ENDDOWNLOADDATA     "Downloading %s"
61    IDS_SENDINGREQUEST      "Asking for %s"
62}
63
64
65IDD_BROWSE_OPEN DIALOGEX 10, 10, 200, 70
66STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION
67CAPTION "Open URL"
68FONT 8, "MS Shell Dlg"
69{
70    LTEXT "Specify the URL you wish to open in Internet Explorer",-1, 35,5,160,25
71    LTEXT "Open:", -1, 5, 32, 30, 15
72#ifdef __REACTOS__
73    ICON IDC_PAGEICO, IDC_PAGEICO, 2, 5, 21, 20, SS_ICON
74#endif
75    EDITTEXT IDC_BROWSE_OPEN_URL, 35, 30, 160, 13
76    DEFPUSHBUTTON "OK", IDOK, 90, 50, 50, 14
77    PUSHBUTTON "Cancel", IDCANCEL, 145, 50, 50, 14
78}