PageRenderTime 118ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 1ms

/core/modules/migrate_drupal/tests/fixtures/drupal6.php

http://github.com/drupal/drupal
PHP | 18629 lines | 708 code | 13 blank | 17908 comment | 1 complexity | c746f9d212dfa01ad1c8aeca322e9305 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1
  1. <?php
  2. // @codingStandardsIgnoreFile
  3. /**
  4. * @file
  5. * A database agnostic dump for testing purposes.
  6. *
  7. * This file was generated by the Drupal 8.0 db-tools.php script.
  8. */
  9. use Drupal\Core\Database\Database;
  10. $connection = Database::getConnection();
  11. $connection->schema()->createTable('access', array(
  12. 'fields' => array(
  13. 'aid' => array(
  14. 'type' => 'serial',
  15. 'not null' => TRUE,
  16. 'size' => 'normal',
  17. ),
  18. 'mask' => array(
  19. 'type' => 'varchar',
  20. 'not null' => TRUE,
  21. 'length' => '255',
  22. 'default' => '',
  23. ),
  24. 'type' => array(
  25. 'type' => 'varchar',
  26. 'not null' => TRUE,
  27. 'length' => '255',
  28. 'default' => '',
  29. ),
  30. 'status' => array(
  31. 'type' => 'int',
  32. 'not null' => TRUE,
  33. 'size' => 'normal',
  34. 'default' => '0',
  35. ),
  36. ),
  37. 'primary key' => array(
  38. 'aid',
  39. ),
  40. 'mysql_character_set' => 'utf8',
  41. ));
  42. $connection->schema()->createTable('accesslog', array(
  43. 'fields' => array(
  44. 'aid' => array(
  45. 'type' => 'serial',
  46. 'not null' => TRUE,
  47. 'size' => 'normal',
  48. ),
  49. 'sid' => array(
  50. 'type' => 'varchar',
  51. 'not null' => TRUE,
  52. 'length' => '64',
  53. 'default' => '',
  54. ),
  55. 'title' => array(
  56. 'type' => 'varchar',
  57. 'not null' => FALSE,
  58. 'length' => '255',
  59. ),
  60. 'path' => array(
  61. 'type' => 'varchar',
  62. 'not null' => FALSE,
  63. 'length' => '255',
  64. ),
  65. 'url' => array(
  66. 'type' => 'text',
  67. 'not null' => FALSE,
  68. 'size' => 'normal',
  69. ),
  70. 'hostname' => array(
  71. 'type' => 'varchar',
  72. 'not null' => FALSE,
  73. 'length' => '128',
  74. ),
  75. 'uid' => array(
  76. 'type' => 'int',
  77. 'not null' => FALSE,
  78. 'size' => 'normal',
  79. 'default' => '0',
  80. 'unsigned' => TRUE,
  81. ),
  82. 'timer' => array(
  83. 'type' => 'int',
  84. 'not null' => TRUE,
  85. 'size' => 'normal',
  86. 'default' => '0',
  87. 'unsigned' => TRUE,
  88. ),
  89. 'timestamp' => array(
  90. 'type' => 'int',
  91. 'not null' => TRUE,
  92. 'size' => 'normal',
  93. 'default' => '0',
  94. 'unsigned' => TRUE,
  95. ),
  96. ),
  97. 'primary key' => array(
  98. 'aid',
  99. ),
  100. 'indexes' => array(
  101. 'accesslog_timestamp' => array(
  102. 'timestamp',
  103. ),
  104. 'uid' => array(
  105. 'uid',
  106. ),
  107. ),
  108. 'mysql_character_set' => 'utf8',
  109. ));
  110. $connection->schema()->createTable('actions', array(
  111. 'fields' => array(
  112. 'aid' => array(
  113. 'type' => 'varchar',
  114. 'not null' => TRUE,
  115. 'length' => '255',
  116. 'default' => '0',
  117. ),
  118. 'type' => array(
  119. 'type' => 'varchar',
  120. 'not null' => TRUE,
  121. 'length' => '32',
  122. 'default' => '',
  123. ),
  124. 'callback' => array(
  125. 'type' => 'varchar',
  126. 'not null' => TRUE,
  127. 'length' => '255',
  128. 'default' => '',
  129. ),
  130. 'parameters' => array(
  131. 'type' => 'text',
  132. 'not null' => TRUE,
  133. 'size' => 'normal',
  134. ),
  135. 'description' => array(
  136. 'type' => 'varchar',
  137. 'not null' => TRUE,
  138. 'length' => '255',
  139. 'default' => '0',
  140. ),
  141. ),
  142. 'primary key' => array(
  143. 'aid',
  144. ),
  145. 'mysql_character_set' => 'utf8',
  146. ));
  147. $connection->insert('actions')
  148. ->fields(array(
  149. 'aid',
  150. 'type',
  151. 'callback',
  152. 'parameters',
  153. 'description',
  154. ))
  155. ->values(array(
  156. 'aid' => '1',
  157. 'type' => 'comment',
  158. 'callback' => 'comment_unpublish_by_keyword_action',
  159. 'parameters' => 'a:1:{s:8:"keywords";a:1:{i:0;s:6:"drupal";}}',
  160. 'description' => 'Unpublish comment containing keyword(s)',
  161. ))
  162. ->values(array(
  163. 'aid' => '2',
  164. 'type' => 'node',
  165. 'callback' => 'node_assign_owner_action',
  166. 'parameters' => 'a:1:{s:9:"owner_uid";s:1:"2";}',
  167. 'description' => 'Change the author of a post',
  168. ))
  169. ->values(array(
  170. 'aid' => '3',
  171. 'type' => 'node',
  172. 'callback' => 'node_unpublish_by_keyword_action',
  173. 'parameters' => 'a:1:{s:8:"keywords";a:1:{i:0;s:6:"drupal";}}',
  174. 'description' => 'Unpublish post containing keyword(s)',
  175. ))
  176. ->values(array(
  177. 'aid' => '4',
  178. 'type' => 'system',
  179. 'callback' => 'system_message_action',
  180. 'parameters' => 'a:1:{s:7:"message";s:21:"Drupal migration test";}',
  181. 'description' => 'Display a message to the user',
  182. ))
  183. ->values(array(
  184. 'aid' => '5',
  185. 'type' => 'system',
  186. 'callback' => 'system_send_email_action',
  187. 'parameters' => 'a:3:{s:9:"recipient";s:16:"test@example.com";s:7:"subject";s:21:"Drupal migration test";s:7:"message";s:21:"Drupal migration test";}',
  188. 'description' => 'Send e-mail',
  189. ))
  190. ->values(array(
  191. 'aid' => '6',
  192. 'type' => 'system',
  193. 'callback' => 'system_goto_action',
  194. 'parameters' => 'a:1:{s:3:"url";s:22:"https://www.drupal.org";}',
  195. 'description' => 'Redirect to URL',
  196. ))
  197. ->values(array(
  198. 'aid' => 'comment_publish_action',
  199. 'type' => 'comment',
  200. 'callback' => 'comment_publish_action',
  201. 'parameters' => '',
  202. 'description' => 'Publish comment',
  203. ))
  204. ->values(array(
  205. 'aid' => 'comment_unpublish_action',
  206. 'type' => 'comment',
  207. 'callback' => 'comment_unpublish_action',
  208. 'parameters' => '',
  209. 'description' => 'Unpublish comment',
  210. ))
  211. ->values(array(
  212. 'aid' => 'imagecache_flush_action',
  213. 'type' => 'node',
  214. 'callback' => 'imagecache_flush_action',
  215. 'parameters' => '',
  216. 'description' => "ImageCache: Flush ALL presets for this node's filefield images",
  217. ))
  218. ->values(array(
  219. 'aid' => 'imagecache_generate_all_action',
  220. 'type' => 'node',
  221. 'callback' => 'imagecache_generate_all_action',
  222. 'parameters' => '',
  223. 'description' => "ImageCache: Generate ALL presets for this node's filefield images",
  224. ))
  225. ->values(array(
  226. 'aid' => 'node_make_sticky_action',
  227. 'type' => 'node',
  228. 'callback' => 'node_make_sticky_action',
  229. 'parameters' => '',
  230. 'description' => 'Make post sticky',
  231. ))
  232. ->values(array(
  233. 'aid' => 'node_make_unsticky_action',
  234. 'type' => 'node',
  235. 'callback' => 'node_make_unsticky_action',
  236. 'parameters' => '',
  237. 'description' => 'Make post unsticky',
  238. ))
  239. ->values(array(
  240. 'aid' => 'node_promote_action',
  241. 'type' => 'node',
  242. 'callback' => 'node_promote_action',
  243. 'parameters' => '',
  244. 'description' => 'Promote post to front page',
  245. ))
  246. ->values(array(
  247. 'aid' => 'node_publish_action',
  248. 'type' => 'node',
  249. 'callback' => 'node_publish_action',
  250. 'parameters' => '',
  251. 'description' => 'Publish post',
  252. ))
  253. ->values(array(
  254. 'aid' => 'node_save_action',
  255. 'type' => 'node',
  256. 'callback' => 'node_save_action',
  257. 'parameters' => '',
  258. 'description' => 'Save post',
  259. ))
  260. ->values(array(
  261. 'aid' => 'node_unpromote_action',
  262. 'type' => 'node',
  263. 'callback' => 'node_unpromote_action',
  264. 'parameters' => '',
  265. 'description' => 'Remove post from front page',
  266. ))
  267. ->values(array(
  268. 'aid' => 'node_unpublish_action',
  269. 'type' => 'node',
  270. 'callback' => 'node_unpublish_action',
  271. 'parameters' => '',
  272. 'description' => 'Unpublish post',
  273. ))
  274. ->values(array(
  275. 'aid' => 'user_block_ip_action',
  276. 'type' => 'user',
  277. 'callback' => 'user_block_ip_action',
  278. 'parameters' => '',
  279. 'description' => 'Ban IP address of current user',
  280. ))
  281. ->values(array(
  282. 'aid' => 'user_block_user_action',
  283. 'type' => 'user',
  284. 'callback' => 'user_block_user_action',
  285. 'parameters' => '',
  286. 'description' => 'Block current user',
  287. ))
  288. ->execute();
  289. $connection->schema()->createTable('actions_aid', array(
  290. 'fields' => array(
  291. 'aid' => array(
  292. 'type' => 'serial',
  293. 'not null' => TRUE,
  294. 'size' => 'normal',
  295. 'unsigned' => TRUE,
  296. ),
  297. ),
  298. 'primary key' => array(
  299. 'aid',
  300. ),
  301. 'mysql_character_set' => 'utf8',
  302. ));
  303. $connection->insert('actions_aid')
  304. ->fields(array(
  305. 'aid',
  306. ))
  307. ->values(array(
  308. 'aid' => '1',
  309. ))
  310. ->values(array(
  311. 'aid' => '2',
  312. ))
  313. ->values(array(
  314. 'aid' => '3',
  315. ))
  316. ->values(array(
  317. 'aid' => '4',
  318. ))
  319. ->values(array(
  320. 'aid' => '5',
  321. ))
  322. ->values(array(
  323. 'aid' => '6',
  324. ))
  325. ->execute();
  326. $connection->schema()->createTable('aggregator_category', array(
  327. 'fields' => array(
  328. 'cid' => array(
  329. 'type' => 'serial',
  330. 'not null' => TRUE,
  331. 'size' => 'normal',
  332. ),
  333. 'title' => array(
  334. 'type' => 'varchar',
  335. 'not null' => TRUE,
  336. 'length' => '255',
  337. 'default' => '',
  338. ),
  339. 'description' => array(
  340. 'type' => 'text',
  341. 'not null' => TRUE,
  342. 'size' => 'normal',
  343. ),
  344. 'block' => array(
  345. 'type' => 'int',
  346. 'not null' => TRUE,
  347. 'size' => 'normal',
  348. 'default' => '0',
  349. ),
  350. ),
  351. 'primary key' => array(
  352. 'cid',
  353. ),
  354. 'mysql_character_set' => 'utf8',
  355. ));
  356. $connection->schema()->createTable('aggregator_feed', array(
  357. 'fields' => array(
  358. 'fid' => array(
  359. 'type' => 'serial',
  360. 'not null' => TRUE,
  361. 'size' => 'normal',
  362. ),
  363. 'title' => array(
  364. 'type' => 'varchar',
  365. 'not null' => TRUE,
  366. 'length' => '255',
  367. 'default' => '',
  368. ),
  369. 'url' => array(
  370. 'type' => 'varchar',
  371. 'not null' => TRUE,
  372. 'length' => '255',
  373. 'default' => '',
  374. ),
  375. 'refresh' => array(
  376. 'type' => 'int',
  377. 'not null' => TRUE,
  378. 'size' => 'normal',
  379. 'default' => '0',
  380. ),
  381. 'checked' => array(
  382. 'type' => 'int',
  383. 'not null' => TRUE,
  384. 'size' => 'normal',
  385. 'default' => '0',
  386. ),
  387. 'link' => array(
  388. 'type' => 'varchar',
  389. 'not null' => TRUE,
  390. 'length' => '255',
  391. 'default' => '',
  392. ),
  393. 'description' => array(
  394. 'type' => 'text',
  395. 'not null' => TRUE,
  396. 'size' => 'normal',
  397. ),
  398. 'image' => array(
  399. 'type' => 'text',
  400. 'not null' => TRUE,
  401. 'size' => 'normal',
  402. ),
  403. 'etag' => array(
  404. 'type' => 'varchar',
  405. 'not null' => TRUE,
  406. 'length' => '255',
  407. 'default' => '',
  408. ),
  409. 'modified' => array(
  410. 'type' => 'int',
  411. 'not null' => TRUE,
  412. 'size' => 'normal',
  413. 'default' => '0',
  414. ),
  415. 'block' => array(
  416. 'type' => 'int',
  417. 'not null' => TRUE,
  418. 'size' => 'normal',
  419. 'default' => '0',
  420. ),
  421. ),
  422. 'primary key' => array(
  423. 'fid',
  424. ),
  425. 'mysql_character_set' => 'utf8',
  426. ));
  427. $connection->insert('aggregator_feed')
  428. ->fields(array(
  429. 'fid',
  430. 'title',
  431. 'url',
  432. 'refresh',
  433. 'checked',
  434. 'link',
  435. 'description',
  436. 'image',
  437. 'etag',
  438. 'modified',
  439. 'block',
  440. ))
  441. ->values(array(
  442. 'fid' => '5',
  443. 'title' => 'Know Your Meme',
  444. 'url' => 'http://knowyourmeme.com/newsfeed.rss',
  445. 'refresh' => '900',
  446. 'checked' => '1387659487',
  447. 'link' => 'http://knowyourmeme.com',
  448. 'description' => 'New items added to the News Feed',
  449. 'image' => 'http://b.thumbs.redditmedia.com/harEHsUUZVajabtC.png',
  450. 'etag' => '"213cc1365b96c310e92053c5551f0504"',
  451. 'modified' => '0',
  452. 'block' => '7',
  453. ))
  454. ->execute();
  455. $connection->schema()->createTable('aggregator_item', array(
  456. 'fields' => array(
  457. 'iid' => array(
  458. 'type' => 'serial',
  459. 'not null' => TRUE,
  460. 'size' => 'normal',
  461. ),
  462. 'fid' => array(
  463. 'type' => 'int',
  464. 'not null' => TRUE,
  465. 'size' => 'normal',
  466. 'default' => '0',
  467. ),
  468. 'title' => array(
  469. 'type' => 'varchar',
  470. 'not null' => TRUE,
  471. 'length' => '255',
  472. 'default' => '',
  473. ),
  474. 'link' => array(
  475. 'type' => 'varchar',
  476. 'not null' => TRUE,
  477. 'length' => '255',
  478. 'default' => '',
  479. ),
  480. 'author' => array(
  481. 'type' => 'varchar',
  482. 'not null' => TRUE,
  483. 'length' => '255',
  484. 'default' => '',
  485. ),
  486. 'description' => array(
  487. 'type' => 'text',
  488. 'not null' => TRUE,
  489. 'size' => 'normal',
  490. ),
  491. 'timestamp' => array(
  492. 'type' => 'int',
  493. 'not null' => FALSE,
  494. 'size' => 'normal',
  495. ),
  496. 'guid' => array(
  497. 'type' => 'varchar',
  498. 'not null' => FALSE,
  499. 'length' => '255',
  500. ),
  501. ),
  502. 'primary key' => array(
  503. 'iid',
  504. ),
  505. 'mysql_character_set' => 'utf8',
  506. ));
  507. $connection->insert('aggregator_item')
  508. ->fields(array(
  509. 'iid',
  510. 'fid',
  511. 'title',
  512. 'link',
  513. 'author',
  514. 'description',
  515. 'timestamp',
  516. 'guid',
  517. ))
  518. ->values(array(
  519. 'iid' => '1',
  520. 'fid' => '5',
  521. 'title' => 'This (three) weeks in Drupal Core - January 10th 2014',
  522. 'link' => 'https://groups.drupal.org/node/395218',
  523. 'author' => 'larowlan',
  524. 'description' => "<h2 id='new'>What's new with Drupal 8?</h2>",
  525. 'timestamp' => '1389297196',
  526. 'guid' => '395218 at https://groups.drupal.org',
  527. ))
  528. ->execute();
  529. $connection->schema()->createTable('authmap', array(
  530. 'fields' => array(
  531. 'aid' => array(
  532. 'type' => 'serial',
  533. 'not null' => TRUE,
  534. 'size' => 'normal',
  535. 'unsigned' => TRUE,
  536. ),
  537. 'uid' => array(
  538. 'type' => 'int',
  539. 'not null' => TRUE,
  540. 'size' => 'normal',
  541. 'default' => '0',
  542. ),
  543. 'authname' => array(
  544. 'type' => 'varchar',
  545. 'not null' => TRUE,
  546. 'length' => '128',
  547. 'default' => '',
  548. ),
  549. 'module' => array(
  550. 'type' => 'varchar',
  551. 'not null' => TRUE,
  552. 'length' => '128',
  553. 'default' => '',
  554. ),
  555. ),
  556. 'primary key' => array(
  557. 'aid',
  558. ),
  559. 'mysql_character_set' => 'utf8',
  560. ));
  561. $connection->schema()->createTable('batch', array(
  562. 'fields' => array(
  563. 'bid' => array(
  564. 'type' => 'serial',
  565. 'not null' => TRUE,
  566. 'size' => 'normal',
  567. 'unsigned' => TRUE,
  568. ),
  569. 'token' => array(
  570. 'type' => 'varchar',
  571. 'not null' => TRUE,
  572. 'length' => '64',
  573. ),
  574. 'timestamp' => array(
  575. 'type' => 'int',
  576. 'not null' => TRUE,
  577. 'size' => 'normal',
  578. ),
  579. 'batch' => array(
  580. 'type' => 'text',
  581. 'not null' => FALSE,
  582. 'size' => 'normal',
  583. ),
  584. ),
  585. 'primary key' => array(
  586. 'bid',
  587. ),
  588. 'mysql_character_set' => 'utf8',
  589. ));
  590. $connection->insert('batch')
  591. ->fields(array(
  592. 'bid',
  593. 'token',
  594. 'timestamp',
  595. 'batch',
  596. ))
  597. ->values(array(
  598. 'bid' => '1',
  599. 'token' => '',
  600. 'timestamp' => '1494966324',
  601. 'batch' => NULL,
  602. ))
  603. ->execute();
  604. $connection->schema()->createTable('blocks', array(
  605. 'fields' => array(
  606. 'bid' => array(
  607. 'type' => 'serial',
  608. 'not null' => TRUE,
  609. 'size' => 'normal',
  610. ),
  611. 'module' => array(
  612. 'type' => 'varchar',
  613. 'not null' => TRUE,
  614. 'length' => '64',
  615. 'default' => '',
  616. ),
  617. 'delta' => array(
  618. 'type' => 'varchar',
  619. 'not null' => TRUE,
  620. 'length' => '32',
  621. 'default' => '0',
  622. ),
  623. 'theme' => array(
  624. 'type' => 'varchar',
  625. 'not null' => TRUE,
  626. 'length' => '64',
  627. 'default' => '',
  628. ),
  629. 'status' => array(
  630. 'type' => 'int',
  631. 'not null' => TRUE,
  632. 'size' => 'normal',
  633. 'default' => '0',
  634. ),
  635. 'weight' => array(
  636. 'type' => 'int',
  637. 'not null' => TRUE,
  638. 'size' => 'normal',
  639. 'default' => '0',
  640. ),
  641. 'region' => array(
  642. 'type' => 'varchar',
  643. 'not null' => TRUE,
  644. 'length' => '64',
  645. 'default' => '',
  646. ),
  647. 'custom' => array(
  648. 'type' => 'int',
  649. 'not null' => TRUE,
  650. 'size' => 'normal',
  651. 'default' => '0',
  652. ),
  653. 'throttle' => array(
  654. 'type' => 'int',
  655. 'not null' => TRUE,
  656. 'size' => 'normal',
  657. 'default' => '0',
  658. ),
  659. 'visibility' => array(
  660. 'type' => 'int',
  661. 'not null' => TRUE,
  662. 'size' => 'normal',
  663. 'default' => '0',
  664. ),
  665. 'pages' => array(
  666. 'type' => 'text',
  667. 'not null' => TRUE,
  668. 'size' => 'normal',
  669. ),
  670. 'title' => array(
  671. 'type' => 'varchar',
  672. 'not null' => TRUE,
  673. 'length' => '64',
  674. 'default' => '',
  675. ),
  676. 'cache' => array(
  677. 'type' => 'int',
  678. 'not null' => TRUE,
  679. 'size' => 'normal',
  680. 'default' => '1',
  681. ),
  682. ),
  683. 'primary key' => array(
  684. 'bid',
  685. ),
  686. 'mysql_character_set' => 'utf8',
  687. ));
  688. $connection->insert('blocks')
  689. ->fields(array(
  690. 'bid',
  691. 'module',
  692. 'delta',
  693. 'theme',
  694. 'status',
  695. 'weight',
  696. 'region',
  697. 'custom',
  698. 'throttle',
  699. 'visibility',
  700. 'pages',
  701. 'title',
  702. 'cache',
  703. ))
  704. ->values(array(
  705. 'bid' => '1',
  706. 'module' => 'user',
  707. 'delta' => '0',
  708. 'theme' => 'garland',
  709. 'status' => '1',
  710. 'weight' => '-10',
  711. 'region' => 'left',
  712. 'custom' => '0',
  713. 'throttle' => '0',
  714. 'visibility' => '0',
  715. 'pages' => "<front>\r\nnode/1\nblog/*",
  716. 'title' => '',
  717. 'cache' => '-1',
  718. ))
  719. ->values(array(
  720. 'bid' => '2',
  721. 'module' => 'user',
  722. 'delta' => '1',
  723. 'theme' => 'garland',
  724. 'status' => '1',
  725. 'weight' => '-11',
  726. 'region' => 'left',
  727. 'custom' => '0',
  728. 'throttle' => '0',
  729. 'visibility' => '0',
  730. 'pages' => '',
  731. 'title' => 'zu - Navigation',
  732. 'cache' => '-1',
  733. ))
  734. ->values(array(
  735. 'bid' => '3',
  736. 'module' => 'system',
  737. 'delta' => '0',
  738. 'theme' => 'garland',
  739. 'status' => '1',
  740. 'weight' => '-5',
  741. 'region' => 'footer',
  742. 'custom' => '0',
  743. 'throttle' => '0',
  744. 'visibility' => '0',
  745. 'pages' => 'node/1',
  746. 'title' => '',
  747. 'cache' => '-1',
  748. ))
  749. ->values(array(
  750. 'bid' => '4',
  751. 'module' => 'comment',
  752. 'delta' => '0',
  753. 'theme' => 'garland',
  754. 'status' => '0',
  755. 'weight' => '-9',
  756. 'region' => '',
  757. 'custom' => '0',
  758. 'throttle' => '0',
  759. 'visibility' => '0',
  760. 'pages' => '',
  761. 'title' => '',
  762. 'cache' => '1',
  763. ))
  764. ->values(array(
  765. 'bid' => '5',
  766. 'module' => 'menu',
  767. 'delta' => 'primary-links',
  768. 'theme' => 'garland',
  769. 'status' => '1',
  770. 'weight' => '-5',
  771. 'region' => 'header',
  772. 'custom' => '0',
  773. 'throttle' => '0',
  774. 'visibility' => '0',
  775. 'pages' => '',
  776. 'title' => '',
  777. 'cache' => '-1',
  778. ))
  779. ->values(array(
  780. 'bid' => '6',
  781. 'module' => 'menu',
  782. 'delta' => 'secondary-links',
  783. 'theme' => 'garland',
  784. 'status' => '0',
  785. 'weight' => '-8',
  786. 'region' => '',
  787. 'custom' => '0',
  788. 'throttle' => '0',
  789. 'visibility' => '0',
  790. 'pages' => '',
  791. 'title' => '',
  792. 'cache' => '-1',
  793. ))
  794. ->values(array(
  795. 'bid' => '7',
  796. 'module' => 'node',
  797. 'delta' => '0',
  798. 'theme' => 'garland',
  799. 'status' => '0',
  800. 'weight' => '-7',
  801. 'region' => '',
  802. 'custom' => '0',
  803. 'throttle' => '0',
  804. 'visibility' => '0',
  805. 'pages' => '',
  806. 'title' => '',
  807. 'cache' => '-1',
  808. ))
  809. ->values(array(
  810. 'bid' => '8',
  811. 'module' => 'user',
  812. 'delta' => '2',
  813. 'theme' => 'garland',
  814. 'status' => '1',
  815. 'weight' => '-11',
  816. 'region' => 'right',
  817. 'custom' => '0',
  818. 'throttle' => '0',
  819. 'visibility' => '0',
  820. 'pages' => '',
  821. 'title' => '',
  822. 'cache' => '1',
  823. ))
  824. ->values(array(
  825. 'bid' => '9',
  826. 'module' => 'user',
  827. 'delta' => '3',
  828. 'theme' => 'garland',
  829. 'status' => '1',
  830. 'weight' => '-10',
  831. 'region' => 'right',
  832. 'custom' => '0',
  833. 'throttle' => '0',
  834. 'visibility' => '0',
  835. 'pages' => '',
  836. 'title' => '',
  837. 'cache' => '-1',
  838. ))
  839. ->values(array(
  840. 'bid' => '10',
  841. 'module' => 'block',
  842. 'delta' => '1',
  843. 'theme' => 'garland',
  844. 'status' => '1',
  845. 'weight' => '0',
  846. 'region' => 'content',
  847. 'custom' => '0',
  848. 'throttle' => '0',
  849. 'visibility' => '1',
  850. 'pages' => '<front>',
  851. 'title' => 'Static Block',
  852. 'cache' => '-1',
  853. ))
  854. ->values(array(
  855. 'bid' => '11',
  856. 'module' => 'block',
  857. 'delta' => '2',
  858. 'theme' => 'bluemarine',
  859. 'status' => '1',
  860. 'weight' => '-4',
  861. 'region' => 'right',
  862. 'custom' => '0',
  863. 'throttle' => '0',
  864. 'visibility' => '1',
  865. 'pages' => 'node',
  866. 'title' => 'Another Static Block',
  867. 'cache' => '-1',
  868. ))
  869. ->values(array(
  870. 'bid' => '12',
  871. 'module' => 'block',
  872. 'delta' => '1',
  873. 'theme' => 'test_theme',
  874. 'status' => '1',
  875. 'weight' => '-7',
  876. 'region' => 'right',
  877. 'custom' => '0',
  878. 'throttle' => '0',
  879. 'visibility' => '0',
  880. 'pages' => '',
  881. 'title' => '',
  882. 'cache' => '-1',
  883. ))
  884. ->values(array(
  885. 'bid' => '13',
  886. 'module' => 'block',
  887. 'delta' => '2',
  888. 'theme' => 'test_theme',
  889. 'status' => '1',
  890. 'weight' => '-2',
  891. 'region' => 'left',
  892. 'custom' => '0',
  893. 'throttle' => '0',
  894. 'visibility' => '2',
  895. 'pages' => "<?php\nreturn TRUE;",
  896. 'title' => '',
  897. 'cache' => '-1',
  898. ))
  899. ->values(array(
  900. 'bid' => '14',
  901. 'module' => 'aggregator',
  902. 'delta' => 'feed-5',
  903. 'theme' => 'garland',
  904. 'status' => '1',
  905. 'weight' => '-2',
  906. 'region' => 'right',
  907. 'custom' => '0',
  908. 'throttle' => '0',
  909. 'visibility' => '0',
  910. 'pages' => '',
  911. 'title' => '',
  912. 'cache' => '1',
  913. ))
  914. ->values(array(
  915. 'bid' => '15',
  916. 'module' => 'block',
  917. 'delta' => '2',
  918. 'theme' => 'garland',
  919. 'status' => '0',
  920. 'weight' => '1',
  921. 'region' => '',
  922. 'custom' => '0',
  923. 'throttle' => '0',
  924. 'visibility' => '0',
  925. 'pages' => '',
  926. 'title' => '',
  927. 'cache' => '-1',
  928. ))
  929. ->values(array(
  930. 'bid' => '16',
  931. 'module' => 'profile',
  932. 'delta' => '0',
  933. 'theme' => 'garland',
  934. 'status' => '0',
  935. 'weight' => '-5',
  936. 'region' => '',
  937. 'custom' => '0',
  938. 'throttle' => '0',
  939. 'visibility' => '0',
  940. 'pages' => '',
  941. 'title' => '',
  942. 'cache' => '5',
  943. ))
  944. ->values(array(
  945. 'bid' => '17',
  946. 'module' => 'event',
  947. 'delta' => '0',
  948. 'theme' => 'garland',
  949. 'status' => '0',
  950. 'weight' => '-3',
  951. 'region' => '',
  952. 'custom' => '0',
  953. 'throttle' => '0',
  954. 'visibility' => '0',
  955. 'pages' => '',
  956. 'title' => '',
  957. 'cache' => '1',
  958. ))
  959. ->values(array(
  960. 'bid' => '18',
  961. 'module' => 'event',
  962. 'delta' => '1',
  963. 'theme' => 'garland',
  964. 'status' => '0',
  965. 'weight' => '0',
  966. 'region' => '',
  967. 'custom' => '0',
  968. 'throttle' => '0',
  969. 'visibility' => '0',
  970. 'pages' => '',
  971. 'title' => '',
  972. 'cache' => '1',
  973. ))
  974. ->values(array(
  975. 'bid' => '19',
  976. 'module' => 'event',
  977. 'delta' => 'event-upcoming-event',
  978. 'theme' => 'garland',
  979. 'status' => '0',
  980. 'weight' => '-1',
  981. 'region' => '',
  982. 'custom' => '0',
  983. 'throttle' => '0',
  984. 'visibility' => '0',
  985. 'pages' => '',
  986. 'title' => '',
  987. 'cache' => '1',
  988. ))
  989. ->values(array(
  990. 'bid' => '20',
  991. 'module' => 'book',
  992. 'delta' => '0',
  993. 'theme' => 'garland',
  994. 'status' => '1',
  995. 'weight' => '-4',
  996. 'region' => 'right',
  997. 'custom' => '0',
  998. 'throttle' => '0',
  999. 'visibility' => '0',
  1000. 'pages' => '',
  1001. 'title' => '',
  1002. 'cache' => '5',
  1003. ))
  1004. ->values(array(
  1005. 'bid' => '21',
  1006. 'module' => 'locale',
  1007. 'delta' => '0',
  1008. 'theme' => 'garland',
  1009. 'status' => '0',
  1010. 'weight' => '0',
  1011. 'region' => '',
  1012. 'custom' => '0',
  1013. 'throttle' => '0',
  1014. 'visibility' => '0',
  1015. 'pages' => '',
  1016. 'title' => '',
  1017. 'cache' => '-1',
  1018. ))
  1019. ->values(array(
  1020. 'bid' => '22',
  1021. 'module' => 'forum',
  1022. 'delta' => '0',
  1023. 'theme' => 'garland',
  1024. 'status' => '1',
  1025. 'weight' => '-8',
  1026. 'region' => 'left',
  1027. 'custom' => '0',
  1028. 'throttle' => '0',
  1029. 'visibility' => '0',
  1030. 'pages' => '',
  1031. 'title' => '',
  1032. 'cache' => '1',
  1033. ))
  1034. ->values(array(
  1035. 'bid' => '23',
  1036. 'module' => 'forum',
  1037. 'delta' => '1',
  1038. 'theme' => 'garland',
  1039. 'status' => '1',
  1040. 'weight' => '-9',
  1041. 'region' => 'left',
  1042. 'custom' => '0',
  1043. 'throttle' => '0',
  1044. 'visibility' => '0',
  1045. 'pages' => '',
  1046. 'title' => '',
  1047. 'cache' => '1',
  1048. ))
  1049. ->values(array(
  1050. 'bid' => '24',
  1051. 'module' => 'statistics',
  1052. 'delta' => '0',
  1053. 'theme' => 'garland',
  1054. 'status' => '1',
  1055. 'weight' => '0',
  1056. 'region' => 'right',
  1057. 'custom' => '0',
  1058. 'throttle' => '0',
  1059. 'visibility' => '0',
  1060. 'pages' => '',
  1061. 'title' => '',
  1062. 'cache' => '-1',
  1063. ))
  1064. ->execute();
  1065. $connection->schema()->createTable('blocks_roles', array(
  1066. 'fields' => array(
  1067. 'module' => array(
  1068. 'type' => 'varchar',
  1069. 'not null' => TRUE,
  1070. 'length' => '64',
  1071. ),
  1072. 'delta' => array(
  1073. 'type' => 'varchar',
  1074. 'not null' => TRUE,
  1075. 'length' => '32',
  1076. ),
  1077. 'rid' => array(
  1078. 'type' => 'int',
  1079. 'not null' => TRUE,
  1080. 'size' => 'normal',
  1081. 'unsigned' => TRUE,
  1082. ),
  1083. ),
  1084. 'primary key' => array(
  1085. 'module',
  1086. 'delta',
  1087. 'rid',
  1088. ),
  1089. 'mysql_character_set' => 'utf8',
  1090. ));
  1091. $connection->insert('blocks_roles')
  1092. ->fields(array(
  1093. 'module',
  1094. 'delta',
  1095. 'rid',
  1096. ))
  1097. ->values(array(
  1098. 'module' => 'user',
  1099. 'delta' => '2',
  1100. 'rid' => '2',
  1101. ))
  1102. ->values(array(
  1103. 'module' => 'user',
  1104. 'delta' => '3',
  1105. 'rid' => '3',
  1106. ))
  1107. ->execute();
  1108. $connection->schema()->createTable('book', array(
  1109. 'fields' => array(
  1110. 'mlid' => array(
  1111. 'type' => 'int',
  1112. 'not null' => TRUE,
  1113. 'size' => 'normal',
  1114. 'default' => '0',
  1115. 'unsigned' => TRUE,
  1116. ),
  1117. 'nid' => array(
  1118. 'type' => 'int',
  1119. 'not null' => TRUE,
  1120. 'size' => 'normal',
  1121. 'default' => '0',
  1122. 'unsigned' => TRUE,
  1123. ),
  1124. 'bid' => array(
  1125. 'type' => 'int',
  1126. 'not null' => TRUE,
  1127. 'size' => 'normal',
  1128. 'default' => '0',
  1129. 'unsigned' => TRUE,
  1130. ),
  1131. ),
  1132. 'primary key' => array(
  1133. 'mlid',
  1134. ),
  1135. 'mysql_character_set' => 'utf8',
  1136. ));
  1137. $connection->insert('book')
  1138. ->fields(array(
  1139. 'mlid',
  1140. 'nid',
  1141. 'bid',
  1142. ))
  1143. ->values(array(
  1144. 'mlid' => '1',
  1145. 'nid' => '4',
  1146. 'bid' => '4',
  1147. ))
  1148. ->values(array(
  1149. 'mlid' => '2',
  1150. 'nid' => '5',
  1151. 'bid' => '4',
  1152. ))
  1153. ->values(array(
  1154. 'mlid' => '3',
  1155. 'nid' => '6',
  1156. 'bid' => '4',
  1157. ))
  1158. ->values(array(
  1159. 'mlid' => '4',
  1160. 'nid' => '7',
  1161. 'bid' => '4',
  1162. ))
  1163. ->values(array(
  1164. 'mlid' => '5',
  1165. 'nid' => '8',
  1166. 'bid' => '8',
  1167. ))
  1168. ->execute();
  1169. $connection->schema()->createTable('boxes', array(
  1170. 'fields' => array(
  1171. 'bid' => array(
  1172. 'type' => 'serial',
  1173. 'not null' => TRUE,
  1174. 'size' => 'normal',
  1175. 'unsigned' => TRUE,
  1176. ),
  1177. 'body' => array(
  1178. 'type' => 'text',
  1179. 'not null' => FALSE,
  1180. 'size' => 'normal',
  1181. ),
  1182. 'info' => array(
  1183. 'type' => 'varchar',
  1184. 'not null' => TRUE,
  1185. 'length' => '128',
  1186. 'default' => '',
  1187. ),
  1188. 'format' => array(
  1189. 'type' => 'int',
  1190. 'not null' => TRUE,
  1191. 'size' => 'normal',
  1192. 'default' => '0',
  1193. ),
  1194. ),
  1195. 'primary key' => array(
  1196. 'bid',
  1197. ),
  1198. 'mysql_character_set' => 'utf8',
  1199. ));
  1200. $connection->insert('boxes')
  1201. ->fields(array(
  1202. 'bid',
  1203. 'body',
  1204. 'info',
  1205. 'format',
  1206. ))
  1207. ->values(array(
  1208. 'bid' => '1',
  1209. 'body' => '<h3>My first custom block body</h3>',
  1210. 'info' => 'My block 1',
  1211. 'format' => '2',
  1212. ))
  1213. ->values(array(
  1214. 'bid' => '2',
  1215. 'body' => '<h3>My second custom block body</h3>',
  1216. 'info' => 'My block 2',
  1217. 'format' => '2',
  1218. ))
  1219. ->execute();
  1220. $connection->schema()->createTable('cache', array(
  1221. 'fields' => array(
  1222. 'cid' => array(
  1223. 'type' => 'varchar',
  1224. 'not null' => TRUE,
  1225. 'length' => '255',
  1226. 'default' => '',
  1227. ),
  1228. 'data' => array(
  1229. 'type' => 'blob',
  1230. 'not null' => FALSE,
  1231. 'size' => 'big',
  1232. ),
  1233. 'expire' => array(
  1234. 'type' => 'int',
  1235. 'not null' => TRUE,
  1236. 'size' => 'normal',
  1237. 'default' => '0',
  1238. ),
  1239. 'created' => array(
  1240. 'type' => 'int',
  1241. 'not null' => TRUE,
  1242. 'size' => 'normal',
  1243. 'default' => '0',
  1244. ),
  1245. 'headers' => array(
  1246. 'type' => 'text',
  1247. 'not null' => FALSE,
  1248. 'size' => 'normal',
  1249. ),
  1250. 'serialized' => array(
  1251. 'type' => 'int',
  1252. 'not null' => TRUE,
  1253. 'size' => 'normal',
  1254. 'default' => '0',
  1255. ),
  1256. ),
  1257. 'primary key' => array(
  1258. 'cid',
  1259. ),
  1260. 'mysql_character_set' => 'utf8',
  1261. ));
  1262. $connection->schema()->createTable('cache_block', array(
  1263. 'fields' => array(
  1264. 'cid' => array(
  1265. 'type' => 'varchar',
  1266. 'not null' => TRUE,
  1267. 'length' => '255',
  1268. 'default' => '',
  1269. ),
  1270. 'data' => array(
  1271. 'type' => 'blob',
  1272. 'not null' => FALSE,
  1273. 'size' => 'big',
  1274. ),
  1275. 'expire' => array(
  1276. 'type' => 'int',
  1277. 'not null' => TRUE,
  1278. 'size' => 'normal',
  1279. 'default' => '0',
  1280. ),
  1281. 'created' => array(
  1282. 'type' => 'int',
  1283. 'not null' => TRUE,
  1284. 'size' => 'normal',
  1285. 'default' => '0',
  1286. ),
  1287. 'headers' => array(
  1288. 'type' => 'text',
  1289. 'not null' => FALSE,
  1290. 'size' => 'normal',
  1291. ),
  1292. 'serialized' => array(
  1293. 'type' => 'int',
  1294. 'not null' => TRUE,
  1295. 'size' => 'normal',
  1296. 'default' => '0',
  1297. ),
  1298. ),
  1299. 'primary key' => array(
  1300. 'cid',
  1301. ),
  1302. 'mysql_character_set' => 'utf8',
  1303. ));
  1304. $connection->schema()->createTable('cache_bootstrap', array(
  1305. 'fields' => array(
  1306. 'cid' => array(
  1307. 'type' => 'varchar',
  1308. 'not null' => TRUE,
  1309. 'length' => '255',
  1310. 'default' => '',
  1311. ),
  1312. 'data' => array(
  1313. 'type' => 'blob',
  1314. 'not null' => FALSE,
  1315. 'size' => 'big',
  1316. ),
  1317. 'expire' => array(
  1318. 'type' => 'int',
  1319. 'not null' => TRUE,
  1320. 'size' => 'normal',
  1321. 'default' => '0',
  1322. ),
  1323. 'created' => array(
  1324. 'type' => 'numeric',
  1325. 'not null' => TRUE,
  1326. 'precision' => '14',
  1327. 'scale' => '3',
  1328. 'default' => '0.000',
  1329. ),
  1330. 'serialized' => array(
  1331. 'type' => 'int',
  1332. 'not null' => TRUE,
  1333. 'size' => 'normal',
  1334. 'default' => '0',
  1335. ),
  1336. 'tags' => array(
  1337. 'type' => 'text',
  1338. 'not null' => FALSE,
  1339. 'size' => 'normal',
  1340. ),
  1341. 'checksum_invalidations' => array(
  1342. 'type' => 'int',
  1343. 'not null' => TRUE,
  1344. 'size' => 'normal',
  1345. 'default' => '0',
  1346. ),
  1347. 'checksum_deletions' => array(
  1348. 'type' => 'int',
  1349. 'not null' => TRUE,
  1350. 'size' => 'normal',
  1351. 'default' => '0',
  1352. ),
  1353. ),
  1354. 'primary key' => array(
  1355. 'cid',
  1356. ),
  1357. 'mysql_character_set' => 'utf8',
  1358. ));
  1359. $connection->schema()->createTable('cache_config', array(
  1360. 'fields' => array(
  1361. 'cid' => array(
  1362. 'type' => 'varchar',
  1363. 'not null' => TRUE,
  1364. 'length' => '255',
  1365. 'default' => '',
  1366. ),
  1367. 'data' => array(
  1368. 'type' => 'blob',
  1369. 'not null' => FALSE,
  1370. 'size' => 'big',
  1371. ),
  1372. 'expire' => array(
  1373. 'type' => 'int',
  1374. 'not null' => TRUE,
  1375. 'size' => 'normal',
  1376. 'default' => '0',
  1377. ),
  1378. 'created' => array(
  1379. 'type' => 'numeric',
  1380. 'not null' => TRUE,
  1381. 'precision' => '14',
  1382. 'scale' => '3',
  1383. 'default' => '0.000',
  1384. ),
  1385. 'serialized' => array(
  1386. 'type' => 'int',
  1387. 'not null' => TRUE,
  1388. 'size' => 'normal',
  1389. 'default' => '0',
  1390. ),
  1391. 'tags' => array(
  1392. 'type' => 'text',
  1393. 'not null' => FALSE,
  1394. 'size' => 'normal',
  1395. ),
  1396. 'checksum_invalidations' => array(
  1397. 'type' => 'int',
  1398. 'not null' => TRUE,
  1399. 'size' => 'normal',
  1400. 'default' => '0',
  1401. ),
  1402. 'checksum_deletions' => array(
  1403. 'type' => 'int',
  1404. 'not null' => TRUE,
  1405. 'size' => 'normal',
  1406. 'default' => '0',
  1407. ),
  1408. ),
  1409. 'primary key' => array(
  1410. 'cid',
  1411. ),
  1412. 'mysql_character_set' => 'utf8',
  1413. ));
  1414. $connection->schema()->createTable('cache_content', array(
  1415. 'fields' => array(
  1416. 'cid' => array(
  1417. 'type' => 'varchar',
  1418. 'not null' => TRUE,
  1419. 'length' => '255',
  1420. 'default' => '',
  1421. ),
  1422. 'data' => array(
  1423. 'type' => 'blob',
  1424. 'not null' => FALSE,
  1425. 'size' => 'big',
  1426. ),
  1427. 'expire' => array(
  1428. 'type' => 'int',
  1429. 'not null' => TRUE,
  1430. 'size' => 'normal',
  1431. 'default' => '0',
  1432. ),
  1433. 'created' => array(
  1434. 'type' => 'int',
  1435. 'not null' => TRUE,
  1436. 'size' => 'normal',
  1437. 'default' => '0',
  1438. ),
  1439. 'headers' => array(
  1440. 'type' => 'text',
  1441. 'not null' => FALSE,
  1442. 'size' => 'normal',
  1443. ),
  1444. 'serialized' => array(
  1445. 'type' => 'int',
  1446. 'not null' => TRUE,
  1447. 'size' => 'normal',
  1448. 'default' => '0',
  1449. ),
  1450. ),
  1451. 'primary key' => array(
  1452. 'cid',
  1453. ),
  1454. 'mysql_character_set' => 'utf8',
  1455. ));
  1456. $connection->schema()->createTable('cache_discovery', array(
  1457. 'fields' => array(
  1458. 'cid' => array(
  1459. 'type' => 'varchar',
  1460. 'not null' => TRUE,
  1461. 'length' => '255',
  1462. 'default' => '',
  1463. ),
  1464. 'data' => array(
  1465. 'type' => 'blob',
  1466. 'not null' => FALSE,
  1467. 'size' => 'big',
  1468. ),
  1469. 'expire' => array(
  1470. 'type' => 'int',
  1471. 'not null' => TRUE,
  1472. 'size' => 'normal',
  1473. 'default' => '0',
  1474. ),
  1475. 'created' => array(
  1476. 'type' => 'numeric',
  1477. 'not null' => TRUE,
  1478. 'precision' => '14',
  1479. 'scale' => '3',
  1480. 'default' => '0.000',
  1481. ),
  1482. 'serialized' => array(
  1483. 'type' => 'int',
  1484. 'not null' => TRUE,
  1485. 'size' => 'normal',
  1486. 'default' => '0',
  1487. ),
  1488. 'tags' => array(
  1489. 'type' => 'text',
  1490. 'not null' => FALSE,
  1491. 'size' => 'normal',
  1492. ),
  1493. 'checksum_invalidations' => array(
  1494. 'type' => 'int',
  1495. 'not null' => TRUE,
  1496. 'size' => 'normal',
  1497. 'default' => '0',
  1498. ),
  1499. 'checksum_deletions' => array(
  1500. 'type' => 'int',
  1501. 'not null' => TRUE,
  1502. 'size' => 'normal',
  1503. 'default' => '0',
  1504. ),
  1505. ),
  1506. 'primary key' => array(
  1507. 'cid',
  1508. ),
  1509. 'mysql_character_set' => 'utf8',
  1510. ));
  1511. $connection->schema()->createTable('cache_filter', array(
  1512. 'fields' => array(
  1513. 'cid' => array(
  1514. 'type' => 'varchar',
  1515. 'not null' => TRUE,
  1516. 'length' => '255',
  1517. 'default' => '',
  1518. ),
  1519. 'data' => array(
  1520. 'type' => 'blob',
  1521. 'not null' => FALSE,
  1522. 'size' => 'big',
  1523. ),
  1524. 'expire' => array(
  1525. 'type' => 'int',
  1526. 'not null' => TRUE,
  1527. 'size' => 'normal',
  1528. 'default' => '0',
  1529. ),
  1530. 'created' => array(
  1531. 'type' => 'int',
  1532. 'not null' => TRUE,
  1533. 'size' => 'normal',
  1534. 'default' => '0',
  1535. ),
  1536. 'headers' => array(
  1537. 'type' => 'text',
  1538. 'not null' => FALSE,
  1539. 'size' => 'normal',
  1540. ),
  1541. 'serialized' => array(
  1542. 'type' => 'int',
  1543. 'not null' => TRUE,
  1544. 'size' => 'normal',
  1545. 'default' => '0',
  1546. ),
  1547. ),
  1548. 'primary key' => array(
  1549. 'cid',
  1550. ),
  1551. 'mysql_character_set' => 'utf8',
  1552. ));
  1553. $connection->schema()->createTable('cache_form', array(
  1554. 'fields' => array(
  1555. 'cid' => array(
  1556. 'type' => 'varchar',
  1557. 'not null' => TRUE,
  1558. 'length' => '255',
  1559. 'default' => '',
  1560. ),
  1561. 'data' => array(
  1562. 'type' => 'blob',
  1563. 'not null' => FALSE,
  1564. 'size' => 'big',
  1565. ),
  1566. 'expire' => array(
  1567. 'type' => 'int',
  1568. 'not null' => TRUE,
  1569. 'size' => 'normal',
  1570. 'default' => '0',
  1571. ),
  1572. 'created' => array(
  1573. 'type' => 'int',
  1574. 'not null' => TRUE,
  1575. 'size' => 'normal',
  1576. 'default' => '0',
  1577. ),
  1578. 'headers' => array(
  1579. 'type' => 'text',
  1580. 'not null' => FALSE,
  1581. 'size' => 'normal',
  1582. ),
  1583. 'serialized' => array(
  1584. 'type' => 'int',
  1585. 'not null' => TRUE,
  1586. 'size' => 'normal',
  1587. 'default' => '0',
  1588. ),
  1589. ),
  1590. 'primary key' => array(
  1591. 'cid',
  1592. ),
  1593. 'mysql_character_set' => 'utf8',
  1594. ));
  1595. $connection->schema()->createTable('cache_menu', array(
  1596. 'fields' => array(
  1597. 'cid' => array(
  1598. 'type' => 'varchar',
  1599. 'not null' => TRUE,
  1600. 'length' => '255',
  1601. 'default' => '',
  1602. ),
  1603. 'data' => array(
  1604. 'type' => 'blob',
  1605. 'not null' => FALSE,
  1606. 'size' => 'big',
  1607. ),
  1608. 'expire' => array(
  1609. 'type' => 'int',
  1610. 'not null' => TRUE,
  1611. 'size' => 'normal',
  1612. 'default' => '0',
  1613. ),
  1614. 'created' => array(
  1615. 'type' => 'int',
  1616. 'not null' => TRUE,
  1617. 'size' => 'normal',
  1618. 'default' => '0',
  1619. ),
  1620. 'headers' => array(
  1621. 'type' => 'text',
  1622. 'not null' => FALSE,
  1623. 'size' => 'normal',
  1624. ),
  1625. 'serialized' => array(
  1626. 'type' => 'int',
  1627. 'not null' => TRUE,
  1628. 'size' => 'normal',
  1629. 'default' => '0',
  1630. ),
  1631. ),
  1632. 'primary key' => array(
  1633. 'cid',
  1634. ),
  1635. 'mysql_character_set' => 'utf8',
  1636. ));
  1637. $connection->schema()->createTable('cache_page', array(
  1638. 'fields' => array(
  1639. 'cid' => array(
  1640. 'type' => 'varchar',
  1641. 'not null' => TRUE,
  1642. 'length' => '255',
  1643. 'default' => '',
  1644. ),
  1645. 'data' => array(
  1646. 'type' => 'blob',
  1647. 'not null' => FALSE,
  1648. 'size' => 'big',
  1649. ),
  1650. 'expire' => array(
  1651. 'type' => 'int',
  1652. 'not null' => TRUE,
  1653. 'size' => 'normal',
  1654. 'default' => '0',
  1655. ),
  1656. 'created' => array(
  1657. 'type' => 'int',
  1658. 'not null' => TRUE,
  1659. 'size' => 'normal',
  1660. 'default' => '0',
  1661. ),
  1662. 'headers' => array(
  1663. 'type' => 'text',
  1664. 'not null' => FALSE,
  1665. 'size' => 'normal',
  1666. ),
  1667. 'serialized' => array(
  1668. 'type' => 'int',
  1669. 'not null' => TRUE,
  1670. 'size' => 'normal',
  1671. 'default' => '0',
  1672. ),
  1673. ),
  1674. 'primary key' => array(
  1675. 'cid',
  1676. ),
  1677. 'mysql_character_set' => 'utf8',
  1678. ));
  1679. $connection->schema()->createTable('cache_update', array(
  1680. 'fields' => array(
  1681. 'cid' => array(
  1682. 'type' => 'varchar',
  1683. 'not null' => TRUE,
  1684. 'length' => '255',
  1685. 'default' => '',
  1686. ),
  1687. 'data' => array(
  1688. 'type' => 'blob',
  1689. 'not null' => FALSE,
  1690. 'size' => 'big',
  1691. ),
  1692. 'expire' => array(
  1693. 'type' => 'int',
  1694. 'not null' => TRUE,
  1695. 'size' => 'normal',
  1696. 'default' => '0',
  1697. ),
  1698. 'created' => array(
  1699. 'type' => 'int',
  1700. 'not null' => TRUE,
  1701. 'size' => 'normal',
  1702. 'default' => '0',
  1703. ),
  1704. 'headers' => array(
  1705. 'type' => 'text',
  1706. 'not null' => FALSE,
  1707. 'size' => 'normal',
  1708. ),
  1709. 'serialized' => array(
  1710. 'type' => 'int',
  1711. 'not null' => TRUE,
  1712. 'size' => 'normal',
  1713. 'default' => '0',
  1714. ),
  1715. ),
  1716. 'primary key' => array(
  1717. 'cid',
  1718. ),
  1719. 'mysql_character_set' => 'utf8',
  1720. ));
  1721. $connection->schema()->createTable('cachetags', array(
  1722. 'fields' => array(
  1723. 'tag' => array(
  1724. 'type' => 'varchar',
  1725. 'not null' => TRUE,
  1726. 'length' => '255',
  1727. 'default' => '',
  1728. ),
  1729. 'invalidations' => array(
  1730. 'type' => 'int',
  1731. 'not null' => TRUE,
  1732. 'size' => 'normal',
  1733. 'default' => '0',
  1734. ),
  1735. 'deletions' => array(
  1736. 'type' => 'int',
  1737. 'not null' => TRUE,
  1738. 'size' => 'normal',
  1739. 'default' => '0',
  1740. ),
  1741. ),
  1742. 'primary key' => array(
  1743. 'tag',
  1744. ),
  1745. 'mysql_character_set' => 'utf8',
  1746. ));
  1747. $connection->schema()->createTable('comments', array(
  1748. 'fields' => array(
  1749. 'cid' => array(
  1750. 'type' => 'serial',
  1751. 'not null' => TRUE,
  1752. 'size' => 'normal',
  1753. ),
  1754. 'pid' => array(
  1755. 'type' => 'int',
  1756. 'not null' => TRUE,
  1757. 'size' => 'normal',
  1758. 'default' => '0',
  1759. ),
  1760. 'nid' => array(
  1761. 'type' => 'int',
  1762. 'not null' => TRUE,
  1763. 'size' => 'normal',
  1764. 'default' => '0',
  1765. ),
  1766. 'uid' => array(
  1767. 'type' => 'int',
  1768. 'not null' => TRUE,
  1769. 'size' => 'normal',
  1770. 'default' => '0',
  1771. ),
  1772. 'subject' => array(
  1773. 'type' => 'varchar',
  1774. 'not null' => TRUE,
  1775. 'length' => '64',
  1776. 'default' => '',
  1777. ),
  1778. 'comment' => array(
  1779. 'type' => 'text',
  1780. 'not null' => TRUE,
  1781. 'size' => 'normal',
  1782. ),
  1783. 'hostname' => array(
  1784. 'type' => 'varchar',
  1785. 'not null' => TRUE,
  1786. 'length' => '128',
  1787. 'default' => '',
  1788. ),
  1789. 'timestamp' => array(
  1790. 'type' => 'int',
  1791. 'not null' => TRUE,
  1792. 'size' => 'normal',
  1793. 'default' => '0',
  1794. ),
  1795. 'status' => array(
  1796. 'type' => 'int',
  1797. 'not null' => TRUE,
  1798. 'size' => 'normal',
  1799. 'default' => '0',
  1800. 'unsigned' => TRUE,
  1801. ),
  1802. 'format' => array(
  1803. 'type' => 'int',
  1804. 'not null' => TRUE,
  1805. 'size' => 'normal',
  1806. 'default' => '0',
  1807. ),
  1808. 'thread' => array(
  1809. 'type' => 'varchar',
  1810. 'not null' => TRUE,
  1811. 'length' => '255',
  1812. ),
  1813. 'name' => array(
  1814. 'type' => 'varchar',
  1815. 'not null' => FALSE,
  1816. 'length' => '60',
  1817. ),
  1818. 'mail' => array(
  1819. 'type' => 'varchar',
  1820. 'not null' => FALSE,
  1821. 'length' => '64',
  1822. ),
  1823. 'homepage' => array(
  1824. 'type' => 'varchar',
  1825. 'not null' => FALSE,
  1826. 'length' => '255',
  1827. ),
  1828. ),
  1829. 'primary key' => array(
  1830. 'cid',
  1831. ),
  1832. 'indexes' => array(
  1833. 'pid' => array(
  1834. 'pid',
  1835. ),
  1836. 'comment_uid' => array(
  1837. 'uid',
  1838. ),
  1839. ),
  1840. 'mysql_character_set' => 'utf8',
  1841. ));
  1842. $connection->insert('comments')
  1843. ->fields(array(
  1844. 'cid',
  1845. 'pid',
  1846. 'nid',
  1847. 'uid',
  1848. 'subject',
  1849. 'comment',
  1850. 'hostname',
  1851. 'timestamp',
  1852. 'status',
  1853. 'format',
  1854. 'thread',
  1855. 'name',
  1856. 'mail',
  1857. 'homepage',
  1858. ))
  1859. ->values(array(
  1860. 'cid' => '1',
  1861. 'pid' => '0',
  1862. 'nid' => '1',
  1863. 'uid' => '0',
  1864. 'subject' => 'The first comment.',
  1865. 'comment' => 'The first comment body.',
  1866. 'hostname' => '203.0.113.1',
  1867. 'timestamp' => '1390264918',
  1868. 'status' => '0',
  1869. 'format' => '1',
  1870. 'thread' => '01/',
  1871. 'name' => '1st comment author name',
  1872. 'mail' => 'comment1@example.com',
  1873. 'homepage' => 'https://www.drupal.org',
  1874. ))
  1875. ->values(array(
  1876. 'cid' => '2',
  1877. 'pid' => '3',
  1878. 'nid' => '1',
  1879. 'uid' => '0',
  1880. 'subject' => 'The response to the second comment.',
  1881. 'comment' => 'The second comment response body.',
  1882. 'hostname' => '203.0.113.2',
  1883. 'timestamp' => '1390264938',
  1884. 'status' => '0',
  1885. 'format' => '1',
  1886. 'thread' => '02/01',
  1887. 'name' => '3rd comment author name',
  1888. 'mail' => 'comment3@example.com',
  1889. 'homepage' => 'https://www.drupal.org',
  1890. ))
  1891. ->values(array(
  1892. 'cid' => '3',
  1893. 'pid' => '0',
  1894. 'nid' => '1',
  1895. 'uid' => '0',
  1896. 'subject' => 'The second comment.',
  1897. 'comment' => 'The second comment body.',
  1898. 'hostname' => '203.0.113.3',
  1899. 'timestamp' => '1390264948',
  1900. 'status' => '1',
  1901. 'format' => '1',
  1902. 'thread' => '02/',
  1903. 'name' => '3rd comment author name',
  1904. 'mail' => 'comment3@example.com',
  1905. 'homepage' => 'https://www.drupal.org',
  1906. ))
  1907. ->values(array(
  1908. 'cid' => '4',
  1909. 'pid' => '0',
  1910. 'nid' => '19',
  1911. 'uid' => '1',
  1912. 'subject' => 'Subject 1',
  1913. 'comment' => 'Comment 1',
  1914. 'hostname' => '127.0.0.1',
  1915. 'timestamp' => '1501955780',
  1916. 'status' => '0',
  1917. 'format' => '1',
  1918. 'thread' => '01/',
  1919. 'name' => 'root',
  1920. 'mail' => '',
  1921. 'homepage' => '',
  1922. ))
  1923. ->values(array(
  1924. 'cid' => '5',
  1925. 'pid' => '4',
  1926. 'nid' => '19',
  1927. 'uid' => '1',
  1928. 'subject' => 'Subject 2',
  1929. 'comment' => 'Comment 2',
  1930. 'hostname' => '127.0.0.1',
  1931. 'timestamp' => '1501955792',
  1932. 'status' => '0',
  1933. 'format' => '1',
  1934. 'thread' => '01.00/',
  1935. 'name' => 'root',
  1936. 'mail' => '',
  1937. 'homepage' => '',
  1938. ))
  1939. ->values(array(
  1940. 'cid' => '6',
  1941. 'pid' => '5',
  1942. 'nid' => '19',
  1943. 'uid' => '1',
  1944. 'subject' => 'Subject 3',
  1945. 'comment' => 'Comment 3',
  1946. 'hostname' => '127.0.0.1',
  1947. 'timestamp' => '1501955803',
  1948. 'status' => '0',
  1949. 'format' => '1',
  1950. 'thread' => '01.00.00/',
  1951. 'name' => 'root',
  1952. 'mail' => '',
  1953. 'homepage' => '',
  1954. ))
  1955. ->values(array(
  1956. 'cid' => '7',
  1957. 'pid' => '0',
  1958. 'nid' => '21',
  1959. 'uid' => '1',
  1960. 'subject' => 'Comment to John Smith - EN',
  1961. 'comment' => 'This is an English comment.',
  1962. 'hostname' => '2001:14ba:13f8:300:d9d0:363c:9fe4:66e1',
  1963. 'timestamp' => '1534014729',
  1964. 'status' => '0',
  1965. 'format' => '1',
  1966. 'thread' => '01/',
  1967. 'name' => 'root',
  1968. 'mail' => '',
  1969. 'homepage' => '',
  1970. ))
  1971. ->values(array(
  1972. 'cid' => '8',
  1973. 'pid' => '0',
  1974. 'nid' => '22',
  1975. 'uid' => '1',
  1976. 'subject' => 'Comment to John Smith - FR',
  1977. 'comment' => 'This is a French comment.',
  1978. 'hostname' => '2001:14ba:13f8:300:d9d0:363c:9fe4:66e1',
  1979. 'timestamp' => '1534014763',
  1980. 'status' => '0',
  1981. 'format' => '1',
  1982. 'thread' => '01/',
  1983. 'name' => 'root',
  1984. 'mail' => '',
  1985. 'homepage' => '',
  1986. ))
  1987. ->execute();
  1988. $connection->schema()->createTable('config', array(
  1989. 'fields' => array(
  1990. 'collection' => array(
  1991. 'type' => 'varchar',
  1992. 'not null' => TRUE,
  1993. 'length' => '255',
  1994. 'default' => '',
  1995. ),
  1996. 'name' => array(
  1997. 'type' => 'varchar',
  1998. 'not null' => TRUE,
  1999. 'length' => '255',
  2000. 'default' => '',
  2001. ),
  2002. 'data' => array(
  2003. 'type' => 'blob',
  2004. 'not null' => FALSE,
  2005. 'size' => 'normal',
  2006. ),
  2007. ),
  2008. 'primary key' => array(
  2009. 'collection',
  2010. 'name',
  2011. ),
  2012. 'mysql_character_set' => 'utf8',
  2013. ));
  2014. $connection->insert('config')
  2015. ->fields(array(
  2016. 'collection',
  2017. 'name',
  2018. 'data',
  2019. ))
  2020. ->values(array(
  2021. 'collection' => '',
  2022. 'name' => 'system.file',
  2023. 'data' => 'a:1:{s:4:"path";a:1:{s:9:"temporary";s:4:"/tmp";}}',
  2024. ))
  2025. ->execute();
  2026. $connection->schema()->createTable('contact', array(
  2027. 'fields' => array(
  2028. 'cid' => array(
  2029. 'type' => 'serial',
  2030. 'not null' => TRUE,
  2031. 'size' => 'normal',
  2032. 'unsigned' => TRUE,
  2033. ),
  2034. 'category' => array(
  2035. 'type' => 'varchar',
  2036. 'not null' => TRUE,
  2037. 'length' => '255',
  2038. 'default' => '',
  2039. ),
  2040. 'recipients' => array(
  2041. 'type' => 'text',
  2042. 'not null' => TRUE,
  2043. 'size' => 'normal',
  2044. ),
  2045. 'reply' => array(
  2046. 'type' => 'text',
  2047. 'not null' => TRUE,
  2048. 'size' => 'normal',
  2049. ),
  2050. 'weight' => array(
  2051. 'type' => 'int',
  2052. 'not null' => TRUE,
  2053. 'size' => 'normal',
  2054. 'default' => '0',
  2055. ),
  2056. 'selected' => array(
  2057. 'type' => 'int',
  2058. 'not null' => TRUE,
  2059. 'size' => 'normal',
  2060. 'default' => '0',
  2061. ),
  2062. ),
  2063. 'primary key' => array(
  2064. 'cid',
  2065. ),
  2066. 'mysql_character_set' => 'utf8',
  2067. ));
  2068. $connection->insert('contact')
  2069. ->fields(array(
  2070. 'cid',
  2071. 'category',
  2072. 'recipients',
  2073. 'reply',
  2074. 'weight',
  2075. 'selected',
  2076. ))
  2077. ->values(array(
  2078. 'cid' => '1',
  2079. 'category' => 'Website feedback',
  2080. 'recipients' => 'admin@example.com',
  2081. 'reply' => '',
  2082. 'weight' => '0',
  2083. 'selected' => '0',
  2084. ))
  2085. ->values(array(
  2086. 'cid' => '2',
  2087. 'category' => 'Some other category',
  2088. 'recipients' => 'test@example.com',
  2089. 'reply' => 'Thanks for contacting us, we will reply ASAP!',
  2090. 'weight' => '1',
  2091. 'selected' => '1',
  2092. ))
  2093. ->values(array(
  2094. 'cid' => '3',
  2095. 'category' => 'A category much longer than thirty two characters',
  2096. 'recipients' => 'fortyninechars@example.com',
  2097. 'reply' => '',
  2098. 'weight' => '2',
  2099. 'selected' => '0',
  2100. ))
  2101. ->execute();
  2102. $connection->schema()->createTable('content_field_company', array(
  2103. 'fields' => array(
  2104. 'vid' => array(
  2105. 'type' => 'int',
  2106. 'not null' => TRUE,
  2107. 'size' => 'normal',
  2108. 'default' => '0',
  2109. 'unsigned' => TRUE,
  2110. ),
  2111. 'nid' => array(
  2112. 'type' => 'int',
  2113. 'not null' => TRUE,
  2114. 'size' => 'normal',
  2115. 'default' => '0',
  2116. 'unsigned' => TRUE,
  2117. ),
  2118. 'delta' => array(
  2119. 'type' => 'int',
  2120. 'not null' => TRUE,
  2121. 'size' => 'normal',
  2122. 'default' => '0',
  2123. 'unsigned' => TRUE,
  2124. ),
  2125. 'field_company_nid' => array(
  2126. 'type' => 'int',
  2127. 'not null' => FALSE,
  2128. 'size' => 'normal',
  2129. 'unsigned' => TRUE,
  2130. ),
  2131. ),
  2132. 'primary key' => array(
  2133. 'vid',
  2134. 'delta',
  2135. ),
  2136. 'indexes' => array(
  2137. 'nid' => array(
  2138. 'nid',
  2139. ),
  2140. 'field_company_nid' => array(
  2141. 'field_company_nid',
  2142. ),
  2143. ),
  2144. 'mysql_character_set' => 'utf8',
  2145. ));
  2146. $connection->insert('content_field_company')
  2147. ->fields(array(
  2148. 'vid',
  2149. 'nid',
  2150. 'delta',
  2151. 'field_company_nid',
  2152. ))
  2153. ->values(array(
  2154. 'vid' => '21',
  2155. 'nid' => '18',
  2156. 'delta' => '0',
  2157. 'field_company_nid' => '15',
  2158. ))
  2159. ->values(array(
  2160. 'vid' => '2002',
  2161. 'nid' => '21',
  2162. 'delta' => '0',
  2163. 'field_company_nid' => NULL,
  2164. ))
  2165. ->values(array(
  2166. 'vid' => '2003',
  2167. 'nid' => '22',
  2168. 'delta' => '0',
  2169. 'field_company_nid' => NULL,
  2170. ))
  2171. ->values(array(
  2172. 'vid' => '21',
  2173. 'nid' => '18',
  2174. 'delta' => '1',
  2175. 'field_company_nid' => '16',
  2176. ))
  2177. ->execute();
  2178. $connection->schema()->createTable('content_field_image', array(
  2179. 'fields' => array(
  2180. 'vid' => array(
  2181. 'type' => 'int',
  2182. 'not null' => TRUE,
  2183. 'size' => 'normal',
  2184. 'default' => '0',
  2185. 'unsigned' => TRUE,
  2186. ),
  2187. 'nid' => array(
  2188. 'type' => 'int',
  2189. 'not null' => TRUE,
  2190. 'size' => 'normal',
  2191. 'default' => '0',
  2192. 'unsigned' => TRUE,
  2193. ),
  2194. 'field_image_fid' => array(
  2195. 'type' => 'int',
  2196. 'not null' => FALSE,
  2197. 'size' => 'normal',
  2198. ),
  2199. 'field_image_list' => array(
  2200. 'type' => 'int',
  2201. 'not null' => FALSE,
  2202. 'size' => 'normal',
  2203. ),
  2204. 'field_image_data' => array(
  2205. 'type' => 'text',
  2206. 'not null' => FALSE,
  2207. 'size' => 'normal',
  2208. ),
  2209. ),
  2210. 'primary key' => array(
  2211. 'vid',
  2212. ),
  2213. 'mysql_character_set' => 'utf8',
  2214. ));
  2215. $connection->insert('content_field_image')
  2216. ->fields(array(
  2217. 'vid',
  2218. 'nid',
  2219. 'field_image_fid',
  2220. 'field_image_list',
  2221. 'field_image_data',
  2222. ))
  2223. ->values(array(
  2224. 'vid' => '1',
  2225. 'nid' => '1',
  2226. 'field_image_fid' => '2',
  2227. 'field_image_list' => '1',
  2228. 'field_image_data' => 'a:2:{s:3:"alt";s:0:"";s:5:"title";s:0:"";}',
  2229. ))
  2230. ->values(array(
  2231. 'vid' => '2',
  2232. 'nid' => '2',
  2233. 'field_image_fid' => NULL,
  2234. 'field_image_list' => NULL,
  2235. 'field_image_data' => NULL,
  2236. ))
  2237. ->values(array(
  2238. 'vid' => '3',
  2239. 'nid' => '1',
  2240. 'field_image_fid' => '2',
  2241. 'field_image_list' => '1',
  2242. 'field_image_data' => 'a:2:{s:3:"alt";s:0:"";s:5:"title";s:0:"";}',
  2243. ))
  2244. ->execute();
  2245. $connection->schema()->createTable('content_field_multivalue', array(
  2246. 'fields' => array(
  2247. 'vid' => array(
  2248. 'type' => 'int',
  2249. 'not null' => TRUE,
  2250. 'size' => 'normal',
  2251. 'default' => '0',
  2252. 'unsigned' => TRUE,
  2253. ),
  2254. 'nid' => array(
  2255. 'type' => 'int',
  2256. 'not null' => TRUE,
  2257. 'size' => 'normal',
  2258. 'default' => '0',
  2259. 'unsigned' => TRUE,
  2260. ),
  2261. 'field_multivalue_value' => array(
  2262. 'type' => 'numeric',
  2263. 'not null' => FALSE,
  2264. 'precision' => '10',
  2265. 'scale' => '2',
  2266. ),
  2267. 'delta' => array(
  2268. 'type' => 'int',
  2269. 'not null' => TRUE,
  2270. 'size' => 'normal',
  2271. 'default' => '0',
  2272. 'unsigned' => TRUE,
  2273. ),
  2274. ),
  2275. 'primary key' => array(
  2276. 'vid',
  2277. 'delta',
  2278. ),
  2279. 'indexes' => array(
  2280. 'nid' => array(
  2281. 'nid',
  2282. ),
  2283. ),
  2284. 'mysql_character_set' => 'utf8',
  2285. ));
  2286. $connection->insert('content_field_multivalue')
  2287. ->fields(array(
  2288. 'vid',
  2289. 'nid',
  2290. 'field_multivalue_value',
  2291. 'delta',
  2292. ))
  2293. ->values(array(
  2294. 'vid' => '4',
  2295. 'nid' => '3',
  2296. 'field_multivalue_value' => '33.00',
  2297. 'delta' => '0',
  2298. ))
  2299. ->values(array(
  2300. 'vid' => '4',
  2301. 'nid' => '3',
  2302. 'field_multivalue_value' => '44.00',
  2303. 'delta' => '1',
  2304. ))
  2305. ->execute();
  2306. $connection->schema()->createTable('content_field_test', array(
  2307. 'fields' => array(
  2308. 'vid' => array(
  2309. 'type' => 'int',
  2310. 'not null' => TRUE,
  2311. 'size' => 'normal',
  2312. 'default' => '0',
  2313. 'unsigned' => TRUE,
  2314. ),
  2315. 'nid' => array(
  2316. 'type' => 'int',
  2317. 'not null' => TRUE,
  2318. 'size' => 'normal',
  2319. 'default' => '0',
  2320. 'unsigned' => TRUE,
  2321. ),
  2322. 'field_test_value' => array(
  2323. 'type' => 'text',
  2324. 'not null' => FALSE,
  2325. 'size' => 'normal',
  2326. ),
  2327. 'field_test_format' => array(
  2328. 'type' => 'int',
  2329. 'not null' => FALSE,
  2330. 'size' => 'normal',
  2331. 'unsigned' => TRUE,
  2332. ),
  2333. ),
  2334. 'primary key' => array(
  2335. 'vid',
  2336. ),
  2337. 'indexes' => array(
  2338. 'nid' => array(
  2339. 'nid',
  2340. ),
  2341. ),
  2342. 'mysql_character_set' => 'utf8',
  2343. ));
  2344. $connection->insert('content_field_test')
  2345. ->fields(array(
  2346. 'vid',
  2347. 'nid',
  2348. 'field_test_value',
  2349. 'field_test_format',
  2350. ))
  2351. ->values(array(
  2352. 'vid' => '1',
  2353. 'nid' => '1',
  2354. 'field_test_value' => 'This is a shared text field',
  2355. 'field_test_format' => '1',
  2356. ))
  2357. ->values(array(
  2358. 'vid' => '2',
  2359. 'nid' => '1',
  2360. 'field_test_value' => 'This is a shared text field',
  2361. 'field_test_format' => '1',
  2362. ))
  2363. ->values(array(
  2364. 'vid' => '3',
  2365. 'nid' => '2',
  2366. 'field_test_value' => NULL,
  2367. 'field_test_format' => NULL,
  2368. ))
  2369. ->values(array(
  2370. 'vid' => '5',
  2371. 'nid' => '2',
  2372. 'field_test_value' => NULL,
  2373. 'field_test_format' => NULL,
  2374. ))
  2375. ->values(array(
  2376. 'vid' => '12',
  2377. 'nid' => '9',
  2378. 'field_test_value' => 'text for default value',
  2379. 'field_test_format' => '1',
  2380. ))
  2381. ->execute();
  2382. $connection->schema()->createTable('content_field_test_text_single_checkbox', array(
  2383. 'fields' => array(
  2384. 'vid' => array(
  2385. 'type' => 'int',
  2386. 'not null' => TRUE,
  2387. 'size' => 'normal',
  2388. 'default' => '0',
  2389. 'unsigned' => TRUE,
  2390. ),
  2391. 'nid' => array(
  2392. 'type' => 'int',
  2393. 'not null' => TRUE,
  2394. 'size' => 'normal',
  2395. 'default' => '0',
  2396. 'unsigned' => TRUE,
  2397. ),
  2398. 'field_test_text_single_checkbox_value' => array(
  2399. 'type' => 'text',
  2400. 'not null' => FALSE,
  2401. 'size' => 'normal',
  2402. ),
  2403. ),
  2404. 'primary key' => array(
  2405. 'vid',
  2406. ),
  2407. 'indexes' => array(
  2408. 'nid' => array(
  2409. 'nid',
  2410. ),
  2411. ),
  2412. 'mysql_character_set' => 'utf8',
  2413. ));
  2414. $connection->insert('content_field_test_text_single_checkbox')
  2415. ->fields(array(
  2416. 'vid',
  2417. 'nid',
  2418. 'field_test_text_single_checkbox_value',
  2419. ))
  2420. ->values(array(
  2421. 'vid' => '1',
  2422. 'nid' => '1',
  2423. 'field_test_text_single_checkbox_value' => '0',
  2424. ))
  2425. ->values(array(
  2426. 'vid' => '2',
  2427. 'nid' => '1',
  2428. 'field_test_text_single_checkbox_value' => NULL,
  2429. ))
  2430. ->values(array(
  2431. 'vid' => '3',
  2432. 'nid' => '2',
  2433. 'field_test_text_single_checkbox_value' => NULL,
  2434. ))
  2435. ->values(array(
  2436. 'vid' => '5',
  2437. 'nid' => '2',
  2438. 'field_test_text_single_checkbox_value' => NULL,
  2439. ))
  2440. ->values(array(
  2441. 'vid' => '12',
  2442. 'nid' => '9',
  2443. 'field_test_text_single_checkbox_value' => '0',
  2444. ))
  2445. ->execute();
  2446. $connection->schema()->createTable('content_field_test_two', array(
  2447. 'fields' => array(
  2448. 'vid' => array(
  2449. 'type' => 'int',
  2450. 'not null' => TRUE,
  2451. 'size' => 'normal',
  2452. 'default' => '0',
  2453. 'unsigned' => TRUE,
  2454. ),
  2455. 'nid' => array(
  2456. 'type' => 'int',
  2457. 'not null' => TRUE,
  2458. 'size' => 'normal',
  2459. 'default' => '0',
  2460. 'unsigned' => TRUE,
  2461. ),
  2462. 'delta' => array(
  2463. 'type' => 'int',
  2464. 'not null' => TRUE,
  2465. 'size' => 'normal',
  2466. 'default' => '0',
  2467. 'unsigned' => TRUE,
  2468. ),
  2469. 'field_test_two_value' => array(
  2470. 'type' => 'int',
  2471. 'not null' => FALSE,
  2472. 'size' => 'normal',
  2473. ),
  2474. ),
  2475. 'primary key' => array(
  2476. 'vid',
  2477. 'delta',
  2478. ),
  2479. 'indexes' => array(
  2480. 'nid' => array(
  2481. 'nid',
  2482. ),
  2483. ),
  2484. 'mysql_character_set' => 'utf8',
  2485. ));
  2486. $connection->insert('content_field_test_two')
  2487. ->fields(array(
  2488. 'vid',
  2489. 'nid',
  2490. 'delta',
  2491. 'field_test_two_value',
  2492. ))
  2493. ->values(array(
  2494. 'vid' => '1',
  2495. 'nid' => '1',
  2496. 'delta' => '0',
  2497. 'field_test_two_value' => '10',
  2498. ))
  2499. ->values(array(
  2500. 'vid' => '2',
  2501. 'nid' => '1',
  2502. 'delta' => '0',
  2503. 'field_test_two_value' => NULL,
  2504. ))
  2505. ->values(array(
  2506. 'vid' => '3',
  2507. 'nid' => '2',
  2508. 'delta' => '0',
  2509. 'field_test_two_value' => NULL,
  2510. ))
  2511. ->values(array(
  2512. 'vid' => '5',
  2513. 'nid' => '2',
  2514. 'delta' => '0',
  2515. 'field_test_two_value' => NULL,
  2516. ))
  2517. ->values(array(
  2518. 'vid' => '12',
  2519. 'nid' => '9',
  2520. 'delta' => '0',
  2521. 'field_test_two_value' => NULL,
  2522. ))
  2523. ->values(array(
  2524. 'vid' => '1',
  2525. 'nid' => '1',
  2526. 'delta' => '1',
  2527. 'field_test_two_value' => '20',
  2528. ))
  2529. ->execute();
  2530. $connection->schema()->createTable('content_group', array(
  2531. 'fields' => array(
  2532. 'group_type' => array(
  2533. 'type' => 'varchar',
  2534. 'not null' => TRUE,
  2535. 'length' => '32',
  2536. 'default' => 'standard',
  2537. ),
  2538. 'type_name' => array(
  2539. 'type' => 'varchar',
  2540. 'not null' => TRUE,
  2541. 'length' => '32',
  2542. 'default' => '',
  2543. ),
  2544. 'group_name' => array(
  2545. 'type' => 'varchar',
  2546. 'not null' => TRUE,
  2547. 'length' => '32',
  2548. 'default' => '',
  2549. ),
  2550. 'label' => array(
  2551. 'type' => 'varchar',
  2552. 'not null' => TRUE,
  2553. 'length' => '255',
  2554. 'default' => '',
  2555. ),
  2556. 'settings' => array(
  2557. 'type' => 'text',
  2558. 'not null' => TRUE,
  2559. 'size' => 'normal',
  2560. ),
  2561. 'weight' => array(
  2562. 'type' => 'int',
  2563. 'not null' => TRUE,
  2564. 'size' => 'normal',
  2565. 'default' => '0',
  2566. ),
  2567. ),
  2568. 'primary key' => array(
  2569. 'type_name',
  2570. 'group_name',
  2571. ),
  2572. 'mysql_character_set' => 'utf8',
  2573. ));
  2574. $connection->schema()->createTable('content_group_fields', array(
  2575. 'fields' => array(
  2576. 'type_name' => array(
  2577. 'type' => 'varchar',
  2578. 'not null' => TRUE,
  2579. 'length' => '32',
  2580. 'default' => '',
  2581. ),
  2582. 'group_name' => array(
  2583. 'type' => 'varchar',
  2584. 'not null' => TRUE,
  2585. 'length' => '32',
  2586. 'default' => '',
  2587. ),
  2588. 'field_name' => array(
  2589. 'type' => 'varchar',
  2590. 'not null' => TRUE,
  2591. 'length' => '32',
  2592. 'default' => '',
  2593. ),
  2594. ),
  2595. 'primary key' => array(
  2596. 'type_name',
  2597. 'group_name',
  2598. 'field_name',
  2599. ),
  2600. 'mysql_character_set' => 'utf8',
  2601. ));
  2602. $connection->schema()->createTable('content_node_field', array(
  2603. 'fields' => array(
  2604. 'field_name' => array(
  2605. 'type' => 'varchar',
  2606. 'not null' => TRUE,
  2607. 'length' => '32',
  2608. 'default' => '',
  2609. ),
  2610. 'type' => array(
  2611. 'type' => 'varchar',
  2612. 'not null' => TRUE,
  2613. 'length' => '127',
  2614. 'default' => '',
  2615. ),
  2616. 'global_settings' => array(
  2617. 'type' => 'text',
  2618. 'not null' => TRUE,
  2619. 'size' => 'normal',
  2620. ),
  2621. 'required' => array(
  2622. 'type' => 'int',
  2623. 'not null' => TRUE,
  2624. 'size' => 'normal',
  2625. 'default' => '0',
  2626. ),
  2627. 'multiple' => array(
  2628. 'type' => 'int',
  2629. 'not null' => TRUE,
  2630. 'size' => 'normal',
  2631. 'default' => '0',
  2632. ),
  2633. 'db_storage' => array(
  2634. 'type' => 'int',
  2635. 'not null' => TRUE,
  2636. 'size' => 'normal',
  2637. 'default' => '1',
  2638. ),
  2639. 'module' => array(
  2640. 'type' => 'varchar',
  2641. 'not null' => TRUE,
  2642. 'length' => '127',
  2643. 'default' => '',
  2644. ),
  2645. 'db_columns' => array(
  2646. 'type' => 'text',
  2647. 'not null' => TRUE,
  2648. 'size' => 'normal',
  2649. ),
  2650. 'active' => array(
  2651. 'type' => 'int',
  2652. 'not null' => TRUE,
  2653. 'size' => 'normal',
  2654. 'default' => '0',
  2655. ),
  2656. 'locked' => array(
  2657. 'type' => 'int',
  2658. 'not null' => TRUE,
  2659. 'size' => 'tiny',
  2660. 'default' => '0',
  2661. ),
  2662. ),
  2663. 'primary key' => array(
  2664. 'field_name',
  2665. ),
  2666. 'mysql_character_set' => 'utf8',
  2667. ));
  2668. $connection->insert('content_node_field')
  2669. ->fields(array(
  2670. 'field_name',
  2671. 'type',
  2672. 'global_settings',
  2673. 'required',
  2674. 'multiple',
  2675. 'db_storage',
  2676. 'module',
  2677. 'db_columns',
  2678. 'active',
  2679. 'locked',
  2680. ))
  2681. ->values(array(
  2682. 'field_name' => 'field_commander',
  2683. 'type' => 'userreference',
  2684. 'global_settings' => 'a:2:{s:19:"referenceable_roles";a:4:{i:2;i:2;i:3;i:0;i:4;i:0;i:5;i:0;}s:20:"referenceable_status";s:0:"";}',
  2685. 'required' => '0',
  2686. 'multiple' => '0',
  2687. 'db_storage' => '1',
  2688. 'module' => 'userreference',
  2689. 'db_columns' => 'a:1:{s:3:"uid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
  2690. 'active' => '1',
  2691. 'locked' => '0',
  2692. ))
  2693. ->values(array(
  2694. 'field_name' => 'field_company',
  2695. 'type' => 'nodereference',
  2696. 'global_settings' => 'a:1:{s:19:"referenceable_types";a:10:{s:7:"company";s:7:"company";s:7:"article";i:0;s:8:"employee";i:0;s:5:"forum";i:0;s:10:"test_event";i:0;s:9:"test_page";i:0;s:11:"test_planet";i:0;s:10:"test_story";i:0;s:7:"sponsor";i:0;s:5:"story";i:0;}}',
  2697. 'required' => '0',
  2698. 'multiple' => '1',
  2699. 'db_storage' => '0',
  2700. 'module' => 'nodereference',
  2701. 'db_columns' => 'a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
  2702. 'active' => '1',
  2703. 'locked' => '0',
  2704. ))
  2705. ->values(array(
  2706. 'field_name' => 'field_company_2',
  2707. 'type' => 'nodereference',
  2708. 'global_settings' => 'a:1:{s:19:"referenceable_types";a:10:{s:7:"company";s:7:"company";s:7:"article";i:0;s:8:"employee";i:0;s:5:"forum";i:0;s:10:"test_event";i:0;s:9:"test_page";i:0;s:11:"test_planet";i:0;s:10:"test_story";i:0;s:7:"sponsor";i:0;s:5:"story";i:0;}}',
  2709. 'required' => '0',
  2710. 'multiple' => '0',
  2711. 'db_storage' => '1',
  2712. 'module' => 'nodereference',
  2713. 'db_columns' => 'a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
  2714. 'active' => '1',
  2715. 'locked' => '0',
  2716. ))
  2717. ->values(array(
  2718. 'field_name' => 'field_company_3',
  2719. 'type' => 'nodereference',
  2720. 'global_settings' => 'a:1:{s:19:"referenceable_types";a:10:{s:7:"company";s:7:"company";s:7:"article";i:0;s:8:"employee";i:0;s:5:"forum";i:0;s:10:"test_event";i:0;s:9:"test_page";i:0;s:11:"test_planet";i:0;s:10:"test_story";i:0;s:7:"sponsor";i:0;s:5:"story";i:0;}}',
  2721. 'required' => '0',
  2722. 'multiple' => '0',
  2723. 'db_storage' => '1',
  2724. 'module' => 'nodereference',
  2725. 'db_columns' => 'a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
  2726. 'active' => '1',
  2727. 'locked' => '0',
  2728. ))
  2729. ->values(array(
  2730. 'field_name' => 'field_multivalue',
  2731. 'type' => 'number_decimal',
  2732. 'global_settings' => 'a:9:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:7:"decimal";s:1:".";}',
  2733. 'required' => '0',
  2734. 'multiple' => '1',
  2735. 'db_storage' => '0',
  2736. 'module' => 'number',
  2737. 'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"numeric";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
  2738. 'active' => '1',
  2739. 'locked' => '0',
  2740. ))
  2741. ->values(array(
  2742. 'field_name' => 'field_reference',
  2743. 'type' => 'nodereference',
  2744. 'global_settings' => 'a:1:{s:19:"referenceable_types";a:11:{s:4:"page";s:4:"page";s:7:"article";i:0;s:7:"company";i:0;s:8:"employee";i:0;s:5:"forum";i:0;s:10:"test_event";i:0;s:9:"test_page";i:0;s:11:"test_planet";i:0;s:10:"test_story";i:0;s:7:"sponsor";i:0;s:5:"story";i:0;}}',
  2745. 'required' => '0',
  2746. 'multiple' => '0',
  2747. 'db_storage' => '1',
  2748. 'module' => 'nodereference',
  2749. 'db_columns' => 'a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
  2750. 'active' => '1',
  2751. 'locked' => '0',
  2752. ))
  2753. ->values(array(
  2754. 'field_name' => 'field_reference_2',
  2755. 'type' => 'nodereference',
  2756. 'global_settings' => 'a:1:{s:19:"referenceable_types";a:11:{s:4:"page";s:4:"page";s:7:"article";i:0;s:7:"company";i:0;s:8:"employee";i:0;s:5:"forum";i:0;s:10:"test_event";i:0;s:9:"test_page";i:0;s:11:"test_planet";i:0;s:10:"test_story";i:0;s:7:"sponsor";i:0;s:5:"story";i:0;}}',
  2757. 'required' => '0',
  2758. 'multiple' => '0',
  2759. 'db_storage' => '1',
  2760. 'module' => 'nodereference',
  2761. 'db_columns' => 'a:1:{s:3:"nid";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"index";b:1;}}',
  2762. 'active' => '1',
  2763. 'locked' => '0',
  2764. ))
  2765. ->values(array(
  2766. 'field_name' => 'field_sync',
  2767. 'type' => 'email',
  2768. 'global_settings' => 'a:0:{}',
  2769. 'required' => '0',
  2770. 'multiple' => '0',
  2771. 'db_storage' => '1',
  2772. 'module' => 'email',
  2773. 'db_columns' => 'a:1:{s:5:"email";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:8:"not null";b:0;s:8:"sortable";b:1;}}',
  2774. 'active' => '1',
  2775. 'locked' => '0',
  2776. ))
  2777. ->values(array(
  2778. 'field_name' => 'field_test',
  2779. 'type' => 'text',
  2780. 'global_settings' => 'a:4:{s:15:"text_processing";s:1:"1";s:10:"max_length";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
  2781. 'required' => '0',
  2782. 'multiple' => '0',
  2783. 'db_storage' => '0',
  2784. 'module' => 'text',
  2785. 'db_columns' => 'a:2:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}s:6:"format";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"views";b:0;}}',
  2786. 'active' => '1',
  2787. 'locked' => '0',
  2788. ))
  2789. ->values(array(
  2790. 'field_name' => 'field_test_date',
  2791. 'type' => 'date',
  2792. 'global_settings' => 'a:7:{s:11:"granularity";a:5:{s:4:"year";s:4:"year";s:5:"month";s:5:"month";s:3:"day";s:3:"day";s:4:"hour";s:4:"hour";s:6:"minute";s:6:"minute";}s:11:"timezone_db";s:3:"UTC";s:11:"tz_handling";s:4:"site";s:6:"todate";s:0:"";s:6:"repeat";i:0;s:16:"repeat_collapsed";s:0:"";s:14:"default_format";s:6:"medium";}',
  2793. 'required' => '0',
  2794. 'multiple' => '0',
  2795. 'db_storage' => '1',
  2796. 'module' => 'date',
  2797. 'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"varchar";s:6:"length";i:20;s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}}',
  2798. 'active' => '1',
  2799. 'locked' => '0',
  2800. ))
  2801. ->values(array(
  2802. 'field_name' => 'field_test_datestamp',
  2803. 'type' => 'datestamp',
  2804. 'global_settings' => 'a:13:{s:11:"granularity";a:6:{s:4:"year";s:4:"year";s:5:"month";s:5:"month";s:3:"day";s:3:"day";s:4:"hour";s:4:"hour";s:6:"minute";s:6:"minute";s:6:"second";i:0;}s:11:"timezone_db";s:3:"UTC";s:11:"tz_handling";s:4:"site";s:6:"todate";s:0:"";s:6:"repeat";i:0;s:18:"output_format_date";s:5:"m/d/Y";s:20:"output_format_custom";s:0:"";s:23:"output_format_date_long";s:5:"m/d/Y";s:25:"output_format_custom_long";s:0:"";s:25:"output_format_date_medium";s:5:"m/d/Y";s:27:"output_format_custom_medium";s:0:"";s:24:"output_format_date_short";s:5:"m/d/Y";s:26:"output_format_custom_short";s:0:"";}',
  2805. 'required' => '0',
  2806. 'multiple' => '0',
  2807. 'db_storage' => '1',
  2808. 'module' => 'date',
  2809. 'db_columns' => 'a:2:{s:5:"value";a:4:{s:4:"type";s:3:"int";s:6:"length";i:11;s:8:"not null";b:0;s:8:"sortable";b:1;}s:6:"value2";a:4:{s:4:"type";s:3:"int";s:6:"length";i:11;s:8:"not null";b:0;s:8:"sortable";b:1;}}',
  2810. 'active' => '1',
  2811. 'locked' => '0',
  2812. ))
  2813. ->values(array(
  2814. 'field_name' => 'field_test_datetime',
  2815. 'type' => 'datetime',
  2816. 'global_settings' => 'a:13:{s:11:"granularity";a:6:{s:4:"year";s:4:"year";s:5:"month";s:5:"month";s:3:"day";s:3:"day";s:4:"hour";s:4:"hour";s:6:"minute";s:6:"minute";s:6:"second";i:0;}s:11:"timezone_db";s:3:"UTC";s:11:"tz_handling";s:4:"site";s:6:"todate";s:0:"";s:6:"repeat";i:0;s:18:"output_format_date";s:5:"m/d/Y";s:20:"output_format_custom";s:0:"";s:23:"output_format_date_long";s:5:"m/d/Y";s:25:"output_format_custom_long";s:0:"";s:25:"output_format_date_medium";s:5:"m/d/Y";s:27:"output_format_custom_medium";s:0:"";s:24:"output_format_date_short";s:5:"m/d/Y";s:26:"output_format_custom_short";s:0:"";}',
  2817. 'required' => '0',
  2818. 'multiple' => '0',
  2819. 'db_storage' => '1',
  2820. 'module' => 'date',
  2821. 'db_columns' => 'a:2:{s:5:"value";a:3:{s:4:"type";s:8:"datetime";s:8:"not null";b:0;s:8:"sortable";b:1;}s:6:"value2";a:3:{s:4:"type";s:8:"datetime";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
  2822. 'active' => '1',
  2823. 'locked' => '0',
  2824. ))
  2825. ->values(array(
  2826. 'field_name' => 'field_test_decimal_radio_buttons',
  2827. 'type' => 'number_decimal',
  2828. 'global_settings' => "a:9:{s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:14:\"allowed_values\";s:8:\"1.2\r\n2.1\";s:18:\"allowed_values_php\";s:0:\"\";s:9:\"precision\";s:2:\"10\";s:5:\"scale\";s:1:\"2\";s:7:\"decimal\";s:1:\".\";}",
  2829. 'required' => '0',
  2830. 'multiple' => '0',
  2831. 'db_storage' => '1',
  2832. 'module' => 'number',
  2833. 'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"numeric";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
  2834. 'active' => '1',
  2835. 'locked' => '0',
  2836. ))
  2837. ->values(array(
  2838. 'field_name' => 'field_test_email',
  2839. 'type' => 'email',
  2840. 'global_settings' => 'a:0:{}',
  2841. 'required' => '0',
  2842. 'multiple' => '0',
  2843. 'db_storage' => '1',
  2844. 'module' => 'email',
  2845. 'db_columns' => 'a:1:{s:5:"email";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:8:"not null";b:0;s:8:"sortable";b:1;}}',
  2846. 'active' => '1',
  2847. 'locked' => '0',
  2848. ))
  2849. ->values(array(
  2850. 'field_name' => 'field_test_exclude_unset',
  2851. 'type' => 'text',
  2852. 'global_settings' => 'a:4:{s:15:"text_processing";s:1:"1";s:10:"max_length";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
  2853. 'required' => '0',
  2854. 'multiple' => '0',
  2855. 'db_storage' => '1',
  2856. 'module' => 'text',
  2857. 'db_columns' => 'a:2:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}s:6:"format";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"views";b:0;}}',
  2858. 'active' => '1',
  2859. 'locked' => '0',
  2860. ))
  2861. ->values(array(
  2862. 'field_name' => 'field_test_filefield',
  2863. 'type' => 'filefield',
  2864. 'global_settings' => 'a:3:{s:10:"list_field";s:1:"0";s:12:"list_default";i:1;s:17:"description_field";s:1:"1";}',
  2865. 'required' => '0',
  2866. 'multiple' => '0',
  2867. 'db_storage' => '1',
  2868. 'module' => 'filefield',
  2869. 'db_columns' => 'a:3:{s:3:"fid";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"list";a:4:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"data";a:3:{s:4:"type";s:4:"text";s:9:"serialize";b:1;s:5:"views";b:1;}}',
  2870. 'active' => '1',
  2871. 'locked' => '0',
  2872. ))
  2873. ->values(array(
  2874. 'field_name' => 'field_test_float_single_checkbox',
  2875. 'type' => 'number_float',
  2876. 'global_settings' => "a:6:{s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:14:\"allowed_values\";s:12:\"3.142\r\n1.234\";s:18:\"allowed_values_php\";s:0:\"\";}",
  2877. 'required' => '0',
  2878. 'multiple' => '0',
  2879. 'db_storage' => '1',
  2880. 'module' => 'number',
  2881. 'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:5:"float";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
  2882. 'active' => '1',
  2883. 'locked' => '0',
  2884. ))
  2885. ->values(array(
  2886. 'field_name' => 'field_test_four',
  2887. 'type' => 'number_float',
  2888. 'global_settings' => 'a:6:{s:6:"prefix";s:3:"id-";s:6:"suffix";s:0:"";s:3:"min";s:3:"100";s:3:"max";s:3:"200";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
  2889. 'required' => '0',
  2890. 'multiple' => '0',
  2891. 'db_storage' => '1',
  2892. 'module' => 'number',
  2893. 'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:5:"float";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
  2894. 'active' => '1',
  2895. 'locked' => '0',
  2896. ))
  2897. ->values(array(
  2898. 'field_name' => 'field_test_identical1',
  2899. 'type' => 'number_integer',
  2900. 'global_settings' => 'a:6:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
  2901. 'required' => '0',
  2902. 'multiple' => '0',
  2903. 'db_storage' => '1',
  2904. 'module' => 'number',
  2905. 'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
  2906. 'active' => '1',
  2907. 'locked' => '0',
  2908. ))
  2909. ->values(array(
  2910. 'field_name' => 'field_test_identical2',
  2911. 'type' => 'number_integer',
  2912. 'global_settings' => 'a:6:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
  2913. 'required' => '0',
  2914. 'multiple' => '0',
  2915. 'db_storage' => '1',
  2916. 'module' => 'number',
  2917. 'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
  2918. 'active' => '1',
  2919. 'locked' => '0',
  2920. ))
  2921. ->values(array(
  2922. 'field_name' => 'field_test_imagefield',
  2923. 'type' => 'filefield',
  2924. 'global_settings' => 'a:3:{s:10:"list_field";s:1:"0";s:12:"list_default";i:1;s:17:"description_field";s:1:"0";}',
  2925. 'required' => '0',
  2926. 'multiple' => '0',
  2927. 'db_storage' => '1',
  2928. 'module' => 'filefield',
  2929. 'db_columns' => 'a:3:{s:3:"fid";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"list";a:4:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"data";a:3:{s:4:"type";s:4:"text";s:9:"serialize";b:1;s:5:"views";b:1;}}',
  2930. 'active' => '1',
  2931. 'locked' => '0',
  2932. ))
  2933. ->values(array(
  2934. 'field_name' => 'field_test_integer_selectlist',
  2935. 'type' => 'number_integer',
  2936. 'global_settings' => "a:6:{s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:14:\"allowed_values\";s:22:\"1234\r\n2341\r\n3412\r\n4123\";s:18:\"allowed_values_php\";s:0:\"\";}",
  2937. 'required' => '0',
  2938. 'multiple' => '0',
  2939. 'db_storage' => '1',
  2940. 'module' => 'number',
  2941. 'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
  2942. 'active' => '1',
  2943. 'locked' => '0',
  2944. ))
  2945. ->values(array(
  2946. 'field_name' => 'field_test_link',
  2947. 'type' => 'link',
  2948. 'global_settings' => 'a:7:{s:10:"attributes";a:4:{s:6:"target";s:4:"user";s:3:"rel";s:8:"nofollow";s:5:"class";s:0:"";s:5:"title";s:10:"Link Title";}s:7:"display";a:1:{s:10:"url_cutoff";s:2:"80";}s:3:"url";i:0;s:5:"title";s:8:"required";s:11:"title_value";s:0:"";s:13:"enable_tokens";s:0:"";s:12:"validate_url";i:1;}',
  2949. 'required' => '0',
  2950. 'multiple' => '0',
  2951. 'db_storage' => '1',
  2952. 'module' => 'link',
  2953. 'db_columns' => 'a:3:{s:3:"url";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:2048;s:8:"not null";b:0;s:8:"sortable";b:1;}s:5:"title";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:8:"not null";b:0;s:8:"sortable";b:1;}s:10:"attributes";a:3:{s:4:"type";s:4:"text";s:4:"size";s:6:"medium";s:8:"not null";b:0;}}',
  2954. 'active' => '1',
  2955. 'locked' => '0',
  2956. ))
  2957. ->values(array(
  2958. 'field_name' => 'field_test_phone',
  2959. 'type' => 'au_phone',
  2960. 'global_settings' => 'a:1:{s:18:"phone_country_code";i:0;}',
  2961. 'required' => '0',
  2962. 'multiple' => '0',
  2963. 'db_storage' => '1',
  2964. 'module' => 'phone',
  2965. 'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:8:"not null";b:0;}}',
  2966. 'active' => '1',
  2967. 'locked' => '0',
  2968. ))
  2969. ->values(array(
  2970. 'field_name' => 'field_test_string_selectlist',
  2971. 'type' => 'text',
  2972. 'global_settings' => "a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"max_length\";s:0:\"\";s:14:\"allowed_values\";s:18:\"A|Black\r\nB|White\r\n\";s:18:\"allowed_values_php\";s:0:\"\";}",
  2973. 'required' => '0',
  2974. 'multiple' => '0',
  2975. 'db_storage' => '1',
  2976. 'module' => 'text',
  2977. 'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}}',
  2978. 'active' => '1',
  2979. 'locked' => '0',
  2980. ))
  2981. ->values(array(
  2982. 'field_name' => 'field_test_text_single_checkbox',
  2983. 'type' => 'text',
  2984. 'global_settings' => "a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"max_length\";s:0:\"\";s:14:\"allowed_values\";s:18:\"0|Hello\r\n1|Goodbye\";s:18:\"allowed_values_php\";s:0:\"\";}",
  2985. 'required' => '0',
  2986. 'multiple' => '0',
  2987. 'db_storage' => '0',
  2988. 'module' => 'text',
  2989. 'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}}',
  2990. 'active' => '1',
  2991. 'locked' => '0',
  2992. ))
  2993. ->values(array(
  2994. 'field_name' => 'field_test_text_single_checkbox2',
  2995. 'type' => 'text',
  2996. 'global_settings' => "a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"max_length\";s:0:\"\";s:14:\"allowed_values\";s:10:\"Off\r\nHello\";s:18:\"allowed_values_php\";s:0:\"\";}",
  2997. 'required' => '0',
  2998. 'multiple' => '0',
  2999. 'db_storage' => '1',
  3000. 'module' => 'text',
  3001. 'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}}',
  3002. 'active' => '1',
  3003. 'locked' => '0',
  3004. ))
  3005. ->values(array(
  3006. 'field_name' => 'field_test_three',
  3007. 'type' => 'number_decimal',
  3008. 'global_settings' => 'a:9:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:3:"600";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:7:"decimal";s:1:".";}',
  3009. 'required' => '0',
  3010. 'multiple' => '0',
  3011. 'db_storage' => '1',
  3012. 'module' => 'number',
  3013. 'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"numeric";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
  3014. 'active' => '1',
  3015. 'locked' => '0',
  3016. ))
  3017. ->values(array(
  3018. 'field_name' => 'field_test_two',
  3019. 'type' => 'number_integer',
  3020. 'global_settings' => 'a:6:{s:6:"prefix";s:4:"pref";s:6:"suffix";s:3:"suf";s:3:"min";s:2:"10";s:3:"max";s:3:"100";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
  3021. 'required' => '0',
  3022. 'multiple' => '1',
  3023. 'db_storage' => '0',
  3024. 'module' => 'number',
  3025. 'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
  3026. 'active' => '1',
  3027. 'locked' => '0',
  3028. ))
  3029. ->execute();
  3030. $connection->schema()->createTable('content_node_field_instance', array(
  3031. 'fields' => array(
  3032. 'field_name' => array(
  3033. 'type' => 'varchar',
  3034. 'not null' => TRUE,
  3035. 'length' => '32',
  3036. 'default' => '',
  3037. ),
  3038. 'type_name' => array(
  3039. 'type' => 'varchar',
  3040. 'not null' => TRUE,
  3041. 'length' => '32',
  3042. 'default' => '',
  3043. ),
  3044. 'weight' => array(
  3045. 'type' => 'int',
  3046. 'not null' => TRUE,
  3047. 'size' => 'normal',
  3048. 'default' => '0',
  3049. ),
  3050. 'label' => array(
  3051. 'type' => 'varchar',
  3052. 'not null' => TRUE,
  3053. 'length' => '255',
  3054. 'default' => '',
  3055. ),
  3056. 'widget_type' => array(
  3057. 'type' => 'varchar',
  3058. 'not null' => TRUE,
  3059. 'length' => '32',
  3060. 'default' => '',
  3061. ),
  3062. 'widget_settings' => array(
  3063. 'type' => 'text',
  3064. 'not null' => TRUE,
  3065. 'size' => 'normal',
  3066. ),
  3067. 'display_settings' => array(
  3068. 'type' => 'text',
  3069. 'not null' => TRUE,
  3070. 'size' => 'normal',
  3071. ),
  3072. 'description' => array(
  3073. 'type' => 'text',
  3074. 'not null' => TRUE,
  3075. 'size' => 'normal',
  3076. ),
  3077. 'widget_module' => array(
  3078. 'type' => 'varchar',
  3079. 'not null' => TRUE,
  3080. 'length' => '127',
  3081. 'default' => '',
  3082. ),
  3083. 'widget_active' => array(
  3084. 'type' => 'int',
  3085. 'not null' => TRUE,
  3086. 'size' => 'normal',
  3087. 'default' => '0',
  3088. ),
  3089. ),
  3090. 'primary key' => array(
  3091. 'field_name',
  3092. 'type_name',
  3093. ),
  3094. 'mysql_character_set' => 'utf8',
  3095. ));
  3096. $connection->insert('content_node_field_instance')
  3097. ->fields(array(
  3098. 'field_name',
  3099. 'type_name',
  3100. 'weight',
  3101. 'label',
  3102. 'widget_type',
  3103. 'widget_settings',
  3104. 'display_settings',
  3105. 'description',
  3106. 'widget_module',
  3107. 'widget_active',
  3108. ))
  3109. ->values(array(
  3110. 'field_name' => 'field_commander',
  3111. 'type_name' => 'employee',
  3112. 'weight' => '32',
  3113. 'label' => 'Commanding Officer',
  3114. 'widget_type' => 'userreference_select',
  3115. 'widget_settings' => 'a:5:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";i:60;s:12:"reverse_link";i:0;s:13:"default_value";a:1:{i:0;a:1:{s:3:"uid";s:0:"";}}s:17:"default_value_php";N;}',
  3116. 'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3117. 'description' => '',
  3118. 'widget_module' => 'userreference',
  3119. 'widget_active' => '1',
  3120. ))
  3121. ->values(array(
  3122. 'field_name' => 'field_company',
  3123. 'type_name' => 'employee',
  3124. 'weight' => '31',
  3125. 'label' => 'Company',
  3126. 'widget_type' => 'nodereference_select',
  3127. 'widget_settings' => 'a:4:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";i:60;s:13:"default_value";a:1:{i:0;a:1:{s:3:"nid";s:0:"";}}s:17:"default_value_php";N;}',
  3128. 'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:5:"plain";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3129. 'description' => '',
  3130. 'widget_module' => 'nodereference',
  3131. 'widget_active' => '1',
  3132. ))
  3133. ->values(array(
  3134. 'field_name' => 'field_company_2',
  3135. 'type_name' => 'employee',
  3136. 'weight' => '33',
  3137. 'label' => 'Company 2',
  3138. 'widget_type' => 'nodereference_buttons',
  3139. 'widget_settings' => 'a:4:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";i:60;s:13:"default_value";a:1:{i:0;a:1:{s:3:"nid";s:0:"";}}s:17:"default_value_php";N;}',
  3140. 'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3141. 'description' => '',
  3142. 'widget_module' => 'nodereference',
  3143. 'widget_active' => '1',
  3144. ))
  3145. ->values(array(
  3146. 'field_name' => 'field_company_3',
  3147. 'type_name' => 'employee',
  3148. 'weight' => '34',
  3149. 'label' => 'Company 3',
  3150. 'widget_type' => 'nodereference_autocomplete',
  3151. 'widget_settings' => 'a:4:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:2:{s:3:"nid";N;s:14:"_error_element";s:50:"default_value_widget][field_company_3][0][nid][nid";}}s:17:"default_value_php";N;}',
  3152. 'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3153. 'description' => '',
  3154. 'widget_module' => 'nodereference',
  3155. 'widget_active' => '1',
  3156. ))
  3157. ->values(array(
  3158. 'field_name' => 'field_multivalue',
  3159. 'type_name' => 'test_planet',
  3160. 'weight' => '2',
  3161. 'label' => 'Decimal Field',
  3162. 'widget_type' => 'number',
  3163. 'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:48:"default_value_widget][field_multivalue][0][value";}}s:17:"default_value_php";N;}',
  3164. 'display_settings' => 'a:6:{s:6:"weight";i:2;s:6:"parent";s:0:"";s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3165. 'description' => 'An example multi-valued decimal field.',
  3166. 'widget_module' => 'number',
  3167. 'widget_active' => '1',
  3168. ))
  3169. ->values(array(
  3170. 'field_name' => 'field_reference',
  3171. 'type_name' => 'page',
  3172. 'weight' => '31',
  3173. 'label' => 'Reference',
  3174. 'widget_type' => 'nodereference_select',
  3175. 'widget_settings' => 'a:4:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";i:60;s:13:"default_value";a:1:{i:0;a:1:{s:3:"nid";s:0:"";}}s:17:"default_value_php";N;}',
  3176. 'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3177. 'description' => '',
  3178. 'widget_module' => 'nodereference',
  3179. 'widget_active' => '1',
  3180. ))
  3181. ->values(array(
  3182. 'field_name' => 'field_reference_2',
  3183. 'type_name' => 'page',
  3184. 'weight' => '32',
  3185. 'label' => 'Reference',
  3186. 'widget_type' => 'nodereference_select',
  3187. 'widget_settings' => 'a:4:{s:18:"autocomplete_match";s:8:"contains";s:4:"size";i:60;s:13:"default_value";a:1:{i:0;a:1:{s:3:"nid";s:0:"";}}s:17:"default_value_php";N;}',
  3188. 'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3189. 'description' => '',
  3190. 'widget_module' => 'nodereference',
  3191. 'widget_active' => '1',
  3192. ))
  3193. ->values(array(
  3194. 'field_name' => 'field_sync',
  3195. 'type_name' => 'employee',
  3196. 'weight' => '35',
  3197. 'label' => 'email_sync',
  3198. 'widget_type' => 'email_textfield',
  3199. 'widget_settings' => 'a:3:{s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:1:{s:5:"email";s:0:"";}}s:17:"default_value_php";N;}',
  3200. 'display_settings' => 'a:7:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:2;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:3;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3201. 'description' => '',
  3202. 'widget_module' => 'email',
  3203. 'widget_active' => '1',
  3204. ))
  3205. ->values(array(
  3206. 'field_name' => 'field_test',
  3207. 'type_name' => 'story',
  3208. 'weight' => '1',
  3209. 'label' => 'Text Field',
  3210. 'widget_type' => 'text_textfield',
  3211. 'widget_settings' => 'a:4:{s:4:"rows";i:5;s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:22:"text for default value";s:14:"_error_element";s:42:"default_value_widget][field_test][0][value";}}s:17:"default_value_php";N;}',
  3212. 'display_settings' => 'a:7:{s:6:"weight";s:1:"1";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"trimmed";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"trimmed";s:7:"exclude";i:0;}}',
  3213. 'description' => 'An example text field.',
  3214. 'widget_module' => 'text',
  3215. 'widget_active' => '1',
  3216. ))
  3217. ->values(array(
  3218. 'field_name' => 'field_test',
  3219. 'type_name' => 'test_page',
  3220. 'weight' => '35',
  3221. 'label' => 'Text Field',
  3222. 'widget_type' => 'text_textfield',
  3223. 'widget_settings' => 'a:4:{s:4:"rows";i:5;s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:3:{s:5:"value";s:22:"text for default value";s:6:"format";s:1:"1";s:14:"_error_element";s:42:"default_value_widget][field_test][0][value";}}s:17:"default_value_php";N;}',
  3224. 'display_settings' => 'a:6:{s:6:"weight";s:2:"35";s:6:"parent";s:0:"";s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"trimmed";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3225. 'description' => 'An example text field.',
  3226. 'widget_module' => 'text',
  3227. 'widget_active' => '1',
  3228. ))
  3229. ->values(array(
  3230. 'field_name' => 'field_test_date',
  3231. 'type_name' => 'story',
  3232. 'weight' => '10',
  3233. 'label' => 'Date Field',
  3234. 'widget_type' => 'date_select',
  3235. 'widget_settings' => 'a:10:{s:13:"default_value";s:5:"blank";s:18:"default_value_code";s:0:"";s:14:"default_value2";s:4:"same";s:19:"default_value_code2";s:0:"";s:12:"input_format";s:13:"m/d/Y - H:i:s";s:19:"input_format_custom";s:0:"";s:9:"increment";s:1:"1";s:10:"text_parts";a:0:{}s:10:"year_range";s:5:"-3:+3";s:14:"label_position";s:5:"above";}',
  3236. 'display_settings' => 'a:7:{s:6:"weight";s:2:"10";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:4:"long";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3237. 'description' => 'An example date field.',
  3238. 'widget_module' => 'date',
  3239. 'widget_active' => '1',
  3240. ))
  3241. ->values(array(
  3242. 'field_name' => 'field_test_datestamp',
  3243. 'type_name' => 'story',
  3244. 'weight' => '11',
  3245. 'label' => 'Date Stamp Field',
  3246. 'widget_type' => 'date_text',
  3247. 'widget_settings' => 'a:10:{s:13:"default_value";s:5:"blank";s:18:"default_value_code";s:0:"";s:14:"default_value2";s:4:"same";s:19:"default_value_code2";s:0:"";s:12:"input_format";s:13:"m/d/Y - H:i:s";s:19:"input_format_custom";s:0:"";s:9:"increment";s:1:"1";s:10:"text_parts";a:0:{}s:10:"year_range";s:5:"-3:+3";s:14:"label_position";s:5:"above";}',
  3248. 'display_settings' => 'a:7:{s:6:"weight";s:2:"11";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:6:"medium";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3249. 'description' => 'An example date stamp field.',
  3250. 'widget_module' => 'date',
  3251. 'widget_active' => '1',
  3252. ))
  3253. ->values(array(
  3254. 'field_name' => 'field_test_datetime',
  3255. 'type_name' => 'story',
  3256. 'weight' => '12',
  3257. 'label' => 'Datetime Field',
  3258. 'widget_type' => 'date_popup',
  3259. 'widget_settings' => 'a:10:{s:13:"default_value";s:5:"blank";s:18:"default_value_code";s:0:"";s:14:"default_value2";s:4:"same";s:19:"default_value_code2";s:0:"";s:12:"input_format";s:11:"d/m/Y H:i:s";s:19:"input_format_custom";s:0:"";s:9:"increment";s:1:"1";s:10:"text_parts";a:0:{}s:10:"year_range";s:5:"-3:+3";s:14:"label_position";s:5:"above";}',
  3260. 'display_settings' => 'a:7:{s:6:"weight";s:2:"12";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:5:"short";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3261. 'description' => 'An example datetime field.',
  3262. 'widget_module' => 'date',
  3263. 'widget_active' => '1',
  3264. ))
  3265. ->values(array(
  3266. 'field_name' => 'field_test_decimal_radio_buttons',
  3267. 'type_name' => 'story',
  3268. 'weight' => '14',
  3269. 'label' => 'Decimal Radio Buttons Field',
  3270. 'widget_type' => 'optionwidgets_buttons',
  3271. 'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:17:"default_value_php";N;}',
  3272. 'display_settings' => 'a:7:{s:6:"weight";s:2:"14";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3273. 'description' => 'An example decimal field using radio buttons.',
  3274. 'widget_module' => 'optionwidgets',
  3275. 'widget_active' => '1',
  3276. ))
  3277. ->values(array(
  3278. 'field_name' => 'field_test_email',
  3279. 'type_name' => 'story',
  3280. 'weight' => '6',
  3281. 'label' => 'Email Field',
  3282. 'widget_type' => 'email_textfield',
  3283. 'widget_settings' => 'a:3:{s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:1:{s:5:"email";s:17:"benjy@example.com";}}s:17:"default_value_php";N;}',
  3284. 'display_settings' => 'a:7:{s:6:"weight";s:1:"6";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3285. 'description' => 'An example email field.',
  3286. 'widget_module' => 'email',
  3287. 'widget_active' => '1',
  3288. ))
  3289. ->values(array(
  3290. 'field_name' => 'field_test_exclude_unset',
  3291. 'type_name' => 'story',
  3292. 'weight' => '0',
  3293. 'label' => 'Text Field',
  3294. 'widget_type' => 'text_textfield',
  3295. 'widget_settings' => 'a:4:{s:4:"rows";i:5;s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:22:"text for default value";s:14:"_error_element";s:42:"default_value_widget][field_test][0][value";}}s:17:"default_value_php";N;}',
  3296. 'display_settings' => 'a:8:{s:6:"weight";i:0;s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"trimmed";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"trimmed";s:7:"exclude";i:0;}i:1;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3297. 'description' => 'An example text field without exclude.',
  3298. 'widget_module' => 'text',
  3299. 'widget_active' => '1',
  3300. ))
  3301. ->values(array(
  3302. 'field_name' => 'field_test_filefield',
  3303. 'type_name' => 'story',
  3304. 'weight' => '8',
  3305. 'label' => 'File Field',
  3306. 'widget_type' => 'filefield_widget',
  3307. 'widget_settings' => 'a:5:{s:15:"file_extensions";s:11:"txt pdf doc";s:9:"file_path";s:6:"images";s:18:"progress_indicator";s:3:"bar";s:21:"max_filesize_per_file";s:4:"200K";s:21:"max_filesize_per_node";s:3:"20M";}',
  3308. 'display_settings' => 'a:7:{s:6:"weight";s:1:"8";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:10:"path_plain";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3309. 'description' => 'An example image field.',
  3310. 'widget_module' => 'filefield',
  3311. 'widget_active' => '1',
  3312. ))
  3313. ->values(array(
  3314. 'field_name' => 'field_test_float_single_checkbox',
  3315. 'type_name' => 'story',
  3316. 'weight' => '15',
  3317. 'label' => 'Float Single Checkbox Field',
  3318. 'widget_type' => 'optionwidgets_onoff',
  3319. 'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";N;}}s:17:"default_value_php";N;}',
  3320. 'display_settings' => 'a:7:{s:6:"weight";s:2:"15";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3321. 'description' => 'An example float field using a single on/off checkbox.',
  3322. 'widget_module' => 'optionwidgets',
  3323. 'widget_active' => '1',
  3324. ))
  3325. ->values(array(
  3326. 'field_name' => 'field_test_four',
  3327. 'type_name' => 'story',
  3328. 'weight' => '3',
  3329. 'label' => 'Float Field',
  3330. 'widget_type' => 'number',
  3331. 'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:3:"101";s:14:"_error_element";s:47:"default_value_widget][field_test_four][0][value";}}s:17:"default_value_php";N;}',
  3332. 'display_settings' => 'a:7:{s:6:"weight";s:1:"3";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3333. 'description' => 'An example float field.',
  3334. 'widget_module' => 'number',
  3335. 'widget_active' => '1',
  3336. ))
  3337. ->values(array(
  3338. 'field_name' => 'field_test_identical1',
  3339. 'type_name' => 'story',
  3340. 'weight' => '4',
  3341. 'label' => 'Integer Field',
  3342. 'widget_type' => 'number',
  3343. 'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:41:"default_value_widget][field_int][0][value";}}s:17:"default_value_php";N;}',
  3344. 'display_settings' => 'a:7:{s:6:"weight";s:1:"4";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}}',
  3345. 'description' => 'An example integer field.',
  3346. 'widget_module' => 'number',
  3347. 'widget_active' => '1',
  3348. ))
  3349. ->values(array(
  3350. 'field_name' => 'field_test_identical2',
  3351. 'type_name' => 'story',
  3352. 'weight' => '5',
  3353. 'label' => 'Integer Field',
  3354. 'widget_type' => 'number',
  3355. 'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:41:"default_value_widget][field_int][0][value";}}s:17:"default_value_php";N;}',
  3356. 'display_settings' => 'a:7:{s:6:"weight";s:1:"5";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}}',
  3357. 'description' => 'An example integer field.',
  3358. 'widget_module' => 'number',
  3359. 'widget_active' => '1',
  3360. ))
  3361. ->values(array(
  3362. 'field_name' => 'field_test_imagefield',
  3363. 'type_name' => 'story',
  3364. 'weight' => '9',
  3365. 'label' => 'Image Field',
  3366. 'widget_type' => 'imagefield_widget',
  3367. 'widget_settings' => 'a:14:{s:15:"file_extensions";s:16:"png gif jpg jpeg";s:9:"file_path";s:0:"";s:18:"progress_indicator";s:3:"bar";s:21:"max_filesize_per_file";s:0:"";s:21:"max_filesize_per_node";s:0:"";s:14:"max_resolution";s:1:"0";s:14:"min_resolution";s:1:"0";s:3:"alt";s:8:"Test alt";s:10:"custom_alt";i:0;s:5:"title";s:10:"Test title";s:12:"custom_title";i:0;s:10:"title_type";s:9:"textfield";s:13:"default_image";N;s:17:"use_default_image";i:0;}',
  3368. 'display_settings' => 'a:7:{s:6:"weight";s:1:"9";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:15:"image_imagelink";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:11:"image_plain";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3369. 'description' => 'An example image field.',
  3370. 'widget_module' => 'imagefield',
  3371. 'widget_active' => '1',
  3372. ))
  3373. ->values(array(
  3374. 'field_name' => 'field_test_integer_selectlist',
  3375. 'type_name' => 'story',
  3376. 'weight' => '16',
  3377. 'label' => 'Integer Select List Field',
  3378. 'widget_type' => 'optionwidgets_select',
  3379. 'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:17:"default_value_php";N;}',
  3380. 'display_settings' => 'a:7:{s:6:"weight";s:2:"16";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3381. 'description' => 'An example integer field using a select list.',
  3382. 'widget_module' => 'optionwidgets',
  3383. 'widget_active' => '1',
  3384. ))
  3385. ->values(array(
  3386. 'field_name' => 'field_test_link',
  3387. 'type_name' => 'story',
  3388. 'weight' => '7',
  3389. 'label' => 'Link Field',
  3390. 'widget_type' => 'link',
  3391. 'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"title";s:18:"default link title";s:3:"url";s:22:"https://www.drupal.org";}}s:17:"default_value_php";N;}',
  3392. 'display_settings' => 'a:7:{s:6:"weight";s:1:"7";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:8:"absolute";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3393. 'description' => 'An example link field.',
  3394. 'widget_module' => 'link',
  3395. 'widget_active' => '1',
  3396. ))
  3397. ->values(array(
  3398. 'field_name' => 'field_test_phone',
  3399. 'type_name' => 'story',
  3400. 'weight' => '13',
  3401. 'label' => 'Phone Field',
  3402. 'widget_type' => 'phone_textfield',
  3403. 'widget_settings' => 'a:3:{s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:48:"default_value_widget][field_test_phone][0][value";}}s:17:"default_value_php";N;}',
  3404. 'display_settings' => 'a:7:{s:6:"weight";s:2:"13";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3405. 'description' => 'An example phone field.',
  3406. 'widget_module' => 'phone',
  3407. 'widget_active' => '1',
  3408. ))
  3409. ->values(array(
  3410. 'field_name' => 'field_test_string_selectlist',
  3411. 'type_name' => 'story',
  3412. 'weight' => '31',
  3413. 'label' => 'String Select List Field',
  3414. 'widget_type' => 'optionwidgets_select',
  3415. 'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:17:"default_value_php";N;}',
  3416. 'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3417. 'description' => '',
  3418. 'widget_module' => 'optionwidgets',
  3419. 'widget_active' => '1',
  3420. ))
  3421. ->values(array(
  3422. 'field_name' => 'field_test_text_single_checkbox',
  3423. 'type_name' => 'story',
  3424. 'weight' => '17',
  3425. 'label' => 'Text Single Checkbox Field',
  3426. 'widget_type' => 'optionwidgets_onoff',
  3427. 'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:1:"a";}}s:17:"default_value_php";N;}',
  3428. 'display_settings' => 'a:7:{s:6:"weight";s:2:"17";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3429. 'description' => 'An example text field using a single on/off checkbox.',
  3430. 'widget_module' => 'optionwidgets',
  3431. 'widget_active' => '1',
  3432. ))
  3433. ->values(array(
  3434. 'field_name' => 'field_test_text_single_checkbox',
  3435. 'type_name' => 'test_planet',
  3436. 'weight' => '32',
  3437. 'label' => 'Text Single Checkbox Field',
  3438. 'widget_type' => 'text_textfield',
  3439. 'widget_settings' => 'a:4:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:1:"0";s:14:"_error_element";s:63:"default_value_widget][field_test_text_single_checkbox][0][value";}}s:17:"default_value_php";N;s:4:"rows";i:5;s:4:"size";s:3:"255";}',
  3440. 'display_settings' => 'a:7:{s:6:"weight";s:2:"32";s:6:"parent";s:0:"";s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:6:"hidden";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3441. 'description' => 'An example text field using a single on/off checkbox.',
  3442. 'widget_module' => 'text',
  3443. 'widget_active' => '1',
  3444. ))
  3445. ->values(array(
  3446. 'field_name' => 'field_test_text_single_checkbox2',
  3447. 'type_name' => 'story',
  3448. 'weight' => '19',
  3449. 'label' => 'Text Single Checkbox Field 2',
  3450. 'widget_type' => 'optionwidgets_onoff',
  3451. 'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";N;}}s:17:"default_value_php";N;}',
  3452. 'display_settings' => 'a:5:{s:5:"label";a:2:{s:6:"format";s:5:"above";s:7:"exclude";i:0;}i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
  3453. 'description' => 'Checkbox that uses keys only and no label.',
  3454. 'widget_module' => 'optionwidgets',
  3455. 'widget_active' => '1',
  3456. ))
  3457. ->values(array(
  3458. 'field_name' => 'field_test_three',
  3459. 'type_name' => 'story',
  3460. 'weight' => '2',
  3461. 'label' => 'Decimal Field',
  3462. 'widget_type' => 'number',
  3463. 'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";d:101;s:14:"_error_element";s:48:"default_value_widget][field_test_three][0][value";}}s:17:"default_value_php";N;}',
  3464. 'display_settings' => 'a:7:{s:6:"weight";s:1:"2";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:4:"us_2";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}}',
  3465. 'description' => 'An example decimal field.',
  3466. 'widget_module' => 'number',
  3467. 'widget_active' => '1',
  3468. ))
  3469. ->values(array(
  3470. 'field_name' => 'field_test_two',
  3471. 'type_name' => 'story',
  3472. 'weight' => '1',
  3473. 'label' => 'Integer Field',
  3474. 'widget_type' => 'number',
  3475. 'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:46:"default_value_widget][field_test_two][0][value";}}s:17:"default_value_php";N;}',
  3476. 'display_settings' => 'a:7:{s:6:"weight";s:1:"1";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:4:"us_0";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:4:"us_0";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}}',
  3477. 'description' => 'An example integer field.',
  3478. 'widget_module' => 'number',
  3479. 'widget_active' => '1',
  3480. ))
  3481. ->execute();
  3482. $connection->schema()->createTable('content_type_employee', array(
  3483. 'fields' => array(
  3484. 'vid' => array(
  3485. 'type' => 'int',
  3486. 'not null' => TRUE,
  3487. 'size' => 'normal',
  3488. 'default' => '0',
  3489. 'unsigned' => TRUE,
  3490. ),
  3491. 'nid' => array(
  3492. 'type' => 'int',
  3493. 'not null' => TRUE,
  3494. 'size' => 'normal',
  3495. 'default' => '0',
  3496. 'unsigned' => TRUE,
  3497. ),
  3498. 'field_commander_uid' => array(
  3499. 'type' => 'int',
  3500. 'not null' => FALSE,
  3501. 'size' => 'normal',
  3502. 'unsigned' => TRUE,
  3503. ),
  3504. 'field_company_2_nid' => array(
  3505. 'type' => 'int',
  3506. 'not null' => FALSE,
  3507. 'size' => 'normal',
  3508. 'unsigned' => TRUE,
  3509. ),
  3510. 'field_company_3_nid' => array(
  3511. 'type' => 'int',
  3512. 'not null' => FALSE,
  3513. 'size' => 'normal',
  3514. 'unsigned' => TRUE,
  3515. ),
  3516. 'field_sync_email' => array(
  3517. 'type' => 'varchar',
  3518. 'not null' => FALSE,
  3519. 'length' => '255',
  3520. ),
  3521. ),
  3522. 'primary key' => array(
  3523. 'vid',
  3524. ),
  3525. 'indexes' => array(
  3526. 'nid' => array(
  3527. 'nid',
  3528. ),
  3529. 'field_commander_uid' => array(
  3530. 'field_commander_uid',
  3531. ),
  3532. 'field_company_2_nid' => array(
  3533. 'field_company_2_nid',
  3534. ),
  3535. 'field_company_3_nid' => array(
  3536. 'field_company_3_nid',
  3537. ),
  3538. ),
  3539. 'mysql_character_set' => 'utf8',
  3540. ));
  3541. $connection->insert('content_type_employee')
  3542. ->fields(array(
  3543. 'vid',
  3544. 'nid',
  3545. 'field_commander_uid',
  3546. 'field_company_2_nid',
  3547. 'field_company_3_nid',
  3548. 'field_sync_email',
  3549. ))
  3550. ->values(array(
  3551. 'vid' => '21',
  3552. 'nid' => '18',
  3553. 'field_commander_uid' => '8',
  3554. 'field_company_2_nid' => '15',
  3555. 'field_company_3_nid' => '16',
  3556. 'field_sync_email' => NULL,
  3557. ))
  3558. ->values(array(
  3559. 'vid' => '2002',
  3560. 'nid' => '21',
  3561. 'field_commander_uid' => NULL,
  3562. 'field_company_2_nid' => NULL,
  3563. 'field_company_3_nid' => NULL,
  3564. 'field_sync_email' => 'jsmith@example.com',
  3565. ))
  3566. ->values(array(
  3567. 'vid' => '2003',
  3568. 'nid' => '22',
  3569. 'field_commander_uid' => NULL,
  3570. 'field_company_2_nid' => NULL,
  3571. 'field_company_3_nid' => NULL,
  3572. 'field_sync_email' => 'jsmith@example.com',
  3573. ))
  3574. ->execute();
  3575. $connection->schema()->createTable('content_type_page', array(
  3576. 'fields' => array(
  3577. 'vid' => array(
  3578. 'type' => 'int',
  3579. 'not null' => TRUE,
  3580. 'size' => 'normal',
  3581. 'default' => '0',
  3582. 'unsigned' => TRUE,
  3583. ),
  3584. 'nid' => array(
  3585. 'type' => 'int',
  3586. 'not null' => TRUE,
  3587. 'size' => 'normal',
  3588. 'default' => '0',
  3589. 'unsigned' => TRUE,
  3590. ),
  3591. 'field_text_field_value' => array(
  3592. 'type' => 'text',
  3593. 'not null' => FALSE,
  3594. 'size' => 'normal',
  3595. ),
  3596. 'field_reference_nid' => array(
  3597. 'type' => 'int',
  3598. 'not null' => FALSE,
  3599. 'size' => 'normal',
  3600. 'unsigned' => TRUE,
  3601. ),
  3602. 'field_reference_2_nid' => array(
  3603. 'type' => 'int',
  3604. 'not null' => FALSE,
  3605. 'size' => 'normal',
  3606. 'unsigned' => TRUE,
  3607. ),
  3608. ),
  3609. 'primary key' => array(
  3610. 'vid',
  3611. ),
  3612. 'indexes' => array(
  3613. 'field_reference_nid' => array(
  3614. 'field_reference_nid',
  3615. ),
  3616. 'field_reference_2_nid' => array(
  3617. 'field_reference_2_nid',
  3618. ),
  3619. ),
  3620. 'mysql_character_set' => 'utf8',
  3621. ));
  3622. $connection->insert('content_type_page')
  3623. ->fields(array(
  3624. 'vid',
  3625. 'nid',
  3626. 'field_text_field_value',
  3627. 'field_reference_nid',
  3628. 'field_reference_2_nid',
  3629. ))
  3630. ->values(array(
  3631. 'vid' => '13',
  3632. 'nid' => '10',
  3633. 'field_text_field_value' => NULL,
  3634. 'field_reference_nid' => '13',
  3635. 'field_reference_2_nid' => '13',
  3636. ))
  3637. ->values(array(
  3638. 'vid' => '14',
  3639. 'nid' => '11',
  3640. 'field_text_field_value' => NULL,
  3641. 'field_reference_nid' => '20',
  3642. 'field_reference_2_nid' => '20',
  3643. ))
  3644. ->values(array(
  3645. 'vid' => '16',
  3646. 'nid' => '13',
  3647. 'field_text_field_value' => NULL,
  3648. 'field_reference_nid' => '10',
  3649. 'field_reference_2_nid' => '10',
  3650. ))
  3651. ->values(array(
  3652. 'vid' => '23',
  3653. 'nid' => '20',
  3654. 'field_text_field_value' => NULL,
  3655. 'field_reference_nid' => '11',
  3656. 'field_reference_2_nid' => '11',
  3657. ))
  3658. ->execute();
  3659. $connection->schema()->createTable('content_type_story', array(
  3660. 'fields' => array(
  3661. 'nid' => array(
  3662. 'type' => 'int',
  3663. 'not null' => TRUE,
  3664. 'size' => 'normal',
  3665. 'default' => '0',
  3666. 'unsigned' => TRUE,
  3667. ),
  3668. 'vid' => array(
  3669. 'type' => 'serial',
  3670. 'not null' => TRUE,
  3671. 'size' => 'normal',
  3672. 'unsigned' => TRUE,
  3673. ),
  3674. 'uid' => array(
  3675. 'type' => 'int',
  3676. 'not null' => TRUE,
  3677. 'size' => 'normal',
  3678. 'unsigned' => TRUE,
  3679. ),
  3680. 'field_test_three_value' => array(
  3681. 'type' => 'numeric',
  3682. 'not null' => FALSE,
  3683. 'precision' => '10',
  3684. 'scale' => '2',
  3685. ),
  3686. 'field_test_identical1_value' => array(
  3687. 'type' => 'int',
  3688. 'not null' => FALSE,
  3689. 'size' => 'normal',
  3690. 'unsigned' => TRUE,
  3691. ),
  3692. 'field_test_identical2_value' => array(
  3693. 'type' => 'int',
  3694. 'not null' => FALSE,
  3695. 'size' => 'normal',
  3696. 'unsigned' => TRUE,
  3697. ),
  3698. 'field_test_link_url' => array(
  3699. 'type' => 'varchar',
  3700. 'not null' => FALSE,
  3701. 'length' => '2048',
  3702. ),
  3703. 'field_test_link_title' => array(
  3704. 'type' => 'varchar',
  3705. 'not null' => FALSE,
  3706. 'length' => '255',
  3707. ),
  3708. 'field_test_link_attributes' => array(
  3709. 'type' => 'text',
  3710. 'not null' => FALSE,
  3711. 'size' => 'normal',
  3712. ),
  3713. 'field_test_date_value' => array(
  3714. 'type' => 'varchar',
  3715. 'not null' => FALSE,
  3716. 'length' => '20',
  3717. ),
  3718. 'field_test_datestamp_value' => array(
  3719. 'type' => 'int',
  3720. 'not null' => FALSE,
  3721. 'size' => 'normal',
  3722. ),
  3723. 'field_test_datetime_value' => array(
  3724. 'type' => 'varchar',
  3725. 'not null' => FALSE,
  3726. 'length' => '100',
  3727. ),
  3728. 'field_test_email_email' => array(
  3729. 'type' => 'varchar',
  3730. 'not null' => FALSE,
  3731. 'length' => '255',
  3732. ),
  3733. 'field_test_filefield_fid' => array(
  3734. 'type' => 'int',
  3735. 'not null' => FALSE,
  3736. 'size' => 'normal',
  3737. ),
  3738. 'field_test_filefield_list' => array(
  3739. 'type' => 'int',
  3740. 'not null' => FALSE,
  3741. 'size' => 'normal',
  3742. ),
  3743. 'field_test_filefield_data' => array(
  3744. 'type' => 'text',
  3745. 'not null' => FALSE,
  3746. 'size' => 'normal',
  3747. ),
  3748. 'field_test_four_value' => array(
  3749. 'type' => 'numeric',
  3750. 'not null' => FALSE,
  3751. 'precision' => '10',
  3752. 'scale' => '0',
  3753. ),
  3754. 'field_test_integer_selectlist_value' => array(
  3755. 'type' => 'int',
  3756. 'not null' => FALSE,
  3757. 'size' => 'normal',
  3758. ),
  3759. 'field_test_float_single_checkbox_value' => array(
  3760. 'type' => 'numeric',
  3761. 'not null' => FALSE,
  3762. 'precision' => '10',
  3763. 'scale' => '0',
  3764. ),
  3765. 'field_test_decimal_radio_buttons_value' => array(
  3766. 'type' => 'numeric',
  3767. 'not null' => FALSE,
  3768. 'precision' => '10',
  3769. 'scale' => '2',
  3770. ),
  3771. 'field_test_phone_value' => array(
  3772. 'type' => 'varchar',
  3773. 'not null' => FALSE,
  3774. 'length' => '255',
  3775. ),
  3776. 'field_test_exclude_unset_value' => array(
  3777. 'type' => 'text',
  3778. 'not null' => FALSE,
  3779. 'size' => 'normal',
  3780. ),
  3781. 'field_test_exclude_unset_format' => array(
  3782. 'type' => 'int',
  3783. 'not null' => FALSE,
  3784. 'size' => 'normal',
  3785. 'unsigned' => TRUE,
  3786. ),
  3787. 'field_test_imagefield_fid' => array(
  3788. 'type' => 'int',
  3789. 'not null' => FALSE,
  3790. 'size' => 'normal',
  3791. ),
  3792. 'field_test_imagefield_list' => array(
  3793. 'type' => 'int',
  3794. 'not null' => FALSE,
  3795. 'size' => 'normal',
  3796. ),
  3797. 'field_test_imagefield_data' => array(
  3798. 'type' => 'text',
  3799. 'not null' => FALSE,
  3800. 'size' => 'normal',
  3801. ),
  3802. 'field_test_text_single_checkbox2_value' => array(
  3803. 'type' => 'text',
  3804. 'not null' => FALSE,
  3805. 'size' => 'big',
  3806. ),
  3807. 'field_test_datestamp_value2' => array(
  3808. 'type' => 'int',
  3809. 'not null' => FALSE,
  3810. 'size' => 'normal',
  3811. ),
  3812. 'field_test_datetime_value2' => array(
  3813. 'type' => 'varchar',
  3814. 'not null' => FALSE,
  3815. 'length' => '100',
  3816. ),
  3817. 'field_test_string_selectlist_value' => array(
  3818. 'type' => 'text',
  3819. 'not null' => FALSE,
  3820. 'size' => 'big',
  3821. ),
  3822. ),
  3823. 'primary key' => array(
  3824. 'vid',
  3825. ),
  3826. 'indexes' => array(
  3827. 'nid' => array(
  3828. 'nid',
  3829. ),
  3830. ),
  3831. 'mysql_character_set' => 'utf8',
  3832. ));
  3833. $connection->insert('content_type_story')
  3834. ->fields(array(
  3835. 'nid',
  3836. 'vid',
  3837. 'uid',
  3838. 'field_test_three_value',
  3839. 'field_test_identical1_value',
  3840. 'field_test_identical2_value',
  3841. 'field_test_link_url',
  3842. 'field_test_link_title',
  3843. 'field_test_link_attributes',
  3844. 'field_test_date_value',
  3845. 'field_test_datestamp_value',
  3846. 'field_test_datetime_value',
  3847. 'field_test_email_email',
  3848. 'field_test_filefield_fid',
  3849. 'field_test_filefield_list',
  3850. 'field_test_filefield_data',
  3851. 'field_test_four_value',
  3852. 'field_test_integer_selectlist_value',
  3853. 'field_test_float_single_checkbox_value',
  3854. 'field_test_decimal_radio_buttons_value',
  3855. 'field_test_phone_value',
  3856. 'field_test_exclude_unset_value',
  3857. 'field_test_exclude_unset_format',
  3858. 'field_test_imagefield_fid',
  3859. 'field_test_imagefield_list',
  3860. 'field_test_imagefield_data',
  3861. 'field_test_text_single_checkbox2_value',
  3862. 'field_test_datestamp_value2',
  3863. 'field_test_datetime_value2',
  3864. 'field_test_string_selectlist_value',
  3865. ))
  3866. ->values(array(
  3867. 'nid' => '1',
  3868. 'vid' => '1',
  3869. 'uid' => '1',
  3870. 'field_test_three_value' => '42.42',
  3871. 'field_test_identical1_value' => '1',
  3872. 'field_test_identical2_value' => '1',
  3873. 'field_test_link_url' => 'https://www.drupal.org/project/drupal',
  3874. 'field_test_link_title' => 'Drupal project page',
  3875. 'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
  3876. 'field_test_date_value' => '2013-01-02T04:05:00',
  3877. 'field_test_datestamp_value' => '1391357160',
  3878. 'field_test_datetime_value' => '2015-03-04 06:07:00',
  3879. 'field_test_email_email' => 'PrincessRuwenne@example.com',
  3880. 'field_test_filefield_fid' => '5',
  3881. 'field_test_filefield_list' => '1',
  3882. 'field_test_filefield_data' => 'a:1:{s:11:"description";s:4:"desc";}',
  3883. 'field_test_four_value' => NULL,
  3884. 'field_test_integer_selectlist_value' => '3412',
  3885. 'field_test_float_single_checkbox_value' => '3',
  3886. 'field_test_decimal_radio_buttons_value' => NULL,
  3887. 'field_test_phone_value' => NULL,
  3888. 'field_test_exclude_unset_value' => 'This is a field with exclude unset.',
  3889. 'field_test_exclude_unset_format' => '1',
  3890. 'field_test_imagefield_fid' => NULL,
  3891. 'field_test_imagefield_list' => NULL,
  3892. 'field_test_imagefield_data' => NULL,
  3893. 'field_test_text_single_checkbox2_value' => 'Hello',
  3894. 'field_test_datestamp_value2' => NULL,
  3895. 'field_test_datetime_value2' => NULL,
  3896. 'field_test_string_selectlist_value' => NULL,
  3897. ))
  3898. ->values(array(
  3899. 'nid' => '1',
  3900. 'vid' => '2',
  3901. 'uid' => '1',
  3902. 'field_test_three_value' => '42.42',
  3903. 'field_test_identical1_value' => '1',
  3904. 'field_test_identical2_value' => '1',
  3905. 'field_test_link_url' => 'https://www.drupal.org/project/drupal',
  3906. 'field_test_link_title' => 'Drupal project page',
  3907. 'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
  3908. 'field_test_date_value' => '2013-01-02T04:05:00',
  3909. 'field_test_datestamp_value' => '1391357160',
  3910. 'field_test_datetime_value' => '2015-03-04 06:07:00',
  3911. 'field_test_email_email' => 'PrincessRuwenne@example.com',
  3912. 'field_test_filefield_fid' => NULL,
  3913. 'field_test_filefield_list' => NULL,
  3914. 'field_test_filefield_data' => NULL,
  3915. 'field_test_four_value' => NULL,
  3916. 'field_test_integer_selectlist_value' => NULL,
  3917. 'field_test_float_single_checkbox_value' => NULL,
  3918. 'field_test_decimal_radio_buttons_value' => NULL,
  3919. 'field_test_phone_value' => NULL,
  3920. 'field_test_exclude_unset_value' => NULL,
  3921. 'field_test_exclude_unset_format' => NULL,
  3922. 'field_test_imagefield_fid' => NULL,
  3923. 'field_test_imagefield_list' => NULL,
  3924. 'field_test_imagefield_data' => NULL,
  3925. 'field_test_text_single_checkbox2_value' => NULL,
  3926. 'field_test_datestamp_value2' => NULL,
  3927. 'field_test_datetime_value2' => NULL,
  3928. 'field_test_string_selectlist_value' => NULL,
  3929. ))
  3930. ->values(array(
  3931. 'nid' => '2',
  3932. 'vid' => '3',
  3933. 'uid' => '1',
  3934. 'field_test_three_value' => '23.20',
  3935. 'field_test_identical1_value' => '1',
  3936. 'field_test_identical2_value' => '1',
  3937. 'field_test_link_url' => 'http://groups.drupal.org/',
  3938. 'field_test_link_title' => 'Drupal Groups',
  3939. 'field_test_link_attributes' => 's:6:"a:0:{}";',
  3940. 'field_test_date_value' => NULL,
  3941. 'field_test_datestamp_value' => NULL,
  3942. 'field_test_datetime_value' => NULL,
  3943. 'field_test_email_email' => NULL,
  3944. 'field_test_filefield_fid' => NULL,
  3945. 'field_test_filefield_list' => NULL,
  3946. 'field_test_filefield_data' => NULL,
  3947. 'field_test_four_value' => NULL,
  3948. 'field_test_integer_selectlist_value' => NULL,
  3949. 'field_test_float_single_checkbox_value' => NULL,
  3950. 'field_test_decimal_radio_buttons_value' => NULL,
  3951. 'field_test_phone_value' => NULL,
  3952. 'field_test_exclude_unset_value' => NULL,
  3953. 'field_test_exclude_unset_format' => NULL,
  3954. 'field_test_imagefield_fid' => NULL,
  3955. 'field_test_imagefield_list' => NULL,
  3956. 'field_test_imagefield_data' => NULL,
  3957. 'field_test_text_single_checkbox2_value' => NULL,
  3958. 'field_test_datestamp_value2' => NULL,
  3959. 'field_test_datetime_value2' => NULL,
  3960. 'field_test_string_selectlist_value' => NULL,
  3961. ))
  3962. ->values(array(
  3963. 'nid' => '2',
  3964. 'vid' => '5',
  3965. 'uid' => '1',
  3966. 'field_test_three_value' => '23.20',
  3967. 'field_test_identical1_value' => '1',
  3968. 'field_test_identical2_value' => '1',
  3969. 'field_test_link_url' => 'http://groups.drupal.org/',
  3970. 'field_test_link_title' => 'Drupal Groups',
  3971. 'field_test_link_attributes' => 's:6:"a:0:{}";',
  3972. 'field_test_date_value' => NULL,
  3973. 'field_test_datestamp_value' => NULL,
  3974. 'field_test_datetime_value' => NULL,
  3975. 'field_test_email_email' => NULL,
  3976. 'field_test_filefield_fid' => NULL,
  3977. 'field_test_filefield_list' => NULL,
  3978. 'field_test_filefield_data' => NULL,
  3979. 'field_test_four_value' => NULL,
  3980. 'field_test_integer_selectlist_value' => NULL,
  3981. 'field_test_float_single_checkbox_value' => NULL,
  3982. 'field_test_decimal_radio_buttons_value' => NULL,
  3983. 'field_test_phone_value' => NULL,
  3984. 'field_test_exclude_unset_value' => NULL,
  3985. 'field_test_exclude_unset_format' => NULL,
  3986. 'field_test_imagefield_fid' => NULL,
  3987. 'field_test_imagefield_list' => NULL,
  3988. 'field_test_imagefield_data' => NULL,
  3989. 'field_test_text_single_checkbox2_value' => NULL,
  3990. 'field_test_datestamp_value2' => NULL,
  3991. 'field_test_datetime_value2' => NULL,
  3992. 'field_test_string_selectlist_value' => NULL,
  3993. ))
  3994. ->values(array(
  3995. 'nid' => '9',
  3996. 'vid' => '12',
  3997. 'uid' => '0',
  3998. 'field_test_three_value' => '101.00',
  3999. 'field_test_identical1_value' => NULL,
  4000. 'field_test_identical2_value' => NULL,
  4001. 'field_test_link_url' => 'node/10',
  4002. 'field_test_link_title' => 'Buy it now',
  4003. 'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
  4004. 'field_test_date_value' => NULL,
  4005. 'field_test_datestamp_value' => NULL,
  4006. 'field_test_datetime_value' => NULL,
  4007. 'field_test_email_email' => NULL,
  4008. 'field_test_filefield_fid' => NULL,
  4009. 'field_test_filefield_list' => NULL,
  4010. 'field_test_filefield_data' => NULL,
  4011. 'field_test_four_value' => '101',
  4012. 'field_test_integer_selectlist_value' => NULL,
  4013. 'field_test_float_single_checkbox_value' => '3',
  4014. 'field_test_decimal_radio_buttons_value' => NULL,
  4015. 'field_test_phone_value' => NULL,
  4016. 'field_test_exclude_unset_value' => 'text for default value',
  4017. 'field_test_exclude_unset_format' => '1',
  4018. 'field_test_imagefield_fid' => '2',
  4019. 'field_test_imagefield_list' => '1',
  4020. 'field_test_imagefield_data' => 'a:2:{s:3:"alt";s:8:"Test alt";s:5:"title";s:10:"Test title";}',
  4021. 'field_test_text_single_checkbox2_value' => 'Off',
  4022. 'field_test_datestamp_value2' => '1391357160',
  4023. 'field_test_datetime_value2' => '2015-03-04 06:07:00',
  4024. 'field_test_string_selectlist_value' => NULL,
  4025. ))
  4026. ->execute();
  4027. $connection->schema()->createTable('content_type_test_page', array(
  4028. 'fields' => array(
  4029. 'vid' => array(
  4030. 'type' => 'int',
  4031. 'not null' => TRUE,
  4032. 'size' => 'normal',
  4033. 'default' => '0',
  4034. 'unsigned' => TRUE,
  4035. ),
  4036. 'nid' => array(
  4037. 'type' => 'int',
  4038. 'not null' => TRUE,
  4039. 'size' => 'normal',
  4040. 'default' => '0',
  4041. 'unsigned' => TRUE,
  4042. ),
  4043. 'field_test_value' => array(
  4044. 'type' => 'text',
  4045. 'not null' => FALSE,
  4046. 'size' => 'normal',
  4047. ),
  4048. 'field_test_format' => array(
  4049. 'type' => 'int',
  4050. 'not null' => FALSE,
  4051. 'size' => 'normal',
  4052. 'unsigned' => TRUE,
  4053. ),
  4054. ),
  4055. 'primary key' => array(
  4056. 'vid',
  4057. ),
  4058. 'mysql_character_set' => 'utf8',
  4059. ));
  4060. $connection->schema()->createTable('content_type_test_planet', array(
  4061. 'fields' => array(
  4062. 'nid' => array(
  4063. 'type' => 'int',
  4064. 'not null' => TRUE,
  4065. 'size' => 'normal',
  4066. 'default' => '0',
  4067. 'unsigned' => TRUE,
  4068. ),
  4069. 'vid' => array(
  4070. 'type' => 'serial',
  4071. 'not null' => TRUE,
  4072. 'size' => 'normal',
  4073. 'unsigned' => TRUE,
  4074. ),
  4075. ),
  4076. 'primary key' => array(
  4077. 'vid',
  4078. ),
  4079. 'mysql_character_set' => 'utf8',
  4080. ));
  4081. $connection->insert('content_type_test_planet')
  4082. ->fields(array(
  4083. 'nid',
  4084. 'vid',
  4085. ))
  4086. ->values(array(
  4087. 'nid' => '3',
  4088. 'vid' => '4',
  4089. ))
  4090. ->values(array(
  4091. 'nid' => '4',
  4092. 'vid' => '6',
  4093. ))
  4094. ->values(array(
  4095. 'nid' => '5',
  4096. 'vid' => '7',
  4097. ))
  4098. ->values(array(
  4099. 'nid' => '6',
  4100. 'vid' => '8',
  4101. ))
  4102. ->values(array(
  4103. 'nid' => '7',
  4104. 'vid' => '9',
  4105. ))
  4106. ->values(array(
  4107. 'nid' => '8',
  4108. 'vid' => '10',
  4109. ))
  4110. ->values(array(
  4111. 'nid' => '9',
  4112. 'vid' => '11',
  4113. ))
  4114. ->execute();
  4115. $connection->schema()->createTable('date_format_locale', array(
  4116. 'fields' => array(
  4117. 'format' => array(
  4118. 'type' => 'varchar',
  4119. 'not null' => TRUE,
  4120. 'length' => '100',
  4121. ),
  4122. 'type' => array(
  4123. 'type' => 'varchar',
  4124. 'not null' => TRUE,
  4125. 'length' => '200',
  4126. ),
  4127. 'language' => array(
  4128. 'type' => 'varchar',
  4129. 'not null' => TRUE,
  4130. 'length' => '12',
  4131. ),
  4132. ),
  4133. 'primary key' => array(
  4134. 'type',
  4135. 'language',
  4136. ),
  4137. 'mysql_character_set' => 'utf8',
  4138. ));
  4139. $connection->schema()->createTable('date_format_types', array(
  4140. 'fields' => array(
  4141. 'type' => array(
  4142. 'type' => 'varchar',
  4143. 'not null' => TRUE,
  4144. 'length' => '200',
  4145. ),
  4146. 'title' => array(
  4147. 'type' => 'varchar',
  4148. 'not null' => TRUE,
  4149. 'length' => '255',
  4150. ),
  4151. 'locked' => array(
  4152. 'type' => 'int',
  4153. 'not null' => TRUE,
  4154. 'size' => 'normal',
  4155. 'default' => '0',
  4156. ),
  4157. ),
  4158. 'primary key' => array(
  4159. 'type',
  4160. ),
  4161. 'mysql_character_set' => 'utf8',
  4162. ));
  4163. $connection->insert('date_format_types')
  4164. ->fields(array(
  4165. 'type',
  4166. 'title',
  4167. 'locked',
  4168. ))
  4169. ->values(array(
  4170. 'type' => 'long',
  4171. 'title' => 'Long',
  4172. 'locked' => '1',
  4173. ))
  4174. ->values(array(
  4175. 'type' => 'medium',
  4176. 'title' => 'Medium',
  4177. 'locked' => '1',
  4178. ))
  4179. ->values(array(
  4180. 'type' => 'short',
  4181. 'title' => 'Short',
  4182. 'locked' => '1',
  4183. ))
  4184. ->execute();
  4185. $connection->schema()->createTable('date_formats', array(
  4186. 'fields' => array(
  4187. 'dfid' => array(
  4188. 'type' => 'serial',
  4189. 'not null' => TRUE,
  4190. 'size' => 'normal',
  4191. 'unsigned' => TRUE,
  4192. ),
  4193. 'format' => array(
  4194. 'type' => 'varchar',
  4195. 'not null' => TRUE,
  4196. 'length' => '100',
  4197. ),
  4198. 'type' => array(
  4199. 'type' => 'varchar',
  4200. 'not null' => TRUE,
  4201. 'length' => '200',
  4202. ),
  4203. 'locked' => array(
  4204. 'type' => 'int',
  4205. 'not null' => TRUE,
  4206. 'size' => 'normal',
  4207. 'default' => '0',
  4208. ),
  4209. ),
  4210. 'primary key' => array(
  4211. 'dfid',
  4212. ),
  4213. 'mysql_character_set' => 'utf8',
  4214. ));
  4215. $connection->insert('date_formats')
  4216. ->fields(array(
  4217. 'dfid',
  4218. 'format',
  4219. 'type',
  4220. 'locked',
  4221. ))
  4222. ->values(array(
  4223. 'dfid' => '1',
  4224. 'format' => 'Y-m-d H:i',
  4225. 'type' => 'short',
  4226. 'locked' => '1',
  4227. ))
  4228. ->values(array(
  4229. 'dfid' => '2',
  4230. 'format' => 'm/d/Y - H:i',
  4231. 'type' => 'short',
  4232. 'locked' => '1',
  4233. ))
  4234. ->values(array(
  4235. 'dfid' => '3',
  4236. 'format' => 'd/m/Y - H:i',
  4237. 'type' => 'short',
  4238. 'locked' => '1',
  4239. ))
  4240. ->values(array(
  4241. 'dfid' => '4',
  4242. 'format' => 'Y/m/d - H:i',
  4243. 'type' => 'short',
  4244. 'locked' => '1',
  4245. ))
  4246. ->values(array(
  4247. 'dfid' => '5',
  4248. 'format' => 'd.m.Y - H:i',
  4249. 'type' => 'short',
  4250. 'locked' => '1',
  4251. ))
  4252. ->values(array(
  4253. 'dfid' => '6',
  4254. 'format' => 'm/d/Y - g:ia',
  4255. 'type' => 'short',
  4256. 'locked' => '1',
  4257. ))
  4258. ->values(array(
  4259. 'dfid' => '7',
  4260. 'format' => 'd/m/Y - g:ia',
  4261. 'type' => 'short',
  4262. 'locked' => '1',
  4263. ))
  4264. ->values(array(
  4265. 'dfid' => '8',
  4266. 'format' => 'Y/m/d - g:ia',
  4267. 'type' => 'short',
  4268. 'locked' => '1',
  4269. ))
  4270. ->values(array(
  4271. 'dfid' => '9',
  4272. 'format' => 'M j Y - H:i',
  4273. 'type' => 'short',
  4274. 'locked' => '1',
  4275. ))
  4276. ->values(array(
  4277. 'dfid' => '10',
  4278. 'format' => 'j M Y - H:i',
  4279. 'type' => 'short',
  4280. 'locked' => '1',
  4281. ))
  4282. ->values(array(
  4283. 'dfid' => '11',
  4284. 'format' => 'Y M j - H:i',
  4285. 'type' => 'short',
  4286. 'locked' => '1',
  4287. ))
  4288. ->values(array(
  4289. 'dfid' => '12',
  4290. 'format' => 'M j Y - g:ia',
  4291. 'type' => 'short',
  4292. 'locked' => '1',
  4293. ))
  4294. ->values(array(
  4295. 'dfid' => '13',
  4296. 'format' => 'j M Y - g:ia',
  4297. 'type' => 'short',
  4298. 'locked' => '1',
  4299. ))
  4300. ->values(array(
  4301. 'dfid' => '14',
  4302. 'format' => 'Y M j - g:ia',
  4303. 'type' => 'short',
  4304. 'locked' => '1',
  4305. ))
  4306. ->values(array(
  4307. 'dfid' => '15',
  4308. 'format' => 'D, Y-m-d H:i',
  4309. 'type' => 'medium',
  4310. 'locked' => '1',
  4311. ))
  4312. ->values(array(
  4313. 'dfid' => '16',
  4314. 'format' => 'D, m/d/Y - H:i',
  4315. 'type' => 'medium',
  4316. 'locked' => '1',
  4317. ))
  4318. ->values(array(
  4319. 'dfid' => '17',
  4320. 'format' => 'D, d/m/Y - H:i',
  4321. 'type' => 'medium',
  4322. 'locked' => '1',
  4323. ))
  4324. ->values(array(
  4325. 'dfid' => '18',
  4326. 'format' => 'D, Y/m/d - H:i',
  4327. 'type' => 'medium',
  4328. 'locked' => '1',
  4329. ))
  4330. ->values(array(
  4331. 'dfid' => '19',
  4332. 'format' => 'F j, Y - H:i',
  4333. 'type' => 'medium',
  4334. 'locked' => '1',
  4335. ))
  4336. ->values(array(
  4337. 'dfid' => '20',
  4338. 'format' => 'j F, Y - H:i',
  4339. 'type' => 'medium',
  4340. 'locked' => '1',
  4341. ))
  4342. ->values(array(
  4343. 'dfid' => '21',
  4344. 'format' => 'Y, F j - H:i',
  4345. 'type' => 'medium',
  4346. 'locked' => '1',
  4347. ))
  4348. ->values(array(
  4349. 'dfid' => '22',
  4350. 'format' => 'D, m/d/Y - g:ia',
  4351. 'type' => 'medium',
  4352. 'locked' => '1',
  4353. ))
  4354. ->values(array(
  4355. 'dfid' => '23',
  4356. 'format' => 'D, d/m/Y - g:ia',
  4357. 'type' => 'medium',
  4358. 'locked' => '1',
  4359. ))
  4360. ->values(array(
  4361. 'dfid' => '24',
  4362. 'format' => 'D, Y/m/d - g:ia',
  4363. 'type' => 'medium',
  4364. 'locked' => '1',
  4365. ))
  4366. ->values(array(
  4367. 'dfid' => '25',
  4368. 'format' => 'F j, Y - g:ia',
  4369. 'type' => 'medium',
  4370. 'locked' => '1',
  4371. ))
  4372. ->values(array(
  4373. 'dfid' => '26',
  4374. 'format' => 'j F Y - g:ia',
  4375. 'type' => 'medium',
  4376. 'locked' => '1',
  4377. ))
  4378. ->values(array(
  4379. 'dfid' => '27',
  4380. 'format' => 'Y, F j - g:ia',
  4381. 'type' => 'medium',
  4382. 'locked' => '1',
  4383. ))
  4384. ->values(array(
  4385. 'dfid' => '28',
  4386. 'format' => 'j. F Y - G:i',
  4387. 'type' => 'medium',
  4388. 'locked' => '1',
  4389. ))
  4390. ->values(array(
  4391. 'dfid' => '29',
  4392. 'format' => 'l, F j, Y - H:i',
  4393. 'type' => 'long',
  4394. 'locked' => '1',
  4395. ))
  4396. ->values(array(
  4397. 'dfid' => '30',
  4398. 'format' => 'l, j F, Y - H:i',
  4399. 'type' => 'long',
  4400. 'locked' => '1',
  4401. ))
  4402. ->values(array(
  4403. 'dfid' => '31',
  4404. 'format' => 'l, Y, F j - H:i',
  4405. 'type' => 'long',
  4406. 'locked' => '1',
  4407. ))
  4408. ->values(array(
  4409. 'dfid' => '32',
  4410. 'format' => 'l, F j, Y - g:ia',
  4411. 'type' => 'long',
  4412. 'locked' => '1',
  4413. ))
  4414. ->values(array(
  4415. 'dfid' => '33',
  4416. 'format' => 'l, j F Y - g:ia',
  4417. 'type' => 'long',
  4418. 'locked' => '1',
  4419. ))
  4420. ->values(array(
  4421. 'dfid' => '34',
  4422. 'format' => 'l, Y, F j - g:ia',
  4423. 'type' => 'long',
  4424. 'locked' => '1',
  4425. ))
  4426. ->values(array(
  4427. 'dfid' => '35',
  4428. 'format' => 'l, j. F Y - G:i',
  4429. 'type' => 'long',
  4430. 'locked' => '1',
  4431. ))
  4432. ->execute();
  4433. $connection->schema()->createTable('event', array(
  4434. 'fields' => array(
  4435. 'nid' => array(
  4436. 'type' => 'int',
  4437. 'not null' => TRUE,
  4438. 'size' => 'normal',
  4439. 'default' => '0',
  4440. 'unsigned' => TRUE,
  4441. ),
  4442. 'event_start' => array(
  4443. 'type' => 'varchar',
  4444. 'not null' => TRUE,
  4445. 'length' => '100',
  4446. ),
  4447. 'event_end' => array(
  4448. 'type' => 'varchar',
  4449. 'not null' => TRUE,
  4450. 'length' => '100',
  4451. ),
  4452. 'timezone' => array(
  4453. 'type' => 'int',
  4454. 'not null' => TRUE,
  4455. 'size' => 'normal',
  4456. 'default' => '0',
  4457. ),
  4458. 'start_in_dst' => array(
  4459. 'type' => 'int',
  4460. 'not null' => TRUE,
  4461. 'size' => 'normal',
  4462. 'default' => '0',
  4463. ),
  4464. 'end_in_dst' => array(
  4465. 'type' => 'int',
  4466. 'not null' => TRUE,
  4467. 'size' => 'normal',
  4468. 'default' => '0',
  4469. ),
  4470. 'has_time' => array(
  4471. 'type' => 'int',
  4472. 'not null' => TRUE,
  4473. 'size' => 'normal',
  4474. 'default' => '1',
  4475. ),
  4476. 'has_end_date' => array(
  4477. 'type' => 'int',
  4478. 'not null' => TRUE,
  4479. 'size' => 'normal',
  4480. 'default' => '1',
  4481. ),
  4482. ),
  4483. 'primary key' => array(
  4484. 'nid',
  4485. ),
  4486. 'mysql_character_set' => 'utf8',
  4487. ));
  4488. $connection->schema()->createTable('event_timezones', array(
  4489. 'fields' => array(
  4490. 'timezone' => array(
  4491. 'type' => 'int',
  4492. 'not null' => TRUE,
  4493. 'size' => 'normal',
  4494. 'default' => '0',
  4495. ),
  4496. 'name' => array(
  4497. 'type' => 'varchar',
  4498. 'not null' => TRUE,
  4499. 'length' => '255',
  4500. 'default' => '',
  4501. ),
  4502. 'offset' => array(
  4503. 'type' => 'varchar',
  4504. 'not null' => TRUE,
  4505. 'length' => '100',
  4506. 'default' => '00:00:00',
  4507. ),
  4508. 'offset_dst' => array(
  4509. 'type' => 'varchar',
  4510. 'not null' => TRUE,
  4511. 'length' => '100',
  4512. 'default' => '00:00:00',
  4513. ),
  4514. 'dst_region' => array(
  4515. 'type' => 'int',
  4516. 'not null' => TRUE,
  4517. 'size' => 'normal',
  4518. 'default' => '0',
  4519. ),
  4520. 'is_dst' => array(
  4521. 'type' => 'int',
  4522. 'not null' => TRUE,
  4523. 'size' => 'normal',
  4524. 'default' => '0',
  4525. ),
  4526. ),
  4527. 'primary key' => array(
  4528. 'timezone',
  4529. ),
  4530. 'mysql_character_set' => 'utf8',
  4531. ));
  4532. $connection->insert('event_timezones')
  4533. ->fields(array(
  4534. 'timezone',
  4535. 'name',
  4536. 'offset',
  4537. 'offset_dst',
  4538. 'dst_region',
  4539. 'is_dst',
  4540. ))
  4541. ->values(array(
  4542. 'timezone' => '1',
  4543. 'name' => 'Africa/Addis Ababa',
  4544. 'offset' => '03:00:00',
  4545. 'offset_dst' => '03:00:00',
  4546. 'dst_region' => '0',
  4547. 'is_dst' => '0',
  4548. ))
  4549. ->values(array(
  4550. 'timezone' => '2',
  4551. 'name' => 'Africa/Algiers',
  4552. 'offset' => '01:00:00',
  4553. 'offset_dst' => '01:00:00',
  4554. 'dst_region' => '0',
  4555. 'is_dst' => '0',
  4556. ))
  4557. ->values(array(
  4558. 'timezone' => '3',
  4559. 'name' => 'Africa/Asmera',
  4560. 'offset' => '03:00:00',
  4561. 'offset_dst' => '03:00:00',
  4562. 'dst_region' => '0',
  4563. 'is_dst' => '0',
  4564. ))
  4565. ->values(array(
  4566. 'timezone' => '4',
  4567. 'name' => 'Africa/Bangui',
  4568. 'offset' => '01:00:00',
  4569. 'offset_dst' => '01:00:00',
  4570. 'dst_region' => '0',
  4571. 'is_dst' => '0',
  4572. ))
  4573. ->values(array(
  4574. 'timezone' => '5',
  4575. 'name' => 'Africa/Blantyre',
  4576. 'offset' => '02:00:00',
  4577. 'offset_dst' => '02:00:00',
  4578. 'dst_region' => '0',
  4579. 'is_dst' => '0',
  4580. ))
  4581. ->values(array(
  4582. 'timezone' => '6',
  4583. 'name' => 'Africa/Brazzaville',
  4584. 'offset' => '01:00:00',
  4585. 'offset_dst' => '01:00:00',
  4586. 'dst_region' => '0',
  4587. 'is_dst' => '0',
  4588. ))
  4589. ->values(array(
  4590. 'timezone' => '7',
  4591. 'name' => 'Africa/Bujumbura',
  4592. 'offset' => '02:00:00',
  4593. 'offset_dst' => '02:00:00',
  4594. 'dst_region' => '0',
  4595. 'is_dst' => '0',
  4596. ))
  4597. ->values(array(
  4598. 'timezone' => '8',
  4599. 'name' => 'Africa/Cairo',
  4600. 'offset' => '02:00:00',
  4601. 'offset_dst' => '03:00:00',
  4602. 'dst_region' => '1',
  4603. 'is_dst' => '0',
  4604. ))
  4605. ->values(array(
  4606. 'timezone' => '9',
  4607. 'name' => 'Africa/Ceuta',
  4608. 'offset' => '01:00:00',
  4609. 'offset_dst' => '02:00:00',
  4610. 'dst_region' => '1',
  4611. 'is_dst' => '0',
  4612. ))
  4613. ->values(array(
  4614. 'timezone' => '10',
  4615. 'name' => 'Africa/Dar es Salaam',
  4616. 'offset' => '03:00:00',
  4617. 'offset_dst' => '03:00:00',
  4618. 'dst_region' => '0',
  4619. 'is_dst' => '0',
  4620. ))
  4621. ->values(array(
  4622. 'timezone' => '11',
  4623. 'name' => 'Africa/Djibouti',
  4624. 'offset' => '03:00:00',
  4625. 'offset_dst' => '03:00:00',
  4626. 'dst_region' => '0',
  4627. 'is_dst' => '0',
  4628. ))
  4629. ->values(array(
  4630. 'timezone' => '12',
  4631. 'name' => 'Africa/Douala',
  4632. 'offset' => '01:00:00',
  4633. 'offset_dst' => '01:00:00',
  4634. 'dst_region' => '0',
  4635. 'is_dst' => '0',
  4636. ))
  4637. ->values(array(
  4638. 'timezone' => '13',
  4639. 'name' => 'Africa/Gaborone',
  4640. 'offset' => '02:00:00',
  4641. 'offset_dst' => '02:00:00',
  4642. 'dst_region' => '0',
  4643. 'is_dst' => '0',
  4644. ))
  4645. ->values(array(
  4646. 'timezone' => '14',
  4647. 'name' => 'Africa/Harare',
  4648. 'offset' => '02:00:00',
  4649. 'offset_dst' => '02:00:00',
  4650. 'dst_region' => '0',
  4651. 'is_dst' => '0',
  4652. ))
  4653. ->values(array(
  4654. 'timezone' => '15',
  4655. 'name' => 'Africa/Johannesburg',
  4656. 'offset' => '02:00:00',
  4657. 'offset_dst' => '02:00:00',
  4658. 'dst_region' => '0',
  4659. 'is_dst' => '0',
  4660. ))
  4661. ->values(array(
  4662. 'timezone' => '16',
  4663. 'name' => 'Africa/Kampala',
  4664. 'offset' => '03:00:00',
  4665. 'offset_dst' => '03:00:00',
  4666. 'dst_region' => '0',
  4667. 'is_dst' => '0',
  4668. ))
  4669. ->values(array(
  4670. 'timezone' => '17',
  4671. 'name' => 'Africa/Khartoum',
  4672. 'offset' => '03:00:00',
  4673. 'offset_dst' => '03:00:00',
  4674. 'dst_region' => '0',
  4675. 'is_dst' => '0',
  4676. ))
  4677. ->values(array(
  4678. 'timezone' => '18',
  4679. 'name' => 'Africa/Kigali',
  4680. 'offset' => '02:00:00',
  4681. 'offset_dst' => '02:00:00',
  4682. 'dst_region' => '0',
  4683. 'is_dst' => '0',
  4684. ))
  4685. ->values(array(
  4686. 'timezone' => '19',
  4687. 'name' => 'Africa/Kinshasa',
  4688. 'offset' => '01:00:00',
  4689. 'offset_dst' => '01:00:00',
  4690. 'dst_region' => '0',
  4691. 'is_dst' => '0',
  4692. ))
  4693. ->values(array(
  4694. 'timezone' => '20',
  4695. 'name' => 'Africa/Lagos',
  4696. 'offset' => '01:00:00',
  4697. 'offset_dst' => '01:00:00',
  4698. 'dst_region' => '0',
  4699. 'is_dst' => '0',
  4700. ))
  4701. ->values(array(
  4702. 'timezone' => '21',
  4703. 'name' => 'Africa/Libreville',
  4704. 'offset' => '01:00:00',
  4705. 'offset_dst' => '01:00:00',
  4706. 'dst_region' => '0',
  4707. 'is_dst' => '0',
  4708. ))
  4709. ->values(array(
  4710. 'timezone' => '22',
  4711. 'name' => 'Africa/Luanda',
  4712. 'offset' => '01:00:00',
  4713. 'offset_dst' => '01:00:00',
  4714. 'dst_region' => '0',
  4715. 'is_dst' => '0',
  4716. ))
  4717. ->values(array(
  4718. 'timezone' => '23',
  4719. 'name' => 'Africa/Lubumbashi',
  4720. 'offset' => '02:00:00',
  4721. 'offset_dst' => '02:00:00',
  4722. 'dst_region' => '0',
  4723. 'is_dst' => '0',
  4724. ))
  4725. ->values(array(
  4726. 'timezone' => '24',
  4727. 'name' => 'Africa/Lusaka',
  4728. 'offset' => '02:00:00',
  4729. 'offset_dst' => '02:00:00',
  4730. 'dst_region' => '0',
  4731. 'is_dst' => '0',
  4732. ))
  4733. ->values(array(
  4734. 'timezone' => '25',
  4735. 'name' => 'Africa/Malabo',
  4736. 'offset' => '01:00:00',
  4737. 'offset_dst' => '01:00:00',
  4738. 'dst_region' => '0',
  4739. 'is_dst' => '0',
  4740. ))
  4741. ->values(array(
  4742. 'timezone' => '26',
  4743. 'name' => 'Africa/Maputo',
  4744. 'offset' => '02:00:00',
  4745. 'offset_dst' => '02:00:00',
  4746. 'dst_region' => '0',
  4747. 'is_dst' => '0',
  4748. ))
  4749. ->values(array(
  4750. 'timezone' => '27',
  4751. 'name' => 'Africa/Maseru',
  4752. 'offset' => '02:00:00',
  4753. 'offset_dst' => '02:00:00',
  4754. 'dst_region' => '0',
  4755. 'is_dst' => '0',
  4756. ))
  4757. ->values(array(
  4758. 'timezone' => '28',
  4759. 'name' => 'Africa/Mbabane',
  4760. 'offset' => '02:00:00',
  4761. 'offset_dst' => '02:00:00',
  4762. 'dst_region' => '0',
  4763. 'is_dst' => '0',
  4764. ))
  4765. ->values(array(
  4766. 'timezone' => '29',
  4767. 'name' => 'Africa/Mogadishu',
  4768. 'offset' => '03:00:00',
  4769. 'offset_dst' => '03:00:00',
  4770. 'dst_region' => '0',
  4771. 'is_dst' => '0',
  4772. ))
  4773. ->values(array(
  4774. 'timezone' => '30',
  4775. 'name' => 'Africa/Nairobi',
  4776. 'offset' => '03:00:00',
  4777. 'offset_dst' => '03:00:00',
  4778. 'dst_region' => '0',
  4779. 'is_dst' => '0',
  4780. ))
  4781. ->values(array(
  4782. 'timezone' => '31',
  4783. 'name' => 'Africa/Ndjamena',
  4784. 'offset' => '01:00:00',
  4785. 'offset_dst' => '01:00:00',
  4786. 'dst_region' => '0',
  4787. 'is_dst' => '0',
  4788. ))
  4789. ->values(array(
  4790. 'timezone' => '32',
  4791. 'name' => 'Africa/Niamey',
  4792. 'offset' => '01:00:00',
  4793. 'offset_dst' => '01:00:00',
  4794. 'dst_region' => '0',
  4795. 'is_dst' => '0',
  4796. ))
  4797. ->values(array(
  4798. 'timezone' => '33',
  4799. 'name' => 'Africa/Porto-Novo',
  4800. 'offset' => '01:00:00',
  4801. 'offset_dst' => '01:00:00',
  4802. 'dst_region' => '0',
  4803. 'is_dst' => '0',
  4804. ))
  4805. ->values(array(
  4806. 'timezone' => '34',
  4807. 'name' => 'Africa/Tripoli',
  4808. 'offset' => '02:00:00',
  4809. 'offset_dst' => '02:00:00',
  4810. 'dst_region' => '0',
  4811. 'is_dst' => '0',
  4812. ))
  4813. ->values(array(
  4814. 'timezone' => '35',
  4815. 'name' => 'Africa/Tunis',
  4816. 'offset' => '01:00:00',
  4817. 'offset_dst' => '01:00:00',
  4818. 'dst_region' => '0',
  4819. 'is_dst' => '0',
  4820. ))
  4821. ->values(array(
  4822. 'timezone' => '36',
  4823. 'name' => 'Africa/Windhoek',
  4824. 'offset' => '02:00:00',
  4825. 'offset_dst' => '01:00:00',
  4826. 'dst_region' => '2',
  4827. 'is_dst' => '0',
  4828. ))
  4829. ->values(array(
  4830. 'timezone' => '37',
  4831. 'name' => 'America/Adak',
  4832. 'offset' => '-10:00:00',
  4833. 'offset_dst' => '-09:00:00',
  4834. 'dst_region' => '15',
  4835. 'is_dst' => '0',
  4836. ))
  4837. ->values(array(
  4838. 'timezone' => '38',
  4839. 'name' => 'America/Anchorage',
  4840. 'offset' => '-09:00:00',
  4841. 'offset_dst' => '-08:00:00',
  4842. 'dst_region' => '15',
  4843. 'is_dst' => '0',
  4844. ))
  4845. ->values(array(
  4846. 'timezone' => '39',
  4847. 'name' => 'America/Anguilla',
  4848. 'offset' => '-04:00:00',
  4849. 'offset_dst' => '-04:00:00',
  4850. 'dst_region' => '0',
  4851. 'is_dst' => '0',
  4852. ))
  4853. ->values(array(
  4854. 'timezone' => '40',
  4855. 'name' => 'America/Antigua',
  4856. 'offset' => '-04:00:00',
  4857. 'offset_dst' => '-04:00:00',
  4858. 'dst_region' => '0',
  4859. 'is_dst' => '0',
  4860. ))
  4861. ->values(array(
  4862. 'timezone' => '41',
  4863. 'name' => 'America/Araguaina',
  4864. 'offset' => '-02:00:00',
  4865. 'offset_dst' => '-03:00:00',
  4866. 'dst_region' => '17',
  4867. 'is_dst' => '0',
  4868. ))
  4869. ->values(array(
  4870. 'timezone' => '42',
  4871. 'name' => 'America/Aruba',
  4872. 'offset' => '-04:00:00',
  4873. 'offset_dst' => '-04:00:00',
  4874. 'dst_region' => '0',
  4875. 'is_dst' => '0',
  4876. ))
  4877. ->values(array(
  4878. 'timezone' => '43',
  4879. 'name' => 'America/Asuncion',
  4880. 'offset' => '-03:00:00',
  4881. 'offset_dst' => '-04:00:00',
  4882. 'dst_region' => '20',
  4883. 'is_dst' => '0',
  4884. ))
  4885. ->values(array(
  4886. 'timezone' => '44',
  4887. 'name' => 'America/Atka',
  4888. 'offset' => '-10:00:00',
  4889. 'offset_dst' => '-09:00:00',
  4890. 'dst_region' => '15',
  4891. 'is_dst' => '0',
  4892. ))
  4893. ->values(array(
  4894. 'timezone' => '45',
  4895. 'name' => 'America/Barbados',
  4896. 'offset' => '-04:00:00',
  4897. 'offset_dst' => '-04:00:00',
  4898. 'dst_region' => '0',
  4899. 'is_dst' => '0',
  4900. ))
  4901. ->values(array(
  4902. 'timezone' => '46',
  4903. 'name' => 'America/Belem',
  4904. 'offset' => '-03:00:00',
  4905. 'offset_dst' => '-03:00:00',
  4906. 'dst_region' => '0',
  4907. 'is_dst' => '0',
  4908. ))
  4909. ->values(array(
  4910. 'timezone' => '47',
  4911. 'name' => 'America/Belize',
  4912. 'offset' => '-06:00:00',
  4913. 'offset_dst' => '-06:00:00',
  4914. 'dst_region' => '0',
  4915. 'is_dst' => '0',
  4916. ))
  4917. ->values(array(
  4918. 'timezone' => '48',
  4919. 'name' => 'America/Boa Vista',
  4920. 'offset' => '-04:00:00',
  4921. 'offset_dst' => '-04:00:00',
  4922. 'dst_region' => '0',
  4923. 'is_dst' => '0',
  4924. ))
  4925. ->values(array(
  4926. 'timezone' => '49',
  4927. 'name' => 'America/Bogota',
  4928. 'offset' => '-05:00:00',
  4929. 'offset_dst' => '-05:00:00',
  4930. 'dst_region' => '0',
  4931. 'is_dst' => '0',
  4932. ))
  4933. ->values(array(
  4934. 'timezone' => '50',
  4935. 'name' => 'America/Boise',
  4936. 'offset' => '-07:00:00',
  4937. 'offset_dst' => '-06:00:00',
  4938. 'dst_region' => '15',
  4939. 'is_dst' => '0',
  4940. ))
  4941. ->values(array(
  4942. 'timezone' => '51',
  4943. 'name' => 'America/Buenos Aires',
  4944. 'offset' => '-03:00:00',
  4945. 'offset_dst' => '-03:00:00',
  4946. 'dst_region' => '0',
  4947. 'is_dst' => '0',
  4948. ))
  4949. ->values(array(
  4950. 'timezone' => '52',
  4951. 'name' => 'America/Cambridge Bay',
  4952. 'offset' => '-07:00:00',
  4953. 'offset_dst' => '-06:00:00',
  4954. 'dst_region' => '15',
  4955. 'is_dst' => '0',
  4956. ))
  4957. ->values(array(
  4958. 'timezone' => '53',
  4959. 'name' => 'America/Cancun',
  4960. 'offset' => '-06:00:00',
  4961. 'offset_dst' => '-05:00:00',
  4962. 'dst_region' => '15',
  4963. 'is_dst' => '0',
  4964. ))
  4965. ->values(array(
  4966. 'timezone' => '54',
  4967. 'name' => 'America/Caracas',
  4968. 'offset' => '-04:00:00',
  4969. 'offset_dst' => '-04:00:00',
  4970. 'dst_region' => '0',
  4971. 'is_dst' => '0',
  4972. ))
  4973. ->values(array(
  4974. 'timezone' => '55',
  4975. 'name' => 'America/Catamarca',
  4976. 'offset' => '-03:00:00',
  4977. 'offset_dst' => '-03:00:00',
  4978. 'dst_region' => '0',
  4979. 'is_dst' => '0',
  4980. ))
  4981. ->values(array(
  4982. 'timezone' => '56',
  4983. 'name' => 'America/Cayenne',
  4984. 'offset' => '-03:00:00',
  4985. 'offset_dst' => '-03:00:00',
  4986. 'dst_region' => '0',
  4987. 'is_dst' => '0',
  4988. ))
  4989. ->values(array(
  4990. 'timezone' => '57',
  4991. 'name' => 'America/Cayman',
  4992. 'offset' => '-05:00:00',
  4993. 'offset_dst' => '-05:00:00',
  4994. 'dst_region' => '0',
  4995. 'is_dst' => '0',
  4996. ))
  4997. ->values(array(
  4998. 'timezone' => '58',
  4999. 'name' => 'America/Chicago',
  5000. 'offset' => '-06:00:00',
  5001. 'offset_dst' => '-05:00:00',
  5002. 'dst_region' => '15',
  5003. 'is_dst' => '0',
  5004. ))
  5005. ->values(array(
  5006. 'timezone' => '59',
  5007. 'name' => 'America/Chihuahua',
  5008. 'offset' => '-07:00:00',
  5009. 'offset_dst' => '-06:00:00',
  5010. 'dst_region' => '15',
  5011. 'is_dst' => '0',
  5012. ))
  5013. ->values(array(
  5014. 'timezone' => '60',
  5015. 'name' => 'America/Cordoba',
  5016. 'offset' => '-03:00:00',
  5017. 'offset_dst' => '-03:00:00',
  5018. 'dst_region' => '0',
  5019. 'is_dst' => '0',
  5020. ))
  5021. ->values(array(
  5022. 'timezone' => '61',
  5023. 'name' => 'America/Costa Rica',
  5024. 'offset' => '-06:00:00',
  5025. 'offset_dst' => '-06:00:00',
  5026. 'dst_region' => '0',
  5027. 'is_dst' => '0',
  5028. ))
  5029. ->values(array(
  5030. 'timezone' => '62',
  5031. 'name' => 'America/Cuiaba',
  5032. 'offset' => '-03:00:00',
  5033. 'offset_dst' => '-04:00:00',
  5034. 'dst_region' => '17',
  5035. 'is_dst' => '0',
  5036. ))
  5037. ->values(array(
  5038. 'timezone' => '63',
  5039. 'name' => 'America/Curacao',
  5040. 'offset' => '-04:00:00',
  5041. 'offset_dst' => '-04:00:00',
  5042. 'dst_region' => '0',
  5043. 'is_dst' => '0',
  5044. ))
  5045. ->values(array(
  5046. 'timezone' => '64',
  5047. 'name' => 'America/Dawson',
  5048. 'offset' => '-08:00:00',
  5049. 'offset_dst' => '-07:00:00',
  5050. 'dst_region' => '15',
  5051. 'is_dst' => '0',
  5052. ))
  5053. ->values(array(
  5054. 'timezone' => '65',
  5055. 'name' => 'America/Dawson Creek',
  5056. 'offset' => '-07:00:00',
  5057. 'offset_dst' => '-07:00:00',
  5058. 'dst_region' => '0',
  5059. 'is_dst' => '0',
  5060. ))
  5061. ->values(array(
  5062. 'timezone' => '66',
  5063. 'name' => 'America/Denver',
  5064. 'offset' => '-07:00:00',
  5065. 'offset_dst' => '-06:00:00',
  5066. 'dst_region' => '15',
  5067. 'is_dst' => '0',
  5068. ))
  5069. ->values(array(
  5070. 'timezone' => '67',
  5071. 'name' => 'America/Detroit',
  5072. 'offset' => '-05:00:00',
  5073. 'offset_dst' => '-04:00:00',
  5074. 'dst_region' => '15',
  5075. 'is_dst' => '0',
  5076. ))
  5077. ->values(array(
  5078. 'timezone' => '68',
  5079. 'name' => 'America/Dominica',
  5080. 'offset' => '-04:00:00',
  5081. 'offset_dst' => '-04:00:00',
  5082. 'dst_region' => '0',
  5083. 'is_dst' => '0',
  5084. ))
  5085. ->values(array(
  5086. 'timezone' => '69',
  5087. 'name' => 'America/Edmonton',
  5088. 'offset' => '-07:00:00',
  5089. 'offset_dst' => '-06:00:00',
  5090. 'dst_region' => '15',
  5091. 'is_dst' => '0',
  5092. ))
  5093. ->values(array(
  5094. 'timezone' => '70',
  5095. 'name' => 'America/Eirunepe',
  5096. 'offset' => '-05:00:00',
  5097. 'offset_dst' => '-05:00:00',
  5098. 'dst_region' => '0',
  5099. 'is_dst' => '0',
  5100. ))
  5101. ->values(array(
  5102. 'timezone' => '71',
  5103. 'name' => 'America/El Salvador',
  5104. 'offset' => '-06:00:00',
  5105. 'offset_dst' => '-06:00:00',
  5106. 'dst_region' => '0',
  5107. 'is_dst' => '0',
  5108. ))
  5109. ->values(array(
  5110. 'timezone' => '72',
  5111. 'name' => 'America/Ensenada',
  5112. 'offset' => '-08:00:00',
  5113. 'offset_dst' => '-07:00:00',
  5114. 'dst_region' => '15',
  5115. 'is_dst' => '0',
  5116. ))
  5117. ->values(array(
  5118. 'timezone' => '73',
  5119. 'name' => 'America/Fort Wayne',
  5120. 'offset' => '-05:00:00',
  5121. 'offset_dst' => '-05:00:00',
  5122. 'dst_region' => '0',
  5123. 'is_dst' => '0',
  5124. ))
  5125. ->values(array(
  5126. 'timezone' => '74',
  5127. 'name' => 'America/Fortaleza',
  5128. 'offset' => '-03:00:00',
  5129. 'offset_dst' => '-03:00:00',
  5130. 'dst_region' => '0',
  5131. 'is_dst' => '0',
  5132. ))
  5133. ->values(array(
  5134. 'timezone' => '75',
  5135. 'name' => 'America/Glace Bay',
  5136. 'offset' => '-04:00:00',
  5137. 'offset_dst' => '-03:00:00',
  5138. 'dst_region' => '15',
  5139. 'is_dst' => '0',
  5140. ))
  5141. ->values(array(
  5142. 'timezone' => '76',
  5143. 'name' => 'America/Godthab',
  5144. 'offset' => '-03:00:00',
  5145. 'offset_dst' => '-02:00:00',
  5146. 'dst_region' => '15',
  5147. 'is_dst' => '0',
  5148. ))
  5149. ->values(array(
  5150. 'timezone' => '77',
  5151. 'name' => 'America/Goose Bay',
  5152. 'offset' => '-04:00:00',
  5153. 'offset_dst' => '-03:00:00',
  5154. 'dst_region' => '15',
  5155. 'is_dst' => '0',
  5156. ))
  5157. ->values(array(
  5158. 'timezone' => '78',
  5159. 'name' => 'America/Grand Turk',
  5160. 'offset' => '-05:00:00',
  5161. 'offset_dst' => '-04:00:00',
  5162. 'dst_region' => '16',
  5163. 'is_dst' => '0',
  5164. ))
  5165. ->values(array(
  5166. 'timezone' => '79',
  5167. 'name' => 'America/Grenada',
  5168. 'offset' => '-04:00:00',
  5169. 'offset_dst' => '-04:00:00',
  5170. 'dst_region' => '0',
  5171. 'is_dst' => '0',
  5172. ))
  5173. ->values(array(
  5174. 'timezone' => '80',
  5175. 'name' => 'America/Guadeloupe',
  5176. 'offset' => '-04:00:00',
  5177. 'offset_dst' => '-04:00:00',
  5178. 'dst_region' => '0',
  5179. 'is_dst' => '0',
  5180. ))
  5181. ->values(array(
  5182. 'timezone' => '81',
  5183. 'name' => 'America/Guatemala',
  5184. 'offset' => '-06:00:00',
  5185. 'offset_dst' => '-06:00:00',
  5186. 'dst_region' => '0',
  5187. 'is_dst' => '0',
  5188. ))
  5189. ->values(array(
  5190. 'timezone' => '82',
  5191. 'name' => 'America/Guayaquil',
  5192. 'offset' => '-05:00:00',
  5193. 'offset_dst' => '-05:00:00',
  5194. 'dst_region' => '0',
  5195. 'is_dst' => '0',
  5196. ))
  5197. ->values(array(
  5198. 'timezone' => '83',
  5199. 'name' => 'America/Guyana',
  5200. 'offset' => '-04:00:00',
  5201. 'offset_dst' => '-04:00:00',
  5202. 'dst_region' => '0',
  5203. 'is_dst' => '0',
  5204. ))
  5205. ->values(array(
  5206. 'timezone' => '84',
  5207. 'name' => 'America/Halifax',
  5208. 'offset' => '-04:00:00',
  5209. 'offset_dst' => '-03:00:00',
  5210. 'dst_region' => '15',
  5211. 'is_dst' => '0',
  5212. ))
  5213. ->values(array(
  5214. 'timezone' => '85',
  5215. 'name' => 'America/Havana',
  5216. 'offset' => '-05:00:00',
  5217. 'offset_dst' => '-04:00:00',
  5218. 'dst_region' => '16',
  5219. 'is_dst' => '0',
  5220. ))
  5221. ->values(array(
  5222. 'timezone' => '86',
  5223. 'name' => 'America/Hermosillo',
  5224. 'offset' => '-07:00:00',
  5225. 'offset_dst' => '-07:00:00',
  5226. 'dst_region' => '0',
  5227. 'is_dst' => '0',
  5228. ))
  5229. ->values(array(
  5230. 'timezone' => '87',
  5231. 'name' => 'America/Indiana/Indianapolis',
  5232. 'offset' => '-05:00:00',
  5233. 'offset_dst' => '-05:00:00',
  5234. 'dst_region' => '0',
  5235. 'is_dst' => '0',
  5236. ))
  5237. ->values(array(
  5238. 'timezone' => '88',
  5239. 'name' => 'America/Indiana/Knox',
  5240. 'offset' => '-05:00:00',
  5241. 'offset_dst' => '-05:00:00',
  5242. 'dst_region' => '0',
  5243. 'is_dst' => '0',
  5244. ))
  5245. ->values(array(
  5246. 'timezone' => '89',
  5247. 'name' => 'America/Indiana/Marengo',
  5248. 'offset' => '-05:00:00',
  5249. 'offset_dst' => '-05:00:00',
  5250. 'dst_region' => '0',
  5251. 'is_dst' => '0',
  5252. ))
  5253. ->values(array(
  5254. 'timezone' => '90',
  5255. 'name' => 'America/Indiana/Vevay',
  5256. 'offset' => '-05:00:00',
  5257. 'offset_dst' => '-05:00:00',
  5258. 'dst_region' => '0',
  5259. 'is_dst' => '0',
  5260. ))
  5261. ->values(array(
  5262. 'timezone' => '91',
  5263. 'name' => 'America/Indianapolis',
  5264. 'offset' => '-05:00:00',
  5265. 'offset_dst' => '-05:00:00',
  5266. 'dst_region' => '0',
  5267. 'is_dst' => '0',
  5268. ))
  5269. ->values(array(
  5270. 'timezone' => '92',
  5271. 'name' => 'America/Inuvik',
  5272. 'offset' => '-07:00:00',
  5273. 'offset_dst' => '-06:00:00',
  5274. 'dst_region' => '15',
  5275. 'is_dst' => '0',
  5276. ))
  5277. ->values(array(
  5278. 'timezone' => '93',
  5279. 'name' => 'America/Iqaluit',
  5280. 'offset' => '-05:00:00',
  5281. 'offset_dst' => '-04:00:00',
  5282. 'dst_region' => '15',
  5283. 'is_dst' => '0',
  5284. ))
  5285. ->values(array(
  5286. 'timezone' => '94',
  5287. 'name' => 'America/Jamaica',
  5288. 'offset' => '-05:00:00',
  5289. 'offset_dst' => '-05:00:00',
  5290. 'dst_region' => '0',
  5291. 'is_dst' => '0',
  5292. ))
  5293. ->values(array(
  5294. 'timezone' => '95',
  5295. 'name' => 'America/Jujuy',
  5296. 'offset' => '-03:00:00',
  5297. 'offset_dst' => '-03:00:00',
  5298. 'dst_region' => '0',
  5299. 'is_dst' => '0',
  5300. ))
  5301. ->values(array(
  5302. 'timezone' => '96',
  5303. 'name' => 'America/Juneau',
  5304. 'offset' => '-09:00:00',
  5305. 'offset_dst' => '-08:00:00',
  5306. 'dst_region' => '15',
  5307. 'is_dst' => '0',
  5308. ))
  5309. ->values(array(
  5310. 'timezone' => '97',
  5311. 'name' => 'America/Kentucky/Louisville',
  5312. 'offset' => '-05:00:00',
  5313. 'offset_dst' => '-04:00:00',
  5314. 'dst_region' => '15',
  5315. 'is_dst' => '0',
  5316. ))
  5317. ->values(array(
  5318. 'timezone' => '98',
  5319. 'name' => 'America/Kentucky/Monticello',
  5320. 'offset' => '-05:00:00',
  5321. 'offset_dst' => '-04:00:00',
  5322. 'dst_region' => '15',
  5323. 'is_dst' => '0',
  5324. ))
  5325. ->values(array(
  5326. 'timezone' => '99',
  5327. 'name' => 'America/Knox IN',
  5328. 'offset' => '-05:00:00',
  5329. 'offset_dst' => '-05:00:00',
  5330. 'dst_region' => '0',
  5331. 'is_dst' => '0',
  5332. ))
  5333. ->values(array(
  5334. 'timezone' => '100',
  5335. 'name' => 'America/La Paz',
  5336. 'offset' => '-04:00:00',
  5337. 'offset_dst' => '-04:00:00',
  5338. 'dst_region' => '0',
  5339. 'is_dst' => '0',
  5340. ))
  5341. ->values(array(
  5342. 'timezone' => '101',
  5343. 'name' => 'America/Lima',
  5344. 'offset' => '-05:00:00',
  5345. 'offset_dst' => '-05:00:00',
  5346. 'dst_region' => '0',
  5347. 'is_dst' => '0',
  5348. ))
  5349. ->values(array(
  5350. 'timezone' => '102',
  5351. 'name' => 'America/Los Angeles',
  5352. 'offset' => '-08:00:00',
  5353. 'offset_dst' => '-07:00:00',
  5354. 'dst_region' => '15',
  5355. 'is_dst' => '0',
  5356. ))
  5357. ->values(array(
  5358. 'timezone' => '103',
  5359. 'name' => 'America/Louisville',
  5360. 'offset' => '-05:00:00',
  5361. 'offset_dst' => '-04:00:00',
  5362. 'dst_region' => '15',
  5363. 'is_dst' => '0',
  5364. ))
  5365. ->values(array(
  5366. 'timezone' => '104',
  5367. 'name' => 'America/Maceio',
  5368. 'offset' => '-03:00:00',
  5369. 'offset_dst' => '-03:00:00',
  5370. 'dst_region' => '0',
  5371. 'is_dst' => '0',
  5372. ))
  5373. ->values(array(
  5374. 'timezone' => '105',
  5375. 'name' => 'America/Managua',
  5376. 'offset' => '-06:00:00',
  5377. 'offset_dst' => '-06:00:00',
  5378. 'dst_region' => '0',
  5379. 'is_dst' => '0',
  5380. ))
  5381. ->values(array(
  5382. 'timezone' => '106',
  5383. 'name' => 'America/Manaus',
  5384. 'offset' => '-04:00:00',
  5385. 'offset_dst' => '-04:00:00',
  5386. 'dst_region' => '0',
  5387. 'is_dst' => '0',
  5388. ))
  5389. ->values(array(
  5390. 'timezone' => '107',
  5391. 'name' => 'America/Martinique',
  5392. 'offset' => '-04:00:00',
  5393. 'offset_dst' => '-04:00:00',
  5394. 'dst_region' => '0',
  5395. 'is_dst' => '0',
  5396. ))
  5397. ->values(array(
  5398. 'timezone' => '108',
  5399. 'name' => 'America/Mazatlan',
  5400. 'offset' => '-07:00:00',
  5401. 'offset_dst' => '-06:00:00',
  5402. 'dst_region' => '15',
  5403. 'is_dst' => '0',
  5404. ))
  5405. ->values(array(
  5406. 'timezone' => '109',
  5407. 'name' => 'America/Mendoza',
  5408. 'offset' => '-03:00:00',
  5409. 'offset_dst' => '-03:00:00',
  5410. 'dst_region' => '0',
  5411. 'is_dst' => '0',
  5412. ))
  5413. ->values(array(
  5414. 'timezone' => '110',
  5415. 'name' => 'America/Menominee',
  5416. 'offset' => '-06:00:00',
  5417. 'offset_dst' => '-05:00:00',
  5418. 'dst_region' => '15',
  5419. 'is_dst' => '0',
  5420. ))
  5421. ->values(array(
  5422. 'timezone' => '111',
  5423. 'name' => 'America/Merida',
  5424. 'offset' => '-06:00:00',
  5425. 'offset_dst' => '-05:00:00',
  5426. 'dst_region' => '15',
  5427. 'is_dst' => '0',
  5428. ))
  5429. ->values(array(
  5430. 'timezone' => '112',
  5431. 'name' => 'America/Mexico City',
  5432. 'offset' => '-06:00:00',
  5433. 'offset_dst' => '-05:00:00',
  5434. 'dst_region' => '15',
  5435. 'is_dst' => '0',
  5436. ))
  5437. ->values(array(
  5438. 'timezone' => '113',
  5439. 'name' => 'America/Miquelon',
  5440. 'offset' => '-03:00:00',
  5441. 'offset_dst' => '-02:00:00',
  5442. 'dst_region' => '15',
  5443. 'is_dst' => '0',
  5444. ))
  5445. ->values(array(
  5446. 'timezone' => '114',
  5447. 'name' => 'America/Monterrey',
  5448. 'offset' => '-06:00:00',
  5449. 'offset_dst' => '-05:00:00',
  5450. 'dst_region' => '15',
  5451. 'is_dst' => '0',
  5452. ))
  5453. ->values(array(
  5454. 'timezone' => '115',
  5455. 'name' => 'America/Montevideo',
  5456. 'offset' => '-03:00:00',
  5457. 'offset_dst' => '-03:00:00',
  5458. 'dst_region' => '0',
  5459. 'is_dst' => '0',
  5460. ))
  5461. ->values(array(
  5462. 'timezone' => '116',
  5463. 'name' => 'America/Montreal',
  5464. 'offset' => '-05:00:00',
  5465. 'offset_dst' => '-04:00:00',
  5466. 'dst_region' => '15',
  5467. 'is_dst' => '0',
  5468. ))
  5469. ->values(array(
  5470. 'timezone' => '117',
  5471. 'name' => 'America/Montserrat',
  5472. 'offset' => '-04:00:00',
  5473. 'offset_dst' => '-04:00:00',
  5474. 'dst_region' => '0',
  5475. 'is_dst' => '0',
  5476. ))
  5477. ->values(array(
  5478. 'timezone' => '118',
  5479. 'name' => 'America/Nassau',
  5480. 'offset' => '-05:00:00',
  5481. 'offset_dst' => '-04:00:00',
  5482. 'dst_region' => '15',
  5483. 'is_dst' => '0',
  5484. ))
  5485. ->values(array(
  5486. 'timezone' => '119',
  5487. 'name' => 'America/New York',
  5488. 'offset' => '-05:00:00',
  5489. 'offset_dst' => '-04:00:00',
  5490. 'dst_region' => '15',
  5491. 'is_dst' => '0',
  5492. ))
  5493. ->values(array(
  5494. 'timezone' => '120',
  5495. 'name' => 'America/Nipigon',
  5496. 'offset' => '-05:00:00',
  5497. 'offset_dst' => '-04:00:00',
  5498. 'dst_region' => '15',
  5499. 'is_dst' => '0',
  5500. ))
  5501. ->values(array(
  5502. 'timezone' => '121',
  5503. 'name' => 'America/Nome',
  5504. 'offset' => '-09:00:00',
  5505. 'offset_dst' => '-08:00:00',
  5506. 'dst_region' => '15',
  5507. 'is_dst' => '0',
  5508. ))
  5509. ->values(array(
  5510. 'timezone' => '122',
  5511. 'name' => 'America/Noronha',
  5512. 'offset' => '-02:00:00',
  5513. 'offset_dst' => '-02:00:00',
  5514. 'dst_region' => '0',
  5515. 'is_dst' => '0',
  5516. ))
  5517. ->values(array(
  5518. 'timezone' => '123',
  5519. 'name' => 'America/Panama',
  5520. 'offset' => '-05:00:00',
  5521. 'offset_dst' => '-05:00:00',
  5522. 'dst_region' => '0',
  5523. 'is_dst' => '0',
  5524. ))
  5525. ->values(array(
  5526. 'timezone' => '124',
  5527. 'name' => 'America/Pangnirtung',
  5528. 'offset' => '-05:00:00',
  5529. 'offset_dst' => '-04:00:00',
  5530. 'dst_region' => '15',
  5531. 'is_dst' => '0',
  5532. ))
  5533. ->values(array(
  5534. 'timezone' => '125',
  5535. 'name' => 'America/Paramaribo',
  5536. 'offset' => '-03:00:00',
  5537. 'offset_dst' => '-03:00:00',
  5538. 'dst_region' => '0',
  5539. 'is_dst' => '0',
  5540. ))
  5541. ->values(array(
  5542. 'timezone' => '126',
  5543. 'name' => 'America/Phoenix',
  5544. 'offset' => '-07:00:00',
  5545. 'offset_dst' => '-07:00:00',
  5546. 'dst_region' => '0',
  5547. 'is_dst' => '0',
  5548. ))
  5549. ->values(array(
  5550. 'timezone' => '127',
  5551. 'name' => 'America/Port-au-Prince',
  5552. 'offset' => '-05:00:00',
  5553. 'offset_dst' => '-05:00:00',
  5554. 'dst_region' => '0',
  5555. 'is_dst' => '0',
  5556. ))
  5557. ->values(array(
  5558. 'timezone' => '128',
  5559. 'name' => 'America/Port of Spain',
  5560. 'offset' => '-04:00:00',
  5561. 'offset_dst' => '-04:00:00',
  5562. 'dst_region' => '0',
  5563. 'is_dst' => '0',
  5564. ))
  5565. ->values(array(
  5566. 'timezone' => '129',
  5567. 'name' => 'America/Porto Acre',
  5568. 'offset' => '-05:00:00',
  5569. 'offset_dst' => '-05:00:00',
  5570. 'dst_region' => '0',
  5571. 'is_dst' => '0',
  5572. ))
  5573. ->values(array(
  5574. 'timezone' => '130',
  5575. 'name' => 'America/Porto Velho',
  5576. 'offset' => '-04:00:00',
  5577. 'offset_dst' => '-04:00:00',
  5578. 'dst_region' => '0',
  5579. 'is_dst' => '0',
  5580. ))
  5581. ->values(array(
  5582. 'timezone' => '131',
  5583. 'name' => 'America/Puerto Rico',
  5584. 'offset' => '-04:00:00',
  5585. 'offset_dst' => '-04:00:00',
  5586. 'dst_region' => '0',
  5587. 'is_dst' => '0',
  5588. ))
  5589. ->values(array(
  5590. 'timezone' => '132',
  5591. 'name' => 'America/Rainy River',
  5592. 'offset' => '-06:00:00',
  5593. 'offset_dst' => '-05:00:00',
  5594. 'dst_region' => '15',
  5595. 'is_dst' => '0',
  5596. ))
  5597. ->values(array(
  5598. 'timezone' => '133',
  5599. 'name' => 'America/Rankin Inlet',
  5600. 'offset' => '-06:00:00',
  5601. 'offset_dst' => '-05:00:00',
  5602. 'dst_region' => '15',
  5603. 'is_dst' => '0',
  5604. ))
  5605. ->values(array(
  5606. 'timezone' => '134',
  5607. 'name' => 'America/Recife',
  5608. 'offset' => '-03:00:00',
  5609. 'offset_dst' => '-03:00:00',
  5610. 'dst_region' => '0',
  5611. 'is_dst' => '0',
  5612. ))
  5613. ->values(array(
  5614. 'timezone' => '135',
  5615. 'name' => 'America/Regina',
  5616. 'offset' => '-06:00:00',
  5617. 'offset_dst' => '-06:00:00',
  5618. 'dst_region' => '0',
  5619. 'is_dst' => '0',
  5620. ))
  5621. ->values(array(
  5622. 'timezone' => '136',
  5623. 'name' => 'America/Rio Branco',
  5624. 'offset' => '-05:00:00',
  5625. 'offset_dst' => '-05:00:00',
  5626. 'dst_region' => '0',
  5627. 'is_dst' => '0',
  5628. ))
  5629. ->values(array(
  5630. 'timezone' => '137',
  5631. 'name' => 'America/Rosario',
  5632. 'offset' => '-03:00:00',
  5633. 'offset_dst' => '-03:00:00',
  5634. 'dst_region' => '0',
  5635. 'is_dst' => '0',
  5636. ))
  5637. ->values(array(
  5638. 'timezone' => '138',
  5639. 'name' => 'America/Santiago',
  5640. 'offset' => '-03:00:00',
  5641. 'offset_dst' => '-04:00:00',
  5642. 'dst_region' => '15',
  5643. 'is_dst' => '0',
  5644. ))
  5645. ->values(array(
  5646. 'timezone' => '139',
  5647. 'name' => 'America/Santo Domingo',
  5648. 'offset' => '-04:00:00',
  5649. 'offset_dst' => '-04:00:00',
  5650. 'dst_region' => '0',
  5651. 'is_dst' => '0',
  5652. ))
  5653. ->values(array(
  5654. 'timezone' => '140',
  5655. 'name' => 'America/Sao Paulo',
  5656. 'offset' => '-02:00:00',
  5657. 'offset_dst' => '-03:00:00',
  5658. 'dst_region' => '15',
  5659. 'is_dst' => '0',
  5660. ))
  5661. ->values(array(
  5662. 'timezone' => '141',
  5663. 'name' => 'America/Scoresbysund',
  5664. 'offset' => '-01:00:00',
  5665. 'offset_dst' => '00:00:00',
  5666. 'dst_region' => '15',
  5667. 'is_dst' => '0',
  5668. ))
  5669. ->values(array(
  5670. 'timezone' => '142',
  5671. 'name' => 'America/Shiprock',
  5672. 'offset' => '-07:00:00',
  5673. 'offset_dst' => '-06:00:00',
  5674. 'dst_region' => '15',
  5675. 'is_dst' => '0',
  5676. ))
  5677. ->values(array(
  5678. 'timezone' => '143',
  5679. 'name' => 'America/St Johns',
  5680. 'offset' => '-03:30:00',
  5681. 'offset_dst' => '-02:30:00',
  5682. 'dst_region' => '15',
  5683. 'is_dst' => '0',
  5684. ))
  5685. ->values(array(
  5686. 'timezone' => '144',
  5687. 'name' => 'America/St Kitts',
  5688. 'offset' => '-04:00:00',
  5689. 'offset_dst' => '-04:00:00',
  5690. 'dst_region' => '0',
  5691. 'is_dst' => '0',
  5692. ))
  5693. ->values(array(
  5694. 'timezone' => '145',
  5695. 'name' => 'America/St Lucia',
  5696. 'offset' => '-04:00:00',
  5697. 'offset_dst' => '-04:00:00',
  5698. 'dst_region' => '0',
  5699. 'is_dst' => '0',
  5700. ))
  5701. ->values(array(
  5702. 'timezone' => '146',
  5703. 'name' => 'America/St Thomas',
  5704. 'offset' => '-04:00:00',
  5705. 'offset_dst' => '-04:00:00',
  5706. 'dst_region' => '0',
  5707. 'is_dst' => '0',
  5708. ))
  5709. ->values(array(
  5710. 'timezone' => '147',
  5711. 'name' => 'America/St Vincent',
  5712. 'offset' => '-04:00:00',
  5713. 'offset_dst' => '-04:00:00',
  5714. 'dst_region' => '0',
  5715. 'is_dst' => '0',
  5716. ))
  5717. ->values(array(
  5718. 'timezone' => '148',
  5719. 'name' => 'America/Swift Current',
  5720. 'offset' => '-06:00:00',
  5721. 'offset_dst' => '-06:00:00',
  5722. 'dst_region' => '0',
  5723. 'is_dst' => '0',
  5724. ))
  5725. ->values(array(
  5726. 'timezone' => '149',
  5727. 'name' => 'America/Tegucigalpa',
  5728. 'offset' => '-06:00:00',
  5729. 'offset_dst' => '-06:00:00',
  5730. 'dst_region' => '0',
  5731. 'is_dst' => '0',
  5732. ))
  5733. ->values(array(
  5734. 'timezone' => '150',
  5735. 'name' => 'America/Thule',
  5736. 'offset' => '-04:00:00',
  5737. 'offset_dst' => '-03:00:00',
  5738. 'dst_region' => '15',
  5739. 'is_dst' => '0',
  5740. ))
  5741. ->values(array(
  5742. 'timezone' => '151',
  5743. 'name' => 'America/Thunder Bay',
  5744. 'offset' => '-05:00:00',
  5745. 'offset_dst' => '-04:00:00',
  5746. 'dst_region' => '15',
  5747. 'is_dst' => '0',
  5748. ))
  5749. ->values(array(
  5750. 'timezone' => '152',
  5751. 'name' => 'America/Tijuana',
  5752. 'offset' => '-08:00:00',
  5753. 'offset_dst' => '-07:00:00',
  5754. 'dst_region' => '15',
  5755. 'is_dst' => '0',
  5756. ))
  5757. ->values(array(
  5758. 'timezone' => '153',
  5759. 'name' => 'America/Tortola',
  5760. 'offset' => '-04:00:00',
  5761. 'offset_dst' => '-04:00:00',
  5762. 'dst_region' => '0',
  5763. 'is_dst' => '0',
  5764. ))
  5765. ->values(array(
  5766. 'timezone' => '154',
  5767. 'name' => 'America/Vancouver',
  5768. 'offset' => '-08:00:00',
  5769. 'offset_dst' => '-07:00:00',
  5770. 'dst_region' => '15',
  5771. 'is_dst' => '0',
  5772. ))
  5773. ->values(array(
  5774. 'timezone' => '155',
  5775. 'name' => 'America/Virgin',
  5776. 'offset' => '-04:00:00',
  5777. 'offset_dst' => '-04:00:00',
  5778. 'dst_region' => '0',
  5779. 'is_dst' => '0',
  5780. ))
  5781. ->values(array(
  5782. 'timezone' => '156',
  5783. 'name' => 'America/Whitehorse',
  5784. 'offset' => '-08:00:00',
  5785. 'offset_dst' => '-07:00:00',
  5786. 'dst_region' => '15',
  5787. 'is_dst' => '0',
  5788. ))
  5789. ->values(array(
  5790. 'timezone' => '157',
  5791. 'name' => 'America/Winnipeg',
  5792. 'offset' => '-06:00:00',
  5793. 'offset_dst' => '-05:00:00',
  5794. 'dst_region' => '15',
  5795. 'is_dst' => '0',
  5796. ))
  5797. ->values(array(
  5798. 'timezone' => '158',
  5799. 'name' => 'America/Yakutat',
  5800. 'offset' => '-09:00:00',
  5801. 'offset_dst' => '-08:00:00',
  5802. 'dst_region' => '15',
  5803. 'is_dst' => '0',
  5804. ))
  5805. ->values(array(
  5806. 'timezone' => '159',
  5807. 'name' => 'America/Yellowknife',
  5808. 'offset' => '-07:00:00',
  5809. 'offset_dst' => '-06:00:00',
  5810. 'dst_region' => '15',
  5811. 'is_dst' => '0',
  5812. ))
  5813. ->values(array(
  5814. 'timezone' => '160',
  5815. 'name' => 'Antarctica/Casey',
  5816. 'offset' => '08:00:00',
  5817. 'offset_dst' => '08:00:00',
  5818. 'dst_region' => '0',
  5819. 'is_dst' => '0',
  5820. ))
  5821. ->values(array(
  5822. 'timezone' => '161',
  5823. 'name' => 'Antarctica/Davis',
  5824. 'offset' => '07:00:00',
  5825. 'offset_dst' => '07:00:00',
  5826. 'dst_region' => '0',
  5827. 'is_dst' => '0',
  5828. ))
  5829. ->values(array(
  5830. 'timezone' => '162',
  5831. 'name' => 'Antarctica/DumontDUrville',
  5832. 'offset' => '10:00:00',
  5833. 'offset_dst' => '10:00:00',
  5834. 'dst_region' => '0',
  5835. 'is_dst' => '0',
  5836. ))
  5837. ->values(array(
  5838. 'timezone' => '163',
  5839. 'name' => 'Antarctica/Mawson',
  5840. 'offset' => '06:00:00',
  5841. 'offset_dst' => '06:00:00',
  5842. 'dst_region' => '0',
  5843. 'is_dst' => '0',
  5844. ))
  5845. ->values(array(
  5846. 'timezone' => '164',
  5847. 'name' => 'Antarctica/McMurdo',
  5848. 'offset' => '13:00:00',
  5849. 'offset_dst' => '12:00:00',
  5850. 'dst_region' => '11',
  5851. 'is_dst' => '0',
  5852. ))
  5853. ->values(array(
  5854. 'timezone' => '165',
  5855. 'name' => 'Antarctica/Palmer',
  5856. 'offset' => '-03:00:00',
  5857. 'offset_dst' => '-04:00:00',
  5858. 'dst_region' => '18',
  5859. 'is_dst' => '0',
  5860. ))
  5861. ->values(array(
  5862. 'timezone' => '166',
  5863. 'name' => 'Antarctica/South Pole',
  5864. 'offset' => '13:00:00',
  5865. 'offset_dst' => '12:00:00',
  5866. 'dst_region' => '11',
  5867. 'is_dst' => '0',
  5868. ))
  5869. ->values(array(
  5870. 'timezone' => '167',
  5871. 'name' => 'Antarctica/Syowa',
  5872. 'offset' => '03:00:00',
  5873. 'offset_dst' => '03:00:00',
  5874. 'dst_region' => '0',
  5875. 'is_dst' => '0',
  5876. ))
  5877. ->values(array(
  5878. 'timezone' => '168',
  5879. 'name' => 'Antarctica/Vostok',
  5880. 'offset' => '06:00:00',
  5881. 'offset_dst' => '06:00:00',
  5882. 'dst_region' => '0',
  5883. 'is_dst' => '0',
  5884. ))
  5885. ->values(array(
  5886. 'timezone' => '169',
  5887. 'name' => 'Arctic/Longyearbyen',
  5888. 'offset' => '01:00:00',
  5889. 'offset_dst' => '02:00:00',
  5890. 'dst_region' => '14',
  5891. 'is_dst' => '0',
  5892. ))
  5893. ->values(array(
  5894. 'timezone' => '170',
  5895. 'name' => 'Asia/Aden',
  5896. 'offset' => '03:00:00',
  5897. 'offset_dst' => '03:00:00',
  5898. 'dst_region' => '0',
  5899. 'is_dst' => '0',
  5900. ))
  5901. ->values(array(
  5902. 'timezone' => '171',
  5903. 'name' => 'Asia/Almaty',
  5904. 'offset' => '06:00:00',
  5905. 'offset_dst' => '06:00:00',
  5906. 'dst_region' => '0',
  5907. 'is_dst' => '0',
  5908. ))
  5909. ->values(array(
  5910. 'timezone' => '172',
  5911. 'name' => 'Asia/Amman',
  5912. 'offset' => '02:00:00',
  5913. 'offset_dst' => '03:00:00',
  5914. 'dst_region' => '8',
  5915. 'is_dst' => '0',
  5916. ))
  5917. ->values(array(
  5918. 'timezone' => '173',
  5919. 'name' => 'Asia/Anadyr',
  5920. 'offset' => '12:00:00',
  5921. 'offset_dst' => '13:00:00',
  5922. 'dst_region' => '3',
  5923. 'is_dst' => '0',
  5924. ))
  5925. ->values(array(
  5926. 'timezone' => '174',
  5927. 'name' => 'Asia/Aqtau',
  5928. 'offset' => '04:00:00',
  5929. 'offset_dst' => '05:00:00',
  5930. 'dst_region' => '3',
  5931. 'is_dst' => '0',
  5932. ))
  5933. ->values(array(
  5934. 'timezone' => '175',
  5935. 'name' => 'Asia/Aqtobe',
  5936. 'offset' => '05:00:00',
  5937. 'offset_dst' => '06:00:00',
  5938. 'dst_region' => '3',
  5939. 'is_dst' => '0',
  5940. ))
  5941. ->values(array(
  5942. 'timezone' => '176',
  5943. 'name' => 'Asia/Ashgabat',
  5944. 'offset' => '05:00:00',
  5945. 'offset_dst' => '05:00:00',
  5946. 'dst_region' => '0',
  5947. 'is_dst' => '0',
  5948. ))
  5949. ->values(array(
  5950. 'timezone' => '177',
  5951. 'name' => 'Asia/Ashkhabad',
  5952. 'offset' => '05:00:00',
  5953. 'offset_dst' => '05:00:00',
  5954. 'dst_region' => '0',
  5955. 'is_dst' => '0',
  5956. ))
  5957. ->values(array(
  5958. 'timezone' => '178',
  5959. 'name' => 'Asia/Baghdad',
  5960. 'offset' => '03:00:00',
  5961. 'offset_dst' => '04:00:00',
  5962. 'dst_region' => '4',
  5963. 'is_dst' => '0',
  5964. ))
  5965. ->values(array(
  5966. 'timezone' => '179',
  5967. 'name' => 'Asia/Bahrain',
  5968. 'offset' => '03:00:00',
  5969. 'offset_dst' => '03:00:00',
  5970. 'dst_region' => '0',
  5971. 'is_dst' => '0',
  5972. ))
  5973. ->values(array(
  5974. 'timezone' => '180',
  5975. 'name' => 'Asia/Baku',
  5976. 'offset' => '04:00:00',
  5977. 'offset_dst' => '05:00:00',
  5978. 'dst_region' => '3',
  5979. 'is_dst' => '0',
  5980. ))
  5981. ->values(array(
  5982. 'timezone' => '181',
  5983. 'name' => 'Asia/Bangkok',
  5984. 'offset' => '07:00:00',
  5985. 'offset_dst' => '07:00:00',
  5986. 'dst_region' => '0',
  5987. 'is_dst' => '0',
  5988. ))
  5989. ->values(array(
  5990. 'timezone' => '182',
  5991. 'name' => 'Asia/Beirut',
  5992. 'offset' => '02:00:00',
  5993. 'offset_dst' => '03:00:00',
  5994. 'dst_region' => '6',
  5995. 'is_dst' => '0',
  5996. ))
  5997. ->values(array(
  5998. 'timezone' => '183',
  5999. 'name' => 'Asia/Bishkek',
  6000. 'offset' => '05:00:00',
  6001. 'offset_dst' => '06:00:00',
  6002. 'dst_region' => '6',
  6003. 'is_dst' => '0',
  6004. ))
  6005. ->values(array(
  6006. 'timezone' => '184',
  6007. 'name' => 'Asia/Brunei',
  6008. 'offset' => '08:00:00',
  6009. 'offset_dst' => '08:00:00',
  6010. 'dst_region' => '0',
  6011. 'is_dst' => '0',
  6012. ))
  6013. ->values(array(
  6014. 'timezone' => '185',
  6015. 'name' => 'Asia/Calcutta',
  6016. 'offset' => '05:30:00',
  6017. 'offset_dst' => '05:30:30',
  6018. 'dst_region' => '0',
  6019. 'is_dst' => '0',
  6020. ))
  6021. ->values(array(
  6022. 'timezone' => '186',
  6023. 'name' => 'Asia/Chungking',
  6024. 'offset' => '08:00:00',
  6025. 'offset_dst' => '08:00:00',
  6026. 'dst_region' => '0',
  6027. 'is_dst' => '0',
  6028. ))
  6029. ->values(array(
  6030. 'timezone' => '187',
  6031. 'name' => 'Asia/Colombo',
  6032. 'offset' => '06:00:00',
  6033. 'offset_dst' => '06:00:00',
  6034. 'dst_region' => '0',
  6035. 'is_dst' => '0',
  6036. ))
  6037. ->values(array(
  6038. 'timezone' => '188',
  6039. 'name' => 'Asia/Dacca',
  6040. 'offset' => '06:00:00',
  6041. 'offset_dst' => '06:00:00',
  6042. 'dst_region' => '0',
  6043. 'is_dst' => '0',
  6044. ))
  6045. ->values(array(
  6046. 'timezone' => '189',
  6047. 'name' => 'Asia/Damascus',
  6048. 'offset' => '02:00:00',
  6049. 'offset_dst' => '03:00:00',
  6050. 'dst_region' => '4',
  6051. 'is_dst' => '0',
  6052. ))
  6053. ->values(array(
  6054. 'timezone' => '190',
  6055. 'name' => 'Asia/Dhaka',
  6056. 'offset' => '06:00:00',
  6057. 'offset_dst' => '06:00:00',
  6058. 'dst_region' => '0',
  6059. 'is_dst' => '0',
  6060. ))
  6061. ->values(array(
  6062. 'timezone' => '191',
  6063. 'name' => 'Asia/Dili',
  6064. 'offset' => '09:00:00',
  6065. 'offset_dst' => '09:00:00',
  6066. 'dst_region' => '0',
  6067. 'is_dst' => '0',
  6068. ))
  6069. ->values(array(
  6070. 'timezone' => '192',
  6071. 'name' => 'Asia/Dubai',
  6072. 'offset' => '04:00:00',
  6073. 'offset_dst' => '04:00:00',
  6074. 'dst_region' => '0',
  6075. 'is_dst' => '0',
  6076. ))
  6077. ->values(array(
  6078. 'timezone' => '193',
  6079. 'name' => 'Asia/Dushanbe',
  6080. 'offset' => '05:00:00',
  6081. 'offset_dst' => '05:00:00',
  6082. 'dst_region' => '0',
  6083. 'is_dst' => '0',
  6084. ))
  6085. ->values(array(
  6086. 'timezone' => '194',
  6087. 'name' => 'Asia/Gaza',
  6088. 'offset' => '02:00:00',
  6089. 'offset_dst' => '03:00:00',
  6090. 'dst_region' => '7',
  6091. 'is_dst' => '0',
  6092. ))
  6093. ->values(array(
  6094. 'timezone' => '195',
  6095. 'name' => 'Asia/Harbin',
  6096. 'offset' => '08:00:00',
  6097. 'offset_dst' => '08:00:00',
  6098. 'dst_region' => '0',
  6099. 'is_dst' => '0',
  6100. ))
  6101. ->values(array(
  6102. 'timezone' => '196',
  6103. 'name' => 'Asia/Hong Kong',
  6104. 'offset' => '08:00:00',
  6105. 'offset_dst' => '08:00:00',
  6106. 'dst_region' => '0',
  6107. 'is_dst' => '0',
  6108. ))
  6109. ->values(array(
  6110. 'timezone' => '197',
  6111. 'name' => 'Asia/Hovd',
  6112. 'offset' => '07:00:00',
  6113. 'offset_dst' => '07:00:00',
  6114. 'dst_region' => '0',
  6115. 'is_dst' => '0',
  6116. ))
  6117. ->values(array(
  6118. 'timezone' => '198',
  6119. 'name' => 'Asia/Irkutsk',
  6120. 'offset' => '08:00:00',
  6121. 'offset_dst' => '09:00:00',
  6122. 'dst_region' => '3',
  6123. 'is_dst' => '0',
  6124. ))
  6125. ->values(array(
  6126. 'timezone' => '199',
  6127. 'name' => 'Asia/Istanbul',
  6128. 'offset' => '02:00:00',
  6129. 'offset_dst' => '03:00:00',
  6130. 'dst_region' => '3',
  6131. 'is_dst' => '0',
  6132. ))
  6133. ->values(array(
  6134. 'timezone' => '200',
  6135. 'name' => 'Asia/Jakarta',
  6136. 'offset' => '07:00:00',
  6137. 'offset_dst' => '07:00:00',
  6138. 'dst_region' => '0',
  6139. 'is_dst' => '0',
  6140. ))
  6141. ->values(array(
  6142. 'timezone' => '201',
  6143. 'name' => 'Asia/Jayapura',
  6144. 'offset' => '09:00:00',
  6145. 'offset_dst' => '09:00:00',
  6146. 'dst_region' => '0',
  6147. 'is_dst' => '0',
  6148. ))
  6149. ->values(array(
  6150. 'timezone' => '202',
  6151. 'name' => 'Asia/Jerusalem',
  6152. 'offset' => '02:00:00',
  6153. 'offset_dst' => '03:00:00',
  6154. 'dst_region' => '5',
  6155. 'is_dst' => '0',
  6156. ))
  6157. ->values(array(
  6158. 'timezone' => '203',
  6159. 'name' => 'Asia/Kabul',
  6160. 'offset' => '04:30:00',
  6161. 'offset_dst' => '04:30:00',
  6162. 'dst_region' => '0',
  6163. 'is_dst' => '0',
  6164. ))
  6165. ->values(array(
  6166. 'timezone' => '204',
  6167. 'name' => 'Asia/Kamchatka',
  6168. 'offset' => '12:00:00',
  6169. 'offset_dst' => '13:00:00',
  6170. 'dst_region' => '3',
  6171. 'is_dst' => '0',
  6172. ))
  6173. ->values(array(
  6174. 'timezone' => '205',
  6175. 'name' => 'Asia/Karachi',
  6176. 'offset' => '05:00:00',
  6177. 'offset_dst' => '05:00:00',
  6178. 'dst_region' => '0',
  6179. 'is_dst' => '0',
  6180. ))
  6181. ->values(array(
  6182. 'timezone' => '206',
  6183. 'name' => 'Asia/Kashgar',
  6184. 'offset' => '08:00:00',
  6185. 'offset_dst' => '08:00:00',
  6186. 'dst_region' => '0',
  6187. 'is_dst' => '0',
  6188. ))
  6189. ->values(array(
  6190. 'timezone' => '207',
  6191. 'name' => 'Asia/Katmandu',
  6192. 'offset' => '05:45:00',
  6193. 'offset_dst' => '05:45:00',
  6194. 'dst_region' => '0',
  6195. 'is_dst' => '0',
  6196. ))
  6197. ->values(array(
  6198. 'timezone' => '208',
  6199. 'name' => 'Asia/Krasnoyarsk',
  6200. 'offset' => '07:00:00',
  6201. 'offset_dst' => '08:00:00',
  6202. 'dst_region' => '3',
  6203. 'is_dst' => '0',
  6204. ))
  6205. ->values(array(
  6206. 'timezone' => '209',
  6207. 'name' => 'Asia/Kuala Lumpur',
  6208. 'offset' => '08:00:00',
  6209. 'offset_dst' => '08:00:00',
  6210. 'dst_region' => '0',
  6211. 'is_dst' => '0',
  6212. ))
  6213. ->values(array(
  6214. 'timezone' => '210',
  6215. 'name' => 'Asia/Kuching',
  6216. 'offset' => '08:00:00',
  6217. 'offset_dst' => '08:00:00',
  6218. 'dst_region' => '0',
  6219. 'is_dst' => '0',
  6220. ))
  6221. ->values(array(
  6222. 'timezone' => '211',
  6223. 'name' => 'Asia/Kuwait',
  6224. 'offset' => '03:00:00',
  6225. 'offset_dst' => '03:00:00',
  6226. 'dst_region' => '0',
  6227. 'is_dst' => '0',
  6228. ))
  6229. ->values(array(
  6230. 'timezone' => '212',
  6231. 'name' => 'Asia/Macao',
  6232. 'offset' => '08:00:00',
  6233. 'offset_dst' => '08:00:00',
  6234. 'dst_region' => '0',
  6235. 'is_dst' => '0',
  6236. ))
  6237. ->values(array(
  6238. 'timezone' => '213',
  6239. 'name' => 'Asia/Magadan',
  6240. 'offset' => '11:00:00',
  6241. 'offset_dst' => '12:00:00',
  6242. 'dst_region' => '3',
  6243. 'is_dst' => '0',
  6244. ))
  6245. ->values(array(
  6246. 'timezone' => '214',
  6247. 'name' => 'Asia/Manila',
  6248. 'offset' => '08:00:00',
  6249. 'offset_dst' => '08:00:00',
  6250. 'dst_region' => '0',
  6251. 'is_dst' => '0',
  6252. ))
  6253. ->values(array(
  6254. 'timezone' => '215',
  6255. 'name' => 'Asia/Muscat',
  6256. 'offset' => '04:00:00',
  6257. 'offset_dst' => '04:00:00',
  6258. 'dst_region' => '0',
  6259. 'is_dst' => '0',
  6260. ))
  6261. ->values(array(
  6262. 'timezone' => '216',
  6263. 'name' => 'Asia/Nicosia',
  6264. 'offset' => '02:00:00',
  6265. 'offset_dst' => '03:00:00',
  6266. 'dst_region' => '3',
  6267. 'is_dst' => '0',
  6268. ))
  6269. ->values(array(
  6270. 'timezone' => '217',
  6271. 'name' => 'Asia/Novosibirsk',
  6272. 'offset' => '06:00:00',
  6273. 'offset_dst' => '07:00:00',
  6274. 'dst_region' => '3',
  6275. 'is_dst' => '0',
  6276. ))
  6277. ->values(array(
  6278. 'timezone' => '218',
  6279. 'name' => 'Asia/Omsk',
  6280. 'offset' => '06:00:00',
  6281. 'offset_dst' => '07:00:00',
  6282. 'dst_region' => '3',
  6283. 'is_dst' => '0',
  6284. ))
  6285. ->values(array(
  6286. 'timezone' => '219',
  6287. 'name' => 'Asia/Phnom Penh',
  6288. 'offset' => '07:00:00',
  6289. 'offset_dst' => '07:00:00',
  6290. 'dst_region' => '0',
  6291. 'is_dst' => '0',
  6292. ))
  6293. ->values(array(
  6294. 'timezone' => '220',
  6295. 'name' => 'Asia/Pyongyang',
  6296. 'offset' => '09:00:00',
  6297. 'offset_dst' => '09:00:00',
  6298. 'dst_region' => '0',
  6299. 'is_dst' => '0',
  6300. ))
  6301. ->values(array(
  6302. 'timezone' => '221',
  6303. 'name' => 'Asia/Qatar',
  6304. 'offset' => '03:00:00',
  6305. 'offset_dst' => '03:00:00',
  6306. 'dst_region' => '0',
  6307. 'is_dst' => '0',
  6308. ))
  6309. ->values(array(
  6310. 'timezone' => '222',
  6311. 'name' => 'Asia/Rangoon',
  6312. 'offset' => '06:30:00',
  6313. 'offset_dst' => '06:30:00',
  6314. 'dst_region' => '0',
  6315. 'is_dst' => '0',
  6316. ))
  6317. ->values(array(
  6318. 'timezone' => '223',
  6319. 'name' => 'Asia/Riyadh',
  6320. 'offset' => '03:00:00',
  6321. 'offset_dst' => '03:00:00',
  6322. 'dst_region' => '0',
  6323. 'is_dst' => '0',
  6324. ))
  6325. ->values(array(
  6326. 'timezone' => '224',
  6327. 'name' => 'Asia/Riyadh87',
  6328. 'offset' => '03:07:04',
  6329. 'offset_dst' => '03:07:04',
  6330. 'dst_region' => '0',
  6331. 'is_dst' => '0',
  6332. ))
  6333. ->values(array(
  6334. 'timezone' => '225',
  6335. 'name' => 'Asia/Riyadh88',
  6336. 'offset' => '03:07:04',
  6337. 'offset_dst' => '03:07:04',
  6338. 'dst_region' => '0',
  6339. 'is_dst' => '0',
  6340. ))
  6341. ->values(array(
  6342. 'timezone' => '226',
  6343. 'name' => 'Asia/Riyadh89',
  6344. 'offset' => '03:07:04',
  6345. 'offset_dst' => '03:07:04',
  6346. 'dst_region' => '0',
  6347. 'is_dst' => '0',
  6348. ))
  6349. ->values(array(
  6350. 'timezone' => '227',
  6351. 'name' => 'Asia/Saigon',
  6352. 'offset' => '07:00:00',
  6353. 'offset_dst' => '07:00:00',
  6354. 'dst_region' => '0',
  6355. 'is_dst' => '0',
  6356. ))
  6357. ->values(array(
  6358. 'timezone' => '228',
  6359. 'name' => 'Asia/Samarkand',
  6360. 'offset' => '05:00:00',
  6361. 'offset_dst' => '05:00:00',
  6362. 'dst_region' => '0',
  6363. 'is_dst' => '0',
  6364. ))
  6365. ->values(array(
  6366. 'timezone' => '229',
  6367. 'name' => 'Asia/Seoul',
  6368. 'offset' => '09:00:00',
  6369. 'offset_dst' => '09:00:00',
  6370. 'dst_region' => '0',
  6371. 'is_dst' => '0',
  6372. ))
  6373. ->values(array(
  6374. 'timezone' => '230',
  6375. 'name' => 'Asia/Shanghai',
  6376. 'offset' => '08:00:00',
  6377. 'offset_dst' => '08:00:00',
  6378. 'dst_region' => '0',
  6379. 'is_dst' => '0',
  6380. ))
  6381. ->values(array(
  6382. 'timezone' => '231',
  6383. 'name' => 'Asia/Singapore',
  6384. 'offset' => '08:00:00',
  6385. 'offset_dst' => '08:00:00',
  6386. 'dst_region' => '0',
  6387. 'is_dst' => '0',
  6388. ))
  6389. ->values(array(
  6390. 'timezone' => '232',
  6391. 'name' => 'Asia/Taipei',
  6392. 'offset' => '08:00:00',
  6393. 'offset_dst' => '08:00:00',
  6394. 'dst_region' => '0',
  6395. 'is_dst' => '0',
  6396. ))
  6397. ->values(array(
  6398. 'timezone' => '233',
  6399. 'name' => 'Asia/Tashkent',
  6400. 'offset' => '05:00:00',
  6401. 'offset_dst' => '05:00:00',
  6402. 'dst_region' => '0',
  6403. 'is_dst' => '0',
  6404. ))
  6405. ->values(array(
  6406. 'timezone' => '234',
  6407. 'name' => 'Asia/Tbilisi',
  6408. 'offset' => '04:00:00',
  6409. 'offset_dst' => '05:00:00',
  6410. 'dst_region' => '3',
  6411. 'is_dst' => '0',
  6412. ))
  6413. ->values(array(
  6414. 'timezone' => '235',
  6415. 'name' => 'Asia/Tehran',
  6416. 'offset' => '03:30:00',
  6417. 'offset_dst' => '04:30:00',
  6418. 'dst_region' => '8',
  6419. 'is_dst' => '0',
  6420. ))
  6421. ->values(array(
  6422. 'timezone' => '236',
  6423. 'name' => 'Asia/Tel Aviv',
  6424. 'offset' => '02:00:00',
  6425. 'offset_dst' => '03:00:00',
  6426. 'dst_region' => '5',
  6427. 'is_dst' => '0',
  6428. ))
  6429. ->values(array(
  6430. 'timezone' => '237',
  6431. 'name' => 'Asia/Thimbu',
  6432. 'offset' => '06:00:00',
  6433. 'offset_dst' => '06:00:00',
  6434. 'dst_region' => '0',
  6435. 'is_dst' => '0',
  6436. ))
  6437. ->values(array(
  6438. 'timezone' => '238',
  6439. 'name' => 'Asia/Thimphu',
  6440. 'offset' => '06:00:00',
  6441. 'offset_dst' => '06:00:00',
  6442. 'dst_region' => '0',
  6443. 'is_dst' => '0',
  6444. ))
  6445. ->values(array(
  6446. 'timezone' => '239',
  6447. 'name' => 'Asia/Tokyo',
  6448. 'offset' => '09:00:00',
  6449. 'offset_dst' => '09:00:00',
  6450. 'dst_region' => '0',
  6451. 'is_dst' => '0',
  6452. ))
  6453. ->values(array(
  6454. 'timezone' => '240',
  6455. 'name' => 'Asia/Ujung Pandang',
  6456. 'offset' => '08:00:00',
  6457. 'offset_dst' => '08:00:00',
  6458. 'dst_region' => '0',
  6459. 'is_dst' => '0',
  6460. ))
  6461. ->values(array(
  6462. 'timezone' => '241',
  6463. 'name' => 'Asia/Ulaanbaatar',
  6464. 'offset' => '08:00:00',
  6465. 'offset_dst' => '08:00:00',
  6466. 'dst_region' => '0',
  6467. 'is_dst' => '0',
  6468. ))
  6469. ->values(array(
  6470. 'timezone' => '242',
  6471. 'name' => 'Asia/Ulan Bator',
  6472. 'offset' => '08:00:00',
  6473. 'offset_dst' => '08:00:00',
  6474. 'dst_region' => '0',
  6475. 'is_dst' => '0',
  6476. ))
  6477. ->values(array(
  6478. 'timezone' => '243',
  6479. 'name' => 'Asia/Urumqi',
  6480. 'offset' => '08:00:00',
  6481. 'offset_dst' => '08:00:00',
  6482. 'dst_region' => '0',
  6483. 'is_dst' => '0',
  6484. ))
  6485. ->values(array(
  6486. 'timezone' => '244',
  6487. 'name' => 'Asia/Vientiane',
  6488. 'offset' => '07:00:00',
  6489. 'offset_dst' => '07:00:00',
  6490. 'dst_region' => '0',
  6491. 'is_dst' => '0',
  6492. ))
  6493. ->values(array(
  6494. 'timezone' => '245',
  6495. 'name' => 'Asia/Vladivostok',
  6496. 'offset' => '10:00:00',
  6497. 'offset_dst' => '11:00:00',
  6498. 'dst_region' => '3',
  6499. 'is_dst' => '0',
  6500. ))
  6501. ->values(array(
  6502. 'timezone' => '246',
  6503. 'name' => 'Asia/Yakutsk',
  6504. 'offset' => '09:00:00',
  6505. 'offset_dst' => '10:00:00',
  6506. 'dst_region' => '3',
  6507. 'is_dst' => '0',
  6508. ))
  6509. ->values(array(
  6510. 'timezone' => '247',
  6511. 'name' => 'Asia/Yekaterinburg',
  6512. 'offset' => '05:00:00',
  6513. 'offset_dst' => '06:00:00',
  6514. 'dst_region' => '3',
  6515. 'is_dst' => '0',
  6516. ))
  6517. ->values(array(
  6518. 'timezone' => '248',
  6519. 'name' => 'Asia/Yerevan',
  6520. 'offset' => '04:00:00',
  6521. 'offset_dst' => '05:00:00',
  6522. 'dst_region' => '3',
  6523. 'is_dst' => '0',
  6524. ))
  6525. ->values(array(
  6526. 'timezone' => '249',
  6527. 'name' => 'Atlantic/Azores',
  6528. 'offset' => '-01:00:00',
  6529. 'offset_dst' => '00:00:00',
  6530. 'dst_region' => '13',
  6531. 'is_dst' => '0',
  6532. ))
  6533. ->values(array(
  6534. 'timezone' => '250',
  6535. 'name' => 'Atlantic/Bermuda',
  6536. 'offset' => '-04:00:00',
  6537. 'offset_dst' => '-03:00:00',
  6538. 'dst_region' => '15',
  6539. 'is_dst' => '0',
  6540. ))
  6541. ->values(array(
  6542. 'timezone' => '251',
  6543. 'name' => 'Atlantic/Canary',
  6544. 'offset' => '00:00:00',
  6545. 'offset_dst' => '01:00:00',
  6546. 'dst_region' => '15',
  6547. 'is_dst' => '0',
  6548. ))
  6549. ->values(array(
  6550. 'timezone' => '252',
  6551. 'name' => 'Atlantic/Cape Verde',
  6552. 'offset' => '-01:00:00',
  6553. 'offset_dst' => '-01:00:00',
  6554. 'dst_region' => '0',
  6555. 'is_dst' => '0',
  6556. ))
  6557. ->values(array(
  6558. 'timezone' => '253',
  6559. 'name' => 'Atlantic/Faeroe',
  6560. 'offset' => '00:00:00',
  6561. 'offset_dst' => '01:00:00',
  6562. 'dst_region' => '13',
  6563. 'is_dst' => '0',
  6564. ))
  6565. ->values(array(
  6566. 'timezone' => '254',
  6567. 'name' => 'Atlantic/Jan Mayen',
  6568. 'offset' => '-01:00:00',
  6569. 'offset_dst' => '-01:00:00',
  6570. 'dst_region' => '0',
  6571. 'is_dst' => '0',
  6572. ))
  6573. ->values(array(
  6574. 'timezone' => '255',
  6575. 'name' => 'Atlantic/Madeira',
  6576. 'offset' => '00:00:00',
  6577. 'offset_dst' => '01:00:00',
  6578. 'dst_region' => '13',
  6579. 'is_dst' => '0',
  6580. ))
  6581. ->values(array(
  6582. 'timezone' => '256',
  6583. 'name' => 'Atlantic/South Georgia',
  6584. 'offset' => '-02:00:00',
  6585. 'offset_dst' => '-02:00:00',
  6586. 'dst_region' => '0',
  6587. 'is_dst' => '0',
  6588. ))
  6589. ->values(array(
  6590. 'timezone' => '257',
  6591. 'name' => 'Atlantic/Stanley',
  6592. 'offset' => '-03:00:00',
  6593. 'offset_dst' => '-04:00:00',
  6594. 'dst_region' => '19',
  6595. 'is_dst' => '0',
  6596. ))
  6597. ->values(array(
  6598. 'timezone' => '258',
  6599. 'name' => 'Australia/ACT',
  6600. 'offset' => '10:00:00',
  6601. 'offset_dst' => '11:00:00',
  6602. 'dst_region' => '9',
  6603. 'is_dst' => '0',
  6604. ))
  6605. ->values(array(
  6606. 'timezone' => '259',
  6607. 'name' => 'Australia/Adelaide',
  6608. 'offset' => '10:30:00',
  6609. 'offset_dst' => '09:30:00',
  6610. 'dst_region' => '9',
  6611. 'is_dst' => '0',
  6612. ))
  6613. ->values(array(
  6614. 'timezone' => '260',
  6615. 'name' => 'Australia/Brisbane',
  6616. 'offset' => '10:00:00',
  6617. 'offset_dst' => '10:00:00',
  6618. 'dst_region' => '0',
  6619. 'is_dst' => '0',
  6620. ))
  6621. ->values(array(
  6622. 'timezone' => '261',
  6623. 'name' => 'Australia/Broken Hill',
  6624. 'offset' => '10:30:00',
  6625. 'offset_dst' => '09:30:00',
  6626. 'dst_region' => '9',
  6627. 'is_dst' => '0',
  6628. ))
  6629. ->values(array(
  6630. 'timezone' => '262',
  6631. 'name' => 'Australia/Canberra',
  6632. 'offset' => '11:00:00',
  6633. 'offset_dst' => '10:00:00',
  6634. 'dst_region' => '9',
  6635. 'is_dst' => '0',
  6636. ))
  6637. ->values(array(
  6638. 'timezone' => '263',
  6639. 'name' => 'Australia/Darwin',
  6640. 'offset' => '09:30:00',
  6641. 'offset_dst' => '09:30:00',
  6642. 'dst_region' => '0',
  6643. 'is_dst' => '0',
  6644. ))
  6645. ->values(array(
  6646. 'timezone' => '264',
  6647. 'name' => 'Australia/Hobart',
  6648. 'offset' => '11:00:00',
  6649. 'offset_dst' => '10:00:00',
  6650. 'dst_region' => '10',
  6651. 'is_dst' => '0',
  6652. ))
  6653. ->values(array(
  6654. 'timezone' => '265',
  6655. 'name' => 'Australia/LHI',
  6656. 'offset' => '11:00:00',
  6657. 'offset_dst' => '10:30:00',
  6658. 'dst_region' => '9',
  6659. 'is_dst' => '0',
  6660. ))
  6661. ->values(array(
  6662. 'timezone' => '266',
  6663. 'name' => 'Australia/Lindeman',
  6664. 'offset' => '10:00:00',
  6665. 'offset_dst' => '10:00:00',
  6666. 'dst_region' => '0',
  6667. 'is_dst' => '0',
  6668. ))
  6669. ->values(array(
  6670. 'timezone' => '267',
  6671. 'name' => 'Australia/Lord Howe',
  6672. 'offset' => '11:00:00',
  6673. 'offset_dst' => '10:30:00',
  6674. 'dst_region' => '9',
  6675. 'is_dst' => '0',
  6676. ))
  6677. ->values(array(
  6678. 'timezone' => '268',
  6679. 'name' => 'Australia/Melbourne',
  6680. 'offset' => '10:00:00',
  6681. 'offset_dst' => '11:00:00',
  6682. 'dst_region' => '10',
  6683. 'is_dst' => '0',
  6684. ))
  6685. ->values(array(
  6686. 'timezone' => '269',
  6687. 'name' => 'Australia/NSW',
  6688. 'offset' => '10:00:00',
  6689. 'offset_dst' => '11:00:00',
  6690. 'dst_region' => '9',
  6691. 'is_dst' => '0',
  6692. ))
  6693. ->values(array(
  6694. 'timezone' => '270',
  6695. 'name' => 'Australia/North',
  6696. 'offset' => '09:30:00',
  6697. 'offset_dst' => '09:30:00',
  6698. 'dst_region' => '0',
  6699. 'is_dst' => '0',
  6700. ))
  6701. ->values(array(
  6702. 'timezone' => '271',
  6703. 'name' => 'Australia/Perth',
  6704. 'offset' => '08:00:00',
  6705. 'offset_dst' => '08:00:00',
  6706. 'dst_region' => '0',
  6707. 'is_dst' => '0',
  6708. ))
  6709. ->values(array(
  6710. 'timezone' => '272',
  6711. 'name' => 'Australia/Queensland',
  6712. 'offset' => '10:00:00',
  6713. 'offset_dst' => '10:00:00',
  6714. 'dst_region' => '0',
  6715. 'is_dst' => '0',
  6716. ))
  6717. ->values(array(
  6718. 'timezone' => '273',
  6719. 'name' => 'Australia/South',
  6720. 'offset' => '10:30:00',
  6721. 'offset_dst' => '09:30:00',
  6722. 'dst_region' => '9',
  6723. 'is_dst' => '0',
  6724. ))
  6725. ->values(array(
  6726. 'timezone' => '274',
  6727. 'name' => 'Australia/Sydney',
  6728. 'offset' => '10:00:00',
  6729. 'offset_dst' => '11:00:00',
  6730. 'dst_region' => '10',
  6731. 'is_dst' => '0',
  6732. ))
  6733. ->values(array(
  6734. 'timezone' => '275',
  6735. 'name' => 'Australia/Tasmania',
  6736. 'offset' => '10:00:00',
  6737. 'offset_dst' => '11:00:00',
  6738. 'dst_region' => '9',
  6739. 'is_dst' => '0',
  6740. ))
  6741. ->values(array(
  6742. 'timezone' => '276',
  6743. 'name' => 'Australia/Victoria',
  6744. 'offset' => '10:00:00',
  6745. 'offset_dst' => '11:00:00',
  6746. 'dst_region' => '9',
  6747. 'is_dst' => '0',
  6748. ))
  6749. ->values(array(
  6750. 'timezone' => '277',
  6751. 'name' => 'Australia/West',
  6752. 'offset' => '08:00:00',
  6753. 'offset_dst' => '08:00:00',
  6754. 'dst_region' => '0',
  6755. 'is_dst' => '0',
  6756. ))
  6757. ->values(array(
  6758. 'timezone' => '278',
  6759. 'name' => 'Australia/Yancowinna',
  6760. 'offset' => '10:30:00',
  6761. 'offset_dst' => '09:30:00',
  6762. 'dst_region' => '10',
  6763. 'is_dst' => '0',
  6764. ))
  6765. ->values(array(
  6766. 'timezone' => '279',
  6767. 'name' => 'Brazil/Acre',
  6768. 'offset' => '-05:00:00',
  6769. 'offset_dst' => '-05:00:00',
  6770. 'dst_region' => '0',
  6771. 'is_dst' => '0',
  6772. ))
  6773. ->values(array(
  6774. 'timezone' => '280',
  6775. 'name' => 'Brazil/DeNoronha',
  6776. 'offset' => '-02:00:00',
  6777. 'offset_dst' => '-02:00:00',
  6778. 'dst_region' => '0',
  6779. 'is_dst' => '0',
  6780. ))
  6781. ->values(array(
  6782. 'timezone' => '281',
  6783. 'name' => 'Brazil/East',
  6784. 'offset' => '-02:00:00',
  6785. 'offset_dst' => '-03:00:00',
  6786. 'dst_region' => '17',
  6787. 'is_dst' => '0',
  6788. ))
  6789. ->values(array(
  6790. 'timezone' => '282',
  6791. 'name' => 'Brazil/West',
  6792. 'offset' => '-04:00:00',
  6793. 'offset_dst' => '-04:00:00',
  6794. 'dst_region' => '0',
  6795. 'is_dst' => '0',
  6796. ))
  6797. ->values(array(
  6798. 'timezone' => '285',
  6799. 'name' => 'Canada/Atlantic',
  6800. 'offset' => '-04:00:00',
  6801. 'offset_dst' => '-03:00:00',
  6802. 'dst_region' => '15',
  6803. 'is_dst' => '0',
  6804. ))
  6805. ->values(array(
  6806. 'timezone' => '286',
  6807. 'name' => 'Canada/Central',
  6808. 'offset' => '-06:00:00',
  6809. 'offset_dst' => '-05:00:00',
  6810. 'dst_region' => '15',
  6811. 'is_dst' => '0',
  6812. ))
  6813. ->values(array(
  6814. 'timezone' => '287',
  6815. 'name' => 'Canada/Central-Saskatchewan',
  6816. 'offset' => '-06:00:00',
  6817. 'offset_dst' => '-06:00:00',
  6818. 'dst_region' => '0',
  6819. 'is_dst' => '0',
  6820. ))
  6821. ->values(array(
  6822. 'timezone' => '288',
  6823. 'name' => 'Canada/Eastern',
  6824. 'offset' => '-05:00:00',
  6825. 'offset_dst' => '-04:00:00',
  6826. 'dst_region' => '15',
  6827. 'is_dst' => '0',
  6828. ))
  6829. ->values(array(
  6830. 'timezone' => '289',
  6831. 'name' => 'Canada/Mountain',
  6832. 'offset' => '-07:00:00',
  6833. 'offset_dst' => '-06:00:00',
  6834. 'dst_region' => '15',
  6835. 'is_dst' => '0',
  6836. ))
  6837. ->values(array(
  6838. 'timezone' => '290',
  6839. 'name' => 'Canada/Newfoundland',
  6840. 'offset' => '-03:30:00',
  6841. 'offset_dst' => '-02:30:00',
  6842. 'dst_region' => '15',
  6843. 'is_dst' => '0',
  6844. ))
  6845. ->values(array(
  6846. 'timezone' => '291',
  6847. 'name' => 'Canada/Pacific',
  6848. 'offset' => '-08:00:00',
  6849. 'offset_dst' => '-07:00:00',
  6850. 'dst_region' => '15',
  6851. 'is_dst' => '0',
  6852. ))
  6853. ->values(array(
  6854. 'timezone' => '292',
  6855. 'name' => 'Canada/Saskatchewan',
  6856. 'offset' => '-06:00:00',
  6857. 'offset_dst' => '-06:00:00',
  6858. 'dst_region' => '0',
  6859. 'is_dst' => '0',
  6860. ))
  6861. ->values(array(
  6862. 'timezone' => '293',
  6863. 'name' => 'Canada/Yukon',
  6864. 'offset' => '-08:00:00',
  6865. 'offset_dst' => '-07:00:00',
  6866. 'dst_region' => '15',
  6867. 'is_dst' => '0',
  6868. ))
  6869. ->values(array(
  6870. 'timezone' => '294',
  6871. 'name' => 'Chile/Continental',
  6872. 'offset' => '-03:00:00',
  6873. 'offset_dst' => '-04:00:00',
  6874. 'dst_region' => '18',
  6875. 'is_dst' => '0',
  6876. ))
  6877. ->values(array(
  6878. 'timezone' => '295',
  6879. 'name' => 'Chile/EasterIsland',
  6880. 'offset' => '-05:00:00',
  6881. 'offset_dst' => '-06:00:00',
  6882. 'dst_region' => '18',
  6883. 'is_dst' => '0',
  6884. ))
  6885. ->values(array(
  6886. 'timezone' => '296',
  6887. 'name' => 'Cuba',
  6888. 'offset' => '-05:00:00',
  6889. 'offset_dst' => '-04:00:00',
  6890. 'dst_region' => '16',
  6891. 'is_dst' => '0',
  6892. ))
  6893. ->values(array(
  6894. 'timezone' => '298',
  6895. 'name' => 'EST',
  6896. 'offset' => '-05:00:00',
  6897. 'offset_dst' => '-05:00:00',
  6898. 'dst_region' => '0',
  6899. 'is_dst' => '0',
  6900. ))
  6901. ->values(array(
  6902. 'timezone' => '300',
  6903. 'name' => 'Egypt',
  6904. 'offset' => '02:00:00',
  6905. 'offset_dst' => '03:00:00',
  6906. 'dst_region' => '1',
  6907. 'is_dst' => '0',
  6908. ))
  6909. ->values(array(
  6910. 'timezone' => '301',
  6911. 'name' => 'Eire',
  6912. 'offset' => '00:00:00',
  6913. 'offset_dst' => '01:00:00',
  6914. 'dst_region' => '13',
  6915. 'is_dst' => '0',
  6916. ))
  6917. ->values(array(
  6918. 'timezone' => '302',
  6919. 'name' => 'Etc/GMT-1',
  6920. 'offset' => '-01:00:00',
  6921. 'offset_dst' => '-01:00:00',
  6922. 'dst_region' => '0',
  6923. 'is_dst' => '0',
  6924. ))
  6925. ->values(array(
  6926. 'timezone' => '303',
  6927. 'name' => 'Etc/GMT-10',
  6928. 'offset' => '-10:00:00',
  6929. 'offset_dst' => '-10:00:00',
  6930. 'dst_region' => '0',
  6931. 'is_dst' => '0',
  6932. ))
  6933. ->values(array(
  6934. 'timezone' => '304',
  6935. 'name' => 'Etc/GMT-11',
  6936. 'offset' => '-11:00:00',
  6937. 'offset_dst' => '-11:00:00',
  6938. 'dst_region' => '0',
  6939. 'is_dst' => '0',
  6940. ))
  6941. ->values(array(
  6942. 'timezone' => '305',
  6943. 'name' => 'Etc/GMT-12',
  6944. 'offset' => '-12:00:00',
  6945. 'offset_dst' => '-12:00:00',
  6946. 'dst_region' => '0',
  6947. 'is_dst' => '0',
  6948. ))
  6949. ->values(array(
  6950. 'timezone' => '306',
  6951. 'name' => 'Etc/GMT-2',
  6952. 'offset' => '-02:00:00',
  6953. 'offset_dst' => '-02:00:00',
  6954. 'dst_region' => '0',
  6955. 'is_dst' => '0',
  6956. ))
  6957. ->values(array(
  6958. 'timezone' => '307',
  6959. 'name' => 'Etc/GMT-3',
  6960. 'offset' => '-03:00:00',
  6961. 'offset_dst' => '-03:00:00',
  6962. 'dst_region' => '0',
  6963. 'is_dst' => '0',
  6964. ))
  6965. ->values(array(
  6966. 'timezone' => '308',
  6967. 'name' => 'Etc/GMT-4',
  6968. 'offset' => '-04:00:00',
  6969. 'offset_dst' => '-04:00:00',
  6970. 'dst_region' => '0',
  6971. 'is_dst' => '0',
  6972. ))
  6973. ->values(array(
  6974. 'timezone' => '309',
  6975. 'name' => 'Etc/GMT-5',
  6976. 'offset' => '-05:00:00',
  6977. 'offset_dst' => '-05:00:00',
  6978. 'dst_region' => '0',
  6979. 'is_dst' => '0',
  6980. ))
  6981. ->values(array(
  6982. 'timezone' => '310',
  6983. 'name' => 'Etc/GMT-6',
  6984. 'offset' => '-06:00:00',
  6985. 'offset_dst' => '-06:00:00',
  6986. 'dst_region' => '0',
  6987. 'is_dst' => '0',
  6988. ))
  6989. ->values(array(
  6990. 'timezone' => '311',
  6991. 'name' => 'Etc/GMT-7',
  6992. 'offset' => '-07:00:00',
  6993. 'offset_dst' => '-07:00:00',
  6994. 'dst_region' => '0',
  6995. 'is_dst' => '0',
  6996. ))
  6997. ->values(array(
  6998. 'timezone' => '312',
  6999. 'name' => 'Etc/GMT-8',
  7000. 'offset' => '-08:00:00',
  7001. 'offset_dst' => '-08:00:00',
  7002. 'dst_region' => '0',
  7003. 'is_dst' => '0',
  7004. ))
  7005. ->values(array(
  7006. 'timezone' => '313',
  7007. 'name' => 'Etc/GMT-9',
  7008. 'offset' => '-09:00:00',
  7009. 'offset_dst' => '-09:00:00',
  7010. 'dst_region' => '0',
  7011. 'is_dst' => '0',
  7012. ))
  7013. ->values(array(
  7014. 'timezone' => '314',
  7015. 'name' => 'Etc/GMT+1',
  7016. 'offset' => '01:00:00',
  7017. 'offset_dst' => '01:00:00',
  7018. 'dst_region' => '0',
  7019. 'is_dst' => '0',
  7020. ))
  7021. ->values(array(
  7022. 'timezone' => '315',
  7023. 'name' => 'Etc/GMT+10',
  7024. 'offset' => '10:00:00',
  7025. 'offset_dst' => '10:00:00',
  7026. 'dst_region' => '0',
  7027. 'is_dst' => '0',
  7028. ))
  7029. ->values(array(
  7030. 'timezone' => '316',
  7031. 'name' => 'Etc/GMT+11',
  7032. 'offset' => '11:00:00',
  7033. 'offset_dst' => '11:00:00',
  7034. 'dst_region' => '0',
  7035. 'is_dst' => '0',
  7036. ))
  7037. ->values(array(
  7038. 'timezone' => '317',
  7039. 'name' => 'Etc/GMT+12',
  7040. 'offset' => '12:00:00',
  7041. 'offset_dst' => '12:00:00',
  7042. 'dst_region' => '0',
  7043. 'is_dst' => '0',
  7044. ))
  7045. ->values(array(
  7046. 'timezone' => '318',
  7047. 'name' => 'Etc/GMT+13',
  7048. 'offset' => '13:00:00',
  7049. 'offset_dst' => '13:00:00',
  7050. 'dst_region' => '0',
  7051. 'is_dst' => '0',
  7052. ))
  7053. ->values(array(
  7054. 'timezone' => '319',
  7055. 'name' => 'Etc/GMT+14',
  7056. 'offset' => '14:00:00',
  7057. 'offset_dst' => '14:00:00',
  7058. 'dst_region' => '0',
  7059. 'is_dst' => '0',
  7060. ))
  7061. ->values(array(
  7062. 'timezone' => '320',
  7063. 'name' => 'Etc/GMT+2',
  7064. 'offset' => '02:00:00',
  7065. 'offset_dst' => '02:00:00',
  7066. 'dst_region' => '0',
  7067. 'is_dst' => '0',
  7068. ))
  7069. ->values(array(
  7070. 'timezone' => '321',
  7071. 'name' => 'Etc/GMT+3',
  7072. 'offset' => '03:00:00',
  7073. 'offset_dst' => '03:00:00',
  7074. 'dst_region' => '0',
  7075. 'is_dst' => '0',
  7076. ))
  7077. ->values(array(
  7078. 'timezone' => '322',
  7079. 'name' => 'Etc/GMT+4',
  7080. 'offset' => '04:00:00',
  7081. 'offset_dst' => '04:00:00',
  7082. 'dst_region' => '0',
  7083. 'is_dst' => '0',
  7084. ))
  7085. ->values(array(
  7086. 'timezone' => '323',
  7087. 'name' => 'Etc/GMT+5',
  7088. 'offset' => '05:00:00',
  7089. 'offset_dst' => '05:00:00',
  7090. 'dst_region' => '0',
  7091. 'is_dst' => '0',
  7092. ))
  7093. ->values(array(
  7094. 'timezone' => '324',
  7095. 'name' => 'Etc/GMT+6',
  7096. 'offset' => '06:00:00',
  7097. 'offset_dst' => '06:00:00',
  7098. 'dst_region' => '0',
  7099. 'is_dst' => '0',
  7100. ))
  7101. ->values(array(
  7102. 'timezone' => '325',
  7103. 'name' => 'Etc/GMT+7',
  7104. 'offset' => '07:00:00',
  7105. 'offset_dst' => '07:00:00',
  7106. 'dst_region' => '0',
  7107. 'is_dst' => '0',
  7108. ))
  7109. ->values(array(
  7110. 'timezone' => '326',
  7111. 'name' => 'Etc/GMT+8',
  7112. 'offset' => '08:00:00',
  7113. 'offset_dst' => '08:00:00',
  7114. 'dst_region' => '0',
  7115. 'is_dst' => '0',
  7116. ))
  7117. ->values(array(
  7118. 'timezone' => '327',
  7119. 'name' => 'Etc/GMT+9',
  7120. 'offset' => '09:00:00',
  7121. 'offset_dst' => '09:00:00',
  7122. 'dst_region' => '0',
  7123. 'is_dst' => '0',
  7124. ))
  7125. ->values(array(
  7126. 'timezone' => '328',
  7127. 'name' => 'Europe/Amsterdam',
  7128. 'offset' => '01:00:00',
  7129. 'offset_dst' => '02:00:00',
  7130. 'dst_region' => '13',
  7131. 'is_dst' => '0',
  7132. ))
  7133. ->values(array(
  7134. 'timezone' => '329',
  7135. 'name' => 'Europe/Andorra',
  7136. 'offset' => '01:00:00',
  7137. 'offset_dst' => '02:00:00',
  7138. 'dst_region' => '13',
  7139. 'is_dst' => '0',
  7140. ))
  7141. ->values(array(
  7142. 'timezone' => '330',
  7143. 'name' => 'Europe/Athens',
  7144. 'offset' => '02:00:00',
  7145. 'offset_dst' => '03:00:00',
  7146. 'dst_region' => '13',
  7147. 'is_dst' => '0',
  7148. ))
  7149. ->values(array(
  7150. 'timezone' => '331',
  7151. 'name' => 'Europe/Belfast',
  7152. 'offset' => '00:00:00',
  7153. 'offset_dst' => '01:00:00',
  7154. 'dst_region' => '13',
  7155. 'is_dst' => '0',
  7156. ))
  7157. ->values(array(
  7158. 'timezone' => '332',
  7159. 'name' => 'Europe/Belgrade',
  7160. 'offset' => '01:00:00',
  7161. 'offset_dst' => '02:00:00',
  7162. 'dst_region' => '13',
  7163. 'is_dst' => '0',
  7164. ))
  7165. ->values(array(
  7166. 'timezone' => '333',
  7167. 'name' => 'Europe/Berlin',
  7168. 'offset' => '01:00:00',
  7169. 'offset_dst' => '02:00:00',
  7170. 'dst_region' => '13',
  7171. 'is_dst' => '0',
  7172. ))
  7173. ->values(array(
  7174. 'timezone' => '334',
  7175. 'name' => 'Europe/Bratislava',
  7176. 'offset' => '01:00:00',
  7177. 'offset_dst' => '02:00:00',
  7178. 'dst_region' => '13',
  7179. 'is_dst' => '0',
  7180. ))
  7181. ->values(array(
  7182. 'timezone' => '335',
  7183. 'name' => 'Europe/Brussels',
  7184. 'offset' => '01:00:00',
  7185. 'offset_dst' => '02:00:00',
  7186. 'dst_region' => '13',
  7187. 'is_dst' => '0',
  7188. ))
  7189. ->values(array(
  7190. 'timezone' => '336',
  7191. 'name' => 'Europe/Bucharest',
  7192. 'offset' => '02:00:00',
  7193. 'offset_dst' => '03:00:00',
  7194. 'dst_region' => '13',
  7195. 'is_dst' => '0',
  7196. ))
  7197. ->values(array(
  7198. 'timezone' => '337',
  7199. 'name' => 'Europe/Budapest',
  7200. 'offset' => '01:00:00',
  7201. 'offset_dst' => '02:00:00',
  7202. 'dst_region' => '13',
  7203. 'is_dst' => '0',
  7204. ))
  7205. ->values(array(
  7206. 'timezone' => '338',
  7207. 'name' => 'Europe/Chisinau',
  7208. 'offset' => '02:00:00',
  7209. 'offset_dst' => '03:00:00',
  7210. 'dst_region' => '13',
  7211. 'is_dst' => '0',
  7212. ))
  7213. ->values(array(
  7214. 'timezone' => '339',
  7215. 'name' => 'Europe/Copenhagen',
  7216. 'offset' => '01:00:00',
  7217. 'offset_dst' => '02:00:00',
  7218. 'dst_region' => '13',
  7219. 'is_dst' => '0',
  7220. ))
  7221. ->values(array(
  7222. 'timezone' => '340',
  7223. 'name' => 'Europe/Dublin',
  7224. 'offset' => '00:00:00',
  7225. 'offset_dst' => '01:00:00',
  7226. 'dst_region' => '13',
  7227. 'is_dst' => '0',
  7228. ))
  7229. ->values(array(
  7230. 'timezone' => '341',
  7231. 'name' => 'Europe/Gibraltar',
  7232. 'offset' => '01:00:00',
  7233. 'offset_dst' => '02:00:00',
  7234. 'dst_region' => '13',
  7235. 'is_dst' => '0',
  7236. ))
  7237. ->values(array(
  7238. 'timezone' => '342',
  7239. 'name' => 'Europe/Helsinki',
  7240. 'offset' => '02:00:00',
  7241. 'offset_dst' => '03:00:00',
  7242. 'dst_region' => '13',
  7243. 'is_dst' => '0',
  7244. ))
  7245. ->values(array(
  7246. 'timezone' => '343',
  7247. 'name' => 'Europe/Istanbul',
  7248. 'offset' => '02:00:00',
  7249. 'offset_dst' => '03:00:00',
  7250. 'dst_region' => '13',
  7251. 'is_dst' => '0',
  7252. ))
  7253. ->values(array(
  7254. 'timezone' => '344',
  7255. 'name' => 'Europe/Kaliningrad',
  7256. 'offset' => '02:00:00',
  7257. 'offset_dst' => '03:00:00',
  7258. 'dst_region' => '13',
  7259. 'is_dst' => '0',
  7260. ))
  7261. ->values(array(
  7262. 'timezone' => '345',
  7263. 'name' => 'Europe/Kiev',
  7264. 'offset' => '02:00:00',
  7265. 'offset_dst' => '03:00:00',
  7266. 'dst_region' => '13',
  7267. 'is_dst' => '0',
  7268. ))
  7269. ->values(array(
  7270. 'timezone' => '346',
  7271. 'name' => 'Europe/Lisbon',
  7272. 'offset' => '00:00:00',
  7273. 'offset_dst' => '01:00:00',
  7274. 'dst_region' => '13',
  7275. 'is_dst' => '0',
  7276. ))
  7277. ->values(array(
  7278. 'timezone' => '347',
  7279. 'name' => 'Europe/Ljubljana',
  7280. 'offset' => '01:00:00',
  7281. 'offset_dst' => '02:00:00',
  7282. 'dst_region' => '13',
  7283. 'is_dst' => '0',
  7284. ))
  7285. ->values(array(
  7286. 'timezone' => '348',
  7287. 'name' => 'Europe/London',
  7288. 'offset' => '00:00:00',
  7289. 'offset_dst' => '01:00:00',
  7290. 'dst_region' => '13',
  7291. 'is_dst' => '0',
  7292. ))
  7293. ->values(array(
  7294. 'timezone' => '349',
  7295. 'name' => 'Europe/Luxembourg',
  7296. 'offset' => '01:00:00',
  7297. 'offset_dst' => '02:00:00',
  7298. 'dst_region' => '13',
  7299. 'is_dst' => '0',
  7300. ))
  7301. ->values(array(
  7302. 'timezone' => '350',
  7303. 'name' => 'Europe/Madrid',
  7304. 'offset' => '01:00:00',
  7305. 'offset_dst' => '02:00:00',
  7306. 'dst_region' => '13',
  7307. 'is_dst' => '0',
  7308. ))
  7309. ->values(array(
  7310. 'timezone' => '351',
  7311. 'name' => 'Europe/Malta',
  7312. 'offset' => '01:00:00',
  7313. 'offset_dst' => '02:00:00',
  7314. 'dst_region' => '13',
  7315. 'is_dst' => '0',
  7316. ))
  7317. ->values(array(
  7318. 'timezone' => '352',
  7319. 'name' => 'Europe/Minsk',
  7320. 'offset' => '02:00:00',
  7321. 'offset_dst' => '03:00:00',
  7322. 'dst_region' => '13',
  7323. 'is_dst' => '0',
  7324. ))
  7325. ->values(array(
  7326. 'timezone' => '353',
  7327. 'name' => 'Europe/Monaco',
  7328. 'offset' => '01:00:00',
  7329. 'offset_dst' => '02:00:00',
  7330. 'dst_region' => '13',
  7331. 'is_dst' => '0',
  7332. ))
  7333. ->values(array(
  7334. 'timezone' => '354',
  7335. 'name' => 'Europe/Moscow',
  7336. 'offset' => '03:00:00',
  7337. 'offset_dst' => '04:00:00',
  7338. 'dst_region' => '14',
  7339. 'is_dst' => '0',
  7340. ))
  7341. ->values(array(
  7342. 'timezone' => '355',
  7343. 'name' => 'Europe/Nicosia',
  7344. 'offset' => '02:00:00',
  7345. 'offset_dst' => '03:00:00',
  7346. 'dst_region' => '13',
  7347. 'is_dst' => '0',
  7348. ))
  7349. ->values(array(
  7350. 'timezone' => '356',
  7351. 'name' => 'Europe/Oslo',
  7352. 'offset' => '01:00:00',
  7353. 'offset_dst' => '02:00:00',
  7354. 'dst_region' => '13',
  7355. 'is_dst' => '0',
  7356. ))
  7357. ->values(array(
  7358. 'timezone' => '357',
  7359. 'name' => 'Europe/Paris',
  7360. 'offset' => '01:00:00',
  7361. 'offset_dst' => '02:00:00',
  7362. 'dst_region' => '13',
  7363. 'is_dst' => '0',
  7364. ))
  7365. ->values(array(
  7366. 'timezone' => '358',
  7367. 'name' => 'Europe/Prague',
  7368. 'offset' => '01:00:00',
  7369. 'offset_dst' => '02:00:00',
  7370. 'dst_region' => '13',
  7371. 'is_dst' => '0',
  7372. ))
  7373. ->values(array(
  7374. 'timezone' => '359',
  7375. 'name' => 'Europe/Riga',
  7376. 'offset' => '02:00:00',
  7377. 'offset_dst' => '03:00:00',
  7378. 'dst_region' => '13',
  7379. 'is_dst' => '0',
  7380. ))
  7381. ->values(array(
  7382. 'timezone' => '360',
  7383. 'name' => 'Europe/Rome',
  7384. 'offset' => '01:00:00',
  7385. 'offset_dst' => '02:00:00',
  7386. 'dst_region' => '13',
  7387. 'is_dst' => '0',
  7388. ))
  7389. ->values(array(
  7390. 'timezone' => '361',
  7391. 'name' => 'Europe/Samara',
  7392. 'offset' => '04:00:00',
  7393. 'offset_dst' => '05:00:00',
  7394. 'dst_region' => '13',
  7395. 'is_dst' => '0',
  7396. ))
  7397. ->values(array(
  7398. 'timezone' => '362',
  7399. 'name' => 'Europe/San Marino',
  7400. 'offset' => '01:00:00',
  7401. 'offset_dst' => '02:00:00',
  7402. 'dst_region' => '13',
  7403. 'is_dst' => '0',
  7404. ))
  7405. ->values(array(
  7406. 'timezone' => '363',
  7407. 'name' => 'Europe/Sarajevo',
  7408. 'offset' => '01:00:00',
  7409. 'offset_dst' => '02:00:00',
  7410. 'dst_region' => '13',
  7411. 'is_dst' => '0',
  7412. ))
  7413. ->values(array(
  7414. 'timezone' => '364',
  7415. 'name' => 'Europe/Simferopol',
  7416. 'offset' => '02:00:00',
  7417. 'offset_dst' => '03:00:00',
  7418. 'dst_region' => '13',
  7419. 'is_dst' => '0',
  7420. ))
  7421. ->values(array(
  7422. 'timezone' => '365',
  7423. 'name' => 'Europe/Skopje',
  7424. 'offset' => '01:00:00',
  7425. 'offset_dst' => '02:00:00',
  7426. 'dst_region' => '13',
  7427. 'is_dst' => '0',
  7428. ))
  7429. ->values(array(
  7430. 'timezone' => '366',
  7431. 'name' => 'Europe/Sofia',
  7432. 'offset' => '02:00:00',
  7433. 'offset_dst' => '03:00:00',
  7434. 'dst_region' => '13',
  7435. 'is_dst' => '0',
  7436. ))
  7437. ->values(array(
  7438. 'timezone' => '367',
  7439. 'name' => 'Europe/Stockholm',
  7440. 'offset' => '01:00:00',
  7441. 'offset_dst' => '02:00:00',
  7442. 'dst_region' => '13',
  7443. 'is_dst' => '0',
  7444. ))
  7445. ->values(array(
  7446. 'timezone' => '368',
  7447. 'name' => 'Europe/Tallinn',
  7448. 'offset' => '02:00:00',
  7449. 'offset_dst' => '02:00:00',
  7450. 'dst_region' => '0',
  7451. 'is_dst' => '0',
  7452. ))
  7453. ->values(array(
  7454. 'timezone' => '369',
  7455. 'name' => 'Europe/Tirane',
  7456. 'offset' => '01:00:00',
  7457. 'offset_dst' => '02:00:00',
  7458. 'dst_region' => '13',
  7459. 'is_dst' => '0',
  7460. ))
  7461. ->values(array(
  7462. 'timezone' => '370',
  7463. 'name' => 'Europe/Tiraspol',
  7464. 'offset' => '02:00:00',
  7465. 'offset_dst' => '03:00:00',
  7466. 'dst_region' => '13',
  7467. 'is_dst' => '0',
  7468. ))
  7469. ->values(array(
  7470. 'timezone' => '371',
  7471. 'name' => 'Europe/Uzhgorod',
  7472. 'offset' => '02:00:00',
  7473. 'offset_dst' => '03:00:00',
  7474. 'dst_region' => '13',
  7475. 'is_dst' => '0',
  7476. ))
  7477. ->values(array(
  7478. 'timezone' => '372',
  7479. 'name' => 'Europe/Vaduz',
  7480. 'offset' => '01:00:00',
  7481. 'offset_dst' => '02:00:00',
  7482. 'dst_region' => '13',
  7483. 'is_dst' => '0',
  7484. ))
  7485. ->values(array(
  7486. 'timezone' => '373',
  7487. 'name' => 'Europe/Vatican',
  7488. 'offset' => '01:00:00',
  7489. 'offset_dst' => '02:00:00',
  7490. 'dst_region' => '13',
  7491. 'is_dst' => '0',
  7492. ))
  7493. ->values(array(
  7494. 'timezone' => '374',
  7495. 'name' => 'Europe/Vienna',
  7496. 'offset' => '01:00:00',
  7497. 'offset_dst' => '02:00:00',
  7498. 'dst_region' => '13',
  7499. 'is_dst' => '0',
  7500. ))
  7501. ->values(array(
  7502. 'timezone' => '375',
  7503. 'name' => 'Europe/Vilnius',
  7504. 'offset' => '02:00:00',
  7505. 'offset_dst' => '02:00:00',
  7506. 'dst_region' => '0',
  7507. 'is_dst' => '0',
  7508. ))
  7509. ->values(array(
  7510. 'timezone' => '376',
  7511. 'name' => 'Europe/Warsaw',
  7512. 'offset' => '01:00:00',
  7513. 'offset_dst' => '02:00:00',
  7514. 'dst_region' => '13',
  7515. 'is_dst' => '0',
  7516. ))
  7517. ->values(array(
  7518. 'timezone' => '377',
  7519. 'name' => 'Europe/Zagreb',
  7520. 'offset' => '01:00:00',
  7521. 'offset_dst' => '02:00:00',
  7522. 'dst_region' => '13',
  7523. 'is_dst' => '0',
  7524. ))
  7525. ->values(array(
  7526. 'timezone' => '378',
  7527. 'name' => 'Europe/Zaporozhye',
  7528. 'offset' => '02:00:00',
  7529. 'offset_dst' => '03:00:00',
  7530. 'dst_region' => '13',
  7531. 'is_dst' => '0',
  7532. ))
  7533. ->values(array(
  7534. 'timezone' => '379',
  7535. 'name' => 'Europe/Zurich',
  7536. 'offset' => '01:00:00',
  7537. 'offset_dst' => '02:00:00',
  7538. 'dst_region' => '13',
  7539. 'is_dst' => '0',
  7540. ))
  7541. ->values(array(
  7542. 'timezone' => '380',
  7543. 'name' => 'GB',
  7544. 'offset' => '00:00:00',
  7545. 'offset_dst' => '01:00:00',
  7546. 'dst_region' => '13',
  7547. 'is_dst' => '0',
  7548. ))
  7549. ->values(array(
  7550. 'timezone' => '381',
  7551. 'name' => 'GB-Eire',
  7552. 'offset' => '00:00:00',
  7553. 'offset_dst' => '01:00:00',
  7554. 'dst_region' => '13',
  7555. 'is_dst' => '0',
  7556. ))
  7557. ->values(array(
  7558. 'timezone' => '383',
  7559. 'name' => 'Hongkong',
  7560. 'offset' => '08:00:00',
  7561. 'offset_dst' => '08:00:00',
  7562. 'dst_region' => '0',
  7563. 'is_dst' => '0',
  7564. ))
  7565. ->values(array(
  7566. 'timezone' => '384',
  7567. 'name' => 'Indian/Antananarivo',
  7568. 'offset' => '03:00:00',
  7569. 'offset_dst' => '03:00:00',
  7570. 'dst_region' => '0',
  7571. 'is_dst' => '0',
  7572. ))
  7573. ->values(array(
  7574. 'timezone' => '385',
  7575. 'name' => 'Indian/Chagos',
  7576. 'offset' => '05:00:00',
  7577. 'offset_dst' => '05:00:00',
  7578. 'dst_region' => '0',
  7579. 'is_dst' => '0',
  7580. ))
  7581. ->values(array(
  7582. 'timezone' => '386',
  7583. 'name' => 'Indian/Christmas',
  7584. 'offset' => '07:00:00',
  7585. 'offset_dst' => '07:00:00',
  7586. 'dst_region' => '0',
  7587. 'is_dst' => '0',
  7588. ))
  7589. ->values(array(
  7590. 'timezone' => '387',
  7591. 'name' => 'Indian/Cocos',
  7592. 'offset' => '06:30:00',
  7593. 'offset_dst' => '06:30:00',
  7594. 'dst_region' => '0',
  7595. 'is_dst' => '0',
  7596. ))
  7597. ->values(array(
  7598. 'timezone' => '388',
  7599. 'name' => 'Indian/Comoro',
  7600. 'offset' => '03:00:00',
  7601. 'offset_dst' => '03:00:00',
  7602. 'dst_region' => '0',
  7603. 'is_dst' => '0',
  7604. ))
  7605. ->values(array(
  7606. 'timezone' => '389',
  7607. 'name' => 'Indian/Kerguelen',
  7608. 'offset' => '05:00:00',
  7609. 'offset_dst' => '05:00:00',
  7610. 'dst_region' => '0',
  7611. 'is_dst' => '0',
  7612. ))
  7613. ->values(array(
  7614. 'timezone' => '390',
  7615. 'name' => 'Indian/Mahe',
  7616. 'offset' => '04:00:00',
  7617. 'offset_dst' => '04:00:00',
  7618. 'dst_region' => '0',
  7619. 'is_dst' => '0',
  7620. ))
  7621. ->values(array(
  7622. 'timezone' => '391',
  7623. 'name' => 'Indian/Maldives',
  7624. 'offset' => '05:00:00',
  7625. 'offset_dst' => '05:00:00',
  7626. 'dst_region' => '0',
  7627. 'is_dst' => '0',
  7628. ))
  7629. ->values(array(
  7630. 'timezone' => '392',
  7631. 'name' => 'Indian/Mauritius',
  7632. 'offset' => '04:00:00',
  7633. 'offset_dst' => '04:00:00',
  7634. 'dst_region' => '0',
  7635. 'is_dst' => '0',
  7636. ))
  7637. ->values(array(
  7638. 'timezone' => '393',
  7639. 'name' => 'Indian/Mayotte',
  7640. 'offset' => '03:00:00',
  7641. 'offset_dst' => '03:00:00',
  7642. 'dst_region' => '0',
  7643. 'is_dst' => '0',
  7644. ))
  7645. ->values(array(
  7646. 'timezone' => '394',
  7647. 'name' => 'Indian/Reunion',
  7648. 'offset' => '04:00:00',
  7649. 'offset_dst' => '04:00:00',
  7650. 'dst_region' => '0',
  7651. 'is_dst' => '0',
  7652. ))
  7653. ->values(array(
  7654. 'timezone' => '395',
  7655. 'name' => 'Iran',
  7656. 'offset' => '03:30:00',
  7657. 'offset_dst' => '04:30:00',
  7658. 'dst_region' => '8',
  7659. 'is_dst' => '0',
  7660. ))
  7661. ->values(array(
  7662. 'timezone' => '396',
  7663. 'name' => 'Israel',
  7664. 'offset' => '02:00:00',
  7665. 'offset_dst' => '03:00:00',
  7666. 'dst_region' => '5',
  7667. 'is_dst' => '0',
  7668. ))
  7669. ->values(array(
  7670. 'timezone' => '397',
  7671. 'name' => 'Jamaica',
  7672. 'offset' => '-05:00:00',
  7673. 'offset_dst' => '-05:00:00',
  7674. 'dst_region' => '0',
  7675. 'is_dst' => '0',
  7676. ))
  7677. ->values(array(
  7678. 'timezone' => '398',
  7679. 'name' => 'Japan',
  7680. 'offset' => '09:00:00',
  7681. 'offset_dst' => '09:00:00',
  7682. 'dst_region' => '0',
  7683. 'is_dst' => '0',
  7684. ))
  7685. ->values(array(
  7686. 'timezone' => '399',
  7687. 'name' => 'Kwajalein',
  7688. 'offset' => '12:00:00',
  7689. 'offset_dst' => '12:00:00',
  7690. 'dst_region' => '0',
  7691. 'is_dst' => '0',
  7692. ))
  7693. ->values(array(
  7694. 'timezone' => '400',
  7695. 'name' => 'Libya',
  7696. 'offset' => '02:00:00',
  7697. 'offset_dst' => '02:00:00',
  7698. 'dst_region' => '0',
  7699. 'is_dst' => '0',
  7700. ))
  7701. ->values(array(
  7702. 'timezone' => '404',
  7703. 'name' => 'Mexico/BajaNorte',
  7704. 'offset' => '-08:00:00',
  7705. 'offset_dst' => '-07:00:00',
  7706. 'dst_region' => '15',
  7707. 'is_dst' => '0',
  7708. ))
  7709. ->values(array(
  7710. 'timezone' => '405',
  7711. 'name' => 'Mexico/BajaSur',
  7712. 'offset' => '-07:00:00',
  7713. 'offset_dst' => '-06:00:00',
  7714. 'dst_region' => '15',
  7715. 'is_dst' => '0',
  7716. ))
  7717. ->values(array(
  7718. 'timezone' => '406',
  7719. 'name' => 'Mexico/General',
  7720. 'offset' => '-06:00:00',
  7721. 'offset_dst' => '-05:00:00',
  7722. 'dst_region' => '15',
  7723. 'is_dst' => '0',
  7724. ))
  7725. ->values(array(
  7726. 'timezone' => '407',
  7727. 'name' => 'Mideast/Riyadh87',
  7728. 'offset' => '03:07:04',
  7729. 'offset_dst' => '03:07:04',
  7730. 'dst_region' => '0',
  7731. 'is_dst' => '0',
  7732. ))
  7733. ->values(array(
  7734. 'timezone' => '408',
  7735. 'name' => 'Mideast/Riyadh88',
  7736. 'offset' => '03:07:04',
  7737. 'offset_dst' => '03:07:04',
  7738. 'dst_region' => '0',
  7739. 'is_dst' => '0',
  7740. ))
  7741. ->values(array(
  7742. 'timezone' => '409',
  7743. 'name' => 'Mideast/Riyadh89',
  7744. 'offset' => '03:07:04',
  7745. 'offset_dst' => '03:07:04',
  7746. 'dst_region' => '0',
  7747. 'is_dst' => '0',
  7748. ))
  7749. ->values(array(
  7750. 'timezone' => '410',
  7751. 'name' => 'NZ',
  7752. 'offset' => '13:00:00',
  7753. 'offset_dst' => '12:00:00',
  7754. 'dst_region' => '11',
  7755. 'is_dst' => '0',
  7756. ))
  7757. ->values(array(
  7758. 'timezone' => '412',
  7759. 'name' => 'Navajo',
  7760. 'offset' => '-07:00:00',
  7761. 'offset_dst' => '-06:00:00',
  7762. 'dst_region' => '15',
  7763. 'is_dst' => '0',
  7764. ))
  7765. ->values(array(
  7766. 'timezone' => '415',
  7767. 'name' => 'Pacific/Apia',
  7768. 'offset' => '-11:00:00',
  7769. 'offset_dst' => '-11:00:00',
  7770. 'dst_region' => '0',
  7771. 'is_dst' => '0',
  7772. ))
  7773. ->values(array(
  7774. 'timezone' => '416',
  7775. 'name' => 'Pacific/Auckland',
  7776. 'offset' => '13:00:00',
  7777. 'offset_dst' => '12:00:00',
  7778. 'dst_region' => '15',
  7779. 'is_dst' => '0',
  7780. ))
  7781. ->values(array(
  7782. 'timezone' => '417',
  7783. 'name' => 'Pacific/Chatham',
  7784. 'offset' => '13:45:00',
  7785. 'offset_dst' => '12:45:00',
  7786. 'dst_region' => '15',
  7787. 'is_dst' => '0',
  7788. ))
  7789. ->values(array(
  7790. 'timezone' => '418',
  7791. 'name' => 'Pacific/Easter',
  7792. 'offset' => '-05:00:00',
  7793. 'offset_dst' => '-06:00:00',
  7794. 'dst_region' => '0',
  7795. 'is_dst' => '0',
  7796. ))
  7797. ->values(array(
  7798. 'timezone' => '419',
  7799. 'name' => 'Pacific/Efate',
  7800. 'offset' => '11:00:00',
  7801. 'offset_dst' => '11:00:00',
  7802. 'dst_region' => '0',
  7803. 'is_dst' => '0',
  7804. ))
  7805. ->values(array(
  7806. 'timezone' => '420',
  7807. 'name' => 'Pacific/Enderbury',
  7808. 'offset' => '13:00:00',
  7809. 'offset_dst' => '13:00:00',
  7810. 'dst_region' => '0',
  7811. 'is_dst' => '0',
  7812. ))
  7813. ->values(array(
  7814. 'timezone' => '421',
  7815. 'name' => 'Pacific/Fakaofo',
  7816. 'offset' => '-10:00:00',
  7817. 'offset_dst' => '-10:00:00',
  7818. 'dst_region' => '0',
  7819. 'is_dst' => '0',
  7820. ))
  7821. ->values(array(
  7822. 'timezone' => '422',
  7823. 'name' => 'Pacific/Fiji',
  7824. 'offset' => '12:00:00',
  7825. 'offset_dst' => '12:00:00',
  7826. 'dst_region' => '0',
  7827. 'is_dst' => '0',
  7828. ))
  7829. ->values(array(
  7830. 'timezone' => '423',
  7831. 'name' => 'Pacific/Funafuti',
  7832. 'offset' => '12:00:00',
  7833. 'offset_dst' => '12:00:00',
  7834. 'dst_region' => '0',
  7835. 'is_dst' => '0',
  7836. ))
  7837. ->values(array(
  7838. 'timezone' => '424',
  7839. 'name' => 'Pacific/Galapagos',
  7840. 'offset' => '-06:00:00',
  7841. 'offset_dst' => '-06:00:00',
  7842. 'dst_region' => '0',
  7843. 'is_dst' => '0',
  7844. ))
  7845. ->values(array(
  7846. 'timezone' => '425',
  7847. 'name' => 'Pacific/Gambier',
  7848. 'offset' => '-09:00:00',
  7849. 'offset_dst' => '-09:00:00',
  7850. 'dst_region' => '0',
  7851. 'is_dst' => '0',
  7852. ))
  7853. ->values(array(
  7854. 'timezone' => '426',
  7855. 'name' => 'Pacific/Guadalcanal',
  7856. 'offset' => '11:00:00',
  7857. 'offset_dst' => '11:00:00',
  7858. 'dst_region' => '0',
  7859. 'is_dst' => '0',
  7860. ))
  7861. ->values(array(
  7862. 'timezone' => '427',
  7863. 'name' => 'Pacific/Guam',
  7864. 'offset' => '10:00:00',
  7865. 'offset_dst' => '10:00:00',
  7866. 'dst_region' => '0',
  7867. 'is_dst' => '0',
  7868. ))
  7869. ->values(array(
  7870. 'timezone' => '428',
  7871. 'name' => 'Pacific/Honolulu',
  7872. 'offset' => '-10:00:00',
  7873. 'offset_dst' => '-10:00:00',
  7874. 'dst_region' => '0',
  7875. 'is_dst' => '0',
  7876. ))
  7877. ->values(array(
  7878. 'timezone' => '429',
  7879. 'name' => 'Pacific/Johnston',
  7880. 'offset' => '-10:00:00',
  7881. 'offset_dst' => '-10:00:00',
  7882. 'dst_region' => '0',
  7883. 'is_dst' => '0',
  7884. ))
  7885. ->values(array(
  7886. 'timezone' => '430',
  7887. 'name' => 'Pacific/Kiritimati',
  7888. 'offset' => '14:00:00',
  7889. 'offset_dst' => '14:00:00',
  7890. 'dst_region' => '0',
  7891. 'is_dst' => '0',
  7892. ))
  7893. ->values(array(
  7894. 'timezone' => '431',
  7895. 'name' => 'Pacific/Kosrae',
  7896. 'offset' => '11:00:00',
  7897. 'offset_dst' => '11:00:00',
  7898. 'dst_region' => '0',
  7899. 'is_dst' => '0',
  7900. ))
  7901. ->values(array(
  7902. 'timezone' => '432',
  7903. 'name' => 'Pacific/Kwajalein',
  7904. 'offset' => '12:00:00',
  7905. 'offset_dst' => '12:00:00',
  7906. 'dst_region' => '0',
  7907. 'is_dst' => '0',
  7908. ))
  7909. ->values(array(
  7910. 'timezone' => '433',
  7911. 'name' => 'Pacific/Majuro',
  7912. 'offset' => '12:00:00',
  7913. 'offset_dst' => '12:00:00',
  7914. 'dst_region' => '0',
  7915. 'is_dst' => '0',
  7916. ))
  7917. ->values(array(
  7918. 'timezone' => '434',
  7919. 'name' => 'Pacific/Marquesas',
  7920. 'offset' => '-09:30:00',
  7921. 'offset_dst' => '-09:30:00',
  7922. 'dst_region' => '0',
  7923. 'is_dst' => '0',
  7924. ))
  7925. ->values(array(
  7926. 'timezone' => '435',
  7927. 'name' => 'Pacific/Midway',
  7928. 'offset' => '-11:00:00',
  7929. 'offset_dst' => '-11:00:00',
  7930. 'dst_region' => '0',
  7931. 'is_dst' => '0',
  7932. ))
  7933. ->values(array(
  7934. 'timezone' => '436',
  7935. 'name' => 'Pacific/Nauru',
  7936. 'offset' => '12:00:00',
  7937. 'offset_dst' => '12:00:00',
  7938. 'dst_region' => '0',
  7939. 'is_dst' => '0',
  7940. ))
  7941. ->values(array(
  7942. 'timezone' => '437',
  7943. 'name' => 'Pacific/Niue',
  7944. 'offset' => '-11:00:00',
  7945. 'offset_dst' => '-11:00:00',
  7946. 'dst_region' => '0',
  7947. 'is_dst' => '0',
  7948. ))
  7949. ->values(array(
  7950. 'timezone' => '438',
  7951. 'name' => 'Pacific/Norfolk',
  7952. 'offset' => '11:30:00',
  7953. 'offset_dst' => '11:30:00',
  7954. 'dst_region' => '0',
  7955. 'is_dst' => '0',
  7956. ))
  7957. ->values(array(
  7958. 'timezone' => '439',
  7959. 'name' => 'Pacific/Noumea',
  7960. 'offset' => '11:00:00',
  7961. 'offset_dst' => '11:00:00',
  7962. 'dst_region' => '0',
  7963. 'is_dst' => '0',
  7964. ))
  7965. ->values(array(
  7966. 'timezone' => '440',
  7967. 'name' => 'Pacific/Pago Pago',
  7968. 'offset' => '-11:00:00',
  7969. 'offset_dst' => '-11:00:00',
  7970. 'dst_region' => '0',
  7971. 'is_dst' => '0',
  7972. ))
  7973. ->values(array(
  7974. 'timezone' => '441',
  7975. 'name' => 'Pacific/Palau',
  7976. 'offset' => '09:00:00',
  7977. 'offset_dst' => '09:00:00',
  7978. 'dst_region' => '0',
  7979. 'is_dst' => '0',
  7980. ))
  7981. ->values(array(
  7982. 'timezone' => '442',
  7983. 'name' => 'Pacific/Pitcairn',
  7984. 'offset' => '-08:00:00',
  7985. 'offset_dst' => '-08:00:00',
  7986. 'dst_region' => '0',
  7987. 'is_dst' => '0',
  7988. ))
  7989. ->values(array(
  7990. 'timezone' => '443',
  7991. 'name' => 'Pacific/Ponape',
  7992. 'offset' => '11:00:00',
  7993. 'offset_dst' => '11:00:00',
  7994. 'dst_region' => '0',
  7995. 'is_dst' => '0',
  7996. ))
  7997. ->values(array(
  7998. 'timezone' => '444',
  7999. 'name' => 'Pacific/Port Moresby',
  8000. 'offset' => '10:00:00',
  8001. 'offset_dst' => '10:00:00',
  8002. 'dst_region' => '0',
  8003. 'is_dst' => '0',
  8004. ))
  8005. ->values(array(
  8006. 'timezone' => '445',
  8007. 'name' => 'Pacific/Rarotonga',
  8008. 'offset' => '-10:00:00',
  8009. 'offset_dst' => '-10:00:00',
  8010. 'dst_region' => '0',
  8011. 'is_dst' => '0',
  8012. ))
  8013. ->values(array(
  8014. 'timezone' => '446',
  8015. 'name' => 'Pacific/Saipan',
  8016. 'offset' => '10:00:00',
  8017. 'offset_dst' => '10:00:00',
  8018. 'dst_region' => '0',
  8019. 'is_dst' => '0',
  8020. ))
  8021. ->values(array(
  8022. 'timezone' => '447',
  8023. 'name' => 'Pacific/Samoa',
  8024. 'offset' => '-11:00:00',
  8025. 'offset_dst' => '-11:00:00',
  8026. 'dst_region' => '0',
  8027. 'is_dst' => '0',
  8028. ))
  8029. ->values(array(
  8030. 'timezone' => '448',
  8031. 'name' => 'Pacific/Tahiti',
  8032. 'offset' => '-10:00:00',
  8033. 'offset_dst' => '-10:00:00',
  8034. 'dst_region' => '0',
  8035. 'is_dst' => '0',
  8036. ))
  8037. ->values(array(
  8038. 'timezone' => '449',
  8039. 'name' => 'Pacific/Tarawa',
  8040. 'offset' => '12:00:00',
  8041. 'offset_dst' => '12:00:00',
  8042. 'dst_region' => '0',
  8043. 'is_dst' => '0',
  8044. ))
  8045. ->values(array(
  8046. 'timezone' => '450',
  8047. 'name' => 'Pacific/Tongatapu',
  8048. 'offset' => '13:00:00',
  8049. 'offset_dst' => '13:00:00',
  8050. 'dst_region' => '0',
  8051. 'is_dst' => '0',
  8052. ))
  8053. ->values(array(
  8054. 'timezone' => '451',
  8055. 'name' => 'Pacific/Truk',
  8056. 'offset' => '10:00:00',
  8057. 'offset_dst' => '10:00:00',
  8058. 'dst_region' => '0',
  8059. 'is_dst' => '0',
  8060. ))
  8061. ->values(array(
  8062. 'timezone' => '452',
  8063. 'name' => 'Pacific/Wake',
  8064. 'offset' => '12:00:00',
  8065. 'offset_dst' => '12:00:00',
  8066. 'dst_region' => '0',
  8067. 'is_dst' => '0',
  8068. ))
  8069. ->values(array(
  8070. 'timezone' => '453',
  8071. 'name' => 'Pacific/Wallis',
  8072. 'offset' => '12:00:00',
  8073. 'offset_dst' => '12:00:00',
  8074. 'dst_region' => '0',
  8075. 'is_dst' => '0',
  8076. ))
  8077. ->values(array(
  8078. 'timezone' => '454',
  8079. 'name' => 'Pacific/Yap',
  8080. 'offset' => '10:00:00',
  8081. 'offset_dst' => '10:00:00',
  8082. 'dst_region' => '0',
  8083. 'is_dst' => '0',
  8084. ))
  8085. ->values(array(
  8086. 'timezone' => '455',
  8087. 'name' => 'Poland',
  8088. 'offset' => '01:00:00',
  8089. 'offset_dst' => '02:00:00',
  8090. 'dst_region' => '13',
  8091. 'is_dst' => '0',
  8092. ))
  8093. ->values(array(
  8094. 'timezone' => '456',
  8095. 'name' => 'Portugal',
  8096. 'offset' => '00:00:00',
  8097. 'offset_dst' => '01:00:00',
  8098. 'dst_region' => '13',
  8099. 'is_dst' => '0',
  8100. ))
  8101. ->values(array(
  8102. 'timezone' => '459',
  8103. 'name' => 'Singapore',
  8104. 'offset' => '08:00:00',
  8105. 'offset_dst' => '08:00:00',
  8106. 'dst_region' => '0',
  8107. 'is_dst' => '0',
  8108. ))
  8109. ->values(array(
  8110. 'timezone' => '473',
  8111. 'name' => 'Turkey',
  8112. 'offset' => '02:00:00',
  8113. 'offset_dst' => '03:00:00',
  8114. 'dst_region' => '13',
  8115. 'is_dst' => '0',
  8116. ))
  8117. ->values(array(
  8118. 'timezone' => '474',
  8119. 'name' => 'US/Alaska',
  8120. 'offset' => '-09:00:00',
  8121. 'offset_dst' => '-08:00:00',
  8122. 'dst_region' => '15',
  8123. 'is_dst' => '0',
  8124. ))
  8125. ->values(array(
  8126. 'timezone' => '475',
  8127. 'name' => 'US/Aleutian',
  8128. 'offset' => '-10:00:00',
  8129. 'offset_dst' => '-09:00:00',
  8130. 'dst_region' => '15',
  8131. 'is_dst' => '0',
  8132. ))
  8133. ->values(array(
  8134. 'timezone' => '476',
  8135. 'name' => 'US/Arizona',
  8136. 'offset' => '-07:00:00',
  8137. 'offset_dst' => '-07:00:00',
  8138. 'dst_region' => '0',
  8139. 'is_dst' => '0',
  8140. ))
  8141. ->values(array(
  8142. 'timezone' => '477',
  8143. 'name' => 'US/Central',
  8144. 'offset' => '-06:00:00',
  8145. 'offset_dst' => '-05:00:00',
  8146. 'dst_region' => '15',
  8147. 'is_dst' => '0',
  8148. ))
  8149. ->values(array(
  8150. 'timezone' => '478',
  8151. 'name' => 'US/East-Indiana',
  8152. 'offset' => '-05:00:00',
  8153. 'offset_dst' => '-05:00:00',
  8154. 'dst_region' => '0',
  8155. 'is_dst' => '0',
  8156. ))
  8157. ->values(array(
  8158. 'timezone' => '479',
  8159. 'name' => 'US/Eastern',
  8160. 'offset' => '-05:00:00',
  8161. 'offset_dst' => '-04:00:00',
  8162. 'dst_region' => '15',
  8163. 'is_dst' => '0',
  8164. ))
  8165. ->values(array(
  8166. 'timezone' => '480',
  8167. 'name' => 'US/Hawaii',
  8168. 'offset' => '-10:00:00',
  8169. 'offset_dst' => '-10:00:00',
  8170. 'dst_region' => '0',
  8171. 'is_dst' => '0',
  8172. ))
  8173. ->values(array(
  8174. 'timezone' => '481',
  8175. 'name' => 'US/Indiana-Starke',
  8176. 'offset' => '-05:00:00',
  8177. 'offset_dst' => '-05:00:00',
  8178. 'dst_region' => '0',
  8179. 'is_dst' => '0',
  8180. ))
  8181. ->values(array(
  8182. 'timezone' => '482',
  8183. 'name' => 'US/Michigan',
  8184. 'offset' => '-05:00:00',
  8185. 'offset_dst' => '-04:00:00',
  8186. 'dst_region' => '15',
  8187. 'is_dst' => '0',
  8188. ))
  8189. ->values(array(
  8190. 'timezone' => '483',
  8191. 'name' => 'US/Mountain',
  8192. 'offset' => '-07:00:00',
  8193. 'offset_dst' => '-06:00:00',
  8194. 'dst_region' => '15',
  8195. 'is_dst' => '0',
  8196. ))
  8197. ->values(array(
  8198. 'timezone' => '484',
  8199. 'name' => 'US/Pacific',
  8200. 'offset' => '-08:00:00',
  8201. 'offset_dst' => '-07:00:00',
  8202. 'dst_region' => '15',
  8203. 'is_dst' => '0',
  8204. ))
  8205. ->values(array(
  8206. 'timezone' => '485',
  8207. 'name' => 'US/Samoa',
  8208. 'offset' => '-11:00:00',
  8209. 'offset_dst' => '-11:00:00',
  8210. 'dst_region' => '0',
  8211. 'is_dst' => '0',
  8212. ))
  8213. ->values(array(
  8214. 'timezone' => '486',
  8215. 'name' => 'Pacific/French Polynesia-Marquesas Islands',
  8216. 'offset' => '-09:30:00',
  8217. 'offset_dst' => '-09:30:00',
  8218. 'dst_region' => '0',
  8219. 'is_dst' => '0',
  8220. ))
  8221. ->values(array(
  8222. 'timezone' => '487',
  8223. 'name' => 'Etc/GMT',
  8224. 'offset' => '00:00:00',
  8225. 'offset_dst' => '00:00:00',
  8226. 'dst_region' => '0',
  8227. 'is_dst' => '0',
  8228. ))
  8229. ->execute();
  8230. $connection->schema()->createTable('files', array(
  8231. 'fields' => array(
  8232. 'fid' => array(
  8233. 'type' => 'serial',
  8234. 'not null' => TRUE,
  8235. 'size' => 'normal',
  8236. 'unsigned' => TRUE,
  8237. ),
  8238. 'uid' => array(
  8239. 'type' => 'int',
  8240. 'not null' => TRUE,
  8241. 'size' => 'normal',
  8242. 'default' => '0',
  8243. 'unsigned' => TRUE,
  8244. ),
  8245. 'filename' => array(
  8246. 'type' => 'varchar',
  8247. 'not null' => TRUE,
  8248. 'length' => '255',
  8249. 'default' => '',
  8250. ),
  8251. 'filepath' => array(
  8252. 'type' => 'varchar',
  8253. 'not null' => TRUE,
  8254. 'length' => '255',
  8255. 'default' => '',
  8256. ),
  8257. 'filemime' => array(
  8258. 'type' => 'varchar',
  8259. 'not null' => TRUE,
  8260. 'length' => '255',
  8261. 'default' => '',
  8262. ),
  8263. 'filesize' => array(
  8264. 'type' => 'int',
  8265. 'not null' => TRUE,
  8266. 'size' => 'normal',
  8267. 'default' => '0',
  8268. 'unsigned' => TRUE,
  8269. ),
  8270. 'status' => array(
  8271. 'type' => 'int',
  8272. 'not null' => TRUE,
  8273. 'size' => 'normal',
  8274. 'default' => '0',
  8275. ),
  8276. 'timestamp' => array(
  8277. 'type' => 'int',
  8278. 'not null' => TRUE,
  8279. 'size' => 'normal',
  8280. 'default' => '0',
  8281. 'unsigned' => TRUE,
  8282. ),
  8283. ),
  8284. 'primary key' => array(
  8285. 'fid',
  8286. ),
  8287. 'mysql_character_set' => 'utf8',
  8288. ));
  8289. $connection->insert('files')
  8290. ->fields(array(
  8291. 'fid',
  8292. 'uid',
  8293. 'filename',
  8294. 'filepath',
  8295. 'filemime',
  8296. 'filesize',
  8297. 'status',
  8298. 'timestamp',
  8299. ))
  8300. ->values(array(
  8301. 'fid' => '1',
  8302. 'uid' => '1',
  8303. 'filename' => 'Image1.png',
  8304. 'filepath' => 'core/tests/fixtures/files/image-1.png',
  8305. 'filemime' => 'image/png',
  8306. 'filesize' => '39325',
  8307. 'status' => '1',
  8308. 'timestamp' => '1388880660',
  8309. ))
  8310. ->values(array(
  8311. 'fid' => '2',
  8312. 'uid' => '1',
  8313. 'filename' => 'Image2.jpg',
  8314. 'filepath' => 'core/tests/fixtures/files/image-2.jpg',
  8315. 'filemime' => 'image/jpeg',
  8316. 'filesize' => '1831',
  8317. 'status' => '1',
  8318. 'timestamp' => '1388880664',
  8319. ))
  8320. ->values(array(
  8321. 'fid' => '3',
  8322. 'uid' => '1',
  8323. 'filename' => 'Image-test.gif',
  8324. 'filepath' => 'core/tests/fixtures/files/image-test.gif',
  8325. 'filemime' => 'image/jpeg',
  8326. 'filesize' => '183',
  8327. 'status' => '1',
  8328. 'timestamp' => '1388880668',
  8329. ))
  8330. ->values(array(
  8331. 'fid' => '5',
  8332. 'uid' => '1',
  8333. 'filename' => 'html-1.txt',
  8334. 'filepath' => 'core/tests/fixtures/files/html-1.txt',
  8335. 'filemime' => 'text/plain',
  8336. 'filesize' => '24',
  8337. 'status' => '1',
  8338. 'timestamp' => '1420858106',
  8339. ))
  8340. ->values(array(
  8341. 'fid' => '6',
  8342. 'uid' => '1',
  8343. 'filename' => 'some-temp-file.jpg',
  8344. 'filepath' => '/tmp/some-temp-file.jpg',
  8345. 'filemime' => 'image/jpeg',
  8346. 'filesize' => '24',
  8347. 'status' => '0',
  8348. 'timestamp' => '1420858106',
  8349. ))
  8350. ->execute();
  8351. $connection->schema()->createTable('filter_formats', array(
  8352. 'fields' => array(
  8353. 'format' => array(
  8354. 'type' => 'serial',
  8355. 'not null' => TRUE,
  8356. 'size' => 'normal',
  8357. ),
  8358. 'name' => array(
  8359. 'type' => 'varchar',
  8360. 'not null' => TRUE,
  8361. 'length' => '255',
  8362. 'default' => '',
  8363. ),
  8364. 'roles' => array(
  8365. 'type' => 'varchar',
  8366. 'not null' => TRUE,
  8367. 'length' => '255',
  8368. 'default' => '',
  8369. ),
  8370. 'cache' => array(
  8371. 'type' => 'int',
  8372. 'not null' => TRUE,
  8373. 'size' => 'normal',
  8374. 'default' => '0',
  8375. ),
  8376. ),
  8377. 'primary key' => array(
  8378. 'format',
  8379. ),
  8380. 'mysql_character_set' => 'utf8',
  8381. ));
  8382. $connection->insert('filter_formats')
  8383. ->fields(array(
  8384. 'format',
  8385. 'name',
  8386. 'roles',
  8387. 'cache',
  8388. ))
  8389. ->values(array(
  8390. 'format' => '1',
  8391. 'name' => 'Filtered HTML',
  8392. 'roles' => ',1,2,',
  8393. 'cache' => '1',
  8394. ))
  8395. ->values(array(
  8396. 'format' => '2',
  8397. 'name' => 'Full HTML',
  8398. 'roles' => '3',
  8399. 'cache' => '1',
  8400. ))
  8401. ->values(array(
  8402. 'format' => '3',
  8403. 'name' => 'Escape HTML Filter',
  8404. 'roles' => '',
  8405. 'cache' => '1',
  8406. ))
  8407. ->values(array(
  8408. 'format' => '4',
  8409. 'name' => 'PHP Code',
  8410. 'roles' => ',3,4,5,',
  8411. 'cache' => '0',
  8412. ))
  8413. ->execute();
  8414. $connection->schema()->createTable('filters', array(
  8415. 'fields' => array(
  8416. 'fid' => array(
  8417. 'type' => 'serial',
  8418. 'not null' => TRUE,
  8419. 'size' => 'normal',
  8420. ),
  8421. 'format' => array(
  8422. 'type' => 'int',
  8423. 'not null' => TRUE,
  8424. 'size' => 'normal',
  8425. 'default' => '0',
  8426. ),
  8427. 'module' => array(
  8428. 'type' => 'varchar',
  8429. 'not null' => TRUE,
  8430. 'length' => '64',
  8431. 'default' => '',
  8432. ),
  8433. 'delta' => array(
  8434. 'type' => 'int',
  8435. 'not null' => TRUE,
  8436. 'size' => 'normal',
  8437. 'default' => '0',
  8438. ),
  8439. 'weight' => array(
  8440. 'type' => 'int',
  8441. 'not null' => TRUE,
  8442. 'size' => 'normal',
  8443. 'default' => '0',
  8444. ),
  8445. ),
  8446. 'primary key' => array(
  8447. 'fid',
  8448. ),
  8449. 'mysql_character_set' => 'utf8',
  8450. ));
  8451. $connection->insert('filters')
  8452. ->fields(array(
  8453. 'fid',
  8454. 'format',
  8455. 'module',
  8456. 'delta',
  8457. 'weight',
  8458. ))
  8459. ->values(array(
  8460. 'fid' => '1',
  8461. 'format' => '1',
  8462. 'module' => 'filter',
  8463. 'delta' => '2',
  8464. 'weight' => '0',
  8465. ))
  8466. ->values(array(
  8467. 'fid' => '2',
  8468. 'format' => '1',
  8469. 'module' => 'filter',
  8470. 'delta' => '0',
  8471. 'weight' => '1',
  8472. ))
  8473. ->values(array(
  8474. 'fid' => '3',
  8475. 'format' => '1',
  8476. 'module' => 'filter',
  8477. 'delta' => '1',
  8478. 'weight' => '2',
  8479. ))
  8480. ->values(array(
  8481. 'fid' => '4',
  8482. 'format' => '1',
  8483. 'module' => 'filter',
  8484. 'delta' => '3',
  8485. 'weight' => '10',
  8486. ))
  8487. ->values(array(
  8488. 'fid' => '5',
  8489. 'format' => '2',
  8490. 'module' => 'filter',
  8491. 'delta' => '2',
  8492. 'weight' => '0',
  8493. ))
  8494. ->values(array(
  8495. 'fid' => '6',
  8496. 'format' => '2',
  8497. 'module' => 'filter',
  8498. 'delta' => '1',
  8499. 'weight' => '1',
  8500. ))
  8501. ->values(array(
  8502. 'fid' => '7',
  8503. 'format' => '2',
  8504. 'module' => 'filter',
  8505. 'delta' => '3',
  8506. 'weight' => '10',
  8507. ))
  8508. ->values(array(
  8509. 'fid' => '8',
  8510. 'format' => '6',
  8511. 'module' => 'filter',
  8512. 'delta' => '2',
  8513. 'weight' => '0',
  8514. ))
  8515. ->values(array(
  8516. 'fid' => '9',
  8517. 'format' => '6',
  8518. 'module' => 'filter',
  8519. 'delta' => '0',
  8520. 'weight' => '1',
  8521. ))
  8522. ->values(array(
  8523. 'fid' => '10',
  8524. 'format' => '6',
  8525. 'module' => 'filter',
  8526. 'delta' => '1',
  8527. 'weight' => '2',
  8528. ))
  8529. ->values(array(
  8530. 'fid' => '11',
  8531. 'format' => '6',
  8532. 'module' => 'filter',
  8533. 'delta' => '3',
  8534. 'weight' => '10',
  8535. ))
  8536. ->values(array(
  8537. 'fid' => '16',
  8538. 'format' => '4',
  8539. 'module' => 'php',
  8540. 'delta' => '0',
  8541. 'weight' => '10',
  8542. ))
  8543. ->execute();
  8544. $connection->schema()->createTable('flood', array(
  8545. 'fields' => array(
  8546. 'fid' => array(
  8547. 'type' => 'serial',
  8548. 'not null' => TRUE,
  8549. 'size' => 'normal',
  8550. ),
  8551. 'event' => array(
  8552. 'type' => 'varchar',
  8553. 'not null' => TRUE,
  8554. 'length' => '64',
  8555. 'default' => '',
  8556. ),
  8557. 'hostname' => array(
  8558. 'type' => 'varchar',
  8559. 'not null' => TRUE,
  8560. 'length' => '128',
  8561. 'default' => '',
  8562. ),
  8563. 'timestamp' => array(
  8564. 'type' => 'int',
  8565. 'not null' => TRUE,
  8566. 'size' => 'normal',
  8567. 'default' => '0',
  8568. ),
  8569. ),
  8570. 'primary key' => array(
  8571. 'fid',
  8572. ),
  8573. 'mysql_character_set' => 'utf8',
  8574. ));
  8575. $connection->schema()->createTable('forum', array(
  8576. 'fields' => array(
  8577. 'nid' => array(
  8578. 'type' => 'int',
  8579. 'not null' => TRUE,
  8580. 'size' => 'normal',
  8581. 'default' => '0',
  8582. 'unsigned' => TRUE,
  8583. ),
  8584. 'vid' => array(
  8585. 'type' => 'int',
  8586. 'not null' => TRUE,
  8587. 'size' => 'normal',
  8588. 'default' => '0',
  8589. 'unsigned' => TRUE,
  8590. ),
  8591. 'tid' => array(
  8592. 'type' => 'int',
  8593. 'not null' => TRUE,
  8594. 'size' => 'normal',
  8595. 'default' => '0',
  8596. 'unsigned' => TRUE,
  8597. ),
  8598. ),
  8599. 'primary key' => array(
  8600. 'vid',
  8601. ),
  8602. 'indexes' => array(
  8603. 'nid' => array(
  8604. 'nid',
  8605. ),
  8606. 'tid' => array(
  8607. 'tid',
  8608. ),
  8609. ),
  8610. 'mysql_character_set' => 'utf8',
  8611. ));
  8612. $connection->insert('forum')
  8613. ->fields(array(
  8614. 'nid',
  8615. 'vid',
  8616. 'tid',
  8617. ))
  8618. ->values(array(
  8619. 'nid' => '19',
  8620. 'vid' => '22',
  8621. 'tid' => '8',
  8622. ))
  8623. ->execute();
  8624. $connection->schema()->createTable('history', array(
  8625. 'fields' => array(
  8626. 'uid' => array(
  8627. 'type' => 'int',
  8628. 'not null' => TRUE,
  8629. 'size' => 'normal',
  8630. 'default' => '0',
  8631. ),
  8632. 'nid' => array(
  8633. 'type' => 'int',
  8634. 'not null' => TRUE,
  8635. 'size' => 'normal',
  8636. 'default' => '0',
  8637. ),
  8638. 'timestamp' => array(
  8639. 'type' => 'int',
  8640. 'not null' => TRUE,
  8641. 'size' => 'normal',
  8642. 'default' => '0',
  8643. ),
  8644. ),
  8645. 'primary key' => array(
  8646. 'uid',
  8647. 'nid',
  8648. ),
  8649. 'mysql_character_set' => 'utf8',
  8650. ));
  8651. $connection->insert('history')
  8652. ->fields(array(
  8653. 'uid',
  8654. 'nid',
  8655. 'timestamp',
  8656. ))
  8657. ->values(array(
  8658. 'uid' => '1',
  8659. 'nid' => '1',
  8660. 'timestamp' => '1549874910',
  8661. ))
  8662. ->values(array(
  8663. 'uid' => '1',
  8664. 'nid' => '2',
  8665. 'timestamp' => '1549874910',
  8666. ))
  8667. ->values(array(
  8668. 'uid' => '1',
  8669. 'nid' => '3',
  8670. 'timestamp' => '1457654737',
  8671. ))
  8672. ->values(array(
  8673. 'uid' => '1',
  8674. 'nid' => '9',
  8675. 'timestamp' => '1468384961',
  8676. ))
  8677. ->values(array(
  8678. 'uid' => '1',
  8679. 'nid' => '12',
  8680. 'timestamp' => '1468384823',
  8681. ))
  8682. ->values(array(
  8683. 'uid' => '1',
  8684. 'nid' => '13',
  8685. 'timestamp' => '1468384931',
  8686. ))
  8687. ->values(array(
  8688. 'uid' => '1',
  8689. 'nid' => '14',
  8690. 'timestamp' => '1493066668',
  8691. ))
  8692. ->values(array(
  8693. 'uid' => '1',
  8694. 'nid' => '15',
  8695. 'timestamp' => '1493066677',
  8696. ))
  8697. ->values(array(
  8698. 'uid' => '1',
  8699. 'nid' => '16',
  8700. 'timestamp' => '1493066685',
  8701. ))
  8702. ->values(array(
  8703. 'uid' => '1',
  8704. 'nid' => '17',
  8705. 'timestamp' => '1493066693',
  8706. ))
  8707. ->values(array(
  8708. 'uid' => '1',
  8709. 'nid' => '18',
  8710. 'timestamp' => '1493066711',
  8711. ))
  8712. ->values(array(
  8713. 'uid' => '1',
  8714. 'nid' => '19',
  8715. 'timestamp' => '1501955803',
  8716. ))
  8717. ->values(array(
  8718. 'uid' => '1',
  8719. 'nid' => '21',
  8720. 'timestamp' => '1534014729',
  8721. ))
  8722. ->values(array(
  8723. 'uid' => '1',
  8724. 'nid' => '22',
  8725. 'timestamp' => '1534014763',
  8726. ))
  8727. ->execute();
  8728. $connection->schema()->createTable('i18n_blocks', array(
  8729. 'fields' => array(
  8730. 'ibid' => array(
  8731. 'type' => 'serial',
  8732. 'not null' => TRUE,
  8733. 'size' => 'normal',
  8734. 'unsigned' => TRUE,
  8735. ),
  8736. 'module' => array(
  8737. 'type' => 'varchar',
  8738. 'not null' => TRUE,
  8739. 'length' => '64',
  8740. ),
  8741. 'delta' => array(
  8742. 'type' => 'varchar',
  8743. 'not null' => TRUE,
  8744. 'length' => '32',
  8745. 'default' => '0',
  8746. ),
  8747. 'type' => array(
  8748. 'type' => 'int',
  8749. 'not null' => TRUE,
  8750. 'size' => 'normal',
  8751. 'default' => '0',
  8752. ),
  8753. 'language' => array(
  8754. 'type' => 'varchar',
  8755. 'not null' => TRUE,
  8756. 'length' => '12',
  8757. 'default' => '',
  8758. ),
  8759. ),
  8760. 'primary key' => array(
  8761. 'ibid',
  8762. ),
  8763. 'mysql_character_set' => 'utf8',
  8764. ));
  8765. $connection->insert('i18n_blocks')
  8766. ->fields(array(
  8767. 'ibid',
  8768. 'module',
  8769. 'delta',
  8770. 'type',
  8771. 'language',
  8772. ))
  8773. ->values(array(
  8774. 'ibid' => '1',
  8775. 'module' => 'user',
  8776. 'delta' => '1',
  8777. 'type' => '0',
  8778. 'language' => 'zu',
  8779. ))
  8780. ->values(array(
  8781. 'ibid' => '2',
  8782. 'module' => 'menu',
  8783. 'delta' => 'menu-translation-test',
  8784. 'type' => '0',
  8785. 'language' => 'zu',
  8786. ))
  8787. ->execute();
  8788. $connection->schema()->createTable('i18n_strings', array(
  8789. 'fields' => array(
  8790. 'lid' => array(
  8791. 'type' => 'int',
  8792. 'not null' => TRUE,
  8793. 'size' => 'normal',
  8794. 'default' => '0',
  8795. ),
  8796. 'objectid' => array(
  8797. 'type' => 'varchar',
  8798. 'not null' => TRUE,
  8799. 'length' => '255',
  8800. 'default' => '',
  8801. ),
  8802. 'type' => array(
  8803. 'type' => 'varchar',
  8804. 'not null' => TRUE,
  8805. 'length' => '255',
  8806. 'default' => '',
  8807. ),
  8808. 'property' => array(
  8809. 'type' => 'varchar',
  8810. 'not null' => TRUE,
  8811. 'length' => '255',
  8812. 'default' => '',
  8813. ),
  8814. 'objectindex' => array(
  8815. 'type' => 'int',
  8816. 'not null' => TRUE,
  8817. 'size' => 'normal',
  8818. 'default' => '0',
  8819. ),
  8820. 'format' => array(
  8821. 'type' => 'int',
  8822. 'not null' => TRUE,
  8823. 'size' => 'normal',
  8824. 'default' => '0',
  8825. ),
  8826. ),
  8827. 'primary key' => array(
  8828. 'lid',
  8829. ),
  8830. 'mysql_character_set' => 'utf8',
  8831. ));
  8832. $connection->insert('i18n_strings')
  8833. ->fields(array(
  8834. 'lid',
  8835. 'objectid',
  8836. 'type',
  8837. 'property',
  8838. 'objectindex',
  8839. 'format',
  8840. ))
  8841. ->values(array(
  8842. 'lid' => '504',
  8843. 'objectid' => 'profile_color',
  8844. 'type' => 'field',
  8845. 'property' => 'title',
  8846. 'objectindex' => '0',
  8847. 'format' => '0',
  8848. ))
  8849. ->values(array(
  8850. 'lid' => '505',
  8851. 'objectid' => 'profile_color',
  8852. 'type' => 'field',
  8853. 'property' => 'explanation',
  8854. 'objectindex' => '0',
  8855. 'format' => '0',
  8856. ))
  8857. ->values(array(
  8858. 'lid' => '506',
  8859. 'objectid' => '',
  8860. 'type' => 'category',
  8861. 'property' => '',
  8862. 'objectindex' => '0',
  8863. 'format' => '0',
  8864. ))
  8865. ->values(array(
  8866. 'lid' => '507',
  8867. 'objectid' => 'profile_biography',
  8868. 'type' => 'field',
  8869. 'property' => 'title',
  8870. 'objectindex' => '0',
  8871. 'format' => '0',
  8872. ))
  8873. ->values(array(
  8874. 'lid' => '508',
  8875. 'objectid' => 'profile_biography',
  8876. 'type' => 'field',
  8877. 'property' => 'explanation',
  8878. 'objectindex' => '0',
  8879. 'format' => '0',
  8880. ))
  8881. ->values(array(
  8882. 'lid' => '509',
  8883. 'objectid' => 'profile_sell_Address',
  8884. 'type' => 'field',
  8885. 'property' => 'title',
  8886. 'objectindex' => '0',
  8887. 'format' => '0',
  8888. ))
  8889. ->values(array(
  8890. 'lid' => '510',
  8891. 'objectid' => 'profile_sell_Address',
  8892. 'type' => 'field',
  8893. 'property' => 'explanation',
  8894. 'objectindex' => '0',
  8895. 'format' => '0',
  8896. ))
  8897. ->values(array(
  8898. 'lid' => '511',
  8899. 'objectid' => '',
  8900. 'type' => 'category',
  8901. 'property' => '',
  8902. 'objectindex' => '0',
  8903. 'format' => '0',
  8904. ))
  8905. ->values(array(
  8906. 'lid' => '512',
  8907. 'objectid' => 'profile_sold_to',
  8908. 'type' => 'field',
  8909. 'property' => 'title',
  8910. 'objectindex' => '0',
  8911. 'format' => '0',
  8912. ))
  8913. ->values(array(
  8914. 'lid' => '513',
  8915. 'objectid' => 'profile_sold_to',
  8916. 'type' => 'field',
  8917. 'property' => 'explanation',
  8918. 'objectindex' => '0',
  8919. 'format' => '0',
  8920. ))
  8921. ->values(array(
  8922. 'lid' => '514',
  8923. 'objectid' => 'profile_sold_to',
  8924. 'type' => 'field',
  8925. 'property' => 'options',
  8926. 'objectindex' => '0',
  8927. 'format' => '0',
  8928. ))
  8929. ->values(array(
  8930. 'lid' => '515',
  8931. 'objectid' => '',
  8932. 'type' => 'category',
  8933. 'property' => '',
  8934. 'objectindex' => '0',
  8935. 'format' => '0',
  8936. ))
  8937. ->values(array(
  8938. 'lid' => '516',
  8939. 'objectid' => 'profile_bands',
  8940. 'type' => 'field',
  8941. 'property' => 'title',
  8942. 'objectindex' => '0',
  8943. 'format' => '0',
  8944. ))
  8945. ->values(array(
  8946. 'lid' => '517',
  8947. 'objectid' => 'profile_bands',
  8948. 'type' => 'field',
  8949. 'property' => 'explanation',
  8950. 'objectindex' => '0',
  8951. 'format' => '0',
  8952. ))
  8953. ->values(array(
  8954. 'lid' => '518',
  8955. 'objectid' => 'profile_birthdate',
  8956. 'type' => 'field',
  8957. 'property' => 'title',
  8958. 'objectindex' => '0',
  8959. 'format' => '0',
  8960. ))
  8961. ->values(array(
  8962. 'lid' => '519',
  8963. 'objectid' => 'profile_birthdate',
  8964. 'type' => 'field',
  8965. 'property' => 'explanation',
  8966. 'objectindex' => '0',
  8967. 'format' => '0',
  8968. ))
  8969. ->values(array(
  8970. 'lid' => '520',
  8971. 'objectid' => 'profile_really_really_love_migrations',
  8972. 'type' => 'field',
  8973. 'property' => 'title',
  8974. 'objectindex' => '0',
  8975. 'format' => '0',
  8976. ))
  8977. ->values(array(
  8978. 'lid' => '521',
  8979. 'objectid' => 'profile_really_really_love_migrations',
  8980. 'type' => 'field',
  8981. 'property' => 'explanation',
  8982. 'objectindex' => '0',
  8983. 'format' => '0',
  8984. ))
  8985. ->values(array(
  8986. 'lid' => '522',
  8987. 'objectid' => 'profile_blog',
  8988. 'type' => 'field',
  8989. 'property' => 'title',
  8990. 'objectindex' => '0',
  8991. 'format' => '0',
  8992. ))
  8993. ->values(array(
  8994. 'lid' => '523',
  8995. 'objectid' => 'profile_blog',
  8996. 'type' => 'field',
  8997. 'property' => 'explanation',
  8998. 'objectindex' => '0',
  8999. 'format' => '0',
  9000. ))
  9001. ->values(array(
  9002. 'lid' => '524',
  9003. 'objectid' => '1',
  9004. 'type' => 'block',
  9005. 'property' => 'title',
  9006. 'objectindex' => '1',
  9007. 'format' => '0',
  9008. ))
  9009. ->values(array(
  9010. 'lid' => '525',
  9011. 'objectid' => '1',
  9012. 'type' => 'block',
  9013. 'property' => 'body',
  9014. 'objectindex' => '1',
  9015. 'format' => '2',
  9016. ))
  9017. ->values(array(
  9018. 'lid' => '526',
  9019. 'objectid' => '2',
  9020. 'type' => 'block',
  9021. 'property' => 'title',
  9022. 'objectindex' => '2',
  9023. 'format' => '0',
  9024. ))
  9025. ->values(array(
  9026. 'lid' => '527',
  9027. 'objectid' => '2',
  9028. 'type' => 'block',
  9029. 'property' => 'body',
  9030. 'objectindex' => '2',
  9031. 'format' => '2',
  9032. ))
  9033. ->values(array(
  9034. 'lid' => '528',
  9035. 'objectid' => '4',
  9036. 'type' => 'vocabulary',
  9037. 'property' => 'name',
  9038. 'objectindex' => '4',
  9039. 'format' => '0',
  9040. ))
  9041. ->values(array(
  9042. 'lid' => '529',
  9043. 'objectid' => '1',
  9044. 'type' => 'vocabulary',
  9045. 'property' => 'name',
  9046. 'objectindex' => '1',
  9047. 'format' => '0',
  9048. ))
  9049. ->values(array(
  9050. 'lid' => '530',
  9051. 'objectid' => '2',
  9052. 'type' => 'vocabulary',
  9053. 'property' => 'name',
  9054. 'objectindex' => '2',
  9055. 'format' => '0',
  9056. ))
  9057. ->values(array(
  9058. 'lid' => '531',
  9059. 'objectid' => '3',
  9060. 'type' => 'vocabulary',
  9061. 'property' => 'name',
  9062. 'objectindex' => '3',
  9063. 'format' => '0',
  9064. ))
  9065. ->values(array(
  9066. 'lid' => '532',
  9067. 'objectid' => '5',
  9068. 'type' => 'vocabulary',
  9069. 'property' => 'name',
  9070. 'objectindex' => '5',
  9071. 'format' => '0',
  9072. ))
  9073. ->values(array(
  9074. 'lid' => '533',
  9075. 'objectid' => 'article',
  9076. 'type' => 'type',
  9077. 'property' => 'name',
  9078. 'objectindex' => '0',
  9079. 'format' => '0',
  9080. ))
  9081. ->values(array(
  9082. 'lid' => '534',
  9083. 'objectid' => 'article',
  9084. 'type' => 'type',
  9085. 'property' => 'title',
  9086. 'objectindex' => '0',
  9087. 'format' => '0',
  9088. ))
  9089. ->values(array(
  9090. 'lid' => '535',
  9091. 'objectid' => 'article',
  9092. 'type' => 'type',
  9093. 'property' => 'body',
  9094. 'objectindex' => '0',
  9095. 'format' => '0',
  9096. ))
  9097. ->values(array(
  9098. 'lid' => '536',
  9099. 'objectid' => 'article',
  9100. 'type' => 'type',
  9101. 'property' => 'description',
  9102. 'objectindex' => '0',
  9103. 'format' => '0',
  9104. ))
  9105. ->values(array(
  9106. 'lid' => '537',
  9107. 'objectid' => 'company',
  9108. 'type' => 'type',
  9109. 'property' => 'name',
  9110. 'objectindex' => '0',
  9111. 'format' => '0',
  9112. ))
  9113. ->values(array(
  9114. 'lid' => '538',
  9115. 'objectid' => 'company',
  9116. 'type' => 'type',
  9117. 'property' => 'title',
  9118. 'objectindex' => '0',
  9119. 'format' => '0',
  9120. ))
  9121. ->values(array(
  9122. 'lid' => '539',
  9123. 'objectid' => 'company',
  9124. 'type' => 'type',
  9125. 'property' => 'body',
  9126. 'objectindex' => '0',
  9127. 'format' => '0',
  9128. ))
  9129. ->values(array(
  9130. 'lid' => '540',
  9131. 'objectid' => 'company',
  9132. 'type' => 'type',
  9133. 'property' => 'description',
  9134. 'objectindex' => '0',
  9135. 'format' => '0',
  9136. ))
  9137. ->values(array(
  9138. 'lid' => '541',
  9139. 'objectid' => 'employee',
  9140. 'type' => 'type',
  9141. 'property' => 'name',
  9142. 'objectindex' => '0',
  9143. 'format' => '0',
  9144. ))
  9145. ->values(array(
  9146. 'lid' => '542',
  9147. 'objectid' => 'employee',
  9148. 'type' => 'type',
  9149. 'property' => 'title',
  9150. 'objectindex' => '0',
  9151. 'format' => '0',
  9152. ))
  9153. ->values(array(
  9154. 'lid' => '543',
  9155. 'objectid' => 'employee',
  9156. 'type' => 'type',
  9157. 'property' => 'body',
  9158. 'objectindex' => '0',
  9159. 'format' => '0',
  9160. ))
  9161. ->values(array(
  9162. 'lid' => '544',
  9163. 'objectid' => 'employee',
  9164. 'type' => 'type',
  9165. 'property' => 'description',
  9166. 'objectindex' => '0',
  9167. 'format' => '0',
  9168. ))
  9169. ->values(array(
  9170. 'lid' => '545',
  9171. 'objectid' => 'sponsor',
  9172. 'type' => 'type',
  9173. 'property' => 'name',
  9174. 'objectindex' => '0',
  9175. 'format' => '0',
  9176. ))
  9177. ->values(array(
  9178. 'lid' => '546',
  9179. 'objectid' => 'sponsor',
  9180. 'type' => 'type',
  9181. 'property' => 'title',
  9182. 'objectindex' => '0',
  9183. 'format' => '0',
  9184. ))
  9185. ->values(array(
  9186. 'lid' => '547',
  9187. 'objectid' => 'sponsor',
  9188. 'type' => 'type',
  9189. 'property' => 'body',
  9190. 'objectindex' => '0',
  9191. 'format' => '0',
  9192. ))
  9193. ->values(array(
  9194. 'lid' => '548',
  9195. 'objectid' => 'sponsor',
  9196. 'type' => 'type',
  9197. 'property' => 'description',
  9198. 'objectindex' => '0',
  9199. 'format' => '0',
  9200. ))
  9201. ->values(array(
  9202. 'lid' => '549',
  9203. 'objectid' => 'story',
  9204. 'type' => 'type',
  9205. 'property' => 'name',
  9206. 'objectindex' => '0',
  9207. 'format' => '0',
  9208. ))
  9209. ->values(array(
  9210. 'lid' => '550',
  9211. 'objectid' => 'story',
  9212. 'type' => 'type',
  9213. 'property' => 'title',
  9214. 'objectindex' => '0',
  9215. 'format' => '0',
  9216. ))
  9217. ->values(array(
  9218. 'lid' => '551',
  9219. 'objectid' => 'story',
  9220. 'type' => 'type',
  9221. 'property' => 'body',
  9222. 'objectindex' => '0',
  9223. 'format' => '0',
  9224. ))
  9225. ->values(array(
  9226. 'lid' => '552',
  9227. 'objectid' => 'story',
  9228. 'type' => 'type',
  9229. 'property' => 'description',
  9230. 'objectindex' => '0',
  9231. 'format' => '0',
  9232. ))
  9233. ->values(array(
  9234. 'lid' => '553',
  9235. 'objectid' => 'test_event',
  9236. 'type' => 'type',
  9237. 'property' => 'name',
  9238. 'objectindex' => '0',
  9239. 'format' => '0',
  9240. ))
  9241. ->values(array(
  9242. 'lid' => '554',
  9243. 'objectid' => 'test_event',
  9244. 'type' => 'type',
  9245. 'property' => 'title',
  9246. 'objectindex' => '0',
  9247. 'format' => '0',
  9248. ))
  9249. ->values(array(
  9250. 'lid' => '555',
  9251. 'objectid' => 'test_event',
  9252. 'type' => 'type',
  9253. 'property' => 'body',
  9254. 'objectindex' => '0',
  9255. 'format' => '0',
  9256. ))
  9257. ->values(array(
  9258. 'lid' => '556',
  9259. 'objectid' => 'test_event',
  9260. 'type' => 'type',
  9261. 'property' => 'description',
  9262. 'objectindex' => '0',
  9263. 'format' => '0',
  9264. ))
  9265. ->values(array(
  9266. 'lid' => '558',
  9267. 'objectid' => 'test_page',
  9268. 'type' => 'type',
  9269. 'property' => 'name',
  9270. 'objectindex' => '0',
  9271. 'format' => '0',
  9272. ))
  9273. ->values(array(
  9274. 'lid' => '559',
  9275. 'objectid' => 'test_page',
  9276. 'type' => 'type',
  9277. 'property' => 'title',
  9278. 'objectindex' => '0',
  9279. 'format' => '0',
  9280. ))
  9281. ->values(array(
  9282. 'lid' => '560',
  9283. 'objectid' => 'test_page',
  9284. 'type' => 'type',
  9285. 'property' => 'body',
  9286. 'objectindex' => '0',
  9287. 'format' => '0',
  9288. ))
  9289. ->values(array(
  9290. 'lid' => '561',
  9291. 'objectid' => 'test_page',
  9292. 'type' => 'type',
  9293. 'property' => 'description',
  9294. 'objectindex' => '0',
  9295. 'format' => '0',
  9296. ))
  9297. ->values(array(
  9298. 'lid' => '562',
  9299. 'objectid' => 'test_planet',
  9300. 'type' => 'type',
  9301. 'property' => 'name',
  9302. 'objectindex' => '0',
  9303. 'format' => '0',
  9304. ))
  9305. ->values(array(
  9306. 'lid' => '563',
  9307. 'objectid' => 'test_planet',
  9308. 'type' => 'type',
  9309. 'property' => 'title',
  9310. 'objectindex' => '0',
  9311. 'format' => '0',
  9312. ))
  9313. ->values(array(
  9314. 'lid' => '564',
  9315. 'objectid' => 'test_planet',
  9316. 'type' => 'type',
  9317. 'property' => 'body',
  9318. 'objectindex' => '0',
  9319. 'format' => '0',
  9320. ))
  9321. ->values(array(
  9322. 'lid' => '565',
  9323. 'objectid' => 'test_planet',
  9324. 'type' => 'type',
  9325. 'property' => 'description',
  9326. 'objectindex' => '0',
  9327. 'format' => '0',
  9328. ))
  9329. ->values(array(
  9330. 'lid' => '566',
  9331. 'objectid' => 'test_story',
  9332. 'type' => 'type',
  9333. 'property' => 'name',
  9334. 'objectindex' => '0',
  9335. 'format' => '0',
  9336. ))
  9337. ->values(array(
  9338. 'lid' => '567',
  9339. 'objectid' => 'test_story',
  9340. 'type' => 'type',
  9341. 'property' => 'title',
  9342. 'objectindex' => '0',
  9343. 'format' => '0',
  9344. ))
  9345. ->values(array(
  9346. 'lid' => '568',
  9347. 'objectid' => 'test_story',
  9348. 'type' => 'type',
  9349. 'property' => 'body',
  9350. 'objectindex' => '0',
  9351. 'format' => '0',
  9352. ))
  9353. ->values(array(
  9354. 'lid' => '569',
  9355. 'objectid' => 'test_story',
  9356. 'type' => 'type',
  9357. 'property' => 'description',
  9358. 'objectindex' => '0',
  9359. 'format' => '0',
  9360. ))
  9361. ->values(array(
  9362. 'lid' => '570',
  9363. 'objectid' => 'story-field_test_exclude_unset',
  9364. 'type' => 'field',
  9365. 'property' => 'widget_label',
  9366. 'objectindex' => '0',
  9367. 'format' => '0',
  9368. ))
  9369. ->values(array(
  9370. 'lid' => '571',
  9371. 'objectid' => 'story-field_test_exclude_unset',
  9372. 'type' => 'field',
  9373. 'property' => 'widget_description',
  9374. 'objectindex' => '0',
  9375. 'format' => '0',
  9376. ))
  9377. ->values(array(
  9378. 'lid' => '572',
  9379. 'objectid' => 'story-field_test_two',
  9380. 'type' => 'field',
  9381. 'property' => 'widget_label',
  9382. 'objectindex' => '0',
  9383. 'format' => '0',
  9384. ))
  9385. ->values(array(
  9386. 'lid' => '573',
  9387. 'objectid' => 'story-field_test_two',
  9388. 'type' => 'field',
  9389. 'property' => 'widget_description',
  9390. 'objectindex' => '0',
  9391. 'format' => '0',
  9392. ))
  9393. ->values(array(
  9394. 'lid' => '574',
  9395. 'objectid' => 'story-field_test',
  9396. 'type' => 'field',
  9397. 'property' => 'widget_label',
  9398. 'objectindex' => '0',
  9399. 'format' => '0',
  9400. ))
  9401. ->values(array(
  9402. 'lid' => '575',
  9403. 'objectid' => 'story-field_test',
  9404. 'type' => 'field',
  9405. 'property' => 'widget_description',
  9406. 'objectindex' => '0',
  9407. 'format' => '0',
  9408. ))
  9409. ->values(array(
  9410. 'lid' => '576',
  9411. 'objectid' => 'story-field_test_three',
  9412. 'type' => 'field',
  9413. 'property' => 'widget_label',
  9414. 'objectindex' => '0',
  9415. 'format' => '0',
  9416. ))
  9417. ->values(array(
  9418. 'lid' => '577',
  9419. 'objectid' => 'story-field_test_three',
  9420. 'type' => 'field',
  9421. 'property' => 'widget_description',
  9422. 'objectindex' => '0',
  9423. 'format' => '0',
  9424. ))
  9425. ->values(array(
  9426. 'lid' => '578',
  9427. 'objectid' => 'story-field_test_four',
  9428. 'type' => 'field',
  9429. 'property' => 'widget_label',
  9430. 'objectindex' => '0',
  9431. 'format' => '0',
  9432. ))
  9433. ->values(array(
  9434. 'lid' => '579',
  9435. 'objectid' => 'story-field_test_four',
  9436. 'type' => 'field',
  9437. 'property' => 'widget_description',
  9438. 'objectindex' => '0',
  9439. 'format' => '0',
  9440. ))
  9441. ->values(array(
  9442. 'lid' => '580',
  9443. 'objectid' => 'story-field_test_identical1',
  9444. 'type' => 'field',
  9445. 'property' => 'widget_label',
  9446. 'objectindex' => '0',
  9447. 'format' => '0',
  9448. ))
  9449. ->values(array(
  9450. 'lid' => '581',
  9451. 'objectid' => 'story-field_test_identical1',
  9452. 'type' => 'field',
  9453. 'property' => 'widget_description',
  9454. 'objectindex' => '0',
  9455. 'format' => '0',
  9456. ))
  9457. ->values(array(
  9458. 'lid' => '582',
  9459. 'objectid' => 'story-field_test_identical2',
  9460. 'type' => 'field',
  9461. 'property' => 'widget_label',
  9462. 'objectindex' => '0',
  9463. 'format' => '0',
  9464. ))
  9465. ->values(array(
  9466. 'lid' => '583',
  9467. 'objectid' => 'story-field_test_identical2',
  9468. 'type' => 'field',
  9469. 'property' => 'widget_description',
  9470. 'objectindex' => '0',
  9471. 'format' => '0',
  9472. ))
  9473. ->values(array(
  9474. 'lid' => '584',
  9475. 'objectid' => 'story-field_test_email',
  9476. 'type' => 'field',
  9477. 'property' => 'widget_label',
  9478. 'objectindex' => '0',
  9479. 'format' => '0',
  9480. ))
  9481. ->values(array(
  9482. 'lid' => '585',
  9483. 'objectid' => 'story-field_test_email',
  9484. 'type' => 'field',
  9485. 'property' => 'widget_description',
  9486. 'objectindex' => '0',
  9487. 'format' => '0',
  9488. ))
  9489. ->values(array(
  9490. 'lid' => '586',
  9491. 'objectid' => 'story-field_test_link',
  9492. 'type' => 'field',
  9493. 'property' => 'widget_label',
  9494. 'objectindex' => '0',
  9495. 'format' => '0',
  9496. ))
  9497. ->values(array(
  9498. 'lid' => '587',
  9499. 'objectid' => 'story-field_test_link',
  9500. 'type' => 'field',
  9501. 'property' => 'widget_description',
  9502. 'objectindex' => '0',
  9503. 'format' => '0',
  9504. ))
  9505. ->values(array(
  9506. 'lid' => '588',
  9507. 'objectid' => 'story-field_test_filefield',
  9508. 'type' => 'field',
  9509. 'property' => 'widget_label',
  9510. 'objectindex' => '0',
  9511. 'format' => '0',
  9512. ))
  9513. ->values(array(
  9514. 'lid' => '589',
  9515. 'objectid' => 'story-field_test_filefield',
  9516. 'type' => 'field',
  9517. 'property' => 'widget_description',
  9518. 'objectindex' => '0',
  9519. 'format' => '0',
  9520. ))
  9521. ->values(array(
  9522. 'lid' => '590',
  9523. 'objectid' => 'story-field_test_imagefield',
  9524. 'type' => 'field',
  9525. 'property' => 'widget_label',
  9526. 'objectindex' => '0',
  9527. 'format' => '0',
  9528. ))
  9529. ->values(array(
  9530. 'lid' => '591',
  9531. 'objectid' => 'story-field_test_imagefield',
  9532. 'type' => 'field',
  9533. 'property' => 'widget_description',
  9534. 'objectindex' => '0',
  9535. 'format' => '0',
  9536. ))
  9537. ->values(array(
  9538. 'lid' => '592',
  9539. 'objectid' => 'story-field_test_date',
  9540. 'type' => 'field',
  9541. 'property' => 'widget_label',
  9542. 'objectindex' => '0',
  9543. 'format' => '0',
  9544. ))
  9545. ->values(array(
  9546. 'lid' => '593',
  9547. 'objectid' => 'story-field_test_date',
  9548. 'type' => 'field',
  9549. 'property' => 'widget_description',
  9550. 'objectindex' => '0',
  9551. 'format' => '0',
  9552. ))
  9553. ->values(array(
  9554. 'lid' => '594',
  9555. 'objectid' => 'story-field_test_datestamp',
  9556. 'type' => 'field',
  9557. 'property' => 'widget_label',
  9558. 'objectindex' => '0',
  9559. 'format' => '0',
  9560. ))
  9561. ->values(array(
  9562. 'lid' => '595',
  9563. 'objectid' => 'story-field_test_datestamp',
  9564. 'type' => 'field',
  9565. 'property' => 'widget_description',
  9566. 'objectindex' => '0',
  9567. 'format' => '0',
  9568. ))
  9569. ->values(array(
  9570. 'lid' => '596',
  9571. 'objectid' => 'story-field_test_datetime',
  9572. 'type' => 'field',
  9573. 'property' => 'widget_label',
  9574. 'objectindex' => '0',
  9575. 'format' => '0',
  9576. ))
  9577. ->values(array(
  9578. 'lid' => '597',
  9579. 'objectid' => 'story-field_test_datetime',
  9580. 'type' => 'field',
  9581. 'property' => 'widget_description',
  9582. 'objectindex' => '0',
  9583. 'format' => '0',
  9584. ))
  9585. ->values(array(
  9586. 'lid' => '598',
  9587. 'objectid' => 'story-field_test_phone',
  9588. 'type' => 'field',
  9589. 'property' => 'widget_label',
  9590. 'objectindex' => '0',
  9591. 'format' => '0',
  9592. ))
  9593. ->values(array(
  9594. 'lid' => '599',
  9595. 'objectid' => 'story-field_test_phone',
  9596. 'type' => 'field',
  9597. 'property' => 'widget_description',
  9598. 'objectindex' => '0',
  9599. 'format' => '0',
  9600. ))
  9601. ->values(array(
  9602. 'lid' => '600',
  9603. 'objectid' => 'story-field_test_decimal_radio_buttons',
  9604. 'type' => 'field',
  9605. 'property' => 'widget_label',
  9606. 'objectindex' => '0',
  9607. 'format' => '0',
  9608. ))
  9609. ->values(array(
  9610. 'lid' => '601',
  9611. 'objectid' => 'story-field_test_decimal_radio_buttons',
  9612. 'type' => 'field',
  9613. 'property' => 'widget_description',
  9614. 'objectindex' => '0',
  9615. 'format' => '0',
  9616. ))
  9617. ->values(array(
  9618. 'lid' => '602',
  9619. 'objectid' => 'field_test_decimal_radio_buttons',
  9620. 'type' => 'field',
  9621. 'property' => 'option_1.2',
  9622. 'objectindex' => '0',
  9623. 'format' => '0',
  9624. ))
  9625. ->values(array(
  9626. 'lid' => '603',
  9627. 'objectid' => 'field_test_decimal_radio_buttons',
  9628. 'type' => 'field',
  9629. 'property' => 'option_2.1',
  9630. 'objectindex' => '0',
  9631. 'format' => '0',
  9632. ))
  9633. ->values(array(
  9634. 'lid' => '604',
  9635. 'objectid' => 'story-field_test_float_single_checkbox',
  9636. 'type' => 'field',
  9637. 'property' => 'widget_label',
  9638. 'objectindex' => '0',
  9639. 'format' => '0',
  9640. ))
  9641. ->values(array(
  9642. 'lid' => '605',
  9643. 'objectid' => 'story-field_test_float_single_checkbox',
  9644. 'type' => 'field',
  9645. 'property' => 'widget_description',
  9646. 'objectindex' => '0',
  9647. 'format' => '0',
  9648. ))
  9649. ->values(array(
  9650. 'lid' => '606',
  9651. 'objectid' => 'field_test_float_single_checkbox',
  9652. 'type' => 'field',
  9653. 'property' => 'option_3.142',
  9654. 'objectindex' => '0',
  9655. 'format' => '0',
  9656. ))
  9657. ->values(array(
  9658. 'lid' => '607',
  9659. 'objectid' => 'field_test_float_single_checkbox',
  9660. 'type' => 'field',
  9661. 'property' => 'option_1.234',
  9662. 'objectindex' => '0',
  9663. 'format' => '0',
  9664. ))
  9665. ->values(array(
  9666. 'lid' => '608',
  9667. 'objectid' => 'story-field_test_integer_selectlist',
  9668. 'type' => 'field',
  9669. 'property' => 'widget_label',
  9670. 'objectindex' => '0',
  9671. 'format' => '0',
  9672. ))
  9673. ->values(array(
  9674. 'lid' => '609',
  9675. 'objectid' => 'story-field_test_integer_selectlist',
  9676. 'type' => 'field',
  9677. 'property' => 'widget_description',
  9678. 'objectindex' => '0',
  9679. 'format' => '0',
  9680. ))
  9681. ->values(array(
  9682. 'lid' => '610',
  9683. 'objectid' => 'field_test_integer_selectlist',
  9684. 'type' => 'field',
  9685. 'property' => 'option_1234',
  9686. 'objectindex' => '0',
  9687. 'format' => '0',
  9688. ))
  9689. ->values(array(
  9690. 'lid' => '611',
  9691. 'objectid' => 'field_test_integer_selectlist',
  9692. 'type' => 'field',
  9693. 'property' => 'option_2341',
  9694. 'objectindex' => '0',
  9695. 'format' => '0',
  9696. ))
  9697. ->values(array(
  9698. 'lid' => '612',
  9699. 'objectid' => 'field_test_integer_selectlist',
  9700. 'type' => 'field',
  9701. 'property' => 'option_3412',
  9702. 'objectindex' => '0',
  9703. 'format' => '0',
  9704. ))
  9705. ->values(array(
  9706. 'lid' => '613',
  9707. 'objectid' => 'field_test_integer_selectlist',
  9708. 'type' => 'field',
  9709. 'property' => 'option_4123',
  9710. 'objectindex' => '0',
  9711. 'format' => '0',
  9712. ))
  9713. ->values(array(
  9714. 'lid' => '614',
  9715. 'objectid' => 'story-field_test_text_single_checkbox',
  9716. 'type' => 'field',
  9717. 'property' => 'widget_label',
  9718. 'objectindex' => '0',
  9719. 'format' => '0',
  9720. ))
  9721. ->values(array(
  9722. 'lid' => '615',
  9723. 'objectid' => 'story-field_test_text_single_checkbox',
  9724. 'type' => 'field',
  9725. 'property' => 'widget_description',
  9726. 'objectindex' => '0',
  9727. 'format' => '0',
  9728. ))
  9729. ->values(array(
  9730. 'lid' => '616',
  9731. 'objectid' => 'field_test_text_single_checkbox',
  9732. 'type' => 'field',
  9733. 'property' => 'option_0',
  9734. 'objectindex' => '0',
  9735. 'format' => '0',
  9736. ))
  9737. ->values(array(
  9738. 'lid' => '617',
  9739. 'objectid' => 'field_test_text_single_checkbox',
  9740. 'type' => 'field',
  9741. 'property' => 'option_1',
  9742. 'objectindex' => '0',
  9743. 'format' => '0',
  9744. ))
  9745. ->values(array(
  9746. 'lid' => '618',
  9747. 'objectid' => 'story-field_test_text_single_checkbox2',
  9748. 'type' => 'field',
  9749. 'property' => 'widget_label',
  9750. 'objectindex' => '0',
  9751. 'format' => '0',
  9752. ))
  9753. ->values(array(
  9754. 'lid' => '619',
  9755. 'objectid' => 'story-field_test_text_single_checkbox2',
  9756. 'type' => 'field',
  9757. 'property' => 'widget_description',
  9758. 'objectindex' => '0',
  9759. 'format' => '0',
  9760. ))
  9761. ->values(array(
  9762. 'lid' => '620',
  9763. 'objectid' => 'field_test_text_single_checkbox2',
  9764. 'type' => 'field',
  9765. 'property' => 'option_Off',
  9766. 'objectindex' => '0',
  9767. 'format' => '0',
  9768. ))
  9769. ->values(array(
  9770. 'lid' => '621',
  9771. 'objectid' => 'field_test_text_single_checkbox2',
  9772. 'type' => 'field',
  9773. 'property' => 'option_Hello',
  9774. 'objectindex' => '0',
  9775. 'format' => '0',
  9776. ))
  9777. ->values(array(
  9778. 'lid' => '622',
  9779. 'objectid' => 'test_page-field_test',
  9780. 'type' => 'field',
  9781. 'property' => 'widget_label',
  9782. 'objectindex' => '0',
  9783. 'format' => '0',
  9784. ))
  9785. ->values(array(
  9786. 'lid' => '623',
  9787. 'objectid' => 'test_page-field_test',
  9788. 'type' => 'field',
  9789. 'property' => 'widget_description',
  9790. 'objectindex' => '0',
  9791. 'format' => '0',
  9792. ))
  9793. ->values(array(
  9794. 'lid' => '624',
  9795. 'objectid' => 'test_planet-field_multivalue',
  9796. 'type' => 'field',
  9797. 'property' => 'widget_label',
  9798. 'objectindex' => '0',
  9799. 'format' => '0',
  9800. ))
  9801. ->values(array(
  9802. 'lid' => '625',
  9803. 'objectid' => 'test_planet-field_multivalue',
  9804. 'type' => 'field',
  9805. 'property' => 'widget_description',
  9806. 'objectindex' => '0',
  9807. 'format' => '0',
  9808. ))
  9809. ->values(array(
  9810. 'lid' => '626',
  9811. 'objectid' => 'test_planet-field_test_text_single_checkbox',
  9812. 'type' => 'field',
  9813. 'property' => 'widget_label',
  9814. 'objectindex' => '0',
  9815. 'format' => '0',
  9816. ))
  9817. ->values(array(
  9818. 'lid' => '627',
  9819. 'objectid' => 'test_planet-field_test_text_single_checkbox',
  9820. 'type' => 'field',
  9821. 'property' => 'widget_description',
  9822. 'objectindex' => '0',
  9823. 'format' => '0',
  9824. ))
  9825. ->values(array(
  9826. 'lid' => '633',
  9827. 'objectid' => '140',
  9828. 'type' => 'item',
  9829. 'property' => 'title',
  9830. 'objectindex' => '140',
  9831. 'format' => '0',
  9832. ))
  9833. ->values(array(
  9834. 'lid' => '634',
  9835. 'objectid' => '139',
  9836. 'type' => 'item',
  9837. 'property' => 'title',
  9838. 'objectindex' => '139',
  9839. 'format' => '0',
  9840. ))
  9841. ->values(array(
  9842. 'lid' => '635',
  9843. 'objectid' => '139',
  9844. 'type' => 'item',
  9845. 'property' => 'description',
  9846. 'objectindex' => '139',
  9847. 'format' => '0',
  9848. ))
  9849. ->values(array(
  9850. 'lid' => '1664',
  9851. 'objectid' => 'forum',
  9852. 'type' => 'type',
  9853. 'property' => 'name',
  9854. 'objectindex' => '0',
  9855. 'format' => '0',
  9856. ))
  9857. ->values(array(
  9858. 'lid' => '1665',
  9859. 'objectid' => 'forum',
  9860. 'type' => 'type',
  9861. 'property' => 'title',
  9862. 'objectindex' => '0',
  9863. 'format' => '0',
  9864. ))
  9865. ->values(array(
  9866. 'lid' => '1666',
  9867. 'objectid' => 'forum',
  9868. 'type' => 'type',
  9869. 'property' => 'body',
  9870. 'objectindex' => '0',
  9871. 'format' => '0',
  9872. ))
  9873. ->values(array(
  9874. 'lid' => '1667',
  9875. 'objectid' => 'forum',
  9876. 'type' => 'type',
  9877. 'property' => 'description',
  9878. 'objectindex' => '0',
  9879. 'format' => '0',
  9880. ))
  9881. ->values(array(
  9882. 'lid' => '1672',
  9883. 'objectid' => '6',
  9884. 'type' => 'vocabulary',
  9885. 'property' => 'name',
  9886. 'objectindex' => '6',
  9887. 'format' => '0',
  9888. ))
  9889. ->values(array(
  9890. 'lid' => '1673',
  9891. 'objectid' => '7',
  9892. 'type' => 'vocabulary',
  9893. 'property' => 'name',
  9894. 'objectindex' => '7',
  9895. 'format' => '0',
  9896. ))
  9897. ->values(array(
  9898. 'lid' => '1674',
  9899. 'objectid' => '463',
  9900. 'type' => 'item',
  9901. 'property' => 'title',
  9902. 'objectindex' => '463',
  9903. 'format' => '0',
  9904. ))
  9905. ->values(array(
  9906. 'lid' => '1675',
  9907. 'objectid' => '463',
  9908. 'type' => 'item',
  9909. 'property' => 'description',
  9910. 'objectindex' => '463',
  9911. 'format' => '0',
  9912. ))
  9913. ->values(array(
  9914. 'lid' => '1676',
  9915. 'objectid' => '138',
  9916. 'type' => 'item',
  9917. 'property' => 'title',
  9918. 'objectindex' => '138',
  9919. 'format' => '0',
  9920. ))
  9921. ->values(array(
  9922. 'lid' => '1677',
  9923. 'objectid' => '138',
  9924. 'type' => 'item',
  9925. 'property' => 'description',
  9926. 'objectindex' => '138',
  9927. 'format' => '0',
  9928. ))
  9929. ->values(array(
  9930. 'lid' => '1678',
  9931. 'objectid' => 'profile_really_really_love_migrating',
  9932. 'type' => 'field',
  9933. 'property' => 'title',
  9934. 'objectindex' => '0',
  9935. 'format' => '0',
  9936. ))
  9937. ->values(array(
  9938. 'lid' => '1679',
  9939. 'objectid' => 'menu-translation-test',
  9940. 'type' => 'menu',
  9941. 'property' => 'title',
  9942. 'objectindex' => '0',
  9943. 'format' => '0',
  9944. ))
  9945. ->values(array(
  9946. 'lid' => '1680',
  9947. 'objectid' => 'employee-field_company',
  9948. 'type' => 'field',
  9949. 'property' => 'widget_label',
  9950. 'objectindex' => '0',
  9951. 'format' => '0',
  9952. ))
  9953. ->values(array(
  9954. 'lid' => '1681',
  9955. 'objectid' => 'employee-field_commander',
  9956. 'type' => 'field',
  9957. 'property' => 'widget_label',
  9958. 'objectindex' => '0',
  9959. 'format' => '0',
  9960. ))
  9961. ->values(array(
  9962. 'lid' => '1682',
  9963. 'objectid' => 'employee-field_company_2',
  9964. 'type' => 'field',
  9965. 'property' => 'widget_label',
  9966. 'objectindex' => '0',
  9967. 'format' => '0',
  9968. ))
  9969. ->values(array(
  9970. 'lid' => '1683',
  9971. 'objectid' => 'employee-field_company_3',
  9972. 'type' => 'field',
  9973. 'property' => 'widget_label',
  9974. 'objectindex' => '0',
  9975. 'format' => '0',
  9976. ))
  9977. ->values(array(
  9978. 'lid' => '1684',
  9979. 'objectid' => 'page-field_reference',
  9980. 'type' => 'field',
  9981. 'property' => 'widget_label',
  9982. 'objectindex' => '0',
  9983. 'format' => '0',
  9984. ))
  9985. ->values(array(
  9986. 'lid' => '1685',
  9987. 'objectid' => 'page-field_reference_2',
  9988. 'type' => 'field',
  9989. 'property' => 'widget_label',
  9990. 'objectindex' => '0',
  9991. 'format' => '0',
  9992. ))
  9993. ->values(array(
  9994. 'lid' => '1686',
  9995. 'objectid' => 'story-field_test_string_selectlist',
  9996. 'type' => 'field',
  9997. 'property' => 'widget_label',
  9998. 'objectindex' => '0',
  9999. 'format' => '0',
  10000. ))
  10001. ->values(array(
  10002. 'lid' => '1689',
  10003. 'objectid' => 'test_planet-field_test_text_single_checkbox',
  10004. 'type' => 'field',
  10005. 'property' => 'widget_label',
  10006. 'objectindex' => '0',
  10007. 'format' => '0',
  10008. ))
  10009. ->values(array(
  10010. 'lid' => '1690',
  10011. 'objectid' => 'field_test_string_selectlist',
  10012. 'type' => 'field',
  10013. 'property' => 'option_A',
  10014. 'objectindex' => '0',
  10015. 'format' => '0',
  10016. ))
  10017. ->values(array(
  10018. 'lid' => '1691',
  10019. 'objectid' => 'field_test_string_selectlist',
  10020. 'type' => 'field',
  10021. 'property' => 'option_B',
  10022. 'objectindex' => '0',
  10023. 'format' => '0',
  10024. ))
  10025. ->values(array(
  10026. 'lid' => '1692',
  10027. 'objectid' => '14',
  10028. 'type' => 'term',
  10029. 'property' => 'name',
  10030. 'objectindex' => '14',
  10031. 'format' => '0',
  10032. ))
  10033. ->values(array(
  10034. 'lid' => '1693',
  10035. 'objectid' => '15',
  10036. 'type' => 'term',
  10037. 'property' => 'name',
  10038. 'objectindex' => '15',
  10039. 'format' => '0',
  10040. ))
  10041. ->values(array(
  10042. 'lid' => '1694',
  10043. 'objectid' => '14',
  10044. 'type' => 'term',
  10045. 'property' => 'description',
  10046. 'objectindex' => '14',
  10047. 'format' => '0',
  10048. ))
  10049. ->values(array(
  10050. 'lid' => '1695',
  10051. 'objectid' => 'profile_count_trees',
  10052. 'type' => 'field',
  10053. 'property' => 'title',
  10054. 'objectindex' => '0',
  10055. 'format' => '0',
  10056. ))
  10057. ->values(array(
  10058. 'lid' => '1696',
  10059. 'objectid' => 'profile_count_trees',
  10060. 'type' => 'field',
  10061. 'property' => 'options',
  10062. 'objectindex' => '0',
  10063. 'format' => '0',
  10064. ))
  10065. ->execute();
  10066. $connection->schema()->createTable('i18n_variable', array(
  10067. 'fields' => array(
  10068. 'name' => array(
  10069. 'type' => 'varchar',
  10070. 'not null' => TRUE,
  10071. 'length' => '128',
  10072. 'default' => '',
  10073. ),
  10074. 'language' => array(
  10075. 'type' => 'varchar',
  10076. 'not null' => TRUE,
  10077. 'length' => '12',
  10078. 'default' => '',
  10079. ),
  10080. 'value' => array(
  10081. 'type' => 'text',
  10082. 'not null' => TRUE,
  10083. 'size' => 'big',
  10084. ),
  10085. ),
  10086. 'primary key' => array(
  10087. 'name',
  10088. 'language',
  10089. ),
  10090. 'mysql_character_set' => 'utf8',
  10091. ));
  10092. $connection->insert('i18n_variable')
  10093. ->fields(array(
  10094. 'name',
  10095. 'language',
  10096. 'value',
  10097. ))
  10098. ->values(array(
  10099. 'name' => 'array_filter',
  10100. 'language' => 'en',
  10101. 'value' => 'b:1;',
  10102. ))
  10103. ->values(array(
  10104. 'name' => 'i18nstrings_allowed_formats',
  10105. 'language' => 'en',
  10106. 'value' => 'a:2:{i:0;i:1;i:1;i:2;}',
  10107. ))
  10108. ->values(array(
  10109. 'name' => 'statistics_count_content_views',
  10110. 'language' => 'en',
  10111. 'value' => 's:1:"1";',
  10112. ))
  10113. ->values(array(
  10114. 'name' => 'statistics_enable_access_log',
  10115. 'language' => 'en',
  10116. 'value' => 's:1:"0";',
  10117. ))
  10118. ->values(array(
  10119. 'name' => 'statistics_flush_accesslog_timer',
  10120. 'language' => 'en',
  10121. 'value' => 's:6:"259200";',
  10122. ))
  10123. ->values(array(
  10124. 'name' => 'anonymous',
  10125. 'language' => 'fr',
  10126. 'value' => 's:8:"fr Guest";',
  10127. ))
  10128. ->values(array(
  10129. 'name' => 'error_level',
  10130. 'language' => 'fr',
  10131. 'value' => 's:1:"1";',
  10132. ))
  10133. ->values(array(
  10134. 'name' => 'site_403',
  10135. 'language' => 'fr',
  10136. 'value' => 's:7:"fr-user";',
  10137. ))
  10138. ->values(array(
  10139. 'name' => 'site_404',
  10140. 'language' => 'fr',
  10141. 'value' => 's:17:"fr-page-not-found";',
  10142. ))
  10143. ->values(array(
  10144. 'name' => 'site_footer',
  10145. 'language' => 'fr',
  10146. 'value' => 's:0:"";',
  10147. ))
  10148. ->values(array(
  10149. 'name' => 'site_frontpage',
  10150. 'language' => 'fr',
  10151. 'value' => 's:4:"node";',
  10152. ))
  10153. ->values(array(
  10154. 'name' => 'site_mail',
  10155. 'language' => 'fr',
  10156. 'value' => 's:24:"fr_site_mail@example.com";',
  10157. ))
  10158. ->values(array(
  10159. 'name' => 'site_mission',
  10160. 'language' => 'fr',
  10161. 'value' => 's:0:"";',
  10162. ))
  10163. ->values(array(
  10164. 'name' => 'site_name',
  10165. 'language' => 'fr',
  10166. 'value' => 's:12:"fr site name";',
  10167. ))
  10168. ->values(array(
  10169. 'name' => 'site_offline',
  10170. 'language' => 'fr',
  10171. 'value' => 's:1:"0";',
  10172. ))
  10173. ->values(array(
  10174. 'name' => 'site_offline_message',
  10175. 'language' => 'fr',
  10176. 'value' => 's:99:"fr - Drupal is currently under maintenance. We should be back shortly. Thank you for your patience.";',
  10177. ))
  10178. ->values(array(
  10179. 'name' => 'site_slogan',
  10180. 'language' => 'fr',
  10181. 'value' => 's:16:"fr Migrate rocks";',
  10182. ))
  10183. ->values(array(
  10184. 'name' => 'user_email_verification',
  10185. 'language' => 'fr',
  10186. 'value' => 'i:0;',
  10187. ))
  10188. ->values(array(
  10189. 'name' => 'user_mail_password_reset_body',
  10190. 'language' => 'fr',
  10191. 'value' => "s:424:\"fr - !username,\r\n\r\nA request to reset the password for your account has been made at !site.\r\n\r\nYou may now log in to !uri_brief by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\nThis is a one-time login, so it can be used only once. It expires after one day and nothing will happen if it's not used.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\";",
  10192. ))
  10193. ->values(array(
  10194. 'name' => 'user_mail_password_reset_subject',
  10195. 'language' => 'fr',
  10196. 'value' => 's:57:"fr - Replacement login information for !username at !site";',
  10197. ))
  10198. ->values(array(
  10199. 'name' => 'user_mail_register_admin_created_body',
  10200. 'language' => 'fr',
  10201. 'value' => "s:473:\"fr - !username,\r\n\r\nA site administrator at !site has created an account for you. You may now log in to !login_uri using the following username and password:\r\n\r\nusername: !username\r\npassword: !password\r\n\r\nYou may also log in by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\nThis is a one-time login, so it can be used only once.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\r\n\r\n\r\n-- !site team\";",
  10202. ))
  10203. ->values(array(
  10204. 'name' => 'user_mail_register_admin_created_subject',
  10205. 'language' => 'fr',
  10206. 'value' => 's:57:"fr - An administrator created an account for you at !site";',
  10207. ))
  10208. ->values(array(
  10209. 'name' => 'user_mail_register_no_approval_required_body',
  10210. 'language' => 'fr',
  10211. 'value' => "s:447:\"fr - !username,\r\n\r\nThank you for registering at !site. You may now log in to !login_uri using the following username and password:\r\n\r\nusername: !username\r\npassword: !password\r\n\r\nYou may also log in by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\nThis is a one-time login, so it can be used only once.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\r\n\r\n\r\n-- !site team\";",
  10212. ))
  10213. ->values(array(
  10214. 'name' => 'user_mail_register_no_approval_required_subject',
  10215. 'language' => 'fr',
  10216. 'value' => 's:43:"fr - Account details for !username at !site";',
  10217. ))
  10218. ->values(array(
  10219. 'name' => 'user_mail_register_pending_approval_body',
  10220. 'language' => 'fr',
  10221. 'value' => "s:277:\"fr - !username,\r\n\r\nThank you for registering at !site. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\r\n\r\n\r\n-- !site team\";",
  10222. ))
  10223. ->values(array(
  10224. 'name' => 'user_mail_register_pending_approval_subject',
  10225. 'language' => 'fr',
  10226. 'value' => 's:68:"fr - Account details for !username at !site (pending admin approval)";',
  10227. ))
  10228. ->values(array(
  10229. 'name' => 'user_mail_status_activated_body',
  10230. 'language' => 'fr',
  10231. 'value' => "s:439:\"fr - !username,\r\n\r\nYour account at !site has been activated.\r\n\r\nYou may now log in by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\nThis is a one-time login, so it can be used only once.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\r\n\r\nOnce you have set your own password, you will be able to log in to !login_uri in the future using:\r\n\r\nusername: !username\r\n\";",
  10232. ))
  10233. ->values(array(
  10234. 'name' => 'user_mail_status_activated_notify',
  10235. 'language' => 'fr',
  10236. 'value' => 'i:0;',
  10237. ))
  10238. ->values(array(
  10239. 'name' => 'user_mail_status_activated_subject',
  10240. 'language' => 'fr',
  10241. 'value' => 's:54:"fr - Account details for !username at !site (approved)";',
  10242. ))
  10243. ->values(array(
  10244. 'name' => 'user_mail_status_blocked_body',
  10245. 'language' => 'fr',
  10246. 'value' => "s:58:\"fr - !username,\r\n\r\nYour account on !site has been blocked.\";",
  10247. ))
  10248. ->values(array(
  10249. 'name' => 'user_mail_status_blocked_notify',
  10250. 'language' => 'fr',
  10251. 'value' => 'i:1;',
  10252. ))
  10253. ->values(array(
  10254. 'name' => 'user_mail_status_blocked_subject',
  10255. 'language' => 'fr',
  10256. 'value' => 's:53:"fr - Account details for !username at !site (blocked)";',
  10257. ))
  10258. ->values(array(
  10259. 'name' => 'user_mail_status_deleted_body',
  10260. 'language' => 'fr',
  10261. 'value' => "s:58:\"fr - !username,\r\n\r\nYour account on !site has been deleted.\";",
  10262. ))
  10263. ->values(array(
  10264. 'name' => 'user_mail_status_deleted_notify',
  10265. 'language' => 'fr',
  10266. 'value' => 'i:0;',
  10267. ))
  10268. ->values(array(
  10269. 'name' => 'user_mail_status_deleted_subject',
  10270. 'language' => 'fr',
  10271. 'value' => 's:53:"fr - Account details for !username at !site (deleted)";',
  10272. ))
  10273. ->values(array(
  10274. 'name' => 'user_pictures',
  10275. 'language' => 'fr',
  10276. 'value' => 's:1:"0";',
  10277. ))
  10278. ->values(array(
  10279. 'name' => 'user_picture_default',
  10280. 'language' => 'fr',
  10281. 'value' => 's:0:"";',
  10282. ))
  10283. ->values(array(
  10284. 'name' => 'user_picture_dimensions',
  10285. 'language' => 'fr',
  10286. 'value' => 's:5:"85x85";',
  10287. ))
  10288. ->values(array(
  10289. 'name' => 'user_picture_file_size',
  10290. 'language' => 'fr',
  10291. 'value' => 's:2:"30";',
  10292. ))
  10293. ->values(array(
  10294. 'name' => 'user_picture_guidelines',
  10295. 'language' => 'fr',
  10296. 'value' => 's:0:"";',
  10297. ))
  10298. ->values(array(
  10299. 'name' => 'user_picture_path',
  10300. 'language' => 'fr',
  10301. 'value' => 's:8:"pictures";',
  10302. ))
  10303. ->values(array(
  10304. 'name' => 'user_register',
  10305. 'language' => 'fr',
  10306. 'value' => 's:1:"0";',
  10307. ))
  10308. ->values(array(
  10309. 'name' => 'user_registration_help',
  10310. 'language' => 'fr',
  10311. 'value' => 's:0:"";',
  10312. ))
  10313. ->values(array(
  10314. 'name' => 'user_signatures',
  10315. 'language' => 'fr',
  10316. 'value' => 's:1:"1";',
  10317. ))
  10318. ->values(array(
  10319. 'name' => 'anonymous',
  10320. 'language' => 'zu',
  10321. 'value' => 's:5:"Guest";',
  10322. ))
  10323. ->values(array(
  10324. 'name' => 'error_level',
  10325. 'language' => 'zu',
  10326. 'value' => 's:1:"1";',
  10327. ))
  10328. ->values(array(
  10329. 'name' => 'site_403',
  10330. 'language' => 'zu',
  10331. 'value' => 's:7:"zu-user";',
  10332. ))
  10333. ->values(array(
  10334. 'name' => 'site_404',
  10335. 'language' => 'zu',
  10336. 'value' => 's:17:"zu-page-not-found";',
  10337. ))
  10338. ->values(array(
  10339. 'name' => 'site_footer',
  10340. 'language' => 'zu',
  10341. 'value' => 's:0:"";',
  10342. ))
  10343. ->values(array(
  10344. 'name' => 'site_frontpage',
  10345. 'language' => 'zu',
  10346. 'value' => 's:4:"node";',
  10347. ))
  10348. ->values(array(
  10349. 'name' => 'site_mail',
  10350. 'language' => 'zu',
  10351. 'value' => 's:21:"site_mail@example.com";',
  10352. ))
  10353. ->values(array(
  10354. 'name' => 'site_mission',
  10355. 'language' => 'zu',
  10356. 'value' => 's:0:"";',
  10357. ))
  10358. ->values(array(
  10359. 'name' => 'site_name',
  10360. 'language' => 'zu',
  10361. 'value' => 's:14:"zu - site_name";',
  10362. ))
  10363. ->values(array(
  10364. 'name' => 'site_slogan',
  10365. 'language' => 'zu',
  10366. 'value' => 's:13:"Migrate rocks";',
  10367. ))
  10368. ->values(array(
  10369. 'name' => 'user_email_verification',
  10370. 'language' => 'zu',
  10371. 'value' => 'i:0;',
  10372. ))
  10373. ->values(array(
  10374. 'name' => 'user_mail_password_reset_body',
  10375. 'language' => 'zu',
  10376. 'value' => "s:419:\"!username,\r\n\r\nA request to reset the password for your account has been made at !site.\r\n\r\nYou may now log in to !uri_brief by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\nThis is a one-time login, so it can be used only once. It expires after one day and nothing will happen if it's not used.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\";",
  10377. ))
  10378. ->values(array(
  10379. 'name' => 'user_mail_password_reset_subject',
  10380. 'language' => 'zu',
  10381. 'value' => 's:52:"Replacement login information for !username at !site";',
  10382. ))
  10383. ->values(array(
  10384. 'name' => 'user_mail_register_admin_created_body',
  10385. 'language' => 'zu',
  10386. 'value' => "s:473:\"zu - !username,\r\n\r\nA site administrator at !site has created an account for you. You may now log in to !login_uri using the following username and password:\r\n\r\nusername: !username\r\npassword: !password\r\n\r\nYou may also log in by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\nThis is a one-time login, so it can be used only once.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\r\n\r\n\r\n-- !site team\";",
  10387. ))
  10388. ->values(array(
  10389. 'name' => 'user_mail_register_admin_created_subject',
  10390. 'language' => 'zu',
  10391. 'value' => 's:57:"zu - An administrator created an account for you at !site";',
  10392. ))
  10393. ->values(array(
  10394. 'name' => 'user_mail_register_no_approval_required_body',
  10395. 'language' => 'zu',
  10396. 'value' => "s:442:\"!username,\r\n\r\nThank you for registering at !site. You may now log in to !login_uri using the following username and password:\r\n\r\nusername: !username\r\npassword: !password\r\n\r\nYou may also log in by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\nThis is a one-time login, so it can be used only once.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\r\n\r\n\r\n-- !site team\";",
  10397. ))
  10398. ->values(array(
  10399. 'name' => 'user_mail_register_no_approval_required_subject',
  10400. 'language' => 'zu',
  10401. 'value' => 's:38:"Account details for !username at !site";',
  10402. ))
  10403. ->values(array(
  10404. 'name' => 'user_mail_register_pending_approval_body',
  10405. 'language' => 'zu',
  10406. 'value' => "s:272:\"!username,\r\n\r\nThank you for registering at !site. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\r\n\r\n\r\n-- !site team\";",
  10407. ))
  10408. ->values(array(
  10409. 'name' => 'user_mail_register_pending_approval_subject',
  10410. 'language' => 'zu',
  10411. 'value' => 's:63:"Account details for !username at !site (pending admin approval)";',
  10412. ))
  10413. ->values(array(
  10414. 'name' => 'user_mail_status_activated_body',
  10415. 'language' => 'zu',
  10416. 'value' => "s:434:\"!username,\r\n\r\nYour account at !site has been activated.\r\n\r\nYou may now log in by clicking on this link or copying and pasting it in your browser:\r\n\r\n!login_url\r\n\r\nThis is a one-time login, so it can be used only once.\r\n\r\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\r\n\r\nOnce you have set your own password, you will be able to log in to !login_uri in the future using:\r\n\r\nusername: !username\r\n\";",
  10417. ))
  10418. ->values(array(
  10419. 'name' => 'user_mail_status_activated_notify',
  10420. 'language' => 'zu',
  10421. 'value' => 'i:0;',
  10422. ))
  10423. ->values(array(
  10424. 'name' => 'user_mail_status_activated_subject',
  10425. 'language' => 'zu',
  10426. 'value' => 's:49:"Account details for !username at !site (approved)";',
  10427. ))
  10428. ->values(array(
  10429. 'name' => 'user_mail_status_blocked_body',
  10430. 'language' => 'zu',
  10431. 'value' => "s:53:\"!username,\r\n\r\nYour account on !site has been blocked.\";",
  10432. ))
  10433. ->values(array(
  10434. 'name' => 'user_mail_status_blocked_notify',
  10435. 'language' => 'zu',
  10436. 'value' => 'i:1;',
  10437. ))
  10438. ->values(array(
  10439. 'name' => 'user_mail_status_blocked_subject',
  10440. 'language' => 'zu',
  10441. 'value' => 's:48:"Account details for !username at !site (blocked)";',
  10442. ))
  10443. ->values(array(
  10444. 'name' => 'user_mail_status_deleted_body',
  10445. 'language' => 'zu',
  10446. 'value' => "s:53:\"!username,\r\n\r\nYour account on !site has been deleted.\";",
  10447. ))
  10448. ->values(array(
  10449. 'name' => 'user_mail_status_deleted_notify',
  10450. 'language' => 'zu',
  10451. 'value' => 'i:0;',
  10452. ))
  10453. ->values(array(
  10454. 'name' => 'user_mail_status_deleted_subject',
  10455. 'language' => 'zu',
  10456. 'value' => 's:48:"Account details for !username at !site (deleted)";',
  10457. ))
  10458. ->values(array(
  10459. 'name' => 'user_pictures',
  10460. 'language' => 'zu',
  10461. 'value' => 's:1:"0";',
  10462. ))
  10463. ->values(array(
  10464. 'name' => 'user_picture_default',
  10465. 'language' => 'zu',
  10466. 'value' => 's:0:"";',
  10467. ))
  10468. ->values(array(
  10469. 'name' => 'user_picture_dimensions',
  10470. 'language' => 'zu',
  10471. 'value' => 's:5:"85x85";',
  10472. ))
  10473. ->values(array(
  10474. 'name' => 'user_picture_file_size',
  10475. 'language' => 'zu',
  10476. 'value' => 's:2:"30";',
  10477. ))
  10478. ->values(array(
  10479. 'name' => 'user_picture_guidelines',
  10480. 'language' => 'zu',
  10481. 'value' => 's:0:"";',
  10482. ))
  10483. ->values(array(
  10484. 'name' => 'user_picture_path',
  10485. 'language' => 'zu',
  10486. 'value' => 's:8:"pictures";',
  10487. ))
  10488. ->values(array(
  10489. 'name' => 'user_register',
  10490. 'language' => 'zu',
  10491. 'value' => 's:1:"0";',
  10492. ))
  10493. ->values(array(
  10494. 'name' => 'user_registration_help',
  10495. 'language' => 'zu',
  10496. 'value' => 's:0:"";',
  10497. ))
  10498. ->values(array(
  10499. 'name' => 'user_signatures',
  10500. 'language' => 'zu',
  10501. 'value' => 's:1:"1";',
  10502. ))
  10503. ->execute();
  10504. $connection->schema()->createTable('imagecache_action', array(
  10505. 'fields' => array(
  10506. 'actionid' => array(
  10507. 'type' => 'serial',
  10508. 'not null' => TRUE,
  10509. 'size' => 'normal',
  10510. 'unsigned' => TRUE,
  10511. ),
  10512. 'presetid' => array(
  10513. 'type' => 'int',
  10514. 'not null' => TRUE,
  10515. 'size' => 'normal',
  10516. 'default' => '0',
  10517. 'unsigned' => TRUE,
  10518. ),
  10519. 'weight' => array(
  10520. 'type' => 'int',
  10521. 'not null' => TRUE,
  10522. 'size' => 'normal',
  10523. 'default' => '0',
  10524. ),
  10525. 'module' => array(
  10526. 'type' => 'varchar',
  10527. 'not null' => TRUE,
  10528. 'length' => '255',
  10529. ),
  10530. 'action' => array(
  10531. 'type' => 'varchar',
  10532. 'not null' => TRUE,
  10533. 'length' => '255',
  10534. ),
  10535. 'data' => array(
  10536. 'type' => 'text',
  10537. 'not null' => TRUE,
  10538. 'size' => 'normal',
  10539. ),
  10540. ),
  10541. 'primary key' => array(
  10542. 'actionid',
  10543. ),
  10544. 'mysql_character_set' => 'utf8',
  10545. ));
  10546. $connection->insert('imagecache_action')
  10547. ->fields(array(
  10548. 'actionid',
  10549. 'presetid',
  10550. 'weight',
  10551. 'module',
  10552. 'action',
  10553. 'data',
  10554. ))
  10555. ->values(array(
  10556. 'actionid' => '3',
  10557. 'presetid' => '1',
  10558. 'weight' => '0',
  10559. 'module' => 'imagecache',
  10560. 'action' => 'imagecache_scale_and_crop',
  10561. 'data' => 'a:2:{s:5:"width";s:4:"100%";s:6:"height";s:4:"100%";}',
  10562. ))
  10563. ->values(array(
  10564. 'actionid' => '4',
  10565. 'presetid' => '2',
  10566. 'weight' => '0',
  10567. 'module' => 'imagecache',
  10568. 'action' => 'imagecache_crop',
  10569. 'data' => 'a:4:{s:5:"width";s:3:"555";s:6:"height";s:4:"5555";s:7:"xoffset";s:6:"center";s:7:"yoffset";s:6:"center";}',
  10570. ))
  10571. ->values(array(
  10572. 'actionid' => '5',
  10573. 'presetid' => '2',
  10574. 'weight' => '0',
  10575. 'module' => 'imagecache',
  10576. 'action' => 'imagecache_resize',
  10577. 'data' => 'a:2:{s:5:"width";s:3:"55%";s:6:"height";s:3:"55%";}',
  10578. ))
  10579. ->values(array(
  10580. 'actionid' => '6',
  10581. 'presetid' => '2',
  10582. 'weight' => '0',
  10583. 'module' => 'imagecache',
  10584. 'action' => 'imagecache_rotate',
  10585. 'data' => 'a:3:{s:7:"degrees";s:2:"55";s:6:"random";i:0;s:7:"bgcolor";s:0:"";}',
  10586. ))
  10587. ->values(array(
  10588. 'actionid' => '7',
  10589. 'presetid' => '2',
  10590. 'weight' => '0',
  10591. 'module' => 'imagecache',
  10592. 'action' => '',
  10593. 'data' => 'a:3:{s:7:"degrees";s:2:"55";s:6:"random";i:0;s:7:"bgcolor";s:0:"";}',
  10594. ))
  10595. ->execute();
  10596. $connection->schema()->createTable('imagecache_preset', array(
  10597. 'fields' => array(
  10598. 'presetid' => array(
  10599. 'type' => 'serial',
  10600. 'not null' => TRUE,
  10601. 'size' => 'normal',
  10602. 'unsigned' => TRUE,
  10603. ),
  10604. 'presetname' => array(
  10605. 'type' => 'varchar',
  10606. 'not null' => TRUE,
  10607. 'length' => '255',
  10608. ),
  10609. ),
  10610. 'primary key' => array(
  10611. 'presetid',
  10612. ),
  10613. 'mysql_character_set' => 'utf8',
  10614. ));
  10615. $connection->insert('imagecache_preset')
  10616. ->fields(array(
  10617. 'presetid',
  10618. 'presetname',
  10619. ))
  10620. ->values(array(
  10621. 'presetid' => '1',
  10622. 'presetname' => 'slackjaw_boys',
  10623. ))
  10624. ->values(array(
  10625. 'presetid' => '2',
  10626. 'presetname' => 'big_blue_cheese',
  10627. ))
  10628. ->execute();
  10629. $connection->schema()->createTable('languages', array(
  10630. 'fields' => array(
  10631. 'language' => array(
  10632. 'type' => 'varchar',
  10633. 'not null' => TRUE,
  10634. 'length' => '12',
  10635. 'default' => '',
  10636. ),
  10637. 'name' => array(
  10638. 'type' => 'varchar',
  10639. 'not null' => TRUE,
  10640. 'length' => '64',
  10641. 'default' => '',
  10642. ),
  10643. 'native' => array(
  10644. 'type' => 'varchar',
  10645. 'not null' => TRUE,
  10646. 'length' => '64',
  10647. 'default' => '',
  10648. ),
  10649. 'direction' => array(
  10650. 'type' => 'int',
  10651. 'not null' => TRUE,
  10652. 'size' => 'normal',
  10653. 'default' => '0',
  10654. ),
  10655. 'enabled' => array(
  10656. 'type' => 'int',
  10657. 'not null' => TRUE,
  10658. 'size' => 'normal',
  10659. 'default' => '0',
  10660. ),
  10661. 'plurals' => array(
  10662. 'type' => 'int',
  10663. 'not null' => TRUE,
  10664. 'size' => 'normal',
  10665. 'default' => '0',
  10666. ),
  10667. 'formula' => array(
  10668. 'type' => 'varchar',
  10669. 'not null' => TRUE,
  10670. 'length' => '128',
  10671. 'default' => '',
  10672. ),
  10673. 'domain' => array(
  10674. 'type' => 'varchar',
  10675. 'not null' => TRUE,
  10676. 'length' => '128',
  10677. 'default' => '',
  10678. ),
  10679. 'prefix' => array(
  10680. 'type' => 'varchar',
  10681. 'not null' => TRUE,
  10682. 'length' => '128',
  10683. 'default' => '',
  10684. ),
  10685. 'weight' => array(
  10686. 'type' => 'int',
  10687. 'not null' => TRUE,
  10688. 'size' => 'normal',
  10689. 'default' => '0',
  10690. ),
  10691. 'javascript' => array(
  10692. 'type' => 'varchar',
  10693. 'not null' => TRUE,
  10694. 'length' => '32',
  10695. 'default' => '',
  10696. ),
  10697. ),
  10698. 'primary key' => array(
  10699. 'language',
  10700. ),
  10701. 'indexes' => array(
  10702. 'list' => array(
  10703. 'weight',
  10704. 'name',
  10705. ),
  10706. ),
  10707. 'mysql_character_set' => 'utf8',
  10708. ));
  10709. $connection->insert('languages')
  10710. ->fields(array(
  10711. 'language',
  10712. 'name',
  10713. 'native',
  10714. 'direction',
  10715. 'enabled',
  10716. 'plurals',
  10717. 'formula',
  10718. 'domain',
  10719. 'prefix',
  10720. 'weight',
  10721. 'javascript',
  10722. ))
  10723. ->values(array(
  10724. 'language' => 'en',
  10725. 'name' => 'English',
  10726. 'native' => 'English',
  10727. 'direction' => '0',
  10728. 'enabled' => '1',
  10729. 'plurals' => '0',
  10730. 'formula' => '',
  10731. 'domain' => '',
  10732. 'prefix' => '',
  10733. 'weight' => '0',
  10734. 'javascript' => '',
  10735. ))
  10736. ->values(array(
  10737. 'language' => 'fr',
  10738. 'name' => 'French',
  10739. 'native' => 'Français',
  10740. 'direction' => '0',
  10741. 'enabled' => '1',
  10742. 'plurals' => '2',
  10743. 'formula' => '($n>1)',
  10744. 'domain' => 'http://fr.drupal.org',
  10745. 'prefix' => 'fr',
  10746. 'weight' => '0',
  10747. 'javascript' => '047746d30d76aa44a54db9923c7c5fb0',
  10748. ))
  10749. ->values(array(
  10750. 'language' => 'zu',
  10751. 'name' => 'Zulu',
  10752. 'native' => 'isiZulu',
  10753. 'direction' => '0',
  10754. 'enabled' => '1',
  10755. 'plurals' => '0',
  10756. 'formula' => '',
  10757. 'domain' => 'http://zu.drupal.org',
  10758. 'prefix' => 'zu',
  10759. 'weight' => '0',
  10760. 'javascript' => '',
  10761. ))
  10762. ->execute();
  10763. $connection->schema()->createTable('locales_source', array(
  10764. 'fields' => array(
  10765. 'lid' => array(
  10766. 'type' => 'serial',
  10767. 'not null' => TRUE,
  10768. 'size' => 'normal',
  10769. ),
  10770. 'location' => array(
  10771. 'type' => 'varchar',
  10772. 'not null' => TRUE,
  10773. 'length' => '255',
  10774. 'default' => '',
  10775. ),
  10776. 'textgroup' => array(
  10777. 'type' => 'varchar',
  10778. 'not null' => TRUE,
  10779. 'length' => '255',
  10780. 'default' => 'default',
  10781. ),
  10782. 'source' => array(
  10783. 'type' => 'blob',
  10784. 'not null' => TRUE,
  10785. 'size' => 'normal',
  10786. ),
  10787. 'version' => array(
  10788. 'type' => 'varchar',
  10789. 'not null' => TRUE,
  10790. 'length' => '20',
  10791. 'default' => 'none',
  10792. ),
  10793. ),
  10794. 'primary key' => array(
  10795. 'lid',
  10796. ),
  10797. 'indexes' => array(
  10798. 'source' => array(
  10799. array(
  10800. 'source',
  10801. '30',
  10802. ),
  10803. ),
  10804. 'textgroup_location' => array(
  10805. array(
  10806. 'textgroup',
  10807. '30',
  10808. ),
  10809. array(
  10810. 'location',
  10811. '191',
  10812. ),
  10813. ),
  10814. ),
  10815. 'mysql_character_set' => 'utf8',
  10816. ));
  10817. $connection->insert('locales_source')
  10818. ->fields(array(
  10819. 'lid',
  10820. 'location',
  10821. 'textgroup',
  10822. 'source',
  10823. 'version',
  10824. ))
  10825. ->values(array(
  10826. 'lid' => '1',
  10827. 'location' => 'misc/drupal.js',
  10828. 'textgroup' => 'default',
  10829. 'source' => 'Unspecified error',
  10830. 'version' => 'none',
  10831. ))
  10832. ->values(array(
  10833. 'lid' => '2',
  10834. 'location' => 'misc/drupal.js',
  10835. 'textgroup' => 'default',
  10836. 'source' => 'An error occurred. \n@uri\n@text',
  10837. 'version' => 'none',
  10838. ))
  10839. ->values(array(
  10840. 'lid' => '3',
  10841. 'location' => 'misc/drupal.js',
  10842. 'textgroup' => 'default',
  10843. 'source' => 'An error occurred. \n@uri\n(no information available).',
  10844. 'version' => 'none',
  10845. ))
  10846. ->values(array(
  10847. 'lid' => '4',
  10848. 'location' => 'misc/drupal.js',
  10849. 'textgroup' => 'default',
  10850. 'source' => 'An HTTP error @status occurred. \n@uri',
  10851. 'version' => 'none',
  10852. ))
  10853. ->values(array(
  10854. 'lid' => '5',
  10855. 'location' => 'content.module:21',
  10856. 'textgroup' => 'default',
  10857. 'source' => 'The content module, a required component of the Content Construction Kit (CCK), allows administrators to associate custom fields with content types. In Drupal, content types are used to define the characteristics of a post, including the title and description of the fields displayed on its add and edit pages. Using the content module (and the other helper modules included in CCK), custom fields beyond the default "Title" and "Body" may be added. CCK features are accessible through tabs on the <a href="@content-types">content types administration page</a>. (See the <a href="@node-help">node module help page</a> for more information about content types.)',
  10858. 'version' => 'none',
  10859. ))
  10860. ->values(array(
  10861. 'lid' => '6',
  10862. 'location' => 'content.module:22',
  10863. 'textgroup' => 'default',
  10864. 'source' => 'When adding a custom field to a content type, you determine its type (whether it will contain text, numbers, or references to other objects) and how it will be displayed (either as a text field or area, a select box, checkbox, radio button, or autocompleting field). A field may have multiple values (i.e., a "person" may have multiple e-mail addresses) or a single value (i.e., an "employee" has a single employee identification number). As you add and edit fields, CCK automatically adjusts the structure of the database as necessary. CCK also provides a number of other features, including intelligent caching for your custom data, an import and export facility for content type definitions, and integration with other contributed modules.',
  10865. 'version' => 'none',
  10866. ))
  10867. ->values(array(
  10868. 'lid' => '7',
  10869. 'location' => 'content.module:23',
  10870. 'textgroup' => 'default',
  10871. 'source' => 'Custom field types are provided by a set of optional modules included with CCK (each module provides a different type). The <a href="@modules">modules page</a> allows you to enable or disable CCK components. A default installation of CCK includes:',
  10872. 'version' => 'none',
  10873. ))
  10874. ->values(array(
  10875. 'lid' => '8',
  10876. 'location' => 'content.module:25',
  10877. 'textgroup' => 'default',
  10878. 'source' => '<em>number</em>, which adds numeric field types, in integer, decimal or floating point form. You may define a set of allowed inputs, or specify an allowable range of values. A variety of common formats for displaying numeric data are available.',
  10879. 'version' => 'none',
  10880. ))
  10881. ->values(array(
  10882. 'lid' => '9',
  10883. 'location' => 'content.module:26',
  10884. 'textgroup' => 'default',
  10885. 'source' => "<em>text</em>, which adds text field types. A text field may contain plain text only, or optionally, may use Drupal's input format filters to securely manage rich text input. Text input fields may be either a single line (text field), multiple lines (text area), or for greater input control, a select box, checkbox, or radio buttons. If desired, CCK can validate the input to a set of allowed values.",
  10886. 'version' => 'none',
  10887. ))
  10888. ->values(array(
  10889. 'lid' => '10',
  10890. 'location' => 'content.module:27',
  10891. 'textgroup' => 'default',
  10892. 'source' => '<em>nodereference</em>, which creates custom references between Drupal nodes. By adding a <em>nodereference</em> field and two different content types, for instance, you can easily create complex parent/child relationships between data (multiple "employee" nodes may contain a <em>nodereference</em> field linking to an "employer" node).',
  10893. 'version' => 'none',
  10894. ))
  10895. ->values(array(
  10896. 'lid' => '11',
  10897. 'location' => 'content.module:28',
  10898. 'textgroup' => 'default',
  10899. 'source' => "<em>userreference</em>, which creates custom references to your sites' user accounts. By adding a <em>userreference</em> field, you can create complex relationships between your site's users and posts. To track user involvement in a post beyond Drupal's standard <em>Authored by</em> field, for instance, add a <em>userreference</em> field named \"Edited by\" to a content type to store a link to an editor's user account page.",
  10900. 'version' => 'none',
  10901. ))
  10902. ->values(array(
  10903. 'lid' => '12',
  10904. 'location' => 'content.module:29',
  10905. 'textgroup' => 'default',
  10906. 'source' => '<em>fieldgroup</em>, which creates collapsible fieldsets to hold a group of related fields. A fieldset may either be open or closed by default. The order of your fieldsets, and the order of fields within a fieldset, is managed via a drag-and-drop interface provided by content module.',
  10907. 'version' => 'none',
  10908. ))
  10909. ->values(array(
  10910. 'lid' => '13',
  10911. 'location' => 'content.module:31',
  10912. 'textgroup' => 'default',
  10913. 'source' => 'For more information, see the online handbook entry for <a href="@handbook-cck">CCK</a> or the <a href="@project-cck">CCK project page</a>.',
  10914. 'version' => 'none',
  10915. ))
  10916. ->values(array(
  10917. 'lid' => '14',
  10918. 'location' => 'theme/theme.inc:111',
  10919. 'textgroup' => 'default',
  10920. 'source' => "Configure how this content type's fields and field labels should be displayed when it's viewed in teaser and full-page mode.",
  10921. 'version' => 'none',
  10922. ))
  10923. ->values(array(
  10924. 'lid' => '15',
  10925. 'location' => 'theme/theme.inc:114',
  10926. 'textgroup' => 'default',
  10927. 'source' => "Configure how this content type's fields should be displayed when it's rendered in the following contexts.",
  10928. 'version' => 'none',
  10929. ))
  10930. ->values(array(
  10931. 'lid' => '16',
  10932. 'location' => 'content.module:48',
  10933. 'textgroup' => 'default',
  10934. 'source' => 'Control the order of fields in the input form.',
  10935. 'version' => 'none',
  10936. ))
  10937. ->values(array(
  10938. 'lid' => '17',
  10939. 'location' => 'content.module:492',
  10940. 'textgroup' => 'default',
  10941. 'source' => 'This field is required.',
  10942. 'version' => '6.38-dev',
  10943. ))
  10944. ->values(array(
  10945. 'lid' => '18',
  10946. 'location' => 'content.module:496',
  10947. 'textgroup' => 'default',
  10948. 'source' => '!title: !required',
  10949. 'version' => '6.38-dev',
  10950. ))
  10951. ->values(array(
  10952. 'lid' => '19',
  10953. 'location' => 'content.module:499, modules/content_multigroup/content_multigroup.module:903',
  10954. 'textgroup' => 'default',
  10955. 'source' => 'Order',
  10956. 'version' => 'none',
  10957. ))
  10958. ->values(array(
  10959. 'lid' => '20',
  10960. 'location' => 'content.module:1640',
  10961. 'textgroup' => 'default',
  10962. 'source' => 'RSS Item',
  10963. 'version' => 'none',
  10964. ))
  10965. ->values(array(
  10966. 'lid' => '21',
  10967. 'location' => 'content.module:1883',
  10968. 'textgroup' => 'default',
  10969. 'source' => 'Search Index',
  10970. 'version' => 'none',
  10971. ))
  10972. ->values(array(
  10973. 'lid' => '22',
  10974. 'location' => 'content.module:1887',
  10975. 'textgroup' => 'default',
  10976. 'source' => 'Search Result',
  10977. 'version' => 'none',
  10978. ))
  10979. ->values(array(
  10980. 'lid' => '23',
  10981. 'location' => 'content.module:2362',
  10982. 'textgroup' => 'default',
  10983. 'source' => 'Language',
  10984. 'version' => '6.38-dev',
  10985. ))
  10986. ->values(array(
  10987. 'lid' => '24',
  10988. 'location' => 'content.module:2376',
  10989. 'textgroup' => 'default',
  10990. 'source' => 'Taxonomy',
  10991. 'version' => '6.38-dev',
  10992. ))
  10993. ->values(array(
  10994. 'lid' => '25',
  10995. 'location' => 'content.module:2407',
  10996. 'textgroup' => 'default',
  10997. 'source' => 'File attachments',
  10998. 'version' => '6.38-dev',
  10999. ))
  11000. ->values(array(
  11001. 'lid' => '26',
  11002. 'location' => 'content.module:595',
  11003. 'textgroup' => 'default',
  11004. 'source' => 'Updating field type %type with module %module.',
  11005. 'version' => 'none',
  11006. ))
  11007. ->values(array(
  11008. 'lid' => '27',
  11009. 'location' => 'content.module:602',
  11010. 'textgroup' => 'default',
  11011. 'source' => 'Updating widget type %type with module %module.',
  11012. 'version' => 'none',
  11013. ))
  11014. ->values(array(
  11015. 'lid' => '28',
  11016. 'location' => 'content.module:60',
  11017. 'textgroup' => 'default',
  11018. 'source' => 'Use PHP input for field settings (dangerous - grant with care)',
  11019. 'version' => '6.38-dev',
  11020. ))
  11021. ->values(array(
  11022. 'lid' => '29',
  11023. 'location' => 'content.module:101',
  11024. 'textgroup' => 'default',
  11025. 'source' => 'Manage fields',
  11026. 'version' => 'none',
  11027. ))
  11028. ->values(array(
  11029. 'lid' => '30',
  11030. 'location' => 'content.module:110',
  11031. 'textgroup' => 'default',
  11032. 'source' => 'Display fields',
  11033. 'version' => 'none',
  11034. ))
  11035. ->values(array(
  11036. 'lid' => '31',
  11037. 'location' => 'content.module:143',
  11038. 'textgroup' => 'default',
  11039. 'source' => 'General',
  11040. 'version' => 'none',
  11041. ))
  11042. ->values(array(
  11043. 'lid' => '32',
  11044. 'location' => 'content.module:149',
  11045. 'textgroup' => 'default',
  11046. 'source' => 'Advanced',
  11047. 'version' => 'none',
  11048. ))
  11049. ->values(array(
  11050. 'lid' => '33',
  11051. 'location' => 'content.module:141',
  11052. 'textgroup' => 'default',
  11053. 'source' => 'Remove field',
  11054. 'version' => '6.38-dev',
  11055. ))
  11056. ->values(array(
  11057. 'lid' => '34',
  11058. 'location' => 'content.info:0, includes/content.rules.inc:19;212, includes/views/content.views.inc:180;261',
  11059. 'textgroup' => 'default',
  11060. 'source' => 'Content',
  11061. 'version' => '6.38-dev',
  11062. ))
  11063. ->values(array(
  11064. 'lid' => '35',
  11065. 'location' => 'content.info:0',
  11066. 'textgroup' => 'default',
  11067. 'source' => 'Allows administrators to define new content types.',
  11068. 'version' => '6.38-dev',
  11069. ))
  11070. ->values(array(
  11071. 'lid' => '36',
  11072. 'location' => 'content.info:0, modules/content_copy/content_copy.info:0, modules/content_permissions/content_permissions.info:0, modules/fieldgroup/fieldgroup.info:0',
  11073. 'textgroup' => 'default',
  11074. 'source' => 'CCK',
  11075. 'version' => '6.38-dev',
  11076. ))
  11077. ->values(array(
  11078. 'lid' => '37',
  11079. 'location' => 'modules/text/text.module:41, modules/text/text.info:0',
  11080. 'textgroup' => 'default',
  11081. 'source' => 'Text',
  11082. 'version' => '6.38-dev',
  11083. ))
  11084. ->values(array(
  11085. 'lid' => '38',
  11086. 'location' => 'examples/example_field.php:178',
  11087. 'textgroup' => 'default',
  11088. 'source' => 'The possible values this field can contain. Enter one value per line, in the format key|label. The key is the value that will be stored in the database and it must match the field storage type, %type. The label is optional and the key will be used as the label if no label is specified.',
  11089. 'version' => 'none',
  11090. ))
  11091. ->values(array(
  11092. 'lid' => '39',
  11093. 'location' => 'examples/example_field.php:484',
  11094. 'textgroup' => 'default',
  11095. 'source' => 'Text area',
  11096. 'version' => 'none',
  11097. ))
  11098. ->values(array(
  11099. 'lid' => '40',
  11100. 'location' => 'includes/content.admin.inc:171;197;895, modules/fieldgroup/fieldgroup.module:209',
  11101. 'textgroup' => 'default',
  11102. 'source' => 'Remove',
  11103. 'version' => 'none',
  11104. ))
  11105. ->values(array(
  11106. 'lid' => '41',
  11107. 'location' => 'content.module:1854',
  11108. 'textgroup' => 'default',
  11109. 'source' => 'Basic',
  11110. 'version' => '6.38-dev',
  11111. ))
  11112. ->values(array(
  11113. 'lid' => '42',
  11114. 'location' => 'content.module:1857, modules/nodereference/nodereference.module:268',
  11115. 'textgroup' => 'default',
  11116. 'source' => 'Teaser',
  11117. 'version' => '6.38-dev',
  11118. ))
  11119. ->values(array(
  11120. 'lid' => '43',
  11121. 'location' => 'content.module:1861, modules/nodereference/nodereference.module:263',
  11122. 'textgroup' => 'default',
  11123. 'source' => 'Full node',
  11124. 'version' => '6.38-dev',
  11125. ))
  11126. ->values(array(
  11127. 'lid' => '44',
  11128. 'location' => 'content.module:1867;1870',
  11129. 'textgroup' => 'default',
  11130. 'source' => 'RSS',
  11131. 'version' => '6.38-dev',
  11132. ))
  11133. ->values(array(
  11134. 'lid' => '45',
  11135. 'location' => 'content.module:1880',
  11136. 'textgroup' => 'default',
  11137. 'source' => 'Search',
  11138. 'version' => '6.38-dev',
  11139. ))
  11140. ->values(array(
  11141. 'lid' => '46',
  11142. 'location' => 'content.module:2348;2355',
  11143. 'textgroup' => 'default',
  11144. 'source' => 'Node module form.',
  11145. 'version' => '6.38-dev',
  11146. ))
  11147. ->values(array(
  11148. 'lid' => '47',
  11149. 'location' => 'content.module:2363',
  11150. 'textgroup' => 'default',
  11151. 'source' => 'Locale module form.',
  11152. 'version' => '6.38-dev',
  11153. ))
  11154. ->values(array(
  11155. 'lid' => '48',
  11156. 'location' => 'content.module:2369',
  11157. 'textgroup' => 'default',
  11158. 'source' => 'Menu settings',
  11159. 'version' => '6.38-dev',
  11160. ))
  11161. ->values(array(
  11162. 'lid' => '49',
  11163. 'location' => 'content.module:2370',
  11164. 'textgroup' => 'default',
  11165. 'source' => 'Menu module form.',
  11166. 'version' => '6.38-dev',
  11167. ))
  11168. ->values(array(
  11169. 'lid' => '50',
  11170. 'location' => 'content.module:2377',
  11171. 'textgroup' => 'default',
  11172. 'source' => 'Taxonomy module form.',
  11173. 'version' => '6.38-dev',
  11174. ))
  11175. ->values(array(
  11176. 'lid' => '51',
  11177. 'location' => 'content.module:2383',
  11178. 'textgroup' => 'default',
  11179. 'source' => 'Book',
  11180. 'version' => '6.38-dev',
  11181. ))
  11182. ->values(array(
  11183. 'lid' => '52',
  11184. 'location' => 'content.module:2384',
  11185. 'textgroup' => 'default',
  11186. 'source' => 'Book module form.',
  11187. 'version' => '6.38-dev',
  11188. ))
  11189. ->values(array(
  11190. 'lid' => '53',
  11191. 'location' => 'content.module:2390',
  11192. 'textgroup' => 'default',
  11193. 'source' => 'Poll title',
  11194. 'version' => 'none',
  11195. ))
  11196. ->values(array(
  11197. 'lid' => '54',
  11198. 'location' => 'content.module:2391',
  11199. 'textgroup' => 'default',
  11200. 'source' => 'Poll module title.',
  11201. 'version' => 'none',
  11202. ))
  11203. ->values(array(
  11204. 'lid' => '55',
  11205. 'location' => 'content.module:2396',
  11206. 'textgroup' => 'default',
  11207. 'source' => 'Poll choices',
  11208. 'version' => 'none',
  11209. ))
  11210. ->values(array(
  11211. 'lid' => '56',
  11212. 'location' => 'content.module:2397',
  11213. 'textgroup' => 'default',
  11214. 'source' => 'Poll module choices.',
  11215. 'version' => 'none',
  11216. ))
  11217. ->values(array(
  11218. 'lid' => '57',
  11219. 'location' => 'content.module:2400',
  11220. 'textgroup' => 'default',
  11221. 'source' => 'Poll settings',
  11222. 'version' => 'none',
  11223. ))
  11224. ->values(array(
  11225. 'lid' => '58',
  11226. 'location' => 'content.module:2401',
  11227. 'textgroup' => 'default',
  11228. 'source' => 'Poll module settings.',
  11229. 'version' => 'none',
  11230. ))
  11231. ->values(array(
  11232. 'lid' => '59',
  11233. 'location' => 'content.module:2408',
  11234. 'textgroup' => 'default',
  11235. 'source' => 'Upload module form.',
  11236. 'version' => '6.38-dev',
  11237. ))
  11238. ->values(array(
  11239. 'lid' => '60',
  11240. 'location' => 'content.module:595;602;0, includes/content.crud.inc:589;633',
  11241. 'textgroup' => 'default',
  11242. 'source' => 'content',
  11243. 'version' => 'none',
  11244. ))
  11245. ->values(array(
  11246. 'lid' => '61',
  11247. 'location' => 'content.module:79',
  11248. 'textgroup' => 'default',
  11249. 'source' => 'Fields',
  11250. 'version' => 'none',
  11251. ))
  11252. ->values(array(
  11253. 'lid' => '62',
  11254. 'location' => 'content.install:236',
  11255. 'textgroup' => 'default',
  11256. 'source' => "Updates for CCK-related modules are not run until the modules are enabled on the <a href=\"@admin-modules-path\">administer modules page</a>. When you enable them, you'll need to return to <a href=\"@update-php\">update.php</a> and run the remaining updates.",
  11257. 'version' => 'none',
  11258. ))
  11259. ->values(array(
  11260. 'lid' => '63',
  11261. 'location' => 'content.install:239',
  11262. 'textgroup' => 'default',
  11263. 'source' => '!module.module has updates but cannot be updated because content.module is not enabled.<br />If and when content.module is enabled, you will need to re-run the update script. You will continue to see this message until the module is enabled and updates are run.',
  11264. 'version' => 'none',
  11265. ))
  11266. ->values(array(
  11267. 'lid' => '64',
  11268. 'location' => 'content.install:244',
  11269. 'textgroup' => 'default',
  11270. 'source' => '!module.module has updates and is available in the modules folder but is not enabled.<br />If and when it is enabled, you will need to re-run the update script. You will continue to see this message until the module is enabled and updates are run.',
  11271. 'version' => 'none',
  11272. ))
  11273. ->values(array(
  11274. 'lid' => '65',
  11275. 'location' => 'content.install:251',
  11276. 'textgroup' => 'default',
  11277. 'source' => 'Some updates are still pending. Please return to <a href="@update-php">update.php</a> and run the remaining updates.',
  11278. 'version' => 'none',
  11279. ))
  11280. ->values(array(
  11281. 'lid' => '66',
  11282. 'location' => '(duplicate) content.install:10',
  11283. 'textgroup' => 'default',
  11284. 'source' => 'CCK - No Views integration',
  11285. 'version' => 'none',
  11286. ))
  11287. ->values(array(
  11288. 'lid' => '67',
  11289. 'location' => '(duplicate) content.install:11',
  11290. 'textgroup' => 'default',
  11291. 'source' => 'CCK integration with Views module requires Views 6.x-2.0-rc2 or greater.',
  11292. 'version' => 'none',
  11293. ))
  11294. ->values(array(
  11295. 'lid' => '68',
  11296. 'location' => 'includes/content.admin.inc:16, modules/content_copy/content_copy_export_form.tpl.php:11, theme/content-admin-field-overview-form.tpl.php:12',
  11297. 'textgroup' => 'default',
  11298. 'source' => 'Name',
  11299. 'version' => '6.38-dev',
  11300. ))
  11301. ->values(array(
  11302. 'lid' => '69',
  11303. 'location' => 'includes/content.admin.inc:16, modules/content_copy/content_copy_export_form.tpl.php:12, theme/content-admin-field-overview-form.tpl.php:13',
  11304. 'textgroup' => 'default',
  11305. 'source' => 'Type',
  11306. 'version' => '6.38-dev',
  11307. ))
  11308. ->values(array(
  11309. 'lid' => '70',
  11310. 'location' => 'includes/content.admin.inc:16, modules/fieldgroup/fieldgroup.module:158',
  11311. 'textgroup' => 'default',
  11312. 'source' => 'Description',
  11313. 'version' => '6.38-dev',
  11314. ))
  11315. ->values(array(
  11316. 'lid' => '71',
  11317. 'location' => 'includes/content.admin.inc:16, theme/content-admin-field-overview-form.tpl.php:14',
  11318. 'textgroup' => 'default',
  11319. 'source' => 'Operations',
  11320. 'version' => '6.38-dev',
  11321. ))
  11322. ->values(array(
  11323. 'lid' => '72',
  11324. 'location' => 'includes/content.admin.inc:30',
  11325. 'textgroup' => 'default',
  11326. 'source' => 'edit',
  11327. 'version' => '6.38-dev',
  11328. ))
  11329. ->values(array(
  11330. 'lid' => '73',
  11331. 'location' => 'includes/content.admin.inc:33',
  11332. 'textgroup' => 'default',
  11333. 'source' => 'manage fields',
  11334. 'version' => 'none',
  11335. ))
  11336. ->values(array(
  11337. 'lid' => '74',
  11338. 'location' => 'includes/content.admin.inc:36',
  11339. 'textgroup' => 'default',
  11340. 'source' => 'delete',
  11341. 'version' => '6.38-dev',
  11342. ))
  11343. ->values(array(
  11344. 'lid' => '75',
  11345. 'location' => 'includes/content.admin.inc:47',
  11346. 'textgroup' => 'default',
  11347. 'source' => 'No content types available.',
  11348. 'version' => 'none',
  11349. ))
  11350. ->values(array(
  11351. 'lid' => '76',
  11352. 'location' => 'includes/content.admin.inc:54',
  11353. 'textgroup' => 'default',
  11354. 'source' => '» Add a new content type',
  11355. 'version' => 'none',
  11356. ))
  11357. ->values(array(
  11358. 'lid' => '77',
  11359. 'location' => 'includes/content.admin.inc:67;796;991',
  11360. 'textgroup' => 'default',
  11361. 'source' => 'Field name',
  11362. 'version' => 'none',
  11363. ))
  11364. ->values(array(
  11365. 'lid' => '78',
  11366. 'location' => 'includes/content.admin.inc:67;811;997',
  11367. 'textgroup' => 'default',
  11368. 'source' => 'Field type',
  11369. 'version' => 'none',
  11370. ))
  11371. ->values(array(
  11372. 'lid' => '79',
  11373. 'location' => 'includes/content.admin.inc:67',
  11374. 'textgroup' => 'default',
  11375. 'source' => 'Used in',
  11376. 'version' => 'none',
  11377. ))
  11378. ->values(array(
  11379. 'lid' => '80',
  11380. 'location' => 'includes/content.admin.inc:71',
  11381. 'textgroup' => 'default',
  11382. 'source' => '@field_name (Locked)',
  11383. 'version' => 'none',
  11384. ))
  11385. ->values(array(
  11386. 'lid' => '81',
  11387. 'location' => 'includes/content.admin.inc:90',
  11388. 'textgroup' => 'default',
  11389. 'source' => 'No fields have been defined for any content type yet.',
  11390. 'version' => 'none',
  11391. ))
  11392. ->values(array(
  11393. 'lid' => '82',
  11394. 'location' => 'not literally, English needs work, includes/content.admin.inc:106, fuzzy',
  11395. 'textgroup' => 'default',
  11396. 'source' => 'This content type has inactive fields. Inactive fields are not included in lists of available fields until their modules are enabled.',
  11397. 'version' => 'none',
  11398. ))
  11399. ->values(array(
  11400. 'lid' => '83',
  11401. 'location' => 'includes/content.admin.inc:108',
  11402. 'textgroup' => 'default',
  11403. 'source' => '!field (!field_name) is an inactive !field_type field that uses a !widget_type widget.',
  11404. 'version' => 'none',
  11405. ))
  11406. ->values(array(
  11407. 'lid' => '84',
  11408. 'location' => 'includes/content.admin.inc:170;196',
  11409. 'textgroup' => 'default',
  11410. 'source' => 'Configure',
  11411. 'version' => '6.38-dev',
  11412. ))
  11413. ->values(array(
  11414. 'lid' => '85',
  11415. 'location' => 'Schreibgeschützt, includes/content.admin.inc:181',
  11416. 'textgroup' => 'default',
  11417. 'source' => 'Locked',
  11418. 'version' => 'none',
  11419. ))
  11420. ->values(array(
  11421. 'lid' => '86',
  11422. 'location' => 'includes/content.admin.inc:237',
  11423. 'textgroup' => 'default',
  11424. 'source' => '- Select a field type -',
  11425. 'version' => 'none',
  11426. ))
  11427. ->values(array(
  11428. 'lid' => '87',
  11429. 'location' => 'includes/content.admin.inc:238',
  11430. 'textgroup' => 'default',
  11431. 'source' => '- Select a widget -',
  11432. 'version' => 'none',
  11433. ))
  11434. ->values(array(
  11435. 'lid' => '88',
  11436. 'location' => 'includes/content.admin.inc:244;285;315;804;985, includes/panels/content_types/content_field.inc:97, includes/views/handlers/content_handler_field.inc:56',
  11437. 'textgroup' => 'default',
  11438. 'source' => 'Label',
  11439. 'version' => 'none',
  11440. ))
  11441. ->values(array(
  11442. 'lid' => '89',
  11443. 'location' => 'includes/content.admin.inc:253',
  11444. 'textgroup' => 'default',
  11445. 'source' => 'Field name (a-z, 0-9, _)',
  11446. 'version' => 'none',
  11447. ))
  11448. ->values(array(
  11449. 'lid' => '90',
  11450. 'location' => 'includes/content.admin.inc:258',
  11451. 'textgroup' => 'default',
  11452. 'source' => 'Type of data to store.',
  11453. 'version' => 'none',
  11454. ))
  11455. ->values(array(
  11456. 'lid' => '91',
  11457. 'location' => 'includes/content.admin.inc:263;295',
  11458. 'textgroup' => 'default',
  11459. 'source' => 'Form element to edit the data.',
  11460. 'version' => 'none',
  11461. ))
  11462. ->values(array(
  11463. 'lid' => '92',
  11464. 'location' => 'includes/content.admin.inc:279',
  11465. 'textgroup' => 'default',
  11466. 'source' => '- Select an existing field -',
  11467. 'version' => 'none',
  11468. ))
  11469. ->values(array(
  11470. 'lid' => '93',
  11471. 'location' => 'includes/content.admin.inc:290',
  11472. 'textgroup' => 'default',
  11473. 'source' => 'Field to share',
  11474. 'version' => 'none',
  11475. ))
  11476. ->values(array(
  11477. 'lid' => '94',
  11478. 'location' => 'includes/content.admin.inc:324',
  11479. 'textgroup' => 'default',
  11480. 'source' => 'Group name (a-z, 0-9, _)',
  11481. 'version' => 'none',
  11482. ))
  11483. ->values(array(
  11484. 'lid' => '95',
  11485. 'location' => 'includes/content.admin.inc:352;677, modules/fieldgroup/fieldgroup.module:177;341',
  11486. 'textgroup' => 'default',
  11487. 'source' => 'Save',
  11488. 'version' => 'none',
  11489. ))
  11490. ->values(array(
  11491. 'lid' => '96',
  11492. 'location' => 'includes/content.admin.inc:373',
  11493. 'textgroup' => 'default',
  11494. 'source' => 'Add new field: you need to provide a label.',
  11495. 'version' => 'none',
  11496. ))
  11497. ->values(array(
  11498. 'lid' => '97',
  11499. 'location' => 'includes/content.admin.inc:378',
  11500. 'textgroup' => 'default',
  11501. 'source' => 'Add new field: you need to provide a field name.',
  11502. 'version' => 'none',
  11503. ))
  11504. ->values(array(
  11505. 'lid' => '98',
  11506. 'location' => 'includes/content.admin.inc:392',
  11507. 'textgroup' => 'default',
  11508. 'source' => 'Add new field: the field name %field_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
  11509. 'version' => 'none',
  11510. ))
  11511. ->values(array(
  11512. 'lid' => '99',
  11513. 'location' => 'includes/content.admin.inc:395',
  11514. 'textgroup' => 'default',
  11515. 'source' => "Add new field: the field name %field_name is too long. The name is limited to 32 characters, including the 'field_' prefix.",
  11516. 'version' => 'none',
  11517. ))
  11518. ->values(array(
  11519. 'lid' => '100',
  11520. 'location' => 'includes/content.admin.inc:399',
  11521. 'textgroup' => 'default',
  11522. 'source' => "Add new field: the name 'field_instance' is a reserved name.",
  11523. 'version' => 'none',
  11524. ))
  11525. ->values(array(
  11526. 'lid' => '101',
  11527. 'location' => 'includes/content.admin.inc:411',
  11528. 'textgroup' => 'default',
  11529. 'source' => 'Add new field: the field name %field_name already exists.',
  11530. 'version' => 'none',
  11531. ))
  11532. ->values(array(
  11533. 'lid' => '102',
  11534. 'location' => 'includes/content.admin.inc:417',
  11535. 'textgroup' => 'default',
  11536. 'source' => 'Add new field: you need to select a field type.',
  11537. 'version' => 'none',
  11538. ))
  11539. ->values(array(
  11540. 'lid' => '103',
  11541. 'location' => 'includes/content.admin.inc:422',
  11542. 'textgroup' => 'default',
  11543. 'source' => 'Add new field: you need to select a widget.',
  11544. 'version' => 'none',
  11545. ))
  11546. ->values(array(
  11547. 'lid' => '104',
  11548. 'location' => 'includes/content.admin.inc:428',
  11549. 'textgroup' => 'default',
  11550. 'source' => 'Add new field: invalid widget.',
  11551. 'version' => 'none',
  11552. ))
  11553. ->values(array(
  11554. 'lid' => '105',
  11555. 'location' => 'includes/content.admin.inc:449',
  11556. 'textgroup' => 'default',
  11557. 'source' => 'Add existing field: you need to provide a label.',
  11558. 'version' => 'none',
  11559. ))
  11560. ->values(array(
  11561. 'lid' => '106',
  11562. 'location' => 'includes/content.admin.inc:454',
  11563. 'textgroup' => 'default',
  11564. 'source' => 'Add existing field: you need to select a field.',
  11565. 'version' => 'none',
  11566. ))
  11567. ->values(array(
  11568. 'lid' => '107',
  11569. 'location' => 'includes/content.admin.inc:459',
  11570. 'textgroup' => 'default',
  11571. 'source' => 'Add existing field: you need to select a widget.',
  11572. 'version' => 'none',
  11573. ))
  11574. ->values(array(
  11575. 'lid' => '108',
  11576. 'location' => 'includes/content.admin.inc:465',
  11577. 'textgroup' => 'default',
  11578. 'source' => 'Add existing field: invalid widget.',
  11579. 'version' => 'none',
  11580. ))
  11581. ->values(array(
  11582. 'lid' => '109',
  11583. 'location' => 'includes/content.admin.inc:514',
  11584. 'textgroup' => 'default',
  11585. 'source' => 'There was a problem creating field %label.',
  11586. 'version' => 'none',
  11587. ))
  11588. ->values(array(
  11589. 'lid' => '110',
  11590. 'location' => 'includes/content.admin.inc:526',
  11591. 'textgroup' => 'default',
  11592. 'source' => 'The field %label cannot be added to a content type because it is locked.',
  11593. 'version' => 'none',
  11594. ))
  11595. ->values(array(
  11596. 'lid' => '111',
  11597. 'location' => 'includes/content.admin.inc:536',
  11598. 'textgroup' => 'default',
  11599. 'source' => 'There was a problem adding field %label.',
  11600. 'version' => 'none',
  11601. ))
  11602. ->values(array(
  11603. 'lid' => '112',
  11604. 'location' => 'includes/content.admin.inc:578',
  11605. 'textgroup' => 'default',
  11606. 'source' => 'There are no fields configured for this content type. You can add new fields on the <a href="@link">Manage fields</a> page.',
  11607. 'version' => 'none',
  11608. ))
  11609. ->values(array(
  11610. 'lid' => '113',
  11611. 'location' => 'includes/content.admin.inc:585;633, includes/panels/content_types/content_field.inc:101, modules/content_multigroup/content_multigroup.module:352',
  11612. 'textgroup' => 'default',
  11613. 'source' => 'Above',
  11614. 'version' => 'none',
  11615. ))
  11616. ->values(array(
  11617. 'lid' => '114',
  11618. 'location' => 'includes/content.admin.inc:586, includes/panels/content_types/content_field.inc:102',
  11619. 'textgroup' => 'default',
  11620. 'source' => 'Inline',
  11621. 'version' => 'none',
  11622. ))
  11623. ->values(array(
  11624. 'lid' => '115',
  11625. 'location' => 'includes/content.admin.inc:625;668',
  11626. 'textgroup' => 'default',
  11627. 'source' => 'Include',
  11628. 'version' => 'none',
  11629. ))
  11630. ->values(array(
  11631. 'lid' => '116',
  11632. 'location' => 'includes/content.admin.inc:625;668, theme/content-admin-display-overview-form.tpl.php:17',
  11633. 'textgroup' => 'default',
  11634. 'source' => 'Exclude',
  11635. 'version' => 'none',
  11636. ))
  11637. ->values(array(
  11638. 'lid' => '117',
  11639. 'location' => 'includes/content.admin.inc:637',
  11640. 'textgroup' => 'default',
  11641. 'source' => 'no styling',
  11642. 'version' => 'none',
  11643. ))
  11644. ->values(array(
  11645. 'lid' => '118',
  11646. 'location' => 'includes/content.admin.inc:638',
  11647. 'textgroup' => 'default',
  11648. 'source' => 'simple',
  11649. 'version' => 'none',
  11650. ))
  11651. ->values(array(
  11652. 'lid' => '119',
  11653. 'location' => 'includes/content.admin.inc:639',
  11654. 'textgroup' => 'default',
  11655. 'source' => 'fieldset',
  11656. 'version' => 'none',
  11657. ))
  11658. ->values(array(
  11659. 'lid' => '120',
  11660. 'location' => 'includes/content.admin.inc:640',
  11661. 'textgroup' => 'default',
  11662. 'source' => 'fieldset - collapsible',
  11663. 'version' => 'none',
  11664. ))
  11665. ->values(array(
  11666. 'lid' => '121',
  11667. 'location' => 'includes/content.admin.inc:641',
  11668. 'textgroup' => 'default',
  11669. 'source' => 'fieldset - collapsed',
  11670. 'version' => 'none',
  11671. ))
  11672. ->values(array(
  11673. 'lid' => '122',
  11674. 'location' => 'includes/content.admin.inc:697',
  11675. 'textgroup' => 'default',
  11676. 'source' => 'Your settings have been saved.',
  11677. 'version' => 'none',
  11678. ))
  11679. ->values(array(
  11680. 'lid' => '123',
  11681. 'location' => 'includes/content.admin.inc:767',
  11682. 'textgroup' => 'default',
  11683. 'source' => '@type: @field (@label)',
  11684. 'version' => 'none',
  11685. ))
  11686. ->values(array(
  11687. 'lid' => '124',
  11688. 'location' => 'includes/content.admin.inc:793',
  11689. 'textgroup' => 'default',
  11690. 'source' => 'Edit basic information',
  11691. 'version' => 'none',
  11692. ))
  11693. ->values(array(
  11694. 'lid' => '125',
  11695. 'location' => 'includes/content.admin.inc:799',
  11696. 'textgroup' => 'default',
  11697. 'source' => 'The machine-readable name of the field. This name cannot be changed.',
  11698. 'version' => 'none',
  11699. ))
  11700. ->values(array(
  11701. 'lid' => '126',
  11702. 'location' => 'includes/content.admin.inc:807',
  11703. 'textgroup' => 'default',
  11704. 'source' => 'A human-readable name to be used as the label for this field in the %type content type.',
  11705. 'version' => 'none',
  11706. ))
  11707. ->values(array(
  11708. 'lid' => '127',
  11709. 'location' => 'includes/content.admin.inc:814',
  11710. 'textgroup' => 'default',
  11711. 'source' => 'The type of data you would like to store in the database with this field. This option cannot be changed.',
  11712. 'version' => 'none',
  11713. ))
  11714. ->values(array(
  11715. 'lid' => '128',
  11716. 'location' => 'includes/content.admin.inc:819;1003',
  11717. 'textgroup' => 'default',
  11718. 'source' => 'Widget type',
  11719. 'version' => 'none',
  11720. ))
  11721. ->values(array(
  11722. 'lid' => '129',
  11723. 'location' => 'includes/content.admin.inc:823',
  11724. 'textgroup' => 'default',
  11725. 'source' => 'The type of form element you would like to present to the user when creating this field in the %type content type.',
  11726. 'version' => 'none',
  11727. ))
  11728. ->values(array(
  11729. 'lid' => '130',
  11730. 'location' => 'includes/content.admin.inc:833, includes/content.rules.inc:66',
  11731. 'textgroup' => 'default',
  11732. 'source' => 'Continue',
  11733. 'version' => 'none',
  11734. ))
  11735. ->values(array(
  11736. 'lid' => '131',
  11737. 'location' => 'includes/content.admin.inc:861',
  11738. 'textgroup' => 'default',
  11739. 'source' => 'Updated basic settings for field %label.',
  11740. 'version' => 'none',
  11741. ))
  11742. ->values(array(
  11743. 'lid' => '132',
  11744. 'location' => 'includes/content.admin.inc:865',
  11745. 'textgroup' => 'default',
  11746. 'source' => 'There was a problem updating the basic settings for field %label.',
  11747. 'version' => 'none',
  11748. ))
  11749. ->values(array(
  11750. 'lid' => '133',
  11751. 'location' => 'includes/content.admin.inc:892',
  11752. 'textgroup' => 'default',
  11753. 'source' => 'Are you sure you want to remove the field %field?',
  11754. 'version' => 'none',
  11755. ))
  11756. ->values(array(
  11757. 'lid' => '134',
  11758. 'location' => 'includes/content.admin.inc:894',
  11759. 'textgroup' => 'default',
  11760. 'source' => 'If you have any content left in this field, it will be lost. This action cannot be undone.',
  11761. 'version' => 'none',
  11762. ))
  11763. ->values(array(
  11764. 'lid' => '135',
  11765. 'location' => 'includes/content.admin.inc:895, modules/fieldgroup/fieldgroup.module:209',
  11766. 'textgroup' => 'default',
  11767. 'source' => 'Cancel',
  11768. 'version' => 'none',
  11769. ))
  11770. ->values(array(
  11771. 'lid' => '136',
  11772. 'location' => 'includes/content.admin.inc:901',
  11773. 'textgroup' => 'default',
  11774. 'source' => 'This field is <strong>locked</strong> and cannot be removed.',
  11775. 'version' => 'none',
  11776. ))
  11777. ->values(array(
  11778. 'lid' => '137',
  11779. 'location' => 'includes/content.admin.inc:922',
  11780. 'textgroup' => 'default',
  11781. 'source' => 'Removed field %field from %type.',
  11782. 'version' => 'none',
  11783. ))
  11784. ->values(array(
  11785. 'lid' => '138',
  11786. 'location' => 'includes/content.admin.inc:927',
  11787. 'textgroup' => 'default',
  11788. 'source' => 'There was a problem deleting %field from %type.',
  11789. 'version' => 'none',
  11790. ))
  11791. ->values(array(
  11792. 'lid' => '139',
  11793. 'location' => 'includes/content.admin.inc:946',
  11794. 'textgroup' => 'default',
  11795. 'source' => 'The field %field is locked and cannot be edited.',
  11796. 'version' => 'none',
  11797. ))
  11798. ->values(array(
  11799. 'lid' => '140',
  11800. 'location' => 'includes/content.admin.inc:980',
  11801. 'textgroup' => 'default',
  11802. 'source' => '%type basic information',
  11803. 'version' => 'none',
  11804. ))
  11805. ->values(array(
  11806. 'lid' => '141',
  11807. 'location' => 'includes/content.admin.inc:1010;1189',
  11808. 'textgroup' => 'default',
  11809. 'source' => 'Change basic information',
  11810. 'version' => 'none',
  11811. ))
  11812. ->values(array(
  11813. 'lid' => '142',
  11814. 'location' => 'includes/content.admin.inc:1016',
  11815. 'textgroup' => 'default',
  11816. 'source' => '%type settings',
  11817. 'version' => 'none',
  11818. ))
  11819. ->values(array(
  11820. 'lid' => '143',
  11821. 'location' => 'includes/content.admin.inc:1017',
  11822. 'textgroup' => 'default',
  11823. 'source' => 'These settings apply only to the %field field as it appears in the %type content type.',
  11824. 'version' => 'none',
  11825. ))
  11826. ->values(array(
  11827. 'lid' => '144',
  11828. 'location' => 'includes/content.admin.inc:1031, modules/fieldgroup/fieldgroup.module:145',
  11829. 'textgroup' => 'default',
  11830. 'source' => 'Help text',
  11831. 'version' => 'none',
  11832. ))
  11833. ->values(array(
  11834. 'lid' => '145',
  11835. 'location' => 'includes/content.admin.inc:1034',
  11836. 'textgroup' => 'default',
  11837. 'source' => 'Instructions to present to the user below this field on the editing form.<br />Allowed HTML tags: @tags',
  11838. 'version' => 'none',
  11839. ))
  11840. ->values(array(
  11841. 'lid' => '146',
  11842. 'location' => 'includes/content.admin.inc:1060',
  11843. 'textgroup' => 'default',
  11844. 'source' => 'Default value',
  11845. 'version' => 'none',
  11846. ))
  11847. ->values(array(
  11848. 'lid' => '147',
  11849. 'location' => 'includes/content.admin.inc:1081, modules/number/number.module:123, modules/text/text.module:86',
  11850. 'textgroup' => 'default',
  11851. 'source' => 'PHP code',
  11852. 'version' => 'none',
  11853. ))
  11854. ->values(array(
  11855. 'lid' => '148',
  11856. 'location' => 'includes/content.admin.inc:1090;1245, includes/content.rules.inc:93',
  11857. 'textgroup' => 'default',
  11858. 'source' => "'@column' => value for @column",
  11859. 'version' => 'none',
  11860. ))
  11861. ->values(array(
  11862. 'lid' => '149',
  11863. 'location' => 'includes/content.admin.inc:1092;1247, includes/content.rules.inc:95',
  11864. 'textgroup' => 'default',
  11865. 'source' => "return array(\n 0 => array(@columns),\n // You'll usually want to stop here. Provide more values\n // if you want your 'default value' to be multi-valued:\n 1 => array(@columns),\n 2 => ...\n);",
  11866. 'version' => 'none',
  11867. ))
  11868. ->values(array(
  11869. 'lid' => '150',
  11870. 'location' => 'includes/content.admin.inc:1096;1109, includes/content.rules.inc:99, modules/number/number.module:130;139, modules/text/text.module:93;102',
  11871. 'textgroup' => 'default',
  11872. 'source' => 'Code',
  11873. 'version' => '6.38-dev',
  11874. ))
  11875. ->values(array(
  11876. 'lid' => '151',
  11877. 'location' => 'includes/content.admin.inc:1100',
  11878. 'textgroup' => 'default',
  11879. 'source' => 'Advanced usage only: PHP code that returns a default value. Should not include &lt;?php ?&gt; delimiters. If this field is filled out, the value returned by this code will override any value specified above. Expected format: <pre>!sample</pre>To figure out the expected format, you can use the <em>devel load</em> tab provided by <a href="@link_devel">devel module</a> on a %type content page.',
  11880. 'version' => 'none',
  11881. ))
  11882. ->values(array(
  11883. 'lid' => '152',
  11884. 'location' => 'includes/content.admin.inc:1110, modules/number/number.module:140, modules/text/text.module:103',
  11885. 'textgroup' => 'default',
  11886. 'source' => '&lt;none&gt;',
  11887. 'version' => 'none',
  11888. ))
  11889. ->values(array(
  11890. 'lid' => '153',
  11891. 'location' => 'includes/content.admin.inc:1111, modules/number/number.module:141, modules/text/text.module:104',
  11892. 'textgroup' => 'default',
  11893. 'source' => "You're not allowed to input PHP code.",
  11894. 'version' => 'none',
  11895. ))
  11896. ->values(array(
  11897. 'lid' => '154',
  11898. 'location' => 'includes/content.admin.inc:1111',
  11899. 'textgroup' => 'default',
  11900. 'source' => 'This PHP code was set by an administrator and will override any value specified above.',
  11901. 'version' => 'none',
  11902. ))
  11903. ->values(array(
  11904. 'lid' => '155',
  11905. 'location' => 'includes/content.admin.inc:1118',
  11906. 'textgroup' => 'default',
  11907. 'source' => 'Global settings',
  11908. 'version' => 'none',
  11909. ))
  11910. ->values(array(
  11911. 'lid' => '156',
  11912. 'location' => 'includes/content.admin.inc:1119',
  11913. 'textgroup' => 'default',
  11914. 'source' => 'These settings apply to the %field field in every content type in which it appears.',
  11915. 'version' => 'none',
  11916. ))
  11917. ->values(array(
  11918. 'lid' => '157',
  11919. 'location' => 'includes/content.admin.inc:1123',
  11920. 'textgroup' => 'default',
  11921. 'source' => 'Required',
  11922. 'version' => 'none',
  11923. ))
  11924. ->values(array(
  11925. 'lid' => '158',
  11926. 'location' => 'includes/content.admin.inc:1126',
  11927. 'textgroup' => 'default',
  11928. 'source' => 'Maximum number of values users can enter for this field.',
  11929. 'version' => 'none',
  11930. ))
  11931. ->values(array(
  11932. 'lid' => '159',
  11933. 'location' => 'includes/content.admin.inc:1128',
  11934. 'textgroup' => 'default',
  11935. 'source' => "'Unlimited' will provide an 'Add more' button so the users can add as many values as they like.",
  11936. 'version' => 'none',
  11937. ))
  11938. ->values(array(
  11939. 'lid' => '160',
  11940. 'location' => 'includes/content.admin.inc:1130',
  11941. 'textgroup' => 'default',
  11942. 'source' => 'Warning! Changing this setting after data has been created could result in the loss of data!',
  11943. 'version' => 'none',
  11944. ))
  11945. ->values(array(
  11946. 'lid' => '161',
  11947. 'location' => 'includes/content.admin.inc:1133',
  11948. 'textgroup' => 'default',
  11949. 'source' => 'Number of values',
  11950. 'version' => 'none',
  11951. ))
  11952. ->values(array(
  11953. 'lid' => '162',
  11954. 'location' => 'includes/content.admin.inc:1134, modules/content_multigroup/content_multigroup.module:73',
  11955. 'textgroup' => 'default',
  11956. 'source' => 'Unlimited',
  11957. 'version' => 'none',
  11958. ))
  11959. ->values(array(
  11960. 'lid' => '163',
  11961. 'location' => 'includes/content.admin.inc:1151, modules/content_copy/content_copy.module:251',
  11962. 'textgroup' => 'default',
  11963. 'source' => 'Save field settings',
  11964. 'version' => 'none',
  11965. ))
  11966. ->values(array(
  11967. 'lid' => '164',
  11968. 'location' => 'includes/content.admin.inc:1288',
  11969. 'textgroup' => 'default',
  11970. 'source' => "The PHP code for 'default value' returned @value, which is invalid.",
  11971. 'version' => 'none',
  11972. ))
  11973. ->values(array(
  11974. 'lid' => '165',
  11975. 'location' => 'includes/content.admin.inc:1292',
  11976. 'textgroup' => 'default',
  11977. 'source' => 'The default value is invalid.',
  11978. 'version' => 'none',
  11979. ))
  11980. ->values(array(
  11981. 'lid' => '166',
  11982. 'location' => 'includes/content.admin.inc:1316',
  11983. 'textgroup' => 'default',
  11984. 'source' => 'Added field %label.',
  11985. 'version' => 'none',
  11986. ))
  11987. ->values(array(
  11988. 'lid' => '167',
  11989. 'location' => 'includes/content.admin.inc:1320',
  11990. 'textgroup' => 'default',
  11991. 'source' => 'Saved field %label.',
  11992. 'version' => 'none',
  11993. ))
  11994. ->values(array(
  11995. 'lid' => '168',
  11996. 'location' => 'includes/content.admin.inc:1678',
  11997. 'textgroup' => 'default',
  11998. 'source' => 'Processing',
  11999. 'version' => 'none',
  12000. ))
  12001. ->values(array(
  12002. 'lid' => '169',
  12003. 'location' => 'includes/content.admin.inc:1679',
  12004. 'textgroup' => 'default',
  12005. 'source' => 'The update has encountered an error.',
  12006. 'version' => 'none',
  12007. ))
  12008. ->values(array(
  12009. 'lid' => '170',
  12010. 'location' => 'includes/content.admin.inc:1693',
  12011. 'textgroup' => 'default',
  12012. 'source' => 'The database has been altered and data has been migrated or deleted.',
  12013. 'version' => 'none',
  12014. ))
  12015. ->values(array(
  12016. 'lid' => '171',
  12017. 'location' => 'includes/content.admin.inc:1696',
  12018. 'textgroup' => 'default',
  12019. 'source' => 'An error occurred and database alteration did not complete.',
  12020. 'version' => 'none',
  12021. ))
  12022. ->values(array(
  12023. 'lid' => '172',
  12024. 'location' => 'includes/content.admin.inc:1799',
  12025. 'textgroup' => 'default',
  12026. 'source' => 'Processing %title',
  12027. 'version' => 'none',
  12028. ))
  12029. ->values(array(
  12030. 'lid' => '173',
  12031. 'location' => 'includes/content.admin.inc:1865',
  12032. 'textgroup' => 'default',
  12033. 'source' => '%name must be an integer.',
  12034. 'version' => 'none',
  12035. ))
  12036. ->values(array(
  12037. 'lid' => '174',
  12038. 'location' => 'includes/content.admin.inc:1875',
  12039. 'textgroup' => 'default',
  12040. 'source' => '%name must be a positive integer.',
  12041. 'version' => 'none',
  12042. ))
  12043. ->values(array(
  12044. 'lid' => '175',
  12045. 'location' => 'includes/content.admin.inc:1885',
  12046. 'textgroup' => 'default',
  12047. 'source' => '%name must be a number.',
  12048. 'version' => 'none',
  12049. ))
  12050. ->values(array(
  12051. 'lid' => '176',
  12052. 'location' => 'includes/content.admin.inc:1697',
  12053. 'textgroup' => 'default',
  12054. 'source' => '1 item successfully processed:',
  12055. 'version' => 'none',
  12056. ))
  12057. ->values(array(
  12058. 'lid' => '177',
  12059. 'location' => 'includes/content.admin.inc:1697',
  12060. 'textgroup' => 'default',
  12061. 'source' => '@count items successfully processed:',
  12062. 'version' => 'none',
  12063. ))
  12064. ->values(array(
  12065. 'lid' => '178',
  12066. 'location' => 'includes/content.crud.inc:589',
  12067. 'textgroup' => 'default',
  12068. 'source' => 'Content fields table %old_name has been renamed to %new_name and field instances have been updated.',
  12069. 'version' => 'none',
  12070. ))
  12071. ->values(array(
  12072. 'lid' => '179',
  12073. 'location' => 'includes/content.crud.inc:633',
  12074. 'textgroup' => 'default',
  12075. 'source' => 'The content fields table %name has been deleted.',
  12076. 'version' => 'none',
  12077. ))
  12078. ->values(array(
  12079. 'lid' => '180',
  12080. 'location' => 'includes/content.node_form.inc:223',
  12081. 'textgroup' => 'default',
  12082. 'source' => 'Add another item',
  12083. 'version' => 'none',
  12084. ))
  12085. ->values(array(
  12086. 'lid' => '181',
  12087. 'location' => 'includes/panels/content_types/content_field.inc:14',
  12088. 'textgroup' => 'default',
  12089. 'source' => 'Content field',
  12090. 'version' => 'none',
  12091. ))
  12092. ->values(array(
  12093. 'lid' => '182',
  12094. 'location' => 'includes/content.panels.inc:38',
  12095. 'textgroup' => 'default',
  12096. 'source' => 'A content field from the referenced node.',
  12097. 'version' => 'none',
  12098. ))
  12099. ->values(array(
  12100. 'lid' => '183',
  12101. 'location' => 'includes/panels/content_types/content_field.inc:45, modules/fieldgroup/fieldgroup.panels.inc:31, modules/fieldgroup/panels/content_types/content_fieldgroup.inc:43',
  12102. 'textgroup' => 'default',
  12103. 'source' => 'Node',
  12104. 'version' => 'none',
  12105. ))
  12106. ->values(array(
  12107. 'lid' => '184',
  12108. 'location' => 'includes/content.panels.inc:40, modules/fieldgroup/fieldgroup.panels.inc:32',
  12109. 'textgroup' => 'default',
  12110. 'source' => 'Node context',
  12111. 'version' => 'none',
  12112. ))
  12113. ->values(array(
  12114. 'lid' => '185',
  12115. 'location' => 'includes/panels/content_types/content_field.inc:100',
  12116. 'textgroup' => 'default',
  12117. 'source' => 'Block title',
  12118. 'version' => 'none',
  12119. ))
  12120. ->values(array(
  12121. 'lid' => '186',
  12122. 'location' => 'includes/panels/content_types/content_field.inc:103',
  12123. 'textgroup' => 'default',
  12124. 'source' => 'Hidden',
  12125. 'version' => 'none',
  12126. ))
  12127. ->values(array(
  12128. 'lid' => '187',
  12129. 'location' => 'includes/panels/content_types/content_field.inc:105',
  12130. 'textgroup' => 'default',
  12131. 'source' => 'Configure how the label is going to be displayed.',
  12132. 'version' => 'none',
  12133. ))
  12134. ->values(array(
  12135. 'lid' => '188',
  12136. 'location' => 'includes/content.panels.inc:73',
  12137. 'textgroup' => 'default',
  12138. 'source' => 'Field / Formatter',
  12139. 'version' => 'none',
  12140. ))
  12141. ->values(array(
  12142. 'lid' => '189',
  12143. 'location' => 'includes/content.panels.inc:76',
  12144. 'textgroup' => 'default',
  12145. 'source' => 'Select a field and formatter.',
  12146. 'version' => 'none',
  12147. ))
  12148. ->values(array(
  12149. 'lid' => '190',
  12150. 'location' => 'includes/content.panels.inc:92',
  12151. 'textgroup' => 'default',
  12152. 'source' => '"@s" field @name',
  12153. 'version' => 'none',
  12154. ))
  12155. ->values(array(
  12156. 'lid' => '191',
  12157. 'location' => 'includes/content.rules.inc:15',
  12158. 'textgroup' => 'default',
  12159. 'source' => 'Populate a field',
  12160. 'version' => 'none',
  12161. ))
  12162. ->values(array(
  12163. 'lid' => '192',
  12164. 'location' => 'includes/content.rules.inc:23;224',
  12165. 'textgroup' => 'default',
  12166. 'source' => 'You should make sure that the used field exists in the given content type.',
  12167. 'version' => 'none',
  12168. ))
  12169. ->values(array(
  12170. 'lid' => '193',
  12171. 'location' => 'includes/content.rules.inc:53;276, modules/nodereference/nodereference.rules.inc:45, modules/userreference/userreference.rules.inc:47',
  12172. 'textgroup' => 'default',
  12173. 'source' => 'Field',
  12174. 'version' => 'none',
  12175. ))
  12176. ->values(array(
  12177. 'lid' => '194',
  12178. 'location' => 'includes/content.rules.inc:56',
  12179. 'textgroup' => 'default',
  12180. 'source' => 'Select the machine-name of the field.',
  12181. 'version' => 'none',
  12182. ))
  12183. ->values(array(
  12184. 'lid' => '195',
  12185. 'location' => 'includes/content.rules.inc:84',
  12186. 'textgroup' => 'default',
  12187. 'source' => 'Advanced: Specify the fields value with PHP code',
  12188. 'version' => 'none',
  12189. ))
  12190. ->values(array(
  12191. 'lid' => '196',
  12192. 'location' => 'not literally, includes/content.rules.inc:102',
  12193. 'textgroup' => 'default',
  12194. 'source' => "Advanced usage only: PHP code that returns the value to set. Should not include &lt;?php ?&gt; delimiters. If this field is filled out, the value returned by this code will override any value specified above. Expected format: <pre>!sample</pre>Using <a href=\"@link_devel\">devel.module's</a> 'devel load' tab on a content page might help you figure out the expected format.",
  12195. 'version' => 'none',
  12196. ))
  12197. ->values(array(
  12198. 'lid' => '197',
  12199. 'location' => 'includes/content.rules.inc:130',
  12200. 'textgroup' => 'default',
  12201. 'source' => 'You have to return the default value in the expected format.',
  12202. 'version' => 'none',
  12203. ))
  12204. ->values(array(
  12205. 'lid' => '198',
  12206. 'location' => 'includes/content.rules.inc:193',
  12207. 'textgroup' => 'default',
  12208. 'source' => "Populate @node's field '@field'",
  12209. 'version' => 'none',
  12210. ))
  12211. ->values(array(
  12212. 'lid' => '199',
  12213. 'location' => 'includes/content.rules.inc:210',
  12214. 'textgroup' => 'default',
  12215. 'source' => 'Field has value',
  12216. 'version' => 'none',
  12217. ))
  12218. ->values(array(
  12219. 'lid' => '200',
  12220. 'location' => 'includes/content.rules.inc:215',
  12221. 'textgroup' => 'default',
  12222. 'source' => 'You should make sure that the used field exists in the given content type. The condition returns TRUE, if the selected field has the given value.',
  12223. 'version' => 'none',
  12224. ))
  12225. ->values(array(
  12226. 'lid' => '201',
  12227. 'location' => 'includes/content.rules.inc:219',
  12228. 'textgroup' => 'default',
  12229. 'source' => 'Field has changed',
  12230. 'version' => 'none',
  12231. ))
  12232. ->values(array(
  12233. 'lid' => '202',
  12234. 'location' => 'includes/content.rules.inc:221',
  12235. 'textgroup' => 'default',
  12236. 'source' => 'Content containing changes',
  12237. 'version' => 'none',
  12238. ))
  12239. ->values(array(
  12240. 'lid' => '203',
  12241. 'location' => 'includes/content.rules.inc:222',
  12242. 'textgroup' => 'default',
  12243. 'source' => 'Content not containing changes',
  12244. 'version' => 'none',
  12245. ))
  12246. ->values(array(
  12247. 'lid' => '204',
  12248. 'location' => 'includes/content.rules.inc:259',
  12249. 'textgroup' => 'default',
  12250. 'source' => "@node's field '@field' has value",
  12251. 'version' => 'none',
  12252. ))
  12253. ->values(array(
  12254. 'lid' => '205',
  12255. 'location' => 'not literally, includes/content.rules.inc:279, fuzzy',
  12256. 'textgroup' => 'default',
  12257. 'source' => 'Select the machine-name of the field to look at.',
  12258. 'version' => 'none',
  12259. ))
  12260. ->values(array(
  12261. 'lid' => '206',
  12262. 'location' => '@node?, includes/content.rules.inc:285',
  12263. 'textgroup' => 'default',
  12264. 'source' => "@node's field '@field' has been changed",
  12265. 'version' => 'none',
  12266. ))
  12267. ->values(array(
  12268. 'lid' => '207',
  12269. 'location' => 'includes/content.token.inc:12;15',
  12270. 'textgroup' => 'default',
  12271. 'source' => 'Token',
  12272. 'version' => 'none',
  12273. ))
  12274. ->values(array(
  12275. 'lid' => '208',
  12276. 'location' => 'includes/content.token.inc:81',
  12277. 'textgroup' => 'default',
  12278. 'source' => 'Referenced node ID',
  12279. 'version' => 'none',
  12280. ))
  12281. ->values(array(
  12282. 'lid' => '209',
  12283. 'location' => 'includes/content.token.inc:82',
  12284. 'textgroup' => 'default',
  12285. 'source' => 'Referenced node title',
  12286. 'version' => 'none',
  12287. ))
  12288. ->values(array(
  12289. 'lid' => '210',
  12290. 'location' => 'includes/content.token.inc:83',
  12291. 'textgroup' => 'default',
  12292. 'source' => 'Referenced node unfiltered title. WARNING - raw user input.',
  12293. 'version' => 'none',
  12294. ))
  12295. ->values(array(
  12296. 'lid' => '211',
  12297. 'location' => 'includes/content.token.inc:84',
  12298. 'textgroup' => 'default',
  12299. 'source' => 'Formatted html link to the referenced node.',
  12300. 'version' => 'none',
  12301. ))
  12302. ->values(array(
  12303. 'lid' => '212',
  12304. 'location' => 'includes/content.token.inc:85',
  12305. 'textgroup' => 'default',
  12306. 'source' => 'Relative path alias to the referenced node.',
  12307. 'version' => 'none',
  12308. ))
  12309. ->values(array(
  12310. 'lid' => '213',
  12311. 'location' => 'includes/content.token.inc:86',
  12312. 'textgroup' => 'default',
  12313. 'source' => 'Absolute path alias to the referenced node.',
  12314. 'version' => 'none',
  12315. ))
  12316. ->values(array(
  12317. 'lid' => '214',
  12318. 'location' => 'includes/content.token.inc:114',
  12319. 'textgroup' => 'default',
  12320. 'source' => 'Raw number value',
  12321. 'version' => 'none',
  12322. ))
  12323. ->values(array(
  12324. 'lid' => '215',
  12325. 'location' => 'includes/content.token.inc:115',
  12326. 'textgroup' => 'default',
  12327. 'source' => 'Formatted number value',
  12328. 'version' => 'none',
  12329. ))
  12330. ->values(array(
  12331. 'lid' => '216',
  12332. 'location' => 'includes/content.token.inc:138',
  12333. 'textgroup' => 'default',
  12334. 'source' => 'Raw, unfiltered text',
  12335. 'version' => 'none',
  12336. ))
  12337. ->values(array(
  12338. 'lid' => '217',
  12339. 'location' => 'includes/content.token.inc:139',
  12340. 'textgroup' => 'default',
  12341. 'source' => 'Formatted and filtered text',
  12342. 'version' => 'none',
  12343. ))
  12344. ->values(array(
  12345. 'lid' => '218',
  12346. 'location' => 'includes/content.token.inc:161',
  12347. 'textgroup' => 'default',
  12348. 'source' => 'Referenced user ID',
  12349. 'version' => 'none',
  12350. ))
  12351. ->values(array(
  12352. 'lid' => '219',
  12353. 'location' => 'includes/content.token.inc:162',
  12354. 'textgroup' => 'default',
  12355. 'source' => 'Referenced user name',
  12356. 'version' => 'none',
  12357. ))
  12358. ->values(array(
  12359. 'lid' => '220',
  12360. 'location' => 'includes/content.token.inc:163',
  12361. 'textgroup' => 'default',
  12362. 'source' => 'Formatted HTML link to referenced user',
  12363. 'version' => 'none',
  12364. ))
  12365. ->values(array(
  12366. 'lid' => '221',
  12367. 'location' => 'includes/content.token.inc:164',
  12368. 'textgroup' => 'default',
  12369. 'source' => 'Relative path alias to the referenced user.',
  12370. 'version' => 'none',
  12371. ))
  12372. ->values(array(
  12373. 'lid' => '222',
  12374. 'location' => 'includes/content.token.inc:165',
  12375. 'textgroup' => 'default',
  12376. 'source' => 'Absolute path alias to the referenced user.',
  12377. 'version' => 'none',
  12378. ))
  12379. ->values(array(
  12380. 'lid' => '223',
  12381. 'location' => 'includes/views/content.views.inc:245;261',
  12382. 'textgroup' => 'default',
  12383. 'source' => '@label (!name)',
  12384. 'version' => 'none',
  12385. ))
  12386. ->values(array(
  12387. 'lid' => '224',
  12388. 'location' => 'includes/views/content.views.inc:249',
  12389. 'textgroup' => 'default',
  12390. 'source' => '@label (!name) - !column',
  12391. 'version' => 'none',
  12392. ))
  12393. ->values(array(
  12394. 'lid' => '225',
  12395. 'location' => 'includes/views/content.views.inc:250',
  12396. 'textgroup' => 'default',
  12397. 'source' => '@label-truncated - !column',
  12398. 'version' => 'none',
  12399. ))
  12400. ->values(array(
  12401. 'lid' => '226',
  12402. 'location' => 'includes/views/content.views.inc:257',
  12403. 'textgroup' => 'default',
  12404. 'source' => 'Appears in: @types',
  12405. 'version' => 'none',
  12406. ))
  12407. ->values(array(
  12408. 'lid' => '227',
  12409. 'location' => 'includes/views/handlers/content_handler_field.inc:56',
  12410. 'textgroup' => 'default',
  12411. 'source' => 'None',
  12412. 'version' => 'none',
  12413. ))
  12414. ->values(array(
  12415. 'lid' => '228',
  12416. 'location' => 'includes/views/handlers/content_handler_field.inc:57',
  12417. 'textgroup' => 'default',
  12418. 'source' => 'Widget label (@label)',
  12419. 'version' => 'none',
  12420. ))
  12421. ->values(array(
  12422. 'lid' => '229',
  12423. 'location' => 'includes/views/handlers/content_handler_field.inc:58',
  12424. 'textgroup' => 'default',
  12425. 'source' => 'Custom',
  12426. 'version' => 'none',
  12427. ))
  12428. ->values(array(
  12429. 'lid' => '230',
  12430. 'location' => 'includes/views/handlers/content_handler_field.inc:64',
  12431. 'textgroup' => 'default',
  12432. 'source' => 'Custom label',
  12433. 'version' => 'none',
  12434. ))
  12435. ->values(array(
  12436. 'lid' => '231',
  12437. 'location' => 'includes/views/handlers/content_handler_field.inc:80',
  12438. 'textgroup' => 'default',
  12439. 'source' => 'Format',
  12440. 'version' => 'none',
  12441. ))
  12442. ->values(array(
  12443. 'lid' => '232',
  12444. 'location' => 'includes/views/handlers/content_handler_field_multiple.inc:56',
  12445. 'textgroup' => 'default',
  12446. 'source' => 'Group multiple values',
  12447. 'version' => 'none',
  12448. ))
  12449. ->values(array(
  12450. 'lid' => '233',
  12451. 'location' => 'includes/views/handlers/content_handler_field_multiple.inc:61',
  12452. 'textgroup' => 'default',
  12453. 'source' => 'If unchecked, each item in the field will create a new row, which may appear to cause duplicates. This setting is not compatible with click-sorting in table displays.',
  12454. 'version' => 'none',
  12455. ))
  12456. ->values(array(
  12457. 'lid' => '234',
  12458. 'location' => 'includes/views/handlers/content_handler_field_multiple.inc:63',
  12459. 'textgroup' => 'default',
  12460. 'source' => 'Show @count value(s)',
  12461. 'version' => 'none',
  12462. ))
  12463. ->values(array(
  12464. 'lid' => '235',
  12465. 'location' => 'includes/views/handlers/content_handler_field_multiple.inc:74',
  12466. 'textgroup' => 'default',
  12467. 'source' => 'starting from @count',
  12468. 'version' => 'none',
  12469. ))
  12470. ->values(array(
  12471. 'lid' => '236',
  12472. 'location' => 'includes/views/handlers/content_handler_field_multiple.inc:85',
  12473. 'textgroup' => 'default',
  12474. 'source' => 'Reversed (start from last values)',
  12475. 'version' => 'none',
  12476. ))
  12477. ->values(array(
  12478. 'lid' => '237',
  12479. 'location' => 'includes/views/handlers/content_handler_relationship.inc:40, includes/views/handlers/content_handler_sort.inc:41',
  12480. 'textgroup' => 'default',
  12481. 'source' => 'All',
  12482. 'version' => 'none',
  12483. ))
  12484. ->values(array(
  12485. 'lid' => '238',
  12486. 'location' => 'includes/views/handlers/content_handler_relationship.inc:48, includes/views/handlers/content_handler_sort.inc:49',
  12487. 'textgroup' => 'default',
  12488. 'source' => 'Delta',
  12489. 'version' => 'none',
  12490. ))
  12491. ->values(array(
  12492. 'lid' => '239',
  12493. 'location' => 'includes/views/handlers/content_handler_relationship.inc:49',
  12494. 'textgroup' => 'default',
  12495. 'source' => 'The delta allows you to select which item in a multiple value field to key the relationship off of. Select "1" to use the first item, "2" for the second item, and so on. If you select "All", each item in the field will create a new row, which may appear to cause duplicates.',
  12496. 'version' => 'none',
  12497. ))
  12498. ->values(array(
  12499. 'lid' => '240',
  12500. 'location' => 'includes/views/handlers/content_handler_sort.inc:50',
  12501. 'textgroup' => 'default',
  12502. 'source' => 'The delta allows you to select which item in a multiple value field will be used for sorting. Select "1" to use the first item, "2" for the second item, and so on. If you select "All", each item in the field will create a new row, which may appear to cause duplicates.',
  12503. 'version' => 'none',
  12504. ))
  12505. ->values(array(
  12506. 'lid' => '241',
  12507. 'location' => 'modules/content_copy/content_copy_export_form.tpl.php:9, modules/content_copy/content_copy.module:191;38',
  12508. 'textgroup' => 'default',
  12509. 'source' => 'Export',
  12510. 'version' => '6.38-dev',
  12511. ))
  12512. ->values(array(
  12513. 'lid' => '242',
  12514. 'location' => 'modules/content_copy/content_copy.module:97',
  12515. 'textgroup' => 'default',
  12516. 'source' => 'This form will process a content type and one or more fields from that type and export the settings. The export created by this process can be copied and pasted as an import into the current or any other database. The import will add the fields to into an existing content type or create a new content type that includes the selected fields.',
  12517. 'version' => 'none',
  12518. ))
  12519. ->values(array(
  12520. 'lid' => '243',
  12521. 'location' => 'modules/content_copy/content_copy.module:103',
  12522. 'textgroup' => 'default',
  12523. 'source' => 'Types',
  12524. 'version' => 'none',
  12525. ))
  12526. ->values(array(
  12527. 'lid' => '244',
  12528. 'location' => 'modules/content_copy/content_copy.module:107',
  12529. 'textgroup' => 'default',
  12530. 'source' => 'Select the content type to export.',
  12531. 'version' => 'none',
  12532. ))
  12533. ->values(array(
  12534. 'lid' => '245',
  12535. 'location' => 'modules/content_copy/content_copy.module:175',
  12536. 'textgroup' => 'default',
  12537. 'source' => 'Export data',
  12538. 'version' => 'none',
  12539. ))
  12540. ->values(array(
  12541. 'lid' => '246',
  12542. 'location' => 'modules/content_copy/content_copy.module:180',
  12543. 'textgroup' => 'default',
  12544. 'source' => 'Copy the export text and paste it into another content type using the import function.',
  12545. 'version' => 'none',
  12546. ))
  12547. ->values(array(
  12548. 'lid' => '247',
  12549. 'location' => 'content_admin.inc:42',
  12550. 'textgroup' => 'default',
  12551. 'source' => 'Content types',
  12552. 'version' => '6.38-dev',
  12553. ))
  12554. ->values(array(
  12555. 'lid' => '248',
  12556. 'location' => 'modules/content_copy/content_copy.module:308',
  12557. 'textgroup' => 'default',
  12558. 'source' => 'Content type',
  12559. 'version' => '6.38-dev',
  12560. ))
  12561. ->values(array(
  12562. 'lid' => '249',
  12563. 'location' => 'modules/content_copy/content_copy.module:309',
  12564. 'textgroup' => 'default',
  12565. 'source' => 'Select the content type to import these fields into.<br/>Select &lt;Create&gt; to create a new content type to contain the fields.',
  12566. 'version' => 'none',
  12567. ))
  12568. ->values(array(
  12569. 'lid' => '250',
  12570. 'location' => 'modules/content_copy/content_copy.module:314',
  12571. 'textgroup' => 'default',
  12572. 'source' => 'Import data',
  12573. 'version' => 'none',
  12574. ))
  12575. ->values(array(
  12576. 'lid' => '251',
  12577. 'location' => 'modules/content_copy/content_copy.module:316',
  12578. 'textgroup' => 'default',
  12579. 'source' => 'Paste the text created by a content export into this field.',
  12580. 'version' => 'none',
  12581. ))
  12582. ->values(array(
  12583. 'lid' => '252',
  12584. 'location' => 'modules/content_copy/content_copy.module:320;46',
  12585. 'textgroup' => 'default',
  12586. 'source' => 'Import',
  12587. 'version' => '6.38-dev',
  12588. ))
  12589. ->values(array(
  12590. 'lid' => '253',
  12591. 'location' => 'modules/content_copy/content_copy.module:328',
  12592. 'textgroup' => 'default',
  12593. 'source' => 'A file has been pre-loaded for import.',
  12594. 'version' => 'none',
  12595. ))
  12596. ->values(array(
  12597. 'lid' => '254',
  12598. 'location' => 'modules/content_copy/content_copy.module:354',
  12599. 'textgroup' => 'default',
  12600. 'source' => 'The import data is not valid import text.',
  12601. 'version' => 'none',
  12602. ))
  12603. ->values(array(
  12604. 'lid' => '255',
  12605. 'location' => 'modules/content_copy/content_copy.module:403',
  12606. 'textgroup' => 'default',
  12607. 'source' => 'The following modules must be enabled for this import to work: %modules.',
  12608. 'version' => 'none',
  12609. ))
  12610. ->values(array(
  12611. 'lid' => '256',
  12612. 'location' => 'modules/content_copy/content_copy.module:411',
  12613. 'textgroup' => 'default',
  12614. 'source' => 'The content type %type already exists in this database.',
  12615. 'version' => 'none',
  12616. ))
  12617. ->values(array(
  12618. 'lid' => '257',
  12619. 'location' => 'modules/content_copy/content_copy.module:418',
  12620. 'textgroup' => 'default',
  12621. 'source' => 'Exiting. No import performed.',
  12622. 'version' => 'none',
  12623. ))
  12624. ->values(array(
  12625. 'lid' => '258',
  12626. 'location' => 'modules/content_copy/content_copy.module:442',
  12627. 'textgroup' => 'default',
  12628. 'source' => 'An error has occurred adding the content type %type.<br/>Please check the errors displayed for more details.',
  12629. 'version' => 'none',
  12630. ))
  12631. ->values(array(
  12632. 'lid' => '259',
  12633. 'location' => 'modules/content_copy/content_copy.module:467',
  12634. 'textgroup' => 'default',
  12635. 'source' => 'The imported field %field_label (%field_name) was not added to %type because that field already exists in %type.',
  12636. 'version' => 'none',
  12637. ))
  12638. ->values(array(
  12639. 'lid' => '260',
  12640. 'location' => 'modules/content_copy/content_copy.module:476',
  12641. 'textgroup' => 'default',
  12642. 'source' => 'The field %field_label (%field_name) was added to the content type %type.',
  12643. 'version' => 'none',
  12644. ))
  12645. ->values(array(
  12646. 'lid' => '261',
  12647. 'location' => 'modules/content_copy/content_copy.module:0',
  12648. 'textgroup' => 'default',
  12649. 'source' => 'content_copy',
  12650. 'version' => 'none',
  12651. ))
  12652. ->values(array(
  12653. 'lid' => '262',
  12654. 'location' => 'modules/content_copy/content_copy.info:0',
  12655. 'textgroup' => 'default',
  12656. 'source' => 'Content Copy',
  12657. 'version' => 'none',
  12658. ))
  12659. ->values(array(
  12660. 'lid' => '263',
  12661. 'location' => 'modules/content_copy/content_copy.info:0',
  12662. 'textgroup' => 'default',
  12663. 'source' => 'Enables ability to import/export field definitions.',
  12664. 'version' => 'none',
  12665. ))
  12666. ->values(array(
  12667. 'lid' => '264',
  12668. 'location' => 'modules/content_multigroup/content_multigroup.module:12',
  12669. 'textgroup' => 'default',
  12670. 'source' => 'The fields in a Standard group are independent of each other and each can have either single or multiple values. The fields in a Multigroup are treated as a repeating collection of single value fields.',
  12671. 'version' => 'none',
  12672. ))
  12673. ->values(array(
  12674. 'lid' => '265',
  12675. 'location' => 'modules/content_multigroup/content_multigroup.module:65;135',
  12676. 'textgroup' => 'default',
  12677. 'source' => 'Multigroup',
  12678. 'version' => 'none',
  12679. ))
  12680. ->values(array(
  12681. 'lid' => '266',
  12682. 'location' => 'modules/content_multigroup/content_multigroup.module:134',
  12683. 'textgroup' => 'default',
  12684. 'source' => 'Standard',
  12685. 'version' => 'none',
  12686. ))
  12687. ->values(array(
  12688. 'lid' => '267',
  12689. 'location' => 'includes/content.admin.inc:344, modules/content_multigroup/content_multigroup.module:126',
  12690. 'textgroup' => 'default',
  12691. 'source' => 'Type of group.',
  12692. 'version' => 'none',
  12693. ))
  12694. ->values(array(
  12695. 'lid' => '268',
  12696. 'location' => 'modules/content_multigroup/content_multigroup.module:215',
  12697. 'textgroup' => 'default',
  12698. 'source' => 'The field %field has been updated to use %multiple values, to match the multiple value setting of the Multigroup %group.',
  12699. 'version' => 'none',
  12700. ))
  12701. ->values(array(
  12702. 'lid' => '269',
  12703. 'location' => 'modules/content_multigroup/content_multigroup.module:248',
  12704. 'textgroup' => 'default',
  12705. 'source' => 'This change is not allowed. The field %field already has %multiple values in the database but the group %group only allows %group_max. Making this change would result in the loss of data.',
  12706. 'version' => 'none',
  12707. ))
  12708. ->values(array(
  12709. 'lid' => '270',
  12710. 'location' => 'modules/content_multigroup/content_multigroup.module:272',
  12711. 'textgroup' => 'default',
  12712. 'source' => 'This change is not allowed. The field %field handles multiple values differently than the Content module. Making this change could result in the loss of data.',
  12713. 'version' => 'none',
  12714. ))
  12715. ->values(array(
  12716. 'lid' => '271',
  12717. 'location' => 'modules/content_multigroup/content_multigroup.module:287',
  12718. 'textgroup' => 'default',
  12719. 'source' => 'You are moving the field %field into a Multigroup.',
  12720. 'version' => 'none',
  12721. ))
  12722. ->values(array(
  12723. 'lid' => '272',
  12724. 'location' => 'modules/content_multigroup/content_multigroup.module:320',
  12725. 'textgroup' => 'default',
  12726. 'source' => 'This change is not allowed. The field %field already has data created and uses a widget that stores data differently in a Standard group than in a Multigroup. Making this change could result in the loss of data.',
  12727. 'version' => 'none',
  12728. ))
  12729. ->values(array(
  12730. 'lid' => '273',
  12731. 'location' => 'modules/content_multigroup/content_multigroup.module:334',
  12732. 'textgroup' => 'default',
  12733. 'source' => 'You are moving the field %field out of a Multigroup.',
  12734. 'version' => 'none',
  12735. ))
  12736. ->values(array(
  12737. 'lid' => '274',
  12738. 'location' => 'modules/content_multigroup/content_multigroup.module:369',
  12739. 'textgroup' => 'default',
  12740. 'source' => 'Simple',
  12741. 'version' => 'none',
  12742. ))
  12743. ->values(array(
  12744. 'lid' => '275',
  12745. 'location' => 'modules/content_multigroup/content_multigroup.module:370',
  12746. 'textgroup' => 'default',
  12747. 'source' => 'Fieldset',
  12748. 'version' => 'none',
  12749. ))
  12750. ->values(array(
  12751. 'lid' => '276',
  12752. 'location' => 'modules/content_multigroup/content_multigroup.module:371',
  12753. 'textgroup' => 'default',
  12754. 'source' => 'Horizontal line',
  12755. 'version' => 'none',
  12756. ))
  12757. ->values(array(
  12758. 'lid' => '277',
  12759. 'location' => 'modules/content_multigroup/content_multigroup.module:372',
  12760. 'textgroup' => 'default',
  12761. 'source' => 'Table - Single column',
  12762. 'version' => 'none',
  12763. ))
  12764. ->values(array(
  12765. 'lid' => '278',
  12766. 'location' => 'modules/content_multigroup/content_multigroup.module:373',
  12767. 'textgroup' => 'default',
  12768. 'source' => 'Table - Multiple columns',
  12769. 'version' => 'none',
  12770. ))
  12771. ->values(array(
  12772. 'lid' => '279',
  12773. 'location' => 'modules/content_multigroup/content_multigroup.module:384',
  12774. 'textgroup' => 'default',
  12775. 'source' => '[Subgroup format]',
  12776. 'version' => 'none',
  12777. ))
  12778. ->values(array(
  12779. 'lid' => '280',
  12780. 'location' => 'modules/content_multigroup/content_multigroup.module:461',
  12781. 'textgroup' => 'default',
  12782. 'source' => 'Multigroup settings',
  12783. 'version' => 'none',
  12784. ))
  12785. ->values(array(
  12786. 'lid' => '281',
  12787. 'location' => 'modules/content_multigroup/content_multigroup.module:476',
  12788. 'textgroup' => 'default',
  12789. 'source' => 'Multiple columns',
  12790. 'version' => 'none',
  12791. ))
  12792. ->values(array(
  12793. 'lid' => '282',
  12794. 'location' => 'modules/content_multigroup/content_multigroup.module:478',
  12795. 'textgroup' => 'default',
  12796. 'source' => 'Enable this option to render each field on a separate column on the node edit form.',
  12797. 'version' => 'none',
  12798. ))
  12799. ->values(array(
  12800. 'lid' => '283',
  12801. 'location' => 'modules/content_multigroup/content_multigroup.module:485',
  12802. 'textgroup' => 'default',
  12803. 'source' => 'Enable this option to require a minimum of one collection of fields in this Multigroup.',
  12804. 'version' => 'none',
  12805. ))
  12806. ->values(array(
  12807. 'lid' => '284',
  12808. 'location' => 'modules/content_multigroup/content_multigroup.module:488',
  12809. 'textgroup' => 'default',
  12810. 'source' => 'Number of times to repeat the collection of Multigroup fields.',
  12811. 'version' => 'none',
  12812. ))
  12813. ->values(array(
  12814. 'lid' => '285',
  12815. 'location' => 'modules/content_multigroup/content_multigroup.module:489',
  12816. 'textgroup' => 'default',
  12817. 'source' => "'Unlimited' will provide an 'Add more' button so the users can add items as many times as they like.",
  12818. 'version' => 'none',
  12819. ))
  12820. ->values(array(
  12821. 'lid' => '286',
  12822. 'location' => 'modules/content_multigroup/content_multigroup.module:490',
  12823. 'textgroup' => 'default',
  12824. 'source' => 'All fields in this group will automatically be set to allow this number of values.',
  12825. 'version' => 'none',
  12826. ))
  12827. ->values(array(
  12828. 'lid' => '287',
  12829. 'location' => 'modules/content_multigroup/content_multigroup.module:495',
  12830. 'textgroup' => 'default',
  12831. 'source' => 'Number of repeats',
  12832. 'version' => 'none',
  12833. ))
  12834. ->values(array(
  12835. 'lid' => '288',
  12836. 'location' => 'modules/content_multigroup/content_multigroup.module:503',
  12837. 'textgroup' => 'default',
  12838. 'source' => 'Labels',
  12839. 'version' => 'none',
  12840. ))
  12841. ->values(array(
  12842. 'lid' => '289',
  12843. 'location' => 'modules/content_multigroup/content_multigroup.module:504',
  12844. 'textgroup' => 'default',
  12845. 'source' => "Labels for each subgroup of fields. Labels can be hidden or shown in various contexts using the 'Display fields' screen.",
  12846. 'version' => 'none',
  12847. ))
  12848. ->values(array(
  12849. 'lid' => '290',
  12850. 'location' => 'modules/content_multigroup/content_multigroup.module:512',
  12851. 'textgroup' => 'default',
  12852. 'source' => 'Subgroup %number label',
  12853. 'version' => 'none',
  12854. ))
  12855. ->values(array(
  12856. 'lid' => '291',
  12857. 'location' => 'modules/content_multigroup/content_multigroup.module:539',
  12858. 'textgroup' => 'default',
  12859. 'source' => 'The field %field in this group already has %multiple values in the database. To prevent the loss of data you cannot set the number of Multigroup values to less than this.',
  12860. 'version' => 'none',
  12861. ))
  12862. ->values(array(
  12863. 'lid' => '292',
  12864. 'location' => 'modules/content_multigroup/content_multigroup.module:932',
  12865. 'textgroup' => 'default',
  12866. 'source' => '!name field is required in group @group.',
  12867. 'version' => 'none',
  12868. ))
  12869. ->values(array(
  12870. 'lid' => '293',
  12871. 'location' => 'modules/content_multigroup/content_multigroup.module:946',
  12872. 'textgroup' => 'default',
  12873. 'source' => 'Group @name requires one collection of fields minimum.',
  12874. 'version' => 'none',
  12875. ))
  12876. ->values(array(
  12877. 'lid' => '294',
  12878. 'location' => 'modules/content_multigroup/content_multigroup.module:1145',
  12879. 'textgroup' => 'default',
  12880. 'source' => 'Add more values',
  12881. 'version' => 'none',
  12882. ))
  12883. ->values(array(
  12884. 'lid' => '295',
  12885. 'location' => 'modules/content_multigroup/content_multigroup.module:0',
  12886. 'textgroup' => 'default',
  12887. 'source' => 'content_multigroup',
  12888. 'version' => 'none',
  12889. ))
  12890. ->values(array(
  12891. 'lid' => '296',
  12892. 'location' => 'modules/content_multigroup/content_multigroup.info:0',
  12893. 'textgroup' => 'default',
  12894. 'source' => 'Content Multigroup',
  12895. 'version' => 'none',
  12896. ))
  12897. ->values(array(
  12898. 'lid' => '297',
  12899. 'location' => 'modules/content_multigroup/content_multigroup.info:0',
  12900. 'textgroup' => 'default',
  12901. 'source' => 'Combine multiple CCK fields into repeating field collections that work in unison.',
  12902. 'version' => 'none',
  12903. ))
  12904. ->values(array(
  12905. 'lid' => '298',
  12906. 'location' => 'modules/content_permissions/content_permissions.module:10',
  12907. 'textgroup' => 'default',
  12908. 'source' => 'edit',
  12909. 'version' => 'none',
  12910. ))
  12911. ->values(array(
  12912. 'lid' => '299',
  12913. 'location' => 'modules/content_permissions/content_permissions.module:10;11',
  12914. 'textgroup' => 'default',
  12915. 'source' => 'field_name',
  12916. 'version' => 'none',
  12917. ))
  12918. ->values(array(
  12919. 'lid' => '300',
  12920. 'location' => 'modules/content_permissions/content_permissions.module:11',
  12921. 'textgroup' => 'default',
  12922. 'source' => 'view',
  12923. 'version' => 'none',
  12924. ))
  12925. ->values(array(
  12926. 'lid' => '301',
  12927. 'location' => 'modules/content_permissions/content_permissions.module:0',
  12928. 'textgroup' => 'default',
  12929. 'source' => 'content_permissions',
  12930. 'version' => 'none',
  12931. ))
  12932. ->values(array(
  12933. 'lid' => '302',
  12934. 'location' => 'modules/content_permissions/content_permissions.install:9',
  12935. 'textgroup' => 'default',
  12936. 'source' => 'Please <a href="!url">configure your field permissions</a> immediately. All fields are inaccessible by default.',
  12937. 'version' => 'none',
  12938. ))
  12939. ->values(array(
  12940. 'lid' => '303',
  12941. 'location' => 'modules/content_permissions/content_permissions.info:0',
  12942. 'textgroup' => 'default',
  12943. 'source' => 'Content Permissions',
  12944. 'version' => 'none',
  12945. ))
  12946. ->values(array(
  12947. 'lid' => '304',
  12948. 'location' => 'modules/content_permissions/content_permissions.info:0',
  12949. 'textgroup' => 'default',
  12950. 'source' => 'Set field-level permissions for CCK fields.',
  12951. 'version' => 'none',
  12952. ))
  12953. ->values(array(
  12954. 'lid' => '305',
  12955. 'location' => 'modules/fieldgroup/fieldgroup.panels.inc:10;27, modules/fieldgroup/panels/content_types/content_fieldgroup.inc:14',
  12956. 'textgroup' => 'default',
  12957. 'source' => 'Content fieldgroup',
  12958. 'version' => 'none',
  12959. ))
  12960. ->values(array(
  12961. 'lid' => '306',
  12962. 'location' => 'modules/fieldgroup/fieldgroup.panels.inc:30',
  12963. 'textgroup' => 'default',
  12964. 'source' => 'All fields from a fieldgroup on the referenced node.',
  12965. 'version' => 'none',
  12966. ))
  12967. ->values(array(
  12968. 'lid' => '307',
  12969. 'location' => 'modules/fieldgroup/fieldgroup.panels.inc:91',
  12970. 'textgroup' => 'default',
  12971. 'source' => '@group_label (@group_type_name)',
  12972. 'version' => 'none',
  12973. ))
  12974. ->values(array(
  12975. 'lid' => '308',
  12976. 'location' => 'modules/fieldgroup/fieldgroup.panels.inc:102, modules/fieldgroup/fieldgroup.info:0',
  12977. 'textgroup' => 'default',
  12978. 'source' => 'Fieldgroup',
  12979. 'version' => 'none',
  12980. ))
  12981. ->values(array(
  12982. 'lid' => '309',
  12983. 'location' => 'modules/fieldgroup/fieldgroup.panels.inc:112, modules/fieldgroup/panels/content_types/content_fieldgroup.inc:102',
  12984. 'textgroup' => 'default',
  12985. 'source' => 'Text to display if group has no data. Note that title will not display unless overridden.',
  12986. 'version' => 'none',
  12987. ))
  12988. ->values(array(
  12989. 'lid' => '310',
  12990. 'location' => 'modules/fieldgroup/fieldgroup.panels.inc:128',
  12991. 'textgroup' => 'default',
  12992. 'source' => '"@s" fieldgroup @name',
  12993. 'version' => 'none',
  12994. ))
  12995. ->values(array(
  12996. 'lid' => '311',
  12997. 'location' => 'modules/fieldgroup/fieldgroup.module:124',
  12998. 'textgroup' => 'default',
  12999. 'source' => 'Form settings',
  13000. 'version' => 'none',
  13001. ))
  13002. ->values(array(
  13003. 'lid' => '312',
  13004. 'location' => 'modules/fieldgroup/fieldgroup.module:125',
  13005. 'textgroup' => 'default',
  13006. 'source' => 'These settings apply to the group in the node editing form.',
  13007. 'version' => 'none',
  13008. ))
  13009. ->values(array(
  13010. 'lid' => '313',
  13011. 'location' => 'modules/fieldgroup/fieldgroup.module:129',
  13012. 'textgroup' => 'default',
  13013. 'source' => 'Style',
  13014. 'version' => 'none',
  13015. ))
  13016. ->values(array(
  13017. 'lid' => '314',
  13018. 'location' => 'modules/fieldgroup/fieldgroup.module:132',
  13019. 'textgroup' => 'default',
  13020. 'source' => 'always open',
  13021. 'version' => 'none',
  13022. ))
  13023. ->values(array(
  13024. 'lid' => '315',
  13025. 'location' => 'modules/fieldgroup/fieldgroup.module:133',
  13026. 'textgroup' => 'default',
  13027. 'source' => 'collapsible',
  13028. 'version' => 'none',
  13029. ))
  13030. ->values(array(
  13031. 'lid' => '316',
  13032. 'location' => 'modules/fieldgroup/fieldgroup.module:134',
  13033. 'textgroup' => 'default',
  13034. 'source' => 'collapsed',
  13035. 'version' => 'none',
  13036. ))
  13037. ->values(array(
  13038. 'lid' => '317',
  13039. 'location' => 'modules/fieldgroup/fieldgroup.module:142',
  13040. 'textgroup' => 'default',
  13041. 'source' => 'Instructions to present to the user on the editing form.',
  13042. 'version' => 'none',
  13043. ))
  13044. ->values(array(
  13045. 'lid' => '318',
  13046. 'location' => 'modules/fieldgroup/fieldgroup.module:147',
  13047. 'textgroup' => 'default',
  13048. 'source' => 'Display settings',
  13049. 'version' => 'none',
  13050. ))
  13051. ->values(array(
  13052. 'lid' => '319',
  13053. 'location' => 'modules/fieldgroup/fieldgroup.module:148',
  13054. 'textgroup' => 'default',
  13055. 'source' => 'These settings apply to the group on node display.',
  13056. 'version' => 'none',
  13057. ))
  13058. ->values(array(
  13059. 'lid' => '320',
  13060. 'location' => 'modules/fieldgroup/fieldgroup.module:155',
  13061. 'textgroup' => 'default',
  13062. 'source' => 'A description of the group.',
  13063. 'version' => 'none',
  13064. ))
  13065. ->values(array(
  13066. 'lid' => '321',
  13067. 'location' => 'modules/fieldgroup/fieldgroup.module:200',
  13068. 'textgroup' => 'default',
  13069. 'source' => 'Are you sure you want to remove the group %label?',
  13070. 'version' => 'none',
  13071. ))
  13072. ->values(array(
  13073. 'lid' => '322',
  13074. 'location' => 'modules/fieldgroup/fieldgroup.module:202',
  13075. 'textgroup' => 'default',
  13076. 'source' => 'This action cannot be undone.',
  13077. 'version' => 'none',
  13078. ))
  13079. ->values(array(
  13080. 'lid' => '323',
  13081. 'location' => 'modules/fieldgroup/fieldgroup.module:211',
  13082. 'textgroup' => 'default',
  13083. 'source' => 'The group %group_name has been removed.',
  13084. 'version' => 'none',
  13085. ))
  13086. ->values(array(
  13087. 'lid' => '324',
  13088. 'location' => 'modules/content_multigroup/content_multigroup.module:356, modules/fieldgroup/fieldgroup.module:266',
  13089. 'textgroup' => 'default',
  13090. 'source' => 'none',
  13091. 'version' => '6.38-dev',
  13092. ))
  13093. ->values(array(
  13094. 'lid' => '325',
  13095. 'location' => 'modules/fieldgroup/fieldgroup.module:353',
  13096. 'textgroup' => 'default',
  13097. 'source' => 'You need to provide a label.',
  13098. 'version' => 'none',
  13099. ))
  13100. ->values(array(
  13101. 'lid' => '326',
  13102. 'location' => 'modules/fieldgroup/fieldgroup.module:358',
  13103. 'textgroup' => 'default',
  13104. 'source' => 'You need to provide a group name.',
  13105. 'version' => 'none',
  13106. ))
  13107. ->values(array(
  13108. 'lid' => '327',
  13109. 'location' => 'modules/fieldgroup/fieldgroup.module:372',
  13110. 'textgroup' => 'default',
  13111. 'source' => 'The group name %group_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
  13112. 'version' => 'none',
  13113. ))
  13114. ->values(array(
  13115. 'lid' => '328',
  13116. 'location' => 'modules/fieldgroup/fieldgroup.module:375',
  13117. 'textgroup' => 'default',
  13118. 'source' => "The group name %group_name is too long. The name is limited to 32 characters, including the 'group_' prefix.",
  13119. 'version' => 'none',
  13120. ))
  13121. ->values(array(
  13122. 'lid' => '329',
  13123. 'location' => 'modules/fieldgroup/fieldgroup.module:381',
  13124. 'textgroup' => 'default',
  13125. 'source' => 'The group name %group_name already exists.',
  13126. 'version' => 'none',
  13127. ))
  13128. ->values(array(
  13129. 'lid' => '330',
  13130. 'location' => 'modules/fieldgroup/fieldgroup.module:400;403',
  13131. 'textgroup' => 'default',
  13132. 'source' => 'Add new group:',
  13133. 'version' => 'none',
  13134. ))
  13135. ->values(array(
  13136. 'lid' => '331',
  13137. 'location' => 'modules/fieldgroup/fieldgroup.module:418',
  13138. 'textgroup' => 'default',
  13139. 'source' => 'Add new group: you need to provide a label.',
  13140. 'version' => 'none',
  13141. ))
  13142. ->values(array(
  13143. 'lid' => '332',
  13144. 'location' => 'modules/fieldgroup/fieldgroup.module:419',
  13145. 'textgroup' => 'default',
  13146. 'source' => 'Add new group: you need to provide a group name.',
  13147. 'version' => 'none',
  13148. ))
  13149. ->values(array(
  13150. 'lid' => '333',
  13151. 'location' => 'modules/fieldgroup/fieldgroup.module:648',
  13152. 'textgroup' => 'default',
  13153. 'source' => 'Standard group',
  13154. 'version' => 'none',
  13155. ))
  13156. ->values(array(
  13157. 'lid' => '334',
  13158. 'location' => 'modules/fieldgroup/fieldgroup.module:39;46',
  13159. 'textgroup' => 'default',
  13160. 'source' => 'Edit group',
  13161. 'version' => 'none',
  13162. ))
  13163. ->values(array(
  13164. 'lid' => '335',
  13165. 'location' => 'modules/fieldgroup/fieldgroup.module:0',
  13166. 'textgroup' => 'default',
  13167. 'source' => 'fieldgroup',
  13168. 'version' => 'none',
  13169. ))
  13170. ->values(array(
  13171. 'lid' => '336',
  13172. 'location' => 'modules/fieldgroup/fieldgroup.info:0',
  13173. 'textgroup' => 'default',
  13174. 'source' => 'Create display groups for CCK fields.',
  13175. 'version' => 'none',
  13176. ))
  13177. ->values(array(
  13178. 'lid' => '337',
  13179. 'location' => 'modules/nodereference/nodereference.rules.inc:15',
  13180. 'textgroup' => 'default',
  13181. 'source' => 'Load a referenced node',
  13182. 'version' => 'none',
  13183. ))
  13184. ->values(array(
  13185. 'lid' => '338',
  13186. 'location' => 'modules/nodereference/nodereference.rules.inc:19',
  13187. 'textgroup' => 'default',
  13188. 'source' => 'Content containing the node reference field',
  13189. 'version' => 'none',
  13190. ))
  13191. ->values(array(
  13192. 'lid' => '339',
  13193. 'location' => 'modules/nodereference/nodereference.rules.inc:25',
  13194. 'textgroup' => 'default',
  13195. 'source' => 'Referenced content',
  13196. 'version' => 'none',
  13197. ))
  13198. ->values(array(
  13199. 'lid' => '340',
  13200. 'location' => 'modules/nodereference/nodereference.rules.inc:29',
  13201. 'textgroup' => 'default',
  13202. 'source' => 'Note that if the field has multiple values, only the first content node will be loaded.',
  13203. 'version' => 'none',
  13204. ))
  13205. ->values(array(
  13206. 'lid' => '341',
  13207. 'location' => 'modules/nodereference/nodereference.rules.inc:50',
  13208. 'textgroup' => 'default',
  13209. 'source' => 'There are no nodereference fields defined.',
  13210. 'version' => 'none',
  13211. ))
  13212. ->values(array(
  13213. 'lid' => '342',
  13214. 'location' => 'modules/nodereference/nodereference.module:71',
  13215. 'textgroup' => 'default',
  13216. 'source' => 'Node reference',
  13217. 'version' => 'none',
  13218. ))
  13219. ->values(array(
  13220. 'lid' => '343',
  13221. 'location' => 'modules/nodereference/nodereference.module:72',
  13222. 'textgroup' => 'default',
  13223. 'source' => 'Store the ID of a related node as an integer value.',
  13224. 'version' => 'none',
  13225. ))
  13226. ->values(array(
  13227. 'lid' => '344',
  13228. 'location' => 'modules/nodereference/nodereference.module:90',
  13229. 'textgroup' => 'default',
  13230. 'source' => 'Content types that can be referenced',
  13231. 'version' => 'none',
  13232. ))
  13233. ->values(array(
  13234. 'lid' => '345',
  13235. 'location' => 'modules/nodereference/nodereference.module:97, modules/userreference/userreference.module:94',
  13236. 'textgroup' => 'default',
  13237. 'source' => 'Default Views',
  13238. 'version' => 'none',
  13239. ))
  13240. ->values(array(
  13241. 'lid' => '346',
  13242. 'location' => 'modules/nodereference/nodereference.module:101',
  13243. 'textgroup' => 'default',
  13244. 'source' => 'Existing Views',
  13245. 'version' => 'none',
  13246. ))
  13247. ->values(array(
  13248. 'lid' => '347',
  13249. 'location' => 'modules/nodereference/nodereference.module:108',
  13250. 'textgroup' => 'default',
  13251. 'source' => 'Advanced - Nodes that can be referenced (View)',
  13252. 'version' => 'none',
  13253. ))
  13254. ->values(array(
  13255. 'lid' => '348',
  13256. 'location' => 'modules/nodereference/nodereference.module:114',
  13257. 'textgroup' => 'default',
  13258. 'source' => 'View used to select the nodes',
  13259. 'version' => 'none',
  13260. ))
  13261. ->values(array(
  13262. 'lid' => '349',
  13263. 'location' => 'modules/nodereference/nodereference.module:107',
  13264. 'textgroup' => 'default',
  13265. 'source' => '<p>Choose the "Views module" view that selects the nodes that can be referenced.<br />Note:</p>',
  13266. 'version' => 'none',
  13267. ))
  13268. ->values(array(
  13269. 'lid' => '350',
  13270. 'location' => 'modules/nodereference/nodereference.module:108;121',
  13271. 'textgroup' => 'default',
  13272. 'source' => "<ul><li>Only views that have fields will work for this purpose.</li><li>This will discard the \"Content types\" settings above. Use the view's \"filters\" section instead.</li><li>Use the view's \"fields\" section to display additional informations about candidate nodes on node creation/edition form.</li><li>Use the view's \"sort criteria\" section to determine the order in which candidate nodes will be displayed.</li></ul>",
  13273. 'version' => 'none',
  13274. ))
  13275. ->values(array(
  13276. 'lid' => '351',
  13277. 'location' => 'modules/nodereference/nodereference.module:121',
  13278. 'textgroup' => 'default',
  13279. 'source' => 'View arguments',
  13280. 'version' => 'none',
  13281. ))
  13282. ->values(array(
  13283. 'lid' => '352',
  13284. 'location' => 'modules/nodereference/nodereference.module:124',
  13285. 'textgroup' => 'default',
  13286. 'source' => 'Provide a comma separated list of arguments to pass to the view.',
  13287. 'version' => 'none',
  13288. ))
  13289. ->values(array(
  13290. 'lid' => '353',
  13291. 'location' => 'modules/nodereference/nodereference.module:120',
  13292. 'textgroup' => 'default',
  13293. 'source' => '<p>The list of nodes that can be referenced can be based on a "Views module" view but no appropriate views were found. <br />Note:</p>',
  13294. 'version' => 'none',
  13295. ))
  13296. ->values(array(
  13297. 'lid' => '354',
  13298. 'location' => 'modules/nodereference/nodereference.module:216, modules/userreference/userreference.module:195',
  13299. 'textgroup' => 'default',
  13300. 'source' => '%name: invalid input.',
  13301. 'version' => 'none',
  13302. ))
  13303. ->values(array(
  13304. 'lid' => '355',
  13305. 'location' => 'modules/nodereference/nodereference.module:217',
  13306. 'textgroup' => 'default',
  13307. 'source' => "%name: this post can't be referenced.",
  13308. 'version' => 'none',
  13309. ))
  13310. ->values(array(
  13311. 'lid' => '356',
  13312. 'location' => 'modules/nodereference/nodereference.module:200',
  13313. 'textgroup' => 'default',
  13314. 'source' => 'Title (link)',
  13315. 'version' => 'none',
  13316. ))
  13317. ->values(array(
  13318. 'lid' => '357',
  13319. 'location' => 'modules/nodereference/nodereference.module:205',
  13320. 'textgroup' => 'default',
  13321. 'source' => 'Title (no link)',
  13322. 'version' => 'none',
  13323. ))
  13324. ->values(array(
  13325. 'lid' => '358',
  13326. 'location' => 'modules/nodereference/nodereference.module:358, modules/optionwidgets/optionwidgets.module:80, modules/userreference/userreference.module:284',
  13327. 'textgroup' => 'default',
  13328. 'source' => 'Select list',
  13329. 'version' => '6.38-dev',
  13330. ))
  13331. ->values(array(
  13332. 'lid' => '359',
  13333. 'location' => 'modules/nodereference/nodereference.module:366, modules/optionwidgets/optionwidgets.module:88, modules/userreference/userreference.module:292',
  13334. 'textgroup' => 'default',
  13335. 'source' => 'Check boxes/radio buttons',
  13336. 'version' => '6.38-dev',
  13337. ))
  13338. ->values(array(
  13339. 'lid' => '360',
  13340. 'location' => 'modules/nodereference/nodereference.module:374, modules/userreference/userreference.module:300',
  13341. 'textgroup' => 'default',
  13342. 'source' => 'Autocomplete text field',
  13343. 'version' => 'none',
  13344. ))
  13345. ->values(array(
  13346. 'lid' => '361',
  13347. 'location' => 'modules/nodereference/nodereference.module:429, modules/userreference/userreference.module:355',
  13348. 'textgroup' => 'default',
  13349. 'source' => 'Autocomplete matching',
  13350. 'version' => 'none',
  13351. ))
  13352. ->values(array(
  13353. 'lid' => '362',
  13354. 'location' => 'modules/nodereference/nodereference.module:432, modules/userreference/userreference.module:358',
  13355. 'textgroup' => 'default',
  13356. 'source' => 'Starts with',
  13357. 'version' => 'none',
  13358. ))
  13359. ->values(array(
  13360. 'lid' => '363',
  13361. 'location' => 'modules/nodereference/nodereference.module:433, modules/userreference/userreference.module:359',
  13362. 'textgroup' => 'default',
  13363. 'source' => 'Contains',
  13364. 'version' => 'none',
  13365. ))
  13366. ->values(array(
  13367. 'lid' => '364',
  13368. 'location' => 'modules/nodereference/nodereference.module:423',
  13369. 'textgroup' => 'default',
  13370. 'source' => 'Select the method used to collect autocomplete suggestions. Note that <em>Contains</em> can cause performance issues on sites with thousands of nodes.',
  13371. 'version' => 'none',
  13372. ))
  13373. ->values(array(
  13374. 'lid' => '365',
  13375. 'location' => 'modules/nodereference/nodereference.module:671',
  13376. 'textgroup' => 'default',
  13377. 'source' => '%name: title mismatch. Please check your selection.',
  13378. 'version' => 'none',
  13379. ))
  13380. ->values(array(
  13381. 'lid' => '366',
  13382. 'location' => 'modules/nodereference/nodereference.module:678',
  13383. 'textgroup' => 'default',
  13384. 'source' => '%name: found no valid post with that title.',
  13385. 'version' => 'none',
  13386. ))
  13387. ->values(array(
  13388. 'lid' => '367',
  13389. 'location' => 'modules/nodereference/nodereference.module:15',
  13390. 'textgroup' => 'default',
  13391. 'source' => 'Nodereference autocomplete',
  13392. 'version' => 'none',
  13393. ))
  13394. ->values(array(
  13395. 'lid' => '368',
  13396. 'location' => 'modules/nodereference/nodereference.module:0',
  13397. 'textgroup' => 'default',
  13398. 'source' => 'nodereference',
  13399. 'version' => 'none',
  13400. ))
  13401. ->values(array(
  13402. 'lid' => '369',
  13403. 'location' => 'modules/nodereference/nodereference.info:0',
  13404. 'textgroup' => 'default',
  13405. 'source' => 'Node Reference',
  13406. 'version' => 'none',
  13407. ))
  13408. ->values(array(
  13409. 'lid' => '370',
  13410. 'location' => 'modules/nodereference/nodereference.info:0',
  13411. 'textgroup' => 'default',
  13412. 'source' => 'Defines a field type for referencing one node from another.',
  13413. 'version' => 'none',
  13414. ))
  13415. ->values(array(
  13416. 'lid' => '371',
  13417. 'location' => 'modules/number/number.module:34',
  13418. 'textgroup' => 'default',
  13419. 'source' => 'Integer',
  13420. 'version' => '6.38-dev',
  13421. ))
  13422. ->values(array(
  13423. 'lid' => '372',
  13424. 'location' => 'modules/number/number.module:35',
  13425. 'textgroup' => 'default',
  13426. 'source' => 'Store a number in the database as an integer.',
  13427. 'version' => '6.38-dev',
  13428. ))
  13429. ->values(array(
  13430. 'lid' => '373',
  13431. 'location' => 'modules/number/number.module:38',
  13432. 'textgroup' => 'default',
  13433. 'source' => 'Decimal',
  13434. 'version' => '6.38-dev',
  13435. ))
  13436. ->values(array(
  13437. 'lid' => '374',
  13438. 'location' => 'modules/number/number.module:39',
  13439. 'textgroup' => 'default',
  13440. 'source' => 'Store a number in the database in a fixed decimal format.',
  13441. 'version' => '6.38-dev',
  13442. ))
  13443. ->values(array(
  13444. 'lid' => '375',
  13445. 'location' => 'modules/number/number.module:42',
  13446. 'textgroup' => 'default',
  13447. 'source' => 'Float',
  13448. 'version' => '6.38-dev',
  13449. ))
  13450. ->values(array(
  13451. 'lid' => '376',
  13452. 'location' => 'modules/number/number.module:43',
  13453. 'textgroup' => 'default',
  13454. 'source' => 'Store a number in the database in a floating point format.',
  13455. 'version' => '6.38-dev',
  13456. ))
  13457. ->values(array(
  13458. 'lid' => '377',
  13459. 'location' => 'modules/number/number.module:57',
  13460. 'textgroup' => 'default',
  13461. 'source' => 'Minimum',
  13462. 'version' => 'none',
  13463. ))
  13464. ->values(array(
  13465. 'lid' => '378',
  13466. 'location' => 'modules/number/number.module:63',
  13467. 'textgroup' => 'default',
  13468. 'source' => 'Maximum',
  13469. 'version' => 'none',
  13470. ))
  13471. ->values(array(
  13472. 'lid' => '379',
  13473. 'location' => 'modules/number/number.module:71',
  13474. 'textgroup' => 'default',
  13475. 'source' => 'Precision',
  13476. 'version' => 'none',
  13477. ))
  13478. ->values(array(
  13479. 'lid' => '380',
  13480. 'location' => 'modules/number/number.module:72',
  13481. 'textgroup' => 'default',
  13482. 'source' => 'The total number of digits to store in the database, including those to the right of the decimal.',
  13483. 'version' => 'none',
  13484. ))
  13485. ->values(array(
  13486. 'lid' => '381',
  13487. 'location' => 'modules/number/number.module:78',
  13488. 'textgroup' => 'default',
  13489. 'source' => 'Scale',
  13490. 'version' => 'none',
  13491. ))
  13492. ->values(array(
  13493. 'lid' => '382',
  13494. 'location' => 'modules/number/number.module:79',
  13495. 'textgroup' => 'default',
  13496. 'source' => 'The number of digits to the right of the decimal.',
  13497. 'version' => 'none',
  13498. ))
  13499. ->values(array(
  13500. 'lid' => '383',
  13501. 'location' => 'modules/number/number.module:85',
  13502. 'textgroup' => 'default',
  13503. 'source' => 'Decimal marker',
  13504. 'version' => 'none',
  13505. ))
  13506. ->values(array(
  13507. 'lid' => '384',
  13508. 'location' => 'modules/number/number.module:86',
  13509. 'textgroup' => 'default',
  13510. 'source' => 'The character users will input to mark the decimal point in forms.',
  13511. 'version' => 'none',
  13512. ))
  13513. ->values(array(
  13514. 'lid' => '385',
  13515. 'location' => 'modules/number/number.module:92',
  13516. 'textgroup' => 'default',
  13517. 'source' => 'Prefix',
  13518. 'version' => 'none',
  13519. ))
  13520. ->values(array(
  13521. 'lid' => '386',
  13522. 'location' => 'modules/number/number.module:95',
  13523. 'textgroup' => 'default',
  13524. 'source' => 'Define a string that should be prefixed to the value, like $ or €. Leave blank for none. Separate singular and plural values with a pipe (pound|pounds).',
  13525. 'version' => 'none',
  13526. ))
  13527. ->values(array(
  13528. 'lid' => '387',
  13529. 'location' => 'modules/number/number.module:99',
  13530. 'textgroup' => 'default',
  13531. 'source' => 'Suffix',
  13532. 'version' => 'none',
  13533. ))
  13534. ->values(array(
  13535. 'lid' => '388',
  13536. 'location' => 'modules/number/number.module:102',
  13537. 'textgroup' => 'default',
  13538. 'source' => 'Define a string that should suffixed to the value, like m², m/s², kb/s. Leave blank for none. Separate singular and plural values with a pipe (pound|pounds).',
  13539. 'version' => 'none',
  13540. ))
  13541. ->values(array(
  13542. 'lid' => '389',
  13543. 'location' => 'modules/number/number.module:109, modules/text/text.module:72',
  13544. 'textgroup' => 'default',
  13545. 'source' => 'Allowed values',
  13546. 'version' => 'none',
  13547. ))
  13548. ->values(array(
  13549. 'lid' => '390',
  13550. 'location' => 'modules/number/number.module:115, modules/text/text.module:78',
  13551. 'textgroup' => 'default',
  13552. 'source' => 'Allowed values list',
  13553. 'version' => 'none',
  13554. ))
  13555. ->values(array(
  13556. 'lid' => '391',
  13557. 'location' => 'modules/number/number.module:119, modules/text/text.module:82',
  13558. 'textgroup' => 'default',
  13559. 'source' => 'The possible values this field can contain. Enter one value per line, in the format key|label. The key is the value that will be stored in the database, and it must match the field storage type (%type). The label is optional, and the key will be used as the label if no label is specified.<br />Allowed HTML tags: @tags',
  13560. 'version' => 'none',
  13561. ))
  13562. ->values(array(
  13563. 'lid' => '392',
  13564. 'location' => 'modules/number/number.module:133, modules/text/text.module:96',
  13565. 'textgroup' => 'default',
  13566. 'source' => 'Advanced usage only: PHP code that returns a keyed array of allowed values. Should not include &lt;?php ?&gt; delimiters. If this field is filled out, the array returned by this code will override the allowed values list above.',
  13567. 'version' => 'none',
  13568. ))
  13569. ->values(array(
  13570. 'lid' => '393',
  13571. 'location' => 'modules/number/number.module:141, modules/text/text.module:104',
  13572. 'textgroup' => 'default',
  13573. 'source' => 'This PHP code was set by an administrator and will override the allowed values list above.',
  13574. 'version' => 'none',
  13575. ))
  13576. ->values(array(
  13577. 'lid' => '394',
  13578. 'location' => 'modules/number/number.module:181, modules/text/text.module:133',
  13579. 'textgroup' => 'default',
  13580. 'source' => '@label (!name) - Allowed values',
  13581. 'version' => 'none',
  13582. ))
  13583. ->values(array(
  13584. 'lid' => '395',
  13585. 'location' => 'modules/number/number.module:195',
  13586. 'textgroup' => 'default',
  13587. 'source' => '"Minimum" must be a number.',
  13588. 'version' => 'none',
  13589. ))
  13590. ->values(array(
  13591. 'lid' => '396',
  13592. 'location' => 'modules/number/number.module:202',
  13593. 'textgroup' => 'default',
  13594. 'source' => '"Maximum" must be a number.',
  13595. 'version' => 'none',
  13596. ))
  13597. ->values(array(
  13598. 'lid' => '397',
  13599. 'location' => 'modules/number/number.module:219',
  13600. 'textgroup' => 'default',
  13601. 'source' => '%name: the value may be no smaller than %min.',
  13602. 'version' => 'none',
  13603. ))
  13604. ->values(array(
  13605. 'lid' => '398',
  13606. 'location' => 'modules/number/number.module:222',
  13607. 'textgroup' => 'default',
  13608. 'source' => '%name: the value may be no larger than %max.',
  13609. 'version' => 'none',
  13610. ))
  13611. ->values(array(
  13612. 'lid' => '399',
  13613. 'location' => 'modules/number/number.module:238, modules/text/text.module:157',
  13614. 'textgroup' => 'default',
  13615. 'source' => '%name: illegal value.',
  13616. 'version' => 'none',
  13617. ))
  13618. ->values(array(
  13619. 'lid' => '400',
  13620. 'location' => 'modules/number/number.module:270',
  13621. 'textgroup' => 'default',
  13622. 'source' => 'unformatted',
  13623. 'version' => '6.38-dev',
  13624. ))
  13625. ->values(array(
  13626. 'lid' => '401',
  13627. 'location' => 'modules/number/number.module:356, modules/text/text.module:257',
  13628. 'textgroup' => 'default',
  13629. 'source' => 'Text field',
  13630. 'version' => '6.38-dev',
  13631. ))
  13632. ->values(array(
  13633. 'lid' => '402',
  13634. 'location' => 'Float validation: English needs work, modules/number/number.module:509, fuzzy',
  13635. 'textgroup' => 'default',
  13636. 'source' => 'Only numbers and decimals are allowed in %field.',
  13637. 'version' => 'none',
  13638. ))
  13639. ->values(array(
  13640. 'lid' => '403',
  13641. 'location' => 'Integer validation: English needs work, modules/number/number.module:532, fuzzy',
  13642. 'textgroup' => 'default',
  13643. 'source' => 'Only numbers are allowed in %field.',
  13644. 'version' => 'none',
  13645. ))
  13646. ->values(array(
  13647. 'lid' => '404',
  13648. 'location' => 'Decimal validation with decimal character: English needs work, modules/number/number.module:556, fuzzy',
  13649. 'textgroup' => 'default',
  13650. 'source' => 'Only numbers and the decimal character (%decimal) are allowed in %field.',
  13651. 'version' => 'none',
  13652. ))
  13653. ->values(array(
  13654. 'lid' => '405',
  13655. 'location' => 'modules/number/number.module:0',
  13656. 'textgroup' => 'default',
  13657. 'source' => 'number',
  13658. 'version' => 'none',
  13659. ))
  13660. ->values(array(
  13661. 'lid' => '406',
  13662. 'location' => 'modules/number/number.info:0',
  13663. 'textgroup' => 'default',
  13664. 'source' => 'Number',
  13665. 'version' => 'none',
  13666. ))
  13667. ->values(array(
  13668. 'lid' => '407',
  13669. 'location' => 'modules/number/number.info:0',
  13670. 'textgroup' => 'default',
  13671. 'source' => 'Defines numeric field types.',
  13672. 'version' => 'none',
  13673. ))
  13674. ->values(array(
  13675. 'lid' => '408',
  13676. 'location' => 'modules/optionwidgets/optionwidgets.module:19',
  13677. 'textgroup' => 'default',
  13678. 'source' => 'Create a list of options as a list in <strong>Allowed values list</strong> or as an array in PHP code. These values will be the same for %field in all content types.',
  13679. 'version' => 'none',
  13680. ))
  13681. ->values(array(
  13682. 'lid' => '409',
  13683. 'location' => 'modules/optionwidgets/optionwidgets.module:22',
  13684. 'textgroup' => 'default',
  13685. 'source' => "For a 'single on/off checkbox' widget, define the 'off' value first, then the 'on' value in the <strong>Allowed values</strong> section. Note that the checkbox will be labeled with the label of the 'on' value.",
  13686. 'version' => 'none',
  13687. ))
  13688. ->values(array(
  13689. 'lid' => '410',
  13690. 'location' => 'modules/optionwidgets/optionwidgets.module:25',
  13691. 'textgroup' => 'default',
  13692. 'source' => "The 'checkboxes/radio buttons' widget will display checkboxes if the multiple values option is selected for this field, otherwise radios will be displayed.",
  13693. 'version' => 'none',
  13694. ))
  13695. ->values(array(
  13696. 'lid' => '411',
  13697. 'location' => 'modules/optionwidgets/optionwidgets.module:37',
  13698. 'textgroup' => 'default',
  13699. 'source' => "You need to specify the 'allowed values' for this field.",
  13700. 'version' => 'none',
  13701. ))
  13702. ->values(array(
  13703. 'lid' => '412',
  13704. 'location' => 'modules/optionwidgets/optionwidgets.module:96',
  13705. 'textgroup' => 'default',
  13706. 'source' => 'Single on/off checkbox',
  13707. 'version' => '6.38-dev',
  13708. ))
  13709. ->values(array(
  13710. 'lid' => '413',
  13711. 'location' => 'modules/optionwidgets/optionwidgets.module:331',
  13712. 'textgroup' => 'default',
  13713. 'source' => '%name: this field cannot hold more that @count values.',
  13714. 'version' => 'none',
  13715. ))
  13716. ->values(array(
  13717. 'lid' => '414',
  13718. 'location' => 'modules/optionwidgets/optionwidgets.module:411',
  13719. 'textgroup' => 'default',
  13720. 'source' => 'N/A',
  13721. 'version' => 'none',
  13722. ))
  13723. ->values(array(
  13724. 'lid' => '415',
  13725. 'location' => 'modules/optionwidgets/optionwidgets.module:415',
  13726. 'textgroup' => 'default',
  13727. 'source' => '- None -',
  13728. 'version' => 'none',
  13729. ))
  13730. ->values(array(
  13731. 'lid' => '416',
  13732. 'location' => 'modules/optionwidgets/optionwidgets.module:0',
  13733. 'textgroup' => 'default',
  13734. 'source' => 'optionwidgets',
  13735. 'version' => 'none',
  13736. ))
  13737. ->values(array(
  13738. 'lid' => '417',
  13739. 'location' => 'modules/optionwidgets/optionwidgets.info:0',
  13740. 'textgroup' => 'default',
  13741. 'source' => 'Option Widgets',
  13742. 'version' => 'none',
  13743. ))
  13744. ->values(array(
  13745. 'lid' => '418',
  13746. 'location' => 'modules/optionwidgets/optionwidgets.info:0',
  13747. 'textgroup' => 'default',
  13748. 'source' => 'Defines selection, check box and radio button widgets for text and numeric fields.',
  13749. 'version' => 'none',
  13750. ))
  13751. ->values(array(
  13752. 'lid' => '419',
  13753. 'location' => 'modules/text/text.module:42',
  13754. 'textgroup' => 'default',
  13755. 'source' => 'Store text in the database.',
  13756. 'version' => '6.38-dev',
  13757. ))
  13758. ->values(array(
  13759. 'lid' => '420',
  13760. 'location' => 'modules/text/text.module:55;202, modules/userreference/userreference.module:237',
  13761. 'textgroup' => 'default',
  13762. 'source' => 'Plain text',
  13763. 'version' => '6.38-dev',
  13764. ))
  13765. ->values(array(
  13766. 'lid' => '421',
  13767. 'location' => 'modules/text/text.module:55',
  13768. 'textgroup' => 'default',
  13769. 'source' => 'Filtered text (user selects input format)',
  13770. 'version' => 'none',
  13771. ))
  13772. ->values(array(
  13773. 'lid' => '422',
  13774. 'location' => 'modules/text/text.module:58',
  13775. 'textgroup' => 'default',
  13776. 'source' => 'Text processing',
  13777. 'version' => 'none',
  13778. ))
  13779. ->values(array(
  13780. 'lid' => '423',
  13781. 'location' => 'modules/text/text.module:64',
  13782. 'textgroup' => 'default',
  13783. 'source' => 'Maximum length',
  13784. 'version' => 'none',
  13785. ))
  13786. ->values(array(
  13787. 'lid' => '424',
  13788. 'location' => 'modules/text/text.module:68',
  13789. 'textgroup' => 'default',
  13790. 'source' => 'The maximum length of the field in characters. Leave blank for an unlimited size.',
  13791. 'version' => 'none',
  13792. ))
  13793. ->values(array(
  13794. 'lid' => '425',
  13795. 'location' => 'modules/text/text.module:160',
  13796. 'textgroup' => 'default',
  13797. 'source' => '%name: the value may not be longer than %max characters.',
  13798. 'version' => 'none',
  13799. ))
  13800. ->values(array(
  13801. 'lid' => '426',
  13802. 'location' => 'modules/text/text.module:197, modules/userreference/userreference.module:232',
  13803. 'textgroup' => 'default',
  13804. 'source' => 'Default',
  13805. 'version' => '6.38-dev',
  13806. ))
  13807. ->values(array(
  13808. 'lid' => '427',
  13809. 'location' => 'modules/text/text.module:207',
  13810. 'textgroup' => 'default',
  13811. 'source' => 'Trimmed',
  13812. 'version' => '6.38-dev',
  13813. ))
  13814. ->values(array(
  13815. 'lid' => '428',
  13816. 'location' => 'modules/text/text.module:265',
  13817. 'textgroup' => 'default',
  13818. 'source' => 'Text area (multiple rows)',
  13819. 'version' => '6.38-dev',
  13820. ))
  13821. ->values(array(
  13822. 'lid' => '429',
  13823. 'location' => 'modules/nodereference/nodereference.module:439, modules/text/text.module:317, modules/userreference/userreference.module:365',
  13824. 'textgroup' => 'default',
  13825. 'source' => 'Size of textfield',
  13826. 'version' => 'none',
  13827. ))
  13828. ->values(array(
  13829. 'lid' => '430',
  13830. 'location' => 'modules/text/text.module:326',
  13831. 'textgroup' => 'default',
  13832. 'source' => 'Rows',
  13833. 'version' => 'none',
  13834. ))
  13835. ->values(array(
  13836. 'lid' => '431',
  13837. 'location' => 'modules/text/text.module:0',
  13838. 'textgroup' => 'default',
  13839. 'source' => 'text',
  13840. 'version' => 'none',
  13841. ))
  13842. ->values(array(
  13843. 'lid' => '432',
  13844. 'location' => 'modules/text/text.info:0',
  13845. 'textgroup' => 'default',
  13846. 'source' => 'Defines simple text field types.',
  13847. 'version' => 'none',
  13848. ))
  13849. ->values(array(
  13850. 'lid' => '433',
  13851. 'location' => 'modules/userreference/userreference.rules.inc:15',
  13852. 'textgroup' => 'default',
  13853. 'source' => 'Load a referenced user',
  13854. 'version' => 'none',
  13855. ))
  13856. ->values(array(
  13857. 'lid' => '434',
  13858. 'location' => 'modules/userreference/userreference.rules.inc:19',
  13859. 'textgroup' => 'default',
  13860. 'source' => 'Content containing the user reference field',
  13861. 'version' => 'none',
  13862. ))
  13863. ->values(array(
  13864. 'lid' => '435',
  13865. 'location' => 'modules/userreference/userreference.rules.inc:25',
  13866. 'textgroup' => 'default',
  13867. 'source' => 'Referenced user',
  13868. 'version' => 'none',
  13869. ))
  13870. ->values(array(
  13871. 'lid' => '436',
  13872. 'location' => 'modules/userreference/userreference.rules.inc:29',
  13873. 'textgroup' => 'default',
  13874. 'source' => 'Note that if the field has multiple values, only the first user will be loaded.',
  13875. 'version' => 'none',
  13876. ))
  13877. ->values(array(
  13878. 'lid' => '437',
  13879. 'location' => 'modules/userreference/userreference.rules.inc:52',
  13880. 'textgroup' => 'default',
  13881. 'source' => 'There are no userreference fields defined.',
  13882. 'version' => 'none',
  13883. ))
  13884. ->values(array(
  13885. 'lid' => '438',
  13886. 'location' => 'modules/userreference/userreference.module:52',
  13887. 'textgroup' => 'default',
  13888. 'source' => 'User reference',
  13889. 'version' => 'none',
  13890. ))
  13891. ->values(array(
  13892. 'lid' => '439',
  13893. 'location' => 'modules/userreference/userreference.module:53',
  13894. 'textgroup' => 'default',
  13895. 'source' => 'Store the ID of a related user as an integer value.',
  13896. 'version' => 'none',
  13897. ))
  13898. ->values(array(
  13899. 'lid' => '440',
  13900. 'location' => 'modules/userreference/userreference.module:67',
  13901. 'textgroup' => 'default',
  13902. 'source' => 'User roles that can be referenced',
  13903. 'version' => 'none',
  13904. ))
  13905. ->values(array(
  13906. 'lid' => '441',
  13907. 'location' => 'modules/userreference/userreference.module:73',
  13908. 'textgroup' => 'default',
  13909. 'source' => 'User status that can be referenced',
  13910. 'version' => 'none',
  13911. ))
  13912. ->values(array(
  13913. 'lid' => '442',
  13914. 'location' => 'modules/userreference/userreference.module:75',
  13915. 'textgroup' => 'default',
  13916. 'source' => 'Active',
  13917. 'version' => 'none',
  13918. ))
  13919. ->values(array(
  13920. 'lid' => '443',
  13921. 'location' => 'modules/userreference/userreference.module:75',
  13922. 'textgroup' => 'default',
  13923. 'source' => 'Blocked',
  13924. 'version' => 'none',
  13925. ))
  13926. ->values(array(
  13927. 'lid' => '444',
  13928. 'location' => 'modules/userreference/userreference.module:94',
  13929. 'textgroup' => 'default',
  13930. 'source' => 'Advanced - Users that can be referenced (View)',
  13931. 'version' => 'none',
  13932. ))
  13933. ->values(array(
  13934. 'lid' => '445',
  13935. 'location' => 'modules/userreference/userreference.module:101',
  13936. 'textgroup' => 'default',
  13937. 'source' => 'View used to select the users',
  13938. 'version' => 'none',
  13939. ))
  13940. ->values(array(
  13941. 'lid' => '446',
  13942. 'location' => 'modules/userreference/userreference.module:104',
  13943. 'textgroup' => 'default',
  13944. 'source' => '<p>Choose the "Views module" view that selects the users that can be referenced.<br />Note:</p>',
  13945. 'version' => 'none',
  13946. ))
  13947. ->values(array(
  13948. 'lid' => '447',
  13949. 'location' => 'modules/userreference/userreference.module:105;118',
  13950. 'textgroup' => 'default',
  13951. 'source' => "<ul><li>Only views that have fields will work for this purpose.</li><li>This will discard the \"Referenceable Roles\" and \"Referenceable Status\" settings above. Use the view's \"filters\" section instead.</li><li>Use the view's \"fields\" section to display additional informations about candidate users on user creation/edition form.</li><li>Use the view's \"sort criteria\" section to determine the order in which candidate users will be displayed.</li></ul>",
  13952. 'version' => 'none',
  13953. ))
  13954. ->values(array(
  13955. 'lid' => '448',
  13956. 'location' => 'modules/userreference/userreference.module:117',
  13957. 'textgroup' => 'default',
  13958. 'source' => '<p>The list of user that can be referenced can be based on a "Views module" view but no appropriate views were found. <br />Note:</p>',
  13959. 'version' => 'none',
  13960. ))
  13961. ->values(array(
  13962. 'lid' => '449',
  13963. 'location' => 'modules/userreference/userreference.module:196',
  13964. 'textgroup' => 'default',
  13965. 'source' => '%name: invalid user.',
  13966. 'version' => 'none',
  13967. ))
  13968. ->values(array(
  13969. 'lid' => '450',
  13970. 'location' => 'modules/userreference/userreference.module:349',
  13971. 'textgroup' => 'default',
  13972. 'source' => 'Select the method used to collect autocomplete suggestions. Note that <em>Contains</em> can cause performance issues on sites with thousands of users.',
  13973. 'version' => 'none',
  13974. ))
  13975. ->values(array(
  13976. 'lid' => '451',
  13977. 'location' => 'modules/userreference/userreference.module:357',
  13978. 'textgroup' => 'default',
  13979. 'source' => 'Reverse link',
  13980. 'version' => 'none',
  13981. ))
  13982. ->values(array(
  13983. 'lid' => '452',
  13984. 'location' => 'modules/userreference/userreference.module:359',
  13985. 'textgroup' => 'default',
  13986. 'source' => 'If selected, a reverse link back to the referencing node will displayed on the referenced user record.',
  13987. 'version' => 'none',
  13988. ))
  13989. ->values(array(
  13990. 'lid' => '453',
  13991. 'location' => 'modules/userreference/userreference.module:594',
  13992. 'textgroup' => 'default',
  13993. 'source' => '%name: found no valid user with that name.',
  13994. 'version' => 'none',
  13995. ))
  13996. ->values(array(
  13997. 'lid' => '454',
  13998. 'location' => 'modules/userreference/userreference.module:887',
  13999. 'textgroup' => 'default',
  14000. 'source' => 'Related content',
  14001. 'version' => 'none',
  14002. ))
  14003. ->values(array(
  14004. 'lid' => '455',
  14005. 'location' => 'modules/userreference/userreference.module:15',
  14006. 'textgroup' => 'default',
  14007. 'source' => 'Userreference autocomplete',
  14008. 'version' => 'none',
  14009. ))
  14010. ->values(array(
  14011. 'lid' => '456',
  14012. 'location' => 'userreference.module:0',
  14013. 'textgroup' => 'default',
  14014. 'source' => 'userreference',
  14015. 'version' => 'none',
  14016. ))
  14017. ->values(array(
  14018. 'lid' => '457',
  14019. 'location' => 'modules/userreference/userreference.info:0',
  14020. 'textgroup' => 'default',
  14021. 'source' => 'User Reference',
  14022. 'version' => 'none',
  14023. ))
  14024. ->values(array(
  14025. 'lid' => '458',
  14026. 'location' => 'modules/userreference/userreference.info:0',
  14027. 'textgroup' => 'default',
  14028. 'source' => 'Defines a field type for referencing a user from a node.',
  14029. 'version' => 'none',
  14030. ))
  14031. ->values(array(
  14032. 'lid' => '459',
  14033. 'location' => 'theme/content-admin-field-overview-form.tpl.php:11',
  14034. 'textgroup' => 'default',
  14035. 'source' => 'Weight',
  14036. 'version' => '6.38-dev',
  14037. ))
  14038. ->values(array(
  14039. 'lid' => '460',
  14040. 'location' => 'theme/content-admin-field-overview-form.tpl.php:53',
  14041. 'textgroup' => 'default',
  14042. 'source' => 'Add',
  14043. 'version' => 'none',
  14044. ))
  14045. ->values(array(
  14046. 'lid' => '461',
  14047. 'location' => 'theme/content-admin-field-overview-form.tpl.php:59',
  14048. 'textgroup' => 'default',
  14049. 'source' => 'New field',
  14050. 'version' => 'none',
  14051. ))
  14052. ->values(array(
  14053. 'lid' => '462',
  14054. 'location' => 'theme/content-admin-field-overview-form.tpl.php:72',
  14055. 'textgroup' => 'default',
  14056. 'source' => 'Existing field',
  14057. 'version' => 'none',
  14058. ))
  14059. ->values(array(
  14060. 'lid' => '463',
  14061. 'location' => 'theme/content-admin-field-overview-form.tpl.php:84',
  14062. 'textgroup' => 'default',
  14063. 'source' => 'New group',
  14064. 'version' => 'none',
  14065. ))
  14066. ->values(array(
  14067. 'lid' => '464',
  14068. 'location' => 'theme/theme.inc:11',
  14069. 'textgroup' => 'default',
  14070. 'source' => 'Add fields and groups to the content type, and arrange them on content display and input forms.',
  14071. 'version' => 'none',
  14072. ))
  14073. ->values(array(
  14074. 'lid' => '465',
  14075. 'location' => 'theme/theme.inc:13',
  14076. 'textgroup' => 'default',
  14077. 'source' => 'You can add a field to a group by dragging it below and to the right of the group.',
  14078. 'version' => 'none',
  14079. ))
  14080. ->values(array(
  14081. 'lid' => '466',
  14082. 'location' => 'theme/theme.inc:16',
  14083. 'textgroup' => 'default',
  14084. 'source' => 'Note: Installing the <a href="!adv_help">Advanced help</a> module will let you access more and better help.',
  14085. 'version' => 'none',
  14086. ))
  14087. ->values(array(
  14088. 'lid' => '467',
  14089. 'location' => 'theme/theme.inc:116',
  14090. 'textgroup' => 'default',
  14091. 'source' => "Use the 'Exclude' checkbox to exclude an item from the !content value passed to the node template.",
  14092. 'version' => 'none',
  14093. ))
  14094. ->values(array(
  14095. 'lid' => '468',
  14096. 'location' => 'theme/content-edit.js:0',
  14097. 'textgroup' => 'default',
  14098. 'source' => 'Remove this item',
  14099. 'version' => 'none',
  14100. ))
  14101. ->values(array(
  14102. 'lid' => '469',
  14103. 'location' => 'content_admin.inc:290',
  14104. 'textgroup' => 'default',
  14105. 'source' => 'Add field',
  14106. 'version' => '6.38-dev',
  14107. ))
  14108. ->values(array(
  14109. 'lid' => '470',
  14110. 'location' => 'field.php:180;190, number.module:119, text.module:107',
  14111. 'textgroup' => 'default',
  14112. 'source' => 'Illegal value for %name.',
  14113. 'version' => 'none',
  14114. ))
  14115. ->values(array(
  14116. 'lid' => '471',
  14117. 'location' => 'examples/example_field.php:287 examples/simple_field.php:231, modules/text/text.module:169',
  14118. 'textgroup' => 'default',
  14119. 'source' => '%label is longer than %max characters.',
  14120. 'version' => 'none',
  14121. ))
  14122. ->values(array(
  14123. 'lid' => '472',
  14124. 'location' => 'field.php:273 text.module:167',
  14125. 'textgroup' => 'default',
  14126. 'source' => '"Rows" must be a positive integer.',
  14127. 'version' => 'none',
  14128. ))
  14129. ->values(array(
  14130. 'lid' => '473',
  14131. 'location' => 'modules/number/number.module:133 modules/text/text.module:92',
  14132. 'textgroup' => 'default',
  14133. 'source' => 'The possible values this field can contain. Enter one value per line, in the format key|label. The key is the value that will be stored in the database and it must match the field storage type, %type. The label is optional and the key will be used as the label if no label is specified.<br />Allowed HTML tags: @tags',
  14134. 'version' => 'none',
  14135. ))
  14136. ->values(array(
  14137. 'lid' => '474',
  14138. 'location' => 'content.module:144',
  14139. 'textgroup' => 'default',
  14140. 'source' => 'add field',
  14141. 'version' => 'none',
  14142. ))
  14143. ->values(array(
  14144. 'lid' => '475',
  14145. 'location' => 'includes/content.admin.inc:112;291',
  14146. 'textgroup' => 'default',
  14147. 'source' => 'There are no fields configured for this content type. You can !link.',
  14148. 'version' => 'none',
  14149. ))
  14150. ->values(array(
  14151. 'lid' => '476',
  14152. 'location' => 'includes/content.admin.inc:113;292',
  14153. 'textgroup' => 'default',
  14154. 'source' => 'Add a new field',
  14155. 'version' => 'none',
  14156. ))
  14157. ->values(array(
  14158. 'lid' => '477',
  14159. 'location' => 'includes/content.admin.inc:137',
  14160. 'textgroup' => 'default',
  14161. 'source' => 'To change the order of a field, grab a drag-and-drop handle under the Label column and drag the field to a new location in the list. (Grab a handle by clicking and holding the mouse while hovering over a handle icon.) Remember that your changes will not be saved until you click the Save button at the bottom of the page.',
  14162. 'version' => 'none',
  14163. ))
  14164. ->values(array(
  14165. 'lid' => '478',
  14166. 'location' => 'includes/content.admin.inc:477',
  14167. 'textgroup' => 'default',
  14168. 'source' => 'No field modules are enabled. You need to <a href="!modules_url">enable one</a>, such as text.module, before you can add new fields.',
  14169. 'version' => 'none',
  14170. ))
  14171. ->values(array(
  14172. 'lid' => '479',
  14173. 'location' => 'content_admin.inc:277',
  14174. 'textgroup' => 'default',
  14175. 'source' => 'Add existing field',
  14176. 'version' => 'none',
  14177. ))
  14178. ->values(array(
  14179. 'lid' => '480',
  14180. 'location' => 'content_admin.inc:311',
  14181. 'textgroup' => 'default',
  14182. 'source' => 'Create new field',
  14183. 'version' => 'none',
  14184. ))
  14185. ->values(array(
  14186. 'lid' => '481',
  14187. 'location' => 'includes/content.admin.inc:606',
  14188. 'textgroup' => 'default',
  14189. 'source' => 'The machine-readable name of the field.',
  14190. 'version' => 'none',
  14191. ))
  14192. ->values(array(
  14193. 'lid' => '482',
  14194. 'location' => 'includes/content.admin.inc:610',
  14195. 'textgroup' => 'default',
  14196. 'source' => 'This name cannot be changed.',
  14197. 'version' => 'none',
  14198. ))
  14199. ->values(array(
  14200. 'lid' => '483',
  14201. 'location' => 'includes/content.admin.inc:618',
  14202. 'textgroup' => 'default',
  14203. 'source' => "This name cannot be changed later! The name will be prefixed with 'field_' and can include lowercase unaccented letters, numbers, and underscores. The length of the name, including the prefix, is limited to no more than 32 letters.",
  14204. 'version' => 'none',
  14205. ))
  14206. ->values(array(
  14207. 'lid' => '484',
  14208. 'location' => 'includes/content.admin.inc:636',
  14209. 'textgroup' => 'default',
  14210. 'source' => 'The type of data you would like to store in the database with this field.',
  14211. 'version' => 'none',
  14212. ))
  14213. ->values(array(
  14214. 'lid' => '485',
  14215. 'location' => 'includes/content.admin.inc:692',
  14216. 'textgroup' => 'default',
  14217. 'source' => 'The field name %field_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
  14218. 'version' => 'none',
  14219. ))
  14220. ->values(array(
  14221. 'lid' => '486',
  14222. 'location' => 'includes/content.admin.inc:695',
  14223. 'textgroup' => 'default',
  14224. 'source' => "The field name %field_name is too long. The name is limited to 32 characters, including the 'field_' prefix.",
  14225. 'version' => 'none',
  14226. ))
  14227. ->values(array(
  14228. 'lid' => '487',
  14229. 'location' => 'includes/content.admin.inc:706',
  14230. 'textgroup' => 'default',
  14231. 'source' => 'The field name %field_name already exists.',
  14232. 'version' => 'none',
  14233. ))
  14234. ->values(array(
  14235. 'lid' => '488',
  14236. 'location' => 'includes/content.admin.inc:709',
  14237. 'textgroup' => 'default',
  14238. 'source' => "The name 'field_instance' is a reserved name.",
  14239. 'version' => 'none',
  14240. ))
  14241. ->values(array(
  14242. 'lid' => '489',
  14243. 'location' => 'content_admin.inc:432',
  14244. 'textgroup' => 'default',
  14245. 'source' => 'Created field %label.',
  14246. 'version' => 'none',
  14247. ))
  14248. ->values(array(
  14249. 'lid' => '490',
  14250. 'location' => 'includes/content.admin.inc:754',
  14251. 'textgroup' => 'default',
  14252. 'source' => 'Update field %label.',
  14253. 'version' => 'none',
  14254. ))
  14255. ->values(array(
  14256. 'lid' => '491',
  14257. 'location' => 'includes/content.admin.inc:758',
  14258. 'textgroup' => 'default',
  14259. 'source' => 'There was a problem updating field %label.',
  14260. 'version' => 'none',
  14261. ))
  14262. ->values(array(
  14263. 'lid' => '492',
  14264. 'location' => 'includes/content.admin.inc:955',
  14265. 'textgroup' => 'default',
  14266. 'source' => "Advanced usage only: PHP code that returns a default value. Should not include &lt;?php ?&gt; delimiters. If this field is filled out, the value returned by this code will override any value specified above. Expected format: <pre>!sample</pre>Using !link_devel's 'devel load' tab on a %type content page might help you figure out the expected format.",
  14267. 'version' => 'none',
  14268. ))
  14269. ->values(array(
  14270. 'lid' => '493',
  14271. 'location' => 'includes/content.admin.inc:986',
  14272. 'textgroup' => 'default',
  14273. 'source' => "Select a specific number of values for this field, or 'Unlimited' to provide an 'Add more' button so the users can add as many values as they like.",
  14274. 'version' => 'none',
  14275. ))
  14276. ->values(array(
  14277. 'lid' => '494',
  14278. 'location' => 'includes/content.admin.inc:1131',
  14279. 'textgroup' => 'default',
  14280. 'source' => 'The default value PHP code created @value which is invalid.',
  14281. 'version' => 'none',
  14282. ))
  14283. ->values(array(
  14284. 'lid' => '495',
  14285. 'location' => 'includes/content.token.inc:62',
  14286. 'textgroup' => 'default',
  14287. 'source' => 'Formatted HTML link to the node',
  14288. 'version' => 'none',
  14289. ))
  14290. ->values(array(
  14291. 'lid' => '496',
  14292. 'location' => 'number.module:113',
  14293. 'textgroup' => 'default',
  14294. 'source' => 'The value of %name may be no smaller than %min.',
  14295. 'version' => 'none',
  14296. ))
  14297. ->values(array(
  14298. 'lid' => '497',
  14299. 'location' => 'number.module:116',
  14300. 'textgroup' => 'default',
  14301. 'source' => 'The value of %name may be no larger than %max.',
  14302. 'version' => 'none',
  14303. ))
  14304. ->values(array(
  14305. 'lid' => '498',
  14306. 'location' => 'modules/number/number.module:476',
  14307. 'textgroup' => 'default',
  14308. 'source' => 'Only numbers and decimals are allowed in %field. %start was changed to %value.',
  14309. 'version' => 'none',
  14310. ))
  14311. ->values(array(
  14312. 'lid' => '499',
  14313. 'location' => 'modules/number/number.module:494',
  14314. 'textgroup' => 'default',
  14315. 'source' => 'Only numbers are allowed in %field. %start was changed to %value.',
  14316. 'version' => 'none',
  14317. ))
  14318. ->values(array(
  14319. 'lid' => '500',
  14320. 'location' => 'modules/number/number.module:513',
  14321. 'textgroup' => 'default',
  14322. 'source' => 'Only numbers and the decimal character (%decimal) are allowed in %field. %start was changed to %value.',
  14323. 'version' => 'none',
  14324. ))
  14325. ->values(array(
  14326. 'lid' => '501',
  14327. 'location' => 'modules/optionwidgets/optionwidgets.module:10',
  14328. 'textgroup' => 'default',
  14329. 'source' => 'Create a list of options as a list in <strong>Allowed values</strong> or as an array in PHP code. These values will be the same for %field in all content types.',
  14330. 'version' => 'none',
  14331. ))
  14332. ->values(array(
  14333. 'lid' => '502',
  14334. 'location' => 'misc/tabledrag.js',
  14335. 'textgroup' => 'default',
  14336. 'source' => 'Drag to re-order',
  14337. 'version' => 'none',
  14338. ))
  14339. ->values(array(
  14340. 'lid' => '503',
  14341. 'location' => 'misc/tabledrag.js',
  14342. 'textgroup' => 'default',
  14343. 'source' => 'Changes made in this table will not be saved until the form is submitted.',
  14344. 'version' => 'none',
  14345. ))
  14346. ->values(array(
  14347. 'lid' => '504',
  14348. 'location' => 'field:profile_color:title',
  14349. 'textgroup' => 'profile',
  14350. 'source' => 'Favorite color',
  14351. 'version' => '1',
  14352. ))
  14353. ->values(array(
  14354. 'lid' => '505',
  14355. 'location' => 'field:profile_color:explanation',
  14356. 'textgroup' => 'profile',
  14357. 'source' => 'List your favorite color',
  14358. 'version' => '1',
  14359. ))
  14360. ->values(array(
  14361. 'lid' => '506',
  14362. 'location' => 'category',
  14363. 'textgroup' => 'profile',
  14364. 'source' => 'Personal information',
  14365. 'version' => '1',
  14366. ))
  14367. ->values(array(
  14368. 'lid' => '507',
  14369. 'location' => 'field:profile_biography:title',
  14370. 'textgroup' => 'profile',
  14371. 'source' => 'Biography',
  14372. 'version' => '1',
  14373. ))
  14374. ->values(array(
  14375. 'lid' => '508',
  14376. 'location' => 'field:profile_biography:explanation',
  14377. 'textgroup' => 'profile',
  14378. 'source' => 'Tell people a little bit about yourself',
  14379. 'version' => '1',
  14380. ))
  14381. ->values(array(
  14382. 'lid' => '509',
  14383. 'location' => 'field:profile_sell_Address:title',
  14384. 'textgroup' => 'profile',
  14385. 'source' => 'Sell your email address?',
  14386. 'version' => '1',
  14387. ))
  14388. ->values(array(
  14389. 'lid' => '510',
  14390. 'location' => 'field:profile_sell_Address:explanation',
  14391. 'textgroup' => 'profile',
  14392. 'source' => "If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
  14393. 'version' => '1',
  14394. ))
  14395. ->values(array(
  14396. 'lid' => '511',
  14397. 'location' => 'category',
  14398. 'textgroup' => 'profile',
  14399. 'source' => 'Communication preferences',
  14400. 'version' => '1',
  14401. ))
  14402. ->values(array(
  14403. 'lid' => '512',
  14404. 'location' => 'field:profile_sold_to:title',
  14405. 'textgroup' => 'profile',
  14406. 'source' => 'Sales Category',
  14407. 'version' => '1',
  14408. ))
  14409. ->values(array(
  14410. 'lid' => '513',
  14411. 'location' => 'field:profile_sold_to:explanation',
  14412. 'textgroup' => 'profile',
  14413. 'source' => "Select the sales categories to which this user's address was sold.",
  14414. 'version' => '1',
  14415. ))
  14416. ->values(array(
  14417. 'lid' => '514',
  14418. 'location' => 'field:profile_sold_to:options',
  14419. 'textgroup' => 'profile',
  14420. 'source' => "Pill spammers\r\nFitness spammers\r\nBack\\slash\r\nForward/slash\r\nDot.in.the.middle",
  14421. 'version' => '1',
  14422. ))
  14423. ->values(array(
  14424. 'lid' => '515',
  14425. 'location' => 'category',
  14426. 'textgroup' => 'profile',
  14427. 'source' => 'Administrative data',
  14428. 'version' => '1',
  14429. ))
  14430. ->values(array(
  14431. 'lid' => '516',
  14432. 'location' => 'field:profile_bands:title',
  14433. 'textgroup' => 'profile',
  14434. 'source' => 'Favorite bands',
  14435. 'version' => '1',
  14436. ))
  14437. ->values(array(
  14438. 'lid' => '517',
  14439. 'location' => 'field:profile_bands:explanation',
  14440. 'textgroup' => 'profile',
  14441. 'source' => "Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
  14442. 'version' => '1',
  14443. ))
  14444. ->values(array(
  14445. 'lid' => '518',
  14446. 'location' => 'field:profile_birthdate:title',
  14447. 'textgroup' => 'profile',
  14448. 'source' => 'Birthdate',
  14449. 'version' => '1',
  14450. ))
  14451. ->values(array(
  14452. 'lid' => '519',
  14453. 'location' => 'field:profile_birthdate:explanation',
  14454. 'textgroup' => 'profile',
  14455. 'source' => "Enter your birth date and we'll send you a coupon.",
  14456. 'version' => '1',
  14457. ))
  14458. ->values(array(
  14459. 'lid' => '520',
  14460. 'location' => 'field:profile_really_really_love_migrations:title',
  14461. 'textgroup' => 'profile',
  14462. 'source' => 'I really, really, really love migrations',
  14463. 'version' => '1',
  14464. ))
  14465. ->values(array(
  14466. 'lid' => '521',
  14467. 'location' => 'field:profile_really_really_love_migrations:explanation',
  14468. 'textgroup' => 'profile',
  14469. 'source' => 'If you check this box, you love migrations.',
  14470. 'version' => '1',
  14471. ))
  14472. ->values(array(
  14473. 'lid' => '522',
  14474. 'location' => 'field:profile_blog:title',
  14475. 'textgroup' => 'profile',
  14476. 'source' => 'Blog',
  14477. 'version' => '1',
  14478. ))
  14479. ->values(array(
  14480. 'lid' => '523',
  14481. 'location' => 'field:profile_blog:explanation',
  14482. 'textgroup' => 'profile',
  14483. 'source' => 'Paste the full URL, including http://, of your personal blog.',
  14484. 'version' => '1',
  14485. ))
  14486. ->values(array(
  14487. 'lid' => '524',
  14488. 'location' => 'block:1:title',
  14489. 'textgroup' => 'blocks',
  14490. 'source' => 'Static Block',
  14491. 'version' => '1',
  14492. ))
  14493. ->values(array(
  14494. 'lid' => '525',
  14495. 'location' => 'block:1:body',
  14496. 'textgroup' => 'blocks',
  14497. 'source' => '<h3>My first custom block body</h3>',
  14498. 'version' => '1',
  14499. ))
  14500. ->values(array(
  14501. 'lid' => '526',
  14502. 'location' => 'block:2:title',
  14503. 'textgroup' => 'blocks',
  14504. 'source' => 'Another Static Block',
  14505. 'version' => '1',
  14506. ))
  14507. ->values(array(
  14508. 'lid' => '527',
  14509. 'location' => 'block:2:body',
  14510. 'textgroup' => 'blocks',
  14511. 'source' => '<h3>My second custom block body</h3>',
  14512. 'version' => '1',
  14513. ))
  14514. ->values(array(
  14515. 'lid' => '528',
  14516. 'location' => 'vocabulary:4:name',
  14517. 'textgroup' => 'taxonomy',
  14518. 'source' => 'Tags',
  14519. 'version' => '1',
  14520. ))
  14521. ->values(array(
  14522. 'lid' => '529',
  14523. 'location' => 'vocabulary:1:name',
  14524. 'textgroup' => 'taxonomy',
  14525. 'source' => 'vocabulary 1 (i=0)',
  14526. 'version' => '1',
  14527. ))
  14528. ->values(array(
  14529. 'lid' => '530',
  14530. 'location' => 'vocabulary:2:name',
  14531. 'textgroup' => 'taxonomy',
  14532. 'source' => 'vocabulary 2 (i=1)',
  14533. 'version' => '1',
  14534. ))
  14535. ->values(array(
  14536. 'lid' => '531',
  14537. 'location' => 'vocabulary:3:name',
  14538. 'textgroup' => 'taxonomy',
  14539. 'source' => 'vocabulary 3 (i=2)',
  14540. 'version' => '1',
  14541. ))
  14542. ->values(array(
  14543. 'lid' => '532',
  14544. 'location' => 'vocabulary:5:name',
  14545. 'textgroup' => 'taxonomy',
  14546. 'source' => 'vocabulary name much longer than thirty two characters',
  14547. 'version' => '1',
  14548. ))
  14549. ->values(array(
  14550. 'lid' => '533',
  14551. 'location' => 'type:article:name',
  14552. 'textgroup' => 'nodetype',
  14553. 'source' => 'Article',
  14554. 'version' => '1',
  14555. ))
  14556. ->values(array(
  14557. 'lid' => '534',
  14558. 'location' => 'type:article:title',
  14559. 'textgroup' => 'nodetype',
  14560. 'source' => 'Title',
  14561. 'version' => '1',
  14562. ))
  14563. ->values(array(
  14564. 'lid' => '535',
  14565. 'location' => 'type:article:body',
  14566. 'textgroup' => 'nodetype',
  14567. 'source' => 'Body',
  14568. 'version' => '1',
  14569. ))
  14570. ->values(array(
  14571. 'lid' => '536',
  14572. 'location' => 'type:article:description',
  14573. 'textgroup' => 'nodetype',
  14574. 'source' => 'An <em>article</em>, content type.',
  14575. 'version' => '1',
  14576. ))
  14577. ->values(array(
  14578. 'lid' => '537',
  14579. 'location' => 'type:company:name',
  14580. 'textgroup' => 'nodetype',
  14581. 'source' => 'Company',
  14582. 'version' => '1',
  14583. ))
  14584. ->values(array(
  14585. 'lid' => '538',
  14586. 'location' => 'type:company:title',
  14587. 'textgroup' => 'nodetype',
  14588. 'source' => 'Name',
  14589. 'version' => '1',
  14590. ))
  14591. ->values(array(
  14592. 'lid' => '539',
  14593. 'location' => 'type:company:body',
  14594. 'textgroup' => 'nodetype',
  14595. 'source' => 'Description',
  14596. 'version' => '1',
  14597. ))
  14598. ->values(array(
  14599. 'lid' => '540',
  14600. 'location' => 'type:company:description',
  14601. 'textgroup' => 'nodetype',
  14602. 'source' => 'Company node type',
  14603. 'version' => '1',
  14604. ))
  14605. ->values(array(
  14606. 'lid' => '541',
  14607. 'location' => 'type:employee:name',
  14608. 'textgroup' => 'nodetype',
  14609. 'source' => 'Employee',
  14610. 'version' => '1',
  14611. ))
  14612. ->values(array(
  14613. 'lid' => '542',
  14614. 'location' => 'type:employee:title',
  14615. 'textgroup' => 'nodetype',
  14616. 'source' => 'Name',
  14617. 'version' => '1',
  14618. ))
  14619. ->values(array(
  14620. 'lid' => '543',
  14621. 'location' => 'type:employee:body',
  14622. 'textgroup' => 'nodetype',
  14623. 'source' => 'Bio',
  14624. 'version' => '1',
  14625. ))
  14626. ->values(array(
  14627. 'lid' => '544',
  14628. 'location' => 'type:employee:description',
  14629. 'textgroup' => 'nodetype',
  14630. 'source' => 'Employee node type',
  14631. 'version' => '1',
  14632. ))
  14633. ->values(array(
  14634. 'lid' => '545',
  14635. 'location' => 'type:sponsor:name',
  14636. 'textgroup' => 'nodetype',
  14637. 'source' => 'Sponsor',
  14638. 'version' => '1',
  14639. ))
  14640. ->values(array(
  14641. 'lid' => '546',
  14642. 'location' => 'type:sponsor:title',
  14643. 'textgroup' => 'nodetype',
  14644. 'source' => 'Name',
  14645. 'version' => '1',
  14646. ))
  14647. ->values(array(
  14648. 'lid' => '547',
  14649. 'location' => 'type:sponsor:body',
  14650. 'textgroup' => 'nodetype',
  14651. 'source' => 'Body',
  14652. 'version' => '1',
  14653. ))
  14654. ->values(array(
  14655. 'lid' => '548',
  14656. 'location' => 'type:sponsor:description',
  14657. 'textgroup' => 'nodetype',
  14658. 'source' => 'Sponsor node type',
  14659. 'version' => '1',
  14660. ))
  14661. ->values(array(
  14662. 'lid' => '549',
  14663. 'location' => 'type:story:name',
  14664. 'textgroup' => 'nodetype',
  14665. 'source' => 'Story',
  14666. 'version' => '1',
  14667. ))
  14668. ->values(array(
  14669. 'lid' => '550',
  14670. 'location' => 'type:story:title',
  14671. 'textgroup' => 'nodetype',
  14672. 'source' => 'Title',
  14673. 'version' => '1',
  14674. ))
  14675. ->values(array(
  14676. 'lid' => '551',
  14677. 'location' => 'type:story:body',
  14678. 'textgroup' => 'nodetype',
  14679. 'source' => 'Body',
  14680. 'version' => '1',
  14681. ))
  14682. ->values(array(
  14683. 'lid' => '552',
  14684. 'location' => 'type:story:description',
  14685. 'textgroup' => 'nodetype',
  14686. 'source' => "A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
  14687. 'version' => '1',
  14688. ))
  14689. ->values(array(
  14690. 'lid' => '553',
  14691. 'location' => 'type:test_event:name',
  14692. 'textgroup' => 'nodetype',
  14693. 'source' => 'Migrate test event',
  14694. 'version' => '1',
  14695. ))
  14696. ->values(array(
  14697. 'lid' => '554',
  14698. 'location' => 'type:test_event:title',
  14699. 'textgroup' => 'nodetype',
  14700. 'source' => 'Event Name',
  14701. 'version' => '1',
  14702. ))
  14703. ->values(array(
  14704. 'lid' => '555',
  14705. 'location' => 'type:test_event:body',
  14706. 'textgroup' => 'nodetype',
  14707. 'source' => 'Body',
  14708. 'version' => '1',
  14709. ))
  14710. ->values(array(
  14711. 'lid' => '556',
  14712. 'location' => 'type:test_event:description',
  14713. 'textgroup' => 'nodetype',
  14714. 'source' => 'test event description here',
  14715. 'version' => '1',
  14716. ))
  14717. ->values(array(
  14718. 'lid' => '558',
  14719. 'location' => 'type:test_page:name',
  14720. 'textgroup' => 'nodetype',
  14721. 'source' => 'Migrate test page',
  14722. 'version' => '1',
  14723. ))
  14724. ->values(array(
  14725. 'lid' => '559',
  14726. 'location' => 'type:test_page:title',
  14727. 'textgroup' => 'nodetype',
  14728. 'source' => 'Title',
  14729. 'version' => '1',
  14730. ))
  14731. ->values(array(
  14732. 'lid' => '560',
  14733. 'location' => 'type:test_page:body',
  14734. 'textgroup' => 'nodetype',
  14735. 'source' => 'This is the body field label',
  14736. 'version' => '1',
  14737. ))
  14738. ->values(array(
  14739. 'lid' => '561',
  14740. 'location' => 'type:test_page:description',
  14741. 'textgroup' => 'nodetype',
  14742. 'source' => "A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.",
  14743. 'version' => '1',
  14744. ))
  14745. ->values(array(
  14746. 'lid' => '562',
  14747. 'location' => 'type:test_planet:name',
  14748. 'textgroup' => 'nodetype',
  14749. 'source' => 'Migrate test planet',
  14750. 'version' => '1',
  14751. ))
  14752. ->values(array(
  14753. 'lid' => '563',
  14754. 'location' => 'type:test_planet:title',
  14755. 'textgroup' => 'nodetype',
  14756. 'source' => 'Title',
  14757. 'version' => '1',
  14758. ))
  14759. ->values(array(
  14760. 'lid' => '564',
  14761. 'location' => 'type:test_planet:body',
  14762. 'textgroup' => 'nodetype',
  14763. 'source' => 'Body',
  14764. 'version' => '1',
  14765. ))
  14766. ->values(array(
  14767. 'lid' => '565',
  14768. 'location' => 'type:test_planet:description',
  14769. 'textgroup' => 'nodetype',
  14770. 'source' => "A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
  14771. 'version' => '1',
  14772. ))
  14773. ->values(array(
  14774. 'lid' => '566',
  14775. 'location' => 'type:test_story:name',
  14776. 'textgroup' => 'nodetype',
  14777. 'source' => 'Migrate test story',
  14778. 'version' => '1',
  14779. ))
  14780. ->values(array(
  14781. 'lid' => '567',
  14782. 'location' => 'type:test_story:title',
  14783. 'textgroup' => 'nodetype',
  14784. 'source' => 'Title',
  14785. 'version' => '1',
  14786. ))
  14787. ->values(array(
  14788. 'lid' => '568',
  14789. 'location' => 'type:test_story:body',
  14790. 'textgroup' => 'nodetype',
  14791. 'source' => 'Body',
  14792. 'version' => '1',
  14793. ))
  14794. ->values(array(
  14795. 'lid' => '569',
  14796. 'location' => 'type:test_story:description',
  14797. 'textgroup' => 'nodetype',
  14798. 'source' => "A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
  14799. 'version' => '1',
  14800. ))
  14801. ->values(array(
  14802. 'lid' => '570',
  14803. 'location' => 'field:story-field_test_exclude_unset:widget_label',
  14804. 'textgroup' => 'cck',
  14805. 'source' => 'Text Field',
  14806. 'version' => '1',
  14807. ))
  14808. ->values(array(
  14809. 'lid' => '571',
  14810. 'location' => 'field:story-field_test_exclude_unset:widget_description',
  14811. 'textgroup' => 'cck',
  14812. 'source' => 'An example text field without exclude.',
  14813. 'version' => '1',
  14814. ))
  14815. ->values(array(
  14816. 'lid' => '572',
  14817. 'location' => 'field:story-field_test_two:widget_label',
  14818. 'textgroup' => 'cck',
  14819. 'source' => 'Integer Field',
  14820. 'version' => '1',
  14821. ))
  14822. ->values(array(
  14823. 'lid' => '573',
  14824. 'location' => 'field:story-field_test_two:widget_description',
  14825. 'textgroup' => 'cck',
  14826. 'source' => 'An example integer field.',
  14827. 'version' => '1',
  14828. ))
  14829. ->values(array(
  14830. 'lid' => '574',
  14831. 'location' => 'field:story-field_test:widget_label',
  14832. 'textgroup' => 'cck',
  14833. 'source' => 'Text Field',
  14834. 'version' => '1',
  14835. ))
  14836. ->values(array(
  14837. 'lid' => '575',
  14838. 'location' => 'field:story-field_test:widget_description',
  14839. 'textgroup' => 'cck',
  14840. 'source' => 'An example text field.',
  14841. 'version' => '1',
  14842. ))
  14843. ->values(array(
  14844. 'lid' => '576',
  14845. 'location' => 'field:story-field_test_three:widget_label',
  14846. 'textgroup' => 'cck',
  14847. 'source' => 'Decimal Field',
  14848. 'version' => '1',
  14849. ))
  14850. ->values(array(
  14851. 'lid' => '577',
  14852. 'location' => 'field:story-field_test_three:widget_description',
  14853. 'textgroup' => 'cck',
  14854. 'source' => 'An example decimal field.',
  14855. 'version' => '1',
  14856. ))
  14857. ->values(array(
  14858. 'lid' => '578',
  14859. 'location' => 'field:story-field_test_four:widget_label',
  14860. 'textgroup' => 'cck',
  14861. 'source' => 'Float Field',
  14862. 'version' => '1',
  14863. ))
  14864. ->values(array(
  14865. 'lid' => '579',
  14866. 'location' => 'field:story-field_test_four:widget_description',
  14867. 'textgroup' => 'cck',
  14868. 'source' => 'An example float field.',
  14869. 'version' => '1',
  14870. ))
  14871. ->values(array(
  14872. 'lid' => '580',
  14873. 'location' => 'field:story-field_test_identical1:widget_label',
  14874. 'textgroup' => 'cck',
  14875. 'source' => 'Integer Field',
  14876. 'version' => '1',
  14877. ))
  14878. ->values(array(
  14879. 'lid' => '581',
  14880. 'location' => 'field:story-field_test_identical1:widget_description',
  14881. 'textgroup' => 'cck',
  14882. 'source' => 'An example integer field.',
  14883. 'version' => '1',
  14884. ))
  14885. ->values(array(
  14886. 'lid' => '582',
  14887. 'location' => 'field:story-field_test_identical2:widget_label',
  14888. 'textgroup' => 'cck',
  14889. 'source' => 'Integer Field',
  14890. 'version' => '1',
  14891. ))
  14892. ->values(array(
  14893. 'lid' => '583',
  14894. 'location' => 'field:story-field_test_identical2:widget_description',
  14895. 'textgroup' => 'cck',
  14896. 'source' => 'An example integer field.',
  14897. 'version' => '1',
  14898. ))
  14899. ->values(array(
  14900. 'lid' => '584',
  14901. 'location' => 'field:story-field_test_email:widget_label',
  14902. 'textgroup' => 'cck',
  14903. 'source' => 'Email Field',
  14904. 'version' => '1',
  14905. ))
  14906. ->values(array(
  14907. 'lid' => '585',
  14908. 'location' => 'field:story-field_test_email:widget_description',
  14909. 'textgroup' => 'cck',
  14910. 'source' => 'An example email field.',
  14911. 'version' => '1',
  14912. ))
  14913. ->values(array(
  14914. 'lid' => '586',
  14915. 'location' => 'field:story-field_test_link:widget_label',
  14916. 'textgroup' => 'cck',
  14917. 'source' => 'Link Field',
  14918. 'version' => '1',
  14919. ))
  14920. ->values(array(
  14921. 'lid' => '587',
  14922. 'location' => 'field:story-field_test_link:widget_description',
  14923. 'textgroup' => 'cck',
  14924. 'source' => 'An example link field.',
  14925. 'version' => '1',
  14926. ))
  14927. ->values(array(
  14928. 'lid' => '588',
  14929. 'location' => 'field:story-field_test_filefield:widget_label',
  14930. 'textgroup' => 'cck',
  14931. 'source' => 'File Field',
  14932. 'version' => '1',
  14933. ))
  14934. ->values(array(
  14935. 'lid' => '589',
  14936. 'location' => 'field:story-field_test_filefield:widget_description',
  14937. 'textgroup' => 'cck',
  14938. 'source' => 'An example image field.',
  14939. 'version' => '1',
  14940. ))
  14941. ->values(array(
  14942. 'lid' => '590',
  14943. 'location' => 'field:story-field_test_imagefield:widget_label',
  14944. 'textgroup' => 'cck',
  14945. 'source' => 'Image Field',
  14946. 'version' => '1',
  14947. ))
  14948. ->values(array(
  14949. 'lid' => '591',
  14950. 'location' => 'field:story-field_test_imagefield:widget_description',
  14951. 'textgroup' => 'cck',
  14952. 'source' => 'An example image field.',
  14953. 'version' => '1',
  14954. ))
  14955. ->values(array(
  14956. 'lid' => '592',
  14957. 'location' => 'field:story-field_test_date:widget_label',
  14958. 'textgroup' => 'cck',
  14959. 'source' => 'Date Field',
  14960. 'version' => '1',
  14961. ))
  14962. ->values(array(
  14963. 'lid' => '593',
  14964. 'location' => 'field:story-field_test_date:widget_description',
  14965. 'textgroup' => 'cck',
  14966. 'source' => 'An example date field.',
  14967. 'version' => '1',
  14968. ))
  14969. ->values(array(
  14970. 'lid' => '594',
  14971. 'location' => 'field:story-field_test_datestamp:widget_label',
  14972. 'textgroup' => 'cck',
  14973. 'source' => 'Date Stamp Field',
  14974. 'version' => '1',
  14975. ))
  14976. ->values(array(
  14977. 'lid' => '595',
  14978. 'location' => 'field:story-field_test_datestamp:widget_description',
  14979. 'textgroup' => 'cck',
  14980. 'source' => 'An example date stamp field.',
  14981. 'version' => '1',
  14982. ))
  14983. ->values(array(
  14984. 'lid' => '596',
  14985. 'location' => 'field:story-field_test_datetime:widget_label',
  14986. 'textgroup' => 'cck',
  14987. 'source' => 'Datetime Field',
  14988. 'version' => '1',
  14989. ))
  14990. ->values(array(
  14991. 'lid' => '597',
  14992. 'location' => 'field:story-field_test_datetime:widget_description',
  14993. 'textgroup' => 'cck',
  14994. 'source' => 'An example datetime field.',
  14995. 'version' => '1',
  14996. ))
  14997. ->values(array(
  14998. 'lid' => '598',
  14999. 'location' => 'field:story-field_test_phone:widget_label',
  15000. 'textgroup' => 'cck',
  15001. 'source' => 'Phone Field',
  15002. 'version' => '1',
  15003. ))
  15004. ->values(array(
  15005. 'lid' => '599',
  15006. 'location' => 'field:story-field_test_phone:widget_description',
  15007. 'textgroup' => 'cck',
  15008. 'source' => 'An example phone field.',
  15009. 'version' => '1',
  15010. ))
  15011. ->values(array(
  15012. 'lid' => '600',
  15013. 'location' => 'field:story-field_test_decimal_radio_buttons:widget_label',
  15014. 'textgroup' => 'cck',
  15015. 'source' => 'Decimal Radio Buttons Field',
  15016. 'version' => '1',
  15017. ))
  15018. ->values(array(
  15019. 'lid' => '601',
  15020. 'location' => 'field:story-field_test_decimal_radio_buttons:widget_description',
  15021. 'textgroup' => 'cck',
  15022. 'source' => 'An example decimal field using radio buttons.',
  15023. 'version' => '1',
  15024. ))
  15025. ->values(array(
  15026. 'lid' => '602',
  15027. 'location' => 'field:field_test_decimal_radio_buttons:option_1.2',
  15028. 'textgroup' => 'cck',
  15029. 'source' => '1.2',
  15030. 'version' => '1',
  15031. ))
  15032. ->values(array(
  15033. 'lid' => '603',
  15034. 'location' => 'field:field_test_decimal_radio_buttons:option_2.1',
  15035. 'textgroup' => 'cck',
  15036. 'source' => '2.1',
  15037. 'version' => '1',
  15038. ))
  15039. ->values(array(
  15040. 'lid' => '604',
  15041. 'location' => 'field:story-field_test_float_single_checkbox:widget_label',
  15042. 'textgroup' => 'cck',
  15043. 'source' => 'Float Single Checkbox Field',
  15044. 'version' => '1',
  15045. ))
  15046. ->values(array(
  15047. 'lid' => '605',
  15048. 'location' => 'field:story-field_test_float_single_checkbox:widget_description',
  15049. 'textgroup' => 'cck',
  15050. 'source' => 'An example float field using a single on/off checkbox.',
  15051. 'version' => '1',
  15052. ))
  15053. ->values(array(
  15054. 'lid' => '606',
  15055. 'location' => 'field:field_test_float_single_checkbox:option_3.142',
  15056. 'textgroup' => 'cck',
  15057. 'source' => '3.142',
  15058. 'version' => '1',
  15059. ))
  15060. ->values(array(
  15061. 'lid' => '607',
  15062. 'location' => 'field:field_test_float_single_checkbox:option_1.234',
  15063. 'textgroup' => 'cck',
  15064. 'source' => '1.234',
  15065. 'version' => '1',
  15066. ))
  15067. ->values(array(
  15068. 'lid' => '608',
  15069. 'location' => 'field:story-field_test_integer_selectlist:widget_label',
  15070. 'textgroup' => 'cck',
  15071. 'source' => 'Integer Select List Field',
  15072. 'version' => '1',
  15073. ))
  15074. ->values(array(
  15075. 'lid' => '609',
  15076. 'location' => 'field:story-field_test_integer_selectlist:widget_description',
  15077. 'textgroup' => 'cck',
  15078. 'source' => 'An example integer field using a select list.',
  15079. 'version' => '1',
  15080. ))
  15081. ->values(array(
  15082. 'lid' => '610',
  15083. 'location' => 'field:field_test_integer_selectlist:option_1234',
  15084. 'textgroup' => 'cck',
  15085. 'source' => '1234',
  15086. 'version' => '1',
  15087. ))
  15088. ->values(array(
  15089. 'lid' => '611',
  15090. 'location' => 'field:field_test_integer_selectlist:option_2341',
  15091. 'textgroup' => 'cck',
  15092. 'source' => '2341',
  15093. 'version' => '1',
  15094. ))
  15095. ->values(array(
  15096. 'lid' => '612',
  15097. 'location' => 'field:field_test_integer_selectlist:option_3412',
  15098. 'textgroup' => 'cck',
  15099. 'source' => '3412',
  15100. 'version' => '1',
  15101. ))
  15102. ->values(array(
  15103. 'lid' => '613',
  15104. 'location' => 'field:field_test_integer_selectlist:option_4123',
  15105. 'textgroup' => 'cck',
  15106. 'source' => '4123',
  15107. 'version' => '1',
  15108. ))
  15109. ->values(array(
  15110. 'lid' => '614',
  15111. 'location' => 'field:story-field_test_text_single_checkbox:widget_label',
  15112. 'textgroup' => 'cck',
  15113. 'source' => 'Text Single Checkbox Field',
  15114. 'version' => '1',
  15115. ))
  15116. ->values(array(
  15117. 'lid' => '615',
  15118. 'location' => 'field:story-field_test_text_single_checkbox:widget_description',
  15119. 'textgroup' => 'cck',
  15120. 'source' => 'An example text field using a single on/off checkbox.',
  15121. 'version' => '1',
  15122. ))
  15123. ->values(array(
  15124. 'lid' => '616',
  15125. 'location' => 'field:field_test_text_single_checkbox:option_0',
  15126. 'textgroup' => 'cck',
  15127. 'source' => 'Hello',
  15128. 'version' => '1',
  15129. ))
  15130. ->values(array(
  15131. 'lid' => '617',
  15132. 'location' => 'field:field_test_text_single_checkbox:option_1',
  15133. 'textgroup' => 'cck',
  15134. 'source' => 'Goodbye',
  15135. 'version' => '1',
  15136. ))
  15137. ->values(array(
  15138. 'lid' => '618',
  15139. 'location' => 'field:story-field_test_text_single_checkbox2:widget_label',
  15140. 'textgroup' => 'cck',
  15141. 'source' => 'Text Single Checkbox Field 2',
  15142. 'version' => '1',
  15143. ))
  15144. ->values(array(
  15145. 'lid' => '619',
  15146. 'location' => 'field:story-field_test_text_single_checkbox2:widget_description',
  15147. 'textgroup' => 'cck',
  15148. 'source' => 'Checkbox that uses keys only and no label.',
  15149. 'version' => '1',
  15150. ))
  15151. ->values(array(
  15152. 'lid' => '620',
  15153. 'location' => 'field:field_test_text_single_checkbox2:option_Off',
  15154. 'textgroup' => 'cck',
  15155. 'source' => 'Off',
  15156. 'version' => '1',
  15157. ))
  15158. ->values(array(
  15159. 'lid' => '621',
  15160. 'location' => 'field:field_test_text_single_checkbox2:option_Hello',
  15161. 'textgroup' => 'cck',
  15162. 'source' => 'Hello',
  15163. 'version' => '1',
  15164. ))
  15165. ->values(array(
  15166. 'lid' => '622',
  15167. 'location' => 'field:test_page-field_test:widget_label',
  15168. 'textgroup' => 'cck',
  15169. 'source' => 'Text Field',
  15170. 'version' => '1',
  15171. ))
  15172. ->values(array(
  15173. 'lid' => '623',
  15174. 'location' => 'field:test_page-field_test:widget_description',
  15175. 'textgroup' => 'cck',
  15176. 'source' => 'An example text field.',
  15177. 'version' => '1',
  15178. ))
  15179. ->values(array(
  15180. 'lid' => '624',
  15181. 'location' => 'field:test_planet-field_multivalue:widget_label',
  15182. 'textgroup' => 'cck',
  15183. 'source' => 'Decimal Field',
  15184. 'version' => '1',
  15185. ))
  15186. ->values(array(
  15187. 'lid' => '625',
  15188. 'location' => 'field:test_planet-field_multivalue:widget_description',
  15189. 'textgroup' => 'cck',
  15190. 'source' => 'An example multi-valued decimal field.',
  15191. 'version' => '1',
  15192. ))
  15193. ->values(array(
  15194. 'lid' => '627',
  15195. 'location' => 'field:test_planet-field_test_text_single_checkbox:widget_description',
  15196. 'textgroup' => 'cck',
  15197. 'source' => 'An example text field using a single on/off checkbox.',
  15198. 'version' => '1',
  15199. ))
  15200. ->values(array(
  15201. 'lid' => '628',
  15202. 'location' => 'misc/tableselect.js',
  15203. 'textgroup' => 'default',
  15204. 'source' => 'Select all rows in this table',
  15205. 'version' => 'none',
  15206. ))
  15207. ->values(array(
  15208. 'lid' => '629',
  15209. 'location' => 'misc/tableselect.js',
  15210. 'textgroup' => 'default',
  15211. 'source' => 'Deselect all rows in this table',
  15212. 'version' => 'none',
  15213. ))
  15214. ->values(array(
  15215. 'lid' => '630',
  15216. 'location' => 'sites/all/modules/filefield/filefield.js',
  15217. 'textgroup' => 'default',
  15218. 'source' => 'The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.',
  15219. 'version' => 'none',
  15220. ))
  15221. ->values(array(
  15222. 'lid' => '631',
  15223. 'location' => 'misc/teaser.js',
  15224. 'textgroup' => 'default',
  15225. 'source' => 'Split summary at cursor',
  15226. 'version' => 'none',
  15227. ))
  15228. ->values(array(
  15229. 'lid' => '632',
  15230. 'location' => 'misc/teaser.js',
  15231. 'textgroup' => 'default',
  15232. 'source' => 'Join summary',
  15233. 'version' => 'none',
  15234. ))
  15235. ->values(array(
  15236. 'lid' => '633',
  15237. 'location' => 'item:140:title',
  15238. 'textgroup' => 'menu',
  15239. 'source' => 'Drupal.org',
  15240. 'version' => '1',
  15241. ))
  15242. ->values(array(
  15243. 'lid' => '634',
  15244. 'location' => 'item:139:title',
  15245. 'textgroup' => 'menu',
  15246. 'source' => 'Test 2',
  15247. 'version' => '1',
  15248. ))
  15249. ->values(array(
  15250. 'lid' => '635',
  15251. 'location' => 'item:139:description',
  15252. 'textgroup' => 'menu',
  15253. 'source' => 'Test menu link 2',
  15254. 'version' => '1',
  15255. ))
  15256. ->values(array(
  15257. 'lid' => '636',
  15258. 'location' => '/?q=fr/admin/settings/site-information',
  15259. 'textgroup' => 'default',
  15260. 'source' => 'Site information',
  15261. 'version' => '6.38-dev',
  15262. ))
  15263. ->values(array(
  15264. 'lid' => '637',
  15265. 'location' => '/?q=fr/admin/settings/site-information',
  15266. 'textgroup' => 'default',
  15267. 'source' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
  15268. 'version' => '6.38-dev',
  15269. ))
  15270. ->values(array(
  15271. 'lid' => '638',
  15272. 'location' => '/?q=fr/admin/settings/site-information',
  15273. 'textgroup' => 'default',
  15274. 'source' => 'The name of this website.',
  15275. 'version' => '6.38-dev',
  15276. ))
  15277. ->values(array(
  15278. 'lid' => '639',
  15279. 'location' => '/?q=fr/admin/settings/site-information',
  15280. 'textgroup' => 'default',
  15281. 'source' => 'E-mail address',
  15282. 'version' => '6.38-dev',
  15283. ))
  15284. ->values(array(
  15285. 'lid' => '640',
  15286. 'location' => '/?q=fr/admin/settings/site-information',
  15287. 'textgroup' => 'default',
  15288. 'source' => "The <em>From</em> address in automated e-mails sent during registration and new password requests, and other notifications. (Use an address ending in your site's domain to help prevent this e-mail being flagged as spam.)",
  15289. 'version' => '6.38-dev',
  15290. ))
  15291. ->values(array(
  15292. 'lid' => '641',
  15293. 'location' => '/?q=fr/admin/settings/site-information',
  15294. 'textgroup' => 'default',
  15295. 'source' => 'Slogan',
  15296. 'version' => '6.38-dev',
  15297. ))
  15298. ->values(array(
  15299. 'lid' => '642',
  15300. 'location' => '/?q=fr/admin/settings/site-information',
  15301. 'textgroup' => 'default',
  15302. 'source' => "Your site's motto, tag line, or catchphrase (often displayed alongside the title of the site).",
  15303. 'version' => '6.38-dev',
  15304. ))
  15305. ->values(array(
  15306. 'lid' => '643',
  15307. 'location' => '/?q=fr/admin/settings/site-information',
  15308. 'textgroup' => 'default',
  15309. 'source' => 'Mission',
  15310. 'version' => '6.38-dev',
  15311. ))
  15312. ->values(array(
  15313. 'lid' => '644',
  15314. 'location' => '/?q=fr/admin/settings/site-information',
  15315. 'textgroup' => 'default',
  15316. 'source' => "Your site's mission or focus statement (often prominently displayed on the front page).",
  15317. 'version' => '6.38-dev',
  15318. ))
  15319. ->values(array(
  15320. 'lid' => '645',
  15321. 'location' => '/?q=fr/admin/settings/site-information',
  15322. 'textgroup' => 'default',
  15323. 'source' => 'Footer message',
  15324. 'version' => '6.38-dev',
  15325. ))
  15326. ->values(array(
  15327. 'lid' => '646',
  15328. 'location' => '/?q=fr/admin/settings/site-information',
  15329. 'textgroup' => 'default',
  15330. 'source' => 'This text will be displayed at the bottom of each page. Useful for adding a copyright notice to your pages.',
  15331. 'version' => '6.38-dev',
  15332. ))
  15333. ->values(array(
  15334. 'lid' => '647',
  15335. 'location' => '/?q=fr/admin/settings/site-information',
  15336. 'textgroup' => 'default',
  15337. 'source' => 'Anonymous user',
  15338. 'version' => '6.38-dev',
  15339. ))
  15340. ->values(array(
  15341. 'lid' => '648',
  15342. 'location' => '/?q=fr/admin/settings/site-information',
  15343. 'textgroup' => 'default',
  15344. 'source' => 'Anonymous',
  15345. 'version' => '6.38-dev',
  15346. ))
  15347. ->values(array(
  15348. 'lid' => '649',
  15349. 'location' => '/?q=fr/admin/settings/site-information',
  15350. 'textgroup' => 'default',
  15351. 'source' => 'The name used to indicate anonymous users.',
  15352. 'version' => '6.38-dev',
  15353. ))
  15354. ->values(array(
  15355. 'lid' => '650',
  15356. 'location' => '/?q=fr/admin/settings/site-information',
  15357. 'textgroup' => 'default',
  15358. 'source' => 'Default front page',
  15359. 'version' => '6.38-dev',
  15360. ))
  15361. ->values(array(
  15362. 'lid' => '651',
  15363. 'location' => '/?q=fr/admin/settings/site-information',
  15364. 'textgroup' => 'default',
  15365. 'source' => 'The home page displays content from this relative URL. If unsure, specify "node".',
  15366. 'version' => '6.38-dev',
  15367. ))
  15368. ->values(array(
  15369. 'lid' => '652',
  15370. 'location' => '/?q=fr/admin/settings/site-information',
  15371. 'textgroup' => 'default',
  15372. 'source' => 'Save configuration',
  15373. 'version' => '6.38-dev',
  15374. ))
  15375. ->values(array(
  15376. 'lid' => '653',
  15377. 'location' => '/?q=fr/admin/settings/site-information',
  15378. 'textgroup' => 'default',
  15379. 'source' => 'Reset to defaults',
  15380. 'version' => '6.38-dev',
  15381. ))
  15382. ->values(array(
  15383. 'lid' => '654',
  15384. 'location' => '/?q=fr/admin/settings/site-information',
  15385. 'textgroup' => 'default',
  15386. 'source' => 'This is a multilingual variable.',
  15387. 'version' => '6.38-dev',
  15388. ))
  15389. ->values(array(
  15390. 'lid' => '655',
  15391. 'location' => '/?q=fr/admin/settings/site-information',
  15392. 'textgroup' => 'default',
  15393. 'source' => 'Left sidebar',
  15394. 'version' => '6.38-dev',
  15395. ))
  15396. ->values(array(
  15397. 'lid' => '656',
  15398. 'location' => '/?q=fr/admin/settings/site-information',
  15399. 'textgroup' => 'default',
  15400. 'source' => 'Right sidebar',
  15401. 'version' => '6.38-dev',
  15402. ))
  15403. ->values(array(
  15404. 'lid' => '657',
  15405. 'location' => '/?q=fr/admin/settings/site-information',
  15406. 'textgroup' => 'default',
  15407. 'source' => 'Header',
  15408. 'version' => '6.38-dev',
  15409. ))
  15410. ->values(array(
  15411. 'lid' => '658',
  15412. 'location' => '/?q=fr/admin/settings/site-information',
  15413. 'textgroup' => 'default',
  15414. 'source' => 'Footer',
  15415. 'version' => '6.38-dev',
  15416. ))
  15417. ->values(array(
  15418. 'lid' => '659',
  15419. 'location' => '/?q=fr/admin/settings/site-information',
  15420. 'textgroup' => 'default',
  15421. 'source' => 'RSS feed',
  15422. 'version' => '6.38-dev',
  15423. ))
  15424. ->values(array(
  15425. 'lid' => '660',
  15426. 'location' => '/?q=fr/admin/settings/site-information',
  15427. 'textgroup' => 'default',
  15428. 'source' => '',
  15429. 'version' => '6.38-dev',
  15430. ))
  15431. ->values(array(
  15432. 'lid' => '661',
  15433. 'location' => '/?q=fr/admin/settings/site-information',
  15434. 'textgroup' => 'default',
  15435. 'source' => 'Administer',
  15436. 'version' => '6.38-dev',
  15437. ))
  15438. ->values(array(
  15439. 'lid' => '662',
  15440. 'location' => '/?q=fr/admin/settings/site-information',
  15441. 'textgroup' => 'default',
  15442. 'source' => 'Compact mode',
  15443. 'version' => '6.38-dev',
  15444. ))
  15445. ->values(array(
  15446. 'lid' => '663',
  15447. 'location' => '/?q=fr/admin/settings/site-information',
  15448. 'textgroup' => 'default',
  15449. 'source' => 'Content management',
  15450. 'version' => '6.38-dev',
  15451. ))
  15452. ->values(array(
  15453. 'lid' => '664',
  15454. 'location' => '/?q=fr/admin/settings/site-information',
  15455. 'textgroup' => 'default',
  15456. 'source' => "Manage your site's content.",
  15457. 'version' => '6.38-dev',
  15458. ))
  15459. ->values(array(
  15460. 'lid' => '665',
  15461. 'location' => '/?q=fr/admin/settings/site-information',
  15462. 'textgroup' => 'default',
  15463. 'source' => 'Reports',
  15464. 'version' => '6.38-dev',
  15465. ))
  15466. ->values(array(
  15467. 'lid' => '666',
  15468. 'location' => '/?q=fr/admin/settings/site-information',
  15469. 'textgroup' => 'default',
  15470. 'source' => 'View reports from system logs and other status information.',
  15471. 'version' => '6.38-dev',
  15472. ))
  15473. ->values(array(
  15474. 'lid' => '667',
  15475. 'location' => '/?q=fr/admin/settings/site-information',
  15476. 'textgroup' => 'default',
  15477. 'source' => 'Site building',
  15478. 'version' => '6.38-dev',
  15479. ))
  15480. ->values(array(
  15481. 'lid' => '668',
  15482. 'location' => '/?q=fr/admin/settings/site-information',
  15483. 'textgroup' => 'default',
  15484. 'source' => 'Control how your site looks and feels.',
  15485. 'version' => '6.38-dev',
  15486. ))
  15487. ->values(array(
  15488. 'lid' => '669',
  15489. 'location' => '/?q=fr/admin/settings/site-information',
  15490. 'textgroup' => 'default',
  15491. 'source' => 'Site configuration',
  15492. 'version' => '6.38-dev',
  15493. ))
  15494. ->values(array(
  15495. 'lid' => '670',
  15496. 'location' => '/?q=fr/admin/settings/site-information',
  15497. 'textgroup' => 'default',
  15498. 'source' => 'Adjust basic site configuration options.',
  15499. 'version' => '6.38-dev',
  15500. ))
  15501. ->values(array(
  15502. 'lid' => '671',
  15503. 'location' => '/?q=fr/admin/settings/site-information',
  15504. 'textgroup' => 'default',
  15505. 'source' => 'Actions',
  15506. 'version' => '6.38-dev',
  15507. ))
  15508. ->values(array(
  15509. 'lid' => '672',
  15510. 'location' => '/?q=fr/admin/settings/site-information',
  15511. 'textgroup' => 'default',
  15512. 'source' => 'Manage the actions defined for your site.',
  15513. 'version' => '6.38-dev',
  15514. ))
  15515. ->values(array(
  15516. 'lid' => '673',
  15517. 'location' => '/?q=fr/admin/settings/site-information',
  15518. 'textgroup' => 'default',
  15519. 'source' => 'Administration theme',
  15520. 'version' => '6.38-dev',
  15521. ))
  15522. ->values(array(
  15523. 'lid' => '674',
  15524. 'location' => '/?q=fr/admin/settings/site-information',
  15525. 'textgroup' => 'default',
  15526. 'source' => 'Settings for how your administrative pages should look.',
  15527. 'version' => '6.38-dev',
  15528. ))
  15529. ->values(array(
  15530. 'lid' => '675',
  15531. 'location' => '/?q=fr/admin/settings/site-information',
  15532. 'textgroup' => 'default',
  15533. 'source' => 'Clean URLs',
  15534. 'version' => '6.38-dev',
  15535. ))
  15536. ->values(array(
  15537. 'lid' => '676',
  15538. 'location' => '/?q=fr/admin/settings/site-information',
  15539. 'textgroup' => 'default',
  15540. 'source' => 'Enable or disable clean URLs for your site.',
  15541. 'version' => '6.38-dev',
  15542. ))
  15543. ->values(array(
  15544. 'lid' => '677',
  15545. 'location' => 'date.module:39',
  15546. 'textgroup' => 'default',
  15547. 'source' => 'Date and time',
  15548. 'version' => '6.38-dev',
  15549. ))
  15550. ->values(array(
  15551. 'lid' => '678',
  15552. 'location' => '/?q=fr/admin/settings/site-information',
  15553. 'textgroup' => 'default',
  15554. 'source' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
  15555. 'version' => '6.38-dev',
  15556. ))
  15557. ->values(array(
  15558. 'lid' => '679',
  15559. 'location' => '/?q=fr/admin/settings/site-information',
  15560. 'textgroup' => 'default',
  15561. 'source' => 'Error reporting',
  15562. 'version' => '6.38-dev',
  15563. ))
  15564. ->values(array(
  15565. 'lid' => '680',
  15566. 'location' => '/?q=fr/admin/settings/site-information',
  15567. 'textgroup' => 'default',
  15568. 'source' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.',
  15569. 'version' => '6.38-dev',
  15570. ))
  15571. ->values(array(
  15572. 'lid' => '681',
  15573. 'location' => '/?q=fr/admin/settings/site-information',
  15574. 'textgroup' => 'default',
  15575. 'source' => 'File system',
  15576. 'version' => '6.38-dev',
  15577. ))
  15578. ->values(array(
  15579. 'lid' => '682',
  15580. 'location' => '/?q=fr/admin/settings/site-information',
  15581. 'textgroup' => 'default',
  15582. 'source' => 'Tell Drupal where to store uploaded files and how they are accessed.',
  15583. 'version' => '6.38-dev',
  15584. ))
  15585. ->values(array(
  15586. 'lid' => '683',
  15587. 'location' => '/?q=fr/admin/settings/site-information',
  15588. 'textgroup' => 'default',
  15589. 'source' => 'File uploads',
  15590. 'version' => '6.38-dev',
  15591. ))
  15592. ->values(array(
  15593. 'lid' => '684',
  15594. 'location' => '/?q=fr/admin/settings/site-information',
  15595. 'textgroup' => 'default',
  15596. 'source' => 'Control how files may be attached to content.',
  15597. 'version' => '6.38-dev',
  15598. ))
  15599. ->values(array(
  15600. 'lid' => '685',
  15601. 'location' => '/?q=fr/admin/settings/site-information',
  15602. 'textgroup' => 'default',
  15603. 'source' => 'Image toolkit',
  15604. 'version' => '6.38-dev',
  15605. ))
  15606. ->values(array(
  15607. 'lid' => '686',
  15608. 'location' => '/?q=fr/admin/settings/site-information',
  15609. 'textgroup' => 'default',
  15610. 'source' => 'Choose which image toolkit to use if you have installed optional toolkits.',
  15611. 'version' => '6.38-dev',
  15612. ))
  15613. ->values(array(
  15614. 'lid' => '687',
  15615. 'location' => '/?q=fr/admin/settings/site-information',
  15616. 'textgroup' => 'default',
  15617. 'source' => 'Input formats',
  15618. 'version' => '6.38-dev',
  15619. ))
  15620. ->values(array(
  15621. 'lid' => '688',
  15622. 'location' => '/?q=fr/admin/settings/site-information',
  15623. 'textgroup' => 'default',
  15624. 'source' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
  15625. 'version' => '6.38-dev',
  15626. ))
  15627. ->values(array(
  15628. 'lid' => '689',
  15629. 'location' => '/?q=fr/admin/settings/site-information',
  15630. 'textgroup' => 'default',
  15631. 'source' => 'Logging and alerts',
  15632. 'version' => '6.38-dev',
  15633. ))
  15634. ->values(array(
  15635. 'lid' => '690',
  15636. 'location' => '/?q=fr/admin/settings/site-information',
  15637. 'textgroup' => 'default',
  15638. 'source' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.",
  15639. 'version' => '6.38-dev',
  15640. ))
  15641. ->values(array(
  15642. 'lid' => '691',
  15643. 'location' => '/?q=fr/admin/settings/site-information',
  15644. 'textgroup' => 'default',
  15645. 'source' => 'Performance',
  15646. 'version' => '6.38-dev',
  15647. ))
  15648. ->values(array(
  15649. 'lid' => '692',
  15650. 'location' => '/?q=fr/admin/settings/site-information',
  15651. 'textgroup' => 'default',
  15652. 'source' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
  15653. 'version' => '6.38-dev',
  15654. ))
  15655. ->values(array(
  15656. 'lid' => '693',
  15657. 'location' => '/?q=fr/admin/settings/site-information',
  15658. 'textgroup' => 'default',
  15659. 'source' => 'Site maintenance',
  15660. 'version' => '6.38-dev',
  15661. ))
  15662. ->values(array(
  15663. 'lid' => '694',
  15664. 'location' => '/?q=fr/admin/settings/site-information',
  15665. 'textgroup' => 'default',
  15666. 'source' => 'Take the site off-line for maintenance or bring it back online.',
  15667. 'version' => '6.38-dev',
  15668. ))
  15669. ->values(array(
  15670. 'lid' => '695',
  15671. 'location' => '/?q=fr/admin/settings/site-information',
  15672. 'textgroup' => 'default',
  15673. 'source' => 'Events',
  15674. 'version' => '6.38-dev',
  15675. ))
  15676. ->values(array(
  15677. 'lid' => '696',
  15678. 'location' => '/?q=fr/admin/settings/site-information',
  15679. 'textgroup' => 'default',
  15680. 'source' => 'Set up how your site handles events.',
  15681. 'version' => '6.38-dev',
  15682. ))
  15683. ->values(array(
  15684. 'lid' => '697',
  15685. 'location' => '/?q=fr/admin/settings/site-information',
  15686. 'textgroup' => 'default',
  15687. 'source' => 'CCK Email Contact Form Settings',
  15688. 'version' => '6.38-dev',
  15689. ))
  15690. ->values(array(
  15691. 'lid' => '698',
  15692. 'location' => '/?q=fr/admin/settings/site-information',
  15693. 'textgroup' => 'default',
  15694. 'source' => 'Administer flood control settings for email contact forms',
  15695. 'version' => '6.38-dev',
  15696. ))
  15697. ->values(array(
  15698. 'lid' => '699',
  15699. 'location' => '/?q=fr/admin/settings/site-information',
  15700. 'textgroup' => 'default',
  15701. 'source' => 'ImageAPI',
  15702. 'version' => '6.38-dev',
  15703. ))
  15704. ->values(array(
  15705. 'lid' => '700',
  15706. 'location' => '/?q=fr/admin/settings/site-information',
  15707. 'textgroup' => 'default',
  15708. 'source' => 'Configure ImageAPI.',
  15709. 'version' => '6.38-dev',
  15710. ))
  15711. ->values(array(
  15712. 'lid' => '701',
  15713. 'location' => '/?q=fr/admin/settings/site-information',
  15714. 'textgroup' => 'default',
  15715. 'source' => 'Languages',
  15716. 'version' => '6.38-dev',
  15717. ))
  15718. ->values(array(
  15719. 'lid' => '702',
  15720. 'location' => '/?q=fr/admin/settings/site-information',
  15721. 'textgroup' => 'default',
  15722. 'source' => 'Configure languages for content and the user interface.',
  15723. 'version' => '6.38-dev',
  15724. ))
  15725. ->values(array(
  15726. 'lid' => '703',
  15727. 'location' => '/?q=fr/admin/settings/site-information',
  15728. 'textgroup' => 'default',
  15729. 'source' => 'Variables',
  15730. 'version' => '6.38-dev',
  15731. ))
  15732. ->values(array(
  15733. 'lid' => '704',
  15734. 'location' => '/?q=fr/admin/settings/site-information',
  15735. 'textgroup' => 'default',
  15736. 'source' => 'Edit and delete site variables.',
  15737. 'version' => '6.38-dev',
  15738. ))
  15739. ->values(array(
  15740. 'lid' => '705',
  15741. 'location' => '/?q=fr/admin/settings/site-information',
  15742. 'textgroup' => 'default',
  15743. 'source' => 'User management',
  15744. 'version' => '6.38-dev',
  15745. ))
  15746. ->values(array(
  15747. 'lid' => '706',
  15748. 'location' => '/?q=fr/admin/settings/site-information',
  15749. 'textgroup' => 'default',
  15750. 'source' => "Manage your site's users, groups and access to site features.",
  15751. 'version' => '6.38-dev',
  15752. ))
  15753. ->values(array(
  15754. 'lid' => '707',
  15755. 'location' => '/?q=fr/admin/settings/site-information',
  15756. 'textgroup' => 'default',
  15757. 'source' => 'Contact',
  15758. 'version' => '6.38-dev',
  15759. ))
  15760. ->values(array(
  15761. 'lid' => '708',
  15762. 'location' => '/?q=fr/admin/settings/site-information',
  15763. 'textgroup' => 'default',
  15764. 'source' => 'Log out',
  15765. 'version' => '6.38-dev',
  15766. ))
  15767. ->values(array(
  15768. 'lid' => '709',
  15769. 'location' => '/?q=fr/admin/settings/site-information',
  15770. 'textgroup' => 'default',
  15771. 'source' => 'User account',
  15772. 'version' => '6.38-dev',
  15773. ))
  15774. ->values(array(
  15775. 'lid' => '710',
  15776. 'location' => '/?q=fr/admin/settings/site-information',
  15777. 'textgroup' => 'default',
  15778. 'source' => 'User list',
  15779. 'version' => '6.38-dev',
  15780. ))
  15781. ->values(array(
  15782. 'lid' => '711',
  15783. 'location' => '/?q=fr/admin/settings/site-information',
  15784. 'textgroup' => 'default',
  15785. 'source' => 'Autocomplete taxonomy',
  15786. 'version' => '6.38-dev',
  15787. ))
  15788. ->values(array(
  15789. 'lid' => '712',
  15790. 'location' => '/?q=fr/admin/settings/site-information',
  15791. 'textgroup' => 'default',
  15792. 'source' => 'Compose tips',
  15793. 'version' => '6.38-dev',
  15794. ))
  15795. ->values(array(
  15796. 'lid' => '713',
  15797. 'location' => '/?q=fr/admin/settings/site-information',
  15798. 'textgroup' => 'default',
  15799. 'source' => 'Create content',
  15800. 'version' => '6.38-dev',
  15801. ))
  15802. ->values(array(
  15803. 'lid' => '714',
  15804. 'location' => '/?q=fr/admin/settings/site-information',
  15805. 'textgroup' => 'default',
  15806. 'source' => 'Delete comment',
  15807. 'version' => '6.38-dev',
  15808. ))
  15809. ->values(array(
  15810. 'lid' => '715',
  15811. 'location' => '/?q=fr/admin/settings/site-information',
  15812. 'textgroup' => 'default',
  15813. 'source' => 'Edit comment',
  15814. 'version' => '6.38-dev',
  15815. ))
  15816. ->values(array(
  15817. 'lid' => '716',
  15818. 'location' => '/?q=fr/admin/settings/site-information',
  15819. 'textgroup' => 'default',
  15820. 'source' => 'File download',
  15821. 'version' => '6.38-dev',
  15822. ))
  15823. ->values(array(
  15824. 'lid' => '717',
  15825. 'location' => '/?q=fr/admin/settings/site-information',
  15826. 'textgroup' => 'default',
  15827. 'source' => 'User autocomplete',
  15828. 'version' => '6.38-dev',
  15829. ))
  15830. ->values(array(
  15831. 'lid' => '718',
  15832. 'location' => '/?q=fr/admin/settings/site-information',
  15833. 'textgroup' => 'default',
  15834. 'source' => 'User timezone',
  15835. 'version' => '6.38-dev',
  15836. ))
  15837. ->values(array(
  15838. 'lid' => '719',
  15839. 'location' => '/?q=fr/admin/settings/site-information',
  15840. 'textgroup' => 'default',
  15841. 'source' => 'My account',
  15842. 'version' => '6.38-dev',
  15843. ))
  15844. ->values(array(
  15845. 'lid' => '720',
  15846. 'location' => 'content_admin.inc:199',
  15847. 'textgroup' => 'default',
  15848. 'source' => 'Delete',
  15849. 'version' => '6.38-dev',
  15850. ))
  15851. ->values(array(
  15852. 'lid' => '721',
  15853. 'location' => '/?q=fr/admin/settings/site-information',
  15854. 'textgroup' => 'default',
  15855. 'source' => 'Feed aggregator',
  15856. 'version' => '6.38-dev',
  15857. ))
  15858. ->values(array(
  15859. 'lid' => '722',
  15860. 'location' => '/?q=fr/admin/settings/site-information',
  15861. 'textgroup' => 'default',
  15862. 'source' => 'Books',
  15863. 'version' => '6.38-dev',
  15864. ))
  15865. ->values(array(
  15866. 'lid' => '723',
  15867. 'location' => '/?q=fr/admin/settings/site-information',
  15868. 'textgroup' => 'default',
  15869. 'source' => 'Save string',
  15870. 'version' => '6.38-dev',
  15871. ))
  15872. ->values(array(
  15873. 'lid' => '724',
  15874. 'location' => '/?q=fr/admin/settings/site-information',
  15875. 'textgroup' => 'default',
  15876. 'source' => 'Node title autocomplete',
  15877. 'version' => '6.38-dev',
  15878. ))
  15879. ->values(array(
  15880. 'lid' => '725',
  15881. 'location' => '/?q=fr/admin/settings/site-information',
  15882. 'textgroup' => 'default',
  15883. 'source' => 'View user profile.',
  15884. 'version' => '6.38-dev',
  15885. ))
  15886. ->values(array(
  15887. 'lid' => '726',
  15888. 'location' => '/?q=fr/admin/settings/site-information',
  15889. 'textgroup' => 'default',
  15890. 'source' => "Who's new",
  15891. 'version' => '6.38-dev',
  15892. ))
  15893. ->values(array(
  15894. 'lid' => '727',
  15895. 'location' => '/?q=fr/admin/settings/site-information',
  15896. 'textgroup' => 'default',
  15897. 'source' => 'Powered by Drupal, an open source content management system',
  15898. 'version' => '6.38-dev',
  15899. ))
  15900. ->values(array(
  15901. 'lid' => '728',
  15902. 'location' => '/?q=fr/admin/settings/site-information',
  15903. 'textgroup' => 'default',
  15904. 'source' => 'Home',
  15905. 'version' => '6.38-dev',
  15906. ))
  15907. ->values(array(
  15908. 'lid' => '729',
  15909. 'location' => '/?q=fr/admin/settings/site-information',
  15910. 'textgroup' => 'default',
  15911. 'source' => 'The selected file %file could not be uploaded, because the destination %directory is not properly configured.',
  15912. 'version' => '6.38-dev',
  15913. ))
  15914. ->values(array(
  15915. 'lid' => '730',
  15916. 'location' => '/?q=fr/admin/settings/site-information',
  15917. 'textgroup' => 'default',
  15918. 'source' => 'French',
  15919. 'version' => '6.38-dev',
  15920. ))
  15921. ->values(array(
  15922. 'lid' => '731',
  15923. 'location' => '/?q=fr/admin/settings/site-information',
  15924. 'textgroup' => 'default',
  15925. 'source' => 'The configuration options have been saved.',
  15926. 'version' => '6.38-dev',
  15927. ))
  15928. ->values(array(
  15929. 'lid' => '732',
  15930. 'location' => '/?q=fr/admin/settings/site-information',
  15931. 'textgroup' => 'default',
  15932. 'source' => 'Long',
  15933. 'version' => '6.38-dev',
  15934. ))
  15935. ->values(array(
  15936. 'lid' => '733',
  15937. 'location' => '/?q=fr/admin/settings/site-information',
  15938. 'textgroup' => 'default',
  15939. 'source' => 'Medium',
  15940. 'version' => '6.38-dev',
  15941. ))
  15942. ->values(array(
  15943. 'lid' => '734',
  15944. 'location' => '/?q=fr/admin/settings/site-information',
  15945. 'textgroup' => 'default',
  15946. 'source' => 'Short',
  15947. 'version' => '6.38-dev',
  15948. ))
  15949. ->values(array(
  15950. 'lid' => '735',
  15951. 'location' => '/?q=fr/admin/settings/site-information',
  15952. 'textgroup' => 'default',
  15953. 'source' => 'The e-mail address %mail is not valid.',
  15954. 'version' => '6.38-dev',
  15955. ))
  15956. ->values(array(
  15957. 'lid' => '736',
  15958. 'location' => '/?q=fr/admin/settings/error-reporting',
  15959. 'textgroup' => 'default',
  15960. 'source' => 'Default 403 (access denied) page',
  15961. 'version' => '6.38-dev',
  15962. ))
  15963. ->values(array(
  15964. 'lid' => '737',
  15965. 'location' => '/?q=fr/admin/settings/error-reporting',
  15966. 'textgroup' => 'default',
  15967. 'source' => 'This page is displayed when the requested document is denied to the current user. If unsure, specify nothing.',
  15968. 'version' => '6.38-dev',
  15969. ))
  15970. ->values(array(
  15971. 'lid' => '738',
  15972. 'location' => '/?q=fr/admin/settings/error-reporting',
  15973. 'textgroup' => 'default',
  15974. 'source' => 'Default 404 (not found) page',
  15975. 'version' => '6.38-dev',
  15976. ))
  15977. ->values(array(
  15978. 'lid' => '739',
  15979. 'location' => '/?q=fr/admin/settings/error-reporting',
  15980. 'textgroup' => 'default',
  15981. 'source' => 'This page is displayed when no other content matches the requested document. If unsure, specify nothing.',
  15982. 'version' => '6.38-dev',
  15983. ))
  15984. ->values(array(
  15985. 'lid' => '740',
  15986. 'location' => '/?q=fr/admin/settings/error-reporting',
  15987. 'textgroup' => 'default',
  15988. 'source' => 'Write errors to the log',
  15989. 'version' => '6.38-dev',
  15990. ))
  15991. ->values(array(
  15992. 'lid' => '741',
  15993. 'location' => '/?q=fr/admin/settings/error-reporting',
  15994. 'textgroup' => 'default',
  15995. 'source' => 'Write errors to the log and to the screen',
  15996. 'version' => '6.38-dev',
  15997. ))
  15998. ->values(array(
  15999. 'lid' => '742',
  16000. 'location' => '/?q=fr/admin/settings/error-reporting',
  16001. 'textgroup' => 'default',
  16002. 'source' => 'Specify where Drupal, PHP and SQL errors are logged. While it is recommended that a site running in a production environment write errors to the log only, in a development or testing environment it may be helpful to write errors both to the log and to the screen.',
  16003. 'version' => '6.38-dev',
  16004. ))
  16005. ->values(array(
  16006. 'lid' => '743',
  16007. 'location' => '/?q=fr/admin/user',
  16008. 'textgroup' => 'default',
  16009. 'source' => 'Access rules',
  16010. 'version' => '6.38-dev',
  16011. ))
  16012. ->values(array(
  16013. 'lid' => '744',
  16014. 'location' => '/?q=fr/admin/user',
  16015. 'textgroup' => 'default',
  16016. 'source' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.',
  16017. 'version' => '6.38-dev',
  16018. ))
  16019. ->values(array(
  16020. 'lid' => '745',
  16021. 'location' => '/?q=fr/admin/user',
  16022. 'textgroup' => 'default',
  16023. 'source' => 'Permissions',
  16024. 'version' => '6.38-dev',
  16025. ))
  16026. ->values(array(
  16027. 'lid' => '746',
  16028. 'location' => '/?q=fr/admin/user',
  16029. 'textgroup' => 'default',
  16030. 'source' => 'Determine access to features by selecting permissions for roles.',
  16031. 'version' => '6.38-dev',
  16032. ))
  16033. ->values(array(
  16034. 'lid' => '747',
  16035. 'location' => '/?q=fr/admin/user',
  16036. 'textgroup' => 'default',
  16037. 'source' => 'Profiles',
  16038. 'version' => '6.38-dev',
  16039. ))
  16040. ->values(array(
  16041. 'lid' => '748',
  16042. 'location' => '/?q=fr/admin/user',
  16043. 'textgroup' => 'default',
  16044. 'source' => 'Create customizable fields for your users.',
  16045. 'version' => '6.38-dev',
  16046. ))
  16047. ->values(array(
  16048. 'lid' => '749',
  16049. 'location' => '/?q=fr/admin/user',
  16050. 'textgroup' => 'default',
  16051. 'source' => 'Roles',
  16052. 'version' => '6.38-dev',
  16053. ))
  16054. ->values(array(
  16055. 'lid' => '750',
  16056. 'location' => '/?q=fr/admin/user',
  16057. 'textgroup' => 'default',
  16058. 'source' => 'List, edit, or add user roles.',
  16059. 'version' => '6.38-dev',
  16060. ))
  16061. ->values(array(
  16062. 'lid' => '751',
  16063. 'location' => '/?q=fr/admin/user',
  16064. 'textgroup' => 'default',
  16065. 'source' => 'User settings',
  16066. 'version' => '6.38-dev',
  16067. ))
  16068. ->values(array(
  16069. 'lid' => '752',
  16070. 'location' => '/?q=fr/admin/user',
  16071. 'textgroup' => 'default',
  16072. 'source' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.',
  16073. 'version' => '6.38-dev',
  16074. ))
  16075. ->values(array(
  16076. 'lid' => '753',
  16077. 'location' => '/?q=fr/admin/user',
  16078. 'textgroup' => 'default',
  16079. 'source' => 'Users',
  16080. 'version' => '6.38-dev',
  16081. ))
  16082. ->values(array(
  16083. 'lid' => '754',
  16084. 'location' => '/?q=fr/admin/user',
  16085. 'textgroup' => 'default',
  16086. 'source' => 'List, add, and edit users.',
  16087. 'version' => '6.38-dev',
  16088. ))
  16089. ->values(array(
  16090. 'lid' => '755',
  16091. 'location' => '/?q=fr/admin/user/settings',
  16092. 'textgroup' => 'default',
  16093. 'source' => 'User registration settings',
  16094. 'version' => '6.38-dev',
  16095. ))
  16096. ->values(array(
  16097. 'lid' => '756',
  16098. 'location' => '/?q=fr/admin/user/settings',
  16099. 'textgroup' => 'default',
  16100. 'source' => 'Public registrations',
  16101. 'version' => '6.38-dev',
  16102. ))
  16103. ->values(array(
  16104. 'lid' => '757',
  16105. 'location' => '/?q=fr/admin/user/settings',
  16106. 'textgroup' => 'default',
  16107. 'source' => 'Only site administrators can create new user accounts.',
  16108. 'version' => '6.38-dev',
  16109. ))
  16110. ->values(array(
  16111. 'lid' => '758',
  16112. 'location' => '/?q=fr/admin/user/settings',
  16113. 'textgroup' => 'default',
  16114. 'source' => 'Visitors can create accounts and no administrator approval is required.',
  16115. 'version' => '6.38-dev',
  16116. ))
  16117. ->values(array(
  16118. 'lid' => '759',
  16119. 'location' => '/?q=fr/admin/user/settings',
  16120. 'textgroup' => 'default',
  16121. 'source' => 'Visitors can create accounts but administrator approval is required.',
  16122. 'version' => '6.38-dev',
  16123. ))
  16124. ->values(array(
  16125. 'lid' => '760',
  16126. 'location' => '/?q=fr/admin/user/settings',
  16127. 'textgroup' => 'default',
  16128. 'source' => 'Require e-mail verification when a visitor creates an account',
  16129. 'version' => '6.38-dev',
  16130. ))
  16131. ->values(array(
  16132. 'lid' => '761',
  16133. 'location' => '/?q=fr/admin/user/settings',
  16134. 'textgroup' => 'default',
  16135. 'source' => 'If this box is checked, new users will be required to validate their e-mail address prior to logging into the site, and will be assigned a system-generated password. With it unchecked, users will be logged in immediately upon registering, and may select their own passwords during registration.',
  16136. 'version' => '6.38-dev',
  16137. ))
  16138. ->values(array(
  16139. 'lid' => '762',
  16140. 'location' => '/?q=fr/admin/user/settings',
  16141. 'textgroup' => 'default',
  16142. 'source' => 'User registration guidelines',
  16143. 'version' => '6.38-dev',
  16144. ))
  16145. ->values(array(
  16146. 'lid' => '763',
  16147. 'location' => '/?q=fr/admin/user/settings',
  16148. 'textgroup' => 'default',
  16149. 'source' => 'This text is displayed at the top of the user registration form and is useful for helping or instructing your users.',
  16150. 'version' => '6.38-dev',
  16151. ))
  16152. ->values(array(
  16153. 'lid' => '764',
  16154. 'location' => '/?q=fr/admin/user/settings',
  16155. 'textgroup' => 'default',
  16156. 'source' => 'User e-mail settings',
  16157. 'version' => '6.38-dev',
  16158. ))
  16159. ->values(array(
  16160. 'lid' => '765',
  16161. 'location' => '/?q=fr/admin/user/settings',
  16162. 'textgroup' => 'default',
  16163. 'source' => 'Drupal sends emails whenever new users register on your site, and optionally, may also notify users after other account actions. Using a simple set of content templates, notification e-mails can be customized to fit the specific needs of your site.',
  16164. 'version' => '6.38-dev',
  16165. ))
  16166. ->values(array(
  16167. 'lid' => '766',
  16168. 'location' => '/?q=fr/admin/user/settings',
  16169. 'textgroup' => 'default',
  16170. 'source' => 'Available variables are:',
  16171. 'version' => '6.38-dev',
  16172. ))
  16173. ->values(array(
  16174. 'lid' => '767',
  16175. 'location' => '/?q=fr/admin/user/settings',
  16176. 'textgroup' => 'default',
  16177. 'source' => 'Welcome, new user created by administrator',
  16178. 'version' => '6.38-dev',
  16179. ))
  16180. ->values(array(
  16181. 'lid' => '768',
  16182. 'location' => '/?q=fr/admin/user/settings',
  16183. 'textgroup' => 'default',
  16184. 'source' => 'Customize welcome e-mail messages sent to new member accounts created by an administrator.',
  16185. 'version' => '6.38-dev',
  16186. ))
  16187. ->values(array(
  16188. 'lid' => '769',
  16189. 'location' => '/?q=fr/admin/user/settings',
  16190. 'textgroup' => 'default',
  16191. 'source' => 'Subject',
  16192. 'version' => '6.38-dev',
  16193. ))
  16194. ->values(array(
  16195. 'lid' => '770',
  16196. 'location' => '/?q=fr/admin/user/settings',
  16197. 'textgroup' => 'default',
  16198. 'source' => 'Body',
  16199. 'version' => '6.38-dev',
  16200. ))
  16201. ->values(array(
  16202. 'lid' => '771',
  16203. 'location' => '/?q=fr/admin/user/settings',
  16204. 'textgroup' => 'default',
  16205. 'source' => 'Welcome, no approval required',
  16206. 'version' => '6.38-dev',
  16207. ))
  16208. ->values(array(
  16209. 'lid' => '772',
  16210. 'location' => '/?q=fr/admin/user/settings',
  16211. 'textgroup' => 'default',
  16212. 'source' => 'Customize welcome e-mail messages sent to new members upon registering, when no administrator approval is required.',
  16213. 'version' => '6.38-dev',
  16214. ))
  16215. ->values(array(
  16216. 'lid' => '773',
  16217. 'location' => '/?q=fr/admin/user/settings',
  16218. 'textgroup' => 'default',
  16219. 'source' => 'Welcome, awaiting administrator approval',
  16220. 'version' => '6.38-dev',
  16221. ))
  16222. ->values(array(
  16223. 'lid' => '774',
  16224. 'location' => '/?q=fr/admin/user/settings',
  16225. 'textgroup' => 'default',
  16226. 'source' => 'Customize welcome e-mail messages sent to new members upon registering, when administrative approval is required.',
  16227. 'version' => '6.38-dev',
  16228. ))
  16229. ->values(array(
  16230. 'lid' => '775',
  16231. 'location' => '/?q=fr/admin/user/settings',
  16232. 'textgroup' => 'default',
  16233. 'source' => 'Password recovery email',
  16234. 'version' => '6.38-dev',
  16235. ))
  16236. ->values(array(
  16237. 'lid' => '776',
  16238. 'location' => '/?q=fr/admin/user/settings',
  16239. 'textgroup' => 'default',
  16240. 'source' => 'Customize e-mail messages sent to users who request a new password.',
  16241. 'version' => '6.38-dev',
  16242. ))
  16243. ->values(array(
  16244. 'lid' => '777',
  16245. 'location' => '/?q=fr/admin/user/settings',
  16246. 'textgroup' => 'default',
  16247. 'source' => 'Account activation email',
  16248. 'version' => '6.38-dev',
  16249. ))
  16250. ->values(array(
  16251. 'lid' => '778',
  16252. 'location' => '/?q=fr/admin/user/settings',
  16253. 'textgroup' => 'default',
  16254. 'source' => 'Enable and customize e-mail messages sent to users upon account activation (when an administrator activates an account of a user who has already registered, on a site where administrative approval is required).',
  16255. 'version' => '6.38-dev',
  16256. ))
  16257. ->values(array(
  16258. 'lid' => '779',
  16259. 'location' => '/?q=fr/admin/user/settings',
  16260. 'textgroup' => 'default',
  16261. 'source' => 'Notify user when account is activated.',
  16262. 'version' => '6.38-dev',
  16263. ))
  16264. ->values(array(
  16265. 'lid' => '780',
  16266. 'location' => '/?q=fr/admin/user/settings',
  16267. 'textgroup' => 'default',
  16268. 'source' => 'Account blocked email',
  16269. 'version' => '6.38-dev',
  16270. ))
  16271. ->values(array(
  16272. 'lid' => '781',
  16273. 'location' => '/?q=fr/admin/user/settings',
  16274. 'textgroup' => 'default',
  16275. 'source' => 'Enable and customize e-mail messages sent to users when their accounts are blocked.',
  16276. 'version' => '6.38-dev',
  16277. ))
  16278. ->values(array(
  16279. 'lid' => '782',
  16280. 'location' => '/?q=fr/admin/user/settings',
  16281. 'textgroup' => 'default',
  16282. 'source' => 'Notify user when account is blocked.',
  16283. 'version' => '6.38-dev',
  16284. ))
  16285. ->values(array(
  16286. 'lid' => '783',
  16287. 'location' => '/?q=fr/admin/user/settings',
  16288. 'textgroup' => 'default',
  16289. 'source' => 'Account deleted email',
  16290. 'version' => '6.38-dev',
  16291. ))
  16292. ->values(array(
  16293. 'lid' => '784',
  16294. 'location' => '/?q=fr/admin/user/settings',
  16295. 'textgroup' => 'default',
  16296. 'source' => 'Enable and customize e-mail messages sent to users when their accounts are deleted.',
  16297. 'version' => '6.38-dev',
  16298. ))
  16299. ->values(array(
  16300. 'lid' => '785',
  16301. 'location' => '/?q=fr/admin/user/settings',
  16302. 'textgroup' => 'default',
  16303. 'source' => 'Notify user when account is deleted.',
  16304. 'version' => '6.38-dev',
  16305. ))
  16306. ->values(array(
  16307. 'lid' => '786',
  16308. 'location' => '/?q=fr/admin/user/settings',
  16309. 'textgroup' => 'default',
  16310. 'source' => 'Signatures',
  16311. 'version' => '6.38-dev',
  16312. ))
  16313. ->values(array(
  16314. 'lid' => '787',
  16315. 'location' => '/?q=fr/admin/user/settings',
  16316. 'textgroup' => 'default',
  16317. 'source' => 'Signature support',
  16318. 'version' => '6.38-dev',
  16319. ))
  16320. ->values(array(
  16321. 'lid' => '788',
  16322. 'location' => '/?q=fr/admin/user/settings',
  16323. 'textgroup' => 'default',
  16324. 'source' => 'Disabled',
  16325. 'version' => '6.38-dev',
  16326. ))
  16327. ->values(array(
  16328. 'lid' => '789',
  16329. 'location' => '/?q=fr/admin/user/settings',
  16330. 'textgroup' => 'default',
  16331. 'source' => 'Enabled',
  16332. 'version' => '6.38-dev',
  16333. ))
  16334. ->values(array(
  16335. 'lid' => '790',
  16336. 'location' => '/?q=fr/admin/user/settings',
  16337. 'textgroup' => 'default',
  16338. 'source' => 'Pictures',
  16339. 'version' => '6.38-dev',
  16340. ))
  16341. ->values(array(
  16342. 'lid' => '791',
  16343. 'location' => '/?q=fr/admin/user/settings',
  16344. 'textgroup' => 'default',
  16345. 'source' => 'Picture support',
  16346. 'version' => '6.38-dev',
  16347. ))
  16348. ->values(array(
  16349. 'lid' => '792',
  16350. 'location' => '/?q=fr/admin/user/settings',
  16351. 'textgroup' => 'default',
  16352. 'source' => 'Picture image path',
  16353. 'version' => '6.38-dev',
  16354. ))
  16355. ->values(array(
  16356. 'lid' => '793',
  16357. 'location' => '/?q=fr/admin/user/settings',
  16358. 'textgroup' => 'default',
  16359. 'source' => 'Subdirectory in the directory %dir where pictures will be stored.',
  16360. 'version' => '6.38-dev',
  16361. ))
  16362. ->values(array(
  16363. 'lid' => '794',
  16364. 'location' => '/?q=fr/admin/user/settings',
  16365. 'textgroup' => 'default',
  16366. 'source' => 'Default picture',
  16367. 'version' => '6.38-dev',
  16368. ))
  16369. ->values(array(
  16370. 'lid' => '795',
  16371. 'location' => '/?q=fr/admin/user/settings',
  16372. 'textgroup' => 'default',
  16373. 'source' => 'URL of picture to display for users with no custom picture selected. Leave blank for none.',
  16374. 'version' => '6.38-dev',
  16375. ))
  16376. ->values(array(
  16377. 'lid' => '796',
  16378. 'location' => '/?q=fr/admin/user/settings',
  16379. 'textgroup' => 'default',
  16380. 'source' => 'Picture maximum dimensions',
  16381. 'version' => '6.38-dev',
  16382. ))
  16383. ->values(array(
  16384. 'lid' => '797',
  16385. 'location' => '/?q=fr/admin/user/settings',
  16386. 'textgroup' => 'default',
  16387. 'source' => 'Maximum dimensions for pictures, in pixels.',
  16388. 'version' => '6.38-dev',
  16389. ))
  16390. ->values(array(
  16391. 'lid' => '798',
  16392. 'location' => '/?q=fr/admin/user/settings',
  16393. 'textgroup' => 'default',
  16394. 'source' => 'Picture maximum file size',
  16395. 'version' => '6.38-dev',
  16396. ))
  16397. ->values(array(
  16398. 'lid' => '799',
  16399. 'location' => '/?q=fr/admin/user/settings',
  16400. 'textgroup' => 'default',
  16401. 'source' => 'Maximum file size for pictures, in kB.',
  16402. 'version' => '6.38-dev',
  16403. ))
  16404. ->values(array(
  16405. 'lid' => '800',
  16406. 'location' => '/?q=fr/admin/user/settings',
  16407. 'textgroup' => 'default',
  16408. 'source' => 'Picture guidelines',
  16409. 'version' => '6.38-dev',
  16410. ))
  16411. ->values(array(
  16412. 'lid' => '801',
  16413. 'location' => '/?q=fr/admin/user/settings',
  16414. 'textgroup' => 'default',
  16415. 'source' => "This text is displayed at the picture upload form in addition to the default guidelines. It's useful for helping or instructing your users.",
  16416. 'version' => '6.38-dev',
  16417. ))
  16418. ->values(array(
  16419. 'lid' => '802',
  16420. 'location' => '/?q=fr/admin/settings/performance',
  16421. 'textgroup' => 'default',
  16422. 'source' => 'The normal cache mode is suitable for most sites and does not cause any side effects. The aggressive cache mode causes Drupal to skip the loading (boot) and unloading (exit) of enabled modules when serving a cached page. This results in an additional performance boost but can cause unwanted side effects.',
  16423. 'version' => '6.38-dev',
  16424. ))
  16425. ->values(array(
  16426. 'lid' => '803',
  16427. 'location' => '/?q=fr/admin/settings/performance',
  16428. 'textgroup' => 'default',
  16429. 'source' => '<strong class="error">The following enabled modules are incompatible with aggressive mode caching and will not function properly: %modules</strong>',
  16430. 'version' => '6.38-dev',
  16431. ))
  16432. ->values(array(
  16433. 'lid' => '804',
  16434. 'location' => '/?q=fr/admin/settings/performance',
  16435. 'textgroup' => 'default',
  16436. 'source' => 'Page cache',
  16437. 'version' => '6.38-dev',
  16438. ))
  16439. ->values(array(
  16440. 'lid' => '805',
  16441. 'location' => '/?q=fr/admin/settings/performance',
  16442. 'textgroup' => 'default',
  16443. 'source' => 'Enabling the page cache will offer a significant performance boost. Drupal can store and send compressed cached pages requested by <em>anonymous</em> users. By caching a web page, Drupal does not have to construct the page each time it is viewed.',
  16444. 'version' => '6.38-dev',
  16445. ))
  16446. ->values(array(
  16447. 'lid' => '806',
  16448. 'location' => '/?q=fr/admin/settings/performance',
  16449. 'textgroup' => 'default',
  16450. 'source' => 'Caching mode',
  16451. 'version' => '6.38-dev',
  16452. ))
  16453. ->values(array(
  16454. 'lid' => '807',
  16455. 'location' => '/?q=fr/admin/settings/performance',
  16456. 'textgroup' => 'default',
  16457. 'source' => 'Normal (recommended for production sites, no side effects)',
  16458. 'version' => '6.38-dev',
  16459. ))
  16460. ->values(array(
  16461. 'lid' => '808',
  16462. 'location' => '/?q=fr/admin/settings/performance',
  16463. 'textgroup' => 'default',
  16464. 'source' => 'Aggressive (experts only, possible side effects)',
  16465. 'version' => '6.38-dev',
  16466. ))
  16467. ->values(array(
  16468. 'lid' => '809',
  16469. 'location' => '/?q=fr/admin/settings/performance',
  16470. 'textgroup' => 'default',
  16471. 'source' => '0 sec',
  16472. 'version' => '6.38-dev',
  16473. ))
  16474. ->values(array(
  16475. 'lid' => '810',
  16476. 'location' => '/?q=fr/admin/settings/performance',
  16477. 'textgroup' => 'default',
  16478. 'source' => '1 min',
  16479. 'version' => '6.38-dev',
  16480. ))
  16481. ->values(array(
  16482. 'lid' => '811',
  16483. 'location' => '/?q=fr/admin/settings/performance',
  16484. 'textgroup' => 'default',
  16485. 'source' => '@count min',
  16486. 'version' => '6.38-dev',
  16487. ))
  16488. ->values(array(
  16489. 'lid' => '812',
  16490. 'location' => '/?q=fr/admin/settings/performance',
  16491. 'textgroup' => 'default',
  16492. 'source' => '1 hour',
  16493. 'version' => '6.38-dev',
  16494. ))
  16495. ->values(array(
  16496. 'lid' => '813',
  16497. 'location' => '/?q=fr/admin/settings/performance',
  16498. 'textgroup' => 'default',
  16499. 'source' => '@count hours',
  16500. 'version' => '6.38-dev',
  16501. ))
  16502. ->values(array(
  16503. 'lid' => '814',
  16504. 'location' => '/?q=fr/admin/settings/performance',
  16505. 'textgroup' => 'default',
  16506. 'source' => '1 day',
  16507. 'version' => '6.38-dev',
  16508. ))
  16509. ->values(array(
  16510. 'lid' => '815',
  16511. 'location' => '/?q=fr/admin/settings/performance',
  16512. 'textgroup' => 'default',
  16513. 'source' => 'Minimum cache lifetime',
  16514. 'version' => '6.38-dev',
  16515. ))
  16516. ->values(array(
  16517. 'lid' => '816',
  16518. 'location' => '/?q=fr/admin/settings/performance',
  16519. 'textgroup' => 'default',
  16520. 'source' => 'On high-traffic sites, it may be necessary to enforce a minimum cache lifetime. The minimum cache lifetime is the minimum amount of time that will elapse before the cache is emptied and recreated, and is applied to both page and block caches. A larger minimum cache lifetime offers better performance, but users will not see new content for a longer period of time.',
  16521. 'version' => '6.38-dev',
  16522. ))
  16523. ->values(array(
  16524. 'lid' => '817',
  16525. 'location' => '/?q=fr/admin/settings/performance',
  16526. 'textgroup' => 'default',
  16527. 'source' => 'Page compression',
  16528. 'version' => '6.38-dev',
  16529. ))
  16530. ->values(array(
  16531. 'lid' => '818',
  16532. 'location' => '/?q=fr/admin/settings/performance',
  16533. 'textgroup' => 'default',
  16534. 'source' => 'By default, Drupal compresses the pages it caches in order to save bandwidth and improve download times. This option should be disabled when using a webserver that performs compression.',
  16535. 'version' => '6.38-dev',
  16536. ))
  16537. ->values(array(
  16538. 'lid' => '819',
  16539. 'location' => '/?q=fr/admin/settings/performance',
  16540. 'textgroup' => 'default',
  16541. 'source' => 'Block cache',
  16542. 'version' => '6.38-dev',
  16543. ))
  16544. ->values(array(
  16545. 'lid' => '820',
  16546. 'location' => '/?q=fr/admin/settings/performance',
  16547. 'textgroup' => 'default',
  16548. 'source' => 'Enabling the block cache can offer a performance increase for all users by preventing blocks from being reconstructed on each page load. If the page cache is also enabled, performance increases from enabling the block cache will mainly benefit authenticated users.',
  16549. 'version' => '6.38-dev',
  16550. ))
  16551. ->values(array(
  16552. 'lid' => '821',
  16553. 'location' => '/?q=fr/admin/settings/performance',
  16554. 'textgroup' => 'default',
  16555. 'source' => 'Enabled (recommended)',
  16556. 'version' => '6.38-dev',
  16557. ))
  16558. ->values(array(
  16559. 'lid' => '822',
  16560. 'location' => '/?q=fr/admin/settings/performance',
  16561. 'textgroup' => 'default',
  16562. 'source' => 'Note that block caching is inactive when modules defining content access restrictions are enabled.',
  16563. 'version' => '6.38-dev',
  16564. ))
  16565. ->values(array(
  16566. 'lid' => '823',
  16567. 'location' => '/?q=fr/admin/settings/performance',
  16568. 'textgroup' => 'default',
  16569. 'source' => 'Bandwidth optimizations',
  16570. 'version' => '6.38-dev',
  16571. ))
  16572. ->values(array(
  16573. 'lid' => '824',
  16574. 'location' => '/?q=fr/admin/settings/performance',
  16575. 'textgroup' => 'default',
  16576. 'source' => '<p>Drupal can automatically optimize external resources like CSS and JavaScript, which can reduce both the size and number of requests made to your website. CSS files can be aggregated and compressed into a single file, while JavaScript files are aggregated (but not compressed). These optional optimizations may reduce server load, bandwidth requirements, and page loading times.</p><p>These options are disabled if you have not set up your files directory, or if your download method is set to private.</p>',
  16577. 'version' => '6.38-dev',
  16578. ))
  16579. ->values(array(
  16580. 'lid' => '825',
  16581. 'location' => '/?q=fr/admin/settings/performance',
  16582. 'textgroup' => 'default',
  16583. 'source' => 'Optimize CSS files',
  16584. 'version' => '6.38-dev',
  16585. ))
  16586. ->values(array(
  16587. 'lid' => '826',
  16588. 'location' => '/?q=fr/admin/settings/performance',
  16589. 'textgroup' => 'default',
  16590. 'source' => 'This option can interfere with theme development and should only be enabled in a production environment.',
  16591. 'version' => '6.38-dev',
  16592. ))
  16593. ->values(array(
  16594. 'lid' => '827',
  16595. 'location' => '/?q=fr/admin/settings/performance',
  16596. 'textgroup' => 'default',
  16597. 'source' => 'Optimize JavaScript files',
  16598. 'version' => '6.38-dev',
  16599. ))
  16600. ->values(array(
  16601. 'lid' => '828',
  16602. 'location' => '/?q=fr/admin/settings/performance',
  16603. 'textgroup' => 'default',
  16604. 'source' => 'This option can interfere with module development and should only be enabled in a production environment.',
  16605. 'version' => '6.38-dev',
  16606. ))
  16607. ->values(array(
  16608. 'lid' => '829',
  16609. 'location' => '/?q=fr/admin/settings/performance',
  16610. 'textgroup' => 'default',
  16611. 'source' => 'Clear cached data',
  16612. 'version' => '6.38-dev',
  16613. ))
  16614. ->values(array(
  16615. 'lid' => '830',
  16616. 'location' => '/?q=fr/admin/settings/performance',
  16617. 'textgroup' => 'default',
  16618. 'source' => 'Caching data improves performance, but may cause problems while troubleshooting new modules, themes, or translations, if outdated information has been cached. To refresh all cached data on your site, click the button below. <em>Warning: high-traffic sites will experience performance slowdowns while cached data is rebuilt.</em>',
  16619. 'version' => '6.38-dev',
  16620. ))
  16621. ->values(array(
  16622. 'lid' => '831',
  16623. 'location' => '/?q=fr/admin/settings/site-maintenance',
  16624. 'textgroup' => 'default',
  16625. 'source' => 'Site status',
  16626. 'version' => '6.38-dev',
  16627. ))
  16628. ->values(array(
  16629. 'lid' => '832',
  16630. 'location' => '/?q=fr/admin/settings/site-maintenance',
  16631. 'textgroup' => 'default',
  16632. 'source' => 'Online',
  16633. 'version' => '6.38-dev',
  16634. ))
  16635. ->values(array(
  16636. 'lid' => '833',
  16637. 'location' => '/?q=fr/admin/settings/site-maintenance',
  16638. 'textgroup' => 'default',
  16639. 'source' => 'Off-line',
  16640. 'version' => '6.38-dev',
  16641. ))
  16642. ->values(array(
  16643. 'lid' => '834',
  16644. 'location' => '/?q=fr/admin/settings/site-maintenance',
  16645. 'textgroup' => 'default',
  16646. 'source' => 'When set to "Online", all visitors will be able to browse your site normally. When set to "Off-line", only users with the "administer site configuration" permission will be able to access your site to perform maintenance; all other visitors will see the site off-line message configured below. Authorized users can log in during "Off-line" mode directly via the <a href="@user-login">user login</a> page.',
  16647. 'version' => '6.38-dev',
  16648. ))
  16649. ->values(array(
  16650. 'lid' => '835',
  16651. 'location' => '/?q=fr/admin/settings/site-maintenance',
  16652. 'textgroup' => 'default',
  16653. 'source' => 'Site off-line message',
  16654. 'version' => '6.38-dev',
  16655. ))
  16656. ->values(array(
  16657. 'lid' => '836',
  16658. 'location' => '/?q=fr/admin/settings/site-maintenance',
  16659. 'textgroup' => 'default',
  16660. 'source' => '@site is currently under maintenance. We should be back shortly. Thank you for your patience.',
  16661. 'version' => '6.38-dev',
  16662. ))
  16663. ->values(array(
  16664. 'lid' => '837',
  16665. 'location' => '/?q=fr/admin/settings/site-maintenance',
  16666. 'textgroup' => 'default',
  16667. 'source' => 'Message to show visitors when the site is in off-line mode.',
  16668. 'version' => '6.38-dev',
  16669. ))
  16670. ->values(array(
  16671. 'lid' => '838',
  16672. 'location' => '/?q=fr/admin/settings/language',
  16673. 'textgroup' => 'default',
  16674. 'source' => 'Left to right',
  16675. 'version' => '6.38-dev',
  16676. ))
  16677. ->values(array(
  16678. 'lid' => '839',
  16679. 'location' => '/?q=fr/admin/settings/language',
  16680. 'textgroup' => 'default',
  16681. 'source' => 'English name',
  16682. 'version' => '6.38-dev',
  16683. ))
  16684. ->values(array(
  16685. 'lid' => '840',
  16686. 'location' => '/?q=fr/admin/settings/language',
  16687. 'textgroup' => 'default',
  16688. 'source' => 'Native name',
  16689. 'version' => '6.38-dev',
  16690. ))
  16691. ->values(array(
  16692. 'lid' => '841',
  16693. 'location' => '/?q=fr/admin/settings/language',
  16694. 'textgroup' => 'default',
  16695. 'source' => 'Direction',
  16696. 'version' => '6.38-dev',
  16697. ))
  16698. ->values(array(
  16699. 'lid' => '842',
  16700. 'location' => '/?q=fr/admin/settings/language',
  16701. 'textgroup' => 'default',
  16702. 'source' => 'Language negotiation',
  16703. 'version' => '6.38-dev',
  16704. ))
  16705. ->values(array(
  16706. 'lid' => '843',
  16707. 'location' => '/?q=fr/admin/settings/language',
  16708. 'textgroup' => 'default',
  16709. 'source' => 'List',
  16710. 'version' => '6.38-dev',
  16711. ))
  16712. ->values(array(
  16713. 'lid' => '844',
  16714. 'location' => '/?q=fr/admin/settings/language',
  16715. 'textgroup' => 'default',
  16716. 'source' => 'Options',
  16717. 'version' => '6.38-dev',
  16718. ))
  16719. ->values(array(
  16720. 'lid' => '845',
  16721. 'location' => '/?q=fr/admin/settings/language',
  16722. 'textgroup' => 'default',
  16723. 'source' => 'Configure extended options for multilingual content and translations.',
  16724. 'version' => '6.38-dev',
  16725. ))
  16726. ->values(array(
  16727. 'lid' => '846',
  16728. 'location' => '/?q=fr/admin/settings/language',
  16729. 'textgroup' => 'default',
  16730. 'source' => 'Multilingual variables.',
  16731. 'version' => '6.38-dev',
  16732. ))
  16733. ->values(array(
  16734. 'lid' => '847',
  16735. 'location' => '/?q=fr/admin/settings/language',
  16736. 'textgroup' => 'default',
  16737. 'source' => 'Add language',
  16738. 'version' => '6.38-dev',
  16739. ))
  16740. ->values(array(
  16741. 'lid' => '848',
  16742. 'location' => '/?q=fr/admin/settings/language',
  16743. 'textgroup' => 'default',
  16744. 'source' => 'Multilingual system',
  16745. 'version' => '6.38-dev',
  16746. ))
  16747. ->values(array(
  16748. 'lid' => '849',
  16749. 'location' => '/?q=fr/admin/settings/language',
  16750. 'textgroup' => 'default',
  16751. 'source' => 'String translation',
  16752. 'version' => '6.38-dev',
  16753. ))
  16754. ->values(array(
  16755. 'lid' => '850',
  16756. 'location' => '/?q=fr/admin/settings/language',
  16757. 'textgroup' => 'default',
  16758. 'source' => "This page provides an overview of your site's enabled languages. If multiple languages are available and enabled, the text on your site interface may be translated, registered users may select their preferred language on the <em>My account</em> page, and site authors may indicate a specific language when creating posts. The site's default language is used for anonymous visitors and for users who have not selected a preferred language.",
  16759. 'version' => '6.38-dev',
  16760. ))
  16761. ->values(array(
  16762. 'lid' => '851',
  16763. 'location' => '/?q=fr/admin/settings/language',
  16764. 'textgroup' => 'default',
  16765. 'source' => 'For each language available on the site, use the <em>edit</em> link to configure language details, including name, an optional language-specific path or domain, and whether the language is natively presented either left-to-right or right-to-left. These languages also appear in the <em>Language</em> selection when creating a post of a content type with multilingual support.',
  16766. 'version' => '6.38-dev',
  16767. ))
  16768. ->values(array(
  16769. 'lid' => '852',
  16770. 'location' => '/?q=fr/admin/settings/language',
  16771. 'textgroup' => 'default',
  16772. 'source' => 'Use the <a href="@add-language">add language page</a> to enable additional languages (and automatically import files from a translation package, if available), the <a href="@search">translate interface page</a> to locate strings for manual translation, or the <a href="@import">import page</a> to add translations from individual <em>.po</em> files. A number of contributed translation packages containing <em>.po</em> files are available on the <a href="@translations">Drupal.org translations page</a>.',
  16773. 'version' => '6.38-dev',
  16774. ))
  16775. ->values(array(
  16776. 'lid' => '853',
  16777. 'location' => '/?q=fr/admin/settings/language',
  16778. 'textgroup' => 'default',
  16779. 'source' => '<strong>Warning</strong>: Changing the default language may have unwanted effects on string translations. Read more about <a href="@i18nstrings-help">String translation</a>',
  16780. 'version' => '6.38-dev',
  16781. ))
  16782. ->values(array(
  16783. 'lid' => '854',
  16784. 'location' => '/?q=fr/admin/settings/filters',
  16785. 'textgroup' => 'default',
  16786. 'source' => 'anonymous user',
  16787. 'version' => '6.38-dev',
  16788. ))
  16789. ->values(array(
  16790. 'lid' => '855',
  16791. 'location' => '/?q=fr/admin/settings/filters',
  16792. 'textgroup' => 'default',
  16793. 'source' => 'authenticated user',
  16794. 'version' => '6.38-dev',
  16795. ))
  16796. ->values(array(
  16797. 'lid' => '856',
  16798. 'location' => '/?q=fr/admin/settings/filters',
  16799. 'textgroup' => 'default',
  16800. 'source' => 'All roles may use default format',
  16801. 'version' => '6.38-dev',
  16802. ))
  16803. ->values(array(
  16804. 'lid' => '857',
  16805. 'location' => 'content_admin.inc:250',
  16806. 'textgroup' => 'default',
  16807. 'source' => 'configure',
  16808. 'version' => '6.38-dev',
  16809. ))
  16810. ->values(array(
  16811. 'lid' => '858',
  16812. 'location' => '/?q=fr/admin/settings/filters',
  16813. 'textgroup' => 'default',
  16814. 'source' => 'No roles may use this format',
  16815. 'version' => '6.38-dev',
  16816. ))
  16817. ->values(array(
  16818. 'lid' => '859',
  16819. 'location' => '/?q=fr/admin/settings/filters',
  16820. 'textgroup' => 'default',
  16821. 'source' => 'Set default format',
  16822. 'version' => '6.38-dev',
  16823. ))
  16824. ->values(array(
  16825. 'lid' => '860',
  16826. 'location' => '/?q=fr/admin/settings/filters',
  16827. 'textgroup' => 'default',
  16828. 'source' => 'Delete input format',
  16829. 'version' => '6.38-dev',
  16830. ))
  16831. ->values(array(
  16832. 'lid' => '861',
  16833. 'location' => '/?q=fr/admin/settings/filters',
  16834. 'textgroup' => 'default',
  16835. 'source' => 'Add input format',
  16836. 'version' => '6.38-dev',
  16837. ))
  16838. ->values(array(
  16839. 'lid' => '862',
  16840. 'location' => '/?q=fr/admin/settings/filters',
  16841. 'textgroup' => 'default',
  16842. 'source' => '<em>Input formats</em> define a way of processing user-supplied text in Drupal. Each input format uses filters to manipulate text, and most input formats apply several different filters to text, in a specific order. Each filter is designed to accomplish a specific purpose, and generally either removes elements from or adds elements to text before it is displayed. Users can choose between the available input formats when submitting content.',
  16843. 'version' => '6.38-dev',
  16844. ))
  16845. ->values(array(
  16846. 'lid' => '863',
  16847. 'location' => '/?q=fr/admin/settings/filters',
  16848. 'textgroup' => 'default',
  16849. 'source' => 'Use the list below to configure which input formats are available to which roles, as well as choose a default input format (used for imported content, for example). The default format is always available to users. All input formats are available to users in a role with the "administer filters" permission.',
  16850. 'version' => '6.38-dev',
  16851. ))
  16852. ->values(array(
  16853. 'lid' => '864',
  16854. 'location' => '/?q=fr/admin/settings/filters',
  16855. 'textgroup' => 'default',
  16856. 'source' => 'After updating your Input formats do not forget to review the list of formats allowed for string translations on the <a href="@configure-strings">configure translatable strings</a> page.',
  16857. 'version' => '6.38-dev',
  16858. ))
  16859. ->values(array(
  16860. 'lid' => '865',
  16861. 'location' => '/?q=fr/admin/settings/imageapi',
  16862. 'textgroup' => 'default',
  16863. 'source' => 'There are no image toolkit modules enabled. Toolkit modules can be enabled from the <a href="!admin-build-modules">module configuration page</a>.',
  16864. 'version' => '6.38-dev',
  16865. ))
  16866. ->values(array(
  16867. 'lid' => '866',
  16868. 'location' => '/?q=fr/admin/settings/image-toolkit',
  16869. 'textgroup' => 'default',
  16870. 'source' => 'GD2 image manipulation toolkit',
  16871. 'version' => '6.38-dev',
  16872. ))
  16873. ->values(array(
  16874. 'lid' => '867',
  16875. 'location' => '/?q=fr/admin/settings/image-toolkit',
  16876. 'textgroup' => 'default',
  16877. 'source' => 'The GD toolkit is installed and working properly.',
  16878. 'version' => '6.38-dev',
  16879. ))
  16880. ->values(array(
  16881. 'lid' => '868',
  16882. 'location' => '/?q=fr/admin/settings/image-toolkit',
  16883. 'textgroup' => 'default',
  16884. 'source' => 'JPEG quality',
  16885. 'version' => '6.38-dev',
  16886. ))
  16887. ->values(array(
  16888. 'lid' => '869',
  16889. 'location' => '/?q=fr/admin/settings/image-toolkit',
  16890. 'textgroup' => 'default',
  16891. 'source' => 'Define the image quality for JPEG manipulations. Ranges from 0 to 100. Higher values mean better image quality but bigger files.',
  16892. 'version' => '6.38-dev',
  16893. ))
  16894. ->values(array(
  16895. 'lid' => '870',
  16896. 'location' => '/?q=fr/admin/settings/image-toolkit',
  16897. 'textgroup' => 'default',
  16898. 'source' => '%',
  16899. 'version' => '6.38-dev',
  16900. ))
  16901. ->values(array(
  16902. 'lid' => '871',
  16903. 'location' => '/?q=fr/admin/settings/uploads',
  16904. 'textgroup' => 'default',
  16905. 'source' => 'General settings',
  16906. 'version' => '6.38-dev',
  16907. ))
  16908. ->values(array(
  16909. 'lid' => '872',
  16910. 'location' => '/?q=fr/admin/settings/uploads',
  16911. 'textgroup' => 'default',
  16912. 'source' => 'Maximum resolution for uploaded images',
  16913. 'version' => '6.38-dev',
  16914. ))
  16915. ->values(array(
  16916. 'lid' => '873',
  16917. 'location' => '/?q=fr/admin/settings/uploads',
  16918. 'textgroup' => 'default',
  16919. 'source' => 'The maximum allowed image size (e.g. 640x480). Set to 0 for no restriction. If an <a href="!image-toolkit-link">image toolkit</a> is installed, files exceeding this value will be scaled down to fit.',
  16920. 'version' => '6.38-dev',
  16921. ))
  16922. ->values(array(
  16923. 'lid' => '874',
  16924. 'location' => '/?q=fr/admin/settings/uploads',
  16925. 'textgroup' => 'default',
  16926. 'source' => 'WIDTHxHEIGHT',
  16927. 'version' => '6.38-dev',
  16928. ))
  16929. ->values(array(
  16930. 'lid' => '875',
  16931. 'location' => '/?q=fr/admin/settings/uploads',
  16932. 'textgroup' => 'default',
  16933. 'source' => 'List files by default',
  16934. 'version' => '6.38-dev',
  16935. ))
  16936. ->values(array(
  16937. 'lid' => '876',
  16938. 'location' => '/?q=fr/admin/settings/uploads',
  16939. 'textgroup' => 'default',
  16940. 'source' => 'No',
  16941. 'version' => '6.38-dev',
  16942. ))
  16943. ->values(array(
  16944. 'lid' => '877',
  16945. 'location' => '/?q=fr/admin/settings/uploads',
  16946. 'textgroup' => 'default',
  16947. 'source' => 'Yes',
  16948. 'version' => '6.38-dev',
  16949. ))
  16950. ->values(array(
  16951. 'lid' => '878',
  16952. 'location' => '/?q=fr/admin/settings/uploads',
  16953. 'textgroup' => 'default',
  16954. 'source' => 'Display attached files when viewing a post.',
  16955. 'version' => '6.38-dev',
  16956. ))
  16957. ->values(array(
  16958. 'lid' => '879',
  16959. 'location' => '/?q=fr/admin/settings/uploads',
  16960. 'textgroup' => 'default',
  16961. 'source' => 'Default permitted file extensions',
  16962. 'version' => '6.38-dev',
  16963. ))
  16964. ->values(array(
  16965. 'lid' => '880',
  16966. 'location' => '/?q=fr/admin/settings/uploads',
  16967. 'textgroup' => 'default',
  16968. 'source' => 'Default extensions that users can upload. Separate extensions with a space and do not include the leading dot.',
  16969. 'version' => '6.38-dev',
  16970. ))
  16971. ->values(array(
  16972. 'lid' => '881',
  16973. 'location' => '/?q=fr/admin/settings/uploads',
  16974. 'textgroup' => 'default',
  16975. 'source' => 'Default maximum file size per upload',
  16976. 'version' => '6.38-dev',
  16977. ))
  16978. ->values(array(
  16979. 'lid' => '882',
  16980. 'location' => '/?q=fr/admin/settings/uploads',
  16981. 'textgroup' => 'default',
  16982. 'source' => 'The default maximum file size a user can upload. If an image is uploaded and a maximum resolution is set, the size will be checked after the file has been resized.',
  16983. 'version' => '6.38-dev',
  16984. ))
  16985. ->values(array(
  16986. 'lid' => '883',
  16987. 'location' => '/?q=fr/admin/settings/uploads',
  16988. 'textgroup' => 'default',
  16989. 'source' => 'MB',
  16990. 'version' => '6.38-dev',
  16991. ))
  16992. ->values(array(
  16993. 'lid' => '884',
  16994. 'location' => '/?q=fr/admin/settings/uploads',
  16995. 'textgroup' => 'default',
  16996. 'source' => 'Default total file size per user',
  16997. 'version' => '6.38-dev',
  16998. ))
  16999. ->values(array(
  17000. 'lid' => '885',
  17001. 'location' => '/?q=fr/admin/settings/uploads',
  17002. 'textgroup' => 'default',
  17003. 'source' => 'The default maximum size of all files a user can have on the site.',
  17004. 'version' => '6.38-dev',
  17005. ))
  17006. ->values(array(
  17007. 'lid' => '886',
  17008. 'location' => '/?q=fr/admin/settings/uploads',
  17009. 'textgroup' => 'default',
  17010. 'source' => 'KB',
  17011. 'version' => '6.38-dev',
  17012. ))
  17013. ->values(array(
  17014. 'lid' => '887',
  17015. 'location' => '/?q=fr/admin/settings/uploads',
  17016. 'textgroup' => 'default',
  17017. 'source' => '@size @suffix',
  17018. 'version' => '6.38-dev',
  17019. ))
  17020. ->values(array(
  17021. 'lid' => '888',
  17022. 'location' => '/?q=fr/admin/settings/uploads',
  17023. 'textgroup' => 'default',
  17024. 'source' => 'Your PHP settings limit the maximum file size per upload to %size.',
  17025. 'version' => '6.38-dev',
  17026. ))
  17027. ->values(array(
  17028. 'lid' => '889',
  17029. 'location' => '/?q=fr/admin/settings/uploads',
  17030. 'textgroup' => 'default',
  17031. 'source' => 'Users with the <a href="@permissions">upload files permission</a> can upload attachments. Users with the <a href="@permissions">view uploaded files permission</a> can view uploaded attachments. You can choose which post types can take attachments on the <a href="@types">content types settings</a> page.',
  17032. 'version' => '6.38-dev',
  17033. ))
  17034. ->values(array(
  17035. 'lid' => '890',
  17036. 'location' => '/?q=fr/admin/settings/file-system',
  17037. 'textgroup' => 'default',
  17038. 'source' => 'File system path',
  17039. 'version' => '6.38-dev',
  17040. ))
  17041. ->values(array(
  17042. 'lid' => '891',
  17043. 'location' => '/?q=fr/admin/settings/file-system',
  17044. 'textgroup' => 'default',
  17045. 'source' => 'A file system path where the files will be stored. This directory must exist and be writable by Drupal. If the download method is set to public, this directory must be relative to the Drupal installation directory and be accessible over the web. If the download method is set to private, this directory should not be accessible over the web. Changing this location will modify all download paths and may cause unexpected problems on an existing site.',
  17046. 'version' => '6.38-dev',
  17047. ))
  17048. ->values(array(
  17049. 'lid' => '892',
  17050. 'location' => '/?q=fr/admin/settings/file-system',
  17051. 'textgroup' => 'default',
  17052. 'source' => 'Temporary directory',
  17053. 'version' => '6.38-dev',
  17054. ))
  17055. ->values(array(
  17056. 'lid' => '893',
  17057. 'location' => '/?q=fr/admin/settings/file-system',
  17058. 'textgroup' => 'default',
  17059. 'source' => 'A file system path where uploaded files will be stored during previews.',
  17060. 'version' => '6.38-dev',
  17061. ))
  17062. ->values(array(
  17063. 'lid' => '894',
  17064. 'location' => '/?q=fr/admin/settings/file-system',
  17065. 'textgroup' => 'default',
  17066. 'source' => 'Download method',
  17067. 'version' => '6.38-dev',
  17068. ))
  17069. ->values(array(
  17070. 'lid' => '895',
  17071. 'location' => '/?q=fr/admin/settings/file-system',
  17072. 'textgroup' => 'default',
  17073. 'source' => 'Public - files are available using HTTP directly.',
  17074. 'version' => '6.38-dev',
  17075. ))
  17076. ->values(array(
  17077. 'lid' => '896',
  17078. 'location' => '/?q=fr/admin/settings/file-system',
  17079. 'textgroup' => 'default',
  17080. 'source' => 'Private - files are transferred by Drupal.',
  17081. 'version' => '6.38-dev',
  17082. ))
  17083. ->values(array(
  17084. 'lid' => '897',
  17085. 'location' => '/?q=fr/admin/settings/file-system',
  17086. 'textgroup' => 'default',
  17087. 'source' => 'Choose the <em>Public download</em> method unless you wish to enforce fine-grained access controls over file downloads. Changing the download method will modify all download paths and may cause unexpected problems on an existing site.',
  17088. 'version' => '6.38-dev',
  17089. ))
  17090. ->values(array(
  17091. 'lid' => '898',
  17092. 'location' => '/?q=fr/admin/settings/file-system',
  17093. 'textgroup' => 'default',
  17094. 'source' => 'The directory %directory does not exist.',
  17095. 'version' => '6.38-dev',
  17096. ))
  17097. ->values(array(
  17098. 'lid' => '899',
  17099. 'location' => '/?q=fr/admin/settings/event',
  17100. 'textgroup' => 'default',
  17101. 'source' => 'Event overview',
  17102. 'version' => '6.38-dev',
  17103. ))
  17104. ->values(array(
  17105. 'lid' => '900',
  17106. 'location' => '/?q=fr/admin/settings/event',
  17107. 'textgroup' => 'default',
  17108. 'source' => 'Change how event summary information is displayed.',
  17109. 'version' => '6.38-dev',
  17110. ))
  17111. ->values(array(
  17112. 'lid' => '901',
  17113. 'location' => '/?q=fr/admin/settings/event',
  17114. 'textgroup' => 'default',
  17115. 'source' => 'Timezone handling',
  17116. 'version' => '6.38-dev',
  17117. ))
  17118. ->values(array(
  17119. 'lid' => '902',
  17120. 'location' => '/?q=fr/admin/settings/event',
  17121. 'textgroup' => 'default',
  17122. 'source' => 'Change how timezone information is saved and displayed.',
  17123. 'version' => '6.38-dev',
  17124. ))
  17125. ->values(array(
  17126. 'lid' => '903',
  17127. 'location' => '/?q=fr/admin/settings/event/timezone',
  17128. 'textgroup' => 'default',
  17129. 'source' => 'Event time zone input',
  17130. 'version' => '6.38-dev',
  17131. ))
  17132. ->values(array(
  17133. 'lid' => '904',
  17134. 'location' => '/?q=fr/admin/settings/event/timezone',
  17135. 'textgroup' => 'default',
  17136. 'source' => 'Use the sitewide time zone',
  17137. 'version' => '6.38-dev',
  17138. ))
  17139. ->values(array(
  17140. 'lid' => '905',
  17141. 'location' => '/?q=fr/admin/settings/event/timezone',
  17142. 'textgroup' => 'default',
  17143. 'source' => 'Use the time zone of the user editing or creating the event',
  17144. 'version' => '6.38-dev',
  17145. ))
  17146. ->values(array(
  17147. 'lid' => '906',
  17148. 'location' => '/?q=fr/admin/settings/event/timezone',
  17149. 'textgroup' => 'default',
  17150. 'source' => 'Allow users to set event time zones',
  17151. 'version' => '6.38-dev',
  17152. ))
  17153. ->values(array(
  17154. 'lid' => '907',
  17155. 'location' => '/?q=fr/admin/settings/event/timezone',
  17156. 'textgroup' => 'default',
  17157. 'source' => 'date/time settings',
  17158. 'version' => '6.38-dev',
  17159. ))
  17160. ->values(array(
  17161. 'lid' => '908',
  17162. 'location' => '/?q=fr/admin/settings/event/timezone',
  17163. 'textgroup' => 'default',
  17164. 'source' => "Events are saved with a time zone value. This setting allows you to determine how the time zone is determined when creating or editing an event. You must have 'Configurable time zones' enabled in the !url before you can enable user's time zones for this feature.",
  17165. 'version' => '6.38-dev',
  17166. ))
  17167. ->values(array(
  17168. 'lid' => '909',
  17169. 'location' => '/?q=fr/admin/settings/event/timezone',
  17170. 'textgroup' => 'default',
  17171. 'source' => 'Event time zone display',
  17172. 'version' => '6.38-dev',
  17173. ))
  17174. ->values(array(
  17175. 'lid' => '910',
  17176. 'location' => '/?q=fr/admin/settings/event/timezone',
  17177. 'textgroup' => 'default',
  17178. 'source' => "Use the event's time zone",
  17179. 'version' => '6.38-dev',
  17180. ))
  17181. ->values(array(
  17182. 'lid' => '911',
  17183. 'location' => '/?q=fr/admin/settings/event/timezone',
  17184. 'textgroup' => 'default',
  17185. 'source' => "Events are saved with a time zone value. This setting allows you to determine if the event's time zone, the sitewide time zone, or the user's personal time zone setting is used to display the time for an event. You must have 'Configurable time zones' enabled in the !url before you can enable user's time zones for this feature.",
  17186. 'version' => '6.38-dev',
  17187. ))
  17188. ->values(array(
  17189. 'lid' => '912',
  17190. 'location' => '/?q=fr/admin/settings/event/timezone',
  17191. 'textgroup' => 'default',
  17192. 'source' => 'Time notation preference',
  17193. 'version' => '6.38-dev',
  17194. ))
  17195. ->values(array(
  17196. 'lid' => '913',
  17197. 'location' => '/?q=fr/admin/settings/event/timezone',
  17198. 'textgroup' => 'default',
  17199. 'source' => '24h',
  17200. 'version' => '6.38-dev',
  17201. ))
  17202. ->values(array(
  17203. 'lid' => '914',
  17204. 'location' => '/?q=fr/admin/settings/event/timezone',
  17205. 'textgroup' => 'default',
  17206. 'source' => '12h',
  17207. 'version' => '6.38-dev',
  17208. ))
  17209. ->values(array(
  17210. 'lid' => '915',
  17211. 'location' => '/?q=fr/admin/settings/event/timezone',
  17212. 'textgroup' => 'default',
  17213. 'source' => 'The time notation system used for entering event times.',
  17214. 'version' => '6.38-dev',
  17215. ))
  17216. ->values(array(
  17217. 'lid' => '916',
  17218. 'location' => '/?q=fr/admin/settings/event/overview',
  17219. 'textgroup' => 'default',
  17220. 'source' => 'Upcoming event block limit',
  17221. 'version' => '6.38-dev',
  17222. ))
  17223. ->values(array(
  17224. 'lid' => '917',
  17225. 'location' => '/?q=fr/admin/settings/event/overview',
  17226. 'textgroup' => 'default',
  17227. 'source' => 'Limit the amount of events displayed in the upcoming events block by this amount.',
  17228. 'version' => '6.38-dev',
  17229. ))
  17230. ->values(array(
  17231. 'lid' => '918',
  17232. 'location' => '/?q=fr/admin/settings/event/overview',
  17233. 'textgroup' => 'default',
  17234. 'source' => 'Default overview',
  17235. 'version' => '6.38-dev',
  17236. ))
  17237. ->values(array(
  17238. 'lid' => '919',
  17239. 'location' => '/?q=fr/admin/settings/event/overview',
  17240. 'textgroup' => 'default',
  17241. 'source' => 'Day',
  17242. 'version' => '6.38-dev',
  17243. ))
  17244. ->values(array(
  17245. 'lid' => '920',
  17246. 'location' => '/?q=fr/admin/settings/event/overview',
  17247. 'textgroup' => 'default',
  17248. 'source' => 'Week',
  17249. 'version' => '6.38-dev',
  17250. ))
  17251. ->values(array(
  17252. 'lid' => '921',
  17253. 'location' => '/?q=fr/admin/settings/event/overview',
  17254. 'textgroup' => 'default',
  17255. 'source' => 'Month',
  17256. 'version' => '6.38-dev',
  17257. ))
  17258. ->values(array(
  17259. 'lid' => '922',
  17260. 'location' => '/?q=fr/admin/settings/event/overview',
  17261. 'textgroup' => 'default',
  17262. 'source' => 'Table',
  17263. 'version' => '6.38-dev',
  17264. ))
  17265. ->values(array(
  17266. 'lid' => '923',
  17267. 'location' => '/?q=fr/admin/settings/event/overview',
  17268. 'textgroup' => 'default',
  17269. 'source' => 'The default event view to display when no format is specifically requested. This is also the view that will be displayed from the block calendar links.',
  17270. 'version' => '6.38-dev',
  17271. ))
  17272. ->values(array(
  17273. 'lid' => '924',
  17274. 'location' => '/?q=fr/admin/settings/event/overview',
  17275. 'textgroup' => 'default',
  17276. 'source' => 'Table view default period',
  17277. 'version' => '6.38-dev',
  17278. ))
  17279. ->values(array(
  17280. 'lid' => '925',
  17281. 'location' => '/?q=fr/admin/settings/event/overview',
  17282. 'textgroup' => 'default',
  17283. 'source' => 'here',
  17284. 'version' => '6.38-dev',
  17285. ))
  17286. ->values(array(
  17287. 'lid' => '926',
  17288. 'location' => '/?q=fr/admin/settings/event/overview',
  17289. 'textgroup' => 'default',
  17290. 'source' => 'The default number of days to display in the table view. You can specify a different number of days in the url. More info on the event url format !link',
  17291. 'version' => '6.38-dev',
  17292. ))
  17293. ->values(array(
  17294. 'lid' => '927',
  17295. 'location' => '/?q=fr/admin/settings/event/overview',
  17296. 'textgroup' => 'default',
  17297. 'source' => 'Taxonomy filter controls',
  17298. 'version' => '6.38-dev',
  17299. ))
  17300. ->values(array(
  17301. 'lid' => '928',
  17302. 'location' => '/?q=fr/admin/settings/event/overview',
  17303. 'textgroup' => 'default',
  17304. 'source' => 'Show taxonomy filter control on calendar views',
  17305. 'version' => '6.38-dev',
  17306. ))
  17307. ->values(array(
  17308. 'lid' => '929',
  17309. 'location' => '/?q=fr/admin/settings/event/overview',
  17310. 'textgroup' => 'default',
  17311. 'source' => 'Only show taxonomy filter control when taxonomy filter view is requested',
  17312. 'version' => '6.38-dev',
  17313. ))
  17314. ->values(array(
  17315. 'lid' => '930',
  17316. 'location' => '/?q=fr/admin/settings/event/overview',
  17317. 'textgroup' => 'default',
  17318. 'source' => 'Never show taxonomy filter control',
  17319. 'version' => '6.38-dev',
  17320. ))
  17321. ->values(array(
  17322. 'lid' => '931',
  17323. 'location' => '/?q=fr/admin/settings/event/overview',
  17324. 'textgroup' => 'default',
  17325. 'source' => 'Content type filter controls',
  17326. 'version' => '6.38-dev',
  17327. ))
  17328. ->values(array(
  17329. 'lid' => '932',
  17330. 'location' => '/?q=fr/admin/settings/event/overview',
  17331. 'textgroup' => 'default',
  17332. 'source' => 'Show content type filter control on calendar views',
  17333. 'version' => '6.38-dev',
  17334. ))
  17335. ->values(array(
  17336. 'lid' => '933',
  17337. 'location' => '/?q=fr/admin/settings/event/overview',
  17338. 'textgroup' => 'default',
  17339. 'source' => 'Only show content type filter control when content type filter view is requested',
  17340. 'version' => '6.38-dev',
  17341. ))
  17342. ->values(array(
  17343. 'lid' => '934',
  17344. 'location' => '/?q=fr/admin/settings/event/overview',
  17345. 'textgroup' => 'default',
  17346. 'source' => 'Never show content type filter control',
  17347. 'version' => '6.38-dev',
  17348. ))
  17349. ->values(array(
  17350. 'lid' => '935',
  17351. 'location' => '/?q=fr/admin/settings/email',
  17352. 'textgroup' => 'default',
  17353. 'source' => 'Hourly threshold for a CCK Email contact form',
  17354. 'version' => '6.38-dev',
  17355. ))
  17356. ->values(array(
  17357. 'lid' => '936',
  17358. 'location' => '/?q=fr/admin/settings/email',
  17359. 'textgroup' => 'default',
  17360. 'source' => 'The maximum number of contact form submissions a user can perform per hour.',
  17361. 'version' => '6.38-dev',
  17362. ))
  17363. ->values(array(
  17364. 'lid' => '937',
  17365. 'location' => '/?q=fr/admin/settings/admin',
  17366. 'textgroup' => 'default',
  17367. 'source' => 'System default',
  17368. 'version' => '6.38-dev',
  17369. ))
  17370. ->values(array(
  17371. 'lid' => '938',
  17372. 'location' => '/?q=fr/admin/settings/admin',
  17373. 'textgroup' => 'default',
  17374. 'source' => 'Choose which theme the administration pages should display in. If you choose "System default" the administration pages will use the same theme as the rest of the site.',
  17375. 'version' => '6.38-dev',
  17376. ))
  17377. ->values(array(
  17378. 'lid' => '939',
  17379. 'location' => '/?q=fr/admin/settings/admin',
  17380. 'textgroup' => 'default',
  17381. 'source' => 'Use administration theme for content editing',
  17382. 'version' => '6.38-dev',
  17383. ))
  17384. ->values(array(
  17385. 'lid' => '940',
  17386. 'location' => '/?q=fr/admin/settings/admin',
  17387. 'textgroup' => 'default',
  17388. 'source' => 'Use the administration theme when editing existing posts or creating new ones.',
  17389. 'version' => '6.38-dev',
  17390. ))
  17391. ->values(array(
  17392. 'lid' => '941',
  17393. 'location' => '/?q=fr/admin/settings/actions',
  17394. 'textgroup' => 'default',
  17395. 'source' => 'Publish comment',
  17396. 'version' => '6.38-dev',
  17397. ))
  17398. ->values(array(
  17399. 'lid' => '942',
  17400. 'location' => '/?q=fr/admin/settings/actions',
  17401. 'textgroup' => 'default',
  17402. 'source' => 'Unpublish comment',
  17403. 'version' => '6.38-dev',
  17404. ))
  17405. ->values(array(
  17406. 'lid' => '943',
  17407. 'location' => '/?q=fr/admin/settings/actions',
  17408. 'textgroup' => 'default',
  17409. 'source' => 'Unpublish comment containing keyword(s)',
  17410. 'version' => '6.38-dev',
  17411. ))
  17412. ->values(array(
  17413. 'lid' => '944',
  17414. 'location' => '/?q=fr/admin/settings/actions',
  17415. 'textgroup' => 'default',
  17416. 'source' => 'Publish post',
  17417. 'version' => '6.38-dev',
  17418. ))
  17419. ->values(array(
  17420. 'lid' => '945',
  17421. 'location' => '/?q=fr/admin/settings/actions',
  17422. 'textgroup' => 'default',
  17423. 'source' => 'Unpublish post',
  17424. 'version' => '6.38-dev',
  17425. ))
  17426. ->values(array(
  17427. 'lid' => '946',
  17428. 'location' => '/?q=fr/admin/settings/actions',
  17429. 'textgroup' => 'default',
  17430. 'source' => 'Make post sticky',
  17431. 'version' => '6.38-dev',
  17432. ))
  17433. ->values(array(
  17434. 'lid' => '947',
  17435. 'location' => '/?q=fr/admin/settings/actions',
  17436. 'textgroup' => 'default',
  17437. 'source' => 'Make post unsticky',
  17438. 'version' => '6.38-dev',
  17439. ))
  17440. ->values(array(
  17441. 'lid' => '948',
  17442. 'location' => '/?q=fr/admin/settings/actions',
  17443. 'textgroup' => 'default',
  17444. 'source' => 'Promote post to front page',
  17445. 'version' => '6.38-dev',
  17446. ))
  17447. ->values(array(
  17448. 'lid' => '949',
  17449. 'location' => '/?q=fr/admin/settings/actions',
  17450. 'textgroup' => 'default',
  17451. 'source' => 'Remove post from front page',
  17452. 'version' => '6.38-dev',
  17453. ))
  17454. ->values(array(
  17455. 'lid' => '950',
  17456. 'location' => '/?q=fr/admin/settings/actions',
  17457. 'textgroup' => 'default',
  17458. 'source' => 'Change the author of a post',
  17459. 'version' => '6.38-dev',
  17460. ))
  17461. ->values(array(
  17462. 'lid' => '951',
  17463. 'location' => '/?q=fr/admin/settings/actions',
  17464. 'textgroup' => 'default',
  17465. 'source' => 'Save post',
  17466. 'version' => '6.38-dev',
  17467. ))
  17468. ->values(array(
  17469. 'lid' => '952',
  17470. 'location' => '/?q=fr/admin/settings/actions',
  17471. 'textgroup' => 'default',
  17472. 'source' => 'Unpublish post containing keyword(s)',
  17473. 'version' => '6.38-dev',
  17474. ))
  17475. ->values(array(
  17476. 'lid' => '953',
  17477. 'location' => '/?q=fr/admin/settings/actions',
  17478. 'textgroup' => 'default',
  17479. 'source' => 'Display a message to the user',
  17480. 'version' => '6.38-dev',
  17481. ))
  17482. ->values(array(
  17483. 'lid' => '954',
  17484. 'location' => '/?q=fr/admin/settings/actions',
  17485. 'textgroup' => 'default',
  17486. 'source' => 'Send e-mail',
  17487. 'version' => '6.38-dev',
  17488. ))
  17489. ->values(array(
  17490. 'lid' => '955',
  17491. 'location' => '/?q=fr/admin/settings/actions',
  17492. 'textgroup' => 'default',
  17493. 'source' => 'Redirect to URL',
  17494. 'version' => '6.38-dev',
  17495. ))
  17496. ->values(array(
  17497. 'lid' => '956',
  17498. 'location' => '/?q=fr/admin/settings/actions',
  17499. 'textgroup' => 'default',
  17500. 'source' => 'Block current user',
  17501. 'version' => '6.38-dev',
  17502. ))
  17503. ->values(array(
  17504. 'lid' => '957',
  17505. 'location' => '/?q=fr/admin/settings/actions',
  17506. 'textgroup' => 'default',
  17507. 'source' => 'Ban IP address of current user',
  17508. 'version' => '6.38-dev',
  17509. ))
  17510. ->values(array(
  17511. 'lid' => '958',
  17512. 'location' => '/?q=fr/admin/settings/actions',
  17513. 'textgroup' => 'default',
  17514. 'source' => "ImageCache: Flush ALL presets for this node's filefield images",
  17515. 'version' => '6.38-dev',
  17516. ))
  17517. ->values(array(
  17518. 'lid' => '959',
  17519. 'location' => '/?q=fr/admin/settings/actions',
  17520. 'textgroup' => 'default',
  17521. 'source' => "ImageCache: Generate ALL presets for this node's filefield images",
  17522. 'version' => '6.38-dev',
  17523. ))
  17524. ->values(array(
  17525. 'lid' => '960',
  17526. 'location' => '/?q=fr/admin/settings/actions',
  17527. 'textgroup' => 'default',
  17528. 'source' => "ImageCache: Generate configured preset(s) for this node's filefield images",
  17529. 'version' => '6.38-dev',
  17530. ))
  17531. ->values(array(
  17532. 'lid' => '961',
  17533. 'location' => '/?q=fr/admin/settings/actions',
  17534. 'textgroup' => 'default',
  17535. 'source' => 'Choose an advanced action',
  17536. 'version' => '6.38-dev',
  17537. ))
  17538. ->values(array(
  17539. 'lid' => '962',
  17540. 'location' => '/?q=fr/admin/settings/actions',
  17541. 'textgroup' => 'default',
  17542. 'source' => 'Action type',
  17543. 'version' => '6.38-dev',
  17544. ))
  17545. ->values(array(
  17546. 'lid' => '963',
  17547. 'location' => '/?q=fr/admin/settings/actions',
  17548. 'textgroup' => 'default',
  17549. 'source' => '« first',
  17550. 'version' => '6.38-dev',
  17551. ))
  17552. ->values(array(
  17553. 'lid' => '964',
  17554. 'location' => '/?q=fr/admin/settings/actions',
  17555. 'textgroup' => 'default',
  17556. 'source' => '‹ previous',
  17557. 'version' => '6.38-dev',
  17558. ))
  17559. ->values(array(
  17560. 'lid' => '965',
  17561. 'location' => '/?q=fr/admin/settings/actions',
  17562. 'textgroup' => 'default',
  17563. 'source' => 'next ›',
  17564. 'version' => '6.38-dev',
  17565. ))
  17566. ->values(array(
  17567. 'lid' => '966',
  17568. 'location' => '/?q=fr/admin/settings/actions',
  17569. 'textgroup' => 'default',
  17570. 'source' => 'last »',
  17571. 'version' => '6.38-dev',
  17572. ))
  17573. ->values(array(
  17574. 'lid' => '967',
  17575. 'location' => '/?q=fr/admin/settings/actions',
  17576. 'textgroup' => 'default',
  17577. 'source' => 'Actions available to Drupal:',
  17578. 'version' => '6.38-dev',
  17579. ))
  17580. ->values(array(
  17581. 'lid' => '968',
  17582. 'location' => '/?q=fr/admin/settings/actions',
  17583. 'textgroup' => 'default',
  17584. 'source' => 'sort by @s',
  17585. 'version' => '6.38-dev',
  17586. ))
  17587. ->values(array(
  17588. 'lid' => '969',
  17589. 'location' => '/?q=fr/admin/settings/actions',
  17590. 'textgroup' => 'default',
  17591. 'source' => 'sort icon',
  17592. 'version' => '6.38-dev',
  17593. ))
  17594. ->values(array(
  17595. 'lid' => '970',
  17596. 'location' => '/?q=fr/admin/settings/actions',
  17597. 'textgroup' => 'default',
  17598. 'source' => 'sort descending',
  17599. 'version' => '6.38-dev',
  17600. ))
  17601. ->values(array(
  17602. 'lid' => '971',
  17603. 'location' => '/?q=fr/admin/settings/actions',
  17604. 'textgroup' => 'default',
  17605. 'source' => 'Make a new advanced action available',
  17606. 'version' => '6.38-dev',
  17607. ))
  17608. ->values(array(
  17609. 'lid' => '972',
  17610. 'location' => '/?q=fr/admin/settings/actions',
  17611. 'textgroup' => 'default',
  17612. 'source' => 'Create',
  17613. 'version' => '6.38-dev',
  17614. ))
  17615. ->values(array(
  17616. 'lid' => '973',
  17617. 'location' => '/?q=fr/admin/settings/actions',
  17618. 'textgroup' => 'default',
  17619. 'source' => 'Configure an advanced action',
  17620. 'version' => '6.38-dev',
  17621. ))
  17622. ->values(array(
  17623. 'lid' => '974',
  17624. 'location' => '/?q=fr/admin/settings/actions',
  17625. 'textgroup' => 'default',
  17626. 'source' => 'Remove orphans',
  17627. 'version' => '6.38-dev',
  17628. ))
  17629. ->values(array(
  17630. 'lid' => '975',
  17631. 'location' => '/?q=fr/admin/settings/actions',
  17632. 'textgroup' => 'default',
  17633. 'source' => 'Manage actions',
  17634. 'version' => '6.38-dev',
  17635. ))
  17636. ->values(array(
  17637. 'lid' => '976',
  17638. 'location' => '/?q=fr/admin/settings/actions',
  17639. 'textgroup' => 'default',
  17640. 'source' => 'Actions are individual tasks that the system can do, such as unpublishing a piece of content or banning a user. Modules, such as the trigger module, can fire these actions when certain system events happen; for example, when a new post is added or when a user logs in. Modules may also provide additional actions.',
  17641. 'version' => '6.38-dev',
  17642. ))
  17643. ->values(array(
  17644. 'lid' => '977',
  17645. 'location' => '/?q=fr/admin/settings/actions',
  17646. 'textgroup' => 'default',
  17647. 'source' => 'There are two types of actions: simple and advanced. Simple actions do not require any additional configuration, and are listed here automatically. Advanced actions can do more than simple actions; for example, send an e-mail to a specified address, or check for certain words within a piece of content. These actions need to be created and configured first before they may be used. To create an advanced action, select the action from the drop-down below and click the <em>Create</em> button.',
  17648. 'version' => '6.38-dev',
  17649. ))
  17650. ->values(array(
  17651. 'lid' => '978',
  17652. 'location' => '/?q=fr/admin/user/user',
  17653. 'textgroup' => 'default',
  17654. 'source' => 'Create new account',
  17655. 'version' => '6.38-dev',
  17656. ))
  17657. ->values(array(
  17658. 'lid' => '979',
  17659. 'location' => '/?q=fr/admin/user/user',
  17660. 'textgroup' => 'default',
  17661. 'source' => 'role',
  17662. 'version' => '6.38-dev',
  17663. ))
  17664. ->values(array(
  17665. 'lid' => '980',
  17666. 'location' => '/?q=fr/admin/user/user',
  17667. 'textgroup' => 'default',
  17668. 'source' => '@module module',
  17669. 'version' => '6.38-dev',
  17670. ))
  17671. ->values(array(
  17672. 'lid' => '981',
  17673. 'location' => '/?q=fr/admin/user/user',
  17674. 'textgroup' => 'default',
  17675. 'source' => 'access news feeds',
  17676. 'version' => '6.38-dev',
  17677. ))
  17678. ->values(array(
  17679. 'lid' => '982',
  17680. 'location' => '/?q=fr/admin/user/user',
  17681. 'textgroup' => 'default',
  17682. 'source' => 'administer news feeds',
  17683. 'version' => '6.38-dev',
  17684. ))
  17685. ->values(array(
  17686. 'lid' => '983',
  17687. 'location' => '/?q=fr/admin/user/user',
  17688. 'textgroup' => 'default',
  17689. 'source' => 'administer blocks',
  17690. 'version' => '6.38-dev',
  17691. ))
  17692. ->values(array(
  17693. 'lid' => '984',
  17694. 'location' => '/?q=fr/admin/user/user',
  17695. 'textgroup' => 'default',
  17696. 'source' => 'use PHP for block visibility',
  17697. 'version' => '6.38-dev',
  17698. ))
  17699. ->values(array(
  17700. 'lid' => '985',
  17701. 'location' => '/?q=fr/admin/user/user',
  17702. 'textgroup' => 'default',
  17703. 'source' => 'access printer-friendly version',
  17704. 'version' => '6.38-dev',
  17705. ))
  17706. ->values(array(
  17707. 'lid' => '986',
  17708. 'location' => '/?q=fr/admin/user/user',
  17709. 'textgroup' => 'default',
  17710. 'source' => 'add content to books',
  17711. 'version' => '6.38-dev',
  17712. ))
  17713. ->values(array(
  17714. 'lid' => '987',
  17715. 'location' => '/?q=fr/admin/user/user',
  17716. 'textgroup' => 'default',
  17717. 'source' => 'administer book outlines',
  17718. 'version' => '6.38-dev',
  17719. ))
  17720. ->values(array(
  17721. 'lid' => '988',
  17722. 'location' => '/?q=fr/admin/user/user',
  17723. 'textgroup' => 'default',
  17724. 'source' => 'create new books',
  17725. 'version' => '6.38-dev',
  17726. ))
  17727. ->values(array(
  17728. 'lid' => '989',
  17729. 'location' => '/?q=fr/admin/user/user',
  17730. 'textgroup' => 'default',
  17731. 'source' => 'access comments',
  17732. 'version' => '6.38-dev',
  17733. ))
  17734. ->values(array(
  17735. 'lid' => '990',
  17736. 'location' => '/?q=fr/admin/user/user',
  17737. 'textgroup' => 'default',
  17738. 'source' => 'administer comments',
  17739. 'version' => '6.38-dev',
  17740. ))
  17741. ->values(array(
  17742. 'lid' => '991',
  17743. 'location' => '/?q=fr/admin/user/user',
  17744. 'textgroup' => 'default',
  17745. 'source' => 'post comments',
  17746. 'version' => '6.38-dev',
  17747. ))
  17748. ->values(array(
  17749. 'lid' => '992',
  17750. 'location' => '/?q=fr/admin/user/user',
  17751. 'textgroup' => 'default',
  17752. 'source' => 'post comments without approval',
  17753. 'version' => '6.38-dev',
  17754. ))
  17755. ->values(array(
  17756. 'lid' => '993',
  17757. 'location' => '/?q=fr/admin/user/user',
  17758. 'textgroup' => 'default',
  17759. 'source' => 'access site-wide contact form',
  17760. 'version' => '6.38-dev',
  17761. ))
  17762. ->values(array(
  17763. 'lid' => '994',
  17764. 'location' => '/?q=fr/admin/user/user',
  17765. 'textgroup' => 'default',
  17766. 'source' => 'administer site-wide contact form',
  17767. 'version' => '6.38-dev',
  17768. ))
  17769. ->values(array(
  17770. 'lid' => '995',
  17771. 'location' => '/?q=fr/admin/user/user',
  17772. 'textgroup' => 'default',
  17773. 'source' => 'administer filters',
  17774. 'version' => '6.38-dev',
  17775. ))
  17776. ->values(array(
  17777. 'lid' => '996',
  17778. 'location' => '/?q=fr/admin/user/user',
  17779. 'textgroup' => 'default',
  17780. 'source' => 'administer languages',
  17781. 'version' => '6.38-dev',
  17782. ))
  17783. ->values(array(
  17784. 'lid' => '997',
  17785. 'location' => '/?q=fr/admin/user/user',
  17786. 'textgroup' => 'default',
  17787. 'source' => 'translate interface',
  17788. 'version' => '6.38-dev',
  17789. ))
  17790. ->values(array(
  17791. 'lid' => '998',
  17792. 'location' => '/?q=fr/admin/user/user',
  17793. 'textgroup' => 'default',
  17794. 'source' => 'administer menu',
  17795. 'version' => '6.38-dev',
  17796. ))
  17797. ->values(array(
  17798. 'lid' => '999',
  17799. 'location' => '/?q=fr/admin/user/user',
  17800. 'textgroup' => 'default',
  17801. 'source' => 'access content',
  17802. 'version' => '6.38-dev',
  17803. ))
  17804. ->values(array(
  17805. 'lid' => '1000',
  17806. 'location' => '/?q=fr/admin/user/user',
  17807. 'textgroup' => 'default',
  17808. 'source' => 'administer content types',
  17809. 'version' => '6.38-dev',
  17810. ))
  17811. ->values(array(
  17812. 'lid' => '1001',
  17813. 'location' => '/?q=fr/admin/user/user',
  17814. 'textgroup' => 'default',
  17815. 'source' => 'administer nodes',
  17816. 'version' => '6.38-dev',
  17817. ))
  17818. ->values(array(
  17819. 'lid' => '1002',
  17820. 'location' => '/?q=fr/admin/user/user',
  17821. 'textgroup' => 'default',
  17822. 'source' => 'create article content',
  17823. 'version' => '6.38-dev',
  17824. ))
  17825. ->values(array(
  17826. 'lid' => '1003',
  17827. 'location' => '/?q=fr/admin/user/user',
  17828. 'textgroup' => 'default',
  17829. 'source' => 'create company content',
  17830. 'version' => '6.38-dev',
  17831. ))
  17832. ->values(array(
  17833. 'lid' => '1004',
  17834. 'location' => '/?q=fr/admin/user/user',
  17835. 'textgroup' => 'default',
  17836. 'source' => 'create employee content',
  17837. 'version' => '6.38-dev',
  17838. ))
  17839. ->values(array(
  17840. 'lid' => '1005',
  17841. 'location' => '/?q=fr/admin/user/user',
  17842. 'textgroup' => 'default',
  17843. 'source' => 'create sponsor content',
  17844. 'version' => '6.38-dev',
  17845. ))
  17846. ->values(array(
  17847. 'lid' => '1006',
  17848. 'location' => '/?q=fr/admin/user/user',
  17849. 'textgroup' => 'default',
  17850. 'source' => 'create story content',
  17851. 'version' => '6.38-dev',
  17852. ))
  17853. ->values(array(
  17854. 'lid' => '1007',
  17855. 'location' => '/?q=fr/admin/user/user',
  17856. 'textgroup' => 'default',
  17857. 'source' => 'create test_event content',
  17858. 'version' => '6.38-dev',
  17859. ))
  17860. ->values(array(
  17861. 'lid' => '1008',
  17862. 'location' => '/?q=fr/admin/user/user',
  17863. 'textgroup' => 'default',
  17864. 'source' => 'create test_page content',
  17865. 'version' => '6.38-dev',
  17866. ))
  17867. ->values(array(
  17868. 'lid' => '1009',
  17869. 'location' => '/?q=fr/admin/user/user',
  17870. 'textgroup' => 'default',
  17871. 'source' => 'create test_planet content',
  17872. 'version' => '6.38-dev',
  17873. ))
  17874. ->values(array(
  17875. 'lid' => '1010',
  17876. 'location' => '/?q=fr/admin/user/user',
  17877. 'textgroup' => 'default',
  17878. 'source' => 'create test_story content',
  17879. 'version' => '6.38-dev',
  17880. ))
  17881. ->values(array(
  17882. 'lid' => '1011',
  17883. 'location' => '/?q=fr/admin/user/user',
  17884. 'textgroup' => 'default',
  17885. 'source' => 'delete any article content',
  17886. 'version' => '6.38-dev',
  17887. ))
  17888. ->values(array(
  17889. 'lid' => '1012',
  17890. 'location' => '/?q=fr/admin/user/user',
  17891. 'textgroup' => 'default',
  17892. 'source' => 'delete any company content',
  17893. 'version' => '6.38-dev',
  17894. ))
  17895. ->values(array(
  17896. 'lid' => '1013',
  17897. 'location' => '/?q=fr/admin/user/user',
  17898. 'textgroup' => 'default',
  17899. 'source' => 'delete any employee content',
  17900. 'version' => '6.38-dev',
  17901. ))
  17902. ->values(array(
  17903. 'lid' => '1014',
  17904. 'location' => '/?q=fr/admin/user/user',
  17905. 'textgroup' => 'default',
  17906. 'source' => 'delete any sponsor content',
  17907. 'version' => '6.38-dev',
  17908. ))
  17909. ->values(array(
  17910. 'lid' => '1015',
  17911. 'location' => '/?q=fr/admin/user/user',
  17912. 'textgroup' => 'default',
  17913. 'source' => 'delete any story content',
  17914. 'version' => '6.38-dev',
  17915. ))
  17916. ->values(array(
  17917. 'lid' => '1016',
  17918. 'location' => '/?q=fr/admin/user/user',
  17919. 'textgroup' => 'default',
  17920. 'source' => 'delete any test_event content',
  17921. 'version' => '6.38-dev',
  17922. ))
  17923. ->values(array(
  17924. 'lid' => '1017',
  17925. 'location' => '/?q=fr/admin/user/user',
  17926. 'textgroup' => 'default',
  17927. 'source' => 'delete any test_page content',
  17928. 'version' => '6.38-dev',
  17929. ))
  17930. ->values(array(
  17931. 'lid' => '1018',
  17932. 'location' => '/?q=fr/admin/user/user',
  17933. 'textgroup' => 'default',
  17934. 'source' => 'delete any test_planet content',
  17935. 'version' => '6.38-dev',
  17936. ))
  17937. ->values(array(
  17938. 'lid' => '1019',
  17939. 'location' => '/?q=fr/admin/user/user',
  17940. 'textgroup' => 'default',
  17941. 'source' => 'delete any test_story content',
  17942. 'version' => '6.38-dev',
  17943. ))
  17944. ->values(array(
  17945. 'lid' => '1020',
  17946. 'location' => '/?q=fr/admin/user/user',
  17947. 'textgroup' => 'default',
  17948. 'source' => 'delete own article content',
  17949. 'version' => '6.38-dev',
  17950. ))
  17951. ->values(array(
  17952. 'lid' => '1021',
  17953. 'location' => '/?q=fr/admin/user/user',
  17954. 'textgroup' => 'default',
  17955. 'source' => 'delete own company content',
  17956. 'version' => '6.38-dev',
  17957. ))
  17958. ->values(array(
  17959. 'lid' => '1022',
  17960. 'location' => '/?q=fr/admin/user/user',
  17961. 'textgroup' => 'default',
  17962. 'source' => 'delete own employee content',
  17963. 'version' => '6.38-dev',
  17964. ))
  17965. ->values(array(
  17966. 'lid' => '1023',
  17967. 'location' => '/?q=fr/admin/user/user',
  17968. 'textgroup' => 'default',
  17969. 'source' => 'delete own sponsor content',
  17970. 'version' => '6.38-dev',
  17971. ))
  17972. ->values(array(
  17973. 'lid' => '1024',
  17974. 'location' => '/?q=fr/admin/user/user',
  17975. 'textgroup' => 'default',
  17976. 'source' => 'delete own story content',
  17977. 'version' => '6.38-dev',
  17978. ))
  17979. ->values(array(
  17980. 'lid' => '1025',
  17981. 'location' => '/?q=fr/admin/user/user',
  17982. 'textgroup' => 'default',
  17983. 'source' => 'delete own test_event content',
  17984. 'version' => '6.38-dev',
  17985. ))
  17986. ->values(array(
  17987. 'lid' => '1026',
  17988. 'location' => '/?q=fr/admin/user/user',
  17989. 'textgroup' => 'default',
  17990. 'source' => 'delete own test_page content',
  17991. 'version' => '6.38-dev',
  17992. ))
  17993. ->values(array(
  17994. 'lid' => '1027',
  17995. 'location' => '/?q=fr/admin/user/user',
  17996. 'textgroup' => 'default',
  17997. 'source' => 'delete own test_planet content',
  17998. 'version' => '6.38-dev',
  17999. ))
  18000. ->values(array(
  18001. 'lid' => '1028',
  18002. 'location' => '/?q=fr/admin/user/user',
  18003. 'textgroup' => 'default',
  18004. 'source' => 'delete own test_story content',
  18005. 'version' => '6.38-dev',
  18006. ))
  18007. ->values(array(
  18008. 'lid' => '1029',
  18009. 'location' => '/?q=fr/admin/user/user',
  18010. 'textgroup' => 'default',
  18011. 'source' => 'delete revisions',
  18012. 'version' => '6.38-dev',
  18013. ))
  18014. ->values(array(
  18015. 'lid' => '1030',
  18016. 'location' => '/?q=fr/admin/user/user',
  18017. 'textgroup' => 'default',
  18018. 'source' => 'edit any article content',
  18019. 'version' => '6.38-dev',
  18020. ))
  18021. ->values(array(
  18022. 'lid' => '1031',
  18023. 'location' => '/?q=fr/admin/user/user',
  18024. 'textgroup' => 'default',
  18025. 'source' => 'edit any company content',
  18026. 'version' => '6.38-dev',
  18027. ))
  18028. ->values(array(
  18029. 'lid' => '1032',
  18030. 'location' => '/?q=fr/admin/user/user',
  18031. 'textgroup' => 'default',
  18032. 'source' => 'edit any employee content',
  18033. 'version' => '6.38-dev',
  18034. ))
  18035. ->values(array(
  18036. 'lid' => '1033',
  18037. 'location' => '/?q=fr/admin/user/user',
  18038. 'textgroup' => 'default',
  18039. 'source' => 'edit any sponsor content',
  18040. 'version' => '6.38-dev',
  18041. ))
  18042. ->values(array(
  18043. 'lid' => '1034',
  18044. 'location' => '/?q=fr/admin/user/user',
  18045. 'textgroup' => 'default',
  18046. 'source' => 'edit any story content',
  18047. 'version' => '6.38-dev',
  18048. ))
  18049. ->values(array(
  18050. 'lid' => '1035',
  18051. 'location' => '/?q=fr/admin/user/user',
  18052. 'textgroup' => 'default',
  18053. 'source' => 'edit any test_event content',
  18054. 'version' => '6.38-dev',
  18055. ))
  18056. ->values(array(
  18057. 'lid' => '1036',
  18058. 'location' => '/?q=fr/admin/user/user',
  18059. 'textgroup' => 'default',
  18060. 'source' => 'edit any test_page content',
  18061. 'version' => '6.38-dev',
  18062. ))
  18063. ->values(array(
  18064. 'lid' => '1037',
  18065. 'location' => '/?q=fr/admin/user/user',
  18066. 'textgroup' => 'default',
  18067. 'source' => 'edit any test_planet content',
  18068. 'version' => '6.38-dev',
  18069. ))
  18070. ->values(array(
  18071. 'lid' => '1038',
  18072. 'location' => '/?q=fr/admin/user/user',
  18073. 'textgroup' => 'default',
  18074. 'source' => 'edit any test_story content',
  18075. 'version' => '6.38-dev',
  18076. ))
  18077. ->values(array(
  18078. 'lid' => '1039',
  18079. 'location' => '/?q=fr/admin/user/user',
  18080. 'textgroup' => 'default',
  18081. 'source' => 'edit own article content',
  18082. 'version' => '6.38-dev',
  18083. ))
  18084. ->values(array(
  18085. 'lid' => '1040',
  18086. 'location' => '/?q=fr/admin/user/user',
  18087. 'textgroup' => 'default',
  18088. 'source' => 'edit own company content',
  18089. 'version' => '6.38-dev',
  18090. ))
  18091. ->values(array(
  18092. 'lid' => '1041',
  18093. 'location' => '/?q=fr/admin/user/user',
  18094. 'textgroup' => 'default',
  18095. 'source' => 'edit own employee content',
  18096. 'version' => '6.38-dev',
  18097. ))
  18098. ->values(array(
  18099. 'lid' => '1042',
  18100. 'location' => '/?q=fr/admin/user/user',
  18101. 'textgroup' => 'default',
  18102. 'source' => 'edit own sponsor content',
  18103. 'version' => '6.38-dev',
  18104. ))
  18105. ->values(array(
  18106. 'lid' => '1043',
  18107. 'location' => '/?q=fr/admin/user/user',
  18108. 'textgroup' => 'default',
  18109. 'source' => 'edit own story content',
  18110. 'version' => '6.38-dev',
  18111. ))
  18112. ->values(array(
  18113. 'lid' => '1044',
  18114. 'location' => '/?q=fr/admin/user/user',
  18115. 'textgroup' => 'default',
  18116. 'source' => 'edit own test_event content',
  18117. 'version' => '6.38-dev',
  18118. ))
  18119. ->values(array(
  18120. 'lid' => '1045',
  18121. 'location' => '/?q=fr/admin/user/user',
  18122. 'textgroup' => 'default',
  18123. 'source' => 'edit own test_page content',
  18124. 'version' => '6.38-dev',
  18125. ))
  18126. ->values(array(
  18127. 'lid' => '1046',
  18128. 'location' => '/?q=fr/admin/user/user',
  18129. 'textgroup' => 'default',
  18130. 'source' => 'edit own test_planet content',
  18131. 'version' => '6.38-dev',
  18132. ))
  18133. ->values(array(
  18134. 'lid' => '1047',
  18135. 'location' => '/?q=fr/admin/user/user',
  18136. 'textgroup' => 'default',
  18137. 'source' => 'edit own test_story content',
  18138. 'version' => '6.38-dev',
  18139. ))
  18140. ->values(array(
  18141. 'lid' => '1048',
  18142. 'location' => '/?q=fr/admin/user/user',
  18143. 'textgroup' => 'default',
  18144. 'source' => 'revert revisions',
  18145. 'version' => '6.38-dev',
  18146. ))
  18147. ->values(array(
  18148. 'lid' => '1049',
  18149. 'location' => '/?q=fr/admin/user/user',
  18150. 'textgroup' => 'default',
  18151. 'source' => 'view revisions',
  18152. 'version' => '6.38-dev',
  18153. ))
  18154. ->values(array(
  18155. 'lid' => '1050',
  18156. 'location' => '/?q=fr/admin/user/user',
  18157. 'textgroup' => 'default',
  18158. 'source' => 'administer url aliases',
  18159. 'version' => '6.38-dev',
  18160. ))
  18161. ->values(array(
  18162. 'lid' => '1051',
  18163. 'location' => '/?q=fr/admin/user/user',
  18164. 'textgroup' => 'default',
  18165. 'source' => 'create url aliases',
  18166. 'version' => '6.38-dev',
  18167. ))
  18168. ->values(array(
  18169. 'lid' => '1052',
  18170. 'location' => '/?q=fr/admin/user/user',
  18171. 'textgroup' => 'default',
  18172. 'source' => 'access administration pages',
  18173. 'version' => '6.38-dev',
  18174. ))
  18175. ->values(array(
  18176. 'lid' => '1053',
  18177. 'location' => '/?q=fr/admin/user/user',
  18178. 'textgroup' => 'default',
  18179. 'source' => 'access site reports',
  18180. 'version' => '6.38-dev',
  18181. ))
  18182. ->values(array(
  18183. 'lid' => '1054',
  18184. 'location' => '/?q=fr/admin/user/user',
  18185. 'textgroup' => 'default',
  18186. 'source' => 'administer actions',
  18187. 'version' => '6.38-dev',
  18188. ))
  18189. ->values(array(
  18190. 'lid' => '1055',
  18191. 'location' => '/?q=fr/admin/user/user',
  18192. 'textgroup' => 'default',
  18193. 'source' => 'administer files',
  18194. 'version' => '6.38-dev',
  18195. ))
  18196. ->values(array(
  18197. 'lid' => '1056',
  18198. 'location' => '/?q=fr/admin/user/user',
  18199. 'textgroup' => 'default',
  18200. 'source' => 'administer site configuration',
  18201. 'version' => '6.38-dev',
  18202. ))
  18203. ->values(array(
  18204. 'lid' => '1057',
  18205. 'location' => '/?q=fr/admin/user/user',
  18206. 'textgroup' => 'default',
  18207. 'source' => 'select different theme',
  18208. 'version' => '6.38-dev',
  18209. ))
  18210. ->values(array(
  18211. 'lid' => '1058',
  18212. 'location' => '/?q=fr/admin/user/user',
  18213. 'textgroup' => 'default',
  18214. 'source' => 'administer taxonomy',
  18215. 'version' => '6.38-dev',
  18216. ))
  18217. ->values(array(
  18218. 'lid' => '1059',
  18219. 'location' => '/?q=fr/admin/user/user',
  18220. 'textgroup' => 'default',
  18221. 'source' => 'translate content',
  18222. 'version' => '6.38-dev',
  18223. ))
  18224. ->values(array(
  18225. 'lid' => '1060',
  18226. 'location' => '/?q=fr/admin/user/user',
  18227. 'textgroup' => 'default',
  18228. 'source' => 'upload files',
  18229. 'version' => '6.38-dev',
  18230. ))
  18231. ->values(array(
  18232. 'lid' => '1061',
  18233. 'location' => '/?q=fr/admin/user/user',
  18234. 'textgroup' => 'default',
  18235. 'source' => 'view uploaded files',
  18236. 'version' => '6.38-dev',
  18237. ))
  18238. ->values(array(
  18239. 'lid' => '1062',
  18240. 'location' => '/?q=fr/admin/user/user',
  18241. 'textgroup' => 'default',
  18242. 'source' => 'access user profiles',
  18243. 'version' => '6.38-dev',
  18244. ))
  18245. ->values(array(
  18246. 'lid' => '1063',
  18247. 'location' => '/?q=fr/admin/user/user',
  18248. 'textgroup' => 'default',
  18249. 'source' => 'administer permissions',
  18250. 'version' => '6.38-dev',
  18251. ))
  18252. ->values(array(
  18253. 'lid' => '1064',
  18254. 'location' => '/?q=fr/admin/user/user',
  18255. 'textgroup' => 'default',
  18256. 'source' => 'administer users',
  18257. 'version' => '6.38-dev',
  18258. ))
  18259. ->values(array(
  18260. 'lid' => '1065',
  18261. 'location' => '/?q=fr/admin/user/user',
  18262. 'textgroup' => 'default',
  18263. 'source' => 'change own username',
  18264. 'version' => '6.38-dev',
  18265. ))
  18266. ->values(array(
  18267. 'lid' => '1066',
  18268. 'location' => '/?q=fr/admin/user/user',
  18269. 'textgroup' => 'default',
  18270. 'source' => 'view date repeats',
  18271. 'version' => '6.38-dev',
  18272. ))
  18273. ->values(array(
  18274. 'lid' => '1067',
  18275. 'location' => '/?q=fr/admin/user/user',
  18276. 'textgroup' => 'default',
  18277. 'source' => 'administer imageapi',
  18278. 'version' => '6.38-dev',
  18279. ))
  18280. ->values(array(
  18281. 'lid' => '1068',
  18282. 'location' => '/?q=fr/admin/user/user',
  18283. 'textgroup' => 'default',
  18284. 'source' => 'administer imagecache',
  18285. 'version' => '6.38-dev',
  18286. ))
  18287. ->values(array(
  18288. 'lid' => '1069',
  18289. 'location' => '/?q=fr/admin/user/user',
  18290. 'textgroup' => 'default',
  18291. 'source' => 'flush imagecache',
  18292. 'version' => '6.38-dev',
  18293. ))
  18294. ->values(array(
  18295. 'lid' => '1070',
  18296. 'location' => '/?q=fr/admin/user/user',
  18297. 'textgroup' => 'default',
  18298. 'source' => 'view imagecache big_blue_cheese',
  18299. 'version' => '6.38-dev',
  18300. ))
  18301. ->values(array(
  18302. 'lid' => '1071',
  18303. 'location' => '/?q=fr/admin/user/user',
  18304. 'textgroup' => 'default',
  18305. 'source' => 'view imagecache slackjaw_boys',
  18306. 'version' => '6.38-dev',
  18307. ))
  18308. ->values(array(
  18309. 'lid' => '1072',
  18310. 'location' => '/?q=fr/admin/user/user',
  18311. 'textgroup' => 'default',
  18312. 'source' => 'administer all languages',
  18313. 'version' => '6.38-dev',
  18314. ))
  18315. ->values(array(
  18316. 'lid' => '1073',
  18317. 'location' => '/?q=fr/admin/user/user',
  18318. 'textgroup' => 'default',
  18319. 'source' => 'administer translations',
  18320. 'version' => '6.38-dev',
  18321. ))
  18322. ->values(array(
  18323. 'lid' => '1074',
  18324. 'location' => '/?q=fr/admin/user/user',
  18325. 'textgroup' => 'default',
  18326. 'source' => 'permission',
  18327. 'version' => '6.38-dev',
  18328. ))
  18329. ->values(array(
  18330. 'lid' => '1075',
  18331. 'location' => '/?q=fr/admin/user/user',
  18332. 'textgroup' => 'default',
  18333. 'source' => 'status',
  18334. 'version' => '6.38-dev',
  18335. ))
  18336. ->values(array(
  18337. 'lid' => '1076',
  18338. 'location' => '/?q=fr/admin/user/user',
  18339. 'textgroup' => 'default',
  18340. 'source' => 'active',
  18341. 'version' => '6.38-dev',
  18342. ))
  18343. ->values(array(
  18344. 'lid' => '1077',
  18345. 'location' => '/?q=fr/admin/user/user',
  18346. 'textgroup' => 'default',
  18347. 'source' => 'blocked',
  18348. 'version' => '6.38-dev',
  18349. ))
  18350. ->values(array(
  18351. 'lid' => '1078',
  18352. 'location' => '/?q=fr/admin/user/user',
  18353. 'textgroup' => 'default',
  18354. 'source' => 'Show only users where',
  18355. 'version' => '6.38-dev',
  18356. ))
  18357. ->values(array(
  18358. 'lid' => '1079',
  18359. 'location' => '/?q=fr/admin/user/user',
  18360. 'textgroup' => 'default',
  18361. 'source' => 'Filter',
  18362. 'version' => '6.38-dev',
  18363. ))
  18364. ->values(array(
  18365. 'lid' => '1080',
  18366. 'location' => '/?q=fr/admin/user/user',
  18367. 'textgroup' => 'default',
  18368. 'source' => 'is',
  18369. 'version' => '6.38-dev',
  18370. ))
  18371. ->values(array(
  18372. 'lid' => '1081',
  18373. 'location' => '/?q=fr/admin/user/user',
  18374. 'textgroup' => 'default',
  18375. 'source' => 'Username',
  18376. 'version' => '6.38-dev',
  18377. ))
  18378. ->values(array(
  18379. 'lid' => '1082',
  18380. 'location' => '/?q=fr/admin/user/user',
  18381. 'textgroup' => 'default',
  18382. 'source' => 'Status',
  18383. 'version' => '6.38-dev',
  18384. ))
  18385. ->values(array(
  18386. 'lid' => '1083',
  18387. 'location' => '/?q=fr/admin/user/user',
  18388. 'textgroup' => 'default',
  18389. 'source' => 'Member for',
  18390. 'version' => '6.38-dev',
  18391. ))
  18392. ->values(array(
  18393. 'lid' => '1084',
  18394. 'location' => '/?q=fr/admin/user/user',
  18395. 'textgroup' => 'default',
  18396. 'source' => 'Last access',
  18397. 'version' => '6.38-dev',
  18398. ))
  18399. ->values(array(
  18400. 'lid' => '1085',
  18401. 'location' => '/?q=fr/admin/user/user',
  18402. 'textgroup' => 'default',
  18403. 'source' => 'Update options',
  18404. 'version' => '6.38-dev',
  18405. ))
  18406. ->values(array(
  18407. 'lid' => '1086',
  18408. 'location' => '/?q=fr/admin/user/user',
  18409. 'textgroup' => 'default',
  18410. 'source' => 'Unblock the selected users',
  18411. 'version' => '6.38-dev',
  18412. ))
  18413. ->values(array(
  18414. 'lid' => '1087',
  18415. 'location' => '/?q=fr/admin/user/user',
  18416. 'textgroup' => 'default',
  18417. 'source' => 'Block the selected users',
  18418. 'version' => '6.38-dev',
  18419. ))
  18420. ->values(array(
  18421. 'lid' => '1088',
  18422. 'location' => '/?q=fr/admin/user/user',
  18423. 'textgroup' => 'default',
  18424. 'source' => 'Delete the selected users',
  18425. 'version' => '6.38-dev',
  18426. ))
  18427. ->values(array(
  18428. 'lid' => '1089',
  18429. 'location' => '/?q=fr/admin/user/user',
  18430. 'textgroup' => 'default',
  18431. 'source' => 'Add a role to the selected users',
  18432. 'version' => '6.38-dev',
  18433. ))
  18434. ->values(array(
  18435. 'lid' => '1090',
  18436. 'location' => '/?q=fr/admin/user/user',
  18437. 'textgroup' => 'default',
  18438. 'source' => 'Remove a role from the selected users',
  18439. 'version' => '6.38-dev',
  18440. ))
  18441. ->values(array(
  18442. 'lid' => '1091',
  18443. 'location' => '/?q=fr/admin/user/user',
  18444. 'textgroup' => 'default',
  18445. 'source' => 'Update',
  18446. 'version' => '6.38-dev',
  18447. ))
  18448. ->values(array(
  18449. 'lid' => '1092',
  18450. 'location' => '/?q=fr/admin/user/user',
  18451. 'textgroup' => 'default',
  18452. 'source' => '@count years',
  18453. 'version' => '6.38-dev',
  18454. ))
  18455. ->values(array(
  18456. 'lid' => '1093',
  18457. 'location' => '/?q=fr/admin/user/user',
  18458. 'textgroup' => 'default',
  18459. 'source' => '@count weeks',
  18460. 'version' => '6.38-dev',
  18461. ))
  18462. ->values(array(
  18463. 'lid' => '1094',
  18464. 'location' => '/?q=fr/admin/user/user',
  18465. 'textgroup' => 'default',
  18466. 'source' => '@time ago',
  18467. 'version' => '6.38-dev',
  18468. ))
  18469. ->values(array(
  18470. 'lid' => '1095',
  18471. 'location' => '/?q=fr/admin/user/user',
  18472. 'textgroup' => 'default',
  18473. 'source' => '@count sec',
  18474. 'version' => '6.38-dev',
  18475. ))
  18476. ->values(array(
  18477. 'lid' => '1096',
  18478. 'location' => '/?q=fr/admin/user/user',
  18479. 'textgroup' => 'default',
  18480. 'source' => 'sort ascending',
  18481. 'version' => '6.38-dev',
  18482. ))
  18483. ->values(array(
  18484. 'lid' => '1097',
  18485. 'location' => '/?q=fr/admin/user/user',
  18486. 'textgroup' => 'default',
  18487. 'source' => 'Add user',
  18488. 'version' => '6.38-dev',
  18489. ))
  18490. ->values(array(
  18491. 'lid' => '1098',
  18492. 'location' => '/?q=fr/admin/user/user',
  18493. 'textgroup' => 'default',
  18494. 'source' => 'Drupal allows users to register, login, log out, maintain user profiles, etc. Users of the site may not use their own names to post content until they have signed up for a user account.',
  18495. 'version' => '6.38-dev',
  18496. ))
  18497. ->values(array(
  18498. 'lid' => '1099',
  18499. 'location' => '/?q=fr/admin/user/roles',
  18500. 'textgroup' => 'default',
  18501. 'source' => 'Add role',
  18502. 'version' => '6.38-dev',
  18503. ))
  18504. ->values(array(
  18505. 'lid' => '1100',
  18506. 'location' => '/?q=fr/admin/user/roles',
  18507. 'textgroup' => 'default',
  18508. 'source' => 'edit permissions',
  18509. 'version' => '6.38-dev',
  18510. ))
  18511. ->values(array(
  18512. 'lid' => '1101',
  18513. 'location' => '/?q=fr/admin/user/roles',
  18514. 'textgroup' => 'default',
  18515. 'source' => 'locked',
  18516. 'version' => '6.38-dev',
  18517. ))
  18518. ->values(array(
  18519. 'lid' => '1102',
  18520. 'location' => '/?q=fr/admin/user/roles',
  18521. 'textgroup' => 'default',
  18522. 'source' => 'edit role',
  18523. 'version' => '6.38-dev',
  18524. ))
  18525. ->values(array(
  18526. 'lid' => '1103',
  18527. 'location' => '/?q=fr/admin/user/roles',
  18528. 'textgroup' => 'default',
  18529. 'source' => 'Edit role',
  18530. 'version' => '6.38-dev',
  18531. ))
  18532. ->values(array(
  18533. 'lid' => '1104',
  18534. 'location' => '/?q=fr/admin/user/roles',
  18535. 'textgroup' => 'default',
  18536. 'source' => "<p>Roles allow you to fine tune the security and administration of Drupal. A role defines a group of users that have certain privileges as defined in <a href=\"@permissions\">user permissions</a>. Examples of roles include: anonymous user, authenticated user, moderator, administrator and so on. In this area you will define the <em>role names</em> of the various roles. To delete a role choose \"edit\".</p><p>By default, Drupal comes with two user roles:</p>\n <ul>\n <li>Anonymous user: this role is used for users that don't have a user account or that are not authenticated.</li>\n <li>Authenticated user: this role is automatically granted to all logged in users.</li>\n </ul>",
  18537. 'version' => '6.38-dev',
  18538. ))
  18539. ->values(array(
  18540. 'lid' => '1105',
  18541. 'location' => '/?q=fr/admin/user/profile',
  18542. 'textgroup' => 'default',
  18543. 'source' => 'Add new field',
  18544. 'version' => '6.38-dev',
  18545. ))
  18546. ->values(array(
  18547. 'lid' => '1106',
  18548. 'location' => '/?q=fr/admin/user/profile',
  18549. 'textgroup' => 'default',
  18550. 'source' => 'single-line textfield',
  18551. 'version' => '6.38-dev',
  18552. ))
  18553. ->values(array(
  18554. 'lid' => '1107',
  18555. 'location' => '/?q=fr/admin/user/profile',
  18556. 'textgroup' => 'default',
  18557. 'source' => 'multi-line textfield',
  18558. 'version' => '6.38-dev',
  18559. ))
  18560. ->values(array(
  18561. 'lid' => '1108',
  18562. 'location' => '/?q=fr/admin/user/profile',
  18563. 'textgroup' => 'default',
  18564. 'source' => 'checkbox',
  18565. '