Welcome to mirror list, hosted at ThFree Co, Russian Federation.

resource.rc « LangPage « Resource « FileManager « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abaa94810e2a38304dc7e107f6ce247b0ea37cdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "resource.h"
#include "../../../GuiCommon.rc"

#define xSize2 238
#define ySize2 204
#define xSize (xSize2 + marg + marg)
#define ySize (ySize2 + marg + marg)

IDD_LANG  DIALOG  0, 0, xSize, ySize  MY_PAGE_STYLE
CAPTION "Language"
MY_FONT
BEGIN
  LTEXT      "Language:", IDC_LANG_STATIC_LANG, marg, marg, xSize2, 8
  COMBOBOX   IDC_LANG_COMBO_LANG, marg, 20, 146, ySize2 - 12, CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_TABSTOP
END

STRINGTABLE
BEGIN
  IDS_LANG_ENGLISH  "English"
  IDS_LANG_NATIVE   "English"
END