fr.dict.itop-problem-mgmt.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. * @copyright Copyright (C) 2010-2012 Combodo SARL
  20. * @license http://opensource.org/licenses/AGPL-3.0
  21. */
  22. //
  23. // Class: Problem
  24. //
  25. Dict::Add('FR FR', 'French', 'Français', array(
  26. 'Class:Problem' => 'Problème',
  27. 'Class:Problem+' => '',
  28. 'Class:Problem/Attribute:status' => 'Etat',
  29. 'Class:Problem/Attribute:status+' => '',
  30. 'Class:Problem/Attribute:status/Value:new' => 'Nouveau',
  31. 'Class:Problem/Attribute:status/Value:new+' => '',
  32. 'Class:Problem/Attribute:status/Value:assigned' => 'Assigné',
  33. 'Class:Problem/Attribute:status/Value:assigned+' => '',
  34. 'Class:Problem/Attribute:status/Value:resolved' => 'Résolu',
  35. 'Class:Problem/Attribute:status/Value:resolved+' => '',
  36. 'Class:Problem/Attribute:status/Value:closed' => 'Fermé',
  37. 'Class:Problem/Attribute:status/Value:closed+' => '',
  38. 'Class:Problem/Attribute:service_id' => 'Service',
  39. 'Class:Problem/Attribute:service_id+' => '',
  40. 'Class:Problem/Attribute:service_name' => 'Nom du service',
  41. 'Class:Problem/Attribute:service_name+' => '',
  42. 'Class:Problem/Attribute:servicesubcategory_id' => 'Sous catégorie de service',
  43. 'Class:Problem/Attribute:servicesubcategory_id+' => '',
  44. 'Class:Problem/Attribute:servicesubcategory_name' => 'Nom sous catégorie de service',
  45. 'Class:Problem/Attribute:servicesubcategory_name+' => '',
  46. 'Class:Problem/Attribute:product' => 'Produit',
  47. 'Class:Problem/Attribute:product+' => '',
  48. 'Class:Problem/Attribute:impact' => 'Impacte',
  49. 'Class:Problem/Attribute:impact+' => '',
  50. 'Class:Problem/Attribute:impact/Value:1' => 'Un département',
  51. 'Class:Problem/Attribute:impact/Value:1+' => '',
  52. 'Class:Problem/Attribute:impact/Value:2' => 'Un service',
  53. 'Class:Problem/Attribute:impact/Value:2+' => '',
  54. 'Class:Problem/Attribute:impact/Value:3' => 'Une personne',
  55. 'Class:Problem/Attribute:impact/Value:3+' => '',
  56. 'Class:Problem/Attribute:urgency' => 'Urgence',
  57. 'Class:Problem/Attribute:urgency+' => '',
  58. 'Class:Problem/Attribute:urgency/Value:1' => 'critique',
  59. 'Class:Problem/Attribute:urgency/Value:1+' => 'critique',
  60. 'Class:Problem/Attribute:urgency/Value:2' => 'haute',
  61. 'Class:Problem/Attribute:urgency/Value:2+' => 'haute',
  62. 'Class:Problem/Attribute:urgency/Value:3' => 'moyenne',
  63. 'Class:Problem/Attribute:urgency/Value:3+' => 'moyenne',
  64. 'Class:Problem/Attribute:urgency/Value:4' => 'basse',
  65. 'Class:Problem/Attribute:urgency/Value:4+' => 'basse',
  66. 'Class:Problem/Attribute:priority' => 'Priorité',
  67. 'Class:Problem/Attribute:priority+' => '',
  68. 'Class:Problem/Attribute:priority/Value:1' => 'critique',
  69. 'Class:Problem/Attribute:priority/Value:1+' => '',
  70. 'Class:Problem/Attribute:priority/Value:2' => 'haute',
  71. 'Class:Problem/Attribute:priority/Value:2+' => '',
  72. 'Class:Problem/Attribute:priority/Value:3' => 'moyenne',
  73. 'Class:Problem/Attribute:priority/Value:3+' => '',
  74. 'Class:Problem/Attribute:priority/Value:4' => 'basse',
  75. 'Class:Problem/Attribute:priority/Value:4+' => 'Low',
  76. 'Class:Problem/Attribute:related_change_id' => 'Changement relatif',
  77. 'Class:Problem/Attribute:related_change_id+' => '',
  78. 'Class:Problem/Attribute:related_change_ref' => 'Ref Changement relatif',
  79. 'Class:Problem/Attribute:related_change_ref+' => '',
  80. 'Class:Problem/Attribute:assignment_date' => 'Date d\'assignation',
  81. 'Class:Problem/Attribute:assignment_date+' => '',
  82. 'Class:Problem/Attribute:resolution_date' => 'Date de résolution',
  83. 'Class:Problem/Attribute:resolution_date+' => '',
  84. 'Class:Problem/Attribute:knownerrors_list' => 'Erreurs connues',
  85. 'Class:Problem/Attribute:knownerrors_list+' => '',
  86. 'Class:Problem/Attribute:related_request_list' => 'Requêtes liées',
  87. 'Class:Problem/Attribute:related_request_list+' => '',
  88. 'Class:Problem/Attribute:related_incident_list' => 'Incidents liés',
  89. 'Class:Problem/Attribute:related_incident_list+' => '',
  90. 'Class:Problem/Stimulus:ev_assign' => 'Assigner',
  91. 'Class:Problem/Stimulus:ev_assign+' => '',
  92. 'Class:Problem/Stimulus:ev_reassign' => 'Réaassigner',
  93. 'Class:Problem/Stimulus:ev_reassign+' => '',
  94. 'Class:Problem/Stimulus:ev_resolve' => 'Résoudre',
  95. 'Class:Problem/Stimulus:ev_resolve+' => '',
  96. 'Class:Problem/Stimulus:ev_close' => 'Fermer',
  97. 'Class:Problem/Stimulus:ev_close+' => '',
  98. ));
  99. Dict::Add('FR FR', 'French', 'Français', array(
  100. 'Menu:Problem:KnownErrors' => 'Erreurs connues',
  101. 'Menu:Problem:KnownErrors+' => 'Erreurs connues',
  102. 'Menu:ProblemManagement' => 'Gestion des problèmes',
  103. 'Menu:ProblemManagement+' => 'Gestion des problèmes',
  104. 'Menu:Problem:Overview' => 'Vue d\'ensemble',
  105. 'Menu:Problem:Overview+' => 'Vue d\'ensemble',
  106. 'Menu:NewProblem' => 'Nouveau problème',
  107. 'Menu:NewProblem+' => 'Nouveau problème',
  108. 'Menu:SearchProblems' => 'Rechercher des problèmes',
  109. 'Menu:SearchProblems+' => 'Rechercher des problèmes',
  110. 'Menu:Problem:Shortcuts' => 'Raccourcis',
  111. 'Menu:Problem:MyProblems' => 'Mes problèmes',
  112. 'Menu:Problem:MyProblems+' => 'Mes problèmes',
  113. 'Menu:Problem:OpenProblems' => 'Problèmes ouverts',
  114. 'Menu:Problem:OpenProblems+' => 'Problèmes ouverts',
  115. 'UI-ProblemManagementOverview-ProblemByService' => 'Problèmes par service',
  116. 'UI-ProblemManagementOverview-ProblemByService+' => 'Problèmes par service',
  117. 'UI-ProblemManagementOverview-ProblemByPriority' => 'Problèmes par priorité',
  118. 'UI-ProblemManagementOverview-ProblemByPriority+' => 'Problèmes par priorité',
  119. 'UI-ProblemManagementOverview-ProblemUnassigned' => 'Problèmes non affectés à un agent',
  120. 'UI-ProblemManagementOverview-ProblemUnassigned+' => 'Problèmes non affectés à un agent',
  121. 'UI:ProblemMgmtMenuOverview:Title' => 'Tableau de bord de la Gestion des Problèmes',
  122. 'UI:ProblemMgmtMenuOverview:Title+' => 'Tableau de bord de la Gestion des Problèmes',
  123. ));
  124. ?>