82 lines
3.9 KiB
Plaintext
82 lines
3.9 KiB
Plaintext
/*
|
|
* WineFile
|
|
* Japanese Language Support
|
|
*
|
|
* Copyright 2000 Martin Fuchs
|
|
* Copyright 2002 Steven Edwards
|
|
* Copyright 2002 Alexandre Julliard
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include "resource.h"
|
|
|
|
/* UTF-8 */
|
|
#pragma code_page(65001)
|
|
|
|
LANGUAGE LANG_JAPANESE, SUBLANG_DEFAULT
|
|
|
|
IDD_DIALOG_VIEW_TYPE DIALOG 15, 13, 161, 97
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "By File Type"
|
|
FONT 9, "MS Shell Dlg"
|
|
BEGIN
|
|
LTEXT "&Name:",-1,7,8,22,10
|
|
EDITTEXT IDC_VIEW_PATTERN,31,7,63,12,ES_AUTOHSCROLL
|
|
GROUPBOX "File Type",-1,7,23,87,56
|
|
CONTROL "&Directories",IDC_VIEW_TYPE_DIRECTORIES,"Button",
|
|
BS_AUTOCHECKBOX | WS_TABSTOP,13,32,70,10
|
|
CONTROL "&Programs",IDC_VIEW_TYPE_PROGRAMS,"Button",
|
|
BS_AUTOCHECKBOX | WS_TABSTOP,13,43,70,10
|
|
CONTROL "Docu&ments",IDC_VIEW_TYPE_DOCUMENTS,"Button",
|
|
BS_AUTOCHECKBOX | WS_TABSTOP,13,54,70,10
|
|
CONTROL "&Other files",IDC_VIEW_TYPE_OTHERS,"Button",
|
|
BS_AUTOCHECKBOX | WS_TABSTOP,13,65,70,10
|
|
CONTROL "Show Hidden/&System Files",IDC_VIEW_TYPE_HIDDEN,
|
|
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,81,106,9
|
|
DEFPUSHBUTTON "OK",IDOK,104,7,50,14
|
|
PUSHBUTTON "Cancel",IDCANCEL,104,24,50,14
|
|
END
|
|
|
|
IDD_DIALOG_PROPERTIES DIALOG 0, 0, 248, 215
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "Properties for %s"
|
|
FONT 9, "MS Shell Dlg"
|
|
BEGIN
|
|
DEFPUSHBUTTON "OK",IDOK,191,7,50,14
|
|
PUSHBUTTON "Cancel",IDCANCEL,191,29,50,14
|
|
LTEXT "&File Name:",-1,7,7,59,9
|
|
EDITTEXT IDC_STATIC_PROP_FILENAME,71,7,120,9,ES_READONLY | NOT WS_BORDER | WS_TABSTOP
|
|
LTEXT "Full &Path:",-1,7,18,59,9
|
|
EDITTEXT IDC_STATIC_PROP_PATH,71,18,120,9, ES_READONLY | NOT WS_BORDER | WS_TABSTOP
|
|
LTEXT "Last Change:",-1,7,29,59,9
|
|
EDITTEXT IDC_STATIC_PROP_LASTCHANGE,71,29,120,9,ES_READONLY | NOT WS_BORDER | WS_TABSTOP
|
|
LTEXT "Version:",-1,7,40,59,9
|
|
EDITTEXT IDC_STATIC_PROP_VERSION,71,40,120,9,ES_READONLY | NOT WS_BORDER | WS_TABSTOP
|
|
LTEXT "Cop&yright:",-1,7,51,59,9
|
|
EDITTEXT IDC_STATIC_PROP_COPYRIGHT,71,51,120,9,ES_READONLY | NOT WS_BORDER | WS_TABSTOP
|
|
LTEXT "Size:",-1,7,62,59,9
|
|
EDITTEXT IDC_STATIC_PROP_SIZE,71,62,120,9,ES_READONLY | NOT WS_BORDER | WS_TABSTOP
|
|
GROUPBOX "Attributes",-1,7,79,158,46
|
|
CONTROL "&Read Only",IDC_CHECK_READONLY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,17,91,68,9
|
|
CONTROL "H&idden",IDC_CHECK_HIDDEN,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,92,91,68,9
|
|
CONTROL "&Archive",IDC_CHECK_ARCHIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,17,101,68,9
|
|
CONTROL "&System",IDC_CHECK_SYSTEM,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,92,101,68,9
|
|
CONTROL "&Compressed",IDC_CHECK_COMPRESSED,"Button", BS_AUTOCHECKBOX | WS_TABSTOP,17,111,68,9
|
|
GROUPBOX "&Version Information",-1,7,129,234,79
|
|
LISTBOX IDC_LIST_PROP_VERSION_TYPES,13,139,107,63,LBS_SORT | LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP
|
|
EDITTEXT IDC_LIST_PROP_VERSION_VALUES,123,139,111,63,ES_MULTILINE | ES_READONLY | WS_VSCROLL
|
|
END
|