1/* 2 * HTML Help resources 3 * Turkish Language Support 4 * 5 * Copyrights: 2006 Fatih Aşıcı (fasici@linux-sevenler.org); 2014, 2015 Erdem Ersoy (eersoy93) (erdemersoy [at] erdemersoy [dot] net) 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Lesser General Public 9 * License as published by the Free Software Foundation; either 10 * version 2.1 of the License, or (at your option) any later version. 11 * 12 * This library is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * Lesser General Public License for more details. 16 * 17 * You should have received a copy of the GNU Lesser General Public 18 * License along with this library; if not, write to the Free Software 19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 20 */ 21 22LANGUAGE LANG_TURKISH, SUBLANG_DEFAULT 23 24STRINGTABLE 25BEGIN 26#ifdef __REACTOS__ 27 IDS_DEFTITLE "HTML Help" 28#endif 29 IDS_CONTENTS "&İçindekiler" 30 IDS_INDEX "&Dizin" 31 IDS_SEARCH "&Ara" 32 IDS_FAVORITES "&Yer İmleri" 33 34 IDS_HIDETABS "&Sekmeleri Gizle" 35 IDS_SHOWTABS "&Sekmeleri Göster" 36END 37 38STRINGTABLE 39BEGIN 40 IDTB_EXPAND "Göster" 41 IDTB_CONTRACT "Gizle" 42 IDTB_STOP "Dur" 43 IDTB_REFRESH "Yenile" 44 IDTB_BACK "Geri" 45 IDTB_HOME "Ana sayfa" 46 IDTB_SYNC "Eşitle" 47 IDTB_PRINT "Yazdır" 48 IDTB_OPTIONS "Seçenekler" 49 IDTB_FORWARD "İleri" 50END 51 52MENU_POPUP MENU 53{ 54 POPUP "" /* Options */ 55 { 56 MENUITEM "", IDTB_EXPAND 57 MENUITEM "&Eşitle", IDTB_SYNC 58 MENUITEM "&Geri", IDTB_BACK 59 MENUITEM "&İleri", IDTB_FORWARD 60 MENUITEM "E&v", IDTB_HOME 61 MENUITEM "&Dur", IDTB_STOP 62 MENUITEM "&Yenile", IDTB_REFRESH 63 MENUITEM "Y&azdır...", IDTB_PRINT 64 } 65} 66 67MENU_WEBBROWSER MENU 68{ 69 POPUP "" 70 { 71 MENUITEM "&Geri", IDTB_BACK 72 MENUITEM "&İleri", IDTB_FORWARD 73 MENUITEM SEPARATOR 74 MENUITEM "&Tümünü Seç", MIID_SELECTALL 75 MENUITEM SEPARATOR 76 MENUITEM "&Kaynağı Görüntüle", MIID_VIEWSOURCE 77 MENUITEM SEPARATOR 78 MENUITEM "&Yazdır...", IDTB_PRINT 79 MENUITEM "Y&enile", IDTB_REFRESH 80 MENUITEM SEPARATOR 81 MENUITEM "&Özellikler", MIID_PROPERTIES 82 } 83 POPUP "" 84 { 85 MENUITEM "&Kes", MIID_CUT 86 MENUITEM "&Kopyala", MIID_COPY 87 MENUITEM "Yapıştır", MIID_PASTE 88 MENUITEM "&Tümünü Seç", MIID_SELECTALL 89 MENUITEM "&Yazdır", IDTB_PRINT 90 } 91} 92