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 IDS_CONTENTS "&İçindekiler" 27 IDS_INDEX "&Dizin" 28 IDS_SEARCH "&Ara" 29 IDS_FAVORITES "&Yer İmleri" 30 31 IDS_HIDETABS "&Sekmeleri Gizle" 32 IDS_SHOWTABS "&Sekmeleri Göster" 33END 34 35STRINGTABLE 36BEGIN 37 IDTB_EXPAND "Göster" 38 IDTB_CONTRACT "Gizle" 39 IDTB_STOP "Dur" 40 IDTB_REFRESH "Yenile" 41 IDTB_BACK "Geri" 42 IDTB_HOME "Ev" 43 IDTB_SYNC "Eşitle" 44 IDTB_PRINT "Yazdır" 45 IDTB_OPTIONS "Seçenekler" 46 IDTB_FORWARD "İleri" 47END 48 49MENU_POPUP MENU 50{ 51 POPUP "" /* Options */ 52 { 53 MENUITEM "", IDTB_EXPAND 54 MENUITEM "&Eşitle", IDTB_SYNC 55 MENUITEM "&Geri", IDTB_BACK 56 MENUITEM "&İleri", IDTB_FORWARD 57 MENUITEM "E&v", IDTB_HOME 58 MENUITEM "&Dur", IDTB_STOP 59 MENUITEM "&Yenile", IDTB_REFRESH 60 MENUITEM "Y&azdır...", IDTB_PRINT 61 } 62} 63 64MENU_WEBBROWSER MENU 65{ 66 POPUP "" 67 { 68 MENUITEM "&Geri", IDTB_BACK 69 MENUITEM "&İleri", IDTB_FORWARD 70 MENUITEM SEPARATOR 71 MENUITEM "&Tümünü Seç", MIID_SELECTALL 72 MENUITEM SEPARATOR 73 MENUITEM "&Kaynağı Görüntüle", MIID_VIEWSOURCE 74 MENUITEM SEPARATOR 75 MENUITEM "&Yazdır...", IDTB_PRINT 76 MENUITEM "Y&enile", IDTB_REFRESH 77 MENUITEM SEPARATOR 78 MENUITEM "&Husûsiyetler", MIID_PROPERTIES 79 } 80 POPUP "" 81 { 82 MENUITEM "&Kes", MIID_CUT 83 MENUITEM "&Çoğalt", MIID_COPY 84 MENUITEM "Yapıştır", MIID_PASTE 85 MENUITEM "&Tümünü Seç", MIID_SELECTALL 86 MENUITEM "&Yazdır", IDTB_PRINT 87 } 88} 89