Subversion Repositories Kolibri OS

Rev

Rev 9455 | Rev 9465 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9455 leency 1
#ifdef LANG_RUS
2
	?define WINDOW_HEADER "Настройки оформления"
3
	?define T_SELECT_FOLDER "Выбрать папку"
4
	?define T_PICTURE_MODE " Положение картинки "
5
	?define T_CHECKBOX_STRETCH "Растянуть"
6
	?define T_CHECKBOX_TILED "Замостить"
7
	?define T_UPDATE_DOCK "Обновлять Dock-панель"
9461 leency 8
	?define T_NO_FILES "'Поддерживаемые файлы не найдены' -E"
9
	?define T_UI_PREVIEW " Пример компонентов "
9455 leency 10
	char t_skins[] =       "   Стиль окон";
11
	char t_wallpapers[] =  "   Обои";
12
	char t_screensaver[] =  "   Скринсейвер";
13
#else
14
	?define WINDOW_HEADER "Appearance"
15
	?define T_SELECT_FOLDER "Select folder"
16
	?define T_PICTURE_MODE " Picture Mode "
17
	?define T_CHECKBOX_STRETCH "Stretch"
18
	?define T_CHECKBOX_TILED "Tiled"
19
	?define T_UPDATE_DOCK "Update Dock"
9461 leency 20
	?define T_NO_FILES "'No supported files were found' -E"
21
	?define T_UI_PREVIEW " Components Preview "
9455 leency 22
	char t_skins[] =       "   Skins";
23
	char t_wallpapers[] =  "   Wallpapers";
24
	char t_screensaver[] =  "   Screensaver";
25
#endif
26
 
27
#define WIN_W 600
9461 leency 28
#define WIN_H 420
9455 leency 29
#define LIST_W 280
30
#define PANEL_H 50
9461 leency 31
#define LP 6 //LIST_PADDING
32
 
33
#define RIGHTx LP + TAB_PADDING + LIST_W + TAB_PADDING + 30
34
#define RIGHTy PANEL_H
35
#define RIGHTw 226
36
#define RIGHTh 215
37
 
38
enum {
39
	TAB_SKINS,
40
	TAB_WALLPAPERS,
41
	TAB_SCREENSAVERS
42
};
43
 
44
_ini ini = { "/sys/settings/system.ini" };
45
 
46
char default_dir[] = "/rd/1";
47
od_filter filter2 = { 8, "TXT\0\0" };