dictionary.itop.core.php 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853
  1. <?php
  2. // Copyright (C) 2010-2014 Combodo SARL
  3. //
  4. // This file is part of iTop.
  5. //
  6. // iTop is free software; you can redistribute it and/or modify
  7. // it under the terms of the GNU Affero General Public License as published by
  8. // the Free Software Foundation, either version 3 of the License, or
  9. // (at your option) any later version.
  10. //
  11. // iTop is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. // GNU Affero General Public License for more details.
  15. //
  16. // You should have received a copy of the GNU Affero General Public License
  17. // along with iTop. If not, see <http://www.gnu.org/licenses/>
  18. /**
  19. * Localized data
  20. *
  21. * @copyright Copyright (C) 2010-2012 Combodo SARL
  22. * @license http://opensource.org/licenses/AGPL-3.0
  23. */
  24. Dict::Add('EN US', 'English', 'English', array(
  25. 'Core:DeletedObjectLabel' => '%1s (deleted)',
  26. 'Core:DeletedObjectTip' => 'The object has been deleted on %1$s (%2$s)',
  27. 'Core:UnknownObjectLabel' => 'Object not found (class: %1$s, id: %2$d)',
  28. 'Core:UnknownObjectTip' => 'The object could not be found. It may have been deleted some time ago and the log has been purged since.',
  29. 'Core:AttributeLinkedSet' => 'Array of objects',
  30. 'Core:AttributeLinkedSet+' => 'Any kind of objects of the same class or subclass',
  31. 'Core:AttributeLinkedSetIndirect' => 'Array of objects (N-N)',
  32. 'Core:AttributeLinkedSetIndirect+' => 'Any kind of objects [subclass] of the same class',
  33. 'Core:AttributeInteger' => 'Integer',
  34. 'Core:AttributeInteger+' => 'Numeric value (could be negative)',
  35. 'Core:AttributeDecimal' => 'Decimal',
  36. 'Core:AttributeDecimal+' => 'Decimal value (could be negative)',
  37. 'Core:AttributeBoolean' => 'Boolean',
  38. 'Core:AttributeBoolean+' => 'Boolean',
  39. 'Core:AttributeString' => 'String',
  40. 'Core:AttributeString+' => 'Alphanumeric string',
  41. 'Core:AttributeClass' => 'Class',
  42. 'Core:AttributeClass+' => 'Class',
  43. 'Core:AttributeApplicationLanguage' => 'User language',
  44. 'Core:AttributeApplicationLanguage+' => 'Language and country (EN US)',
  45. 'Core:AttributeFinalClass' => 'Class (auto)',
  46. 'Core:AttributeFinalClass+' => 'Real class of the object (automatically created by the core)',
  47. 'Core:AttributePassword' => 'Password',
  48. 'Core:AttributePassword+' => 'Password of an external device',
  49. 'Core:AttributeEncryptedString' => 'Encrypted string',
  50. 'Core:AttributeEncryptedString+' => 'String encrypted with a local key',
  51. 'Core:AttributeText' => 'Text',
  52. 'Core:AttributeText+' => 'Multiline character string',
  53. 'Core:AttributeHTML' => 'HTML',
  54. 'Core:AttributeHTML+' => 'HTML string',
  55. 'Core:AttributeEmailAddress' => 'Email address',
  56. 'Core:AttributeEmailAddress+' => 'Email address',
  57. 'Core:AttributeIPAddress' => 'IP address',
  58. 'Core:AttributeIPAddress+' => 'IP address',
  59. 'Core:AttributeOQL' => 'OQL',
  60. 'Core:AttributeOQL+' => 'Object Query Langage expression',
  61. 'Core:AttributeEnum' => 'Enum',
  62. 'Core:AttributeEnum+' => 'List of predefined alphanumeric strings',
  63. 'Core:AttributeTemplateString' => 'Template string',
  64. 'Core:AttributeTemplateString+' => 'String containing placeholders',
  65. 'Core:AttributeTemplateText' => 'Template text',
  66. 'Core:AttributeTemplateText+' => 'Text containing placeholders',
  67. 'Core:AttributeTemplateHTML' => 'Template HTML',
  68. 'Core:AttributeTemplateHTML+' => 'HTML containing placeholders',
  69. 'Core:AttributeDateTime' => 'Date/time',
  70. 'Core:AttributeDateTime+' => 'Date and time (year-month-day hh:mm:ss)',
  71. 'Core:AttributeDateTime?SmartSearch' => '
  72. <p>
  73. Date format:<br/>
  74. <b>yyyy-mm-dd hh:mm:ss</b><br/>
  75. Example: 2011-07-19 18:40:00
  76. </p>
  77. <p>
  78. Operators:<br/>
  79. <b>&gt;</b><em>date</em><br/>
  80. <b>&lt;</b><em>date</em><br/>
  81. <b>[</b><em>date</em>,<em>date</em><b>]</b>
  82. </p>
  83. <p>
  84. If the time is omitted, it defaults to 00:00:00
  85. </p>',
  86. 'Core:AttributeDate' => 'Date',
  87. 'Core:AttributeDate+' => 'Date (year-month-day)',
  88. 'Core:AttributeDate?SmartSearch' => '
  89. <p>
  90. Date format:<br/>
  91. <b>yyyy-mm-dd</b><br/>
  92. Example: 2011-07-19
  93. </p>
  94. <p>
  95. Operators:<br/>
  96. <b>&gt;</b><em>date</em><br/>
  97. <b>&lt;</b><em>date</em><br/>
  98. <b>[</b><em>date</em>,<em>date</em><b>]</b>
  99. </p>',
  100. 'Core:AttributeDeadline' => 'Deadline',
  101. 'Core:AttributeDeadline+' => 'Date, displayed relatively to the current time',
  102. 'Core:AttributeExternalKey' => 'External key',
  103. 'Core:AttributeExternalKey+' => 'External (or foreign) key',
  104. 'Core:AttributeHierarchicalKey' => 'Hierarchical Key',
  105. 'Core:AttributeHierarchicalKey+' => 'External (or foreign) key to the parent',
  106. 'Core:AttributeExternalField' => 'External field',
  107. 'Core:AttributeExternalField+' => 'Field mapped to an external key',
  108. 'Core:AttributeURL' => 'URL',
  109. 'Core:AttributeURL+' => 'Absolute or relative URL as a text string',
  110. 'Core:AttributeBlob' => 'Blob',
  111. 'Core:AttributeBlob+' => 'Any binary content (document)',
  112. 'Core:AttributeOneWayPassword' => 'One way password',
  113. 'Core:AttributeOneWayPassword+' => 'One way encrypted (hashed) password',
  114. 'Core:AttributeTable' => 'Table',
  115. 'Core:AttributeTable+' => 'Indexed array having two dimensions',
  116. 'Core:AttributePropertySet' => 'Properties',
  117. 'Core:AttributePropertySet+' => 'List of untyped properties (name and value)',
  118. 'Core:AttributeFriendlyName' => 'Friendly name',
  119. 'Core:AttributeFriendlyName+' => 'Attribute created automatically ; the friendly name is computed after several attributes',
  120. 'Core:FriendlyName-Label' => 'Full name',
  121. 'Core:FriendlyName-Description' => 'Full name',
  122. ));
  123. //////////////////////////////////////////////////////////////////////
  124. // Classes in 'core/cmdb'
  125. //////////////////////////////////////////////////////////////////////
  126. //
  127. //
  128. // Class: CMDBChange
  129. //
  130. Dict::Add('EN US', 'English', 'English', array(
  131. 'Class:CMDBChange' => 'Change',
  132. 'Class:CMDBChange+' => 'Changes tracking',
  133. 'Class:CMDBChange/Attribute:date' => 'date',
  134. 'Class:CMDBChange/Attribute:date+' => 'date and time at which the changes have been recorded',
  135. 'Class:CMDBChange/Attribute:userinfo' => 'misc. info',
  136. 'Class:CMDBChange/Attribute:userinfo+' => 'caller\'s defined information',
  137. ));
  138. //
  139. // Class: CMDBChangeOp
  140. //
  141. Dict::Add('EN US', 'English', 'English', array(
  142. 'Class:CMDBChangeOp' => 'Change Operation',
  143. 'Class:CMDBChangeOp+' => 'Change operations tracking',
  144. 'Class:CMDBChangeOp/Attribute:change' => 'change',
  145. 'Class:CMDBChangeOp/Attribute:change+' => 'change',
  146. 'Class:CMDBChangeOp/Attribute:date' => 'date',
  147. 'Class:CMDBChangeOp/Attribute:date+' => 'date and time of the change',
  148. 'Class:CMDBChangeOp/Attribute:userinfo' => 'user',
  149. 'Class:CMDBChangeOp/Attribute:userinfo+' => 'who made this change',
  150. 'Class:CMDBChangeOp/Attribute:objclass' => 'object class',
  151. 'Class:CMDBChangeOp/Attribute:objclass+' => 'object class',
  152. 'Class:CMDBChangeOp/Attribute:objkey' => 'object id',
  153. 'Class:CMDBChangeOp/Attribute:objkey+' => 'object id',
  154. 'Class:CMDBChangeOp/Attribute:finalclass' => 'type',
  155. 'Class:CMDBChangeOp/Attribute:finalclass+' => '',
  156. ));
  157. //
  158. // Class: CMDBChangeOpCreate
  159. //
  160. Dict::Add('EN US', 'English', 'English', array(
  161. 'Class:CMDBChangeOpCreate' => 'object creation',
  162. 'Class:CMDBChangeOpCreate+' => 'Object creation tracking',
  163. ));
  164. //
  165. // Class: CMDBChangeOpDelete
  166. //
  167. Dict::Add('EN US', 'English', 'English', array(
  168. 'Class:CMDBChangeOpDelete' => 'object deletion',
  169. 'Class:CMDBChangeOpDelete+' => 'Object deletion tracking',
  170. ));
  171. //
  172. // Class: CMDBChangeOpSetAttribute
  173. //
  174. Dict::Add('EN US', 'English', 'English', array(
  175. 'Class:CMDBChangeOpSetAttribute' => 'object change',
  176. 'Class:CMDBChangeOpSetAttribute+' => 'Object properties change tracking',
  177. 'Class:CMDBChangeOpSetAttribute/Attribute:attcode' => 'Attribute',
  178. 'Class:CMDBChangeOpSetAttribute/Attribute:attcode+' => 'code of the modified property',
  179. ));
  180. //
  181. // Class: CMDBChangeOpSetAttributeScalar
  182. //
  183. Dict::Add('EN US', 'English', 'English', array(
  184. 'Class:CMDBChangeOpSetAttributeScalar' => 'property change',
  185. 'Class:CMDBChangeOpSetAttributeScalar+' => 'Object scalar properties change tracking',
  186. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:oldvalue' => 'Previous value',
  187. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:oldvalue+' => 'previous value of the attribute',
  188. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:newvalue' => 'New value',
  189. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:newvalue+' => 'new value of the attribute',
  190. ));
  191. // Used by CMDBChangeOp... & derived classes
  192. Dict::Add('EN US', 'English', 'English', array(
  193. 'Change:ObjectCreated' => 'Object created',
  194. 'Change:ObjectDeleted' => 'Object deleted',
  195. 'Change:ObjectModified' => 'Object modified',
  196. 'Change:AttName_SetTo_NewValue_PreviousValue_OldValue' => '%1$s set to %2$s (previous value: %3$s)',
  197. 'Change:AttName_SetTo' => '%1$s set to %2$s',
  198. 'Change:Text_AppendedTo_AttName' => '%1$s appended to %2$s',
  199. 'Change:AttName_Changed_PreviousValue_OldValue' => '%1$s modified, previous value: %2$s',
  200. 'Change:AttName_Changed' => '%1$s modified',
  201. 'Change:AttName_EntryAdded' => '%1$s modified, new entry added.',
  202. 'Change:LinkSet:Added' => 'added %1$s',
  203. 'Change:LinkSet:Removed' => 'removed %1$s',
  204. 'Change:LinkSet:Modified' => 'modified %1$s',
  205. ));
  206. //
  207. // Class: CMDBChangeOpSetAttributeBlob
  208. //
  209. Dict::Add('EN US', 'English', 'English', array(
  210. 'Class:CMDBChangeOpSetAttributeBlob' => 'data change',
  211. 'Class:CMDBChangeOpSetAttributeBlob+' => 'data change tracking',
  212. 'Class:CMDBChangeOpSetAttributeBlob/Attribute:prevdata' => 'Previous data',
  213. 'Class:CMDBChangeOpSetAttributeBlob/Attribute:prevdata+' => 'previous contents of the attribute',
  214. ));
  215. //
  216. // Class: CMDBChangeOpSetAttributeText
  217. //
  218. Dict::Add('EN US', 'English', 'English', array(
  219. 'Class:CMDBChangeOpSetAttributeText' => 'text change',
  220. 'Class:CMDBChangeOpSetAttributeText+' => 'text change tracking',
  221. 'Class:CMDBChangeOpSetAttributeText/Attribute:prevdata' => 'Previous data',
  222. 'Class:CMDBChangeOpSetAttributeText/Attribute:prevdata+' => 'previous contents of the attribute',
  223. ));
  224. //
  225. // Class: Event
  226. //
  227. Dict::Add('EN US', 'English', 'English', array(
  228. 'Class:Event' => 'Log Event',
  229. 'Class:Event+' => 'An application internal event',
  230. 'Class:Event/Attribute:message' => 'Message',
  231. 'Class:Event/Attribute:message+' => 'short description of the event',
  232. 'Class:Event/Attribute:date' => 'Date',
  233. 'Class:Event/Attribute:date+' => 'date and time at which the changes have been recorded',
  234. 'Class:Event/Attribute:userinfo' => 'User info',
  235. 'Class:Event/Attribute:userinfo+' => 'identification of the user that was doing the action that triggered this event',
  236. 'Class:Event/Attribute:finalclass' => 'Type',
  237. 'Class:Event/Attribute:finalclass+' => '',
  238. ));
  239. //
  240. // Class: EventNotification
  241. //
  242. Dict::Add('EN US', 'English', 'English', array(
  243. 'Class:EventNotification' => 'Notification event',
  244. 'Class:EventNotification+' => 'Trace of a notification that has been sent',
  245. 'Class:EventNotification/Attribute:trigger_id' => 'Trigger',
  246. 'Class:EventNotification/Attribute:trigger_id+' => 'user account',
  247. 'Class:EventNotification/Attribute:action_id' => 'user',
  248. 'Class:EventNotification/Attribute:action_id+' => 'user account',
  249. 'Class:EventNotification/Attribute:object_id' => 'Object id',
  250. 'Class:EventNotification/Attribute:object_id+' => 'object id (class defined by the trigger ?)',
  251. ));
  252. //
  253. // Class: EventNotificationEmail
  254. //
  255. Dict::Add('EN US', 'English', 'English', array(
  256. 'Class:EventNotificationEmail' => 'Email emission event',
  257. 'Class:EventNotificationEmail+' => 'Trace of an email that has been sent',
  258. 'Class:EventNotificationEmail/Attribute:to' => 'TO',
  259. 'Class:EventNotificationEmail/Attribute:to+' => 'TO',
  260. 'Class:EventNotificationEmail/Attribute:cc' => 'CC',
  261. 'Class:EventNotificationEmail/Attribute:cc+' => 'CC',
  262. 'Class:EventNotificationEmail/Attribute:bcc' => 'BCC',
  263. 'Class:EventNotificationEmail/Attribute:bcc+' => 'BCC',
  264. 'Class:EventNotificationEmail/Attribute:from' => 'From',
  265. 'Class:EventNotificationEmail/Attribute:from+' => 'Sender of the message',
  266. 'Class:EventNotificationEmail/Attribute:subject' => 'Subject',
  267. 'Class:EventNotificationEmail/Attribute:subject+' => 'Subject',
  268. 'Class:EventNotificationEmail/Attribute:body' => 'Body',
  269. 'Class:EventNotificationEmail/Attribute:body+' => 'Body',
  270. 'Class:EventNotificationEmail/Attribute:attachments' => 'Attachments',
  271. 'Class:EventNotificationEmail/Attribute:attachments+' => '',
  272. ));
  273. //
  274. // Class: EventIssue
  275. //
  276. Dict::Add('EN US', 'English', 'English', array(
  277. 'Class:EventIssue' => 'Issue event',
  278. 'Class:EventIssue+' => 'Trace of an issue (warning, error, etc.)',
  279. 'Class:EventIssue/Attribute:issue' => 'Issue',
  280. 'Class:EventIssue/Attribute:issue+' => 'What happened',
  281. 'Class:EventIssue/Attribute:impact' => 'Impact',
  282. 'Class:EventIssue/Attribute:impact+' => 'What are the consequences',
  283. 'Class:EventIssue/Attribute:page' => 'Page',
  284. 'Class:EventIssue/Attribute:page+' => 'HTTP entry point',
  285. 'Class:EventIssue/Attribute:arguments_post' => 'Posted arguments',
  286. 'Class:EventIssue/Attribute:arguments_post+' => 'HTTP POST arguments',
  287. 'Class:EventIssue/Attribute:arguments_get' => 'URL arguments',
  288. 'Class:EventIssue/Attribute:arguments_get+' => 'HTTP GET arguments',
  289. 'Class:EventIssue/Attribute:callstack' => 'Callstack',
  290. 'Class:EventIssue/Attribute:callstack+' => 'Call stack',
  291. 'Class:EventIssue/Attribute:data' => 'Data',
  292. 'Class:EventIssue/Attribute:data+' => 'More information',
  293. ));
  294. //
  295. // Class: EventWebService
  296. //
  297. Dict::Add('EN US', 'English', 'English', array(
  298. 'Class:EventWebService' => 'Web service event',
  299. 'Class:EventWebService+' => 'Trace of an web service call',
  300. 'Class:EventWebService/Attribute:verb' => 'Verb',
  301. 'Class:EventWebService/Attribute:verb+' => 'Name of the operation',
  302. 'Class:EventWebService/Attribute:result' => 'Result',
  303. 'Class:EventWebService/Attribute:result+' => 'Overall success/failure',
  304. 'Class:EventWebService/Attribute:log_info' => 'Info log',
  305. 'Class:EventWebService/Attribute:log_info+' => 'Result info log',
  306. 'Class:EventWebService/Attribute:log_warning' => 'Warning log',
  307. 'Class:EventWebService/Attribute:log_warning+' => 'Result warning log',
  308. 'Class:EventWebService/Attribute:log_error' => 'Error log',
  309. 'Class:EventWebService/Attribute:log_error+' => 'Result error log',
  310. 'Class:EventWebService/Attribute:data' => 'Data',
  311. 'Class:EventWebService/Attribute:data+' => 'Result data',
  312. ));
  313. Dict::Add('EN US', 'English', 'English', array(
  314. 'Class:EventRestService' => 'REST/JSON call',
  315. 'Class:EventRestService+' => 'Trace of a REST/JSON service call',
  316. 'Class:EventRestService/Attribute:operation' => 'Operation',
  317. 'Class:EventRestService/Attribute:operation+' => 'Argument \'operation\'',
  318. 'Class:EventRestService/Attribute:version' => 'Version',
  319. 'Class:EventRestService/Attribute:version+' => 'Argument \'version\'',
  320. 'Class:EventRestService/Attribute:json_input' => 'Input',
  321. 'Class:EventRestService/Attribute:json_input+' => 'Argument \'json_data\'',
  322. 'Class:EventRestService/Attribute:code' => 'Code',
  323. 'Class:EventRestService/Attribute:code+' => 'Result code',
  324. 'Class:EventRestService/Attribute:json_output' => 'Response',
  325. 'Class:EventRestService/Attribute:json_output+' => 'HTTP response (json)',
  326. 'Class:EventRestService/Attribute:provider' => 'Provider',
  327. 'Class:EventRestService/Attribute:provider+' => 'PHP class implementing the expected operation',
  328. ));
  329. //
  330. // Class: EventLoginUsage
  331. //
  332. Dict::Add('EN US', 'English', 'English', array(
  333. 'Class:EventLoginUsage' => 'Login Usage',
  334. 'Class:EventLoginUsage+' => 'Connection to the application',
  335. 'Class:EventLoginUsage/Attribute:user_id' => 'Login',
  336. 'Class:EventLoginUsage/Attribute:user_id+' => 'Login',
  337. 'Class:EventLoginUsage/Attribute:contact_name' => 'User Name',
  338. 'Class:EventLoginUsage/Attribute:contact_name+' => 'User Name',
  339. 'Class:EventLoginUsage/Attribute:contact_email' => 'User Email',
  340. 'Class:EventLoginUsage/Attribute:contact_email+' => 'Email Address of the User',
  341. ));
  342. //
  343. // Class: Action
  344. //
  345. Dict::Add('EN US', 'English', 'English', array(
  346. 'Class:Action' => 'Custom Action',
  347. 'Class:Action+' => 'User defined action',
  348. 'Class:Action/Attribute:name' => 'Name',
  349. 'Class:Action/Attribute:name+' => '',
  350. 'Class:Action/Attribute:description' => 'Description',
  351. 'Class:Action/Attribute:description+' => '',
  352. 'Class:Action/Attribute:status' => 'Status',
  353. 'Class:Action/Attribute:status+' => 'In production or ?',
  354. 'Class:Action/Attribute:status/Value:test' => 'Being tested',
  355. 'Class:Action/Attribute:status/Value:test+' => 'Being tested',
  356. 'Class:Action/Attribute:status/Value:enabled' => 'In production',
  357. 'Class:Action/Attribute:status/Value:enabled+' => 'In production',
  358. 'Class:Action/Attribute:status/Value:disabled' => 'Inactive',
  359. 'Class:Action/Attribute:status/Value:disabled+' => 'Inactive',
  360. 'Class:Action/Attribute:trigger_list' => 'Related Triggers',
  361. 'Class:Action/Attribute:trigger_list+' => 'Triggers linked to this action',
  362. 'Class:Action/Attribute:finalclass' => 'Type',
  363. 'Class:Action/Attribute:finalclass+' => '',
  364. ));
  365. //
  366. // Class: ActionNotification
  367. //
  368. Dict::Add('EN US', 'English', 'English', array(
  369. 'Class:ActionNotification' => 'Notification',
  370. 'Class:ActionNotification+' => 'Notification (abstract)',
  371. ));
  372. //
  373. // Class: ActionEmail
  374. //
  375. Dict::Add('EN US', 'English', 'English', array(
  376. 'Class:ActionEmail' => 'Email notification',
  377. 'Class:ActionEmail+' => '',
  378. 'Class:ActionEmail/Attribute:test_recipient' => 'Test recipient',
  379. 'Class:ActionEmail/Attribute:test_recipient+' => 'Detination in case status is set to "Test"',
  380. 'Class:ActionEmail/Attribute:from' => 'From',
  381. 'Class:ActionEmail/Attribute:from+' => 'Will be sent into the email header',
  382. 'Class:ActionEmail/Attribute:reply_to' => 'Reply to',
  383. 'Class:ActionEmail/Attribute:reply_to+' => 'Will be sent into the email header',
  384. 'Class:ActionEmail/Attribute:to' => 'To',
  385. 'Class:ActionEmail/Attribute:to+' => 'Destination of the email',
  386. 'Class:ActionEmail/Attribute:cc' => 'Cc',
  387. 'Class:ActionEmail/Attribute:cc+' => 'Carbon Copy',
  388. 'Class:ActionEmail/Attribute:bcc' => 'bcc',
  389. 'Class:ActionEmail/Attribute:bcc+' => 'Blind Carbon Copy',
  390. 'Class:ActionEmail/Attribute:subject' => 'subject',
  391. 'Class:ActionEmail/Attribute:subject+' => 'Title of the email',
  392. 'Class:ActionEmail/Attribute:body' => 'body',
  393. 'Class:ActionEmail/Attribute:body+' => 'Contents of the email',
  394. 'Class:ActionEmail/Attribute:importance' => 'importance',
  395. 'Class:ActionEmail/Attribute:importance+' => 'Importance flag',
  396. 'Class:ActionEmail/Attribute:importance/Value:low' => 'low',
  397. 'Class:ActionEmail/Attribute:importance/Value:low+' => 'low',
  398. 'Class:ActionEmail/Attribute:importance/Value:normal' => 'normal',
  399. 'Class:ActionEmail/Attribute:importance/Value:normal+' => 'normal',
  400. 'Class:ActionEmail/Attribute:importance/Value:high' => 'high',
  401. 'Class:ActionEmail/Attribute:importance/Value:high+' => 'high',
  402. ));
  403. //
  404. // Class: Trigger
  405. //
  406. Dict::Add('EN US', 'English', 'English', array(
  407. 'Class:Trigger' => 'Trigger',
  408. 'Class:Trigger+' => 'Custom event handler',
  409. 'Class:Trigger/Attribute:description' => 'Description',
  410. 'Class:Trigger/Attribute:description+' => 'one line description',
  411. 'Class:Trigger/Attribute:action_list' => 'Triggered actions',
  412. 'Class:Trigger/Attribute:action_list+' => 'Actions performed when the trigger is activated',
  413. 'Class:Trigger/Attribute:finalclass' => 'Type',
  414. 'Class:Trigger/Attribute:finalclass+' => '',
  415. ));
  416. //
  417. // Class: TriggerOnObject
  418. //
  419. Dict::Add('EN US', 'English', 'English', array(
  420. 'Class:TriggerOnObject' => 'Trigger (class dependent)',
  421. 'Class:TriggerOnObject+' => 'Trigger on a given class of objects',
  422. 'Class:TriggerOnObject/Attribute:target_class' => 'Target class',
  423. 'Class:TriggerOnObject/Attribute:target_class+' => '',
  424. 'Class:TriggerOnObject/Attribute:filter' => 'Filter',
  425. 'Class:TriggerOnObject/Attribute:filter+' => '',
  426. 'TriggerOnObject:WrongFilterQuery' => 'Wrong filter query: %1$s',
  427. 'TriggerOnObject:WrongFilterClass' => 'The filter query must return objects of class "%1$s"',
  428. ));
  429. //
  430. // Class: TriggerOnPortalUpdate
  431. //
  432. Dict::Add('EN US', 'English', 'English', array(
  433. 'Class:TriggerOnPortalUpdate' => 'Trigger (when updated from the portal)',
  434. 'Class:TriggerOnPortalUpdate+' => 'Trigger on a end-user\'s update from the portal',
  435. ));
  436. //
  437. // Class: TriggerOnStateChange
  438. //
  439. Dict::Add('EN US', 'English', 'English', array(
  440. 'Class:TriggerOnStateChange' => 'Trigger (on state change)',
  441. 'Class:TriggerOnStateChange+' => 'Trigger on object state change',
  442. 'Class:TriggerOnStateChange/Attribute:state' => 'State',
  443. 'Class:TriggerOnStateChange/Attribute:state+' => '',
  444. ));
  445. //
  446. // Class: TriggerOnStateEnter
  447. //
  448. Dict::Add('EN US', 'English', 'English', array(
  449. 'Class:TriggerOnStateEnter' => 'Trigger (on entering a state)',
  450. 'Class:TriggerOnStateEnter+' => 'Trigger on object state change - entering',
  451. ));
  452. //
  453. // Class: TriggerOnStateLeave
  454. //
  455. Dict::Add('EN US', 'English', 'English', array(
  456. 'Class:TriggerOnStateLeave' => 'Trigger (on leaving a state)',
  457. 'Class:TriggerOnStateLeave+' => 'Trigger on object state change - leaving',
  458. ));
  459. //
  460. // Class: TriggerOnObjectCreate
  461. //
  462. Dict::Add('EN US', 'English', 'English', array(
  463. 'Class:TriggerOnObjectCreate' => 'Trigger (on object creation)',
  464. 'Class:TriggerOnObjectCreate+' => 'Trigger on object creation of [a child class of] the given class',
  465. ));
  466. //
  467. // Class: TriggerOnThresholdReached
  468. //
  469. Dict::Add('EN US', 'English', 'English', array(
  470. 'Class:TriggerOnThresholdReached' => 'Trigger (on threshold)',
  471. 'Class:TriggerOnThresholdReached+' => 'Trigger on Stop-Watch threshold reached',
  472. 'Class:TriggerOnThresholdReached/Attribute:stop_watch_code' => 'Stop watch',
  473. 'Class:TriggerOnThresholdReached/Attribute:stop_watch_code+' => '',
  474. 'Class:TriggerOnThresholdReached/Attribute:threshold_index' => 'Threshold',
  475. 'Class:TriggerOnThresholdReached/Attribute:threshold_index+' => '',
  476. ));
  477. //
  478. // Class: lnkTriggerAction
  479. //
  480. Dict::Add('EN US', 'English', 'English', array(
  481. 'Class:lnkTriggerAction' => 'Action/Trigger',
  482. 'Class:lnkTriggerAction+' => 'Link between a trigger and an action',
  483. 'Class:lnkTriggerAction/Attribute:action_id' => 'Action',
  484. 'Class:lnkTriggerAction/Attribute:action_id+' => 'The action to be executed',
  485. 'Class:lnkTriggerAction/Attribute:action_name' => 'Action',
  486. 'Class:lnkTriggerAction/Attribute:action_name+' => '',
  487. 'Class:lnkTriggerAction/Attribute:trigger_id' => 'Trigger',
  488. 'Class:lnkTriggerAction/Attribute:trigger_id+' => '',
  489. 'Class:lnkTriggerAction/Attribute:trigger_name' => 'Trigger',
  490. 'Class:lnkTriggerAction/Attribute:trigger_name+' => '',
  491. 'Class:lnkTriggerAction/Attribute:order' => 'Order',
  492. 'Class:lnkTriggerAction/Attribute:order+' => 'Actions execution order',
  493. ));
  494. //
  495. // Synchro Data Source
  496. //
  497. Dict::Add('EN US', 'English', 'English', array(
  498. 'Class:SynchroDataSource/Attribute:name' => 'Name',
  499. 'Class:SynchroDataSource/Attribute:name+' => 'Name',
  500. 'Class:SynchroDataSource/Attribute:description' => 'Description',
  501. 'Class:SynchroDataSource/Attribute:status' => 'Status', //TODO: enum values
  502. 'Class:SynchroDataSource/Attribute:scope_class' => 'Target class',
  503. 'Class:SynchroDataSource/Attribute:user_id' => 'User',
  504. 'Class:SynchroDataSource/Attribute:notify_contact_id' => 'Contact to notify',
  505. 'Class:SynchroDataSource/Attribute:notify_contact_id+' => 'Contact to notify in case of error',
  506. 'Class:SynchroDataSource/Attribute:url_icon' => 'Icon\'s hyperlink',
  507. 'Class:SynchroDataSource/Attribute:url_icon+' => 'Hyperlink a (small) image representing the application with which iTop is synchronized',
  508. 'Class:SynchroDataSource/Attribute:url_application' => 'Application\'s hyperlink',
  509. 'Class:SynchroDataSource/Attribute:url_application+' => 'Hyperlink to the iTop object in the external application with which iTop is synchronized (if applicable). Possible placeholders: $this->attribute$ and $replica->primary_key$',
  510. 'Class:SynchroDataSource/Attribute:reconciliation_policy' => 'Reconciliation policy', //TODO enum values
  511. 'Class:SynchroDataSource/Attribute:full_load_periodicity' => 'Full load interval',
  512. 'Class:SynchroDataSource/Attribute:full_load_periodicity+' => 'A complete reload of all data must occur at least as often as specified here',
  513. 'Class:SynchroDataSource/Attribute:action_on_zero' => 'Action on zero',
  514. 'Class:SynchroDataSource/Attribute:action_on_zero+' => 'Action taken when the search returns no object',
  515. 'Class:SynchroDataSource/Attribute:action_on_one' => 'Action on one',
  516. 'Class:SynchroDataSource/Attribute:action_on_one+' => 'Action taken when the search returns exactly one object',
  517. 'Class:SynchroDataSource/Attribute:action_on_multiple' => 'Action on many',
  518. 'Class:SynchroDataSource/Attribute:action_on_multiple+' => 'Action taken when the search returns more than one object',
  519. 'Class:SynchroDataSource/Attribute:user_delete_policy' => 'Users allowed',
  520. 'Class:SynchroDataSource/Attribute:user_delete_policy+' => 'Who is allowed to delete synchronized objects',
  521. 'Class:SynchroDataSource/Attribute:user_delete_policy' => 'Users allowed',
  522. 'Class:SynchroDataSource/Attribute:delete_policy/Value:never' => 'Nobody',
  523. 'Class:SynchroDataSource/Attribute:delete_policy/Value:depends' => 'Administrators only',
  524. 'Class:SynchroDataSource/Attribute:delete_policy/Value:always' => 'All allowed users',
  525. 'Class:SynchroDataSource/Attribute:delete_policy_update' => 'Update rules',
  526. 'Class:SynchroDataSource/Attribute:delete_policy_update+' => 'Syntax: field_name:value; ...',
  527. 'Class:SynchroDataSource/Attribute:delete_policy_retention' => 'Retention Duration',
  528. 'Class:SynchroDataSource/Attribute:delete_policy_retention+' => 'How much time an obsolete object is kept before being deleted',
  529. 'Class:SynchroDataSource/Attribute:database_table_name' => 'Data table',
  530. 'Class:SynchroDataSource/Attribute:database_table_name+' => 'Name of the table to store the synchronization data. If left empty, a default name will be computed.',
  531. 'SynchroDataSource:Description' => 'Description',
  532. 'SynchroDataSource:Reconciliation' => 'Search &amp; reconciliation',
  533. 'SynchroDataSource:Deletion' => 'Deletion rules',
  534. 'SynchroDataSource:Status' => 'Status',
  535. 'SynchroDataSource:Information' => 'Information',
  536. 'SynchroDataSource:Definition' => 'Definition',
  537. 'Core:SynchroAttributes' => 'Attributes',
  538. 'Core:SynchroStatus' => 'Status',
  539. 'Core:Synchro:ErrorsLabel' => 'Errors',
  540. 'Core:Synchro:CreatedLabel' => 'Created',
  541. 'Core:Synchro:ModifiedLabel' => 'Modified',
  542. 'Core:Synchro:UnchangedLabel' => 'Unchanged',
  543. 'Core:Synchro:ReconciledErrorsLabel' => 'Errors',
  544. 'Core:Synchro:ReconciledLabel' => 'Reconciled',
  545. 'Core:Synchro:ReconciledNewLabel' => 'Created',
  546. 'Core:SynchroReconcile:Yes' => 'Yes',
  547. 'Core:SynchroReconcile:No' => 'No',
  548. 'Core:SynchroUpdate:Yes' => 'Yes',
  549. 'Core:SynchroUpdate:No' => 'No',
  550. 'Core:Synchro:LastestStatus' => 'Latest Status',
  551. 'Core:Synchro:History' => 'Synchronization History',
  552. 'Core:Synchro:NeverRun' => 'This synchro was never run. No log yet.',
  553. 'Core:Synchro:SynchroEndedOn_Date' => 'The latest synchronization ended on %1$s.',
  554. 'Core:Synchro:SynchroRunningStartedOn_Date' => 'The synchronization started on %1$s is still running...',
  555. 'Menu:DataSources' => 'Synchronization Data Sources', // Duplicated into itop-welcome-itil (will be removed from here...)
  556. 'Menu:DataSources+' => 'All Synchronization Data Sources', // Duplicated into itop-welcome-itil (will be removed from here...)
  557. 'Core:Synchro:label_repl_ignored' => 'Ignored (%1$s)',
  558. 'Core:Synchro:label_repl_disappeared' => 'Disappeared (%1$s)',
  559. 'Core:Synchro:label_repl_existing' => 'Existing (%1$s)',
  560. 'Core:Synchro:label_repl_new' => 'New (%1$s)',
  561. 'Core:Synchro:label_obj_deleted' => 'Deleted (%1$s)',
  562. 'Core:Synchro:label_obj_obsoleted' => 'Obsoleted (%1$s)',
  563. 'Core:Synchro:label_obj_disappeared_errors' => 'Errors (%1$s)',
  564. 'Core:Synchro:label_obj_disappeared_no_action' => 'No Action (%1$s)',
  565. 'Core:Synchro:label_obj_unchanged' => 'Unchanged (%1$s)',
  566. 'Core:Synchro:label_obj_updated' => 'Updated (%1$s)',
  567. 'Core:Synchro:label_obj_updated_errors' => 'Errors (%1$s)',
  568. 'Core:Synchro:label_obj_new_unchanged' => 'Unchanged (%1$s)',
  569. 'Core:Synchro:label_obj_new_updated' => 'Updated (%1$s)',
  570. 'Core:Synchro:label_obj_created' => 'Created (%1$s)',
  571. 'Core:Synchro:label_obj_new_errors' => 'Errors (%1$s)',
  572. 'Core:Synchro:History' => 'Synchronization History',
  573. 'Core:SynchroLogTitle' => '%1$s - %2$s',
  574. 'Core:Synchro:Nb_Replica' => 'Replica processed: %1$s',
  575. 'Core:Synchro:Nb_Class:Objects' => '%1$s: %2$s',
  576. 'Class:SynchroDataSource/Error:AtLeastOneReconciliationKeyMustBeSpecified' => 'At Least one reconciliation key must be specified, or the reconciliation policy must be to use the primary key.',
  577. 'Class:SynchroDataSource/Error:DeleteRetentionDurationMustBeSpecified' => 'A delete retention period must be specified, since objects are to be deleted after being marked as obsolete',
  578. 'Class:SynchroDataSource/Error:DeletePolicyUpdateMustBeSpecified' => 'Obsolete objects are to be updated, but no update is specified.',
  579. 'Class:SynchroDataSource/Error:DataTableAlreadyExists' => 'The table %1$s already exists in the database. Please use another name for the synchro data table.',
  580. 'Core:SynchroReplica:PublicData' => 'Public Data',
  581. 'Core:SynchroReplica:PrivateDetails' => 'Private Details',
  582. 'Core:SynchroReplica:BackToDataSource' => 'Go Back to the Synchro Data Source: %1$s',
  583. 'Core:SynchroReplica:ListOfReplicas' => 'List of Replica',
  584. 'Core:SynchroAttExtKey:ReconciliationById' => 'id (Primary Key)',
  585. 'Core:SynchroAtt:attcode' => 'Attribute',
  586. 'Core:SynchroAtt:attcode+' => 'Field of the object',
  587. 'Core:SynchroAtt:reconciliation' => 'Reconciliation ?',
  588. 'Core:SynchroAtt:reconciliation+' => 'Used for searching',
  589. 'Core:SynchroAtt:update' => 'Update ?',
  590. 'Core:SynchroAtt:update+' => 'Used to update the object',
  591. 'Core:SynchroAtt:update_policy' => 'Update Policy',
  592. 'Core:SynchroAtt:update_policy+' => 'Behavior of the updated field',
  593. 'Core:SynchroAtt:reconciliation_attcode' => 'Reconciliation Key',
  594. 'Core:SynchroAtt:reconciliation_attcode+' => 'Attribute Code for the External Key Reconciliation',
  595. 'Core:SyncDataExchangeComment' => '(Data Synchro)',
  596. 'Core:Synchro:ListOfDataSources' => 'List of data sources:',
  597. 'Core:Synchro:LastSynchro' => 'Last synchronization:',
  598. 'Core:Synchro:ThisObjectIsSynchronized' => 'This object is synchronized with an external data source',
  599. 'Core:Synchro:TheObjectWasCreatedBy_Source' => 'The object was <b>created</b> by the external data source %1$s',
  600. 'Core:Synchro:TheObjectCanBeDeletedBy_Source' => 'The object <b>can be deleted</b> by the external data source %1$s',
  601. 'Core:Synchro:TheObjectCannotBeDeletedByUser_Source' => 'You <b>cannot delete the object</b> because it is owned by the external data source %1$s',
  602. 'TitleSynchroExecution' => 'Execution of the synchronization',
  603. 'Class:SynchroDataSource:DataTable' => 'Database table: %1$s',
  604. 'Core:SyncDataSourceObsolete' => 'The data source is marked as obsolete. Operation cancelled.',
  605. 'Core:SyncDataSourceAccessRestriction' => 'Only adminstrators or the user specified in the data source can execute this operation. Operation cancelled.',
  606. 'Core:SyncTooManyMissingReplicas' => 'All records have been untouched for some time (all of the objects could be deleted). Please check that the process that writes into the synchronization table is still running. Operation cancelled.',
  607. 'Core:SyncSplitModeCLIOnly' => 'The synchronization can be executed in chunks only if run in mode CLI',
  608. 'Core:Synchro:ListReplicas_AllReplicas_Errors_Warnings' => '%1$s replicas, %2$s error(s), %3$s warning(s).',
  609. 'Core:SynchroReplica:TargetObject' => 'Synchronized Object: %1$s',
  610. 'Class:AsyncSendEmail' => 'Email (asynchronous)',
  611. 'Class:AsyncSendEmail/Attribute:to' => 'To',
  612. 'Class:AsyncSendEmail/Attribute:subject' => 'Subject',
  613. 'Class:AsyncSendEmail/Attribute:body' => 'Body',
  614. 'Class:AsyncSendEmail/Attribute:header' => 'Header',
  615. 'Class:CMDBChangeOpSetAttributeOneWayPassword' => 'Encrypted Password',
  616. 'Class:CMDBChangeOpSetAttributeOneWayPassword/Attribute:prev_pwd' => 'Previous Value',
  617. 'Class:CMDBChangeOpSetAttributeEncrypted' => 'Encrypted Field',
  618. 'Class:CMDBChangeOpSetAttributeEncrypted/Attribute:prevstring' => 'Previous Value',
  619. 'Class:CMDBChangeOpSetAttributeCaseLog' => 'Case Log',
  620. 'Class:CMDBChangeOpSetAttributeCaseLog/Attribute:lastentry' => 'Last Entry',
  621. 'Class:SynchroDataSource' => 'Synchro Data Source',
  622. 'Class:SynchroDataSource/Attribute:status/Value:implementation' => 'Implementation',
  623. 'Class:SynchroDataSource/Attribute:status/Value:obsolete' => 'Obsolete',
  624. 'Class:SynchroDataSource/Attribute:status/Value:production' => 'Production',
  625. 'Class:SynchroDataSource/Attribute:scope_restriction' => 'Scope restriction',
  626. 'Class:SynchroDataSource/Attribute:reconciliation_policy/Value:use_attributes' => 'Use the attributes',
  627. 'Class:SynchroDataSource/Attribute:reconciliation_policy/Value:use_primary_key' => 'Use the primary_key field',
  628. 'Class:SynchroDataSource/Attribute:action_on_zero/Value:create' => 'Create',
  629. 'Class:SynchroDataSource/Attribute:action_on_zero/Value:error' => 'Error',
  630. 'Class:SynchroDataSource/Attribute:action_on_one/Value:error' => 'Error',
  631. 'Class:SynchroDataSource/Attribute:action_on_one/Value:update' => 'Update',
  632. 'Class:SynchroDataSource/Attribute:action_on_multiple/Value:create' => 'Create',
  633. 'Class:SynchroDataSource/Attribute:action_on_multiple/Value:error' => 'Error',
  634. 'Class:SynchroDataSource/Attribute:action_on_multiple/Value:take_first' => 'Take the first one (random?)',
  635. 'Class:SynchroDataSource/Attribute:delete_policy' => 'Delete Policy',
  636. 'Class:SynchroDataSource/Attribute:delete_policy/Value:delete' => 'Delete',
  637. 'Class:SynchroDataSource/Attribute:delete_policy/Value:ignore' => 'Ignore',
  638. 'Class:SynchroDataSource/Attribute:delete_policy/Value:update' => 'Update',
  639. 'Class:SynchroDataSource/Attribute:delete_policy/Value:update_then_delete' => 'Update then Delete',
  640. 'Class:SynchroDataSource/Attribute:attribute_list' => 'Attributes List',
  641. 'Class:SynchroDataSource/Attribute:user_delete_policy/Value:administrators' => 'Administrators only',
  642. 'Class:SynchroDataSource/Attribute:user_delete_policy/Value:everybody' => 'Everybody allowed to delete such objects',
  643. 'Class:SynchroDataSource/Attribute:user_delete_policy/Value:nobody' => 'Nobody',
  644. 'Class:SynchroAttribute' => 'Synchro Attribute',
  645. 'Class:SynchroAttribute/Attribute:sync_source_id' => 'Synchro Data Source',
  646. 'Class:SynchroAttribute/Attribute:attcode' => 'Attribute Code',
  647. 'Class:SynchroAttribute/Attribute:update' => 'Update',
  648. 'Class:SynchroAttribute/Attribute:reconcile' => 'Reconcile',
  649. 'Class:SynchroAttribute/Attribute:update_policy' => 'Update Policy',
  650. 'Class:SynchroAttribute/Attribute:update_policy/Value:master_locked' => 'Locked',
  651. 'Class:SynchroAttribute/Attribute:update_policy/Value:master_unlocked' => 'Unlocked',
  652. 'Class:SynchroAttribute/Attribute:update_policy/Value:write_if_empty' => 'Initialize if empty',
  653. 'Class:SynchroAttribute/Attribute:finalclass' => 'Class',
  654. 'Class:SynchroAttExtKey' => 'Synchro Attribute (ExtKey)',
  655. 'Class:SynchroAttExtKey/Attribute:reconciliation_attcode' => 'Reconciliation Attribute',
  656. 'Class:SynchroAttLinkSet' => 'Synchro Attribute (Linkset)',
  657. 'Class:SynchroAttLinkSet/Attribute:row_separator' => 'Rows separator',
  658. 'Class:SynchroAttLinkSet/Attribute:attribute_separator' => 'Attributes separator',
  659. 'Class:SynchroLog' => 'Synchr Log',
  660. 'Class:SynchroLog/Attribute:sync_source_id' => 'Synchro Data Source',
  661. 'Class:SynchroLog/Attribute:start_date' => 'Start Date',
  662. 'Class:SynchroLog/Attribute:end_date' => 'End Date',
  663. 'Class:SynchroLog/Attribute:status' => 'Status',
  664. 'Class:SynchroLog/Attribute:status/Value:completed' => 'Completed',
  665. 'Class:SynchroLog/Attribute:status/Value:error' => 'Error',
  666. 'Class:SynchroLog/Attribute:status/Value:running' => 'Still Running',
  667. 'Class:SynchroLog/Attribute:stats_nb_replica_seen' => 'Nb replica seen',
  668. 'Class:SynchroLog/Attribute:stats_nb_replica_total' => 'Nb replica total',
  669. 'Class:SynchroLog/Attribute:stats_nb_obj_deleted' => 'Nb objects deleted',
  670. 'Class:SynchroLog/Attribute:stats_nb_obj_deleted_errors' => 'Nb of errors while deleting',
  671. 'Class:SynchroLog/Attribute:stats_nb_obj_obsoleted' => 'Nb objects obsoleted',
  672. 'Class:SynchroLog/Attribute:stats_nb_obj_obsoleted_errors' => 'Nb of errors while obsoleting',
  673. 'Class:SynchroLog/Attribute:stats_nb_obj_created' => 'Nb objects created',
  674. 'Class:SynchroLog/Attribute:stats_nb_obj_created_errors' => 'Nb or errors while creating',
  675. 'Class:SynchroLog/Attribute:stats_nb_obj_updated' => 'Nb objects updated',
  676. 'Class:SynchroLog/Attribute:stats_nb_obj_updated_errors' => 'Nb errors while updating',
  677. 'Class:SynchroLog/Attribute:stats_nb_replica_reconciled_errors' => 'Nb of errors during reconciliation',
  678. 'Class:SynchroLog/Attribute:stats_nb_replica_disappeared_no_action' => 'Nb replica disappeared',
  679. 'Class:SynchroLog/Attribute:stats_nb_obj_new_updated' => 'Nb objects updated',
  680. 'Class:SynchroLog/Attribute:stats_nb_obj_new_unchanged' => 'Nb objects unchanged',
  681. 'Class:SynchroLog/Attribute:last_error' => 'Last error',
  682. 'Class:SynchroLog/Attribute:traces' => 'Traces',
  683. 'Class:SynchroReplica' => 'Synchro Replica',
  684. 'Class:SynchroReplica/Attribute:sync_source_id' => 'Synchro Data Source',
  685. 'Class:SynchroReplica/Attribute:dest_id' => 'Destination object (ID)',
  686. 'Class:SynchroReplica/Attribute:dest_class' => 'Destination type',
  687. 'Class:SynchroReplica/Attribute:status_last_seen' => 'Last seen',
  688. 'Class:SynchroReplica/Attribute:status' => 'Status',
  689. 'Class:SynchroReplica/Attribute:status/Value:modified' => 'Modified',
  690. 'Class:SynchroReplica/Attribute:status/Value:new' => 'New',
  691. 'Class:SynchroReplica/Attribute:status/Value:obsolete' => 'Obsolete',
  692. 'Class:SynchroReplica/Attribute:status/Value:orphan' => 'Orphan',
  693. 'Class:SynchroReplica/Attribute:status/Value:synchronized' => 'Synchronized',
  694. 'Class:SynchroReplica/Attribute:status_dest_creator' => 'Object Created ?',
  695. 'Class:SynchroReplica/Attribute:status_last_error' => 'Last Error',
  696. 'Class:SynchroReplica/Attribute:status_last_warning' => 'Warnings',
  697. 'Class:SynchroReplica/Attribute:info_creation_date' => 'Creation Date',
  698. 'Class:SynchroReplica/Attribute:info_last_modified' => 'Last Modified Date',
  699. 'Class:appUserPreferences' => 'User Preferences',
  700. 'Class:appUserPreferences/Attribute:userid' => 'User',
  701. 'Class:appUserPreferences/Attribute:preferences' => 'Prefs',
  702. 'Core:ExecProcess:Code1' => 'Wrong command or command finished with errors (e.g. wrong script name)',
  703. 'Core:ExecProcess:Code255' => 'PHP Error (parsing, or runtime)',
  704. // Attribute Duration
  705. 'Core:Duration_Seconds' => '%1$ds',
  706. 'Core:Duration_Minutes_Seconds' =>'%1$dmin %2$ds',
  707. 'Core:Duration_Hours_Minutes_Seconds' => '%1$dh %2$dmin %3$ds',
  708. 'Core:Duration_Days_Hours_Minutes_Seconds' => '%1$sd %2$dh %3$dmin %4$ds',
  709. // Explain working time computing
  710. 'Core:ExplainWTC:ElapsedTime' => 'Time elapsed (stored as "%1$s")',
  711. 'Core:ExplainWTC:StopWatch-TimeSpent' => 'Time spent for "%1$s"',
  712. 'Core:ExplainWTC:StopWatch-Deadline' => 'Deadline for "%1$s" at %2$d%%',
  713. // Bulk export
  714. 'Core:BulkExport:MissingParameter_Param' => 'Missing parameter "%1$s"',
  715. 'Core:BulkExport:InvalidParameter_Query' => 'Invalid value for the parameter "query". There is no Query Phrasebook corresponding to the id: "%1$s".',
  716. 'Core:BulkExport:ExportFormatPrompt' => 'Export format:',
  717. 'Core:BulkExportOf_Class' => '%1$s Export',
  718. 'Core:BulkExport:ClickHereToDownload_FileName' => 'Click here to download %1$s',
  719. 'Core:BulkExport:ExportResult' => 'Result of the export:',
  720. 'Core:BulkExport:RetrievingData' => 'Retrieving data...',
  721. 'Core:BulkExport:HTMLFormat' => 'Web Page (*.html)',
  722. 'Core:BulkExport:CSVFormat' => 'Comma Separated Values (*.csv)',
  723. 'Core:BulkExport:XLSXFormat' => 'Excel 2007 or newer (*.xlsx)',
  724. 'Core:BulkExport:PDFFormat' => 'PDF Document (*.pdf)',
  725. 'Core:BulkExport:DragAndDropHelp' => 'Drag and drop the columns\' headers to arrange the columns. Preview of %1$s lines. Total number of lines to export: %2$s.',
  726. 'Core:BulkExport:EmptyPreview' => 'Select the columns to be exported from the list above',
  727. 'Core:BulkExport:ColumnsOrder' => 'Columns order',
  728. 'Core:BulkExport:AvailableColumnsFrom_Class' => 'Available columns from %1$s',
  729. 'Core:BulkExport:NoFieldSelected' => 'Select at least one column to be exported',
  730. 'Core:BulkExport:CheckAll' => 'Check All',
  731. 'Core:BulkExport:UncheckAll' => 'Uncheck All',
  732. 'Core:BulkExport:ExportCancelledByUser' => 'Export cancelled by the user',
  733. 'Core:BulkExport:CSVOptions' => 'CSV Options',
  734. 'Core:BulkExport:CSVLocalization' => 'Localization',
  735. 'Core:BulkExport:PDFOptions' => 'PDF Options',
  736. 'Core:BulkExport:PDFPageSize' => 'Page Size:',
  737. 'Core:BulkExport:PageSize-A4' => 'A4',
  738. 'Core:BulkExport:PageSize-A3' => 'A3',
  739. 'Core:BulkExport:PageSize-Letter' => 'Letter',
  740. 'Core:BulkExport:PDFPageOrientation' => 'Page Orientation:',
  741. 'Core:BulkExport:PageOrientation-L' => 'Landscape',
  742. 'Core:BulkExport:PageOrientation-P' => 'Portrait',
  743. 'Core:BulkExport:XMLFormat' => 'XML file (*.xml)',
  744. 'Core:BulkExport:XMLOptions' => 'XML Options',
  745. 'Core:BulkExport:SpreadsheetFormat' => 'Spreadsheet HTML format (*.html)',
  746. 'Core:BulkExport:SpreadsheetOptions' => 'Spreadsheet Options',
  747. 'Core:BulkExport:OptionNoLocalize' => 'Do not localize the values (for Enumerated fields)',
  748. 'Core:BulkExport:OptionLinkSets' => 'Include linked objects',
  749. 'Core:BulkExport:ScopeDefinition' => 'Definition of the objects to export',
  750. 'Core:BulkExportLabelOQLExpression' => 'OQL Query:',
  751. 'Core:BulkExportLabelPhrasebookEntry' => 'Query Phrasebook Entry:',
  752. 'Core:BulkExportMessageEmptyOQL' => 'Please enter a valid OQL query.',
  753. 'Core:BulkExportMessageEmptyPhrasebookEntry' => 'Please select a valid phrasebook entry.',
  754. 'Core:BulkExportQueryPlaceholder' => 'Type an OQL query here...',
  755. 'Core:BulkExportCanRunNonInteractive' => 'Click here to run the export in non-interactive mode.',
  756. 'Core:BulkExportLegacyExport' => 'Click here to access the legacy export.',
  757. ));