Subversion Repositories Kolibri OS

Rev

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

Rev 8462 Rev 8490
Line 1... Line 1...
1
#ifdef LANG_RUS
1
#ifdef LANG_RUS
-
 
2
//===================================================//
-
 
3
//                                                   //
-
 
4
//                     CYRILLIC                      //
-
 
5
//                                                   //
-
 
6
//===================================================//
2
char buildin_page_error[] = FROM "res/page_not_found_ru.htm""\0";
7
char buildin_page_error[] = FROM "res/page_not_found_ru.htm""\0";
3
char buildin_page_home[]  = FROM "res/homepage_ru.htm""\0";
8
char buildin_page_home[]  = FROM "res/homepage_ru.htm""\0";
4
char buildin_page_help[]  = FROM "res/help_ru.htm""\0";
9
char buildin_page_help[]  = FROM "res/help_ru.htm""\0";
5
char accept_language[]= "Accept-Language: ru\n";
10
char accept_language[]= "Accept-Language: ru\n";
6
char rmb_menu[] = 
11
char rmb_menu[] = 
Line 29... Line 34...
29
char update_can_not_copy[] = "'WebView\n¥ ¬®£ã ¯¥à¥¬¥áâ¨âì ­®¢ãî ¢¥àá¨î ¨§ ¯ ¯ª¨ Downloads ­  Ramdisk. ‚®§¬®¦­®, ­¥ ¤®áâ â®ç­® ¬¥áâ .' -tE";
34
char update_can_not_copy[] = "'WebView\n¥ ¬®£ã ¯¥à¥¬¥áâ¨âì ­®¢ãî ¢¥àá¨î ¨§ ¯ ¯ª¨ Downloads ­  Ramdisk. ‚®§¬®¦­®, ­¥ ¤®áâ â®ç­® ¬¥áâ .' -tE";
30
char clear_cache_ok[] = "'WebView\nŠíè ®ç¨é¥­.' -tI";
35
char clear_cache_ok[] = "'WebView\nŠíè ®ç¨é¥­.' -tI";
31
#define T_RENDERING "¥­¤¥à¨­£ áâà ­¨æë..."
36
#define T_RENDERING "¥­¤¥à¨­£ áâà ­¨æë..."
32
#define T_DONE_IN_SEC "ƒ®â®¢®: %i ᥪ"
37
#define T_DONE_IN_SEC "ƒ®â®¢®: %i ᥪ"
33
#else
38
#else
-
 
39
//===================================================//
-
 
40
//                                                   //
-
 
41
//                      ENGLISH                      //
-
 
42
//                                                   //
-
 
43
//===================================================//
34
char buildin_page_error[] = FROM "res/page_not_found_en.htm""\0";
44
char buildin_page_error[] = FROM "res/page_not_found_en.htm""\0";
35
char buildin_page_home[]  = FROM "res/homepage_en.htm""\0";
45
char buildin_page_home[]  = FROM "res/homepage_en.htm""\0";
36
char buildin_page_help[]  = FROM "res/help_en.htm""\0";
46
char buildin_page_help[]  = FROM "res/help_en.htm""\0";
37
char accept_language[]= "Accept-Language: en\n";
47
char accept_language[]= "Accept-Language: en\n";
38
char rmb_menu[] =
48
char rmb_menu[] =
Line 61... Line 71...
61
char clear_cache_ok[] = "'WebView\nThe cache has been cleared.' -tI";
71
char clear_cache_ok[] = "'WebView\nThe cache has been cleared.' -tI";
62
#define T_RENDERING "Rendering..."
72
#define T_RENDERING "Rendering..."
63
#define T_DONE_IN_SEC "Done in %i sec"
73
#define T_DONE_IN_SEC "Done in %i sec"
64
#endif
74
#endif
Line -... Line 75...
-
 
75
 
-
 
76
//===================================================//
-
 
77
//                                                   //
-
 
78
//                      GLOBAL                       //
-
 
79
//                                                   //
-
 
80
//===================================================//
65
 
81
 
Line 66... Line 82...
66
char buildin_page_test[]  = FROM "res/test.htm""\0";
82
char buildin_page_test[]  = FROM "res/test.htm""\0";
67
 
83
 
68
#define URL_SERVICE_HISTORY "WebView:history"
84
#define URL_SERVICE_HISTORY  "WebView:history"
Line 83... Line 99...
83
	DOWNLOAD_LINK_CT, TAB_ID, 
99
	DOWNLOAD_LINK_CT, TAB_ID, 
84
	TAB_CLOSE_ID = 900
100
	TAB_CLOSE_ID = 900
85
};
101
};
Line 86... Line 102...
86
 
102
 
87
char editbox_icons[] = FROM "res/editbox_icons.raw";
103
char editbox_icons[] = FROM "res/editbox_icons.raw";
-
 
104
 
-
 
105
#define WIN_W 850
-
 
106
#define WIN_H 920
-
 
107
 
-
 
108
#define DEFAULT_URL URL_SERVICE_HOMEPAGE
-
 
109
 
-
 
110
char version[]="WebView 3.27";
88
111