dictionary.itop.core.php 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572
  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. Dict::Add('EN US', 'English', 'English', array(
  25. 'Core:AttributeLinkedSet' => 'Array of objects',
  26. 'Core:AttributeLinkedSet+' => 'Any kind of objects of the same class or subclass',
  27. 'Core:AttributeLinkedSetIndirect' => 'Array of objects (N-N)',
  28. 'Core:AttributeLinkedSetIndirect+' => 'Any kind of objects [subclass] of the same class',
  29. 'Core:AttributeInteger' => 'Integer',
  30. 'Core:AttributeInteger+' => 'Numeric value (could be negative)',
  31. 'Core:AttributeDecimal' => 'Decimal',
  32. 'Core:AttributeDecimal+' => 'Decimal value (could be negative)',
  33. 'Core:AttributeBoolean' => 'Boolean',
  34. 'Core:AttributeBoolean+' => 'Boolean',
  35. 'Core:AttributeString' => 'String',
  36. 'Core:AttributeString+' => 'Alphanumeric string',
  37. 'Core:AttributeClass' => 'Class',
  38. 'Core:AttributeClass+' => 'Class',
  39. 'Core:AttributeApplicationLanguage' => 'User language',
  40. 'Core:AttributeApplicationLanguage+' => 'Language and country (EN US)',
  41. 'Core:AttributeFinalClass' => 'Class (auto)',
  42. 'Core:AttributeFinalClass+' => 'Real class of the object (automatically created by the core)',
  43. 'Core:AttributePassword' => 'Password',
  44. 'Core:AttributePassword+' => 'Password of an external device',
  45. 'Core:AttributeEncryptedString' => 'Encrypted string',
  46. 'Core:AttributeEncryptedString+' => 'String encrypted with a local key',
  47. 'Core:AttributeText' => 'Text',
  48. 'Core:AttributeText+' => 'Multiline character string',
  49. 'Core:AttributeHTML' => 'HTML',
  50. 'Core:AttributeHTML+' => 'HTML string',
  51. 'Core:AttributeEmailAddress' => 'Email address',
  52. 'Core:AttributeEmailAddress+' => 'Email address',
  53. 'Core:AttributeIPAddress' => 'IP address',
  54. 'Core:AttributeIPAddress+' => 'IP address',
  55. 'Core:AttributeOQL' => 'OQL',
  56. 'Core:AttributeOQL+' => 'Object Query Langage expression',
  57. 'Core:AttributeEnum' => 'Enum',
  58. 'Core:AttributeEnum+' => 'List of predefined alphanumeric strings',
  59. 'Core:AttributeTemplateString' => 'Template string',
  60. 'Core:AttributeTemplateString+' => 'String containing placeholders',
  61. 'Core:AttributeTemplateText' => 'Template text',
  62. 'Core:AttributeTemplateText+' => 'Text containing placeholders',
  63. 'Core:AttributeTemplateHTML' => 'Template HTML',
  64. 'Core:AttributeTemplateHTML+' => 'HTML containing placeholders',
  65. 'Core:AttributeWikiText' => 'Wiki article',
  66. 'Core:AttributeWikiText+' => 'Wiki formatted text',
  67. 'Core:AttributeDateTime' => 'Date/time',
  68. 'Core:AttributeDateTime+' => 'Date and time (year-month-day hh:mm:ss)',
  69. 'Core:AttributeDate' => 'Date',
  70. 'Core:AttributeDate+' => 'Date (year-month-day)',
  71. 'Core:AttributeDeadline' => 'Deadline',
  72. 'Core:AttributeDeadline+' => 'Date, displayed relatively to the current time',
  73. 'Core:AttributeExternalKey' => 'External key',
  74. 'Core:AttributeExternalKey+' => 'External (or foreign) key',
  75. 'Core:AttributeExternalField' => 'External field',
  76. 'Core:AttributeExternalField+' => 'Field mapped to an external key',
  77. 'Core:AttributeURL' => 'URL',
  78. 'Core:AttributeURL+' => 'Absolute or relative URL as a text string',
  79. 'Core:AttributeBlob' => 'Blob',
  80. 'Core:AttributeBlob+' => 'Any binary content (document)',
  81. 'Core:AttributeOneWayPassword' => 'One way password',
  82. 'Core:AttributeOneWayPassword+' => 'One way encrypted (hashed) password',
  83. 'Core:AttributeTable' => 'Table',
  84. 'Core:AttributeTable+' => 'Indexed array having two dimensions',
  85. 'Core:AttributePropertySet' => 'Properties',
  86. 'Core:AttributePropertySet+' => 'List of untyped properties (name and value)',
  87. ));
  88. //////////////////////////////////////////////////////////////////////
  89. // Classes in 'core/cmdb'
  90. //////////////////////////////////////////////////////////////////////
  91. //
  92. //
  93. // Class: CMDBChange
  94. //
  95. Dict::Add('EN US', 'English', 'English', array(
  96. 'Class:CMDBChange' => 'Change',
  97. 'Class:CMDBChange+' => 'Changes tracking',
  98. 'Class:CMDBChange/Attribute:date' => 'date',
  99. 'Class:CMDBChange/Attribute:date+' => 'date and time at which the changes have been recorded',
  100. 'Class:CMDBChange/Attribute:userinfo' => 'misc. info',
  101. 'Class:CMDBChange/Attribute:userinfo+' => 'caller\'s defined information',
  102. ));
  103. //
  104. // Class: CMDBChangeOp
  105. //
  106. Dict::Add('EN US', 'English', 'English', array(
  107. 'Class:CMDBChangeOp' => 'Change Operation',
  108. 'Class:CMDBChangeOp+' => 'Change operations tracking',
  109. 'Class:CMDBChangeOp/Attribute:change' => 'change',
  110. 'Class:CMDBChangeOp/Attribute:change+' => 'change',
  111. 'Class:CMDBChangeOp/Attribute:date' => 'date',
  112. 'Class:CMDBChangeOp/Attribute:date+' => 'date and time of the change',
  113. 'Class:CMDBChangeOp/Attribute:userinfo' => 'user',
  114. 'Class:CMDBChangeOp/Attribute:userinfo+' => 'who made this change',
  115. 'Class:CMDBChangeOp/Attribute:objclass' => 'object class',
  116. 'Class:CMDBChangeOp/Attribute:objclass+' => 'object class',
  117. 'Class:CMDBChangeOp/Attribute:objkey' => 'object id',
  118. 'Class:CMDBChangeOp/Attribute:objkey+' => 'object id',
  119. 'Class:CMDBChangeOp/Attribute:finalclass' => 'type',
  120. 'Class:CMDBChangeOp/Attribute:finalclass+' => '',
  121. ));
  122. //
  123. // Class: CMDBChangeOpCreate
  124. //
  125. Dict::Add('EN US', 'English', 'English', array(
  126. 'Class:CMDBChangeOpCreate' => 'object creation',
  127. 'Class:CMDBChangeOpCreate+' => 'Object creation tracking',
  128. ));
  129. //
  130. // Class: CMDBChangeOpDelete
  131. //
  132. Dict::Add('EN US', 'English', 'English', array(
  133. 'Class:CMDBChangeOpDelete' => 'object deletion',
  134. 'Class:CMDBChangeOpDelete+' => 'Object deletion tracking',
  135. ));
  136. //
  137. // Class: CMDBChangeOpSetAttribute
  138. //
  139. Dict::Add('EN US', 'English', 'English', array(
  140. 'Class:CMDBChangeOpSetAttribute' => 'object change',
  141. 'Class:CMDBChangeOpSetAttribute+' => 'Object properties change tracking',
  142. 'Class:CMDBChangeOpSetAttribute/Attribute:attcode' => 'Attribute',
  143. 'Class:CMDBChangeOpSetAttribute/Attribute:attcode+' => 'code of the modified property',
  144. ));
  145. //
  146. // Class: CMDBChangeOpSetAttributeScalar
  147. //
  148. Dict::Add('EN US', 'English', 'English', array(
  149. 'Class:CMDBChangeOpSetAttributeScalar' => 'property change',
  150. 'Class:CMDBChangeOpSetAttributeScalar+' => 'Object scalar properties change tracking',
  151. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:oldvalue' => 'Previous value',
  152. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:oldvalue+' => 'previous value of the attribute',
  153. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:newvalue' => 'New value',
  154. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:newvalue+' => 'new value of the attribute',
  155. ));
  156. // Used by CMDBChangeOp... & derived classes
  157. Dict::Add('EN US', 'English', 'English', array(
  158. 'Change:ObjectCreated' => 'Object created',
  159. 'Change:ObjectDeleted' => 'Object deleted',
  160. 'Change:ObjectModified' => 'Object modified',
  161. 'Change:AttName_SetTo_NewValue_PreviousValue_OldValue' => '%1$s set to %2$s (previous value: %3$s)',
  162. 'Change:Text_AppendedTo_AttName' => '%1$s appended to %2$s',
  163. 'Change:AttName_Changed_PreviousValue_OldValue' => '%1$s modified, previous value: %2$s',
  164. 'Change:AttName_Changed' => '%1$s modified',
  165. ));
  166. //
  167. // Class: CMDBChangeOpSetAttributeBlob
  168. //
  169. Dict::Add('EN US', 'English', 'English', array(
  170. 'Class:CMDBChangeOpSetAttributeBlob' => 'data change',
  171. 'Class:CMDBChangeOpSetAttributeBlob+' => 'data change tracking',
  172. 'Class:CMDBChangeOpSetAttributeBlob/Attribute:prevdata' => 'Previous data',
  173. 'Class:CMDBChangeOpSetAttributeBlob/Attribute:prevdata+' => 'previous contents of the attribute',
  174. ));
  175. //
  176. // Class: CMDBChangeOpSetAttributeText
  177. //
  178. Dict::Add('EN US', 'English', 'English', array(
  179. 'Class:CMDBChangeOpSetAttributeText' => 'text change',
  180. 'Class:CMDBChangeOpSetAttributeText+' => 'text change tracking',
  181. 'Class:CMDBChangeOpSetAttributeText/Attribute:prevdata' => 'Previous data',
  182. 'Class:CMDBChangeOpSetAttributeText/Attribute:prevdata+' => 'previous contents of the attribute',
  183. ));
  184. //
  185. // Class: Event
  186. //
  187. Dict::Add('EN US', 'English', 'English', array(
  188. 'Class:Event' => 'Log Event',
  189. 'Class:Event+' => 'An application internal event',
  190. 'Class:Event/Attribute:message' => 'Message',
  191. 'Class:Event/Attribute:message+' => 'short description of the event',
  192. 'Class:Event/Attribute:date' => 'Date',
  193. 'Class:Event/Attribute:date+' => 'date and time at which the changes have been recorded',
  194. 'Class:Event/Attribute:userinfo' => 'User info',
  195. 'Class:Event/Attribute:userinfo+' => 'identification of the user that was doing the action that triggered this event',
  196. 'Class:Event/Attribute:finalclass' => 'Type',
  197. 'Class:Event/Attribute:finalclass+' => '',
  198. ));
  199. //
  200. // Class: EventNotification
  201. //
  202. Dict::Add('EN US', 'English', 'English', array(
  203. 'Class:EventNotification' => 'Notification event',
  204. 'Class:EventNotification+' => 'Trace of a notification that has been sent',
  205. 'Class:EventNotification/Attribute:trigger_id' => 'Trigger',
  206. 'Class:EventNotification/Attribute:trigger_id+' => 'user account',
  207. 'Class:EventNotification/Attribute:action_id' => 'user',
  208. 'Class:EventNotification/Attribute:action_id+' => 'user account',
  209. 'Class:EventNotification/Attribute:object_id' => 'Object id',
  210. 'Class:EventNotification/Attribute:object_id+' => 'object id (class defined by the trigger ?)',
  211. ));
  212. //
  213. // Class: EventNotificationEmail
  214. //
  215. Dict::Add('EN US', 'English', 'English', array(
  216. 'Class:EventNotificationEmail' => 'Email emission event',
  217. 'Class:EventNotificationEmail+' => 'Trace of an email that has been sent',
  218. 'Class:EventNotificationEmail/Attribute:to' => 'TO',
  219. 'Class:EventNotificationEmail/Attribute:to+' => 'TO',
  220. 'Class:EventNotificationEmail/Attribute:cc' => 'CC',
  221. 'Class:EventNotificationEmail/Attribute:cc+' => 'CC',
  222. 'Class:EventNotificationEmail/Attribute:bcc' => 'BCC',
  223. 'Class:EventNotificationEmail/Attribute:bcc+' => 'BCC',
  224. 'Class:EventNotificationEmail/Attribute:from' => 'From',
  225. 'Class:EventNotificationEmail/Attribute:from+' => 'Sender of the message',
  226. 'Class:EventNotificationEmail/Attribute:subject' => 'Subject',
  227. 'Class:EventNotificationEmail/Attribute:subject+' => 'Subject',
  228. 'Class:EventNotificationEmail/Attribute:body' => 'Body',
  229. 'Class:EventNotificationEmail/Attribute:body+' => 'Body',
  230. ));
  231. //
  232. // Class: EventIssue
  233. //
  234. Dict::Add('EN US', 'English', 'English', array(
  235. 'Class:EventIssue' => 'Issue event',
  236. 'Class:EventIssue+' => 'Trace of an issue (warning, error, etc.)',
  237. 'Class:EventIssue/Attribute:issue' => 'Issue',
  238. 'Class:EventIssue/Attribute:issue+' => 'What happened',
  239. 'Class:EventIssue/Attribute:impact' => 'Impact',
  240. 'Class:EventIssue/Attribute:impact+' => 'What are the consequences',
  241. 'Class:EventIssue/Attribute:page' => 'Page',
  242. 'Class:EventIssue/Attribute:page+' => 'HTTP entry point',
  243. 'Class:EventIssue/Attribute:arguments_post' => 'Posted arguments',
  244. 'Class:EventIssue/Attribute:arguments_post+' => 'HTTP POST arguments',
  245. 'Class:EventIssue/Attribute:arguments_get' => 'URL arguments',
  246. 'Class:EventIssue/Attribute:arguments_get+' => 'HTTP GET arguments',
  247. 'Class:EventIssue/Attribute:callstack' => 'Callstack',
  248. 'Class:EventIssue/Attribute:callstack+' => 'Call stack',
  249. 'Class:EventIssue/Attribute:data' => 'Data',
  250. 'Class:EventIssue/Attribute:data+' => 'More information',
  251. ));
  252. //
  253. // Class: EventWebService
  254. //
  255. Dict::Add('EN US', 'English', 'English', array(
  256. 'Class:EventWebService' => 'Web service event',
  257. 'Class:EventWebService+' => 'Trace of an web service call',
  258. 'Class:EventWebService/Attribute:verb' => 'Verb',
  259. 'Class:EventWebService/Attribute:verb+' => 'Name of the operation',
  260. 'Class:EventWebService/Attribute:result' => 'Result',
  261. 'Class:EventWebService/Attribute:result+' => 'Overall success/failure',
  262. 'Class:EventWebService/Attribute:log_info' => 'Info log',
  263. 'Class:EventWebService/Attribute:log_info+' => 'Result info log',
  264. 'Class:EventWebService/Attribute:log_warning' => 'Warning log',
  265. 'Class:EventWebService/Attribute:log_warning+' => 'Result warning log',
  266. 'Class:EventWebService/Attribute:log_error' => 'Error log',
  267. 'Class:EventWebService/Attribute:log_error+' => 'Result error log',
  268. 'Class:EventWebService/Attribute:data' => 'Data',
  269. 'Class:EventWebService/Attribute:data+' => 'Result data',
  270. ));
  271. //
  272. // Class: EventLoginUsage
  273. //
  274. Dict::Add('EN US', 'English', 'English', array(
  275. 'Class:EventLoginUsage' => 'Login Usage',
  276. 'Class:EventLoginUsage+' => 'Connection to the application',
  277. 'Class:EventLoginUsage/Attribute:user_id' => 'Login',
  278. 'Class:EventLoginUsage/Attribute:user_id+' => 'Login',
  279. 'Class:EventLoginUsage/Attribute:contact_name' => 'User Name',
  280. 'Class:EventLoginUsage/Attribute:contact_name+' => 'User Name',
  281. 'Class:EventLoginUsage/Attribute:contact_email' => 'User Email',
  282. 'Class:EventLoginUsage/Attribute:contact_email+' => 'Email Address of the User',
  283. ));
  284. //
  285. // Class: Action
  286. //
  287. Dict::Add('EN US', 'English', 'English', array(
  288. 'Class:Action' => 'Custom Action',
  289. 'Class:Action+' => 'User defined action',
  290. 'Class:Action/Attribute:name' => 'Name',
  291. 'Class:Action/Attribute:name+' => '',
  292. 'Class:Action/Attribute:description' => 'Description',
  293. 'Class:Action/Attribute:description+' => '',
  294. 'Class:Action/Attribute:status' => 'Status',
  295. 'Class:Action/Attribute:status+' => 'In production or ?',
  296. 'Class:Action/Attribute:status/Value:test' => 'Being tested',
  297. 'Class:Action/Attribute:status/Value:test+' => 'Being tested',
  298. 'Class:Action/Attribute:status/Value:enabled' => 'In production',
  299. 'Class:Action/Attribute:status/Value:enabled+' => 'In production',
  300. 'Class:Action/Attribute:status/Value:disabled' => 'Inactive',
  301. 'Class:Action/Attribute:status/Value:disabled+' => 'Inactive',
  302. 'Class:Action/Attribute:trigger_list' => 'Related Triggers',
  303. 'Class:Action/Attribute:trigger_list+' => 'Triggers linked to this action',
  304. 'Class:Action/Attribute:finalclass' => 'Type',
  305. 'Class:Action/Attribute:finalclass+' => '',
  306. ));
  307. //
  308. // Class: ActionNotification
  309. //
  310. Dict::Add('EN US', 'English', 'English', array(
  311. 'Class:ActionNotification' => 'Notification',
  312. 'Class:ActionNotification+' => 'Notification (abstract)',
  313. ));
  314. //
  315. // Class: ActionEmail
  316. //
  317. Dict::Add('EN US', 'English', 'English', array(
  318. 'Class:ActionEmail' => 'Email notification',
  319. 'Class:ActionEmail+' => '',
  320. 'Class:ActionEmail/Attribute:test_recipient' => 'Test recipient',
  321. 'Class:ActionEmail/Attribute:test_recipient+' => 'Detination in case status is set to "Test"',
  322. 'Class:ActionEmail/Attribute:from' => 'From',
  323. 'Class:ActionEmail/Attribute:from+' => 'Will be sent into the email header',
  324. 'Class:ActionEmail/Attribute:reply_to' => 'Reply to',
  325. 'Class:ActionEmail/Attribute:reply_to+' => 'Will be sent into the email header',
  326. 'Class:ActionEmail/Attribute:to' => 'To',
  327. 'Class:ActionEmail/Attribute:to+' => 'Destination of the email',
  328. 'Class:ActionEmail/Attribute:cc' => 'Cc',
  329. 'Class:ActionEmail/Attribute:cc+' => 'Carbon Copy',
  330. 'Class:ActionEmail/Attribute:bcc' => 'bcc',
  331. 'Class:ActionEmail/Attribute:bcc+' => 'Blind Carbon Copy',
  332. 'Class:ActionEmail/Attribute:subject' => 'subject',
  333. 'Class:ActionEmail/Attribute:subject+' => 'Title of the email',
  334. 'Class:ActionEmail/Attribute:body' => 'body',
  335. 'Class:ActionEmail/Attribute:body+' => 'Contents of the email',
  336. 'Class:ActionEmail/Attribute:importance' => 'importance',
  337. 'Class:ActionEmail/Attribute:importance+' => 'Importance flag',
  338. 'Class:ActionEmail/Attribute:importance/Value:low' => 'low',
  339. 'Class:ActionEmail/Attribute:importance/Value:low+' => 'low',
  340. 'Class:ActionEmail/Attribute:importance/Value:normal' => 'normal',
  341. 'Class:ActionEmail/Attribute:importance/Value:normal+' => 'normal',
  342. 'Class:ActionEmail/Attribute:importance/Value:high' => 'high',
  343. 'Class:ActionEmail/Attribute:importance/Value:high+' => 'high',
  344. ));
  345. //
  346. // Class: Trigger
  347. //
  348. Dict::Add('EN US', 'English', 'English', array(
  349. 'Class:Trigger' => 'Trigger',
  350. 'Class:Trigger+' => 'Custom event handler',
  351. 'Class:Trigger/Attribute:description' => 'Description',
  352. 'Class:Trigger/Attribute:description+' => 'one line description',
  353. 'Class:Trigger/Attribute:action_list' => 'Triggered actions',
  354. 'Class:Trigger/Attribute:action_list+' => 'Actions performed when the trigger is activated',
  355. 'Class:Trigger/Attribute:finalclass' => 'Type',
  356. 'Class:Trigger/Attribute:finalclass+' => '',
  357. ));
  358. //
  359. // Class: TriggerOnObject
  360. //
  361. Dict::Add('EN US', 'English', 'English', array(
  362. 'Class:TriggerOnObject' => 'Trigger (class dependent)',
  363. 'Class:TriggerOnObject+' => 'Trigger on a given class of objects',
  364. 'Class:TriggerOnObject/Attribute:target_class' => 'Target class',
  365. 'Class:TriggerOnObject/Attribute:target_class+' => '',
  366. ));
  367. //
  368. // Class: TriggerOnStateChange
  369. //
  370. Dict::Add('EN US', 'English', 'English', array(
  371. 'Class:TriggerOnStateChange' => 'Trigger (on state change)',
  372. 'Class:TriggerOnStateChange+' => 'Trigger on object state change',
  373. 'Class:TriggerOnStateChange/Attribute:state' => 'State',
  374. 'Class:TriggerOnStateChange/Attribute:state+' => '',
  375. ));
  376. //
  377. // Class: TriggerOnStateEnter
  378. //
  379. Dict::Add('EN US', 'English', 'English', array(
  380. 'Class:TriggerOnStateEnter' => 'Trigger (on entering a state)',
  381. 'Class:TriggerOnStateEnter+' => 'Trigger on object state change - entering',
  382. ));
  383. //
  384. // Class: TriggerOnStateLeave
  385. //
  386. Dict::Add('EN US', 'English', 'English', array(
  387. 'Class:TriggerOnStateLeave' => 'Trigger (on leaving a state)',
  388. 'Class:TriggerOnStateLeave+' => 'Trigger on object state change - leaving',
  389. ));
  390. //
  391. // Class: TriggerOnObjectCreate
  392. //
  393. Dict::Add('EN US', 'English', 'English', array(
  394. 'Class:TriggerOnObjectCreate' => 'Trigger (on object creation)',
  395. 'Class:TriggerOnObjectCreate+' => 'Trigger on object creation of [a child class of] the given class',
  396. ));
  397. //
  398. // Class: lnkTriggerAction
  399. //
  400. Dict::Add('EN US', 'English', 'English', array(
  401. 'Class:lnkTriggerAction' => 'Action/Trigger',
  402. 'Class:lnkTriggerAction+' => 'Link between a trigger and an action',
  403. 'Class:lnkTriggerAction/Attribute:action_id' => 'Action',
  404. 'Class:lnkTriggerAction/Attribute:action_id+' => 'The action to be executed',
  405. 'Class:lnkTriggerAction/Attribute:action_name' => 'Action',
  406. 'Class:lnkTriggerAction/Attribute:action_name+' => '',
  407. 'Class:lnkTriggerAction/Attribute:trigger_id' => 'Trigger',
  408. 'Class:lnkTriggerAction/Attribute:trigger_id+' => '',
  409. 'Class:lnkTriggerAction/Attribute:trigger_name' => 'Trigger',
  410. 'Class:lnkTriggerAction/Attribute:trigger_name+' => '',
  411. 'Class:lnkTriggerAction/Attribute:order' => 'Order',
  412. 'Class:lnkTriggerAction/Attribute:order+' => 'Actions execution order',
  413. ));
  414. //
  415. // Synchro Data Source
  416. //
  417. Dict::Add('EN US', 'English', 'English', array(
  418. 'Core:SynchroAttributes' => 'Attributes',
  419. 'Core:SynchroStatus' => 'Status',
  420. 'Core:Synchro:ErrorsLabel' => 'Errors',
  421. 'Core:Synchro:CreatedLabel' => 'Created',
  422. 'Core:Synchro:ModifiedLabel' => 'Modified',
  423. 'Core:Synchro:UnchangedLabel' => 'Unchanged',
  424. 'Core:Synchro:ReconciledErrorsLabel' => 'Errors',
  425. 'Core:Synchro:ReconciledLabel' => 'Reconciled',
  426. 'Core:Synchro:ReconciledNewLabel' => 'Created',
  427. 'Core:SynchroReconcile:Yes' => 'Yes',
  428. 'Core:SynchroReconcile:No' => 'No',
  429. 'Core:SynchroUpdate:Yes' => 'Yes',
  430. 'Core:SynchroUpdate:No' => 'No',
  431. 'Core:Synchro:LastestStatus' => 'Latest Status',
  432. 'Core:Synchro:History' => 'Synchronization History',
  433. 'Core:Synchro:NeverRun' => 'This synchro was never run. No log yet.',
  434. 'Core:Synchro:SynchroEndedOn_Date' => 'The latest synchronization ended on %1$s.',
  435. 'Core:Synchro:SynchroRunningStartedOn_Date' => 'The synchronization started on $1$s is still running...',
  436. 'Menu:DataSources' => 'Synchronization Data Sources',
  437. 'Menu:DataSources+' => 'All Synchronization Data Sources',
  438. 'Core:Synchro:label_repl_ignored' => 'Ignored (%1$s)',
  439. 'Core:Synchro:label_repl_disappeared' => 'Disappeared (%1$s)',
  440. 'Core:Synchro:label_repl_existing' => 'Existing (%1$s)',
  441. 'Core:Synchro:label_repl_new' => 'New (%1$s)',
  442. 'Core:Synchro:label_obj_deleted' => 'Deleted (%1$s)',
  443. 'Core:Synchro:label_obj_obsoleted' => 'Obsoleted (%1$s)',
  444. 'Core:Synchro:label_obj_disappeared_errors' => 'Errors (%1$s)',
  445. 'Core:Synchro:label_obj_disappeared_no_action' => 'No Action (%1$s)',
  446. 'Core:Synchro:label_obj_unchanged' => 'Unchanged (%1$s)',
  447. 'Core:Synchro:label_obj_updated' => 'Updated (%1$s)',
  448. 'Core:Synchro:label_obj_updated_errors' => 'Errors (%1$s)',
  449. 'Core:Synchro:label_obj_new_unchanged' => 'Unchanged (%1$s)',
  450. 'Core:Synchro:label_obj_new_updated' => 'Updated (%1$s)',
  451. 'Core:Synchro:label_obj_created' => 'Created (%1$s)',
  452. 'Core:Synchro:label_obj_new_errors' => 'Errors (%1$s)',
  453. 'Core:Synchro:History' => 'Synchronization History',
  454. 'Core:SynchroLogTitle' => '%1$s - %2$s',
  455. 'Core:Synchro:Nb_Replica' => 'Replica processed: %1$s',
  456. 'Core:Synchro:Nb_Class:Objects' => '%1$s: %2$s',
  457. 'Class:SynchroDataSource/Error:AtLeastOneReconciliationKeyMustBeSpecified' => 'At Least one reconciliation key must be specified, or the reconciliation policy must be to use the primary key.',
  458. 'Class:SynchroDataSource/Error:DeleteRetentionDurationMustBeSpecified' => 'A delete retention period must be specified, since objects are to be deleted after being marked as obsolete',
  459. 'Class:SynchroDataSource/Error:DeletePolicyUpdateMustBeSpecified' => 'Obsolete objects are to be updated, but no update is specified.',
  460. 'Core:SynchroReplica:PublicData' => 'Public Data',
  461. 'Core:SynchroReplica:PrivateDetails' => 'Private Details',
  462. 'Core:SynchroReplica:BackToDataSource' => 'Go Back to the Synchro Data Source: %1$s',
  463. 'Core:SynchroReplica:ListOfReplicas' => 'List of Replica',
  464. 'Core:SynchroAttExtKey:ReconciliationById' => 'id (Primary Key)',
  465. 'Core:SynchroAtt:attcode' => 'Attribute',
  466. 'Core:SynchroAtt:attcode+' => 'Field of the object',
  467. 'Core:SynchroAtt:reconciliation' => 'Reconciliation ?',
  468. 'Core:SynchroAtt:reconciliation+' => 'Used for searching',
  469. 'Core:SynchroAtt:update' => 'Update ?',
  470. 'Core:SynchroAtt:update+' => 'Used to update the object',
  471. 'Core:SynchroAtt:update_policy' => 'Update Policy',
  472. 'Core:SynchroAtt:update_policy+' => 'Behavior of the updated field',
  473. 'Core:SynchroAtt:reconciliation_attcode' => 'Reconciliation Key',
  474. 'Core:SynchroAtt:reconciliation_attcode+' => 'Attribute Code for the External Key Reconciliation',
  475. ));
  476. //
  477. // Attribute Duration
  478. //
  479. Dict::Add('EN US', 'English', 'English', array(
  480. 'Core:Duration_Seconds' => '%1$ds',
  481. 'Core:Duration_Minutes_Seconds' =>'%1$dmin %2$ds',
  482. 'Core:Duration_Hours_Minutes_Seconds' => '%1$dh %2$dmin %3$ds',
  483. 'Core:Duration_Days_Hours_Minutes_Seconds' => '%1$sd %2$dh %3$dmin %4$ds',
  484. ));
  485. ?>