tr.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or http://ckeditor.com/license
  4. */
  5. CKEDITOR.plugins.setLang( 'forms', 'tr', {
  6. button: {
  7. title: 'Düğme Özellikleri',
  8. text: 'Metin (Değer)',
  9. type: 'Tip',
  10. typeBtn: 'Düğme',
  11. typeSbm: 'Gönder',
  12. typeRst: 'Sıfırla'
  13. },
  14. checkboxAndRadio: {
  15. checkboxTitle: 'Onay Kutusu Özellikleri',
  16. radioTitle: 'Seçenek Düğmesi Özellikleri',
  17. value: 'Değer',
  18. selected: 'Seçili',
  19. required: 'Zorunlu'
  20. },
  21. form: {
  22. title: 'Form Özellikleri',
  23. menu: 'Form Özellikleri',
  24. action: 'İşlem',
  25. method: 'Yöntem',
  26. encoding: 'Kodlama'
  27. },
  28. hidden: {
  29. title: 'Gizli Veri Özellikleri',
  30. name: 'Ad',
  31. value: 'Değer'
  32. },
  33. select: {
  34. title: 'Seçim Menüsü Özellikleri',
  35. selectInfo: 'Bilgi',
  36. opAvail: 'Mevcut Seçenekler',
  37. value: 'Değer',
  38. size: 'Boyut',
  39. lines: 'satır',
  40. chkMulti: 'Çoklu seçime izin ver',
  41. required: 'Zorunlu',
  42. opText: 'Metin',
  43. opValue: 'Değer',
  44. btnAdd: 'Ekle',
  45. btnModify: 'Düzenle',
  46. btnUp: 'Yukarı',
  47. btnDown: 'Aşağı',
  48. btnSetValue: 'Seçili değer olarak ata',
  49. btnDelete: 'Sil'
  50. },
  51. textarea: {
  52. title: 'Çok Satırlı Metin Özellikleri',
  53. cols: 'Sütunlar',
  54. rows: 'Satırlar'
  55. },
  56. textfield: {
  57. title: 'Metin Girişi Özellikleri',
  58. name: 'Ad',
  59. value: 'Değer',
  60. charWidth: 'Karakter Genişliği',
  61. maxChars: 'En Fazla Karakter',
  62. required: 'Zorunlu',
  63. type: 'Tür',
  64. typeText: 'Metin',
  65. typePass: 'Şifre',
  66. typeEmail: 'E-posta',
  67. typeSearch: 'Ara',
  68. typeTel: 'Telefon Numarası',
  69. typeUrl: 'URL'
  70. }
  71. } );