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 24LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT 25 26STRINGTABLE 27BEGIN 28#ifdef __REACTOS__ 29 IDS_DEFTITLE "HTML Help" 30#endif 31 IDS_CONTENTS "&Зміст" 32 IDS_INDEX "&Вказівник" 33 IDS_SEARCH "&Пошук" 34 IDS_FAVORITES "&Обране" 35 36 IDS_HIDETABS "Hide &Tabs" 37 IDS_SHOWTABS "Show &Tabs" 38END 39 40STRINGTABLE 41BEGIN 42 IDTB_EXPAND "Показувати" 43 IDTB_CONTRACT "Приховати" 44 IDTB_STOP "Зупинити" 45 IDTB_REFRESH "Оновити" 46 IDTB_BACK "Назад" 47 IDTB_HOME "Додому" 48 IDTB_SYNC "Синхронізувати" 49 IDTB_PRINT "Друк" 50 IDTB_OPTIONS "Параметри" 51 IDTB_FORWARD "Вперед" 52END 53 54MENU_POPUP MENU 55{ 56 POPUP "" /* Options */ 57 { 58 MENUITEM "", IDTB_EXPAND 59 MENUITEM "S&ync", IDTB_SYNC 60 MENUITEM "&Back", IDTB_BACK 61 MENUITEM "&Forward", IDTB_FORWARD 62 MENUITEM "&Home", IDTB_HOME 63 MENUITEM "&Stop", IDTB_STOP 64 MENUITEM "&Refresh", IDTB_REFRESH 65 MENUITEM "&Print...", IDTB_PRINT 66 } 67} 68 69MENU_WEBBROWSER MENU 70{ 71 POPUP "" 72 { 73 MENUITEM "&Back", IDTB_BACK 74 MENUITEM "&Forward", IDTB_FORWARD 75 MENUITEM SEPARATOR 76 MENUITEM "Select &All", MIID_SELECTALL 77 MENUITEM SEPARATOR 78 MENUITEM "&View Source", MIID_VIEWSOURCE 79 MENUITEM SEPARATOR 80 MENUITEM "&Print...", IDTB_PRINT 81 MENUITEM "&Refresh", IDTB_REFRESH 82 MENUITEM SEPARATOR 83 MENUITEM "Proper&ties", MIID_PROPERTIES 84 } 85 POPUP "" 86 { 87 MENUITEM "Cu&t", MIID_CUT 88 MENUITEM "&Copy", MIID_COPY 89 MENUITEM "Paste", MIID_PASTE 90 MENUITEM "Select &All", MIID_SELECTALL 91 MENUITEM "&Print", IDTB_PRINT 92 } 93} 94