Subversion Repositories Kolibri OS

Rev

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