de.dict.itop-problem-mgmt.php 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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 Erwan Taloc <erwan.taloc@combodo.com>
  20. * @author Romain Quetiez <romain.quetiez@combodo.com>
  21. * @author Denis Flaven <denis.flaven@combodo.com>
  22. * @author Stephan Rosenke <stephan.rosenke@itomig.de>
  23. * @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
  24. */
  25. // Dictionnay conventions
  26. // Class:<class_name>
  27. // Class:<class_name>+
  28. // Class:<class_name>/Attribute:<attribute_code>
  29. // Class:<class_name>/Attribute:<attribute_code>+
  30. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>
  31. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
  32. // Class:<class_name>/Stimulus:<stimulus_code>
  33. // Class:<class_name>/Stimulus:<stimulus_code>+
  34. //////////////////////////////////////////////////////////////////////
  35. // Classes in 'bizmodel'
  36. //////////////////////////////////////////////////////////////////////
  37. //
  38. // Dictionnay conventions
  39. // Class:<class_name>
  40. // Class:<class_name>+
  41. // Class:<class_name>/Attribute:<attribute_code>
  42. // Class:<class_name>/Attribute:<attribute_code>+
  43. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>
  44. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
  45. // Class:<class_name>/Stimulus:<stimulus_code>
  46. // Class:<class_name>/Stimulus:<stimulus_code>+
  47. Dict::Add('DE DE', 'German', 'Deutsch', array(
  48. 'Menu:ProblemManagement' => 'Problem Management',
  49. 'Menu:ProblemManagement+' => 'Problem Management',
  50. 'Menu:Problem:Overview' => 'Übersicht',
  51. 'Menu:Problem:Overview+' => 'Übersicht',
  52. 'Menu:NewProblem' => 'Neues Problem',
  53. 'Menu:NewProblem+' => 'Neues Problem',
  54. 'Menu:SearchProblems' => 'Nach Problemen suchen',
  55. 'Menu:SearchProblems+' => 'Nach Problemen suchen',
  56. 'Menu:Problem:Shortcuts' => 'Shortcuts',
  57. 'Menu:Problem:MyProblems' => 'Meine Probleme',
  58. 'Menu:Problem:MyProblems+' => 'Meine Probleme',
  59. 'Menu:Problem:OpenProblems' => 'Alle ungelösten Probleme',
  60. 'Menu:Problem:OpenProblems+' => 'Alle ungelösten Probleme',
  61. 'UI-ProblemManagementOverview-ProblemByService' => 'Probleme nach Service',
  62. 'UI-ProblemManagementOverview-ProblemByService+' => 'Probleme nach Service',
  63. 'UI-ProblemManagementOverview-ProblemByPriority' => 'Probleme nach Priorität',
  64. 'UI-ProblemManagementOverview-ProblemByPriority+' => 'Probleme nach Priorität',
  65. 'UI-ProblemManagementOverview-ProblemUnassigned' => 'Nicht zugewiesene Probleme',
  66. 'UI-ProblemManagementOverview-ProblemUnassigned+' => 'Nicht zugewiesene Probleme',
  67. 'UI:ProblemMgmtMenuOverview:Title' => 'Dashboard für das Problem Management',
  68. 'UI:ProblemMgmtMenuOverview:Title+' => 'Dashboard für das Problem Management',
  69. ));
  70. //
  71. // Class: Problem
  72. //
  73. Dict::Add('DE DE', 'German', 'Deutsch', array(
  74. 'Class:Problem' => 'Problem',
  75. 'Class:Problem+' => '',
  76. 'Class:Problem/Attribute:status' => 'Status',
  77. 'Class:Problem/Attribute:status+' => '',
  78. 'Class:Problem/Attribute:status/Value:new' => 'Neu',
  79. 'Class:Problem/Attribute:status/Value:new+' => '',
  80. 'Class:Problem/Attribute:status/Value:assigned' => 'Zugewiesen',
  81. 'Class:Problem/Attribute:status/Value:assigned+' => '',
  82. 'Class:Problem/Attribute:status/Value:resolved' => 'Gelöst',
  83. 'Class:Problem/Attribute:status/Value:resolved+' => '',
  84. 'Class:Problem/Attribute:status/Value:closed' => 'Geschlossen',
  85. 'Class:Problem/Attribute:status/Value:closed+' => '',
  86. 'Class:Problem/Attribute:org_id' => 'Kunde',
  87. 'Class:Problem/Attribute:org_id+' => '',
  88. 'Class:Problem/Attribute:org_name' => 'Name',
  89. 'Class:Problem/Attribute:org_name+' => 'Gemeinsamer Name',
  90. 'Class:Problem/Attribute:service_id' => 'Service',
  91. 'Class:Problem/Attribute:service_id+' => '',
  92. 'Class:Problem/Attribute:service_name' => 'Name',
  93. 'Class:Problem/Attribute:service_name+' => '',
  94. 'Class:Problem/Attribute:servicesubcategory_id' => 'Service-Kategorie',
  95. 'Class:Problem/Attribute:servicesubcategory_id+' => '',
  96. 'Class:Problem/Attribute:servicesubcategory_name' => 'Name',
  97. 'Class:Problem/Attribute:servicesubcategory_name+' => '',
  98. 'Class:Problem/Attribute:product' => 'Produkt',
  99. 'Class:Problem/Attribute:product+' => '',
  100. 'Class:Problem/Attribute:impact' => 'Auswirkung',
  101. 'Class:Problem/Attribute:impact+' => '',
  102. 'Class:Problem/Attribute:impact/Value:1' => 'Eine Person',
  103. 'Class:Problem/Attribute:impact/Value:1+' => '',
  104. 'Class:Problem/Attribute:impact/Value:2' => 'Einen Service',
  105. 'Class:Problem/Attribute:impact/Value:2+' => '',
  106. 'Class:Problem/Attribute:impact/Value:3' => 'Eine Abteilung',
  107. 'Class:Problem/Attribute:impact/Value:3+' => '',
  108. 'Class:Problem/Attribute:urgency' => 'Dringlichkeit',
  109. 'Class:Problem/Attribute:urgency+' => '',
  110. 'Class:Problem/Attribute:urgency/Value:1' => 'Niedrig',
  111. 'Class:Problem/Attribute:urgency/Value:1+' => 'Niedrig',
  112. 'Class:Problem/Attribute:urgency/Value:2' => 'Medium',
  113. 'Class:Problem/Attribute:urgency/Value:2+' => 'Medium',
  114. 'Class:Problem/Attribute:urgency/Value:3' => 'High',
  115. 'Class:Problem/Attribute:urgency/Value:3+' => 'High',
  116. 'Class:Problem/Attribute:priority' => 'Priorität',
  117. 'Class:Problem/Attribute:priority+' => '',
  118. 'Class:Problem/Attribute:priority/Value:1' => 'Niedrig',
  119. 'Class:Problem/Attribute:priority/Value:1+' => '',
  120. 'Class:Problem/Attribute:priority/Value:2' => 'Medium',
  121. 'Class:Problem/Attribute:priority/Value:2+' => '',
  122. 'Class:Problem/Attribute:priority/Value:3' => 'Hoch',
  123. 'Class:Problem/Attribute:priority/Value:3+' => '',
  124. 'Class:Problem/Attribute:workgroup_id' => 'Arbeitsgruppe',
  125. 'Class:Problem/Attribute:workgroup_id+' => '',
  126. 'Class:Problem/Attribute:workgroup_name' => 'Name',
  127. 'Class:Problem/Attribute:workgroup_name+' => '',
  128. 'Class:Problem/Attribute:agent_id' => 'Bearbeiter',
  129. 'Class:Problem/Attribute:agent_id+' => '',
  130. 'Class:Problem/Attribute:agent_name' => 'Name des Bearbeiter',
  131. 'Class:Problem/Attribute:agent_name+' => '',
  132. 'Class:Problem/Attribute:agent_email' => 'Email-Adresse des Bearbeiter',
  133. 'Class:Problem/Attribute:agent_email+' => '',
  134. 'Class:Problem/Attribute:related_change_id' => 'Zusammenhängender Change',
  135. 'Class:Problem/Attribute:related_change_id+' => '',
  136. 'Class:Problem/Attribute:related_change_ref' => 'Ref',
  137. 'Class:Problem/Attribute:related_change_ref+' => '',
  138. 'Class:Problem/Attribute:close_date' => 'Datum des Schließens',
  139. 'Class:Problem/Attribute:close_date+' => '',
  140. 'Class:Problem/Attribute:last_update' => 'Letzte Aktualisierung',
  141. 'Class:Problem/Attribute:last_update+' => '',
  142. 'Class:Problem/Attribute:assignment_date' => 'Datum der Zuordnung',
  143. 'Class:Problem/Attribute:assignment_date+' => '',
  144. 'Class:Problem/Attribute:resolution_date' => 'Datum der Lösung',
  145. 'Class:Problem/Attribute:resolution_date+' => '',
  146. 'Class:Problem/Attribute:knownerrors_list' => 'Bekannte Fehler',
  147. 'Class:Problem/Attribute:knownerrors_list+' => '',
  148. 'Class:Problem/Stimulus:ev_assign' => 'Zuweisen',
  149. 'Class:Problem/Stimulus:ev_assign+' => '',
  150. 'Class:Problem/Stimulus:ev_reassign' => 'Neu zuweisen',
  151. 'Class:Problem/Stimulus:ev_reassign+' => '',
  152. 'Class:Problem/Stimulus:ev_resolve' => 'Lösen',
  153. 'Class:Problem/Stimulus:ev_resolve+' => '',
  154. 'Class:Problem/Stimulus:ev_close' => 'Schließen',
  155. 'Class:Problem/Stimulus:ev_close+' => '',
  156. ));
  157. ?>