dictionary.itop.model.php 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380
  1. <?php
  2. // Dictionnay conventions
  3. // Class:<class_name>
  4. // Class:<class_name>+
  5. // Class:<class_name>/Attribute:<attribute_code>
  6. // Class:<class_name>/Attribute:<attribute_code>+
  7. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>
  8. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
  9. // Class:<class_name>/Stimulus:<stimulus_code>
  10. // Class:<class_name>/Stimulus:<stimulus_code>+
  11. //////////////////////////////////////////////////////////////////////
  12. // Classes in 'bizmodel'
  13. //////////////////////////////////////////////////////////////////////
  14. //
  15. //
  16. // Class: bizOrganization
  17. //
  18. Dict::Add('EN US', 'English', 'English', array(
  19. 'Class:bizOrganization' => 'Organization',
  20. 'Class:bizOrganization+' => 'Organizational structure: can be Company and/or Department',
  21. 'Class:bizOrganization/Attribute:name' => 'Name',
  22. 'Class:bizOrganization/Attribute:name+' => 'Common name',
  23. 'Class:bizOrganization/Attribute:code' => 'Code',
  24. 'Class:bizOrganization/Attribute:code+' => 'Organization code (Siret, DUNS,...)',
  25. 'Class:bizOrganization/Attribute:status' => 'Status',
  26. 'Class:bizOrganization/Attribute:status+' => 'Lifecycle status',
  27. 'Class:bizOrganization/Attribute:status/Value:production' => 'production',
  28. 'Class:bizOrganization/Attribute:status/Value:production+' => 'production',
  29. 'Class:bizOrganization/Attribute:status/Value:implementation' => 'implementation',
  30. 'Class:bizOrganization/Attribute:status/Value:implementation+' => 'implementation',
  31. 'Class:bizOrganization/Attribute:status/Value:obsolete' => 'obsolete',
  32. 'Class:bizOrganization/Attribute:status/Value:obsolete+' => 'obsolete',
  33. 'Class:bizOrganization/Attribute:parent_id' => 'Parent',
  34. 'Class:bizOrganization/Attribute:parent_id+' => 'Parent organization',
  35. 'Class:bizOrganization/Attribute:parent_name' => 'Parent Name',
  36. 'Class:bizOrganization/Attribute:parent_name+' => 'Name of the parent organization',
  37. ));
  38. //
  39. // Class: logRealObject
  40. //
  41. Dict::Add('EN US', 'English', 'English', array(
  42. 'Class:logRealObject' => 'Object',
  43. 'Class:logRealObject+' => 'Any CMDB object',
  44. 'Class:logRealObject/Attribute:name' => 'Name',
  45. 'Class:logRealObject/Attribute:name+' => 'Common name',
  46. 'Class:logRealObject/Attribute:status' => 'Status',
  47. 'Class:logRealObject/Attribute:status+' => 'Lifecycle status',
  48. 'Class:logRealObject/Attribute:status/Value:production' => 'production',
  49. 'Class:logRealObject/Attribute:status/Value:production+' => 'production',
  50. 'Class:logRealObject/Attribute:status/Value:implementation' => 'implementation',
  51. 'Class:logRealObject/Attribute:status/Value:implementation+' => 'implementation',
  52. 'Class:logRealObject/Attribute:status/Value:obsolete' => 'obsolete',
  53. 'Class:logRealObject/Attribute:status/Value:obsolete+' => 'obsolete',
  54. 'Class:logRealObject/Attribute:status/Value:off' => 'off',
  55. 'Class:logRealObject/Attribute:status/Value:off+' => 'off',
  56. 'Class:logRealObject/Attribute:status/Value:left company' => 'left company',
  57. 'Class:logRealObject/Attribute:status/Value:left company+' => 'left company',
  58. 'Class:logRealObject/Attribute:status/Value:available' => 'available',
  59. 'Class:logRealObject/Attribute:status/Value:available+' => 'available',
  60. 'Class:logRealObject/Attribute:org_id' => 'Organization',
  61. 'Class:logRealObject/Attribute:org_id+' => 'ID of the object owner organization',
  62. 'Class:logRealObject/Attribute:org_name' => 'Organization',
  63. 'Class:logRealObject/Attribute:org_name+' => 'Company / Department owning this object',
  64. 'Class:logRealObject/Attribute:finalclass' => 'finalclass',
  65. 'Class:logRealObject/Attribute:finalclass+' => '',
  66. ));
  67. //
  68. // Class: bizContact
  69. //
  70. Dict::Add('EN US', 'English', 'English', array(
  71. 'Class:bizContact' => 'Contact',
  72. 'Class:bizContact+' => 'Contact',
  73. 'Class:bizContact/Attribute:status' => 'Status',
  74. 'Class:bizContact/Attribute:status+' => 'Lifecycle status',
  75. 'Class:bizContact/Attribute:status/Value:off' => 'off',
  76. 'Class:bizContact/Attribute:status/Value:off+' => 'off',
  77. 'Class:bizContact/Attribute:status/Value:left company' => 'left company',
  78. 'Class:bizContact/Attribute:status/Value:left company+' => 'left company',
  79. 'Class:bizContact/Attribute:status/Value:available' => 'available',
  80. 'Class:bizContact/Attribute:status/Value:available+' => 'available',
  81. 'Class:bizContact/Attribute:org_name' => 'Organization',
  82. 'Class:bizContact/Attribute:org_name+' => 'Company / Department of the contact',
  83. 'Class:bizContact/Attribute:email' => 'eMail',
  84. 'Class:bizContact/Attribute:email+' => 'Email address',
  85. 'Class:bizContact/Attribute:phone' => 'Phone',
  86. 'Class:bizContact/Attribute:phone+' => 'Telephone',
  87. 'Class:bizContact/Attribute:location_id' => 'Location',
  88. 'Class:bizContact/Attribute:location_id+' => 'Id of the location where the contact is located',
  89. 'Class:bizContact/Attribute:location_name' => 'Location Name',
  90. 'Class:bizContact/Attribute:location_name+' => 'Name of the location where the contact is located',
  91. ));
  92. //
  93. // Class: bizPerson
  94. //
  95. Dict::Add('EN US', 'English', 'English', array(
  96. 'Class:bizPerson' => 'Person',
  97. 'Class:bizPerson+' => 'Person',
  98. 'Class:bizPerson/Attribute:first_name' => 'First Name',
  99. 'Class:bizPerson/Attribute:first_name+' => 'First name',
  100. 'Class:bizPerson/Attribute:employee_number' => 'Employee Number',
  101. 'Class:bizPerson/Attribute:employee_number+' => 'employee number',
  102. ));
  103. //
  104. // Class: bizTeam
  105. //
  106. Dict::Add('EN US', 'English', 'English', array(
  107. 'Class:bizTeam' => 'Team',
  108. 'Class:bizTeam+' => 'A group of contacts',
  109. ));
  110. //
  111. // Class: lnkContactTeam
  112. //
  113. Dict::Add('EN US', 'English', 'English', array(
  114. 'Class:lnkContactTeam' => 'TeamsLinks',
  115. 'Class:lnkContactTeam+' => 'A link between a contact and a Team',
  116. 'Class:lnkContactTeam/Attribute:contact_id' => 'Contact',
  117. 'Class:lnkContactTeam/Attribute:contact_id+' => 'The contact',
  118. 'Class:lnkContactTeam/Attribute:contact_name' => 'Contact Name',
  119. 'Class:lnkContactTeam/Attribute:contact_name+' => 'name of the contact',
  120. 'Class:lnkContactTeam/Attribute:contact_phone' => 'Phone',
  121. 'Class:lnkContactTeam/Attribute:contact_phone+' => 'Phone number of the contact',
  122. 'Class:lnkContactTeam/Attribute:contact_email' => 'eMail',
  123. 'Class:lnkContactTeam/Attribute:contact_email+' => 'eMail address of the contact',
  124. 'Class:lnkContactTeam/Attribute:team_id' => 'Team',
  125. 'Class:lnkContactTeam/Attribute:team_id+' => 'Team linked',
  126. 'Class:lnkContactTeam/Attribute:team_name' => 'Team',
  127. 'Class:lnkContactTeam/Attribute:team_name+' => 'name of the Team',
  128. 'Class:lnkContactTeam/Attribute:role' => 'Role',
  129. 'Class:lnkContactTeam/Attribute:role+' => 'Role of the contact',
  130. ));
  131. //
  132. // Class: bizDocument
  133. //
  134. Dict::Add('EN US', 'English', 'English', array(
  135. 'Class:bizDocument' => 'Document',
  136. 'Class:bizDocument+' => 'Document',
  137. 'Class:bizDocument/Attribute:status' => 'Status',
  138. 'Class:bizDocument/Attribute:status+' => 'Lifecycle status',
  139. 'Class:bizDocument/Attribute:status/Value:production' => 'production',
  140. 'Class:bizDocument/Attribute:status/Value:production+' => 'production',
  141. 'Class:bizDocument/Attribute:status/Value:implementation' => 'implementation',
  142. 'Class:bizDocument/Attribute:status/Value:implementation+' => 'implementation',
  143. 'Class:bizDocument/Attribute:status/Value:obsolete' => 'obsolete',
  144. 'Class:bizDocument/Attribute:status/Value:obsolete+' => 'obsolete',
  145. 'Class:bizDocument/Attribute:org_name' => 'Organization',
  146. 'Class:bizDocument/Attribute:org_name+' => 'Company / Department owning the document',
  147. 'Class:bizDocument/Attribute:type' => 'type',
  148. 'Class:bizDocument/Attribute:type+' => 'usage of the document',
  149. 'Class:bizDocument/Attribute:type/Value:documentation' => 'documentation',
  150. 'Class:bizDocument/Attribute:type/Value:documentation+' => 'documentation',
  151. 'Class:bizDocument/Attribute:type/Value:contract' => 'contract',
  152. 'Class:bizDocument/Attribute:type/Value:contract+' => 'contract',
  153. 'Class:bizDocument/Attribute:type/Value:working instructions' => 'working instructions',
  154. 'Class:bizDocument/Attribute:type/Value:working instructions+' => 'working instructions',
  155. 'Class:bizDocument/Attribute:type/Value:network map' => 'network map',
  156. 'Class:bizDocument/Attribute:type/Value:network map+' => 'network map',
  157. 'Class:bizDocument/Attribute:type/Value:white paper' => 'white paper',
  158. 'Class:bizDocument/Attribute:type/Value:white paper+' => 'white paper',
  159. 'Class:bizDocument/Attribute:type/Value:presentation' => 'presentation',
  160. 'Class:bizDocument/Attribute:type/Value:presentation+' => 'presentation',
  161. 'Class:bizDocument/Attribute:type/Value:training' => 'training',
  162. 'Class:bizDocument/Attribute:type/Value:training+' => 'training',
  163. 'Class:bizDocument/Attribute:description' => 'Description',
  164. 'Class:bizDocument/Attribute:description+' => 'Service Description',
  165. 'Class:bizDocument/Attribute:contents' => 'Contents',
  166. 'Class:bizDocument/Attribute:contents+' => 'File content',
  167. ));
  168. //
  169. // Class: lnkDocumentRealObject
  170. //
  171. Dict::Add('EN US', 'English', 'English', array(
  172. 'Class:lnkDocumentRealObject' => 'DocumentsLinks',
  173. 'Class:lnkDocumentRealObject+' => 'A link between a document and another object',
  174. 'Class:lnkDocumentRealObject/Attribute:doc_id' => 'Document',
  175. 'Class:lnkDocumentRealObject/Attribute:doc_id+' => 'id of the Document',
  176. 'Class:lnkDocumentRealObject/Attribute:doc_name' => 'Document Name',
  177. 'Class:lnkDocumentRealObject/Attribute:doc_name+' => 'name of the document',
  178. 'Class:lnkDocumentRealObject/Attribute:object_id' => 'Object',
  179. 'Class:lnkDocumentRealObject/Attribute:object_id+' => 'Object linked',
  180. 'Class:lnkDocumentRealObject/Attribute:object_name' => 'Object Name',
  181. 'Class:lnkDocumentRealObject/Attribute:object_name+' => 'name of the linked object',
  182. 'Class:lnkDocumentRealObject/Attribute:link_type' => 'Link Type',
  183. 'Class:lnkDocumentRealObject/Attribute:link_type+' => 'More information',
  184. ));
  185. //
  186. // Class: lnkContactRealObject
  187. //
  188. Dict::Add('EN US', 'English', 'English', array(
  189. 'Class:lnkContactRealObject' => 'ContactsLinks',
  190. 'Class:lnkContactRealObject+' => 'A link between a contact and another object',
  191. 'Class:lnkContactRealObject/Attribute:contact_id' => 'Contact',
  192. 'Class:lnkContactRealObject/Attribute:contact_id+' => 'The contact',
  193. 'Class:lnkContactRealObject/Attribute:contact_name' => 'Contact Name',
  194. 'Class:lnkContactRealObject/Attribute:contact_name+' => 'name of the contact',
  195. 'Class:lnkContactRealObject/Attribute:contact_phone' => 'Phone',
  196. 'Class:lnkContactRealObject/Attribute:contact_phone+' => 'Phone number of the contact',
  197. 'Class:lnkContactRealObject/Attribute:contact_email' => 'eMail',
  198. 'Class:lnkContactRealObject/Attribute:contact_email+' => 'eMail address of the contact',
  199. 'Class:lnkContactRealObject/Attribute:object_id' => 'Object',
  200. 'Class:lnkContactRealObject/Attribute:object_id+' => 'Object linked',
  201. 'Class:lnkContactRealObject/Attribute:object_name' => 'Object Name',
  202. 'Class:lnkContactRealObject/Attribute:object_name+' => 'name of the linked object',
  203. 'Class:lnkContactRealObject/Attribute:role' => 'Role',
  204. 'Class:lnkContactRealObject/Attribute:role+' => 'Role of the contact',
  205. ));
  206. //
  207. // Class: logInfra
  208. //
  209. Dict::Add('EN US', 'English', 'English', array(
  210. 'Class:logInfra' => 'Infra',
  211. 'Class:logInfra+' => 'Infrastructure real object',
  212. 'Class:logInfra/Attribute:status' => 'Status',
  213. 'Class:logInfra/Attribute:status+' => 'Lifecycle status',
  214. 'Class:logInfra/Attribute:status/Value:production' => 'production',
  215. 'Class:logInfra/Attribute:status/Value:production+' => 'production',
  216. 'Class:logInfra/Attribute:status/Value:implementation' => 'implementation',
  217. 'Class:logInfra/Attribute:status/Value:implementation+' => 'implementation',
  218. 'Class:logInfra/Attribute:status/Value:obsolete' => 'obsolete',
  219. 'Class:logInfra/Attribute:status/Value:obsolete+' => 'obsolete',
  220. 'Class:logInfra/Attribute:severity' => 'Business Criticity',
  221. 'Class:logInfra/Attribute:severity+' => 'Severity for this infrastructure',
  222. 'Class:logInfra/Attribute:severity/Value:high' => 'high',
  223. 'Class:logInfra/Attribute:severity/Value:high+' => 'high',
  224. 'Class:logInfra/Attribute:severity/Value:medium' => 'medium',
  225. 'Class:logInfra/Attribute:severity/Value:medium+' => 'medium',
  226. 'Class:logInfra/Attribute:severity/Value:low' => 'low',
  227. 'Class:logInfra/Attribute:severity/Value:low+' => 'low',
  228. ));
  229. //
  230. // Class: lnkContactInfra
  231. //
  232. Dict::Add('EN US', 'English', 'English', array(
  233. 'Class:lnkContactInfra' => 'ContactsInfraLinks',
  234. 'Class:lnkContactInfra+' => 'A link between a contact and an infrastructure',
  235. 'Class:lnkContactInfra/Attribute:contact_id' => 'Contact',
  236. 'Class:lnkContactInfra/Attribute:contact_id+' => 'The contact',
  237. 'Class:lnkContactInfra/Attribute:contact_name' => 'Contact Name',
  238. 'Class:lnkContactInfra/Attribute:contact_name+' => 'name of the contact',
  239. 'Class:lnkContactInfra/Attribute:contact_phone' => 'Phone',
  240. 'Class:lnkContactInfra/Attribute:contact_phone+' => 'Phone number of the contact',
  241. 'Class:lnkContactInfra/Attribute:contact_email' => 'eMail',
  242. 'Class:lnkContactInfra/Attribute:contact_email+' => 'eMail address of the contact',
  243. 'Class:lnkContactInfra/Attribute:infra_id' => 'Infrastructure',
  244. 'Class:lnkContactInfra/Attribute:infra_id+' => 'Infrastructure linked',
  245. 'Class:lnkContactInfra/Attribute:infra_name' => 'Infrastructure',
  246. 'Class:lnkContactInfra/Attribute:infra_name+' => 'name of the linked infrastructure',
  247. 'Class:lnkContactInfra/Attribute:role' => 'Role',
  248. 'Class:lnkContactInfra/Attribute:role+' => 'Role of the contact',
  249. ));
  250. //
  251. // Class: bizLocation
  252. //
  253. Dict::Add('EN US', 'English', 'English', array(
  254. 'Class:bizLocation' => 'Location',
  255. 'Class:bizLocation+' => 'Any type of location: Region, Country, City, Site, Building, Floor, Room, Rack,...',
  256. 'Class:bizLocation/Attribute:address' => 'Address',
  257. 'Class:bizLocation/Attribute:address+' => 'The postal address of the location',
  258. 'Class:bizLocation/Attribute:country' => 'Country',
  259. 'Class:bizLocation/Attribute:country+' => 'Country of the location',
  260. 'Class:bizLocation/Attribute:parent_location_id' => 'Parent Location',
  261. 'Class:bizLocation/Attribute:parent_location_id+' => 'where is the real object physically located',
  262. 'Class:bizLocation/Attribute:parent_location_name' => 'Parent location (Name)',
  263. 'Class:bizLocation/Attribute:parent_location_name+' => 'name of the parent location',
  264. ));
  265. //
  266. // Class: bizCircuit
  267. //
  268. Dict::Add('EN US', 'English', 'English', array(
  269. 'Class:bizCircuit' => 'Circuit',
  270. 'Class:bizCircuit+' => 'Any type of circuit',
  271. 'Class:bizCircuit/Attribute:speed' => 'speed',
  272. 'Class:bizCircuit/Attribute:speed+' => 'speed of the circuit',
  273. 'Class:bizCircuit/Attribute:location1_id' => 'Location 1',
  274. 'Class:bizCircuit/Attribute:location1_id+' => 'Id of the location 1',
  275. 'Class:bizCircuit/Attribute:location1_name' => 'Location 1',
  276. 'Class:bizCircuit/Attribute:location1_name+' => 'Name of the location',
  277. 'Class:bizCircuit/Attribute:location2_id' => 'Location 2',
  278. 'Class:bizCircuit/Attribute:location2_id+' => 'Id of the location 2',
  279. 'Class:bizCircuit/Attribute:location2_name' => 'Location 2',
  280. 'Class:bizCircuit/Attribute:location2_name+' => 'Name of the location',
  281. 'Class:bizCircuit/Attribute:interface1_id' => 'Interface 1',
  282. 'Class:bizCircuit/Attribute:interface1_id+' => 'id of the interface 1',
  283. 'Class:bizCircuit/Attribute:interface1_name' => 'Interface',
  284. 'Class:bizCircuit/Attribute:interface1_name+' => 'Name of the interface 1',
  285. 'Class:bizCircuit/Attribute:device1_name' => 'Device 1',
  286. 'Class:bizCircuit/Attribute:device1_name+' => 'Name of the device 1',
  287. 'Class:bizCircuit/Attribute:interface2_id' => 'Interface 2',
  288. 'Class:bizCircuit/Attribute:interface2_id+' => 'id of the interface 2',
  289. 'Class:bizCircuit/Attribute:interface2_name' => 'Interface',
  290. 'Class:bizCircuit/Attribute:interface2_name+' => 'Name of the interface 2',
  291. 'Class:bizCircuit/Attribute:device2_name' => 'Interface',
  292. 'Class:bizCircuit/Attribute:device2_name+' => 'Name of the device 2',
  293. 'Class:bizCircuit/Attribute:provider_id' => 'Carrier ID',
  294. 'Class:bizCircuit/Attribute:provider_id+' => 'Organization ID of the provider of the Circuit',
  295. 'Class:bizCircuit/Attribute:carrier_name' => 'Carrier',
  296. 'Class:bizCircuit/Attribute:carrier_name+' => 'Name of the carrier',
  297. 'Class:bizCircuit/Attribute:carrier_ref' => 'Carrier reference',
  298. 'Class:bizCircuit/Attribute:carrier_ref+' => 'reference of the circuit used by the carrier',
  299. ));
  300. //
  301. // Class: bizInterface
  302. //
  303. Dict::Add('EN US', 'English', 'English', array(
  304. 'Class:bizInterface' => 'Interface',
  305. 'Class:bizInterface+' => 'Interface',
  306. 'Class:bizInterface/Attribute:device_id' => 'Device',
  307. 'Class:bizInterface/Attribute:device_id+' => 'Device on which the interface is physically located',
  308. 'Class:bizInterface/Attribute:device_name' => 'Device',
  309. 'Class:bizInterface/Attribute:device_name+' => 'name of the device on which the interface is located',
  310. 'Class:bizInterface/Attribute:device_location_id' => 'Device location',
  311. 'Class:bizInterface/Attribute:device_location_id+' => 'location of the device on which the interface is located',
  312. 'Class:bizInterface/Attribute:device_location_name' => 'Device location',
  313. 'Class:bizInterface/Attribute:device_location_name+' => 'name of the location of the device on which the interface is located',
  314. 'Class:bizInterface/Attribute:logical_type' => 'Logical type',
  315. 'Class:bizInterface/Attribute:logical_type+' => 'Logical type of interface',
  316. 'Class:bizInterface/Attribute:logical_type/Value:primary' => 'primary',
  317. 'Class:bizInterface/Attribute:logical_type/Value:primary+' => 'primary',
  318. 'Class:bizInterface/Attribute:logical_type/Value:secondary' => 'secondary',
  319. 'Class:bizInterface/Attribute:logical_type/Value:secondary+' => 'secondary',
  320. 'Class:bizInterface/Attribute:logical_type/Value:backup' => 'backup',
  321. 'Class:bizInterface/Attribute:logical_type/Value:backup+' => 'backup',
  322. 'Class:bizInterface/Attribute:logical_type/Value:port' => 'port',
  323. 'Class:bizInterface/Attribute:logical_type/Value:port+' => 'port',
  324. 'Class:bizInterface/Attribute:logical_type/Value:logical' => 'logical',
  325. 'Class:bizInterface/Attribute:logical_type/Value:logical+' => 'logical',
  326. 'Class:bizInterface/Attribute:physical_type' => 'Physical type',
  327. 'Class:bizInterface/Attribute:physical_type+' => 'Physical type of interface',
  328. 'Class:bizInterface/Attribute:physical_type/Value:ethernet' => 'ethernet',
  329. 'Class:bizInterface/Attribute:physical_type/Value:ethernet+' => 'ethernet',
  330. 'Class:bizInterface/Attribute:physical_type/Value:framerelay' => 'framerelay',
  331. 'Class:bizInterface/Attribute:physical_type/Value:framerelay+' => 'framerelay',
  332. 'Class:bizInterface/Attribute:physical_type/Value:atm' => 'atm',
  333. 'Class:bizInterface/Attribute:physical_type/Value:atm+' => 'atm',
  334. 'Class:bizInterface/Attribute:physical_type/Value:vlan' => 'vlan',
  335. 'Class:bizInterface/Attribute:physical_type/Value:vlan+' => 'vlan',
  336. 'Class:bizInterface/Attribute:ip_address' => 'IP address',
  337. 'Class:bizInterface/Attribute:ip_address+' => 'address IP for this interface',
  338. 'Class:bizInterface/Attribute:mask' => 'Subnet Mask',
  339. 'Class:bizInterface/Attribute:mask+' => 'Subnet mask for this interface',
  340. 'Class:bizInterface/Attribute:mac' => 'MAC address',
  341. 'Class:bizInterface/Attribute:mac+' => 'MAC address for this interface',
  342. 'Class:bizInterface/Attribute:speed' => 'Speed (Kb/s)',
  343. 'Class:bizInterface/Attribute:speed+' => 'speed of this interface',
  344. 'Class:bizInterface/Attribute:duplex' => 'Duplex',
  345. 'Class:bizInterface/Attribute:duplex+' => 'Duplex configured for this interface',
  346. 'Class:bizInterface/Attribute:duplex/Value:half' => 'half',
  347. 'Class:bizInterface/Attribute:duplex/Value:half+' => 'half',
  348. 'Class:bizInterface/Attribute:duplex/Value:full' => 'full',
  349. 'Class:bizInterface/Attribute:duplex/Value:full+' => 'full',
  350. 'Class:bizInterface/Attribute:duplex/Value:unknown' => 'unknown',
  351. 'Class:bizInterface/Attribute:duplex/Value:unknown+' => 'unknown',
  352. 'Class:bizInterface/Attribute:if_connected_id' => 'Connected interface',
  353. 'Class:bizInterface/Attribute:if_connected_id+' => 'interface connected to this one',
  354. 'Class:bizInterface/Attribute:if_connected_name' => 'Connected interface',
  355. 'Class:bizInterface/Attribute:if_connected_name+' => 'name of the interface connected to this one',
  356. 'Class:bizInterface/Attribute:if_connected_device' => 'Connected device',
  357. 'Class:bizInterface/Attribute:if_connected_device+' => 'name of the device connected to this interface',
  358. ));
  359. //
  360. // Class: bizSubnet
  361. //
  362. Dict::Add('EN US', 'English', 'English', array(
  363. 'Class:bizSubnet' => 'Subnet',
  364. 'Class:bizSubnet+' => 'Logical or physical subnet',
  365. 'Class:bizSubnet/Attribute:ip' => 'IP',
  366. 'Class:bizSubnet/Attribute:ip+' => 'IP',
  367. 'Class:bizSubnet/Attribute:mask' => 'IP mask',
  368. 'Class:bizSubnet/Attribute:mask+' => 'IP mask',
  369. ));
  370. //
  371. // Class: bizDevice
  372. //
  373. Dict::Add('EN US', 'English', 'English', array(
  374. 'Class:bizDevice' => 'Device',
  375. 'Class:bizDevice+' => 'Electronic devices',
  376. 'Class:bizDevice/Attribute:location_id' => 'Location',
  377. 'Class:bizDevice/Attribute:location_id+' => 'where is the located object physically located',
  378. 'Class:bizDevice/Attribute:location_name' => 'Location Name',
  379. 'Class:bizDevice/Attribute:location_name+' => 'name of the location',
  380. 'Class:bizDevice/Attribute:country' => 'Country',
  381. 'Class:bizDevice/Attribute:country+' => 'country where the device is located',
  382. 'Class:bizDevice/Attribute:brand' => 'Brand',
  383. 'Class:bizDevice/Attribute:brand+' => 'The manufacturer of the device',
  384. 'Class:bizDevice/Attribute:model' => 'Model',
  385. 'Class:bizDevice/Attribute:model+' => 'The model number of the device',
  386. 'Class:bizDevice/Attribute:serial_number' => 'Serial Number',
  387. 'Class:bizDevice/Attribute:serial_number+' => 'The serial number of the device',
  388. 'Class:bizDevice/Attribute:mgmt_ip' => 'Mgmt IP',
  389. 'Class:bizDevice/Attribute:mgmt_ip+' => 'Management IP',
  390. ));
  391. //
  392. // Class: bizPC
  393. //
  394. Dict::Add('EN US', 'English', 'English', array(
  395. 'Class:bizPC' => 'PC',
  396. 'Class:bizPC+' => 'Personal Computers',
  397. 'Class:bizPC/Attribute:type' => 'Type',
  398. 'Class:bizPC/Attribute:type+' => 'Type of computer',
  399. 'Class:bizPC/Attribute:type/Value:desktop PC' => 'desktop PC',
  400. 'Class:bizPC/Attribute:type/Value:desktop PC+' => 'desktop PC',
  401. 'Class:bizPC/Attribute:type/Value:laptop' => 'laptop',
  402. 'Class:bizPC/Attribute:type/Value:laptop+' => 'laptop',
  403. 'Class:bizPC/Attribute:memory_size' => 'Memory Size',
  404. 'Class:bizPC/Attribute:memory_size+' => 'Size of the memory',
  405. 'Class:bizPC/Attribute:cpu' => 'CPU',
  406. 'Class:bizPC/Attribute:cpu+' => 'CPU type',
  407. 'Class:bizPC/Attribute:hdd_size' => 'HDD Size',
  408. 'Class:bizPC/Attribute:hdd_size+' => 'Size of the hard drive',
  409. 'Class:bizPC/Attribute:os_family' => 'OS Family',
  410. 'Class:bizPC/Attribute:os_family+' => 'Type of operating system',
  411. 'Class:bizPC/Attribute:os_version' => 'OS Version',
  412. 'Class:bizPC/Attribute:os_version+' => 'Detailed version number of the operating system',
  413. 'Class:bizPC/Attribute:shipment_number' => 'Shipment Code',
  414. 'Class:bizPC/Attribute:shipment_number+' => 'Number for tracking shipment',
  415. 'Class:bizPC/Attribute:default_gateway' => 'Default Gateway',
  416. 'Class:bizPC/Attribute:default_gateway+' => 'Default Gateway for this device',
  417. ));
  418. //
  419. // Class: bizServer
  420. //
  421. Dict::Add('EN US', 'English', 'English', array(
  422. 'Class:bizServer' => 'Server',
  423. 'Class:bizServer+' => 'Computer Servers',
  424. 'Class:bizServer/Attribute:memory_size' => 'Memory Size',
  425. 'Class:bizServer/Attribute:memory_size+' => 'Size of the memory',
  426. 'Class:bizServer/Attribute:cpu' => 'CPU type',
  427. 'Class:bizServer/Attribute:cpu+' => 'CPU type',
  428. 'Class:bizServer/Attribute:number_of_cpus' => 'Number of CPUs',
  429. 'Class:bizServer/Attribute:number_of_cpus+' => 'Number of CPUs',
  430. 'Class:bizServer/Attribute:hdd_size' => 'HDD Size',
  431. 'Class:bizServer/Attribute:hdd_size+' => 'Size of the hard drive',
  432. 'Class:bizServer/Attribute:hdd_free_size' => 'Free HDD Size',
  433. 'Class:bizServer/Attribute:hdd_free_size+' => 'Size of the free space on the hard drive(s)',
  434. 'Class:bizServer/Attribute:os_family' => 'OS Family',
  435. 'Class:bizServer/Attribute:os_family+' => 'Type of operating system',
  436. 'Class:bizServer/Attribute:os_version' => 'OS Version',
  437. 'Class:bizServer/Attribute:os_version+' => 'Detailed version number of the operating system',
  438. 'Class:bizServer/Attribute:shipment_number' => 'Shipment number',
  439. 'Class:bizServer/Attribute:shipment_number+' => 'Number for tracking shipment',
  440. 'Class:bizServer/Attribute:default_gateway' => 'Default Gateway',
  441. 'Class:bizServer/Attribute:default_gateway+' => 'Default Gateway for this device',
  442. ));
  443. //
  444. // Class: bizNetworkDevice
  445. //
  446. Dict::Add('EN US', 'English', 'English', array(
  447. 'Class:bizNetworkDevice' => 'Network Device',
  448. 'Class:bizNetworkDevice+' => 'A network device',
  449. 'Class:bizNetworkDevice/Attribute:type' => 'Type',
  450. 'Class:bizNetworkDevice/Attribute:type+' => 'Type of device',
  451. 'Class:bizNetworkDevice/Attribute:type/Value:switch' => 'switch',
  452. 'Class:bizNetworkDevice/Attribute:type/Value:switch+' => 'switch',
  453. 'Class:bizNetworkDevice/Attribute:type/Value:router' => 'router',
  454. 'Class:bizNetworkDevice/Attribute:type/Value:router+' => 'router',
  455. 'Class:bizNetworkDevice/Attribute:type/Value:firewall' => 'firewall',
  456. 'Class:bizNetworkDevice/Attribute:type/Value:firewall+' => 'firewall',
  457. 'Class:bizNetworkDevice/Attribute:type/Value:load balancer' => 'load balancer',
  458. 'Class:bizNetworkDevice/Attribute:type/Value:load balancer+' => 'load balancer',
  459. 'Class:bizNetworkDevice/Attribute:type/Value:hub' => 'hub',
  460. 'Class:bizNetworkDevice/Attribute:type/Value:hub+' => 'hub',
  461. 'Class:bizNetworkDevice/Attribute:type/Value:WAN accelerator' => 'WAN accelerator',
  462. 'Class:bizNetworkDevice/Attribute:type/Value:WAN accelerator+' => 'WAN accelerator',
  463. 'Class:bizNetworkDevice/Attribute:default_gateway' => 'Default Gateway',
  464. 'Class:bizNetworkDevice/Attribute:default_gateway+' => 'Default Gateway for this device',
  465. 'Class:bizNetworkDevice/Attribute:ios_version' => 'IOS version',
  466. 'Class:bizNetworkDevice/Attribute:ios_version+' => 'IOS (software) version',
  467. 'Class:bizNetworkDevice/Attribute:memory' => 'Memory',
  468. 'Class:bizNetworkDevice/Attribute:memory+' => 'Memory description',
  469. 'Class:bizNetworkDevice/Attribute:snmp_read' => 'SNMP Community (Read)',
  470. 'Class:bizNetworkDevice/Attribute:snmp_read+' => 'SNMP Read Community String',
  471. 'Class:bizNetworkDevice/Attribute:snmp_write' => 'SNMP Community (Write)',
  472. 'Class:bizNetworkDevice/Attribute:snmp_write+' => 'SNMP Write Community String',
  473. ));
  474. //
  475. // Class: bizInfraGroup
  476. //
  477. Dict::Add('EN US', 'English', 'English', array(
  478. 'Class:bizInfraGroup' => 'Infra Group',
  479. 'Class:bizInfraGroup+' => 'A group of infrastructure elements',
  480. 'Class:bizInfraGroup/Attribute:type' => 'Type',
  481. 'Class:bizInfraGroup/Attribute:type+' => 'Type of groupe',
  482. 'Class:bizInfraGroup/Attribute:type/Value:Monitoring' => 'Monitoring',
  483. 'Class:bizInfraGroup/Attribute:type/Value:Monitoring+' => 'Monitoring',
  484. 'Class:bizInfraGroup/Attribute:type/Value:Reporting' => 'Reporting',
  485. 'Class:bizInfraGroup/Attribute:type/Value:Reporting+' => 'Reporting',
  486. 'Class:bizInfraGroup/Attribute:type/Value:list' => 'list',
  487. 'Class:bizInfraGroup/Attribute:type/Value:list+' => 'list',
  488. 'Class:bizInfraGroup/Attribute:description' => 'Description',
  489. 'Class:bizInfraGroup/Attribute:description+' => 'usage of the Group',
  490. 'Class:bizInfraGroup/Attribute:parent_group_id' => 'Parent Group',
  491. 'Class:bizInfraGroup/Attribute:parent_group_id+' => 'including group',
  492. 'Class:bizInfraGroup/Attribute:parent_group_name' => 'Parent Group (Name)',
  493. 'Class:bizInfraGroup/Attribute:parent_group_name+' => 'name of the parent group',
  494. ));
  495. //
  496. // Class: bizApplication
  497. //
  498. Dict::Add('EN US', 'English', 'English', array(
  499. 'Class:bizApplication' => 'Application',
  500. 'Class:bizApplication+' => 'General application',
  501. 'Class:bizApplication/Attribute:device_id' => 'Hosting device',
  502. 'Class:bizApplication/Attribute:device_id+' => 'The device where application is installed',
  503. 'Class:bizApplication/Attribute:device_name' => 'Hosting device',
  504. 'Class:bizApplication/Attribute:device_name+' => 'Name of the device where application is installed',
  505. 'Class:bizApplication/Attribute:install_date' => 'Installation Date',
  506. 'Class:bizApplication/Attribute:install_date+' => 'Date when application was installed',
  507. 'Class:bizApplication/Attribute:version' => 'Version',
  508. 'Class:bizApplication/Attribute:version+' => 'Application version',
  509. 'Class:bizApplication/Attribute:function' => 'Function',
  510. 'Class:bizApplication/Attribute:function+' => 'Function provided by this application',
  511. ));
  512. //
  513. // Class: lnkInfraGrouping
  514. //
  515. Dict::Add('EN US', 'English', 'English', array(
  516. 'Class:lnkInfraGrouping' => 'Infra Grouping',
  517. 'Class:lnkInfraGrouping+' => 'Infra part of an Infra Group',
  518. 'Class:lnkInfraGrouping/Attribute:infra_id' => 'Infrastructure',
  519. 'Class:lnkInfraGrouping/Attribute:infra_id+' => 'Infrastructure part of the group',
  520. 'Class:lnkInfraGrouping/Attribute:infra_name' => 'Infrastructure Name',
  521. 'Class:lnkInfraGrouping/Attribute:infra_name+' => 'Name of the impacted infrastructure',
  522. 'Class:lnkInfraGrouping/Attribute:infra_status' => 'Status',
  523. 'Class:lnkInfraGrouping/Attribute:infra_status+' => 'Status of the impacted infrastructure',
  524. 'Class:lnkInfraGrouping/Attribute:infra_group_id' => 'Group',
  525. 'Class:lnkInfraGrouping/Attribute:infra_group_id+' => 'Name of the group',
  526. 'Class:lnkInfraGrouping/Attribute:group_name' => 'Group Name',
  527. 'Class:lnkInfraGrouping/Attribute:group_name+' => 'Name of the group containing infrastructure',
  528. 'Class:lnkInfraGrouping/Attribute:impact' => 'Relation',
  529. 'Class:lnkInfraGrouping/Attribute:impact+' => 'Relation between this group and infra',
  530. ));
  531. //
  532. // Class: lnkClientServer
  533. //
  534. Dict::Add('EN US', 'English', 'English', array(
  535. 'Class:lnkClientServer' => 'ClientServerLinks',
  536. 'Class:lnkClientServer+' => 'Link between client server application',
  537. 'Class:lnkClientServer/Attribute:status' => 'Status',
  538. 'Class:lnkClientServer/Attribute:status+' => 'Lifecycle status',
  539. 'Class:lnkClientServer/Attribute:status/Value:production' => 'production',
  540. 'Class:lnkClientServer/Attribute:status/Value:production+' => 'production',
  541. 'Class:lnkClientServer/Attribute:status/Value:implementation' => 'implementation',
  542. 'Class:lnkClientServer/Attribute:status/Value:implementation+' => 'implementation',
  543. 'Class:lnkClientServer/Attribute:status/Value:obsolete' => 'obsolete',
  544. 'Class:lnkClientServer/Attribute:status/Value:obsolete+' => 'obsolete',
  545. 'Class:lnkClientServer/Attribute:client_id' => 'Client',
  546. 'Class:lnkClientServer/Attribute:client_id+' => 'The client part of the link',
  547. 'Class:lnkClientServer/Attribute:client_name' => 'Client',
  548. 'Class:lnkClientServer/Attribute:client_name+' => 'Name of the client',
  549. 'Class:lnkClientServer/Attribute:server_id' => 'Server',
  550. 'Class:lnkClientServer/Attribute:server_id+' => 'the server part of the link',
  551. 'Class:lnkClientServer/Attribute:server_name' => 'Server',
  552. 'Class:lnkClientServer/Attribute:server_name+' => 'Name of the server',
  553. 'Class:lnkClientServer/Attribute:relation' => 'Relation',
  554. 'Class:lnkClientServer/Attribute:relation+' => 'Type of relation between both application',
  555. ));
  556. //
  557. // Class: bizPatch
  558. //
  559. Dict::Add('EN US', 'English', 'English', array(
  560. 'Class:bizPatch' => 'Patch',
  561. 'Class:bizPatch+' => 'Patch installed on infrastucture',
  562. 'Class:bizPatch/Attribute:status' => 'Status',
  563. 'Class:bizPatch/Attribute:status+' => 'Lifecycle status',
  564. 'Class:bizPatch/Attribute:status/Value:production' => 'production',
  565. 'Class:bizPatch/Attribute:status/Value:production+' => 'production',
  566. 'Class:bizPatch/Attribute:status/Value:obsolete' => 'obsolete',
  567. 'Class:bizPatch/Attribute:status/Value:obsolete+' => 'obsolete',
  568. 'Class:bizPatch/Attribute:device_id' => 'Device',
  569. 'Class:bizPatch/Attribute:device_id+' => 'The Device where patch is installed',
  570. 'Class:bizPatch/Attribute:device_name' => 'Device Name',
  571. 'Class:bizPatch/Attribute:device_name+' => 'Name of the impacted device',
  572. 'Class:bizPatch/Attribute:install_date' => 'Installation Date',
  573. 'Class:bizPatch/Attribute:install_date+' => 'Date when application was installed',
  574. 'Class:bizPatch/Attribute:description' => 'Description',
  575. 'Class:bizPatch/Attribute:description+' => 'description du patch',
  576. 'Class:bizPatch/Attribute:patch_type' => 'Type',
  577. 'Class:bizPatch/Attribute:patch_type+' => 'type de patch',
  578. ));
  579. //
  580. // Class: bizIncidentTicket
  581. //
  582. Dict::Add('EN US', 'English', 'English', array(
  583. 'Class:bizIncidentTicket' => 'Incident',
  584. 'Class:bizIncidentTicket+' => 'Incident ticket',
  585. 'Class:bizIncidentTicket/Attribute:name' => 'Ticket Ref',
  586. 'Class:bizIncidentTicket/Attribute:name+' => 'Refence number ofr this incident',
  587. 'Class:bizIncidentTicket/Attribute:title' => 'Title',
  588. 'Class:bizIncidentTicket/Attribute:title+' => 'Overview of the Incident',
  589. 'Class:bizIncidentTicket/Attribute:type' => 'Type',
  590. 'Class:bizIncidentTicket/Attribute:type+' => 'Type of the Incident',
  591. 'Class:bizIncidentTicket/Attribute:type/Value:Network' => 'Network',
  592. 'Class:bizIncidentTicket/Attribute:type/Value:Network+' => 'Network',
  593. 'Class:bizIncidentTicket/Attribute:type/Value:Server' => 'Server',
  594. 'Class:bizIncidentTicket/Attribute:type/Value:Server+' => 'Server',
  595. 'Class:bizIncidentTicket/Attribute:type/Value:Desktop' => 'Desktop',
  596. 'Class:bizIncidentTicket/Attribute:type/Value:Desktop+' => 'Desktop',
  597. 'Class:bizIncidentTicket/Attribute:type/Value:Application' => 'Application',
  598. 'Class:bizIncidentTicket/Attribute:type/Value:Application+' => 'Application',
  599. 'Class:bizIncidentTicket/Attribute:org_id' => 'Customer',
  600. 'Class:bizIncidentTicket/Attribute:org_id+' => 'who is impacted by the ticket',
  601. 'Class:bizIncidentTicket/Attribute:customer_name' => 'Customer',
  602. 'Class:bizIncidentTicket/Attribute:customer_name+' => 'Name of the customer impacted by this ticket',
  603. 'Class:bizIncidentTicket/Attribute:ticket_status' => 'Status',
  604. 'Class:bizIncidentTicket/Attribute:ticket_status+' => 'Status of the ticket',
  605. 'Class:bizIncidentTicket/Attribute:ticket_status/Value:New' => 'New (Unassigned)',
  606. 'Class:bizIncidentTicket/Attribute:ticket_status/Value:New+' => 'Newly created ticket',
  607. 'Class:bizIncidentTicket/Attribute:ticket_status/Value:Assigned' => 'Assigned',
  608. 'Class:bizIncidentTicket/Attribute:ticket_status/Value:Assigned+' => 'Ticket is assigned to somebody',
  609. 'Class:bizIncidentTicket/Attribute:ticket_status/Value:WorkInProgress' => 'Work In Progress',
  610. 'Class:bizIncidentTicket/Attribute:ticket_status/Value:WorkInProgress+' => 'Work is in progress',
  611. 'Class:bizIncidentTicket/Attribute:ticket_status/Value:Resolved' => 'Resolved',
  612. 'Class:bizIncidentTicket/Attribute:ticket_status/Value:Resolved+' => 'Ticket is resolved',
  613. 'Class:bizIncidentTicket/Attribute:ticket_status/Value:Closed' => 'Closed',
  614. 'Class:bizIncidentTicket/Attribute:ticket_status/Value:Closed+' => 'Ticket is closed',
  615. 'Class:bizIncidentTicket/Attribute:initial_situation' => 'Initial Situation',
  616. 'Class:bizIncidentTicket/Attribute:initial_situation+' => 'Initial situation of the Incident',
  617. 'Class:bizIncidentTicket/Attribute:current_situation' => 'Current Situation',
  618. 'Class:bizIncidentTicket/Attribute:current_situation+' => 'Current situation of the Incident',
  619. 'Class:bizIncidentTicket/Attribute:start_date' => 'Starting date',
  620. 'Class:bizIncidentTicket/Attribute:start_date+' => 'Incident starting date',
  621. 'Class:bizIncidentTicket/Attribute:last_update' => 'Last update',
  622. 'Class:bizIncidentTicket/Attribute:last_update+' => 'last time the Ticket was modified',
  623. 'Class:bizIncidentTicket/Attribute:next_update' => 'Next update',
  624. 'Class:bizIncidentTicket/Attribute:next_update+' => 'next time the Ticket is expected to be modified',
  625. 'Class:bizIncidentTicket/Attribute:end_date' => 'Closure Date',
  626. 'Class:bizIncidentTicket/Attribute:end_date+' => 'Date when the Ticket was closed',
  627. 'Class:bizIncidentTicket/Attribute:caller_id' => 'Caller',
  628. 'Class:bizIncidentTicket/Attribute:caller_id+' => 'person that trigger incident',
  629. 'Class:bizIncidentTicket/Attribute:caller_mail' => 'Caller',
  630. 'Class:bizIncidentTicket/Attribute:caller_mail+' => 'Person that trigger this incident',
  631. 'Class:bizIncidentTicket/Attribute:impact' => 'Impact',
  632. 'Class:bizIncidentTicket/Attribute:impact+' => 'Impact of the Incident',
  633. 'Class:bizIncidentTicket/Attribute:workgroup_id' => 'Workgroup',
  634. 'Class:bizIncidentTicket/Attribute:workgroup_id+' => 'which workgroup is owning ticket',
  635. 'Class:bizIncidentTicket/Attribute:workgroup_name' => 'Workgroup',
  636. 'Class:bizIncidentTicket/Attribute:workgroup_name+' => 'name of workgroup managing the Ticket',
  637. 'Class:bizIncidentTicket/Attribute:agent_id' => 'Agent',
  638. 'Class:bizIncidentTicket/Attribute:agent_id+' => 'who is managing the ticket',
  639. 'Class:bizIncidentTicket/Attribute:agent_mail' => 'Agent',
  640. 'Class:bizIncidentTicket/Attribute:agent_mail+' => 'mail of agent managing the Ticket',
  641. 'Class:bizIncidentTicket/Attribute:action_log' => 'Action Logs',
  642. 'Class:bizIncidentTicket/Attribute:action_log+' => 'List all action performed during the incident',
  643. 'Class:bizIncidentTicket/Attribute:severity' => 'Severity',
  644. 'Class:bizIncidentTicket/Attribute:severity+' => 'Field defining the criticity if the incident',
  645. 'Class:bizIncidentTicket/Attribute:severity/Value:critical' => 'critical',
  646. 'Class:bizIncidentTicket/Attribute:severity/Value:critical+' => 'critical',
  647. 'Class:bizIncidentTicket/Attribute:severity/Value:medium' => 'medium',
  648. 'Class:bizIncidentTicket/Attribute:severity/Value:medium+' => 'medium',
  649. 'Class:bizIncidentTicket/Attribute:severity/Value:low' => 'low',
  650. 'Class:bizIncidentTicket/Attribute:severity/Value:low+' => 'low',
  651. 'Class:bizIncidentTicket/Attribute:assignment_count' => 'Assignment Count',
  652. 'Class:bizIncidentTicket/Attribute:assignment_count+' => 'Number of times this ticket was assigned or reassigned',
  653. 'Class:bizIncidentTicket/Attribute:resolution' => 'Resolution',
  654. 'Class:bizIncidentTicket/Attribute:resolution+' => 'Description of the resolution',
  655. 'Class:bizIncidentTicket/Attribute:impacted_infra_manual' => 'Impacted Infrastructure',
  656. 'Class:bizIncidentTicket/Attribute:impacted_infra_manual+' => 'CIs that are not meeting the SLA',
  657. 'Class:bizIncidentTicket/Attribute:related_tickets' => 'Related Tickets',
  658. 'Class:bizIncidentTicket/Attribute:related_tickets+' => 'Other incident tickets related to this one',
  659. 'Class:bizIncidentTicket/Attribute:contacts_a_notifier' => 'contacts auto',
  660. 'Class:bizIncidentTicket/Attribute:contacts_a_notifier+' => 'blah',
  661. 'Class:bizIncidentTicket/Stimulus:ev_assign' => 'Assign this ticket',
  662. 'Class:bizIncidentTicket/Stimulus:ev_assign+' => 'Assign this ticket to a group and an agent',
  663. 'Class:bizIncidentTicket/Stimulus:ev_reassign' => 'Reassign this ticket',
  664. 'Class:bizIncidentTicket/Stimulus:ev_reassign+' => 'Reassign this ticket to a different group and agent',
  665. 'Class:bizIncidentTicket/Stimulus:ev_start_working' => 'Work on this ticket',
  666. 'Class:bizIncidentTicket/Stimulus:ev_start_working+' => 'Start working on this ticket',
  667. 'Class:bizIncidentTicket/Stimulus:ev_resolve' => 'Resolve this ticket',
  668. 'Class:bizIncidentTicket/Stimulus:ev_resolve+' => 'Resolve this ticket',
  669. 'Class:bizIncidentTicket/Stimulus:ev_close' => 'Close this ticket',
  670. 'Class:bizIncidentTicket/Stimulus:ev_close+' => 'Close this ticket',
  671. ));
  672. //
  673. // Class: lnkRelatedTicket
  674. //
  675. Dict::Add('EN US', 'English', 'English', array(
  676. 'Class:lnkRelatedTicket' => 'Related Ticket',
  677. 'Class:lnkRelatedTicket+' => 'Ticket related to a ticket',
  678. 'Class:lnkRelatedTicket/Attribute:rel_ticket_id' => 'Related Ticket',
  679. 'Class:lnkRelatedTicket/Attribute:rel_ticket_id+' => 'The related ticket',
  680. 'Class:lnkRelatedTicket/Attribute:rel_ticket_name' => 'Related ticket',
  681. 'Class:lnkRelatedTicket/Attribute:rel_ticket_name+' => 'Name of the related ticket',
  682. 'Class:lnkRelatedTicket/Attribute:ticket_id' => 'Ticket',
  683. 'Class:lnkRelatedTicket/Attribute:ticket_id+' => 'Ticket number',
  684. 'Class:lnkRelatedTicket/Attribute:ticket_name' => 'Ticket Name',
  685. 'Class:lnkRelatedTicket/Attribute:ticket_name+' => 'Name of the ticket',
  686. 'Class:lnkRelatedTicket/Attribute:impact' => 'Impact',
  687. 'Class:lnkRelatedTicket/Attribute:impact+' => 'Impact on the related ticket',
  688. ));
  689. //
  690. // Class: lnkInfraTicket
  691. //
  692. Dict::Add('EN US', 'English', 'English', array(
  693. 'Class:lnkInfraTicket' => 'Infra Ticket',
  694. 'Class:lnkInfraTicket+' => 'Infra impacted by a ticket',
  695. 'Class:lnkInfraTicket/Attribute:infra_id' => 'Infrastructure',
  696. 'Class:lnkInfraTicket/Attribute:infra_id+' => 'The infrastructure impacted',
  697. 'Class:lnkInfraTicket/Attribute:infra_name' => 'Infrastructure Name',
  698. 'Class:lnkInfraTicket/Attribute:infra_name+' => 'Name of the impacted infrastructure',
  699. 'Class:lnkInfraTicket/Attribute:ticket_id' => 'Ticket #',
  700. 'Class:lnkInfraTicket/Attribute:ticket_id+' => 'Ticket number',
  701. 'Class:lnkInfraTicket/Attribute:ticket_name' => 'Ticket Name',
  702. 'Class:lnkInfraTicket/Attribute:ticket_name+' => 'Name of the ticket',
  703. 'Class:lnkInfraTicket/Attribute:impact' => 'Impact',
  704. 'Class:lnkInfraTicket/Attribute:impact+' => 'Level of impact of the infra by the related ticket',
  705. ));
  706. //
  707. // Class: lnkContactTicket
  708. //
  709. Dict::Add('EN US', 'English', 'English', array(
  710. 'Class:lnkContactTicket' => 'Contact Ticket',
  711. 'Class:lnkContactTicket+' => 'Contacts to be notify for a ticket',
  712. 'Class:lnkContactTicket/Attribute:contact_id' => 'Contact',
  713. 'Class:lnkContactTicket/Attribute:contact_id+' => 'Contact to Notify',
  714. 'Class:lnkContactTicket/Attribute:contact_email' => 'Contact email',
  715. 'Class:lnkContactTicket/Attribute:contact_email+' => 'Mail for the contact',
  716. 'Class:lnkContactTicket/Attribute:ticket_id' => 'Ticket #',
  717. 'Class:lnkContactTicket/Attribute:ticket_id+' => 'Ticket number',
  718. 'Class:lnkContactTicket/Attribute:ticket_name' => 'Ticket Name',
  719. 'Class:lnkContactTicket/Attribute:ticket_name+' => 'Name of the ticket',
  720. 'Class:lnkContactTicket/Attribute:role' => 'Role',
  721. 'Class:lnkContactTicket/Attribute:role+' => 'Role of the contact',
  722. ));
  723. //
  724. // Class: bizWorkgroup
  725. //
  726. Dict::Add('EN US', 'English', 'English', array(
  727. 'Class:bizWorkgroup' => 'Workgroup',
  728. 'Class:bizWorkgroup+' => 'Call tracking workgroup',
  729. 'Class:bizWorkgroup/Attribute:status' => 'Status',
  730. 'Class:bizWorkgroup/Attribute:status+' => 'Lifecycle status',
  731. 'Class:bizWorkgroup/Attribute:status/Value:production' => 'production',
  732. 'Class:bizWorkgroup/Attribute:status/Value:production+' => 'production',
  733. 'Class:bizWorkgroup/Attribute:status/Value:implementation' => 'implementation',
  734. 'Class:bizWorkgroup/Attribute:status/Value:implementation+' => 'implementation',
  735. 'Class:bizWorkgroup/Attribute:status/Value:obsolete' => 'obsolete',
  736. 'Class:bizWorkgroup/Attribute:status/Value:obsolete+' => 'obsolete',
  737. 'Class:bizWorkgroup/Attribute:org_name' => 'Organization',
  738. 'Class:bizWorkgroup/Attribute:org_name+' => 'Company / Department owning this object',
  739. 'Class:bizWorkgroup/Attribute:team_id' => 'Team',
  740. 'Class:bizWorkgroup/Attribute:team_id+' => 'Team owning the workgroup',
  741. 'Class:bizWorkgroup/Attribute:team_name' => 'Team Name',
  742. 'Class:bizWorkgroup/Attribute:team_name+' => 'name of the team',
  743. 'Class:bizWorkgroup/Attribute:role' => 'Role',
  744. 'Class:bizWorkgroup/Attribute:role+' => 'Role of this work group',
  745. ));
  746. //
  747. // Class: bizService
  748. //
  749. Dict::Add('EN US', 'English', 'English', array(
  750. 'Class:bizService' => 'Service',
  751. 'Class:bizService+' => 'Service provided by an organization',
  752. 'Class:bizService/Attribute:name' => 'Name',
  753. 'Class:bizService/Attribute:name+' => 'Name of the service',
  754. 'Class:bizService/Attribute:org_id' => 'Provider',
  755. 'Class:bizService/Attribute:org_id+' => 'Provider for this service',
  756. 'Class:bizService/Attribute:provider_name' => 'Provider',
  757. 'Class:bizService/Attribute:provider_name+' => 'name of the Provider',
  758. 'Class:bizService/Attribute:service_category' => 'Service Category',
  759. 'Class:bizService/Attribute:service_category+' => 'Category for this contract',
  760. 'Class:bizService/Attribute:service_category/Value:Server' => 'Server',
  761. 'Class:bizService/Attribute:service_category/Value:Server+' => 'Server',
  762. 'Class:bizService/Attribute:service_category/Value:Network' => 'Network',
  763. 'Class:bizService/Attribute:service_category/Value:Network+' => 'Network',
  764. 'Class:bizService/Attribute:service_category/Value:End-User' => 'End-User',
  765. 'Class:bizService/Attribute:service_category/Value:End-User+' => 'End-User',
  766. 'Class:bizService/Attribute:service_category/Value:Desktop' => 'Desktop',
  767. 'Class:bizService/Attribute:service_category/Value:Desktop+' => 'Desktop',
  768. 'Class:bizService/Attribute:service_category/Value:Application' => 'Application',
  769. 'Class:bizService/Attribute:service_category/Value:Application+' => 'Application',
  770. 'Class:bizService/Attribute:description' => 'Description',
  771. 'Class:bizService/Attribute:description+' => 'Description of this service',
  772. 'Class:bizService/Attribute:status' => 'Status',
  773. 'Class:bizService/Attribute:status+' => 'Status of the service',
  774. 'Class:bizService/Attribute:status/Value:New' => 'New',
  775. 'Class:bizService/Attribute:status/Value:New+' => 'New',
  776. 'Class:bizService/Attribute:status/Value:Implementation' => 'Implementation',
  777. 'Class:bizService/Attribute:status/Value:Implementation+' => 'Implementation',
  778. 'Class:bizService/Attribute:status/Value:Production' => 'Production',
  779. 'Class:bizService/Attribute:status/Value:Production+' => 'Production',
  780. 'Class:bizService/Attribute:status/Value:Obsolete' => 'Obsolete',
  781. 'Class:bizService/Attribute:status/Value:Obsolete+' => 'Obsolete',
  782. 'Class:bizService/Attribute:type' => 'Type',
  783. 'Class:bizService/Attribute:type+' => 'Type of the service',
  784. 'Class:bizService/Attribute:type/Value:Hardware' => 'Hardware',
  785. 'Class:bizService/Attribute:type/Value:Hardware+' => 'Hardware',
  786. 'Class:bizService/Attribute:type/Value:Software' => 'Software',
  787. 'Class:bizService/Attribute:type/Value:Software+' => 'Software',
  788. 'Class:bizService/Attribute:type/Value:Support' => 'Support',
  789. 'Class:bizService/Attribute:type/Value:Support+' => 'Support',
  790. ));
  791. //
  792. // Class: bizContract
  793. //
  794. Dict::Add('EN US', 'English', 'English', array(
  795. 'Class:bizContract' => 'Contract',
  796. 'Class:bizContract+' => 'Contract signed by an organization',
  797. 'Class:bizContract/Attribute:name' => 'Name',
  798. 'Class:bizContract/Attribute:name+' => 'Name of the contract',
  799. 'Class:bizContract/Attribute:org_id' => 'Customer',
  800. 'Class:bizContract/Attribute:org_id+' => 'Customer for this contract',
  801. 'Class:bizContract/Attribute:customer_name' => 'Customer',
  802. 'Class:bizContract/Attribute:customer_name+' => 'name of the Customer',
  803. 'Class:bizContract/Attribute:service_id' => 'Service',
  804. 'Class:bizContract/Attribute:service_id+' => 'Provider for this contract',
  805. 'Class:bizContract/Attribute:provider_name' => 'Provider',
  806. 'Class:bizContract/Attribute:provider_name+' => 'name of the service provider',
  807. 'Class:bizContract/Attribute:service_name' => 'Service',
  808. 'Class:bizContract/Attribute:service_name+' => 'name of the service',
  809. 'Class:bizContract/Attribute:team_id' => 'Team',
  810. 'Class:bizContract/Attribute:team_id+' => 'Team managing this contract',
  811. 'Class:bizContract/Attribute:team_name' => 'Team',
  812. 'Class:bizContract/Attribute:team_name+' => 'name of the team managing this contract',
  813. 'Class:bizContract/Attribute:service_level' => 'Service Level',
  814. 'Class:bizContract/Attribute:service_level+' => 'Level of service for this contract',
  815. 'Class:bizContract/Attribute:service_level/Value:Gold' => 'Gold',
  816. 'Class:bizContract/Attribute:service_level/Value:Gold+' => 'Gold',
  817. 'Class:bizContract/Attribute:service_level/Value:Silver' => 'Silver',
  818. 'Class:bizContract/Attribute:service_level/Value:Silver+' => 'Silver',
  819. 'Class:bizContract/Attribute:service_level/Value:Bronze' => 'Bronze',
  820. 'Class:bizContract/Attribute:service_level/Value:Bronze+' => 'Bronze',
  821. 'Class:bizContract/Attribute:cost_unit' => 'Cost Unit',
  822. 'Class:bizContract/Attribute:cost_unit+' => 'Cost unit to compute global cost for this contract',
  823. 'Class:bizContract/Attribute:cost_unit/Value:Devices' => 'Devices',
  824. 'Class:bizContract/Attribute:cost_unit/Value:Devices+' => 'Devices',
  825. 'Class:bizContract/Attribute:cost_unit/Value:Persons' => 'Persons',
  826. 'Class:bizContract/Attribute:cost_unit/Value:Persons+' => 'Persons',
  827. 'Class:bizContract/Attribute:cost_unit/Value:Applications' => 'Applications',
  828. 'Class:bizContract/Attribute:cost_unit/Value:Applications+' => 'Applications',
  829. 'Class:bizContract/Attribute:cost_unit/Value:Global' => 'Global',
  830. 'Class:bizContract/Attribute:cost_unit/Value:Global+' => 'Global',
  831. 'Class:bizContract/Attribute:cost_freq' => 'Billing frequency',
  832. 'Class:bizContract/Attribute:cost_freq+' => 'Frequency of cost for this contract',
  833. 'Class:bizContract/Attribute:cost_freq/Value:Monthly' => 'Monthly',
  834. 'Class:bizContract/Attribute:cost_freq/Value:Monthly+' => 'Monthly',
  835. 'Class:bizContract/Attribute:cost_freq/Value:Yearly' => 'Yearly',
  836. 'Class:bizContract/Attribute:cost_freq/Value:Yearly+' => 'Yearly',
  837. 'Class:bizContract/Attribute:cost_freq/Value:Once' => 'Once',
  838. 'Class:bizContract/Attribute:cost_freq/Value:Once+' => 'Once',
  839. 'Class:bizContract/Attribute:cost' => 'Cost',
  840. 'Class:bizContract/Attribute:cost+' => 'Cost of this contract',
  841. 'Class:bizContract/Attribute:currency' => 'Currency',
  842. 'Class:bizContract/Attribute:currency+' => 'Currency of cost for this contract',
  843. 'Class:bizContract/Attribute:currency/Value:Euros' => 'Euros',
  844. 'Class:bizContract/Attribute:currency/Value:Euros+' => 'Euros',
  845. 'Class:bizContract/Attribute:currency/Value:Dollars' => 'Dollars',
  846. 'Class:bizContract/Attribute:currency/Value:Dollars+' => 'Dollars',
  847. 'Class:bizContract/Attribute:description' => 'Description',
  848. 'Class:bizContract/Attribute:description+' => 'Description of this contract',
  849. 'Class:bizContract/Attribute:move2prod_date' => 'Date of Move To Production',
  850. 'Class:bizContract/Attribute:move2prod_date+' => 'Date when the contract is on production',
  851. 'Class:bizContract/Attribute:end_prod' => 'Date of End Of Production',
  852. 'Class:bizContract/Attribute:end_prod+' => 'Date when the contract is stopped',
  853. 'Class:bizContract/Attribute:status' => 'Status',
  854. 'Class:bizContract/Attribute:status+' => 'Status of the contract',
  855. 'Class:bizContract/Attribute:status/Value:New' => 'New',
  856. 'Class:bizContract/Attribute:status/Value:New+' => 'New',
  857. 'Class:bizContract/Attribute:status/Value:Negotiating' => 'Negotiating',
  858. 'Class:bizContract/Attribute:status/Value:Negotiating+' => 'Negotiating',
  859. 'Class:bizContract/Attribute:status/Value:Signed' => 'Signed',
  860. 'Class:bizContract/Attribute:status/Value:Signed+' => 'Signed',
  861. 'Class:bizContract/Attribute:status/Value:Production' => 'Production',
  862. 'Class:bizContract/Attribute:status/Value:Production+' => 'Production',
  863. 'Class:bizContract/Attribute:status/Value:Finished' => 'Finished',
  864. 'Class:bizContract/Attribute:status/Value:Finished+' => 'Finished',
  865. 'Class:bizContract/Attribute:type' => 'Type',
  866. 'Class:bizContract/Attribute:type+' => 'Type of the contract',
  867. 'Class:bizContract/Attribute:type/Value:Hardware' => 'Hardware',
  868. 'Class:bizContract/Attribute:type/Value:Hardware+' => 'Hardware',
  869. 'Class:bizContract/Attribute:type/Value:Software' => 'Software',
  870. 'Class:bizContract/Attribute:type/Value:Software+' => 'Software',
  871. 'Class:bizContract/Attribute:type/Value:Support' => 'Support',
  872. 'Class:bizContract/Attribute:type/Value:Support+' => 'Support',
  873. 'Class:bizContract/Attribute:type/Value:Licence' => 'Licence',
  874. 'Class:bizContract/Attribute:type/Value:Licence+' => 'Licence',
  875. 'Class:bizContract/Attribute:version_number' => 'Version',
  876. 'Class:bizContract/Attribute:version_number+' => 'Revision number for this contract',
  877. ));
  878. //
  879. // Class: lnkInfraContract
  880. //
  881. Dict::Add('EN US', 'English', 'English', array(
  882. 'Class:lnkInfraContract' => 'InfraContractLinks',
  883. 'Class:lnkInfraContract+' => 'Infra covered by a contract',
  884. 'Class:lnkInfraContract/Attribute:infra_id' => 'Infrastructure',
  885. 'Class:lnkInfraContract/Attribute:infra_id+' => 'The infrastructure impacted',
  886. 'Class:lnkInfraContract/Attribute:infra_name' => 'Infrastructure Name',
  887. 'Class:lnkInfraContract/Attribute:infra_name+' => 'Name of the impacted infrastructure',
  888. 'Class:lnkInfraContract/Attribute:infra_status' => 'Status',
  889. 'Class:lnkInfraContract/Attribute:infra_status+' => 'Status of the impacted infrastructure',
  890. 'Class:lnkInfraContract/Attribute:contract_id' => 'Contract',
  891. 'Class:lnkInfraContract/Attribute:contract_id+' => 'Contract id',
  892. 'Class:lnkInfraContract/Attribute:contract_name' => 'Contract Name',
  893. 'Class:lnkInfraContract/Attribute:contract_name+' => 'Name of the contract',
  894. 'Class:lnkInfraContract/Attribute:coverage' => 'Coverage',
  895. 'Class:lnkInfraContract/Attribute:coverage+' => 'coverage for the given infra',
  896. 'Class:lnkInfraContract/Attribute:service_level' => 'Service Level',
  897. 'Class:lnkInfraContract/Attribute:service_level+' => 'service level for the given infra',
  898. ));
  899. //
  900. // Class: lnkContactContract
  901. //
  902. Dict::Add('EN US', 'English', 'English', array(
  903. 'Class:lnkContactContract' => 'ContactContractLink',
  904. 'Class:lnkContactContract+' => 'Contact associated to a contract',
  905. 'Class:lnkContactContract/Attribute:contact_id' => 'Contact',
  906. 'Class:lnkContactContract/Attribute:contact_id+' => 'The contact linked to contract',
  907. 'Class:lnkContactContract/Attribute:contact_mail' => 'Contact E-mail',
  908. 'Class:lnkContactContract/Attribute:contact_mail+' => 'Mail for the contact',
  909. 'Class:lnkContactContract/Attribute:contract_id' => 'Contract',
  910. 'Class:lnkContactContract/Attribute:contract_id+' => 'Contract ID',
  911. 'Class:lnkContactContract/Attribute:contract_name' => 'Contract Name',
  912. 'Class:lnkContactContract/Attribute:contract_name+' => 'Name of the contract',
  913. 'Class:lnkContactContract/Attribute:role' => 'Role',
  914. 'Class:lnkContactContract/Attribute:role+' => 'Role of this contact for this contract',
  915. ));
  916. //
  917. // Class: lnkDocumentContract
  918. //
  919. Dict::Add('EN US', 'English', 'English', array(
  920. 'Class:lnkDocumentContract' => 'DocumentsContractLinks',
  921. 'Class:lnkDocumentContract+' => 'A link between a document and another contract',
  922. 'Class:lnkDocumentContract/Attribute:doc_id' => 'Document',
  923. 'Class:lnkDocumentContract/Attribute:doc_id+' => 'id of the Document',
  924. 'Class:lnkDocumentContract/Attribute:doc_name' => 'Document Name',
  925. 'Class:lnkDocumentContract/Attribute:doc_name+' => 'name of the document',
  926. 'Class:lnkDocumentContract/Attribute:contract_id' => 'Contract',
  927. 'Class:lnkDocumentContract/Attribute:contract_id+' => 'Contract linked to this document',
  928. 'Class:lnkDocumentContract/Attribute:contract_name' => 'Contract Name',
  929. 'Class:lnkDocumentContract/Attribute:contract_name+' => 'name of the linked contract',
  930. 'Class:lnkDocumentContract/Attribute:link_type' => 'Link Type',
  931. 'Class:lnkDocumentContract/Attribute:link_type+' => 'More information',
  932. ));
  933. //
  934. // Class: bizChangeTicket
  935. //
  936. Dict::Add('EN US', 'English', 'English', array(
  937. 'Class:bizChangeTicket' => 'Change',
  938. 'Class:bizChangeTicket+' => 'Change ticket',
  939. 'Class:bizChangeTicket/Attribute:name' => 'Ticket Ref',
  940. 'Class:bizChangeTicket/Attribute:name+' => 'Refence number ofr this change',
  941. 'Class:bizChangeTicket/Attribute:title' => 'Title',
  942. 'Class:bizChangeTicket/Attribute:title+' => 'Overview of the Change',
  943. 'Class:bizChangeTicket/Attribute:type' => 'Change Type',
  944. 'Class:bizChangeTicket/Attribute:type+' => 'Type of the Change',
  945. 'Class:bizChangeTicket/Attribute:domain' => 'Domain',
  946. 'Class:bizChangeTicket/Attribute:domain+' => 'Domain for the Change',
  947. 'Class:bizChangeTicket/Attribute:reason' => 'Reason For Change',
  948. 'Class:bizChangeTicket/Attribute:reason+' => 'Reason for the Change',
  949. 'Class:bizChangeTicket/Attribute:requestor_id' => 'Requestor',
  950. 'Class:bizChangeTicket/Attribute:requestor_id+' => 'who is requesting this change',
  951. 'Class:bizChangeTicket/Attribute:requestor_mail' => 'Requestor',
  952. 'Class:bizChangeTicket/Attribute:requestor_mail+' => 'mail of user requesting this change',
  953. 'Class:bizChangeTicket/Attribute:org_id' => 'Customer',
  954. 'Class:bizChangeTicket/Attribute:org_id+' => 'who is impacted by the ticket',
  955. 'Class:bizChangeTicket/Attribute:customer_name' => 'Customer',
  956. 'Class:bizChangeTicket/Attribute:customer_name+' => 'Name of the customer impacted by this ticket',
  957. 'Class:bizChangeTicket/Attribute:ticket_status' => 'Status',
  958. 'Class:bizChangeTicket/Attribute:ticket_status+' => 'Status of the ticket',
  959. 'Class:bizChangeTicket/Attribute:ticket_status/Value:New' => 'New (Unassigned)',
  960. 'Class:bizChangeTicket/Attribute:ticket_status/Value:New+' => 'Newly created ticket',
  961. 'Class:bizChangeTicket/Attribute:ticket_status/Value:Validated' => 'Validated',
  962. 'Class:bizChangeTicket/Attribute:ticket_status/Value:Validated+' => 'Ticket is validated',
  963. 'Class:bizChangeTicket/Attribute:ticket_status/Value:Rejected' => 'Rejected',
  964. 'Class:bizChangeTicket/Attribute:ticket_status/Value:Rejected+' => 'This ticket is not approved',
  965. 'Class:bizChangeTicket/Attribute:ticket_status/Value:Assigned' => 'Assigned',
  966. 'Class:bizChangeTicket/Attribute:ticket_status/Value:Assigned+' => 'Ticket is assigned',
  967. 'Class:bizChangeTicket/Attribute:ticket_status/Value:PlannedScheduled' => 'Planned&Scheduled',
  968. 'Class:bizChangeTicket/Attribute:ticket_status/Value:PlannedScheduled+' => 'Evaluation is done for this change',
  969. 'Class:bizChangeTicket/Attribute:ticket_status/Value:Approved' => 'Approved',
  970. 'Class:bizChangeTicket/Attribute:ticket_status/Value:Approved+' => 'Ticket is approved by CAB',
  971. 'Class:bizChangeTicket/Attribute:ticket_status/Value:NotApproved' => 'Not Approved',
  972. 'Class:bizChangeTicket/Attribute:ticket_status/Value:NotApproved+' => 'Ticket has not been approved by CAB',
  973. 'Class:bizChangeTicket/Attribute:ticket_status/Value:Implemented' => 'Implementation',
  974. 'Class:bizChangeTicket/Attribute:ticket_status/Value:Implemented+' => 'Work is in progress for this ticket',
  975. 'Class:bizChangeTicket/Attribute:ticket_status/Value:Monitored' => 'Monitored',
  976. 'Class:bizChangeTicket/Attribute:ticket_status/Value:Monitored+' => 'Change performed is now monitored',
  977. 'Class:bizChangeTicket/Attribute:ticket_status/Value:Closed' => 'Closed',
  978. 'Class:bizChangeTicket/Attribute:ticket_status/Value:Closed+' => 'Ticket is closed',
  979. 'Class:bizChangeTicket/Attribute:creation_date' => 'Creation Date',
  980. 'Class:bizChangeTicket/Attribute:creation_date+' => 'Change creation date',
  981. 'Class:bizChangeTicket/Attribute:last_update' => 'Last Update',
  982. 'Class:bizChangeTicket/Attribute:last_update+' => 'last time the Ticket was modified',
  983. 'Class:bizChangeTicket/Attribute:start_date' => 'Start Date',
  984. 'Class:bizChangeTicket/Attribute:start_date+' => 'Time the change is expected to start',
  985. 'Class:bizChangeTicket/Attribute:end_date' => 'End Date',
  986. 'Class:bizChangeTicket/Attribute:end_date+' => 'Date when the change is supposed to end',
  987. 'Class:bizChangeTicket/Attribute:close_date' => 'Closure Date',
  988. 'Class:bizChangeTicket/Attribute:close_date+' => 'Date when the Ticket was closed',
  989. 'Class:bizChangeTicket/Attribute:impact' => 'Risk Assessment',
  990. 'Class:bizChangeTicket/Attribute:impact+' => 'Impact of the change',
  991. 'Class:bizChangeTicket/Attribute:workgroup_id' => 'Workgroup',
  992. 'Class:bizChangeTicket/Attribute:workgroup_id+' => 'which workgroup is owning ticket',
  993. 'Class:bizChangeTicket/Attribute:workgroup_name' => 'Workgroup',
  994. 'Class:bizChangeTicket/Attribute:workgroup_name+' => 'name of workgroup managing the Ticket',
  995. 'Class:bizChangeTicket/Attribute:agent_id' => 'Agent',
  996. 'Class:bizChangeTicket/Attribute:agent_id+' => 'who is managing the ticket',
  997. 'Class:bizChangeTicket/Attribute:agent_mail' => 'Agent',
  998. 'Class:bizChangeTicket/Attribute:agent_mail+' => 'name of agent managing the Ticket',
  999. 'Class:bizChangeTicket/Attribute:supervisorgroup_id' => 'Supervisor Group',
  1000. 'Class:bizChangeTicket/Attribute:supervisorgroup_id+' => 'which workgroup is supervising ticket',
  1001. 'Class:bizChangeTicket/Attribute:supervisorgroup_name' => 'Supervisor Group',
  1002. 'Class:bizChangeTicket/Attribute:supervisorgroup_name+' => 'name of the group supervising the Ticket',
  1003. 'Class:bizChangeTicket/Attribute:supervisor_id' => 'Supervisor',
  1004. 'Class:bizChangeTicket/Attribute:supervisor_id+' => 'who is managing the ticket',
  1005. 'Class:bizChangeTicket/Attribute:supervisor_mail' => 'Supervisor',
  1006. 'Class:bizChangeTicket/Attribute:supervisor_mail+' => 'name of agent supervising the Ticket',
  1007. 'Class:bizChangeTicket/Attribute:managergroup_id' => 'Manager Group',
  1008. 'Class:bizChangeTicket/Attribute:managergroup_id+' => 'which workgroup is approving ticket',
  1009. 'Class:bizChangeTicket/Attribute:managergroup_name' => 'Manager Group',
  1010. 'Class:bizChangeTicket/Attribute:managergroup_name+' => 'name of workgroup approving the Ticket',
  1011. 'Class:bizChangeTicket/Attribute:manager_id' => 'Manager',
  1012. 'Class:bizChangeTicket/Attribute:manager_id+' => 'who is approving the ticket',
  1013. 'Class:bizChangeTicket/Attribute:manager_mail' => 'Manager',
  1014. 'Class:bizChangeTicket/Attribute:manager_mail+' => 'name of agent approving the Ticket',
  1015. 'Class:bizChangeTicket/Attribute:outage' => 'Planned Outage',
  1016. 'Class:bizChangeTicket/Attribute:outage+' => 'Flag to define if there is a planned outage',
  1017. 'Class:bizChangeTicket/Attribute:outage/Value:Yes' => 'Yes',
  1018. 'Class:bizChangeTicket/Attribute:outage/Value:Yes+' => 'Yes',
  1019. 'Class:bizChangeTicket/Attribute:outage/Value:No' => 'No',
  1020. 'Class:bizChangeTicket/Attribute:outage/Value:No+' => 'No',
  1021. 'Class:bizChangeTicket/Attribute:change_request' => 'Change Request',
  1022. 'Class:bizChangeTicket/Attribute:change_request+' => 'Description of Change required',
  1023. 'Class:bizChangeTicket/Attribute:change_log' => 'Implementation Log',
  1024. 'Class:bizChangeTicket/Attribute:change_log+' => 'List all action performed during the change',
  1025. 'Class:bizChangeTicket/Attribute:fallback' => 'Fallback Plan',
  1026. 'Class:bizChangeTicket/Attribute:fallback+' => 'Instruction to come back to former situation',
  1027. 'Class:bizChangeTicket/Attribute:assignment_count' => 'Assignment Count',
  1028. 'Class:bizChangeTicket/Attribute:assignment_count+' => 'Number of times this ticket was assigned or reassigned',
  1029. 'Class:bizChangeTicket/Attribute:impacted_infra_manual' => 'Impacted Infrastructure',
  1030. 'Class:bizChangeTicket/Attribute:impacted_infra_manual+' => 'CIs that are impacted by this change',
  1031. 'Class:bizChangeTicket/Stimulus:ev_validate' => 'Validate this change',
  1032. 'Class:bizChangeTicket/Stimulus:ev_validate+' => 'Make sure it is a valid change request',
  1033. 'Class:bizChangeTicket/Stimulus:ev_reject' => 'Reject this change',
  1034. 'Class:bizChangeTicket/Stimulus:ev_reject+' => 'This change request is rejected because it is a non valid one',
  1035. 'Class:bizChangeTicket/Stimulus:ev_assign' => 'Assign this change',
  1036. 'Class:bizChangeTicket/Stimulus:ev_assign+' => 'This change request is assigned',
  1037. 'Class:bizChangeTicket/Stimulus:ev_reopen' => 'Modify this change',
  1038. 'Class:bizChangeTicket/Stimulus:ev_reopen+' => 'Update change request to make it valid',
  1039. 'Class:bizChangeTicket/Stimulus:ev_plan' => 'Plan this change',
  1040. 'Class:bizChangeTicket/Stimulus:ev_plan+' => 'Plan and Schedule this change for validation',
  1041. 'Class:bizChangeTicket/Stimulus:ev_approve' => 'Approve this change',
  1042. 'Class:bizChangeTicket/Stimulus:ev_approve+' => 'This change is approved by CAB',
  1043. 'Class:bizChangeTicket/Stimulus:ev_replan' => 'Update planning and schedule',
  1044. 'Class:bizChangeTicket/Stimulus:ev_replan+' => 'Modify Plan and Schedule in order to have this change re-validated',
  1045. 'Class:bizChangeTicket/Stimulus:ev_notapprove' => 'Not approve this change',
  1046. 'Class:bizChangeTicket/Stimulus:ev_notapprove+' => 'This change is not approved by CAB',
  1047. 'Class:bizChangeTicket/Stimulus:ev_implement' => 'Implement this change',
  1048. 'Class:bizChangeTicket/Stimulus:ev_implement+' => 'Implementation pahse for current change',
  1049. 'Class:bizChangeTicket/Stimulus:ev_monitor' => 'Monitor this change',
  1050. 'Class:bizChangeTicket/Stimulus:ev_monitor+' => 'Starting monitoring period for this change',
  1051. 'Class:bizChangeTicket/Stimulus:ev_finish' => 'Close change',
  1052. 'Class:bizChangeTicket/Stimulus:ev_finish+' => 'Change is done, and can be closed',
  1053. ));
  1054. //
  1055. // Class: lnkInfraChangeTicket
  1056. //
  1057. Dict::Add('EN US', 'English', 'English', array(
  1058. 'Class:lnkInfraChangeTicket' => 'Infra Change Ticket',
  1059. 'Class:lnkInfraChangeTicket+' => 'Infra impacted by a Change ticket',
  1060. 'Class:lnkInfraChangeTicket/Attribute:infra_id' => 'Infrastructure',
  1061. 'Class:lnkInfraChangeTicket/Attribute:infra_id+' => 'The infrastructure impacted',
  1062. 'Class:lnkInfraChangeTicket/Attribute:infra_name' => 'Infrastructure Name',
  1063. 'Class:lnkInfraChangeTicket/Attribute:infra_name+' => 'Name of the impacted infrastructure',
  1064. 'Class:lnkInfraChangeTicket/Attribute:ticket_id' => 'Ticket',
  1065. 'Class:lnkInfraChangeTicket/Attribute:ticket_id+' => 'Ticket number',
  1066. 'Class:lnkInfraChangeTicket/Attribute:ticket_name' => 'Ticket Name',
  1067. 'Class:lnkInfraChangeTicket/Attribute:ticket_name+' => 'Name of the ticket',
  1068. 'Class:lnkInfraChangeTicket/Attribute:impact' => 'Impact',
  1069. 'Class:lnkInfraChangeTicket/Attribute:impact+' => 'Level of impact of the infra by the related ticket',
  1070. ));
  1071. //
  1072. // Class: lnkContactChange
  1073. //
  1074. Dict::Add('EN US', 'English', 'English', array(
  1075. 'Class:lnkContactChange' => 'ContactChangeLink',
  1076. 'Class:lnkContactChange+' => 'Contact associated to a change',
  1077. 'Class:lnkContactChange/Attribute:contact_id' => 'Contact',
  1078. 'Class:lnkContactChange/Attribute:contact_id+' => 'The contact linked to contract',
  1079. 'Class:lnkContactChange/Attribute:contact_mail' => 'Contact E-mail',
  1080. 'Class:lnkContactChange/Attribute:contact_mail+' => 'Mail for the contact',
  1081. 'Class:lnkContactChange/Attribute:change_id' => 'Change Ticket',
  1082. 'Class:lnkContactChange/Attribute:change_id+' => 'Change ticket ID',
  1083. 'Class:lnkContactChange/Attribute:change_number' => 'Change Ticket',
  1084. 'Class:lnkContactChange/Attribute:change_number+' => 'Ticket number for this change',
  1085. 'Class:lnkContactChange/Attribute:role' => 'Role',
  1086. 'Class:lnkContactChange/Attribute:role+' => 'Role of this contact for this change',
  1087. ));
  1088. //
  1089. // Class: bizKnownError
  1090. //
  1091. Dict::Add('EN US', 'English', 'English', array(
  1092. 'Class:bizKnownError' => 'Known Error',
  1093. 'Class:bizKnownError+' => 'Error documented for a known issue',
  1094. 'Class:bizKnownError/Attribute:name' => 'Name',
  1095. 'Class:bizKnownError/Attribute:name+' => 'Name to identify this error',
  1096. 'Class:bizKnownError/Attribute:org_id' => 'Organization',
  1097. 'Class:bizKnownError/Attribute:org_id+' => 'Organization for this known error',
  1098. 'Class:bizKnownError/Attribute:cust_name' => 'Organization',
  1099. 'Class:bizKnownError/Attribute:cust_name+' => 'Company / Department owning this object',
  1100. 'Class:bizKnownError/Attribute:symptom' => 'Symptom',
  1101. 'Class:bizKnownError/Attribute:symptom+' => 'Description of this error',
  1102. 'Class:bizKnownError/Attribute:root_cause' => 'Root cause',
  1103. 'Class:bizKnownError/Attribute:root_cause+' => 'Original cause for this known error',
  1104. 'Class:bizKnownError/Attribute:workaround' => 'Workaround',
  1105. 'Class:bizKnownError/Attribute:workaround+' => 'Work around to fix this error',
  1106. 'Class:bizKnownError/Attribute:solution' => 'Solution',
  1107. 'Class:bizKnownError/Attribute:solution+' => 'Description of this contract',
  1108. 'Class:bizKnownError/Attribute:error_code' => 'Error Code',
  1109. 'Class:bizKnownError/Attribute:error_code+' => 'Key word to identify error',
  1110. 'Class:bizKnownError/Attribute:domain' => 'Domain',
  1111. 'Class:bizKnownError/Attribute:domain+' => 'Domain for this known error, network, desktop, ...',
  1112. 'Class:bizKnownError/Attribute:domain/Value:Network' => 'Network',
  1113. 'Class:bizKnownError/Attribute:domain/Value:Network+' => 'Network',
  1114. 'Class:bizKnownError/Attribute:domain/Value:Server' => 'Server',
  1115. 'Class:bizKnownError/Attribute:domain/Value:Server+' => 'Server',
  1116. 'Class:bizKnownError/Attribute:domain/Value:Application' => 'Application',
  1117. 'Class:bizKnownError/Attribute:domain/Value:Application+' => 'Application',
  1118. 'Class:bizKnownError/Attribute:domain/Value:Desktop' => 'Desktop',
  1119. 'Class:bizKnownError/Attribute:domain/Value:Desktop+' => 'Desktop',
  1120. 'Class:bizKnownError/Attribute:vendor' => 'Vendor',
  1121. 'Class:bizKnownError/Attribute:vendor+' => 'Vendor concerned by this known error',
  1122. 'Class:bizKnownError/Attribute:model' => 'Model',
  1123. 'Class:bizKnownError/Attribute:model+' => 'Model concerned by this known error, it may be an application, a device ...',
  1124. 'Class:bizKnownError/Attribute:version' => 'Version',
  1125. 'Class:bizKnownError/Attribute:version+' => 'Version related to model impacted by known error',
  1126. ));
  1127. //
  1128. // Class: lnkInfraError
  1129. //
  1130. Dict::Add('EN US', 'English', 'English', array(
  1131. 'Class:lnkInfraError' => 'InfraErrorLinks',
  1132. 'Class:lnkInfraError+' => 'Infra related to a known error',
  1133. 'Class:lnkInfraError/Attribute:infra_id' => 'Infrastructure',
  1134. 'Class:lnkInfraError/Attribute:infra_id+' => 'The infrastructure impacted',
  1135. 'Class:lnkInfraError/Attribute:infra_name' => 'Infrastructure Name',
  1136. 'Class:lnkInfraError/Attribute:infra_name+' => 'Name of the impacted infrastructure',
  1137. 'Class:lnkInfraError/Attribute:infra_status' => 'Status',
  1138. 'Class:lnkInfraError/Attribute:infra_status+' => 'Status of the impacted infrastructure',
  1139. 'Class:lnkInfraError/Attribute:error_id' => 'Error',
  1140. 'Class:lnkInfraError/Attribute:error_id+' => 'Error id',
  1141. 'Class:lnkInfraError/Attribute:error_name' => 'Error Name',
  1142. 'Class:lnkInfraError/Attribute:error_name+' => 'Name of the error',
  1143. ));
  1144. //
  1145. // Class: lnkDocumentError
  1146. //
  1147. Dict::Add('EN US', 'English', 'English', array(
  1148. 'Class:lnkDocumentError' => 'DocumentsErrorLinks',
  1149. 'Class:lnkDocumentError+' => 'A link between a document and a known error',
  1150. 'Class:lnkDocumentError/Attribute:doc_id' => 'Document',
  1151. 'Class:lnkDocumentError/Attribute:doc_id+' => 'id of the Document',
  1152. 'Class:lnkDocumentError/Attribute:doc_name' => 'Document Name',
  1153. 'Class:lnkDocumentError/Attribute:doc_name+' => 'name of the document',
  1154. 'Class:lnkDocumentError/Attribute:error_id' => 'Error',
  1155. 'Class:lnkDocumentError/Attribute:error_id+' => 'Error linked to this document',
  1156. 'Class:lnkDocumentError/Attribute:error_name' => 'Error Name',
  1157. 'Class:lnkDocumentError/Attribute:error_name+' => 'name of the linked error',
  1158. 'Class:lnkDocumentError/Attribute:link_type' => 'Link Type',
  1159. 'Class:lnkDocumentError/Attribute:link_type+' => 'More information',
  1160. ));
  1161. //
  1162. // Class: bizServiceCall
  1163. //
  1164. Dict::Add('EN US', 'English', 'English', array(
  1165. 'Class:bizServiceCall' => 'ServiceCall',
  1166. 'Class:bizServiceCall+' => 'Service Call from customer',
  1167. 'Class:bizServiceCall/Attribute:name' => 'Service Call Ref',
  1168. 'Class:bizServiceCall/Attribute:name+' => 'Refence identifier for this service call',
  1169. 'Class:bizServiceCall/Attribute:title' => 'Title',
  1170. 'Class:bizServiceCall/Attribute:title+' => 'Overview of the service call',
  1171. 'Class:bizServiceCall/Attribute:type' => 'Type',
  1172. 'Class:bizServiceCall/Attribute:type+' => 'Type of the Incident',
  1173. 'Class:bizServiceCall/Attribute:type/Value:Network' => 'Network',
  1174. 'Class:bizServiceCall/Attribute:type/Value:Network+' => 'Network',
  1175. 'Class:bizServiceCall/Attribute:type/Value:Server' => 'Server',
  1176. 'Class:bizServiceCall/Attribute:type/Value:Server+' => 'Server',
  1177. 'Class:bizServiceCall/Attribute:type/Value:Desktop' => 'Desktop',
  1178. 'Class:bizServiceCall/Attribute:type/Value:Desktop+' => 'Desktop',
  1179. 'Class:bizServiceCall/Attribute:type/Value:Application' => 'Application',
  1180. 'Class:bizServiceCall/Attribute:type/Value:Application+' => 'Application',
  1181. 'Class:bizServiceCall/Attribute:org_id' => 'Customer',
  1182. 'Class:bizServiceCall/Attribute:org_id+' => 'Customer concerned by this service call',
  1183. 'Class:bizServiceCall/Attribute:customer_name' => 'Customer',
  1184. 'Class:bizServiceCall/Attribute:customer_name+' => 'Name of the customer raising this service call',
  1185. 'Class:bizServiceCall/Attribute:call_status' => 'Status',
  1186. 'Class:bizServiceCall/Attribute:call_status+' => 'Status of the ticket',
  1187. 'Class:bizServiceCall/Attribute:call_status/Value:New' => 'New (Unassigned)',
  1188. 'Class:bizServiceCall/Attribute:call_status/Value:New+' => 'Newly created call',
  1189. 'Class:bizServiceCall/Attribute:call_status/Value:Assigned' => 'Assigned',
  1190. 'Class:bizServiceCall/Attribute:call_status/Value:Assigned+' => 'Call is assigned to somebody',
  1191. 'Class:bizServiceCall/Attribute:call_status/Value:WorkInProgress' => 'Work In Progress',
  1192. 'Class:bizServiceCall/Attribute:call_status/Value:WorkInProgress+' => 'Work is in progress',
  1193. 'Class:bizServiceCall/Attribute:call_status/Value:Resolved' => 'Resolved',
  1194. 'Class:bizServiceCall/Attribute:call_status/Value:Resolved+' => 'Call is resolved',
  1195. 'Class:bizServiceCall/Attribute:call_status/Value:Closed' => 'Closed',
  1196. 'Class:bizServiceCall/Attribute:call_status/Value:Closed+' => 'Call is closed',
  1197. 'Class:bizServiceCall/Attribute:call_description' => 'Description',
  1198. 'Class:bizServiceCall/Attribute:call_description+' => 'Description of the call as describe by caller',
  1199. 'Class:bizServiceCall/Attribute:creation_date' => 'Creation date',
  1200. 'Class:bizServiceCall/Attribute:creation_date+' => 'Call creation date',
  1201. 'Class:bizServiceCall/Attribute:last_update' => 'Last update',
  1202. 'Class:bizServiceCall/Attribute:last_update+' => 'last time the call was modified',
  1203. 'Class:bizServiceCall/Attribute:next_update' => 'Next update',
  1204. 'Class:bizServiceCall/Attribute:next_update+' => 'next time the Ticket is expected to be modified',
  1205. 'Class:bizServiceCall/Attribute:end_date' => 'Closure Date',
  1206. 'Class:bizServiceCall/Attribute:end_date+' => 'Date when the call was closed',
  1207. 'Class:bizServiceCall/Attribute:caller_id' => 'Caller',
  1208. 'Class:bizServiceCall/Attribute:caller_id+' => 'person that trigger this call',
  1209. 'Class:bizServiceCall/Attribute:caller_mail' => 'Caller',
  1210. 'Class:bizServiceCall/Attribute:caller_mail+' => 'Person that trigger this call',
  1211. 'Class:bizServiceCall/Attribute:impact' => 'Impact',
  1212. 'Class:bizServiceCall/Attribute:impact+' => 'Impact for this call',
  1213. 'Class:bizServiceCall/Attribute:workgroup_id' => 'Workgroup',
  1214. 'Class:bizServiceCall/Attribute:workgroup_id+' => 'which workgroup is owning call',
  1215. 'Class:bizServiceCall/Attribute:workgroup_name' => 'Workgroup',
  1216. 'Class:bizServiceCall/Attribute:workgroup_name+' => 'name of workgroup managing the call',
  1217. 'Class:bizServiceCall/Attribute:agent_id' => 'Agent',
  1218. 'Class:bizServiceCall/Attribute:agent_id+' => 'who is managing the call',
  1219. 'Class:bizServiceCall/Attribute:agent_mail' => 'Agent',
  1220. 'Class:bizServiceCall/Attribute:agent_mail+' => 'mail of agent managing the call',
  1221. 'Class:bizServiceCall/Attribute:action_log' => 'Action Logs',
  1222. 'Class:bizServiceCall/Attribute:action_log+' => 'List all action performed during the call',
  1223. 'Class:bizServiceCall/Attribute:severity' => 'Severity',
  1224. 'Class:bizServiceCall/Attribute:severity+' => 'Field defining the criticity for the call',
  1225. 'Class:bizServiceCall/Attribute:severity/Value:critical' => 'critical',
  1226. 'Class:bizServiceCall/Attribute:severity/Value:critical+' => 'critical',
  1227. 'Class:bizServiceCall/Attribute:severity/Value:medium' => 'medium',
  1228. 'Class:bizServiceCall/Attribute:severity/Value:medium+' => 'medium',
  1229. 'Class:bizServiceCall/Attribute:severity/Value:low' => 'low',
  1230. 'Class:bizServiceCall/Attribute:severity/Value:low+' => 'low',
  1231. 'Class:bizServiceCall/Attribute:resolution' => 'Resolution',
  1232. 'Class:bizServiceCall/Attribute:resolution+' => 'Description of the resolution',
  1233. 'Class:bizServiceCall/Attribute:source' => 'Source',
  1234. 'Class:bizServiceCall/Attribute:source+' => 'source type for this call',
  1235. 'Class:bizServiceCall/Attribute:source/Value:phone' => 'phone',
  1236. 'Class:bizServiceCall/Attribute:source/Value:phone+' => 'phone',
  1237. 'Class:bizServiceCall/Attribute:source/Value:E-mail' => 'E-mail',
  1238. 'Class:bizServiceCall/Attribute:source/Value:E-mail+' => 'E-mail',
  1239. 'Class:bizServiceCall/Attribute:source/Value:Fax' => 'Fax',
  1240. 'Class:bizServiceCall/Attribute:source/Value:Fax+' => 'Fax',
  1241. 'Class:bizServiceCall/Attribute:impacted_infra_manual' => 'Impacted Infrastructure',
  1242. 'Class:bizServiceCall/Attribute:impacted_infra_manual+' => 'CIs that are not meeting the SLA',
  1243. 'Class:bizServiceCall/Attribute:related_tickets' => 'Related Incident',
  1244. 'Class:bizServiceCall/Attribute:related_tickets+' => 'Other incident tickets related to this call',
  1245. 'Class:bizServiceCall/Stimulus:ev_assign' => 'Assign this call',
  1246. 'Class:bizServiceCall/Stimulus:ev_assign+' => 'Assign this call to a group and an agent',
  1247. 'Class:bizServiceCall/Stimulus:ev_reassign' => 'Reassign this call',
  1248. 'Class:bizServiceCall/Stimulus:ev_reassign+' => 'Reassign this call to a different group and agent',
  1249. 'Class:bizServiceCall/Stimulus:ev_start_working' => 'Work on this call',
  1250. 'Class:bizServiceCall/Stimulus:ev_start_working+' => 'Start working on this call',
  1251. 'Class:bizServiceCall/Stimulus:ev_resolve' => 'Resolve this call',
  1252. 'Class:bizServiceCall/Stimulus:ev_resolve+' => 'Resolve this call',
  1253. 'Class:bizServiceCall/Stimulus:ev_close' => 'Close this call',
  1254. 'Class:bizServiceCall/Stimulus:ev_close+' => 'Close this call',
  1255. ));
  1256. //
  1257. // Class: lnkCallTicket
  1258. //
  1259. Dict::Add('EN US', 'English', 'English', array(
  1260. 'Class:lnkCallTicket' => 'Call Ticket',
  1261. 'Class:lnkCallTicket+' => 'Ticket related to a call',
  1262. 'Class:lnkCallTicket/Attribute:ticket_id' => 'Related Ticket',
  1263. 'Class:lnkCallTicket/Attribute:ticket_id+' => 'The related ticket',
  1264. 'Class:lnkCallTicket/Attribute:ticket_name' => 'Related ticket',
  1265. 'Class:lnkCallTicket/Attribute:ticket_name+' => 'Name of the related ticket',
  1266. 'Class:lnkCallTicket/Attribute:call_id' => 'Call',
  1267. 'Class:lnkCallTicket/Attribute:call_id+' => 'Ticket number',
  1268. 'Class:lnkCallTicket/Attribute:call_name' => 'Call name',
  1269. 'Class:lnkCallTicket/Attribute:call_name+' => 'Name of the call',
  1270. 'Class:lnkCallTicket/Attribute:impact' => 'Impact',
  1271. 'Class:lnkCallTicket/Attribute:impact+' => 'Impact on the call',
  1272. ));
  1273. //
  1274. // Class: lnkInfraCall
  1275. //
  1276. Dict::Add('EN US', 'English', 'English', array(
  1277. 'Class:lnkInfraCall' => 'Infra Call',
  1278. 'Class:lnkInfraCall+' => 'Infra concerned by a call',
  1279. 'Class:lnkInfraCall/Attribute:infra_id' => 'Infrastructure',
  1280. 'Class:lnkInfraCall/Attribute:infra_id+' => 'The infrastructure impacted',
  1281. 'Class:lnkInfraCall/Attribute:infra_name' => 'Infrastructure Name',
  1282. 'Class:lnkInfraCall/Attribute:infra_name+' => 'Name of the impacted infrastructure',
  1283. 'Class:lnkInfraCall/Attribute:call_id' => 'Call',
  1284. 'Class:lnkInfraCall/Attribute:call_id+' => 'Call number',
  1285. 'Class:lnkInfraCall/Attribute:call_name' => 'Call name',
  1286. 'Class:lnkInfraCall/Attribute:call_name+' => 'Name of the call',
  1287. 'Class:lnkInfraCall/Attribute:impact' => 'Impact',
  1288. 'Class:lnkInfraCall/Attribute:impact+' => 'Level of impact of the infra by the related ticket',
  1289. ));
  1290. ?>