cs.dict.itop-problem-mgmt.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php
  2. // Copyright (C) 2010-2012 Combodo SARL
  3. //
  4. // This file is part of iTop.
  5. //
  6. // iTop is free software; you can redistribute it and/or modify
  7. // it under the terms of the GNU Affero General Public License as published by
  8. // the Free Software Foundation, either version 3 of the License, or
  9. // (at your option) any later version.
  10. //
  11. // iTop is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. // GNU Affero General Public License for more details.
  15. //
  16. // You should have received a copy of the GNU Affero General Public License
  17. // along with iTop. If not, see <http://www.gnu.org/licenses/>
  18. /**
  19. * Localized data.
  20. *
  21. * @author Lukáš Dvořák <lukas.dvorak@itopportal.cz>
  22. * @author Daniel Rokos <daniel.rokos@itopportal.cz>
  23. * @copyright Copyright (C) 2010-2014 Combodo SARL
  24. * @license http://opensource.org/licenses/AGPL-3.0
  25. */
  26. // Dictionnay conventions
  27. // Class:<class_name>
  28. // Class:<class_name>+
  29. // Class:<class_name>/Attribute:<attribute_code>
  30. // Class:<class_name>/Attribute:<attribute_code>+
  31. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>
  32. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
  33. // Class:<class_name>/Stimulus:<stimulus_code>
  34. // Class:<class_name>/Stimulus:<stimulus_code>+
  35. //////////////////////////////////////////////////////////////////////
  36. // Classes in 'bizmodel'
  37. //////////////////////////////////////////////////////////////////////
  38. //
  39. // Dictionnay conventions
  40. // Class:<class_name>
  41. // Class:<class_name>+
  42. // Class:<class_name>/Attribute:<attribute_code>
  43. // Class:<class_name>/Attribute:<attribute_code>+
  44. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>
  45. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
  46. // Class:<class_name>/Stimulus:<stimulus_code>
  47. // Class:<class_name>/Stimulus:<stimulus_code>+
  48. Dict::Add('CS CZ', 'Czech', 'Čeština', array(
  49. 'Menu:ProblemManagement' => 'Správa problémů',
  50. 'Menu:ProblemManagement+' => 'Správa problémů',
  51. 'Menu:Problem:Overview' => 'Přehled',
  52. 'Menu:Problem:Overview+' => 'Přehled',
  53. 'Menu:NewProblem' => 'Nový problém',
  54. 'Menu:NewProblem+' => 'Nový problém',
  55. 'Menu:SearchProblems' => 'Hledat problémy',
  56. 'Menu:SearchProblems+' => 'Hledat problémy',
  57. 'Menu:Problem:Shortcuts' => 'Odkazy',
  58. 'Menu:Problem:MyProblems' => 'Mé problémy',
  59. 'Menu:Problem:MyProblems+' => 'Mé problémy',
  60. 'Menu:Problem:OpenProblems' => 'Všechny otevřené problémy',
  61. 'Menu:Problem:OpenProblems+' => 'Všechny otevřené problémy',
  62. 'UI-ProblemManagementOverview-ProblemByService' => 'Problémy podle služby',
  63. 'UI-ProblemManagementOverview-ProblemByService+' => 'Problémy podle služby',
  64. 'UI-ProblemManagementOverview-ProblemByPriority' => 'Problémy podle priority',
  65. 'UI-ProblemManagementOverview-ProblemByPriority+' => 'Problémy podle priority',
  66. 'UI-ProblemManagementOverview-ProblemUnassigned' => 'Nepřidělené problémy',
  67. 'UI-ProblemManagementOverview-ProblemUnassigned+' => 'Nepřidělené problémy',
  68. 'UI:ProblemMgmtMenuOverview:Title' => 'Dashboard pro správu problémů (Problem management)',
  69. 'UI:ProblemMgmtMenuOverview:Title+' => 'Dashboard pro správu problémů (Problem management)',
  70. ));
  71. //
  72. // Class: Problem
  73. //
  74. Dict::Add('CS CZ', 'Czech', 'Čeština', array(
  75. 'Class:Problem' => 'Problém',
  76. 'Class:Problem+' => '',
  77. 'Class:Problem/Attribute:status' => 'Stav',
  78. 'Class:Problem/Attribute:status+' => '',
  79. 'Class:Problem/Attribute:status/Value:new' => 'Nový',
  80. 'Class:Problem/Attribute:status/Value:new+' => '',
  81. 'Class:Problem/Attribute:status/Value:assigned' => 'Přidělený',
  82. 'Class:Problem/Attribute:status/Value:assigned+' => '',
  83. 'Class:Problem/Attribute:status/Value:resolved' => 'Vyřešený',
  84. 'Class:Problem/Attribute:status/Value:resolved+' => '',
  85. 'Class:Problem/Attribute:status/Value:closed' => 'Uzavřený',
  86. 'Class:Problem/Attribute:status/Value:closed+' => '',
  87. 'Class:Problem/Attribute:service_id' => 'Služba',
  88. 'Class:Problem/Attribute:service_id+' => '',
  89. 'Class:Problem/Attribute:service_name' => 'Název služby',
  90. 'Class:Problem/Attribute:service_name+' => '',
  91. 'Class:Problem/Attribute:servicesubcategory_id' => 'Podkategorie služeb',
  92. 'Class:Problem/Attribute:servicesubcategory_id+' => '',
  93. 'Class:Problem/Attribute:servicesubcategory_name' => 'Podkategorie služeb',
  94. 'Class:Problem/Attribute:servicesubcategory_name+' => '',
  95. 'Class:Problem/Attribute:product' => 'Produkt',
  96. 'Class:Problem/Attribute:product+' => '',
  97. 'Class:Problem/Attribute:impact' => 'Dopad',
  98. 'Class:Problem/Attribute:impact+' => '',
  99. 'Class:Problem/Attribute:impact/Value:1' => 'Oddělení',
  100. 'Class:Problem/Attribute:impact/Value:1+' => '',
  101. 'Class:Problem/Attribute:impact/Value:2' => 'Služba',
  102. 'Class:Problem/Attribute:impact/Value:2+' => '',
  103. 'Class:Problem/Attribute:impact/Value:3' => 'Osoba',
  104. 'Class:Problem/Attribute:impact/Value:3+' => '',
  105. 'Class:Problem/Attribute:urgency' => 'Naléhavost',
  106. 'Class:Problem/Attribute:urgency+' => '',
  107. 'Class:Problem/Attribute:urgency/Value:1' => 'kritická',
  108. 'Class:Problem/Attribute:urgency/Value:1+' => '',
  109. 'Class:Problem/Attribute:urgency/Value:2' => 'vysoká',
  110. 'Class:Problem/Attribute:urgency/Value:2+' => '',
  111. 'Class:Problem/Attribute:urgency/Value:3' => 'střední',
  112. 'Class:Problem/Attribute:urgency/Value:3+' => '',
  113. 'Class:Problem/Attribute:urgency/Value:4' => 'nízká',
  114. 'Class:Problem/Attribute:urgency/Value:4+' => '',
  115. 'Class:Problem/Attribute:priority' => 'Priorita',
  116. 'Class:Problem/Attribute:priority+' => '',
  117. 'Class:Problem/Attribute:priority/Value:1' => 'Kritická',
  118. 'Class:Problem/Attribute:priority/Value:1+' => '',
  119. 'Class:Problem/Attribute:priority/Value:2' => 'Vysoká',
  120. 'Class:Problem/Attribute:priority/Value:2+' => '',
  121. 'Class:Problem/Attribute:priority/Value:3' => 'Střední',
  122. 'Class:Problem/Attribute:priority/Value:3+' => '',
  123. 'Class:Problem/Attribute:priority/Value:4' => 'Nízká',
  124. 'Class:Problem/Attribute:priority/Value:4+' => '',
  125. 'Class:Problem/Attribute:related_change_id' => 'Související změna',
  126. 'Class:Problem/Attribute:related_change_id+' => '',
  127. 'Class:Problem/Attribute:related_change_ref' => 'ID Související změny',
  128. 'Class:Problem/Attribute:related_change_ref+' => '',
  129. 'Class:Problem/Attribute:assignment_date' => 'Datum přidělení',
  130. 'Class:Problem/Attribute:assignment_date+' => '',
  131. 'Class:Problem/Attribute:resolution_date' => 'Datum vyřešení',
  132. 'Class:Problem/Attribute:resolution_date+' => '',
  133. 'Class:Problem/Attribute:knownerrors_list' => 'Známé chyby',
  134. 'Class:Problem/Attribute:knownerrors_list+' => 'Všechny známé chyby spojené s tímto problémem',
  135. 'Class:Problem/Attribute:related_request_list' => 'Související požadavky',
  136. 'Class:Problem/Attribute:related_request_list+' => 'Všechny požadavky související s tímto problémem',
  137. 'Class:Problem/Attribute:related_incident_list' => 'Související incidenty',
  138. 'Class:Problem/Attribute:related_incident_list+' => 'Všechny incidenty související s tímto problémem',
  139. 'Class:Problem/Stimulus:ev_assign' => 'Přidělit',
  140. 'Class:Problem/Stimulus:ev_assign+' => '',
  141. 'Class:Problem/Stimulus:ev_reassign' => 'Přidělit znovu',
  142. 'Class:Problem/Stimulus:ev_reassign+' => '',
  143. 'Class:Problem/Stimulus:ev_resolve' => 'Vyřešit',
  144. 'Class:Problem/Stimulus:ev_resolve+' => '',
  145. 'Class:Problem/Stimulus:ev_close' => 'Uzavřít',
  146. 'Class:Problem/Stimulus:ev_close+' => '',
  147. ));