Subversion Repositories Kolibri OS

Rev

Rev 5974 | Rev 5985 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5974 Rev 5981
Line 4... Line 4...
4
	?define SHOW_DEVICE_CLASS "‚뢮¤¨âì ­ §¢ ­¨ï ª« áá  ãáâனáâ¢"
4
	?define SHOW_DEVICE_CLASS "‚뢮¤¨âì ­ §¢ ­¨ï ª« áá  ãáâனáâ¢"
5
	?define SHOW_REAL_NAMES "®ª §ë¢ âì ¨¬¥­  ä ©«®¢ ­¥ ¬¥­ïï ॣ¨áâà"
5
	?define SHOW_REAL_NAMES "®ª §ë¢ âì ¨¬¥­  ä ©«®¢ ­¥ ¬¥­ïï ॣ¨áâà"
6
	?define FONT_SIZE_LABEL " §¬¥à èà¨äâ "
6
	?define FONT_SIZE_LABEL " §¬¥à èà¨äâ "
7
	?define USE_TWO_PANELS "„¢¥ ¯ ­¥«¨"
7
	?define USE_TWO_PANELS "„¢¥ ¯ ­¥«¨"
8
	?define USE_SMOOTH_FONT "ˆá¯®«ì§®¢ âì ᣫ ¦¥­­ë© èà¨äâ"
8
	?define smooth_FONT "ˆá¯®«ì§®¢ âì ᣫ ¦¥­­ë© èà¨äâ"
9
	?define LIST_LINE_HEIGHT "‚ëá®â  áâப¨ ¢ ᯨ᪥"
9
	?define LIST_LINE_HEIGHT "‚ëá®â  áâப¨ ¢ ᯨ᪥"
10
	?define NOTIFY_COPY_END "“¢¥¤®¬«ïâì ® § ¢¥à襭¨¨ ª®¯¨à®¢ ­¨ï"
10
	?define NOTIFY_COPY_END "“¢¥¤®¬«ïâì ® § ¢¥à襭¨¨ ª®¯¨à®¢ ­¨ï"
11
	?define T_DOUBLE_CLICK "‚à¥¬ï ¤¢®©­®£® ª«¨ª  (¢ á®âëå)"
11
	?define T_DOUBLE_CLICK "‚à¥¬ï ¤¢®©­®£® ª«¨ª  (¢ á®âëå)"
12
	#define SAVE_PATH_AS_DEFAULT "‘®åà ­¨âì ⥪ã騩 ¯ãâì ¯® 㬮«ç ­¨î"
12
	#define SAVE_PATH_AS_DEFAULT "‘®åà ­¨âì ⥪ã騩 ¯ãâì ¯® 㬮«ç ­¨î"
13
#else
13
#else
14
	?define EDIT_FILE_ASSOCIATIONS "Edit file associations"
14
	?define EDIT_FILE_ASSOCIATIONS "Edit file associations"
Line 16... Line 16...
16
	?define SHOW_DEVICE_CLASS "Show device class name"
16
	?define SHOW_DEVICE_CLASS "Show device class name"
17
	?define SHOW_REAL_NAMES "Show real file names without changing case"
17
	?define SHOW_REAL_NAMES "Show real file names without changing case"
18
	?define FONT_SIZE_LABEL "Font size"
18
	?define FONT_SIZE_LABEL "Font size"
19
	?define USE_TWO_PANELS "Two panels"
19
	?define USE_TWO_PANELS "Two panels"
20
	?define USE_SMOOTH_FONT "Use smooth font"
20
	?define smooth_FONT "Use smooth font"
21
	?define LIST_LINE_HEIGHT "List line height"
21
	?define LIST_LINE_HEIGHT "List line height"
22
	?define NOTIFY_COPY_END "Notify when copying finished"
22
	?define NOTIFY_COPY_END "Notify when copying finished"
23
	?define T_DOUBLE_CLICK "Double click time (in hundredths)"
23
	?define T_DOUBLE_CLICK "Double click time (in hundredths)"
24
	#define SAVE_PATH_AS_DEFAULT "Save the current default path"
24
	#define SAVE_PATH_AS_DEFAULT "Save the current default path"
25
#endif
25
#endif
26
 
26
 
Line 90... Line 90...
90
	CheckBox2(10, 11, 20, SHOW_DEVICE_CLASS,  show_dev_name);
90
	CheckBox2(10, 11, 20, SHOW_DEVICE_CLASS,  show_dev_name);
91
	CheckBox2(10, 33, 21, SHOW_REAL_NAMES,  real_files_names_case);
91
	CheckBox2(10, 33, 21, SHOW_REAL_NAMES,  real_files_names_case);
92
	CheckBox2(10, 55, 22, NOTIFY_COPY_END,  info_after_copy);
92
	CheckBox2(10, 55, 22, NOTIFY_COPY_END,  info_after_copy);
93
	CheckBox2(10, 77, 24, USE_TWO_PANELS,  two_panels); 
93
	CheckBox2(10, 77, 24, USE_TWO_PANELS,  two_panels); 
94
	//CheckBox2(10, 99, 29, USE_SMOOTH_FONT,  smooth_font); 
94
	//CheckBox2(10, 99, 29, smooth_FONT,  smooth_font); 
95
	MoreLessBox(10, 99, 18, 27, 28, #system.color, MOUSE_TIME, T_DOUBLE_CLICK);
95
	MoreLessBox(10, 99, 18, 27, 28, #system.color, MOUSE_TIME, T_DOUBLE_CLICK);
96
	MoreLessBox(10, 125, 18, 25, 26, #system.color, files.item_h, LIST_LINE_HEIGHT);
96
	MoreLessBox(10, 125, 18, 25, 26, #system.color, files.item_h, LIST_LINE_HEIGHT);
97
	if (font.data) MoreLessBox(10, 152, 18, 30, 31, #system.color, font.size.text, FONT_SIZE_LABEL);
97
	if (font.data) MoreLessBox(10, 152, 18, 30, 31, #system.color, font.size.text, FONT_SIZE_LABEL);
98
}
98
}
99
 
99