dictionary.itop.model.php 79 KB

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