Files
nsis-plugin-ns7zip/versions/26.00/CPP/7zip/UI/FileManager/LangPage.rc
T
Simone d074cc7c07 chore: initial commit (extracted from Launchers monorepo)
Plugin: ns7zip v2.0.0
Architectures: x86-ansi, x86-unicode, amd64-unicode
License: LGPL-2.1-or-later
2026-04-29 14:07:51 +02:00

41 lines
774 B
Plaintext

#include "LangPageRes.h"
#include "../../GuiCommon.rc"
#define xc OPTIONS_PAGE_XC_SIZE
#define yc OPTIONS_PAGE_YC_SIZE
#define y 32
IDD_LANG DIALOG MY_PAGE_POSTFIX
CAPTION "Language"
{
LTEXT "Language:", IDT_LANG_LANG, m, m, xc, 8
COMBOBOX IDC_LANG_LANG, m, 20, 160, yc - 20, MY_COMBO // MY_COMBO_SORTED
LTEXT "", IDT_LANG_INFO, m, m + y, xc, yc - y, SS_NOPREFIX
}
#ifdef UNDER_CE
#undef m
#undef xc
#define m 4
#define xc (SMALL_PAGE_SIZE_X + 8)
IDD_LANG_2 MY_PAGE
CAPTION "Language"
{
LTEXT "Language:", IDT_LANG_LANG, m, m, xc, 8
COMBOBOX IDC_LANG_LANG, m, 20, xc, yc - 20, MY_COMBO // MY_COMBO_SORTED
}
#endif
STRINGTABLE
BEGIN
IDS_LANG_ENGLISH "English"
IDS_LANG_NATIVE "English"
END