tr.dict.itop-request-mgmt.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. // Copyright (C) 2010 Combodo SARL
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; version 3 of the License.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. /**
  17. * Localized data
  18. *
  19. * @author Izzet Sirin <izzet.sirin@htr.com.tr>
  20. * @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
  21. */
  22. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  23. 'Menu:RequestManagement' => 'Yardım masası',
  24. 'Menu:RequestManagement+' => 'Yardım masası',
  25. 'Menu:UserRequest:Overview' => 'Özet',
  26. 'Menu:UserRequest:Overview+' => 'Özet',
  27. 'Menu:NewUserRequest' => 'Yeni çağrı',
  28. 'Menu:NewUserRequest+' => 'Yeni çağrı yarat',
  29. 'Menu:SearchUserRequests' => 'Kullanıcı çağrılarını ara',
  30. 'Menu:SearchUserRequests+' => 'Kullanıcı çağrılarını ara',
  31. 'Menu:UserRequest:Shortcuts' => 'Kısayollar',
  32. 'Menu:UserRequest:Shortcuts+' => '',
  33. 'Menu:UserRequest:MyRequests' => 'Bana atanan çağrılar',
  34. 'Menu:UserRequest:MyRequests+' => 'Bana atanan çağrılar',
  35. 'Menu:UserRequest:EscalatedRequests' => 'Yönetime aktarılan çağrılar',
  36. 'Menu:UserRequest:EscalatedRequests+' => 'Yönetime aktarılan çağrılar',
  37. 'Menu:UserRequest:OpenRequests' => 'Tüm açık çağrılar',
  38. 'Menu:UserRequest:OpenRequests+' => 'Tüm açık çağrılar',
  39. ));
  40. // Dictionnay conventions
  41. // Class:<class_name>
  42. // Class:<class_name>+
  43. // Class:<class_name>/Attribute:<attribute_code>
  44. // Class:<class_name>/Attribute:<attribute_code>+
  45. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>
  46. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
  47. // Class:<class_name>/Stimulus:<stimulus_code>
  48. // Class:<class_name>/Stimulus:<stimulus_code>+
  49. //
  50. // Class: UserRequest
  51. //
  52. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  53. 'Class:UserRequest' => 'Kullanıcı isteği',
  54. 'Class:UserRequest+' => '',
  55. 'Class:UserRequest/Attribute:request_type' => 'İstek Tipi',
  56. 'Class:UserRequest/Attribute:request_type+' => '',
  57. 'Class:UserRequest/Attribute:request_type/Value:information' => 'Bilgi',
  58. 'Class:UserRequest/Attribute:request_type/Value:information+' => 'Bilgi',
  59. 'Class:UserRequest/Attribute:request_type/Value:issue' => 'Konu',
  60. 'Class:UserRequest/Attribute:request_type/Value:issue+' => 'Konu',
  61. 'Class:UserRequest/Attribute:request_type/Value:service request' => 'Servis isteği',
  62. 'Class:UserRequest/Attribute:request_type/Value:service request+' => 'Servis isteği',
  63. 'Class:UserRequest/Attribute:freeze_reason' => 'Tanımlanmamış istek',
  64. 'Class:UserRequest/Attribute:freeze_reason+' => '',
  65. 'Class:UserRequest/Stimulus:ev_assign' => 'Ata',
  66. 'Class:UserRequest/Stimulus:ev_assign+' => '',
  67. 'Class:UserRequest/Stimulus:ev_reassign' => 'Tekrar ata',
  68. 'Class:UserRequest/Stimulus:ev_reassign+' => '',
  69. 'Class:UserRequest/Stimulus:ev_timeout' => 'zaman aşımı',
  70. 'Class:UserRequest/Stimulus:ev_timeout+' => '',
  71. 'Class:UserRequest/Stimulus:ev_resolve' => 'Çözümlendi',
  72. 'Class:UserRequest/Stimulus:ev_resolve+' => '',
  73. 'Class:UserRequest/Stimulus:ev_close' => 'Kapatıldı',
  74. 'Class:UserRequest/Stimulus:ev_close+' => '',
  75. 'Class:UserRequest/Stimulus:ev_freeze' => 'Beklemede',
  76. 'Class:UserRequest/Stimulus:ev_freeze+' => '',
  77. ));
  78. ?>