ru.dict.itop-problem-mgmt.php 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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 Vladimir Shilov <shilow@ukr.net>
  20. * @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
  21. */
  22. // Dictionnay conventions
  23. // Class:<class_name>
  24. // Class:<class_name>+
  25. // Class:<class_name>/Attribute:<attribute_code>
  26. // Class:<class_name>/Attribute:<attribute_code>+
  27. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>
  28. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
  29. // Class:<class_name>/Stimulus:<stimulus_code>
  30. // Class:<class_name>/Stimulus:<stimulus_code>+
  31. //////////////////////////////////////////////////////////////////////
  32. // Classes in 'bizmodel'
  33. //////////////////////////////////////////////////////////////////////
  34. //
  35. // Dictionnay conventions
  36. // Class:<class_name>
  37. // Class:<class_name>+
  38. // Class:<class_name>/Attribute:<attribute_code>
  39. // Class:<class_name>/Attribute:<attribute_code>+
  40. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>
  41. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
  42. // Class:<class_name>/Stimulus:<stimulus_code>
  43. // Class:<class_name>/Stimulus:<stimulus_code>+
  44. Dict::Add('RU RU', 'Russian', 'Русский', array(
  45. 'Menu:ProblemManagement' => 'Управление проблемами',
  46. 'Menu:ProblemManagement+' => 'Управление проблемами',
  47. 'Menu:Problem:Overview' => 'Обзор',
  48. 'Menu:Problem:Overview+' => 'Обзор',
  49. 'Menu:NewProblem' => 'Новая проблема',
  50. 'Menu:NewProblem+' => 'Новая проблема',
  51. 'Menu:SearchProblems' => 'Поиск проблем',
  52. 'Menu:SearchProblems+' => 'Поиск проблем',
  53. 'Menu:Problem:Shortcuts' => 'Ярлыки',
  54. 'Menu:Problem:MyProblems' => 'Мои проблемы',
  55. 'Menu:Problem:MyProblems+' => 'Мои проблемы',
  56. 'Menu:Problem:OpenProblems' => 'Все открытые проблемы',
  57. 'Menu:Problem:OpenProblems+' => 'Все открытые проблемы',
  58. 'UI-ProblemManagementOverview-ProblemByService' => 'Проблемы по сервису',
  59. 'UI-ProblemManagementOverview-ProblemByService+' => 'Проблемы по сервису',
  60. 'UI-ProblemManagementOverview-ProblemByPriority' => 'Проблемы по приоритету',
  61. 'UI-ProblemManagementOverview-ProblemByPriority+' => 'Проблемы по приоритету',
  62. 'UI-ProblemManagementOverview-ProblemUnassigned' => 'Неназначенные проблемы',
  63. 'UI-ProblemManagementOverview-ProblemUnassigned+' => 'Неназначенные проблемы',
  64. 'UI:ProblemMgmtMenuOverview:Title' => 'Панель управление проблемами',
  65. 'UI:ProblemMgmtMenuOverview:Title+' => 'Панель управление проблемами',
  66. ));
  67. //
  68. // Class: Problem
  69. //
  70. Dict::Add('RU RU', 'Russian', 'Русский', array(
  71. 'Class:Problem' => 'Проблема',
  72. 'Class:Problem+' => '',
  73. 'Class:Problem/Attribute:status' => 'Статус',
  74. 'Class:Problem/Attribute:status+' => '',
  75. 'Class:Problem/Attribute:status/Value:new' => 'Новая',
  76. 'Class:Problem/Attribute:status/Value:new+' => '',
  77. 'Class:Problem/Attribute:status/Value:assigned' => 'Подписана',
  78. 'Class:Problem/Attribute:status/Value:assigned+' => '',
  79. 'Class:Problem/Attribute:status/Value:resolved' => 'Решена',
  80. 'Class:Problem/Attribute:status/Value:resolved+' => '',
  81. 'Class:Problem/Attribute:status/Value:closed' => 'Закрыта',
  82. 'Class:Problem/Attribute:status/Value:closed+' => '',
  83. 'Class:Problem/Attribute:org_id' => 'Клиент',
  84. 'Class:Problem/Attribute:org_id+' => '',
  85. 'Class:Problem/Attribute:org_name' => 'Название',
  86. 'Class:Problem/Attribute:org_name+' => 'Общее название',
  87. 'Class:Problem/Attribute:service_id' => 'Услуга',
  88. 'Class:Problem/Attribute:service_id+' => '',
  89. 'Class:Problem/Attribute:service_name' => 'Название',
  90. 'Class:Problem/Attribute:service_name+' => '',
  91. 'Class:Problem/Attribute:servicesubcategory_id' => 'Категория услуги',
  92. 'Class:Problem/Attribute:servicesubcategory_id+' => '',
  93. 'Class:Problem/Attribute:servicesubcategory_name' => 'Название',
  94. 'Class:Problem/Attribute:servicesubcategory_name+' => '',
  95. 'Class:Problem/Attribute:product' => 'Продукт',
  96. 'Class:Problem/Attribute:product+' => '',
  97. 'Class:Problem/Attribute:impact' => 'Воздействие',
  98. 'Class:Problem/Attribute:impact+' => '',
  99. 'Class:Problem/Attribute:impact/Value:1' => 'Лицо',
  100. 'Class:Problem/Attribute:impact/Value:1+' => '',
  101. 'Class:Problem/Attribute:impact/Value:2' => 'Сервис',
  102. 'Class:Problem/Attribute:impact/Value:2+' => '',
  103. 'Class:Problem/Attribute:impact/Value:3' => 'Департамент',
  104. 'Class:Problem/Attribute:impact/Value:3+' => '',
  105. 'Class:Problem/Attribute:urgency' => 'Срочность',
  106. 'Class:Problem/Attribute:urgency+' => '',
  107. 'Class:Problem/Attribute:urgency/Value:1' => 'Низкая',
  108. 'Class:Problem/Attribute:urgency/Value:1+' => 'Низкая',
  109. 'Class:Problem/Attribute:urgency/Value:2' => 'Средняя',
  110. 'Class:Problem/Attribute:urgency/Value:2+' => 'Средняя',
  111. 'Class:Problem/Attribute:urgency/Value:3' => 'Высокая',
  112. 'Class:Problem/Attribute:urgency/Value:3+' => 'Высокая',
  113. 'Class:Problem/Attribute:priority' => 'Приоритет',
  114. 'Class:Problem/Attribute:priority+' => '',
  115. 'Class:Problem/Attribute:priority/Value:1' => 'Низкий',
  116. 'Class:Problem/Attribute:priority/Value:1+' => '',
  117. 'Class:Problem/Attribute:priority/Value:2' => 'Средний',
  118. 'Class:Problem/Attribute:priority/Value:2+' => '',
  119. 'Class:Problem/Attribute:priority/Value:3' => 'Высокий',
  120. 'Class:Problem/Attribute:priority/Value:3+' => '',
  121. 'Class:Problem/Attribute:workgroup_id' => 'Рабочая группа',
  122. 'Class:Problem/Attribute:workgroup_id+' => '',
  123. 'Class:Problem/Attribute:workgroup_name' => 'Название',
  124. 'Class:Problem/Attribute:workgroup_name+' => '',
  125. 'Class:Problem/Attribute:agent_id' => 'Агент',
  126. 'Class:Problem/Attribute:agent_id+' => '',
  127. 'Class:Problem/Attribute:agent_name' => 'Имя агента',
  128. 'Class:Problem/Attribute:agent_name+' => '',
  129. 'Class:Problem/Attribute:agent_email' => 'e-mail агента',
  130. 'Class:Problem/Attribute:agent_email+' => '',
  131. 'Class:Problem/Attribute:related_change_id' => 'Связанные изменения',
  132. 'Class:Problem/Attribute:related_change_id+' => '',
  133. 'Class:Problem/Attribute:related_change_ref' => 'Ссылка',
  134. 'Class:Problem/Attribute:related_change_ref+' => '',
  135. 'Class:Problem/Attribute:close_date' => 'Дата закрытия',
  136. 'Class:Problem/Attribute:close_date+' => '',
  137. 'Class:Problem/Attribute:last_update' => 'Последнее обновление',
  138. 'Class:Problem/Attribute:last_update+' => '',
  139. 'Class:Problem/Attribute:assignment_date' => 'Дата назначения',
  140. 'Class:Problem/Attribute:assignment_date+' => '',
  141. 'Class:Problem/Attribute:resolution_date' => 'Дата решения',
  142. 'Class:Problem/Attribute:resolution_date+' => '',
  143. 'Class:Problem/Attribute:knownerrors_list' => 'Известные ошибки',
  144. 'Class:Problem/Attribute:knownerrors_list+' => '',
  145. 'Class:Problem/Stimulus:ev_assign' => 'Назначить',
  146. 'Class:Problem/Stimulus:ev_assign+' => '',
  147. 'Class:Problem/Stimulus:ev_reassign' => 'Переназначить',
  148. 'Class:Problem/Stimulus:ev_reassign+' => '',
  149. 'Class:Problem/Stimulus:ev_resolve' => 'Решение',
  150. 'Class:Problem/Stimulus:ev_resolve+' => '',
  151. 'Class:Problem/Stimulus:ev_close' => 'Закрыть',
  152. 'Class:Problem/Stimulus:ev_close+' => '',
  153. ));
  154. ?>