Subversion Repositories Kolibri OS

Rev

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