1/* 2 * HTML Help resources 3 * Ukrainian Language Support 4 * 5 * Copyright 2005 James Hawkins 6 * Copyright 2007 Artem Reznikov 7 * Copyright 2010 Igor Paliychuk 8 * 9 * This library is free software; you can redistribute it and/or 10 * modify it under the terms of the GNU Lesser General Public 11 * License as published by the Free Software Foundation; either 12 * version 2.1 of the License, or (at your option) any later version. 13 * 14 * This library is distributed in the hope that it will be useful, 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17 * Lesser General Public License for more details. 18 * 19 * You should have received a copy of the GNU Lesser General Public 20 * License along with this library; if not, write to the Free Software 21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 22 */ 23 24/* UTF-8 */ 25#pragma code_page(65001) 26 27LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT 28 29STRINGTABLE 30BEGIN 31#ifdef __REACTOS__ 32 IDS_DEFTITLE "HTML Help" 33#endif 34 IDS_CONTENTS "&Зміст" 35 IDS_INDEX "&Вказівник" 36 IDS_SEARCH "&Пошук" 37 IDS_FAVORITES "&Обране" 38 39 IDS_HIDETABS "Hide &Tabs" 40 IDS_SHOWTABS "Show &Tabs" 41END 42 43STRINGTABLE 44BEGIN 45 IDTB_EXPAND "Показувати" 46 IDTB_CONTRACT "Приховати" 47 IDTB_STOP "Зупинити" 48 IDTB_REFRESH "Оновити" 49 IDTB_BACK "Назад" 50 IDTB_HOME "Додому" 51 IDTB_SYNC "Синхронізувати" 52 IDTB_PRINT "Друк" 53 IDTB_OPTIONS "Параметри" 54 IDTB_FORWARD "Вперед" 55END 56 57MENU_POPUP MENU 58{ 59 POPUP "" /* Options */ 60 { 61 MENUITEM "", IDTB_EXPAND 62 MENUITEM "S&ync", IDTB_SYNC 63 MENUITEM "&Back", IDTB_BACK 64 MENUITEM "&Forward", IDTB_FORWARD 65 MENUITEM "&Home", IDTB_HOME 66 MENUITEM "&Stop", IDTB_STOP 67 MENUITEM "&Refresh", IDTB_REFRESH 68 MENUITEM "&Print...", IDTB_PRINT 69 } 70} 71 72MENU_WEBBROWSER MENU 73{ 74 POPUP "" 75 { 76 MENUITEM "&Back", IDTB_BACK 77 MENUITEM "&Forward", IDTB_FORWARD 78 MENUITEM SEPARATOR 79 MENUITEM "Select &All", MIID_SELECTALL 80 MENUITEM SEPARATOR 81 MENUITEM "&View Source", MIID_VIEWSOURCE 82 MENUITEM SEPARATOR 83 MENUITEM "&Print...", IDTB_PRINT 84 MENUITEM "&Refresh", IDTB_REFRESH 85 MENUITEM SEPARATOR 86 MENUITEM "Proper&ties", MIID_PROPERTIES 87 } 88 POPUP "" 89 { 90 MENUITEM "Cu&t", MIID_CUT 91 MENUITEM "&Copy", MIID_COPY 92 MENUITEM "Paste", MIID_PASTE 93 MENUITEM "Select &All", MIID_SELECTALL 94 MENUITEM "&Print", IDTB_PRINT 95 } 96} 97