Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
7893 leency 1
char version[]="WebView 2.48";
7762 leency 2
 
3
#ifdef LANG_RUS
4
char page_not_found[] = FROM "html\\page_not_found_ru.htm""\0";
5
char homepage[] = FROM "html\\homepage_ru.htm""\0";
6
char help[] = FROM "html\\help_ru.htm""\0";
7
char accept_language[]= "Accept-Language: ru\n";
8
char rmb_menu[] =
7781 leency 9
"Посмотреть исходник|Ctrl+U
7762 leency 10
Редактировать исходник";
11
char main_menu[] =
7781 leency 12
"Открыть файл|Ctrl+O
13
Новое окно|Ctrl+N
7796 leency 14
-
7781 leency 15
История|Ctrl+H
16
Менеджер загрузок|Ctrl+J
7770 leency 17
Очистить кэш
7765 leency 18
Обновить браузер";
7762 leency 19
char link_menu[] =
7789 simsanutiy 20
"Открыть в новой вкладке
21
Открыть в новом окне
7796 leency 22
-
7789 simsanutiy 23
Копировать ссылку
7762 leency 24
Скачать содержимое ссылки";
25
char loading_text[] = "Загрузка...";
7765 leency 26
 
27
char update_param[] = "-download_and_exit http://builds.kolibrios.org/rus/data/programs/cmm/browser/WebView.com";
28
char update_download_error[] = "'WebView\nОшибка при получении обновлений!' -tE";
29
char update_ok[] = "'WebView\nБраузер был успешно обновлен!' -tO";
7770 leency 30
char update_is_current[] = "'WebView\nВы уже используете последнюю версию.' -tI";
31
char update_can_not_copy[] = "'WebView\nНе могу переместить новую версию из папки Downloads на Ramdisk. Возможно, не достаточно места.' -tE";
32
char clear_cache_ok[] = "'WebView\nКэш очищен.' -tI";
7762 leency 33
#else
34
char page_not_found[] = FROM "html\\page_not_found_en.htm""\0";
35
char homepage[] = FROM "html\\homepage_en.htm""\0";
36
char help[] = FROM "html\\help_en.htm""\0";
37
char accept_language[]= "Accept-Language: en\n";
38
char rmb_menu[] =
7781 leency 39
"View source|Ctrl+U
7762 leency 40
Edit source";
41
char main_menu[] =
7781 leency 42
"Open local file|Ctrl+O
43
New window|Ctrl+N
7796 leency 44
-
7781 leency 45
History|Ctrl+H
46
Download Manager|Ctrl+J
7770 leency 47
Clear cache
7765 leency 48
Update browser";
7762 leency 49
char link_menu[] =
7789 simsanutiy 50
"Open in new tab
51
Open in new window
7796 leency 52
-
7789 simsanutiy 53
Copy link
7762 leency 54
Download link contents";
55
char loading_text[] = "Loading...";
7765 leency 56
char update_param[] = "-download_and_exit http://builds.kolibrios.org/eng/data/programs/cmm/browser/WebView.com";
57
char update_download_error[] = "'WebView\nError receiving an up to date information!' -tE";
58
char update_ok[] = "'WebView\nThe browser has been updated!' -tO";
7770 leency 59
char update_is_current[] = "'WebView\nThe browser is up to date.' -tI";
60
char update_can_not_copy[] = "'WebView\nError copying a new version from Downloads folder!\nProbably too litle space on Ramdisk.' -tE";
61
char clear_cache_ok[] = "'WebView\nThe cache has been cleared.' -tI";
7762 leency 62
#endif
63
 
64
#define URL_SERVICE_HISTORY "WebView:history"
65
#define URL_SERVICE_HOMEPAGE "WebView:home"
66
#define URL_SERVICE_HELP "WebView:help"
67