Pull merge.
[yaffs-website] / web / core / modules / migrate_drupal / tests / fixtures / drupal6.php
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
10 use Drupal\Core\Database\Database;
11
12 $connection = Database::getConnection();
13
14 $connection->schema()->createTable('access', array(
15   'fields' => array(
16     'aid' => array(
17       'type' => 'serial',
18       'not null' => TRUE,
19       'size' => 'normal',
20     ),
21     'mask' => array(
22       'type' => 'varchar',
23       'not null' => TRUE,
24       'length' => '255',
25       'default' => '',
26     ),
27     'type' => array(
28       'type' => 'varchar',
29       'not null' => TRUE,
30       'length' => '255',
31       'default' => '',
32     ),
33     'status' => array(
34       'type' => 'int',
35       'not null' => TRUE,
36       'size' => 'normal',
37       'default' => '0',
38     ),
39   ),
40   'primary key' => array(
41     'aid',
42   ),
43   'mysql_character_set' => 'utf8',
44 ));
45
46 $connection->schema()->createTable('accesslog', array(
47   'fields' => array(
48     'aid' => array(
49       'type' => 'serial',
50       'not null' => TRUE,
51       'size' => 'normal',
52     ),
53     'sid' => array(
54       'type' => 'varchar',
55       'not null' => TRUE,
56       'length' => '64',
57       'default' => '',
58     ),
59     'title' => array(
60       'type' => 'varchar',
61       'not null' => FALSE,
62       'length' => '255',
63     ),
64     'path' => array(
65       'type' => 'varchar',
66       'not null' => FALSE,
67       'length' => '255',
68     ),
69     'url' => array(
70       'type' => 'text',
71       'not null' => FALSE,
72       'size' => 'normal',
73     ),
74     'hostname' => array(
75       'type' => 'varchar',
76       'not null' => FALSE,
77       'length' => '128',
78     ),
79     'uid' => array(
80       'type' => 'int',
81       'not null' => FALSE,
82       'size' => 'normal',
83       'default' => '0',
84       'unsigned' => TRUE,
85     ),
86     'timer' => array(
87       'type' => 'int',
88       'not null' => TRUE,
89       'size' => 'normal',
90       'default' => '0',
91       'unsigned' => TRUE,
92     ),
93     'timestamp' => array(
94       'type' => 'int',
95       'not null' => TRUE,
96       'size' => 'normal',
97       'default' => '0',
98       'unsigned' => TRUE,
99     ),
100   ),
101   'primary key' => array(
102     'aid',
103   ),
104   'indexes' => array(
105     'accesslog_timestamp' => array(
106       'timestamp',
107     ),
108     'uid' => array(
109       'uid',
110     ),
111   ),
112   'mysql_character_set' => 'utf8',
113 ));
114
115 $connection->schema()->createTable('actions', array(
116   'fields' => array(
117     'aid' => array(
118       'type' => 'varchar',
119       'not null' => TRUE,
120       'length' => '255',
121       'default' => '0',
122     ),
123     'type' => array(
124       'type' => 'varchar',
125       'not null' => TRUE,
126       'length' => '32',
127       'default' => '',
128     ),
129     'callback' => array(
130       'type' => 'varchar',
131       'not null' => TRUE,
132       'length' => '255',
133       'default' => '',
134     ),
135     'parameters' => array(
136       'type' => 'text',
137       'not null' => TRUE,
138       'size' => 'normal',
139     ),
140     'description' => array(
141       'type' => 'varchar',
142       'not null' => TRUE,
143       'length' => '255',
144       'default' => '0',
145     ),
146   ),
147   'primary key' => array(
148     'aid',
149   ),
150   'mysql_character_set' => 'utf8',
151 ));
152
153 $connection->insert('actions')
154 ->fields(array(
155   'aid',
156   'type',
157   'callback',
158   'parameters',
159   'description',
160 ))
161 ->values(array(
162   'aid' => '1',
163   'type' => 'comment',
164   'callback' => 'comment_unpublish_by_keyword_action',
165   'parameters' => 'a:1:{s:8:"keywords";a:1:{i:0;s:6:"drupal";}}',
166   'description' => 'Unpublish comment containing keyword(s)',
167 ))
168 ->values(array(
169   'aid' => '2',
170   'type' => 'node',
171   'callback' => 'node_assign_owner_action',
172   'parameters' => 'a:1:{s:9:"owner_uid";s:1:"2";}',
173   'description' => 'Change the author of a post',
174 ))
175 ->values(array(
176   'aid' => '3',
177   'type' => 'node',
178   'callback' => 'node_unpublish_by_keyword_action',
179   'parameters' => 'a:1:{s:8:"keywords";a:1:{i:0;s:6:"drupal";}}',
180   'description' => 'Unpublish post containing keyword(s)',
181 ))
182 ->values(array(
183   'aid' => '4',
184   'type' => 'system',
185   'callback' => 'system_message_action',
186   'parameters' => 'a:1:{s:7:"message";s:21:"Drupal migration test";}',
187   'description' => 'Display a message to the user',
188 ))
189 ->values(array(
190   'aid' => '5',
191   'type' => 'system',
192   'callback' => 'system_send_email_action',
193   '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";}',
194   'description' => 'Send e-mail',
195 ))
196 ->values(array(
197   'aid' => '6',
198   'type' => 'system',
199   'callback' => 'system_goto_action',
200   'parameters' => 'a:1:{s:3:"url";s:22:"https://www.drupal.org";}',
201   'description' => 'Redirect to URL',
202 ))
203 ->values(array(
204   'aid' => 'comment_publish_action',
205   'type' => 'comment',
206   'callback' => 'comment_publish_action',
207   'parameters' => '',
208   'description' => 'Publish comment',
209 ))
210 ->values(array(
211   'aid' => 'comment_unpublish_action',
212   'type' => 'comment',
213   'callback' => 'comment_unpublish_action',
214   'parameters' => '',
215   'description' => 'Unpublish comment',
216 ))
217 ->values(array(
218   'aid' => 'imagecache_flush_action',
219   'type' => 'node',
220   'callback' => 'imagecache_flush_action',
221   'parameters' => '',
222   'description' => "ImageCache: Flush ALL presets for this node's filefield images",
223 ))
224 ->values(array(
225   'aid' => 'imagecache_generate_all_action',
226   'type' => 'node',
227   'callback' => 'imagecache_generate_all_action',
228   'parameters' => '',
229   'description' => "ImageCache: Generate ALL presets for this node's filefield images",
230 ))
231 ->values(array(
232   'aid' => 'node_make_sticky_action',
233   'type' => 'node',
234   'callback' => 'node_make_sticky_action',
235   'parameters' => '',
236   'description' => 'Make post sticky',
237 ))
238 ->values(array(
239   'aid' => 'node_make_unsticky_action',
240   'type' => 'node',
241   'callback' => 'node_make_unsticky_action',
242   'parameters' => '',
243   'description' => 'Make post unsticky',
244 ))
245 ->values(array(
246   'aid' => 'node_promote_action',
247   'type' => 'node',
248   'callback' => 'node_promote_action',
249   'parameters' => '',
250   'description' => 'Promote post to front page',
251 ))
252 ->values(array(
253   'aid' => 'node_publish_action',
254   'type' => 'node',
255   'callback' => 'node_publish_action',
256   'parameters' => '',
257   'description' => 'Publish post',
258 ))
259 ->values(array(
260   'aid' => 'node_save_action',
261   'type' => 'node',
262   'callback' => 'node_save_action',
263   'parameters' => '',
264   'description' => 'Save post',
265 ))
266 ->values(array(
267   'aid' => 'node_unpromote_action',
268   'type' => 'node',
269   'callback' => 'node_unpromote_action',
270   'parameters' => '',
271   'description' => 'Remove post from front page',
272 ))
273 ->values(array(
274   'aid' => 'node_unpublish_action',
275   'type' => 'node',
276   'callback' => 'node_unpublish_action',
277   'parameters' => '',
278   'description' => 'Unpublish post',
279 ))
280 ->values(array(
281   'aid' => 'user_block_ip_action',
282   'type' => 'user',
283   'callback' => 'user_block_ip_action',
284   'parameters' => '',
285   'description' => 'Ban IP address of current user',
286 ))
287 ->values(array(
288   'aid' => 'user_block_user_action',
289   'type' => 'user',
290   'callback' => 'user_block_user_action',
291   'parameters' => '',
292   'description' => 'Block current user',
293 ))
294 ->execute();
295
296 $connection->schema()->createTable('actions_aid', array(
297   'fields' => array(
298     'aid' => array(
299       'type' => 'serial',
300       'not null' => TRUE,
301       'size' => 'normal',
302       'unsigned' => TRUE,
303     ),
304   ),
305   'primary key' => array(
306     'aid',
307   ),
308   'mysql_character_set' => 'utf8',
309 ));
310
311 $connection->insert('actions_aid')
312 ->fields(array(
313   'aid',
314 ))
315 ->values(array(
316   'aid' => '1',
317 ))
318 ->values(array(
319   'aid' => '2',
320 ))
321 ->values(array(
322   'aid' => '3',
323 ))
324 ->values(array(
325   'aid' => '4',
326 ))
327 ->values(array(
328   'aid' => '5',
329 ))
330 ->values(array(
331   'aid' => '6',
332 ))
333 ->execute();
334
335 $connection->schema()->createTable('aggregator_category', array(
336   'fields' => array(
337     'cid' => array(
338       'type' => 'serial',
339       'not null' => TRUE,
340       'size' => 'normal',
341     ),
342     'title' => array(
343       'type' => 'varchar',
344       'not null' => TRUE,
345       'length' => '255',
346       'default' => '',
347     ),
348     'description' => array(
349       'type' => 'text',
350       'not null' => TRUE,
351       'size' => 'normal',
352     ),
353     'block' => array(
354       'type' => 'int',
355       'not null' => TRUE,
356       'size' => 'normal',
357       'default' => '0',
358     ),
359   ),
360   'primary key' => array(
361     'cid',
362   ),
363   'mysql_character_set' => 'utf8',
364 ));
365
366 $connection->schema()->createTable('aggregator_feed', array(
367   'fields' => array(
368     'fid' => array(
369       'type' => 'serial',
370       'not null' => TRUE,
371       'size' => 'normal',
372     ),
373     'title' => array(
374       'type' => 'varchar',
375       'not null' => TRUE,
376       'length' => '255',
377       'default' => '',
378     ),
379     'url' => array(
380       'type' => 'varchar',
381       'not null' => TRUE,
382       'length' => '255',
383       'default' => '',
384     ),
385     'refresh' => array(
386       'type' => 'int',
387       'not null' => TRUE,
388       'size' => 'normal',
389       'default' => '0',
390     ),
391     'checked' => array(
392       'type' => 'int',
393       'not null' => TRUE,
394       'size' => 'normal',
395       'default' => '0',
396     ),
397     'link' => array(
398       'type' => 'varchar',
399       'not null' => TRUE,
400       'length' => '255',
401       'default' => '',
402     ),
403     'description' => array(
404       'type' => 'text',
405       'not null' => TRUE,
406       'size' => 'normal',
407     ),
408     'image' => array(
409       'type' => 'text',
410       'not null' => TRUE,
411       'size' => 'normal',
412     ),
413     'etag' => array(
414       'type' => 'varchar',
415       'not null' => TRUE,
416       'length' => '255',
417       'default' => '',
418     ),
419     'modified' => array(
420       'type' => 'int',
421       'not null' => TRUE,
422       'size' => 'normal',
423       'default' => '0',
424     ),
425     'block' => array(
426       'type' => 'int',
427       'not null' => TRUE,
428       'size' => 'normal',
429       'default' => '0',
430     ),
431   ),
432   'primary key' => array(
433     'fid',
434   ),
435   'mysql_character_set' => 'utf8',
436 ));
437
438 $connection->insert('aggregator_feed')
439 ->fields(array(
440   'fid',
441   'title',
442   'url',
443   'refresh',
444   'checked',
445   'link',
446   'description',
447   'image',
448   'etag',
449   'modified',
450   'block',
451 ))
452 ->values(array(
453   'fid' => '5',
454   'title' => 'Know Your Meme',
455   'url' => 'http://knowyourmeme.com/newsfeed.rss',
456   'refresh' => '900',
457   'checked' => '1387659487',
458   'link' => 'http://knowyourmeme.com',
459   'description' => 'New items added to the News Feed',
460   'image' => 'http://b.thumbs.redditmedia.com/harEHsUUZVajabtC.png',
461   'etag' => '"213cc1365b96c310e92053c5551f0504"',
462   'modified' => '0',
463   'block' => '7',
464 ))
465 ->execute();
466
467 $connection->schema()->createTable('aggregator_item', array(
468   'fields' => array(
469     'iid' => array(
470       'type' => 'serial',
471       'not null' => TRUE,
472       'size' => 'normal',
473     ),
474     'fid' => array(
475       'type' => 'int',
476       'not null' => TRUE,
477       'size' => 'normal',
478       'default' => '0',
479     ),
480     'title' => array(
481       'type' => 'varchar',
482       'not null' => TRUE,
483       'length' => '255',
484       'default' => '',
485     ),
486     'link' => array(
487       'type' => 'varchar',
488       'not null' => TRUE,
489       'length' => '255',
490       'default' => '',
491     ),
492     'author' => array(
493       'type' => 'varchar',
494       'not null' => TRUE,
495       'length' => '255',
496       'default' => '',
497     ),
498     'description' => array(
499       'type' => 'text',
500       'not null' => TRUE,
501       'size' => 'normal',
502     ),
503     'timestamp' => array(
504       'type' => 'int',
505       'not null' => FALSE,
506       'size' => 'normal',
507     ),
508     'guid' => array(
509       'type' => 'varchar',
510       'not null' => FALSE,
511       'length' => '255',
512     ),
513   ),
514   'primary key' => array(
515     'iid',
516   ),
517   'mysql_character_set' => 'utf8',
518 ));
519
520 $connection->insert('aggregator_item')
521 ->fields(array(
522   'iid',
523   'fid',
524   'title',
525   'link',
526   'author',
527   'description',
528   'timestamp',
529   'guid',
530 ))
531 ->values(array(
532   'iid' => '1',
533   'fid' => '5',
534   'title' => 'This (three) weeks in Drupal Core - January 10th 2014',
535   'link' => 'https://groups.drupal.org/node/395218',
536   'author' => 'larowlan',
537   'description' => "<h2 id='new'>What's new with Drupal 8?</h2>",
538   'timestamp' => '1389297196',
539   'guid' => '395218 at https://groups.drupal.org',
540 ))
541 ->execute();
542
543 $connection->schema()->createTable('authmap', array(
544   'fields' => array(
545     'aid' => array(
546       'type' => 'serial',
547       'not null' => TRUE,
548       'size' => 'normal',
549       'unsigned' => TRUE,
550     ),
551     'uid' => array(
552       'type' => 'int',
553       'not null' => TRUE,
554       'size' => 'normal',
555       'default' => '0',
556     ),
557     'authname' => array(
558       'type' => 'varchar',
559       'not null' => TRUE,
560       'length' => '128',
561       'default' => '',
562     ),
563     'module' => array(
564       'type' => 'varchar',
565       'not null' => TRUE,
566       'length' => '128',
567       'default' => '',
568     ),
569   ),
570   'primary key' => array(
571     'aid',
572   ),
573   'mysql_character_set' => 'utf8',
574 ));
575
576 $connection->schema()->createTable('batch', array(
577   'fields' => array(
578     'bid' => array(
579       'type' => 'serial',
580       'not null' => TRUE,
581       'size' => 'normal',
582       'unsigned' => TRUE,
583     ),
584     'token' => array(
585       'type' => 'varchar',
586       'not null' => TRUE,
587       'length' => '64',
588     ),
589     'timestamp' => array(
590       'type' => 'int',
591       'not null' => TRUE,
592       'size' => 'normal',
593     ),
594     'batch' => array(
595       'type' => 'text',
596       'not null' => FALSE,
597       'size' => 'normal',
598     ),
599   ),
600   'primary key' => array(
601     'bid',
602   ),
603   'mysql_character_set' => 'utf8',
604 ));
605
606 $connection->insert('batch')
607 ->fields(array(
608   'bid',
609   'token',
610   'timestamp',
611   'batch',
612 ))
613 ->values(array(
614   'bid' => '1',
615   'token' => '',
616   'timestamp' => '1494966324',
617   'batch' => NULL,
618 ))
619 ->execute();
620
621 $connection->schema()->createTable('blocks', array(
622   'fields' => array(
623     'bid' => array(
624       'type' => 'serial',
625       'not null' => TRUE,
626       'size' => 'normal',
627     ),
628     'module' => array(
629       'type' => 'varchar',
630       'not null' => TRUE,
631       'length' => '64',
632       'default' => '',
633     ),
634     'delta' => array(
635       'type' => 'varchar',
636       'not null' => TRUE,
637       'length' => '32',
638       'default' => '0',
639     ),
640     'theme' => array(
641       'type' => 'varchar',
642       'not null' => TRUE,
643       'length' => '64',
644       'default' => '',
645     ),
646     'status' => array(
647       'type' => 'int',
648       'not null' => TRUE,
649       'size' => 'normal',
650       'default' => '0',
651     ),
652     'weight' => array(
653       'type' => 'int',
654       'not null' => TRUE,
655       'size' => 'normal',
656       'default' => '0',
657     ),
658     'region' => array(
659       'type' => 'varchar',
660       'not null' => TRUE,
661       'length' => '64',
662       'default' => '',
663     ),
664     'custom' => array(
665       'type' => 'int',
666       'not null' => TRUE,
667       'size' => 'normal',
668       'default' => '0',
669     ),
670     'throttle' => array(
671       'type' => 'int',
672       'not null' => TRUE,
673       'size' => 'normal',
674       'default' => '0',
675     ),
676     'visibility' => array(
677       'type' => 'int',
678       'not null' => TRUE,
679       'size' => 'normal',
680       'default' => '0',
681     ),
682     'pages' => array(
683       'type' => 'text',
684       'not null' => TRUE,
685       'size' => 'normal',
686     ),
687     'title' => array(
688       'type' => 'varchar',
689       'not null' => TRUE,
690       'length' => '64',
691       'default' => '',
692     ),
693     'cache' => array(
694       'type' => 'int',
695       'not null' => TRUE,
696       'size' => 'normal',
697       'default' => '1',
698     ),
699   ),
700   'primary key' => array(
701     'bid',
702   ),
703   'mysql_character_set' => 'utf8',
704 ));
705
706 $connection->insert('blocks')
707 ->fields(array(
708   'bid',
709   'module',
710   'delta',
711   'theme',
712   'status',
713   'weight',
714   'region',
715   'custom',
716   'throttle',
717   'visibility',
718   'pages',
719   'title',
720   'cache',
721 ))
722 ->values(array(
723   'bid' => '1',
724   'module' => 'user',
725   'delta' => '0',
726   'theme' => 'garland',
727   'status' => '1',
728   'weight' => '-10',
729   'region' => 'left',
730   'custom' => '0',
731   'throttle' => '0',
732   'visibility' => '0',
733   'pages' => "<front>\r\nnode/1\nblog/*",
734   'title' => '',
735   'cache' => '-1',
736 ))
737 ->values(array(
738   'bid' => '2',
739   'module' => 'user',
740   'delta' => '1',
741   'theme' => 'garland',
742   'status' => '1',
743   'weight' => '-11',
744   'region' => 'left',
745   'custom' => '0',
746   'throttle' => '0',
747   'visibility' => '0',
748   'pages' => '',
749   'title' => 'zu - Navigation',
750   'cache' => '-1',
751 ))
752 ->values(array(
753   'bid' => '3',
754   'module' => 'system',
755   'delta' => '0',
756   'theme' => 'garland',
757   'status' => '1',
758   'weight' => '-5',
759   'region' => 'footer',
760   'custom' => '0',
761   'throttle' => '0',
762   'visibility' => '0',
763   'pages' => 'node/1',
764   'title' => '',
765   'cache' => '-1',
766 ))
767 ->values(array(
768   'bid' => '4',
769   'module' => 'comment',
770   'delta' => '0',
771   'theme' => 'garland',
772   'status' => '0',
773   'weight' => '-9',
774   'region' => '',
775   'custom' => '0',
776   'throttle' => '0',
777   'visibility' => '0',
778   'pages' => '',
779   'title' => '',
780   'cache' => '1',
781 ))
782 ->values(array(
783   'bid' => '5',
784   'module' => 'menu',
785   'delta' => 'primary-links',
786   'theme' => 'garland',
787   'status' => '1',
788   'weight' => '-5',
789   'region' => 'header',
790   'custom' => '0',
791   'throttle' => '0',
792   'visibility' => '0',
793   'pages' => '',
794   'title' => '',
795   'cache' => '-1',
796 ))
797 ->values(array(
798   'bid' => '6',
799   'module' => 'menu',
800   'delta' => 'secondary-links',
801   'theme' => 'garland',
802   'status' => '0',
803   'weight' => '-8',
804   'region' => '',
805   'custom' => '0',
806   'throttle' => '0',
807   'visibility' => '0',
808   'pages' => '',
809   'title' => '',
810   'cache' => '-1',
811 ))
812 ->values(array(
813   'bid' => '7',
814   'module' => 'node',
815   'delta' => '0',
816   'theme' => 'garland',
817   'status' => '0',
818   'weight' => '-7',
819   'region' => '',
820   'custom' => '0',
821   'throttle' => '0',
822   'visibility' => '0',
823   'pages' => '',
824   'title' => '',
825   'cache' => '-1',
826 ))
827 ->values(array(
828   'bid' => '8',
829   'module' => 'user',
830   'delta' => '2',
831   'theme' => 'garland',
832   'status' => '1',
833   'weight' => '-11',
834   'region' => 'right',
835   'custom' => '0',
836   'throttle' => '0',
837   'visibility' => '0',
838   'pages' => '',
839   'title' => '',
840   'cache' => '1',
841 ))
842 ->values(array(
843   'bid' => '9',
844   'module' => 'user',
845   'delta' => '3',
846   'theme' => 'garland',
847   'status' => '1',
848   'weight' => '-10',
849   'region' => 'right',
850   'custom' => '0',
851   'throttle' => '0',
852   'visibility' => '0',
853   'pages' => '',
854   'title' => '',
855   'cache' => '-1',
856 ))
857 ->values(array(
858   'bid' => '10',
859   'module' => 'block',
860   'delta' => '1',
861   'theme' => 'garland',
862   'status' => '1',
863   'weight' => '0',
864   'region' => 'content',
865   'custom' => '0',
866   'throttle' => '0',
867   'visibility' => '1',
868   'pages' => '<front>',
869   'title' => 'Static Block',
870   'cache' => '-1',
871 ))
872 ->values(array(
873   'bid' => '11',
874   'module' => 'block',
875   'delta' => '2',
876   'theme' => 'bluemarine',
877   'status' => '1',
878   'weight' => '-4',
879   'region' => 'right',
880   'custom' => '0',
881   'throttle' => '0',
882   'visibility' => '1',
883   'pages' => 'node',
884   'title' => 'Another Static Block',
885   'cache' => '-1',
886 ))
887 ->values(array(
888   'bid' => '12',
889   'module' => 'block',
890   'delta' => '1',
891   'theme' => 'test_theme',
892   'status' => '1',
893   'weight' => '-7',
894   'region' => 'right',
895   'custom' => '0',
896   'throttle' => '0',
897   'visibility' => '0',
898   'pages' => '',
899   'title' => '',
900   'cache' => '-1',
901 ))
902 ->values(array(
903   'bid' => '13',
904   'module' => 'block',
905   'delta' => '2',
906   'theme' => 'test_theme',
907   'status' => '1',
908   'weight' => '-2',
909   'region' => 'left',
910   'custom' => '0',
911   'throttle' => '0',
912   'visibility' => '2',
913   'pages' => "<?php\nreturn TRUE;",
914   'title' => '',
915   'cache' => '-1',
916 ))
917 ->values(array(
918   'bid' => '14',
919   'module' => 'aggregator',
920   'delta' => 'feed-5',
921   'theme' => 'garland',
922   'status' => '1',
923   'weight' => '-2',
924   'region' => 'right',
925   'custom' => '0',
926   'throttle' => '0',
927   'visibility' => '0',
928   'pages' => '',
929   'title' => '',
930   'cache' => '1',
931 ))
932 ->values(array(
933   'bid' => '15',
934   'module' => 'block',
935   'delta' => '2',
936   'theme' => 'garland',
937   'status' => '0',
938   'weight' => '1',
939   'region' => '',
940   'custom' => '0',
941   'throttle' => '0',
942   'visibility' => '0',
943   'pages' => '',
944   'title' => '',
945   'cache' => '-1',
946 ))
947 ->values(array(
948   'bid' => '16',
949   'module' => 'profile',
950   'delta' => '0',
951   'theme' => 'garland',
952   'status' => '0',
953   'weight' => '-5',
954   'region' => '',
955   'custom' => '0',
956   'throttle' => '0',
957   'visibility' => '0',
958   'pages' => '',
959   'title' => '',
960   'cache' => '5',
961 ))
962 ->values(array(
963   'bid' => '17',
964   'module' => 'event',
965   'delta' => '0',
966   'theme' => 'garland',
967   'status' => '0',
968   'weight' => '-3',
969   'region' => '',
970   'custom' => '0',
971   'throttle' => '0',
972   'visibility' => '0',
973   'pages' => '',
974   'title' => '',
975   'cache' => '1',
976 ))
977 ->values(array(
978   'bid' => '18',
979   'module' => 'event',
980   'delta' => '1',
981   'theme' => 'garland',
982   'status' => '0',
983   'weight' => '0',
984   'region' => '',
985   'custom' => '0',
986   'throttle' => '0',
987   'visibility' => '0',
988   'pages' => '',
989   'title' => '',
990   'cache' => '1',
991 ))
992 ->values(array(
993   'bid' => '19',
994   'module' => 'event',
995   'delta' => 'event-upcoming-event',
996   'theme' => 'garland',
997   'status' => '0',
998   'weight' => '-1',
999   'region' => '',
1000   'custom' => '0',
1001   'throttle' => '0',
1002   'visibility' => '0',
1003   'pages' => '',
1004   'title' => '',
1005   'cache' => '1',
1006 ))
1007 ->values(array(
1008   'bid' => '20',
1009   'module' => 'book',
1010   'delta' => '0',
1011   'theme' => 'garland',
1012   'status' => '1',
1013   'weight' => '-4',
1014   'region' => 'right',
1015   'custom' => '0',
1016   'throttle' => '0',
1017   'visibility' => '0',
1018   'pages' => '',
1019   'title' => '',
1020   'cache' => '5',
1021 ))
1022 ->values(array(
1023   'bid' => '21',
1024   'module' => 'locale',
1025   'delta' => '0',
1026   'theme' => 'garland',
1027   'status' => '0',
1028   'weight' => '0',
1029   'region' => '',
1030   'custom' => '0',
1031   'throttle' => '0',
1032   'visibility' => '0',
1033   'pages' => '',
1034   'title' => '',
1035   'cache' => '-1',
1036 ))
1037 ->values(array(
1038   'bid' => '22',
1039   'module' => 'forum',
1040   'delta' => '0',
1041   'theme' => 'garland',
1042   'status' => '1',
1043   'weight' => '-8',
1044   'region' => 'left',
1045   'custom' => '0',
1046   'throttle' => '0',
1047   'visibility' => '0',
1048   'pages' => '',
1049   'title' => '',
1050   'cache' => '1',
1051 ))
1052 ->values(array(
1053   'bid' => '23',
1054   'module' => 'forum',
1055   'delta' => '1',
1056   'theme' => 'garland',
1057   'status' => '1',
1058   'weight' => '-9',
1059   'region' => 'left',
1060   'custom' => '0',
1061   'throttle' => '0',
1062   'visibility' => '0',
1063   'pages' => '',
1064   'title' => '',
1065   'cache' => '1',
1066 ))
1067 ->values(array(
1068   'bid' => '24',
1069   'module' => 'statistics',
1070   'delta' => '0',
1071   'theme' => 'garland',
1072   'status' => '1',
1073   'weight' => '0',
1074   'region' => 'right',
1075   'custom' => '0',
1076   'throttle' => '0',
1077   'visibility' => '0',
1078   'pages' => '',
1079   'title' => '',
1080   'cache' => '-1',
1081 ))
1082 ->execute();
1083
1084 $connection->schema()->createTable('blocks_roles', array(
1085   'fields' => array(
1086     'module' => array(
1087       'type' => 'varchar',
1088       'not null' => TRUE,
1089       'length' => '64',
1090     ),
1091     'delta' => array(
1092       'type' => 'varchar',
1093       'not null' => TRUE,
1094       'length' => '32',
1095     ),
1096     'rid' => array(
1097       'type' => 'int',
1098       'not null' => TRUE,
1099       'size' => 'normal',
1100       'unsigned' => TRUE,
1101     ),
1102   ),
1103   'primary key' => array(
1104     'module',
1105     'delta',
1106     'rid',
1107   ),
1108   'mysql_character_set' => 'utf8',
1109 ));
1110
1111 $connection->insert('blocks_roles')
1112 ->fields(array(
1113   'module',
1114   'delta',
1115   'rid',
1116 ))
1117 ->values(array(
1118   'module' => 'user',
1119   'delta' => '2',
1120   'rid' => '2',
1121 ))
1122 ->values(array(
1123   'module' => 'user',
1124   'delta' => '3',
1125   'rid' => '3',
1126 ))
1127 ->execute();
1128
1129 $connection->schema()->createTable('book', array(
1130   'fields' => array(
1131     'mlid' => array(
1132       'type' => 'int',
1133       'not null' => TRUE,
1134       'size' => 'normal',
1135       'default' => '0',
1136       'unsigned' => TRUE,
1137     ),
1138     'nid' => array(
1139       'type' => 'int',
1140       'not null' => TRUE,
1141       'size' => 'normal',
1142       'default' => '0',
1143       'unsigned' => TRUE,
1144     ),
1145     'bid' => array(
1146       'type' => 'int',
1147       'not null' => TRUE,
1148       'size' => 'normal',
1149       'default' => '0',
1150       'unsigned' => TRUE,
1151     ),
1152   ),
1153   'primary key' => array(
1154     'mlid',
1155   ),
1156   'mysql_character_set' => 'utf8',
1157 ));
1158
1159 $connection->insert('book')
1160 ->fields(array(
1161   'mlid',
1162   'nid',
1163   'bid',
1164 ))
1165 ->values(array(
1166   'mlid' => '1',
1167   'nid' => '4',
1168   'bid' => '4',
1169 ))
1170 ->values(array(
1171   'mlid' => '2',
1172   'nid' => '5',
1173   'bid' => '4',
1174 ))
1175 ->values(array(
1176   'mlid' => '3',
1177   'nid' => '6',
1178   'bid' => '4',
1179 ))
1180 ->values(array(
1181   'mlid' => '4',
1182   'nid' => '7',
1183   'bid' => '4',
1184 ))
1185 ->values(array(
1186   'mlid' => '5',
1187   'nid' => '8',
1188   'bid' => '8',
1189 ))
1190 ->execute();
1191
1192 $connection->schema()->createTable('boxes', array(
1193   'fields' => array(
1194     'bid' => array(
1195       'type' => 'serial',
1196       'not null' => TRUE,
1197       'size' => 'normal',
1198       'unsigned' => TRUE,
1199     ),
1200     'body' => array(
1201       'type' => 'text',
1202       'not null' => FALSE,
1203       'size' => 'normal',
1204     ),
1205     'info' => array(
1206       'type' => 'varchar',
1207       'not null' => TRUE,
1208       'length' => '128',
1209       'default' => '',
1210     ),
1211     'format' => array(
1212       'type' => 'int',
1213       'not null' => TRUE,
1214       'size' => 'normal',
1215       'default' => '0',
1216     ),
1217   ),
1218   'primary key' => array(
1219     'bid',
1220   ),
1221   'mysql_character_set' => 'utf8',
1222 ));
1223
1224 $connection->insert('boxes')
1225 ->fields(array(
1226   'bid',
1227   'body',
1228   'info',
1229   'format',
1230 ))
1231 ->values(array(
1232   'bid' => '1',
1233   'body' => '<h3>My first custom block body</h3>',
1234   'info' => 'My block 1',
1235   'format' => '2',
1236 ))
1237 ->values(array(
1238   'bid' => '2',
1239   'body' => '<h3>My second custom block body</h3>',
1240   'info' => 'My block 2',
1241   'format' => '2',
1242 ))
1243 ->execute();
1244
1245 $connection->schema()->createTable('cache', array(
1246   'fields' => array(
1247     'cid' => array(
1248       'type' => 'varchar',
1249       'not null' => TRUE,
1250       'length' => '255',
1251       'default' => '',
1252     ),
1253     'data' => array(
1254       'type' => 'blob',
1255       'not null' => FALSE,
1256       'size' => 'big',
1257     ),
1258     'expire' => array(
1259       'type' => 'int',
1260       'not null' => TRUE,
1261       'size' => 'normal',
1262       'default' => '0',
1263     ),
1264     'created' => array(
1265       'type' => 'int',
1266       'not null' => TRUE,
1267       'size' => 'normal',
1268       'default' => '0',
1269     ),
1270     'headers' => array(
1271       'type' => 'text',
1272       'not null' => FALSE,
1273       'size' => 'normal',
1274     ),
1275     'serialized' => array(
1276       'type' => 'int',
1277       'not null' => TRUE,
1278       'size' => 'normal',
1279       'default' => '0',
1280     ),
1281   ),
1282   'primary key' => array(
1283     'cid',
1284   ),
1285   'mysql_character_set' => 'utf8',
1286 ));
1287
1288 $connection->schema()->createTable('cache_block', array(
1289   'fields' => array(
1290     'cid' => array(
1291       'type' => 'varchar',
1292       'not null' => TRUE,
1293       'length' => '255',
1294       'default' => '',
1295     ),
1296     'data' => array(
1297       'type' => 'blob',
1298       'not null' => FALSE,
1299       'size' => 'big',
1300     ),
1301     'expire' => array(
1302       'type' => 'int',
1303       'not null' => TRUE,
1304       'size' => 'normal',
1305       'default' => '0',
1306     ),
1307     'created' => array(
1308       'type' => 'int',
1309       'not null' => TRUE,
1310       'size' => 'normal',
1311       'default' => '0',
1312     ),
1313     'headers' => array(
1314       'type' => 'text',
1315       'not null' => FALSE,
1316       'size' => 'normal',
1317     ),
1318     'serialized' => array(
1319       'type' => 'int',
1320       'not null' => TRUE,
1321       'size' => 'normal',
1322       'default' => '0',
1323     ),
1324   ),
1325   'primary key' => array(
1326     'cid',
1327   ),
1328   'mysql_character_set' => 'utf8',
1329 ));
1330
1331 $connection->schema()->createTable('cache_bootstrap', array(
1332   'fields' => array(
1333     'cid' => array(
1334       'type' => 'varchar',
1335       'not null' => TRUE,
1336       'length' => '255',
1337       'default' => '',
1338     ),
1339     'data' => array(
1340       'type' => 'blob',
1341       'not null' => FALSE,
1342       'size' => 'big',
1343     ),
1344     'expire' => array(
1345       'type' => 'int',
1346       'not null' => TRUE,
1347       'size' => 'normal',
1348       'default' => '0',
1349     ),
1350     'created' => array(
1351       'type' => 'numeric',
1352       'not null' => TRUE,
1353       'precision' => '14',
1354       'scale' => '3',
1355       'default' => '0.000',
1356     ),
1357     'serialized' => array(
1358       'type' => 'int',
1359       'not null' => TRUE,
1360       'size' => 'normal',
1361       'default' => '0',
1362     ),
1363     'tags' => array(
1364       'type' => 'text',
1365       'not null' => FALSE,
1366       'size' => 'normal',
1367     ),
1368     'checksum_invalidations' => array(
1369       'type' => 'int',
1370       'not null' => TRUE,
1371       'size' => 'normal',
1372       'default' => '0',
1373     ),
1374     'checksum_deletions' => array(
1375       'type' => 'int',
1376       'not null' => TRUE,
1377       'size' => 'normal',
1378       'default' => '0',
1379     ),
1380   ),
1381   'primary key' => array(
1382     'cid',
1383   ),
1384   'mysql_character_set' => 'utf8',
1385 ));
1386
1387 $connection->schema()->createTable('cache_config', array(
1388   'fields' => array(
1389     'cid' => array(
1390       'type' => 'varchar',
1391       'not null' => TRUE,
1392       'length' => '255',
1393       'default' => '',
1394     ),
1395     'data' => array(
1396       'type' => 'blob',
1397       'not null' => FALSE,
1398       'size' => 'big',
1399     ),
1400     'expire' => array(
1401       'type' => 'int',
1402       'not null' => TRUE,
1403       'size' => 'normal',
1404       'default' => '0',
1405     ),
1406     'created' => array(
1407       'type' => 'numeric',
1408       'not null' => TRUE,
1409       'precision' => '14',
1410       'scale' => '3',
1411       'default' => '0.000',
1412     ),
1413     'serialized' => array(
1414       'type' => 'int',
1415       'not null' => TRUE,
1416       'size' => 'normal',
1417       'default' => '0',
1418     ),
1419     'tags' => array(
1420       'type' => 'text',
1421       'not null' => FALSE,
1422       'size' => 'normal',
1423     ),
1424     'checksum_invalidations' => array(
1425       'type' => 'int',
1426       'not null' => TRUE,
1427       'size' => 'normal',
1428       'default' => '0',
1429     ),
1430     'checksum_deletions' => array(
1431       'type' => 'int',
1432       'not null' => TRUE,
1433       'size' => 'normal',
1434       'default' => '0',
1435     ),
1436   ),
1437   'primary key' => array(
1438     'cid',
1439   ),
1440   'mysql_character_set' => 'utf8',
1441 ));
1442
1443 $connection->schema()->createTable('cache_content', array(
1444   'fields' => array(
1445     'cid' => array(
1446       'type' => 'varchar',
1447       'not null' => TRUE,
1448       'length' => '255',
1449       'default' => '',
1450     ),
1451     'data' => array(
1452       'type' => 'blob',
1453       'not null' => FALSE,
1454       'size' => 'big',
1455     ),
1456     'expire' => array(
1457       'type' => 'int',
1458       'not null' => TRUE,
1459       'size' => 'normal',
1460       'default' => '0',
1461     ),
1462     'created' => array(
1463       'type' => 'int',
1464       'not null' => TRUE,
1465       'size' => 'normal',
1466       'default' => '0',
1467     ),
1468     'headers' => array(
1469       'type' => 'text',
1470       'not null' => FALSE,
1471       'size' => 'normal',
1472     ),
1473     'serialized' => array(
1474       'type' => 'int',
1475       'not null' => TRUE,
1476       'size' => 'normal',
1477       'default' => '0',
1478     ),
1479   ),
1480   'primary key' => array(
1481     'cid',
1482   ),
1483   'mysql_character_set' => 'utf8',
1484 ));
1485
1486 $connection->schema()->createTable('cache_discovery', array(
1487   'fields' => array(
1488     'cid' => array(
1489       'type' => 'varchar',
1490       'not null' => TRUE,
1491       'length' => '255',
1492       'default' => '',
1493     ),
1494     'data' => array(
1495       'type' => 'blob',
1496       'not null' => FALSE,
1497       'size' => 'big',
1498     ),
1499     'expire' => array(
1500       'type' => 'int',
1501       'not null' => TRUE,
1502       'size' => 'normal',
1503       'default' => '0',
1504     ),
1505     'created' => array(
1506       'type' => 'numeric',
1507       'not null' => TRUE,
1508       'precision' => '14',
1509       'scale' => '3',
1510       'default' => '0.000',
1511     ),
1512     'serialized' => array(
1513       'type' => 'int',
1514       'not null' => TRUE,
1515       'size' => 'normal',
1516       'default' => '0',
1517     ),
1518     'tags' => array(
1519       'type' => 'text',
1520       'not null' => FALSE,
1521       'size' => 'normal',
1522     ),
1523     'checksum_invalidations' => array(
1524       'type' => 'int',
1525       'not null' => TRUE,
1526       'size' => 'normal',
1527       'default' => '0',
1528     ),
1529     'checksum_deletions' => array(
1530       'type' => 'int',
1531       'not null' => TRUE,
1532       'size' => 'normal',
1533       'default' => '0',
1534     ),
1535   ),
1536   'primary key' => array(
1537     'cid',
1538   ),
1539   'mysql_character_set' => 'utf8',
1540 ));
1541
1542 $connection->schema()->createTable('cache_filter', array(
1543   'fields' => array(
1544     'cid' => array(
1545       'type' => 'varchar',
1546       'not null' => TRUE,
1547       'length' => '255',
1548       'default' => '',
1549     ),
1550     'data' => array(
1551       'type' => 'blob',
1552       'not null' => FALSE,
1553       'size' => 'big',
1554     ),
1555     'expire' => array(
1556       'type' => 'int',
1557       'not null' => TRUE,
1558       'size' => 'normal',
1559       'default' => '0',
1560     ),
1561     'created' => array(
1562       'type' => 'int',
1563       'not null' => TRUE,
1564       'size' => 'normal',
1565       'default' => '0',
1566     ),
1567     'headers' => array(
1568       'type' => 'text',
1569       'not null' => FALSE,
1570       'size' => 'normal',
1571     ),
1572     'serialized' => array(
1573       'type' => 'int',
1574       'not null' => TRUE,
1575       'size' => 'normal',
1576       'default' => '0',
1577     ),
1578   ),
1579   'primary key' => array(
1580     'cid',
1581   ),
1582   'mysql_character_set' => 'utf8',
1583 ));
1584
1585 $connection->schema()->createTable('cache_form', array(
1586   'fields' => array(
1587     'cid' => array(
1588       'type' => 'varchar',
1589       'not null' => TRUE,
1590       'length' => '255',
1591       'default' => '',
1592     ),
1593     'data' => array(
1594       'type' => 'blob',
1595       'not null' => FALSE,
1596       'size' => 'big',
1597     ),
1598     'expire' => array(
1599       'type' => 'int',
1600       'not null' => TRUE,
1601       'size' => 'normal',
1602       'default' => '0',
1603     ),
1604     'created' => array(
1605       'type' => 'int',
1606       'not null' => TRUE,
1607       'size' => 'normal',
1608       'default' => '0',
1609     ),
1610     'headers' => array(
1611       'type' => 'text',
1612       'not null' => FALSE,
1613       'size' => 'normal',
1614     ),
1615     'serialized' => array(
1616       'type' => 'int',
1617       'not null' => TRUE,
1618       'size' => 'normal',
1619       'default' => '0',
1620     ),
1621   ),
1622   'primary key' => array(
1623     'cid',
1624   ),
1625   'mysql_character_set' => 'utf8',
1626 ));
1627
1628 $connection->schema()->createTable('cache_menu', array(
1629   'fields' => array(
1630     'cid' => array(
1631       'type' => 'varchar',
1632       'not null' => TRUE,
1633       'length' => '255',
1634       'default' => '',
1635     ),
1636     'data' => array(
1637       'type' => 'blob',
1638       'not null' => FALSE,
1639       'size' => 'big',
1640     ),
1641     'expire' => array(
1642       'type' => 'int',
1643       'not null' => TRUE,
1644       'size' => 'normal',
1645       'default' => '0',
1646     ),
1647     'created' => array(
1648       'type' => 'int',
1649       'not null' => TRUE,
1650       'size' => 'normal',
1651       'default' => '0',
1652     ),
1653     'headers' => array(
1654       'type' => 'text',
1655       'not null' => FALSE,
1656       'size' => 'normal',
1657     ),
1658     'serialized' => array(
1659       'type' => 'int',
1660       'not null' => TRUE,
1661       'size' => 'normal',
1662       'default' => '0',
1663     ),
1664   ),
1665   'primary key' => array(
1666     'cid',
1667   ),
1668   'mysql_character_set' => 'utf8',
1669 ));
1670
1671 $connection->schema()->createTable('cache_page', array(
1672   'fields' => array(
1673     'cid' => array(
1674       'type' => 'varchar',
1675       'not null' => TRUE,
1676       'length' => '255',
1677       'default' => '',
1678     ),
1679     'data' => array(
1680       'type' => 'blob',
1681       'not null' => FALSE,
1682       'size' => 'big',
1683     ),
1684     'expire' => array(
1685       'type' => 'int',
1686       'not null' => TRUE,
1687       'size' => 'normal',
1688       'default' => '0',
1689     ),
1690     'created' => array(
1691       'type' => 'int',
1692       'not null' => TRUE,
1693       'size' => 'normal',
1694       'default' => '0',
1695     ),
1696     'headers' => array(
1697       'type' => 'text',
1698       'not null' => FALSE,
1699       'size' => 'normal',
1700     ),
1701     'serialized' => array(
1702       'type' => 'int',
1703       'not null' => TRUE,
1704       'size' => 'normal',
1705       'default' => '0',
1706     ),
1707   ),
1708   'primary key' => array(
1709     'cid',
1710   ),
1711   'mysql_character_set' => 'utf8',
1712 ));
1713
1714 $connection->schema()->createTable('cache_update', array(
1715   'fields' => array(
1716     'cid' => array(
1717       'type' => 'varchar',
1718       'not null' => TRUE,
1719       'length' => '255',
1720       'default' => '',
1721     ),
1722     'data' => array(
1723       'type' => 'blob',
1724       'not null' => FALSE,
1725       'size' => 'big',
1726     ),
1727     'expire' => array(
1728       'type' => 'int',
1729       'not null' => TRUE,
1730       'size' => 'normal',
1731       'default' => '0',
1732     ),
1733     'created' => array(
1734       'type' => 'int',
1735       'not null' => TRUE,
1736       'size' => 'normal',
1737       'default' => '0',
1738     ),
1739     'headers' => array(
1740       'type' => 'text',
1741       'not null' => FALSE,
1742       'size' => 'normal',
1743     ),
1744     'serialized' => array(
1745       'type' => 'int',
1746       'not null' => TRUE,
1747       'size' => 'normal',
1748       'default' => '0',
1749     ),
1750   ),
1751   'primary key' => array(
1752     'cid',
1753   ),
1754   'mysql_character_set' => 'utf8',
1755 ));
1756
1757 $connection->schema()->createTable('cachetags', array(
1758   'fields' => array(
1759     'tag' => array(
1760       'type' => 'varchar',
1761       'not null' => TRUE,
1762       'length' => '255',
1763       'default' => '',
1764     ),
1765     'invalidations' => array(
1766       'type' => 'int',
1767       'not null' => TRUE,
1768       'size' => 'normal',
1769       'default' => '0',
1770     ),
1771     'deletions' => array(
1772       'type' => 'int',
1773       'not null' => TRUE,
1774       'size' => 'normal',
1775       'default' => '0',
1776     ),
1777   ),
1778   'primary key' => array(
1779     'tag',
1780   ),
1781   'mysql_character_set' => 'utf8',
1782 ));
1783
1784 $connection->schema()->createTable('comments', array(
1785   'fields' => array(
1786     'cid' => array(
1787       'type' => 'serial',
1788       'not null' => TRUE,
1789       'size' => 'normal',
1790     ),
1791     'pid' => array(
1792       'type' => 'int',
1793       'not null' => TRUE,
1794       'size' => 'normal',
1795       'default' => '0',
1796     ),
1797     'nid' => array(
1798       'type' => 'int',
1799       'not null' => TRUE,
1800       'size' => 'normal',
1801       'default' => '0',
1802     ),
1803     'uid' => array(
1804       'type' => 'int',
1805       'not null' => TRUE,
1806       'size' => 'normal',
1807       'default' => '0',
1808     ),
1809     'subject' => array(
1810       'type' => 'varchar',
1811       'not null' => TRUE,
1812       'length' => '64',
1813       'default' => '',
1814     ),
1815     'comment' => array(
1816       'type' => 'text',
1817       'not null' => TRUE,
1818       'size' => 'normal',
1819     ),
1820     'hostname' => array(
1821       'type' => 'varchar',
1822       'not null' => TRUE,
1823       'length' => '128',
1824       'default' => '',
1825     ),
1826     'timestamp' => array(
1827       'type' => 'int',
1828       'not null' => TRUE,
1829       'size' => 'normal',
1830       'default' => '0',
1831     ),
1832     'status' => array(
1833       'type' => 'int',
1834       'not null' => TRUE,
1835       'size' => 'normal',
1836       'default' => '0',
1837       'unsigned' => TRUE,
1838     ),
1839     'format' => array(
1840       'type' => 'int',
1841       'not null' => TRUE,
1842       'size' => 'normal',
1843       'default' => '0',
1844     ),
1845     'thread' => array(
1846       'type' => 'varchar',
1847       'not null' => TRUE,
1848       'length' => '255',
1849     ),
1850     'name' => array(
1851       'type' => 'varchar',
1852       'not null' => FALSE,
1853       'length' => '60',
1854     ),
1855     'mail' => array(
1856       'type' => 'varchar',
1857       'not null' => FALSE,
1858       'length' => '64',
1859     ),
1860     'homepage' => array(
1861       'type' => 'varchar',
1862       'not null' => FALSE,
1863       'length' => '255',
1864     ),
1865   ),
1866   'primary key' => array(
1867     'cid',
1868   ),
1869   'indexes' => array(
1870     'pid' => array(
1871       'pid',
1872     ),
1873     'comment_uid' => array(
1874       'uid',
1875     ),
1876   ),
1877   'mysql_character_set' => 'utf8',
1878 ));
1879
1880 $connection->insert('comments')
1881 ->fields(array(
1882   'cid',
1883   'pid',
1884   'nid',
1885   'uid',
1886   'subject',
1887   'comment',
1888   'hostname',
1889   'timestamp',
1890   'status',
1891   'format',
1892   'thread',
1893   'name',
1894   'mail',
1895   'homepage',
1896 ))
1897 ->values(array(
1898   'cid' => '1',
1899   'pid' => '0',
1900   'nid' => '1',
1901   'uid' => '0',
1902   'subject' => 'The first comment.',
1903   'comment' => 'The first comment body.',
1904   'hostname' => '203.0.113.1',
1905   'timestamp' => '1390264918',
1906   'status' => '0',
1907   'format' => '1',
1908   'thread' => '01/',
1909   'name' => '1st comment author name',
1910   'mail' => 'comment1@example.com',
1911   'homepage' => 'https://www.drupal.org',
1912 ))
1913 ->values(array(
1914   'cid' => '2',
1915   'pid' => '3',
1916   'nid' => '1',
1917   'uid' => '0',
1918   'subject' => 'The response to the second comment.',
1919   'comment' => 'The second comment response body.',
1920   'hostname' => '203.0.113.2',
1921   'timestamp' => '1390264938',
1922   'status' => '0',
1923   'format' => '1',
1924   'thread' => '02/01',
1925   'name' => '3rd comment author name',
1926   'mail' => 'comment3@example.com',
1927   'homepage' => 'https://www.drupal.org',
1928 ))
1929 ->values(array(
1930   'cid' => '3',
1931   'pid' => '0',
1932   'nid' => '1',
1933   'uid' => '0',
1934   'subject' => 'The second comment.',
1935   'comment' => 'The second comment body.',
1936   'hostname' => '203.0.113.3',
1937   'timestamp' => '1390264948',
1938   'status' => '1',
1939   'format' => '1',
1940   'thread' => '02/',
1941   'name' => '3rd comment author name',
1942   'mail' => 'comment3@example.com',
1943   'homepage' => 'https://www.drupal.org',
1944 ))
1945 ->values(array(
1946   'cid' => '4',
1947   'pid' => '0',
1948   'nid' => '19',
1949   'uid' => '1',
1950   'subject' => 'Subject 1',
1951   'comment' => 'Comment 1',
1952   'hostname' => '127.0.0.1',
1953   'timestamp' => '1501955780',
1954   'status' => '0',
1955   'format' => '1',
1956   'thread' => '01/',
1957   'name' => 'root',
1958   'mail' => '',
1959   'homepage' => '',
1960 ))
1961 ->values(array(
1962   'cid' => '5',
1963   'pid' => '4',
1964   'nid' => '19',
1965   'uid' => '1',
1966   'subject' => 'Subject 2',
1967   'comment' => 'Comment 2',
1968   'hostname' => '127.0.0.1',
1969   'timestamp' => '1501955792',
1970   'status' => '0',
1971   'format' => '1',
1972   'thread' => '01.00/',
1973   'name' => 'root',
1974   'mail' => '',
1975   'homepage' => '',
1976 ))
1977 ->values(array(
1978   'cid' => '6',
1979   'pid' => '5',
1980   'nid' => '19',
1981   'uid' => '1',
1982   'subject' => 'Subject 3',
1983   'comment' => 'Comment 3',
1984   'hostname' => '127.0.0.1',
1985   'timestamp' => '1501955803',
1986   'status' => '0',
1987   'format' => '1',
1988   'thread' => '01.00.00/',
1989   'name' => 'root',
1990   'mail' => '',
1991   'homepage' => '',
1992 ))
1993 ->values(array(
1994   'cid' => '7',
1995   'pid' => '0',
1996   'nid' => '21',
1997   'uid' => '1',
1998   'subject' => 'Comment to John Smith - EN',
1999   'comment' => 'This is an English comment.',
2000   'hostname' => '2001:14ba:13f8:300:d9d0:363c:9fe4:66e1',
2001   'timestamp' => '1534014729',
2002   'status' => '0',
2003   'format' => '1',
2004   'thread' => '01/',
2005   'name' => 'root',
2006   'mail' => '',
2007   'homepage' => '',
2008 ))
2009 ->values(array(
2010   'cid' => '8',
2011   'pid' => '0',
2012   'nid' => '22',
2013   'uid' => '1',
2014   'subject' => 'Comment to John Smith - FR',
2015   'comment' => 'This is a French comment.',
2016   'hostname' => '2001:14ba:13f8:300:d9d0:363c:9fe4:66e1',
2017   'timestamp' => '1534014763',
2018   'status' => '0',
2019   'format' => '1',
2020   'thread' => '01/',
2021   'name' => 'root',
2022   'mail' => '',
2023   'homepage' => '',
2024 ))
2025 ->execute();
2026
2027 $connection->schema()->createTable('config', array(
2028   'fields' => array(
2029     'collection' => array(
2030       'type' => 'varchar',
2031       'not null' => TRUE,
2032       'length' => '255',
2033       'default' => '',
2034     ),
2035     'name' => array(
2036       'type' => 'varchar',
2037       'not null' => TRUE,
2038       'length' => '255',
2039       'default' => '',
2040     ),
2041     'data' => array(
2042       'type' => 'blob',
2043       'not null' => FALSE,
2044       'size' => 'normal',
2045     ),
2046   ),
2047   'primary key' => array(
2048     'collection',
2049     'name',
2050   ),
2051   'mysql_character_set' => 'utf8',
2052 ));
2053
2054 $connection->insert('config')
2055 ->fields(array(
2056   'collection',
2057   'name',
2058   'data',
2059 ))
2060 ->values(array(
2061   'collection' => '',
2062   'name' => 'system.file',
2063   'data' => 'a:1:{s:4:"path";a:1:{s:9:"temporary";s:4:"/tmp";}}',
2064 ))
2065 ->execute();
2066
2067 $connection->schema()->createTable('contact', array(
2068   'fields' => array(
2069     'cid' => array(
2070       'type' => 'serial',
2071       'not null' => TRUE,
2072       'size' => 'normal',
2073       'unsigned' => TRUE,
2074     ),
2075     'category' => array(
2076       'type' => 'varchar',
2077       'not null' => TRUE,
2078       'length' => '255',
2079       'default' => '',
2080     ),
2081     'recipients' => array(
2082       'type' => 'text',
2083       'not null' => TRUE,
2084       'size' => 'normal',
2085     ),
2086     'reply' => array(
2087       'type' => 'text',
2088       'not null' => TRUE,
2089       'size' => 'normal',
2090     ),
2091     'weight' => array(
2092       'type' => 'int',
2093       'not null' => TRUE,
2094       'size' => 'normal',
2095       'default' => '0',
2096     ),
2097     'selected' => array(
2098       'type' => 'int',
2099       'not null' => TRUE,
2100       'size' => 'normal',
2101       'default' => '0',
2102     ),
2103   ),
2104   'primary key' => array(
2105     'cid',
2106   ),
2107   'mysql_character_set' => 'utf8',
2108 ));
2109
2110 $connection->insert('contact')
2111 ->fields(array(
2112   'cid',
2113   'category',
2114   'recipients',
2115   'reply',
2116   'weight',
2117   'selected',
2118 ))
2119 ->values(array(
2120   'cid' => '1',
2121   'category' => 'Website feedback',
2122   'recipients' => 'admin@example.com',
2123   'reply' => '',
2124   'weight' => '0',
2125   'selected' => '0',
2126 ))
2127 ->values(array(
2128   'cid' => '2',
2129   'category' => 'Some other category',
2130   'recipients' => 'test@example.com',
2131   'reply' => 'Thanks for contacting us, we will reply ASAP!',
2132   'weight' => '1',
2133   'selected' => '1',
2134 ))
2135 ->values(array(
2136   'cid' => '3',
2137   'category' => 'A category much longer than thirty two characters',
2138   'recipients' => 'fortyninechars@example.com',
2139   'reply' => '',
2140   'weight' => '2',
2141   'selected' => '0',
2142 ))
2143 ->execute();
2144
2145 $connection->schema()->createTable('content_field_company', array(
2146   'fields' => array(
2147     'vid' => array(
2148       'type' => 'int',
2149       'not null' => TRUE,
2150       'size' => 'normal',
2151       'default' => '0',
2152       'unsigned' => TRUE,
2153     ),
2154     'nid' => array(
2155       'type' => 'int',
2156       'not null' => TRUE,
2157       'size' => 'normal',
2158       'default' => '0',
2159       'unsigned' => TRUE,
2160     ),
2161     'delta' => array(
2162       'type' => 'int',
2163       'not null' => TRUE,
2164       'size' => 'normal',
2165       'default' => '0',
2166       'unsigned' => TRUE,
2167     ),
2168     'field_company_nid' => array(
2169       'type' => 'int',
2170       'not null' => FALSE,
2171       'size' => 'normal',
2172       'unsigned' => TRUE,
2173     ),
2174   ),
2175   'primary key' => array(
2176     'vid',
2177     'delta',
2178   ),
2179   'indexes' => array(
2180     'nid' => array(
2181       'nid',
2182     ),
2183     'field_company_nid' => array(
2184       'field_company_nid',
2185     ),
2186   ),
2187   'mysql_character_set' => 'utf8',
2188 ));
2189
2190 $connection->insert('content_field_company')
2191 ->fields(array(
2192   'vid',
2193   'nid',
2194   'delta',
2195   'field_company_nid',
2196 ))
2197 ->values(array(
2198   'vid' => '21',
2199   'nid' => '18',
2200   'delta' => '0',
2201   'field_company_nid' => '15',
2202 ))
2203 ->values(array(
2204   'vid' => '2002',
2205   'nid' => '21',
2206   'delta' => '0',
2207   'field_company_nid' => NULL,
2208 ))
2209 ->values(array(
2210   'vid' => '2003',
2211   'nid' => '22',
2212   'delta' => '0',
2213   'field_company_nid' => NULL,
2214 ))
2215 ->values(array(
2216   'vid' => '21',
2217   'nid' => '18',
2218   'delta' => '1',
2219   'field_company_nid' => '16',
2220 ))
2221 ->execute();
2222
2223 $connection->schema()->createTable('content_field_image', array(
2224   'fields' => array(
2225     'vid' => array(
2226       'type' => 'int',
2227       'not null' => TRUE,
2228       'size' => 'normal',
2229       'default' => '0',
2230       'unsigned' => TRUE,
2231     ),
2232     'nid' => array(
2233       'type' => 'int',
2234       'not null' => TRUE,
2235       'size' => 'normal',
2236       'default' => '0',
2237       'unsigned' => TRUE,
2238     ),
2239     'field_image_fid' => array(
2240       'type' => 'int',
2241       'not null' => FALSE,
2242       'size' => 'normal',
2243     ),
2244     'field_image_list' => array(
2245       'type' => 'int',
2246       'not null' => FALSE,
2247       'size' => 'normal',
2248     ),
2249     'field_image_data' => array(
2250       'type' => 'text',
2251       'not null' => FALSE,
2252       'size' => 'normal',
2253     ),
2254   ),
2255   'primary key' => array(
2256     'vid',
2257   ),
2258   'mysql_character_set' => 'utf8',
2259 ));
2260
2261 $connection->insert('content_field_image')
2262 ->fields(array(
2263   'vid',
2264   'nid',
2265   'field_image_fid',
2266   'field_image_list',
2267   'field_image_data',
2268 ))
2269 ->values(array(
2270   'vid' => '1',
2271   'nid' => '1',
2272   'field_image_fid' => '2',
2273   'field_image_list' => '1',
2274   'field_image_data' => 'a:2:{s:3:"alt";s:0:"";s:5:"title";s:0:"";}',
2275 ))
2276 ->values(array(
2277   'vid' => '2',
2278   'nid' => '2',
2279   'field_image_fid' => NULL,
2280   'field_image_list' => NULL,
2281   'field_image_data' => NULL,
2282 ))
2283 ->values(array(
2284   'vid' => '3',
2285   'nid' => '1',
2286   'field_image_fid' => '2',
2287   'field_image_list' => '1',
2288   'field_image_data' => 'a:2:{s:3:"alt";s:0:"";s:5:"title";s:0:"";}',
2289 ))
2290 ->execute();
2291
2292 $connection->schema()->createTable('content_field_multivalue', array(
2293   'fields' => array(
2294     'vid' => array(
2295       'type' => 'int',
2296       'not null' => TRUE,
2297       'size' => 'normal',
2298       'default' => '0',
2299       'unsigned' => TRUE,
2300     ),
2301     'nid' => array(
2302       'type' => 'int',
2303       'not null' => TRUE,
2304       'size' => 'normal',
2305       'default' => '0',
2306       'unsigned' => TRUE,
2307     ),
2308     'field_multivalue_value' => array(
2309       'type' => 'numeric',
2310       'not null' => FALSE,
2311       'precision' => '10',
2312       'scale' => '2',
2313     ),
2314     'delta' => array(
2315       'type' => 'int',
2316       'not null' => TRUE,
2317       'size' => 'normal',
2318       'default' => '0',
2319       'unsigned' => TRUE,
2320     ),
2321   ),
2322   'primary key' => array(
2323     'vid',
2324     'delta',
2325   ),
2326   'indexes' => array(
2327     'nid' => array(
2328       'nid',
2329     ),
2330   ),
2331   'mysql_character_set' => 'utf8',
2332 ));
2333
2334 $connection->insert('content_field_multivalue')
2335 ->fields(array(
2336   'vid',
2337   'nid',
2338   'field_multivalue_value',
2339   'delta',
2340 ))
2341 ->values(array(
2342   'vid' => '4',
2343   'nid' => '3',
2344   'field_multivalue_value' => '33.00',
2345   'delta' => '0',
2346 ))
2347 ->values(array(
2348   'vid' => '4',
2349   'nid' => '3',
2350   'field_multivalue_value' => '44.00',
2351   'delta' => '1',
2352 ))
2353 ->execute();
2354
2355 $connection->schema()->createTable('content_field_test', array(
2356   'fields' => array(
2357     'vid' => array(
2358       'type' => 'int',
2359       'not null' => TRUE,
2360       'size' => 'normal',
2361       'default' => '0',
2362       'unsigned' => TRUE,
2363     ),
2364     'nid' => array(
2365       'type' => 'int',
2366       'not null' => TRUE,
2367       'size' => 'normal',
2368       'default' => '0',
2369       'unsigned' => TRUE,
2370     ),
2371     'field_test_value' => array(
2372       'type' => 'text',
2373       'not null' => FALSE,
2374       'size' => 'normal',
2375     ),
2376     'field_test_format' => array(
2377       'type' => 'int',
2378       'not null' => FALSE,
2379       'size' => 'normal',
2380       'unsigned' => TRUE,
2381     ),
2382   ),
2383   'primary key' => array(
2384     'vid',
2385   ),
2386   'indexes' => array(
2387     'nid' => array(
2388       'nid',
2389     ),
2390   ),
2391   'mysql_character_set' => 'utf8',
2392 ));
2393
2394 $connection->insert('content_field_test')
2395 ->fields(array(
2396   'vid',
2397   'nid',
2398   'field_test_value',
2399   'field_test_format',
2400 ))
2401 ->values(array(
2402   'vid' => '1',
2403   'nid' => '1',
2404   'field_test_value' => 'This is a shared text field',
2405   'field_test_format' => '1',
2406 ))
2407 ->values(array(
2408   'vid' => '2',
2409   'nid' => '1',
2410   'field_test_value' => 'This is a shared text field',
2411   'field_test_format' => '1',
2412 ))
2413 ->values(array(
2414   'vid' => '3',
2415   'nid' => '2',
2416   'field_test_value' => NULL,
2417   'field_test_format' => NULL,
2418 ))
2419 ->values(array(
2420   'vid' => '5',
2421   'nid' => '2',
2422   'field_test_value' => NULL,
2423   'field_test_format' => NULL,
2424 ))
2425 ->values(array(
2426   'vid' => '12',
2427   'nid' => '9',
2428   'field_test_value' => 'text for default value',
2429   'field_test_format' => '1',
2430 ))
2431 ->execute();
2432
2433 $connection->schema()->createTable('content_field_test_text_single_checkbox', array(
2434   'fields' => array(
2435     'vid' => array(
2436       'type' => 'int',
2437       'not null' => TRUE,
2438       'size' => 'normal',
2439       'default' => '0',
2440       'unsigned' => TRUE,
2441     ),
2442     'nid' => array(
2443       'type' => 'int',
2444       'not null' => TRUE,
2445       'size' => 'normal',
2446       'default' => '0',
2447       'unsigned' => TRUE,
2448     ),
2449     'field_test_text_single_checkbox_value' => array(
2450       'type' => 'text',
2451       'not null' => FALSE,
2452       'size' => 'normal',
2453     ),
2454   ),
2455   'primary key' => array(
2456     'vid',
2457   ),
2458   'indexes' => array(
2459     'nid' => array(
2460       'nid',
2461     ),
2462   ),
2463   'mysql_character_set' => 'utf8',
2464 ));
2465
2466 $connection->insert('content_field_test_text_single_checkbox')
2467 ->fields(array(
2468   'vid',
2469   'nid',
2470   'field_test_text_single_checkbox_value',
2471 ))
2472 ->values(array(
2473   'vid' => '1',
2474   'nid' => '1',
2475   'field_test_text_single_checkbox_value' => '0',
2476 ))
2477 ->values(array(
2478   'vid' => '2',
2479   'nid' => '1',
2480   'field_test_text_single_checkbox_value' => NULL,
2481 ))
2482 ->values(array(
2483   'vid' => '3',
2484   'nid' => '2',
2485   'field_test_text_single_checkbox_value' => NULL,
2486 ))
2487 ->values(array(
2488   'vid' => '5',
2489   'nid' => '2',
2490   'field_test_text_single_checkbox_value' => NULL,
2491 ))
2492 ->values(array(
2493   'vid' => '12',
2494   'nid' => '9',
2495   'field_test_text_single_checkbox_value' => '0',
2496 ))
2497 ->execute();
2498
2499 $connection->schema()->createTable('content_field_test_two', array(
2500   'fields' => array(
2501     'vid' => array(
2502       'type' => 'int',
2503       'not null' => TRUE,
2504       'size' => 'normal',
2505       'default' => '0',
2506       'unsigned' => TRUE,
2507     ),
2508     'nid' => array(
2509       'type' => 'int',
2510       'not null' => TRUE,
2511       'size' => 'normal',
2512       'default' => '0',
2513       'unsigned' => TRUE,
2514     ),
2515     'delta' => array(
2516       'type' => 'int',
2517       'not null' => TRUE,
2518       'size' => 'normal',
2519       'default' => '0',
2520       'unsigned' => TRUE,
2521     ),
2522     'field_test_two_value' => array(
2523       'type' => 'int',
2524       'not null' => FALSE,
2525       'size' => 'normal',
2526     ),
2527   ),
2528   'primary key' => array(
2529     'vid',
2530     'delta',
2531   ),
2532   'indexes' => array(
2533     'nid' => array(
2534       'nid',
2535     ),
2536   ),
2537   'mysql_character_set' => 'utf8',
2538 ));
2539
2540 $connection->insert('content_field_test_two')
2541 ->fields(array(
2542   'vid',
2543   'nid',
2544   'delta',
2545   'field_test_two_value',
2546 ))
2547 ->values(array(
2548   'vid' => '1',
2549   'nid' => '1',
2550   'delta' => '0',
2551   'field_test_two_value' => '10',
2552 ))
2553 ->values(array(
2554   'vid' => '2',
2555   'nid' => '1',
2556   'delta' => '0',
2557   'field_test_two_value' => NULL,
2558 ))
2559 ->values(array(
2560   'vid' => '3',
2561   'nid' => '2',
2562   'delta' => '0',
2563   'field_test_two_value' => NULL,
2564 ))
2565 ->values(array(
2566   'vid' => '5',
2567   'nid' => '2',
2568   'delta' => '0',
2569   'field_test_two_value' => NULL,
2570 ))
2571 ->values(array(
2572   'vid' => '12',
2573   'nid' => '9',
2574   'delta' => '0',
2575   'field_test_two_value' => NULL,
2576 ))
2577 ->values(array(
2578   'vid' => '1',
2579   'nid' => '1',
2580   'delta' => '1',
2581   'field_test_two_value' => '20',
2582 ))
2583 ->execute();
2584
2585 $connection->schema()->createTable('content_group', array(
2586   'fields' => array(
2587     'group_type' => array(
2588       'type' => 'varchar',
2589       'not null' => TRUE,
2590       'length' => '32',
2591       'default' => 'standard',
2592     ),
2593     'type_name' => array(
2594       'type' => 'varchar',
2595       'not null' => TRUE,
2596       'length' => '32',
2597       'default' => '',
2598     ),
2599     'group_name' => array(
2600       'type' => 'varchar',
2601       'not null' => TRUE,
2602       'length' => '32',
2603       'default' => '',
2604     ),
2605     'label' => array(
2606       'type' => 'varchar',
2607       'not null' => TRUE,
2608       'length' => '255',
2609       'default' => '',
2610     ),
2611     'settings' => array(
2612       'type' => 'text',
2613       'not null' => TRUE,
2614       'size' => 'normal',
2615     ),
2616     'weight' => array(
2617       'type' => 'int',
2618       'not null' => TRUE,
2619       'size' => 'normal',
2620       'default' => '0',
2621     ),
2622   ),
2623   'primary key' => array(
2624     'type_name',
2625     'group_name',
2626   ),
2627   'mysql_character_set' => 'utf8',
2628 ));
2629
2630 $connection->schema()->createTable('content_group_fields', array(
2631   'fields' => array(
2632     'type_name' => array(
2633       'type' => 'varchar',
2634       'not null' => TRUE,
2635       'length' => '32',
2636       'default' => '',
2637     ),
2638     'group_name' => array(
2639       'type' => 'varchar',
2640       'not null' => TRUE,
2641       'length' => '32',
2642       'default' => '',
2643     ),
2644     'field_name' => array(
2645       'type' => 'varchar',
2646       'not null' => TRUE,
2647       'length' => '32',
2648       'default' => '',
2649     ),
2650   ),
2651   'primary key' => array(
2652     'type_name',
2653     'group_name',
2654     'field_name',
2655   ),
2656   'mysql_character_set' => 'utf8',
2657 ));
2658
2659 $connection->schema()->createTable('content_node_field', array(
2660   'fields' => array(
2661     'field_name' => array(
2662       'type' => 'varchar',
2663       'not null' => TRUE,
2664       'length' => '32',
2665       'default' => '',
2666     ),
2667     'type' => array(
2668       'type' => 'varchar',
2669       'not null' => TRUE,
2670       'length' => '127',
2671       'default' => '',
2672     ),
2673     'global_settings' => array(
2674       'type' => 'text',
2675       'not null' => TRUE,
2676       'size' => 'normal',
2677     ),
2678     'required' => array(
2679       'type' => 'int',
2680       'not null' => TRUE,
2681       'size' => 'normal',
2682       'default' => '0',
2683     ),
2684     'multiple' => array(
2685       'type' => 'int',
2686       'not null' => TRUE,
2687       'size' => 'normal',
2688       'default' => '0',
2689     ),
2690     'db_storage' => array(
2691       'type' => 'int',
2692       'not null' => TRUE,
2693       'size' => 'normal',
2694       'default' => '1',
2695     ),
2696     'module' => array(
2697       'type' => 'varchar',
2698       'not null' => TRUE,
2699       'length' => '127',
2700       'default' => '',
2701     ),
2702     'db_columns' => array(
2703       'type' => 'text',
2704       'not null' => TRUE,
2705       'size' => 'normal',
2706     ),
2707     'active' => array(
2708       'type' => 'int',
2709       'not null' => TRUE,
2710       'size' => 'normal',
2711       'default' => '0',
2712     ),
2713     'locked' => array(
2714       'type' => 'int',
2715       'not null' => TRUE,
2716       'size' => 'tiny',
2717       'default' => '0',
2718     ),
2719   ),
2720   'primary key' => array(
2721     'field_name',
2722   ),
2723   'mysql_character_set' => 'utf8',
2724 ));
2725
2726 $connection->insert('content_node_field')
2727 ->fields(array(
2728   'field_name',
2729   'type',
2730   'global_settings',
2731   'required',
2732   'multiple',
2733   'db_storage',
2734   'module',
2735   'db_columns',
2736   'active',
2737   'locked',
2738 ))
2739 ->values(array(
2740   'field_name' => 'field_commander',
2741   'type' => 'userreference',
2742   '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:"";}',
2743   'required' => '0',
2744   'multiple' => '0',
2745   'db_storage' => '1',
2746   'module' => 'userreference',
2747   '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;}}',
2748   'active' => '1',
2749   'locked' => '0',
2750 ))
2751 ->values(array(
2752   'field_name' => 'field_company',
2753   'type' => 'nodereference',
2754   '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;}}',
2755   'required' => '0',
2756   'multiple' => '1',
2757   'db_storage' => '0',
2758   'module' => 'nodereference',
2759   '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;}}',
2760   'active' => '1',
2761   'locked' => '0',
2762 ))
2763 ->values(array(
2764   'field_name' => 'field_company_2',
2765   'type' => 'nodereference',
2766   '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;}}',
2767   'required' => '0',
2768   'multiple' => '0',
2769   'db_storage' => '1',
2770   'module' => 'nodereference',
2771   '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;}}',
2772   'active' => '1',
2773   'locked' => '0',
2774 ))
2775 ->values(array(
2776   'field_name' => 'field_company_3',
2777   'type' => 'nodereference',
2778   '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;}}',
2779   'required' => '0',
2780   'multiple' => '0',
2781   'db_storage' => '1',
2782   'module' => 'nodereference',
2783   '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;}}',
2784   'active' => '1',
2785   'locked' => '0',
2786 ))
2787 ->values(array(
2788   'field_name' => 'field_multivalue',
2789   'type' => 'number_decimal',
2790   '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:".";}',
2791   'required' => '0',
2792   'multiple' => '1',
2793   'db_storage' => '0',
2794   'module' => 'number',
2795   '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;}}',
2796   'active' => '1',
2797   'locked' => '0',
2798 ))
2799 ->values(array(
2800   'field_name' => 'field_reference',
2801   'type' => 'nodereference',
2802   '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;}}',
2803   'required' => '0',
2804   'multiple' => '0',
2805   'db_storage' => '1',
2806   'module' => 'nodereference',
2807   '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;}}',
2808   'active' => '1',
2809   'locked' => '0',
2810 ))
2811 ->values(array(
2812   'field_name' => 'field_reference_2',
2813   'type' => 'nodereference',
2814   '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;}}',
2815   'required' => '0',
2816   'multiple' => '0',
2817   'db_storage' => '1',
2818   'module' => 'nodereference',
2819   '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;}}',
2820   'active' => '1',
2821   'locked' => '0',
2822 ))
2823 ->values(array(
2824   'field_name' => 'field_test',
2825   'type' => 'text',
2826   '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:"";}',
2827   'required' => '0',
2828   'multiple' => '0',
2829   'db_storage' => '0',
2830   'module' => 'text',
2831   '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;}}',
2832   'active' => '1',
2833   'locked' => '0',
2834 ))
2835 ->values(array(
2836   'field_name' => 'field_test_date',
2837   'type' => 'date',
2838   '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";}',
2839   'required' => '0',
2840   'multiple' => '0',
2841   'db_storage' => '1',
2842   'module' => 'date',
2843   '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;}}',
2844   'active' => '1',
2845   'locked' => '0',
2846 ))
2847 ->values(array(
2848   'field_name' => 'field_test_datestamp',
2849   'type' => 'datestamp',
2850   '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:"";}',
2851   'required' => '0',
2852   'multiple' => '0',
2853   'db_storage' => '1',
2854   'module' => 'date',
2855   '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;}}',
2856   'active' => '1',
2857   'locked' => '0',
2858 ))
2859 ->values(array(
2860   'field_name' => 'field_test_datetime',
2861   'type' => 'datetime',
2862   '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:"";}',
2863   'required' => '0',
2864   'multiple' => '0',
2865   'db_storage' => '1',
2866   'module' => 'date',
2867   '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;}}',
2868   'active' => '1',
2869   'locked' => '0',
2870 ))
2871 ->values(array(
2872   'field_name' => 'field_test_decimal_radio_buttons',
2873   'type' => 'number_decimal',
2874   '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:\".\";}",
2875   'required' => '0',
2876   'multiple' => '0',
2877   'db_storage' => '1',
2878   'module' => 'number',
2879   '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;}}',
2880   'active' => '1',
2881   'locked' => '0',
2882 ))
2883 ->values(array(
2884   'field_name' => 'field_test_email',
2885   'type' => 'email',
2886   'global_settings' => 'a:0:{}',
2887   'required' => '0',
2888   'multiple' => '0',
2889   'db_storage' => '1',
2890   'module' => 'email',
2891   '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;}}',
2892   'active' => '1',
2893   'locked' => '0',
2894 ))
2895 ->values(array(
2896   'field_name' => 'field_test_exclude_unset',
2897   'type' => 'text',
2898   '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:"";}',
2899   'required' => '0',
2900   'multiple' => '0',
2901   'db_storage' => '1',
2902   'module' => 'text',
2903   '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;}}',
2904   'active' => '1',
2905   'locked' => '0',
2906 ))
2907 ->values(array(
2908   'field_name' => 'field_test_filefield',
2909   'type' => 'filefield',
2910   'global_settings' => 'a:3:{s:10:"list_field";s:1:"0";s:12:"list_default";i:1;s:17:"description_field";s:1:"1";}',
2911   'required' => '0',
2912   'multiple' => '0',
2913   'db_storage' => '1',
2914   'module' => 'filefield',
2915   '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;}}',
2916   'active' => '1',
2917   'locked' => '0',
2918 ))
2919 ->values(array(
2920   'field_name' => 'field_test_float_single_checkbox',
2921   'type' => 'number_float',
2922   '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:\"\";}",
2923   'required' => '0',
2924   'multiple' => '0',
2925   'db_storage' => '1',
2926   'module' => 'number',
2927   '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;}}',
2928   'active' => '1',
2929   'locked' => '0',
2930 ))
2931 ->values(array(
2932   'field_name' => 'field_test_four',
2933   'type' => 'number_float',
2934   '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:"";}',
2935   'required' => '0',
2936   'multiple' => '0',
2937   'db_storage' => '1',
2938   'module' => 'number',
2939   '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;}}',
2940   'active' => '1',
2941   'locked' => '0',
2942 ))
2943 ->values(array(
2944   'field_name' => 'field_test_identical1',
2945   'type' => 'number_integer',
2946   '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:"";}',
2947   'required' => '0',
2948   'multiple' => '0',
2949   'db_storage' => '1',
2950   'module' => 'number',
2951   '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;}}',
2952   'active' => '1',
2953   'locked' => '0',
2954 ))
2955 ->values(array(
2956   'field_name' => 'field_test_identical2',
2957   'type' => 'number_integer',
2958   '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:"";}',
2959   'required' => '0',
2960   'multiple' => '0',
2961   'db_storage' => '1',
2962   'module' => 'number',
2963   '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;}}',
2964   'active' => '1',
2965   'locked' => '0',
2966 ))
2967 ->values(array(
2968   'field_name' => 'field_test_imagefield',
2969   'type' => 'filefield',
2970   'global_settings' => 'a:3:{s:10:"list_field";s:1:"0";s:12:"list_default";i:1;s:17:"description_field";s:1:"0";}',
2971   'required' => '0',
2972   'multiple' => '0',
2973   'db_storage' => '1',
2974   'module' => 'filefield',
2975   '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;}}',
2976   'active' => '1',
2977   'locked' => '0',
2978 ))
2979 ->values(array(
2980   'field_name' => 'field_test_integer_selectlist',
2981   'type' => 'number_integer',
2982   '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:\"\";}",
2983   'required' => '0',
2984   'multiple' => '0',
2985   'db_storage' => '1',
2986   'module' => 'number',
2987   '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;}}',
2988   'active' => '1',
2989   'locked' => '0',
2990 ))
2991 ->values(array(
2992   'field_name' => 'field_test_link',
2993   'type' => 'link',
2994   '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;}',
2995   'required' => '0',
2996   'multiple' => '0',
2997   'db_storage' => '1',
2998   'module' => 'link',
2999   '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;}}',
3000   'active' => '1',
3001   'locked' => '0',
3002 ))
3003 ->values(array(
3004   'field_name' => 'field_test_phone',
3005   'type' => 'au_phone',
3006   'global_settings' => 'a:1:{s:18:"phone_country_code";i:0;}',
3007   'required' => '0',
3008   'multiple' => '0',
3009   'db_storage' => '1',
3010   'module' => 'phone',
3011   '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;}}',
3012   'active' => '1',
3013   'locked' => '0',
3014 ))
3015 ->values(array(
3016   'field_name' => 'field_test_string_selectlist',
3017   'type' => 'text',
3018   '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:\"\";}",
3019   'required' => '0',
3020   'multiple' => '0',
3021   'db_storage' => '1',
3022   'module' => 'text',
3023   '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;}}',
3024   'active' => '1',
3025   'locked' => '0',
3026 ))
3027 ->values(array(
3028   'field_name' => 'field_test_text_single_checkbox',
3029   'type' => 'text',
3030   '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:\"\";}",
3031   'required' => '0',
3032   'multiple' => '0',
3033   'db_storage' => '0',
3034   'module' => 'text',
3035   '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;}}',
3036   'active' => '1',
3037   'locked' => '0',
3038 ))
3039 ->values(array(
3040   'field_name' => 'field_test_text_single_checkbox2',
3041   'type' => 'text',
3042   '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:\"\";}",
3043   'required' => '0',
3044   'multiple' => '0',
3045   'db_storage' => '1',
3046   'module' => 'text',
3047   '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;}}',
3048   'active' => '1',
3049   'locked' => '0',
3050 ))
3051 ->values(array(
3052   'field_name' => 'field_test_three',
3053   'type' => 'number_decimal',
3054   '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:".";}',
3055   'required' => '0',
3056   'multiple' => '0',
3057   'db_storage' => '1',
3058   'module' => 'number',
3059   '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;}}',
3060   'active' => '1',
3061   'locked' => '0',
3062 ))
3063 ->values(array(
3064   'field_name' => 'field_test_two',
3065   'type' => 'number_integer',
3066   '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:"";}',
3067   'required' => '0',
3068   'multiple' => '1',
3069   'db_storage' => '0',
3070   'module' => 'number',
3071   '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;}}',
3072   'active' => '1',
3073   'locked' => '0',
3074 ))
3075 ->execute();
3076
3077 $connection->schema()->createTable('content_node_field_instance', array(
3078   'fields' => array(
3079     'field_name' => array(
3080       'type' => 'varchar',
3081       'not null' => TRUE,
3082       'length' => '32',
3083       'default' => '',
3084     ),
3085     'type_name' => array(
3086       'type' => 'varchar',
3087       'not null' => TRUE,
3088       'length' => '32',
3089       'default' => '',
3090     ),
3091     'weight' => array(
3092       'type' => 'int',
3093       'not null' => TRUE,
3094       'size' => 'normal',
3095       'default' => '0',
3096     ),
3097     'label' => array(
3098       'type' => 'varchar',
3099       'not null' => TRUE,
3100       'length' => '255',
3101       'default' => '',
3102     ),
3103     'widget_type' => array(
3104       'type' => 'varchar',
3105       'not null' => TRUE,
3106       'length' => '32',
3107       'default' => '',
3108     ),
3109     'widget_settings' => array(
3110       'type' => 'text',
3111       'not null' => TRUE,
3112       'size' => 'normal',
3113     ),
3114     'display_settings' => array(
3115       'type' => 'text',
3116       'not null' => TRUE,
3117       'size' => 'normal',
3118     ),
3119     'description' => array(
3120       'type' => 'text',
3121       'not null' => TRUE,
3122       'size' => 'normal',
3123     ),
3124     'widget_module' => array(
3125       'type' => 'varchar',
3126       'not null' => TRUE,
3127       'length' => '127',
3128       'default' => '',
3129     ),
3130     'widget_active' => array(
3131       'type' => 'int',
3132       'not null' => TRUE,
3133       'size' => 'normal',
3134       'default' => '0',
3135     ),
3136   ),
3137   'primary key' => array(
3138     'field_name',
3139     'type_name',
3140   ),
3141   'mysql_character_set' => 'utf8',
3142 ));
3143
3144 $connection->insert('content_node_field_instance')
3145 ->fields(array(
3146   'field_name',
3147   'type_name',
3148   'weight',
3149   'label',
3150   'widget_type',
3151   'widget_settings',
3152   'display_settings',
3153   'description',
3154   'widget_module',
3155   'widget_active',
3156 ))
3157 ->values(array(
3158   'field_name' => 'field_commander',
3159   'type_name' => 'employee',
3160   'weight' => '32',
3161   'label' => 'Commanding Officer',
3162   'widget_type' => 'userreference_select',
3163   '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;}',
3164   '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;}}',
3165   'description' => '',
3166   'widget_module' => 'userreference',
3167   'widget_active' => '1',
3168 ))
3169 ->values(array(
3170   'field_name' => 'field_company',
3171   'type_name' => 'employee',
3172   'weight' => '31',
3173   'label' => 'Company',
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: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;}}',
3177   'description' => '',
3178   'widget_module' => 'nodereference',
3179   'widget_active' => '1',
3180 ))
3181 ->values(array(
3182   'field_name' => 'field_company_2',
3183   'type_name' => 'employee',
3184   'weight' => '33',
3185   'label' => 'Company 2',
3186   'widget_type' => 'nodereference_buttons',
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_company_3',
3195   'type_name' => 'employee',
3196   'weight' => '34',
3197   'label' => 'Company 3',
3198   'widget_type' => 'nodereference_autocomplete',
3199   '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;}',
3200   '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;}}',
3201   'description' => '',
3202   'widget_module' => 'nodereference',
3203   'widget_active' => '1',
3204 ))
3205 ->values(array(
3206   'field_name' => 'field_multivalue',
3207   'type_name' => 'test_planet',
3208   'weight' => '2',
3209   'label' => 'Decimal Field',
3210   'widget_type' => 'number',
3211   '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;}',
3212   '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;}}',
3213   'description' => 'An example multi-valued decimal field.',
3214   'widget_module' => 'number',
3215   'widget_active' => '1',
3216 ))
3217 ->values(array(
3218   'field_name' => 'field_reference',
3219   'type_name' => 'page',
3220   'weight' => '31',
3221   'label' => 'Reference',
3222   'widget_type' => 'nodereference_select',
3223   '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;}',
3224   '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;}}',
3225   'description' => '',
3226   'widget_module' => 'nodereference',
3227   'widget_active' => '1',
3228 ))
3229 ->values(array(
3230   'field_name' => 'field_reference_2',
3231   'type_name' => 'page',
3232   'weight' => '32',
3233   'label' => 'Reference',
3234   'widget_type' => 'nodereference_select',
3235   '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;}',
3236   '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;}}',
3237   'description' => '',
3238   'widget_module' => 'nodereference',
3239   'widget_active' => '1',
3240 ))
3241 ->values(array(
3242   'field_name' => 'field_test',
3243   'type_name' => 'story',
3244   'weight' => '1',
3245   'label' => 'Text Field',
3246   'widget_type' => 'text_textfield',
3247   '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;}',
3248   '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;}}',
3249   'description' => 'An example text field.',
3250   'widget_module' => 'text',
3251   'widget_active' => '1',
3252 ))
3253 ->values(array(
3254   'field_name' => 'field_test',
3255   'type_name' => 'test_page',
3256   'weight' => '35',
3257   'label' => 'Text Field',
3258   'widget_type' => 'text_textfield',
3259   '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;}',
3260   '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;}}',
3261   'description' => 'An example text field.',
3262   'widget_module' => 'text',
3263   'widget_active' => '1',
3264 ))
3265 ->values(array(
3266   'field_name' => 'field_test_date',
3267   'type_name' => 'story',
3268   'weight' => '10',
3269   'label' => 'Date Field',
3270   'widget_type' => 'date_select',
3271   '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";}',
3272   '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;}}',
3273   'description' => 'An example date field.',
3274   'widget_module' => 'date',
3275   'widget_active' => '1',
3276 ))
3277 ->values(array(
3278   'field_name' => 'field_test_datestamp',
3279   'type_name' => 'story',
3280   'weight' => '11',
3281   'label' => 'Date Stamp Field',
3282   'widget_type' => 'date_text',
3283   '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";}',
3284   '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;}}',
3285   'description' => 'An example date stamp field.',
3286   'widget_module' => 'date',
3287   'widget_active' => '1',
3288 ))
3289 ->values(array(
3290   'field_name' => 'field_test_datetime',
3291   'type_name' => 'story',
3292   'weight' => '12',
3293   'label' => 'Datetime Field',
3294   'widget_type' => 'date_popup',
3295   '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";}',
3296   '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;}}',
3297   'description' => 'An example datetime field.',
3298   'widget_module' => 'date',
3299   'widget_active' => '1',
3300 ))
3301 ->values(array(
3302   'field_name' => 'field_test_decimal_radio_buttons',
3303   'type_name' => 'story',
3304   'weight' => '14',
3305   'label' => 'Decimal Radio Buttons Field',
3306   'widget_type' => 'optionwidgets_buttons',
3307   '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;}',
3308   '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;}}',
3309   'description' => 'An example decimal field using radio buttons.',
3310   'widget_module' => 'optionwidgets',
3311   'widget_active' => '1',
3312 ))
3313 ->values(array(
3314   'field_name' => 'field_test_email',
3315   'type_name' => 'story',
3316   'weight' => '6',
3317   'label' => 'Email Field',
3318   'widget_type' => 'email_textfield',
3319   '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;}',
3320   '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;}}',
3321   'description' => 'An example email field.',
3322   'widget_module' => 'email',
3323   'widget_active' => '1',
3324 ))
3325 ->values(array(
3326   'field_name' => 'field_test_exclude_unset',
3327   'type_name' => 'story',
3328   'weight' => '0',
3329   'label' => 'Text Field',
3330   'widget_type' => 'text_textfield',
3331   '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;}',
3332   '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;}}',
3333   'description' => 'An example text field without exclude.',
3334   'widget_module' => 'text',
3335   'widget_active' => '1',
3336 ))
3337 ->values(array(
3338   'field_name' => 'field_test_filefield',
3339   'type_name' => 'story',
3340   'weight' => '8',
3341   'label' => 'File Field',
3342   'widget_type' => 'filefield_widget',
3343   '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";}',
3344   '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;}}',
3345   'description' => 'An example image field.',
3346   'widget_module' => 'filefield',
3347   'widget_active' => '1',
3348 ))
3349 ->values(array(
3350   'field_name' => 'field_test_float_single_checkbox',
3351   'type_name' => 'story',
3352   'weight' => '15',
3353   'label' => 'Float Single Checkbox Field',
3354   'widget_type' => 'optionwidgets_onoff',
3355   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";N;}}s:17:"default_value_php";N;}',
3356   '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;}}',
3357   'description' => 'An example float field using a single on/off checkbox.',
3358   'widget_module' => 'optionwidgets',
3359   'widget_active' => '1',
3360 ))
3361 ->values(array(
3362   'field_name' => 'field_test_four',
3363   'type_name' => 'story',
3364   'weight' => '3',
3365   'label' => 'Float Field',
3366   'widget_type' => 'number',
3367   '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;}',
3368   '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;}}',
3369   'description' => 'An example float field.',
3370   'widget_module' => 'number',
3371   'widget_active' => '1',
3372 ))
3373 ->values(array(
3374   'field_name' => 'field_test_identical1',
3375   'type_name' => 'story',
3376   'weight' => '4',
3377   'label' => 'Integer Field',
3378   'widget_type' => 'number',
3379   '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;}',
3380   '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;}}',
3381   'description' => 'An example integer field.',
3382   'widget_module' => 'number',
3383   'widget_active' => '1',
3384 ))
3385 ->values(array(
3386   'field_name' => 'field_test_identical2',
3387   'type_name' => 'story',
3388   'weight' => '5',
3389   'label' => 'Integer Field',
3390   'widget_type' => 'number',
3391   '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;}',
3392   '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;}}',
3393   'description' => 'An example integer field.',
3394   'widget_module' => 'number',
3395   'widget_active' => '1',
3396 ))
3397 ->values(array(
3398   'field_name' => 'field_test_imagefield',
3399   'type_name' => 'story',
3400   'weight' => '9',
3401   'label' => 'Image Field',
3402   'widget_type' => 'imagefield_widget',
3403   '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;}',
3404   '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;}}',
3405   'description' => 'An example image field.',
3406   'widget_module' => 'imagefield',
3407   'widget_active' => '1',
3408 ))
3409 ->values(array(
3410   'field_name' => 'field_test_integer_selectlist',
3411   'type_name' => 'story',
3412   'weight' => '16',
3413   'label' => 'Integer 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: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;}}',
3417   'description' => 'An example integer field using a select list.',
3418   'widget_module' => 'optionwidgets',
3419   'widget_active' => '1',
3420 ))
3421 ->values(array(
3422   'field_name' => 'field_test_link',
3423   'type_name' => 'story',
3424   'weight' => '7',
3425   'label' => 'Link Field',
3426   'widget_type' => 'link',
3427   '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;}',
3428   '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;}}',
3429   'description' => 'An example link field.',
3430   'widget_module' => 'link',
3431   'widget_active' => '1',
3432 ))
3433 ->values(array(
3434   'field_name' => 'field_test_phone',
3435   'type_name' => 'story',
3436   'weight' => '13',
3437   'label' => 'Phone Field',
3438   'widget_type' => 'phone_textfield',
3439   '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;}',
3440   '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;}}',
3441   'description' => 'An example phone field.',
3442   'widget_module' => 'phone',
3443   'widget_active' => '1',
3444 ))
3445 ->values(array(
3446   'field_name' => 'field_test_string_selectlist',
3447   'type_name' => 'story',
3448   'weight' => '31',
3449   'label' => 'String Select List Field',
3450   'widget_type' => 'optionwidgets_select',
3451   '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;}',
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' => '',
3454   'widget_module' => 'optionwidgets',
3455   'widget_active' => '1',
3456 ))
3457 ->values(array(
3458   'field_name' => 'field_test_text_single_checkbox',
3459   'type_name' => 'story',
3460   'weight' => '17',
3461   'label' => 'Text Single Checkbox Field',
3462   'widget_type' => 'optionwidgets_onoff',
3463   '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;}',
3464   '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;}}',
3465   'description' => 'An example text field using a single on/off checkbox.',
3466   'widget_module' => 'optionwidgets',
3467   'widget_active' => '1',
3468 ))
3469 ->values(array(
3470   'field_name' => 'field_test_text_single_checkbox',
3471   'type_name' => 'test_planet',
3472   'weight' => '32',
3473   'label' => 'Text Single Checkbox Field',
3474   'widget_type' => 'text_textfield',
3475   '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";}',
3476   '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;}}',
3477   'description' => 'An example text field using a single on/off checkbox.',
3478   'widget_module' => 'text',
3479   'widget_active' => '1',
3480 ))
3481 ->values(array(
3482   'field_name' => 'field_test_text_single_checkbox2',
3483   'type_name' => 'story',
3484   'weight' => '19',
3485   'label' => 'Text Single Checkbox Field 2',
3486   'widget_type' => 'optionwidgets_onoff',
3487   'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";N;}}s:17:"default_value_php";N;}',
3488   '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;}}',
3489   'description' => 'Checkbox that uses keys only and no label.',
3490   'widget_module' => 'optionwidgets',
3491   'widget_active' => '1',
3492 ))
3493 ->values(array(
3494   'field_name' => 'field_test_three',
3495   'type_name' => 'story',
3496   'weight' => '2',
3497   'label' => 'Decimal Field',
3498   'widget_type' => 'number',
3499   '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;}',
3500   '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;}}',
3501   'description' => 'An example decimal field.',
3502   'widget_module' => 'number',
3503   'widget_active' => '1',
3504 ))
3505 ->values(array(
3506   'field_name' => 'field_test_two',
3507   'type_name' => 'story',
3508   'weight' => '1',
3509   'label' => 'Integer Field',
3510   'widget_type' => 'number',
3511   '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;}',
3512   '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;}}',
3513   'description' => 'An example integer field.',
3514   'widget_module' => 'number',
3515   'widget_active' => '1',
3516 ))
3517 ->execute();
3518
3519 $connection->schema()->createTable('content_type_employee', array(
3520   'fields' => array(
3521     'vid' => array(
3522       'type' => 'int',
3523       'not null' => TRUE,
3524       'size' => 'normal',
3525       'default' => '0',
3526       'unsigned' => TRUE,
3527     ),
3528     'nid' => array(
3529       'type' => 'int',
3530       'not null' => TRUE,
3531       'size' => 'normal',
3532       'default' => '0',
3533       'unsigned' => TRUE,
3534     ),
3535     'field_commander_uid' => array(
3536       'type' => 'int',
3537       'not null' => FALSE,
3538       'size' => 'normal',
3539       'unsigned' => TRUE,
3540     ),
3541     'field_company_2_nid' => array(
3542       'type' => 'int',
3543       'not null' => FALSE,
3544       'size' => 'normal',
3545       'unsigned' => TRUE,
3546     ),
3547     'field_company_3_nid' => array(
3548       'type' => 'int',
3549       'not null' => FALSE,
3550       'size' => 'normal',
3551       'unsigned' => TRUE,
3552     ),
3553   ),
3554   'primary key' => array(
3555     'vid',
3556   ),
3557   'indexes' => array(
3558     'nid' => array(
3559       'nid',
3560     ),
3561     'field_commander_uid' => array(
3562       'field_commander_uid',
3563     ),
3564     'field_company_2_nid' => array(
3565       'field_company_2_nid',
3566     ),
3567     'field_company_3_nid' => array(
3568       'field_company_3_nid',
3569     ),
3570   ),
3571   'mysql_character_set' => 'utf8',
3572 ));
3573
3574 $connection->insert('content_type_employee')
3575 ->fields(array(
3576   'vid',
3577   'nid',
3578   'field_commander_uid',
3579   'field_company_2_nid',
3580   'field_company_3_nid',
3581 ))
3582 ->values(array(
3583   'vid' => '21',
3584   'nid' => '18',
3585   'field_commander_uid' => '8',
3586   'field_company_2_nid' => '15',
3587   'field_company_3_nid' => '16',
3588 ))
3589 ->values(array(
3590   'vid' => '2002',
3591   'nid' => '21',
3592   'field_commander_uid' => NULL,
3593   'field_company_2_nid' => NULL,
3594   'field_company_3_nid' => NULL,
3595 ))
3596 ->values(array(
3597   'vid' => '2003',
3598   'nid' => '22',
3599   'field_commander_uid' => NULL,
3600   'field_company_2_nid' => NULL,
3601   'field_company_3_nid' => NULL,
3602 ))
3603 ->execute();
3604
3605 $connection->schema()->createTable('content_type_page', array(
3606   'fields' => array(
3607     'vid' => array(
3608       'type' => 'int',
3609       'not null' => TRUE,
3610       'size' => 'normal',
3611       'default' => '0',
3612       'unsigned' => TRUE,
3613     ),
3614     'nid' => array(
3615       'type' => 'int',
3616       'not null' => TRUE,
3617       'size' => 'normal',
3618       'default' => '0',
3619       'unsigned' => TRUE,
3620     ),
3621     'field_text_field_value' => array(
3622       'type' => 'text',
3623       'not null' => FALSE,
3624       'size' => 'normal',
3625     ),
3626     'field_reference_nid' => array(
3627       'type' => 'int',
3628       'not null' => FALSE,
3629       'size' => 'normal',
3630       'unsigned' => TRUE,
3631     ),
3632     'field_reference_2_nid' => array(
3633       'type' => 'int',
3634       'not null' => FALSE,
3635       'size' => 'normal',
3636       'unsigned' => TRUE,
3637     ),
3638   ),
3639   'primary key' => array(
3640     'vid',
3641   ),
3642   'indexes' => array(
3643     'field_reference_nid' => array(
3644       'field_reference_nid',
3645     ),
3646     'field_reference_2_nid' => array(
3647       'field_reference_2_nid',
3648     ),
3649   ),
3650   'mysql_character_set' => 'utf8',
3651 ));
3652
3653 $connection->insert('content_type_page')
3654 ->fields(array(
3655   'vid',
3656   'nid',
3657   'field_text_field_value',
3658   'field_reference_nid',
3659   'field_reference_2_nid',
3660 ))
3661 ->values(array(
3662   'vid' => '13',
3663   'nid' => '10',
3664   'field_text_field_value' => NULL,
3665   'field_reference_nid' => '13',
3666   'field_reference_2_nid' => '13',
3667 ))
3668 ->values(array(
3669   'vid' => '14',
3670   'nid' => '11',
3671   'field_text_field_value' => NULL,
3672   'field_reference_nid' => '20',
3673   'field_reference_2_nid' => '20',
3674 ))
3675 ->values(array(
3676   'vid' => '16',
3677   'nid' => '13',
3678   'field_text_field_value' => NULL,
3679   'field_reference_nid' => '10',
3680   'field_reference_2_nid' => '10',
3681 ))
3682 ->values(array(
3683   'vid' => '23',
3684   'nid' => '20',
3685   'field_text_field_value' => NULL,
3686   'field_reference_nid' => '11',
3687   'field_reference_2_nid' => '11',
3688 ))
3689 ->execute();
3690
3691 $connection->schema()->createTable('content_type_story', array(
3692   'fields' => array(
3693     'nid' => array(
3694       'type' => 'int',
3695       'not null' => TRUE,
3696       'size' => 'normal',
3697       'default' => '0',
3698       'unsigned' => TRUE,
3699     ),
3700     'vid' => array(
3701       'type' => 'serial',
3702       'not null' => TRUE,
3703       'size' => 'normal',
3704       'unsigned' => TRUE,
3705     ),
3706     'uid' => array(
3707       'type' => 'int',
3708       'not null' => TRUE,
3709       'size' => 'normal',
3710       'unsigned' => TRUE,
3711     ),
3712     'field_test_three_value' => array(
3713       'type' => 'numeric',
3714       'not null' => FALSE,
3715       'precision' => '10',
3716       'scale' => '2',
3717     ),
3718     'field_test_identical1_value' => array(
3719       'type' => 'int',
3720       'not null' => FALSE,
3721       'size' => 'normal',
3722       'unsigned' => TRUE,
3723     ),
3724     'field_test_identical2_value' => array(
3725       'type' => 'int',
3726       'not null' => FALSE,
3727       'size' => 'normal',
3728       'unsigned' => TRUE,
3729     ),
3730     'field_test_link_url' => array(
3731       'type' => 'varchar',
3732       'not null' => FALSE,
3733       'length' => '2048',
3734     ),
3735     'field_test_link_title' => array(
3736       'type' => 'varchar',
3737       'not null' => FALSE,
3738       'length' => '255',
3739     ),
3740     'field_test_link_attributes' => array(
3741       'type' => 'text',
3742       'not null' => FALSE,
3743       'size' => 'normal',
3744     ),
3745     'field_test_date_value' => array(
3746       'type' => 'varchar',
3747       'not null' => FALSE,
3748       'length' => '20',
3749     ),
3750     'field_test_datestamp_value' => array(
3751       'type' => 'int',
3752       'not null' => FALSE,
3753       'size' => 'normal',
3754     ),
3755     'field_test_datetime_value' => array(
3756       'type' => 'varchar',
3757       'not null' => FALSE,
3758       'length' => '100',
3759     ),
3760     'field_test_email_email' => array(
3761       'type' => 'varchar',
3762       'not null' => FALSE,
3763       'length' => '255',
3764     ),
3765     'field_test_filefield_fid' => array(
3766       'type' => 'int',
3767       'not null' => FALSE,
3768       'size' => 'normal',
3769     ),
3770     'field_test_filefield_list' => array(
3771       'type' => 'int',
3772       'not null' => FALSE,
3773       'size' => 'normal',
3774     ),
3775     'field_test_filefield_data' => array(
3776       'type' => 'text',
3777       'not null' => FALSE,
3778       'size' => 'normal',
3779     ),
3780     'field_test_four_value' => array(
3781       'type' => 'numeric',
3782       'not null' => FALSE,
3783       'precision' => '10',
3784       'scale' => '0',
3785     ),
3786     'field_test_integer_selectlist_value' => array(
3787       'type' => 'int',
3788       'not null' => FALSE,
3789       'size' => 'normal',
3790     ),
3791     'field_test_float_single_checkbox_value' => array(
3792       'type' => 'numeric',
3793       'not null' => FALSE,
3794       'precision' => '10',
3795       'scale' => '0',
3796     ),
3797     'field_test_decimal_radio_buttons_value' => array(
3798       'type' => 'numeric',
3799       'not null' => FALSE,
3800       'precision' => '10',
3801       'scale' => '2',
3802     ),
3803     'field_test_phone_value' => array(
3804       'type' => 'varchar',
3805       'not null' => FALSE,
3806       'length' => '255',
3807     ),
3808     'field_test_exclude_unset_value' => array(
3809       'type' => 'text',
3810       'not null' => FALSE,
3811       'size' => 'normal',
3812     ),
3813     'field_test_exclude_unset_format' => array(
3814       'type' => 'int',
3815       'not null' => FALSE,
3816       'size' => 'normal',
3817       'unsigned' => TRUE,
3818     ),
3819     'field_test_imagefield_fid' => array(
3820       'type' => 'int',
3821       'not null' => FALSE,
3822       'size' => 'normal',
3823     ),
3824     'field_test_imagefield_list' => array(
3825       'type' => 'int',
3826       'not null' => FALSE,
3827       'size' => 'normal',
3828     ),
3829     'field_test_imagefield_data' => array(
3830       'type' => 'text',
3831       'not null' => FALSE,
3832       'size' => 'normal',
3833     ),
3834     'field_test_text_single_checkbox2_value' => array(
3835       'type' => 'text',
3836       'not null' => FALSE,
3837       'size' => 'big',
3838     ),
3839     'field_test_datestamp_value2' => array(
3840       'type' => 'int',
3841       'not null' => FALSE,
3842       'size' => 'normal',
3843     ),
3844     'field_test_datetime_value2' => array(
3845       'type' => 'varchar',
3846       'not null' => FALSE,
3847       'length' => '100',
3848     ),
3849     'field_test_string_selectlist_value' => array(
3850       'type' => 'text',
3851       'not null' => FALSE,
3852       'size' => 'big',
3853     ),
3854   ),
3855   'primary key' => array(
3856     'vid',
3857   ),
3858   'indexes' => array(
3859     'nid' => array(
3860       'nid',
3861     ),
3862   ),
3863   'mysql_character_set' => 'utf8',
3864 ));
3865
3866 $connection->insert('content_type_story')
3867 ->fields(array(
3868   'nid',
3869   'vid',
3870   'uid',
3871   'field_test_three_value',
3872   'field_test_identical1_value',
3873   'field_test_identical2_value',
3874   'field_test_link_url',
3875   'field_test_link_title',
3876   'field_test_link_attributes',
3877   'field_test_date_value',
3878   'field_test_datestamp_value',
3879   'field_test_datetime_value',
3880   'field_test_email_email',
3881   'field_test_filefield_fid',
3882   'field_test_filefield_list',
3883   'field_test_filefield_data',
3884   'field_test_four_value',
3885   'field_test_integer_selectlist_value',
3886   'field_test_float_single_checkbox_value',
3887   'field_test_decimal_radio_buttons_value',
3888   'field_test_phone_value',
3889   'field_test_exclude_unset_value',
3890   'field_test_exclude_unset_format',
3891   'field_test_imagefield_fid',
3892   'field_test_imagefield_list',
3893   'field_test_imagefield_data',
3894   'field_test_text_single_checkbox2_value',
3895   'field_test_datestamp_value2',
3896   'field_test_datetime_value2',
3897   'field_test_string_selectlist_value',
3898 ))
3899 ->values(array(
3900   'nid' => '1',
3901   'vid' => '1',
3902   'uid' => '1',
3903   'field_test_three_value' => '42.42',
3904   'field_test_identical1_value' => '1',
3905   'field_test_identical2_value' => '1',
3906   'field_test_link_url' => 'https://www.drupal.org/project/drupal',
3907   'field_test_link_title' => 'Drupal project page',
3908   'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
3909   'field_test_date_value' => '2013-01-02T04:05:00',
3910   'field_test_datestamp_value' => '1391357160',
3911   'field_test_datetime_value' => '2015-03-04 06:07:00',
3912   'field_test_email_email' => 'PrincessRuwenne@example.com',
3913   'field_test_filefield_fid' => '5',
3914   'field_test_filefield_list' => '1',
3915   'field_test_filefield_data' => 'a:1:{s:11:"description";s:4:"desc";}',
3916   'field_test_four_value' => NULL,
3917   'field_test_integer_selectlist_value' => '3412',
3918   'field_test_float_single_checkbox_value' => '3',
3919   'field_test_decimal_radio_buttons_value' => NULL,
3920   'field_test_phone_value' => NULL,
3921   'field_test_exclude_unset_value' => 'This is a field with exclude unset.',
3922   'field_test_exclude_unset_format' => '1',
3923   'field_test_imagefield_fid' => NULL,
3924   'field_test_imagefield_list' => NULL,
3925   'field_test_imagefield_data' => NULL,
3926   'field_test_text_single_checkbox2_value' => 'Hello',
3927   'field_test_datestamp_value2' => NULL,
3928   'field_test_datetime_value2' => NULL,
3929   'field_test_string_selectlist_value' => NULL,
3930 ))
3931 ->values(array(
3932   'nid' => '1',
3933   'vid' => '2',
3934   'uid' => '1',
3935   'field_test_three_value' => '42.42',
3936   'field_test_identical1_value' => '1',
3937   'field_test_identical2_value' => '1',
3938   'field_test_link_url' => 'https://www.drupal.org/project/drupal',
3939   'field_test_link_title' => 'Drupal project page',
3940   'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
3941   'field_test_date_value' => '2013-01-02T04:05:00',
3942   'field_test_datestamp_value' => '1391357160',
3943   'field_test_datetime_value' => '2015-03-04 06:07:00',
3944   'field_test_email_email' => 'PrincessRuwenne@example.com',
3945   'field_test_filefield_fid' => NULL,
3946   'field_test_filefield_list' => NULL,
3947   'field_test_filefield_data' => NULL,
3948   'field_test_four_value' => NULL,
3949   'field_test_integer_selectlist_value' => NULL,
3950   'field_test_float_single_checkbox_value' => NULL,
3951   'field_test_decimal_radio_buttons_value' => NULL,
3952   'field_test_phone_value' => NULL,
3953   'field_test_exclude_unset_value' => NULL,
3954   'field_test_exclude_unset_format' => NULL,
3955   'field_test_imagefield_fid' => NULL,
3956   'field_test_imagefield_list' => NULL,
3957   'field_test_imagefield_data' => NULL,
3958   'field_test_text_single_checkbox2_value' => NULL,
3959   'field_test_datestamp_value2' => NULL,
3960   'field_test_datetime_value2' => NULL,
3961   'field_test_string_selectlist_value' => NULL,
3962 ))
3963 ->values(array(
3964   'nid' => '2',
3965   'vid' => '3',
3966   'uid' => '1',
3967   'field_test_three_value' => '23.20',
3968   'field_test_identical1_value' => '1',
3969   'field_test_identical2_value' => '1',
3970   'field_test_link_url' => 'http://groups.drupal.org/',
3971   'field_test_link_title' => 'Drupal Groups',
3972   'field_test_link_attributes' => 's:6:"a:0:{}";',
3973   'field_test_date_value' => NULL,
3974   'field_test_datestamp_value' => NULL,
3975   'field_test_datetime_value' => NULL,
3976   'field_test_email_email' => NULL,
3977   'field_test_filefield_fid' => NULL,
3978   'field_test_filefield_list' => NULL,
3979   'field_test_filefield_data' => NULL,
3980   'field_test_four_value' => NULL,
3981   'field_test_integer_selectlist_value' => NULL,
3982   'field_test_float_single_checkbox_value' => NULL,
3983   'field_test_decimal_radio_buttons_value' => NULL,
3984   'field_test_phone_value' => NULL,
3985   'field_test_exclude_unset_value' => NULL,
3986   'field_test_exclude_unset_format' => NULL,
3987   'field_test_imagefield_fid' => NULL,
3988   'field_test_imagefield_list' => NULL,
3989   'field_test_imagefield_data' => NULL,
3990   'field_test_text_single_checkbox2_value' => NULL,
3991   'field_test_datestamp_value2' => NULL,
3992   'field_test_datetime_value2' => NULL,
3993   'field_test_string_selectlist_value' => NULL,
3994 ))
3995 ->values(array(
3996   'nid' => '2',
3997   'vid' => '5',
3998   'uid' => '1',
3999   'field_test_three_value' => '23.20',
4000   'field_test_identical1_value' => '1',
4001   'field_test_identical2_value' => '1',
4002   'field_test_link_url' => 'http://groups.drupal.org/',
4003   'field_test_link_title' => 'Drupal Groups',
4004   'field_test_link_attributes' => 's:6:"a:0:{}";',
4005   'field_test_date_value' => NULL,
4006   'field_test_datestamp_value' => NULL,
4007   'field_test_datetime_value' => NULL,
4008   'field_test_email_email' => NULL,
4009   'field_test_filefield_fid' => NULL,
4010   'field_test_filefield_list' => NULL,
4011   'field_test_filefield_data' => NULL,
4012   'field_test_four_value' => NULL,
4013   'field_test_integer_selectlist_value' => NULL,
4014   'field_test_float_single_checkbox_value' => NULL,
4015   'field_test_decimal_radio_buttons_value' => NULL,
4016   'field_test_phone_value' => NULL,
4017   'field_test_exclude_unset_value' => NULL,
4018   'field_test_exclude_unset_format' => NULL,
4019   'field_test_imagefield_fid' => NULL,
4020   'field_test_imagefield_list' => NULL,
4021   'field_test_imagefield_data' => NULL,
4022   'field_test_text_single_checkbox2_value' => NULL,
4023   'field_test_datestamp_value2' => NULL,
4024   'field_test_datetime_value2' => NULL,
4025   'field_test_string_selectlist_value' => NULL,
4026 ))
4027 ->values(array(
4028   'nid' => '9',
4029   'vid' => '12',
4030   'uid' => '0',
4031   'field_test_three_value' => '101.00',
4032   'field_test_identical1_value' => NULL,
4033   'field_test_identical2_value' => NULL,
4034   'field_test_link_url' => 'node/10',
4035   'field_test_link_title' => 'Buy it now',
4036   'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
4037   'field_test_date_value' => NULL,
4038   'field_test_datestamp_value' => NULL,
4039   'field_test_datetime_value' => NULL,
4040   'field_test_email_email' => NULL,
4041   'field_test_filefield_fid' => NULL,
4042   'field_test_filefield_list' => NULL,
4043   'field_test_filefield_data' => NULL,
4044   'field_test_four_value' => '101',
4045   'field_test_integer_selectlist_value' => NULL,
4046   'field_test_float_single_checkbox_value' => '3',
4047   'field_test_decimal_radio_buttons_value' => NULL,
4048   'field_test_phone_value' => NULL,
4049   'field_test_exclude_unset_value' => 'text for default value',
4050   'field_test_exclude_unset_format' => '1',
4051   'field_test_imagefield_fid' => '2',
4052   'field_test_imagefield_list' => '1',
4053   'field_test_imagefield_data' => 'a:2:{s:3:"alt";s:8:"Test alt";s:5:"title";s:10:"Test title";}',
4054   'field_test_text_single_checkbox2_value' => 'Off',
4055   'field_test_datestamp_value2' => '1391357160',
4056   'field_test_datetime_value2' => '2015-03-04 06:07:00',
4057   'field_test_string_selectlist_value' => NULL,
4058 ))
4059 ->execute();
4060
4061 $connection->schema()->createTable('content_type_test_page', array(
4062   'fields' => array(
4063     'vid' => array(
4064       'type' => 'int',
4065       'not null' => TRUE,
4066       'size' => 'normal',
4067       'default' => '0',
4068       'unsigned' => TRUE,
4069     ),
4070     'nid' => array(
4071       'type' => 'int',
4072       'not null' => TRUE,
4073       'size' => 'normal',
4074       'default' => '0',
4075       'unsigned' => TRUE,
4076     ),
4077     'field_test_value' => array(
4078       'type' => 'text',
4079       'not null' => FALSE,
4080       'size' => 'normal',
4081     ),
4082     'field_test_format' => array(
4083       'type' => 'int',
4084       'not null' => FALSE,
4085       'size' => 'normal',
4086       'unsigned' => TRUE,
4087     ),
4088   ),
4089   'primary key' => array(
4090     'vid',
4091   ),
4092   'mysql_character_set' => 'utf8',
4093 ));
4094
4095 $connection->schema()->createTable('content_type_test_planet', array(
4096   'fields' => array(
4097     'nid' => array(
4098       'type' => 'int',
4099       'not null' => TRUE,
4100       'size' => 'normal',
4101       'default' => '0',
4102       'unsigned' => TRUE,
4103     ),
4104     'vid' => array(
4105       'type' => 'serial',
4106       'not null' => TRUE,
4107       'size' => 'normal',
4108       'unsigned' => TRUE,
4109     ),
4110   ),
4111   'primary key' => array(
4112     'vid',
4113   ),
4114   'mysql_character_set' => 'utf8',
4115 ));
4116
4117 $connection->insert('content_type_test_planet')
4118 ->fields(array(
4119   'nid',
4120   'vid',
4121 ))
4122 ->values(array(
4123   'nid' => '3',
4124   'vid' => '4',
4125 ))
4126 ->values(array(
4127   'nid' => '4',
4128   'vid' => '6',
4129 ))
4130 ->values(array(
4131   'nid' => '5',
4132   'vid' => '7',
4133 ))
4134 ->values(array(
4135   'nid' => '6',
4136   'vid' => '8',
4137 ))
4138 ->values(array(
4139   'nid' => '7',
4140   'vid' => '9',
4141 ))
4142 ->values(array(
4143   'nid' => '8',
4144   'vid' => '10',
4145 ))
4146 ->values(array(
4147   'nid' => '9',
4148   'vid' => '11',
4149 ))
4150 ->execute();
4151
4152 $connection->schema()->createTable('date_format_locale', array(
4153   'fields' => array(
4154     'format' => array(
4155       'type' => 'varchar',
4156       'not null' => TRUE,
4157       'length' => '100',
4158     ),
4159     'type' => array(
4160       'type' => 'varchar',
4161       'not null' => TRUE,
4162       'length' => '200',
4163     ),
4164     'language' => array(
4165       'type' => 'varchar',
4166       'not null' => TRUE,
4167       'length' => '12',
4168     ),
4169   ),
4170   'primary key' => array(
4171     'type',
4172     'language',
4173   ),
4174   'mysql_character_set' => 'utf8',
4175 ));
4176
4177 $connection->schema()->createTable('date_format_types', array(
4178   'fields' => array(
4179     'type' => array(
4180       'type' => 'varchar',
4181       'not null' => TRUE,
4182       'length' => '200',
4183     ),
4184     'title' => array(
4185       'type' => 'varchar',
4186       'not null' => TRUE,
4187       'length' => '255',
4188     ),
4189     'locked' => array(
4190       'type' => 'int',
4191       'not null' => TRUE,
4192       'size' => 'normal',
4193       'default' => '0',
4194     ),
4195   ),
4196   'primary key' => array(
4197     'type',
4198   ),
4199   'mysql_character_set' => 'utf8',
4200 ));
4201
4202 $connection->insert('date_format_types')
4203 ->fields(array(
4204   'type',
4205   'title',
4206   'locked',
4207 ))
4208 ->values(array(
4209   'type' => 'long',
4210   'title' => 'Long',
4211   'locked' => '1',
4212 ))
4213 ->values(array(
4214   'type' => 'medium',
4215   'title' => 'Medium',
4216   'locked' => '1',
4217 ))
4218 ->values(array(
4219   'type' => 'short',
4220   'title' => 'Short',
4221   'locked' => '1',
4222 ))
4223 ->execute();
4224
4225 $connection->schema()->createTable('date_formats', array(
4226   'fields' => array(
4227     'dfid' => array(
4228       'type' => 'serial',
4229       'not null' => TRUE,
4230       'size' => 'normal',
4231       'unsigned' => TRUE,
4232     ),
4233     'format' => array(
4234       'type' => 'varchar',
4235       'not null' => TRUE,
4236       'length' => '100',
4237     ),
4238     'type' => array(
4239       'type' => 'varchar',
4240       'not null' => TRUE,
4241       'length' => '200',
4242     ),
4243     'locked' => array(
4244       'type' => 'int',
4245       'not null' => TRUE,
4246       'size' => 'normal',
4247       'default' => '0',
4248     ),
4249   ),
4250   'primary key' => array(
4251     'dfid',
4252   ),
4253   'mysql_character_set' => 'utf8',
4254 ));
4255
4256 $connection->insert('date_formats')
4257 ->fields(array(
4258   'dfid',
4259   'format',
4260   'type',
4261   'locked',
4262 ))
4263 ->values(array(
4264   'dfid' => '1',
4265   'format' => 'Y-m-d H:i',
4266   'type' => 'short',
4267   'locked' => '1',
4268 ))
4269 ->values(array(
4270   'dfid' => '2',
4271   'format' => 'm/d/Y - H:i',
4272   'type' => 'short',
4273   'locked' => '1',
4274 ))
4275 ->values(array(
4276   'dfid' => '3',
4277   'format' => 'd/m/Y - H:i',
4278   'type' => 'short',
4279   'locked' => '1',
4280 ))
4281 ->values(array(
4282   'dfid' => '4',
4283   'format' => 'Y/m/d - H:i',
4284   'type' => 'short',
4285   'locked' => '1',
4286 ))
4287 ->values(array(
4288   'dfid' => '5',
4289   'format' => 'd.m.Y - H:i',
4290   'type' => 'short',
4291   'locked' => '1',
4292 ))
4293 ->values(array(
4294   'dfid' => '6',
4295   'format' => 'm/d/Y - g:ia',
4296   'type' => 'short',
4297   'locked' => '1',
4298 ))
4299 ->values(array(
4300   'dfid' => '7',
4301   'format' => 'd/m/Y - g:ia',
4302   'type' => 'short',
4303   'locked' => '1',
4304 ))
4305 ->values(array(
4306   'dfid' => '8',
4307   'format' => 'Y/m/d - g:ia',
4308   'type' => 'short',
4309   'locked' => '1',
4310 ))
4311 ->values(array(
4312   'dfid' => '9',
4313   'format' => 'M j Y - H:i',
4314   'type' => 'short',
4315   'locked' => '1',
4316 ))
4317 ->values(array(
4318   'dfid' => '10',
4319   'format' => 'j M Y - H:i',
4320   'type' => 'short',
4321   'locked' => '1',
4322 ))
4323 ->values(array(
4324   'dfid' => '11',
4325   'format' => 'Y M j - H:i',
4326   'type' => 'short',
4327   'locked' => '1',
4328 ))
4329 ->values(array(
4330   'dfid' => '12',
4331   'format' => 'M j Y - g:ia',
4332   'type' => 'short',
4333   'locked' => '1',
4334 ))
4335 ->values(array(
4336   'dfid' => '13',
4337   'format' => 'j M Y - g:ia',
4338   'type' => 'short',
4339   'locked' => '1',
4340 ))
4341 ->values(array(
4342   'dfid' => '14',
4343   'format' => 'Y M j - g:ia',
4344   'type' => 'short',
4345   'locked' => '1',
4346 ))
4347 ->values(array(
4348   'dfid' => '15',
4349   'format' => 'D, Y-m-d H:i',
4350   'type' => 'medium',
4351   'locked' => '1',
4352 ))
4353 ->values(array(
4354   'dfid' => '16',
4355   'format' => 'D, m/d/Y - H:i',
4356   'type' => 'medium',
4357   'locked' => '1',
4358 ))
4359 ->values(array(
4360   'dfid' => '17',
4361   'format' => 'D, d/m/Y - H:i',
4362   'type' => 'medium',
4363   'locked' => '1',
4364 ))
4365 ->values(array(
4366   'dfid' => '18',
4367   'format' => 'D, Y/m/d - H:i',
4368   'type' => 'medium',
4369   'locked' => '1',
4370 ))
4371 ->values(array(
4372   'dfid' => '19',
4373   'format' => 'F j, Y - H:i',
4374   'type' => 'medium',
4375   'locked' => '1',
4376 ))
4377 ->values(array(
4378   'dfid' => '20',
4379   'format' => 'j F, Y - H:i',
4380   'type' => 'medium',
4381   'locked' => '1',
4382 ))
4383 ->values(array(
4384   'dfid' => '21',
4385   'format' => 'Y, F j - H:i',
4386   'type' => 'medium',
4387   'locked' => '1',
4388 ))
4389 ->values(array(
4390   'dfid' => '22',
4391   'format' => 'D, m/d/Y - g:ia',
4392   'type' => 'medium',
4393   'locked' => '1',
4394 ))
4395 ->values(array(
4396   'dfid' => '23',
4397   'format' => 'D, d/m/Y - g:ia',
4398   'type' => 'medium',
4399   'locked' => '1',
4400 ))
4401 ->values(array(
4402   'dfid' => '24',
4403   'format' => 'D, Y/m/d - g:ia',
4404   'type' => 'medium',
4405   'locked' => '1',
4406 ))
4407 ->values(array(
4408   'dfid' => '25',
4409   'format' => 'F j, Y - g:ia',
4410   'type' => 'medium',
4411   'locked' => '1',
4412 ))
4413 ->values(array(
4414   'dfid' => '26',
4415   'format' => 'j F Y - g:ia',
4416   'type' => 'medium',
4417   'locked' => '1',
4418 ))
4419 ->values(array(
4420   'dfid' => '27',
4421   'format' => 'Y, F j - g:ia',
4422   'type' => 'medium',
4423   'locked' => '1',
4424 ))
4425 ->values(array(
4426   'dfid' => '28',
4427   'format' => 'j. F Y - G:i',
4428   'type' => 'medium',
4429   'locked' => '1',
4430 ))
4431 ->values(array(
4432   'dfid' => '29',
4433   'format' => 'l, F j, Y - H:i',
4434   'type' => 'long',
4435   'locked' => '1',
4436 ))
4437 ->values(array(
4438   'dfid' => '30',
4439   'format' => 'l, j F, Y - H:i',
4440   'type' => 'long',
4441   'locked' => '1',
4442 ))
4443 ->values(array(
4444   'dfid' => '31',
4445   'format' => 'l, Y,  F j - H:i',
4446   'type' => 'long',
4447   'locked' => '1',
4448 ))
4449 ->values(array(
4450   'dfid' => '32',
4451   'format' => 'l, F j, Y - g:ia',
4452   'type' => 'long',
4453   'locked' => '1',
4454 ))
4455 ->values(array(
4456   'dfid' => '33',
4457   'format' => 'l, j F Y - g:ia',
4458   'type' => 'long',
4459   'locked' => '1',
4460 ))
4461 ->values(array(
4462   'dfid' => '34',
4463   'format' => 'l, Y,  F j - g:ia',
4464   'type' => 'long',
4465   'locked' => '1',
4466 ))
4467 ->values(array(
4468   'dfid' => '35',
4469   'format' => 'l, j. F Y - G:i',
4470   'type' => 'long',
4471   'locked' => '1',
4472 ))
4473 ->execute();
4474
4475 $connection->schema()->createTable('event', array(
4476   'fields' => array(
4477     'nid' => array(
4478       'type' => 'int',
4479       'not null' => TRUE,
4480       'size' => 'normal',
4481       'default' => '0',
4482       'unsigned' => TRUE,
4483     ),
4484     'event_start' => array(
4485       'type' => 'varchar',
4486       'not null' => TRUE,
4487       'length' => '100',
4488     ),
4489     'event_end' => array(
4490       'type' => 'varchar',
4491       'not null' => TRUE,
4492       'length' => '100',
4493     ),
4494     'timezone' => array(
4495       'type' => 'int',
4496       'not null' => TRUE,
4497       'size' => 'normal',
4498       'default' => '0',
4499     ),
4500     'start_in_dst' => array(
4501       'type' => 'int',
4502       'not null' => TRUE,
4503       'size' => 'normal',
4504       'default' => '0',
4505     ),
4506     'end_in_dst' => array(
4507       'type' => 'int',
4508       'not null' => TRUE,
4509       'size' => 'normal',
4510       'default' => '0',
4511     ),
4512     'has_time' => array(
4513       'type' => 'int',
4514       'not null' => TRUE,
4515       'size' => 'normal',
4516       'default' => '1',
4517     ),
4518     'has_end_date' => array(
4519       'type' => 'int',
4520       'not null' => TRUE,
4521       'size' => 'normal',
4522       'default' => '1',
4523     ),
4524   ),
4525   'primary key' => array(
4526     'nid',
4527   ),
4528   'mysql_character_set' => 'utf8',
4529 ));
4530
4531 $connection->schema()->createTable('event_timezones', array(
4532   'fields' => array(
4533     'timezone' => array(
4534       'type' => 'int',
4535       'not null' => TRUE,
4536       'size' => 'normal',
4537       'default' => '0',
4538     ),
4539     'name' => array(
4540       'type' => 'varchar',
4541       'not null' => TRUE,
4542       'length' => '255',
4543       'default' => '',
4544     ),
4545     'offset' => array(
4546       'type' => 'varchar',
4547       'not null' => TRUE,
4548       'length' => '100',
4549       'default' => '00:00:00',
4550     ),
4551     'offset_dst' => array(
4552       'type' => 'varchar',
4553       'not null' => TRUE,
4554       'length' => '100',
4555       'default' => '00:00:00',
4556     ),
4557     'dst_region' => array(
4558       'type' => 'int',
4559       'not null' => TRUE,
4560       'size' => 'normal',
4561       'default' => '0',
4562     ),
4563     'is_dst' => array(
4564       'type' => 'int',
4565       'not null' => TRUE,
4566       'size' => 'normal',
4567       'default' => '0',
4568     ),
4569   ),
4570   'primary key' => array(
4571     'timezone',
4572   ),
4573   'mysql_character_set' => 'utf8',
4574 ));
4575
4576 $connection->insert('event_timezones')
4577 ->fields(array(
4578   'timezone',
4579   'name',
4580   'offset',
4581   'offset_dst',
4582   'dst_region',
4583   'is_dst',
4584 ))
4585 ->values(array(
4586   'timezone' => '1',
4587   'name' => 'Africa/Addis Ababa',
4588   'offset' => '03:00:00',
4589   'offset_dst' => '03:00:00',
4590   'dst_region' => '0',
4591   'is_dst' => '0',
4592 ))
4593 ->values(array(
4594   'timezone' => '2',
4595   'name' => 'Africa/Algiers',
4596   'offset' => '01:00:00',
4597   'offset_dst' => '01:00:00',
4598   'dst_region' => '0',
4599   'is_dst' => '0',
4600 ))
4601 ->values(array(
4602   'timezone' => '3',
4603   'name' => 'Africa/Asmera',
4604   'offset' => '03:00:00',
4605   'offset_dst' => '03:00:00',
4606   'dst_region' => '0',
4607   'is_dst' => '0',
4608 ))
4609 ->values(array(
4610   'timezone' => '4',
4611   'name' => 'Africa/Bangui',
4612   'offset' => '01:00:00',
4613   'offset_dst' => '01:00:00',
4614   'dst_region' => '0',
4615   'is_dst' => '0',
4616 ))
4617 ->values(array(
4618   'timezone' => '5',
4619   'name' => 'Africa/Blantyre',
4620   'offset' => '02:00:00',
4621   'offset_dst' => '02:00:00',
4622   'dst_region' => '0',
4623   'is_dst' => '0',
4624 ))
4625 ->values(array(
4626   'timezone' => '6',
4627   'name' => 'Africa/Brazzaville',
4628   'offset' => '01:00:00',
4629   'offset_dst' => '01:00:00',
4630   'dst_region' => '0',
4631   'is_dst' => '0',
4632 ))
4633 ->values(array(
4634   'timezone' => '7',
4635   'name' => 'Africa/Bujumbura',
4636   'offset' => '02:00:00',
4637   'offset_dst' => '02:00:00',
4638   'dst_region' => '0',
4639   'is_dst' => '0',
4640 ))
4641 ->values(array(
4642   'timezone' => '8',
4643   'name' => 'Africa/Cairo',
4644   'offset' => '02:00:00',
4645   'offset_dst' => '03:00:00',
4646   'dst_region' => '1',
4647   'is_dst' => '0',
4648 ))
4649 ->values(array(
4650   'timezone' => '9',
4651   'name' => 'Africa/Ceuta',
4652   'offset' => '01:00:00',
4653   'offset_dst' => '02:00:00',
4654   'dst_region' => '1',
4655   'is_dst' => '0',
4656 ))
4657 ->values(array(
4658   'timezone' => '10',
4659   'name' => 'Africa/Dar es Salaam',
4660   'offset' => '03:00:00',
4661   'offset_dst' => '03:00:00',
4662   'dst_region' => '0',
4663   'is_dst' => '0',
4664 ))
4665 ->values(array(
4666   'timezone' => '11',
4667   'name' => 'Africa/Djibouti',
4668   'offset' => '03:00:00',
4669   'offset_dst' => '03:00:00',
4670   'dst_region' => '0',
4671   'is_dst' => '0',
4672 ))
4673 ->values(array(
4674   'timezone' => '12',
4675   'name' => 'Africa/Douala',
4676   'offset' => '01:00:00',
4677   'offset_dst' => '01:00:00',
4678   'dst_region' => '0',
4679   'is_dst' => '0',
4680 ))
4681 ->values(array(
4682   'timezone' => '13',
4683   'name' => 'Africa/Gaborone',
4684   'offset' => '02:00:00',
4685   'offset_dst' => '02:00:00',
4686   'dst_region' => '0',
4687   'is_dst' => '0',
4688 ))
4689 ->values(array(
4690   'timezone' => '14',
4691   'name' => 'Africa/Harare',
4692   'offset' => '02:00:00',
4693   'offset_dst' => '02:00:00',
4694   'dst_region' => '0',
4695   'is_dst' => '0',
4696 ))
4697 ->values(array(
4698   'timezone' => '15',
4699   'name' => 'Africa/Johannesburg',
4700   'offset' => '02:00:00',
4701   'offset_dst' => '02:00:00',
4702   'dst_region' => '0',
4703   'is_dst' => '0',
4704 ))
4705 ->values(array(
4706   'timezone' => '16',
4707   'name' => 'Africa/Kampala',
4708   'offset' => '03:00:00',
4709   'offset_dst' => '03:00:00',
4710   'dst_region' => '0',
4711   'is_dst' => '0',
4712 ))
4713 ->values(array(
4714   'timezone' => '17',
4715   'name' => 'Africa/Khartoum',
4716   'offset' => '03:00:00',
4717   'offset_dst' => '03:00:00',
4718   'dst_region' => '0',
4719   'is_dst' => '0',
4720 ))
4721 ->values(array(
4722   'timezone' => '18',
4723   'name' => 'Africa/Kigali',
4724   'offset' => '02:00:00',
4725   'offset_dst' => '02:00:00',
4726   'dst_region' => '0',
4727   'is_dst' => '0',
4728 ))
4729 ->values(array(
4730   'timezone' => '19',
4731   'name' => 'Africa/Kinshasa',
4732   'offset' => '01:00:00',
4733   'offset_dst' => '01:00:00',
4734   'dst_region' => '0',
4735   'is_dst' => '0',
4736 ))
4737 ->values(array(
4738   'timezone' => '20',
4739   'name' => 'Africa/Lagos',
4740   'offset' => '01:00:00',
4741   'offset_dst' => '01:00:00',
4742   'dst_region' => '0',
4743   'is_dst' => '0',
4744 ))
4745 ->values(array(
4746   'timezone' => '21',
4747   'name' => 'Africa/Libreville',
4748   'offset' => '01:00:00',
4749   'offset_dst' => '01:00:00',
4750   'dst_region' => '0',
4751   'is_dst' => '0',
4752 ))
4753 ->values(array(
4754   'timezone' => '22',
4755   'name' => 'Africa/Luanda',
4756   'offset' => '01:00:00',
4757   'offset_dst' => '01:00:00',
4758   'dst_region' => '0',
4759   'is_dst' => '0',
4760 ))
4761 ->values(array(
4762   'timezone' => '23',
4763   'name' => 'Africa/Lubumbashi',
4764   'offset' => '02:00:00',
4765   'offset_dst' => '02:00:00',
4766   'dst_region' => '0',
4767   'is_dst' => '0',
4768 ))
4769 ->values(array(
4770   'timezone' => '24',
4771   'name' => 'Africa/Lusaka',
4772   'offset' => '02:00:00',
4773   'offset_dst' => '02:00:00',
4774   'dst_region' => '0',
4775   'is_dst' => '0',
4776 ))
4777 ->values(array(
4778   'timezone' => '25',
4779   'name' => 'Africa/Malabo',
4780   'offset' => '01:00:00',
4781   'offset_dst' => '01:00:00',
4782   'dst_region' => '0',
4783   'is_dst' => '0',
4784 ))
4785 ->values(array(
4786   'timezone' => '26',
4787   'name' => 'Africa/Maputo',
4788   'offset' => '02:00:00',
4789   'offset_dst' => '02:00:00',
4790   'dst_region' => '0',
4791   'is_dst' => '0',
4792 ))
4793 ->values(array(
4794   'timezone' => '27',
4795   'name' => 'Africa/Maseru',
4796   'offset' => '02:00:00',
4797   'offset_dst' => '02:00:00',
4798   'dst_region' => '0',
4799   'is_dst' => '0',
4800 ))
4801 ->values(array(
4802   'timezone' => '28',
4803   'name' => 'Africa/Mbabane',
4804   'offset' => '02:00:00',
4805   'offset_dst' => '02:00:00',
4806   'dst_region' => '0',
4807   'is_dst' => '0',
4808 ))
4809 ->values(array(
4810   'timezone' => '29',
4811   'name' => 'Africa/Mogadishu',
4812   'offset' => '03:00:00',
4813   'offset_dst' => '03:00:00',
4814   'dst_region' => '0',
4815   'is_dst' => '0',
4816 ))
4817 ->values(array(
4818   'timezone' => '30',
4819   'name' => 'Africa/Nairobi',
4820   'offset' => '03:00:00',
4821   'offset_dst' => '03:00:00',
4822   'dst_region' => '0',
4823   'is_dst' => '0',
4824 ))
4825 ->values(array(
4826   'timezone' => '31',
4827   'name' => 'Africa/Ndjamena',
4828   'offset' => '01:00:00',
4829   'offset_dst' => '01:00:00',
4830   'dst_region' => '0',
4831   'is_dst' => '0',
4832 ))
4833 ->values(array(
4834   'timezone' => '32',
4835   'name' => 'Africa/Niamey',
4836   'offset' => '01:00:00',
4837   'offset_dst' => '01:00:00',
4838   'dst_region' => '0',
4839   'is_dst' => '0',
4840 ))
4841 ->values(array(
4842   'timezone' => '33',
4843   'name' => 'Africa/Porto-Novo',
4844   'offset' => '01:00:00',
4845   'offset_dst' => '01:00:00',
4846   'dst_region' => '0',
4847   'is_dst' => '0',
4848 ))
4849 ->values(array(
4850   'timezone' => '34',
4851   'name' => 'Africa/Tripoli',
4852   'offset' => '02:00:00',
4853   'offset_dst' => '02:00:00',
4854   'dst_region' => '0',
4855   'is_dst' => '0',
4856 ))
4857 ->values(array(
4858   'timezone' => '35',
4859   'name' => 'Africa/Tunis',
4860   'offset' => '01:00:00',
4861   'offset_dst' => '01:00:00',
4862   'dst_region' => '0',
4863   'is_dst' => '0',
4864 ))
4865 ->values(array(
4866   'timezone' => '36',
4867   'name' => 'Africa/Windhoek',
4868   'offset' => '02:00:00',
4869   'offset_dst' => '01:00:00',
4870   'dst_region' => '2',
4871   'is_dst' => '0',
4872 ))
4873 ->values(array(
4874   'timezone' => '37',
4875   'name' => 'America/Adak',
4876   'offset' => '-10:00:00',
4877   'offset_dst' => '-09:00:00',
4878   'dst_region' => '15',
4879   'is_dst' => '0',
4880 ))
4881 ->values(array(
4882   'timezone' => '38',
4883   'name' => 'America/Anchorage',
4884   'offset' => '-09:00:00',
4885   'offset_dst' => '-08:00:00',
4886   'dst_region' => '15',
4887   'is_dst' => '0',
4888 ))
4889 ->values(array(
4890   'timezone' => '39',
4891   'name' => 'America/Anguilla',
4892   'offset' => '-04:00:00',
4893   'offset_dst' => '-04:00:00',
4894   'dst_region' => '0',
4895   'is_dst' => '0',
4896 ))
4897 ->values(array(
4898   'timezone' => '40',
4899   'name' => 'America/Antigua',
4900   'offset' => '-04:00:00',
4901   'offset_dst' => '-04:00:00',
4902   'dst_region' => '0',
4903   'is_dst' => '0',
4904 ))
4905 ->values(array(
4906   'timezone' => '41',
4907   'name' => 'America/Araguaina',
4908   'offset' => '-02:00:00',
4909   'offset_dst' => '-03:00:00',
4910   'dst_region' => '17',
4911   'is_dst' => '0',
4912 ))
4913 ->values(array(
4914   'timezone' => '42',
4915   'name' => 'America/Aruba',
4916   'offset' => '-04:00:00',
4917   'offset_dst' => '-04:00:00',
4918   'dst_region' => '0',
4919   'is_dst' => '0',
4920 ))
4921 ->values(array(
4922   'timezone' => '43',
4923   'name' => 'America/Asuncion',
4924   'offset' => '-03:00:00',
4925   'offset_dst' => '-04:00:00',
4926   'dst_region' => '20',
4927   'is_dst' => '0',
4928 ))
4929 ->values(array(
4930   'timezone' => '44',
4931   'name' => 'America/Atka',
4932   'offset' => '-10:00:00',
4933   'offset_dst' => '-09:00:00',
4934   'dst_region' => '15',
4935   'is_dst' => '0',
4936 ))
4937 ->values(array(
4938   'timezone' => '45',
4939   'name' => 'America/Barbados',
4940   'offset' => '-04:00:00',
4941   'offset_dst' => '-04:00:00',
4942   'dst_region' => '0',
4943   'is_dst' => '0',
4944 ))
4945 ->values(array(
4946   'timezone' => '46',
4947   'name' => 'America/Belem',
4948   'offset' => '-03:00:00',
4949   'offset_dst' => '-03:00:00',
4950   'dst_region' => '0',
4951   'is_dst' => '0',
4952 ))
4953 ->values(array(
4954   'timezone' => '47',
4955   'name' => 'America/Belize',
4956   'offset' => '-06:00:00',
4957   'offset_dst' => '-06:00:00',
4958   'dst_region' => '0',
4959   'is_dst' => '0',
4960 ))
4961 ->values(array(
4962   'timezone' => '48',
4963   'name' => 'America/Boa Vista',
4964   'offset' => '-04:00:00',
4965   'offset_dst' => '-04:00:00',
4966   'dst_region' => '0',
4967   'is_dst' => '0',
4968 ))
4969 ->values(array(
4970   'timezone' => '49',
4971   'name' => 'America/Bogota',
4972   'offset' => '-05:00:00',
4973   'offset_dst' => '-05:00:00',
4974   'dst_region' => '0',
4975   'is_dst' => '0',
4976 ))
4977 ->values(array(
4978   'timezone' => '50',
4979   'name' => 'America/Boise',
4980   'offset' => '-07:00:00',
4981   'offset_dst' => '-06:00:00',
4982   'dst_region' => '15',
4983   'is_dst' => '0',
4984 ))
4985 ->values(array(
4986   'timezone' => '51',
4987   'name' => 'America/Buenos Aires',
4988   'offset' => '-03:00:00',
4989   'offset_dst' => '-03:00:00',
4990   'dst_region' => '0',
4991   'is_dst' => '0',
4992 ))
4993 ->values(array(
4994   'timezone' => '52',
4995   'name' => 'America/Cambridge Bay',
4996   'offset' => '-07:00:00',
4997   'offset_dst' => '-06:00:00',
4998   'dst_region' => '15',
4999   'is_dst' => '0',
5000 ))
5001 ->values(array(
5002   'timezone' => '53',
5003   'name' => 'America/Cancun',
5004   'offset' => '-06:00:00',
5005   'offset_dst' => '-05:00:00',
5006   'dst_region' => '15',
5007   'is_dst' => '0',
5008 ))
5009 ->values(array(
5010   'timezone' => '54',
5011   'name' => 'America/Caracas',
5012   'offset' => '-04:00:00',
5013   'offset_dst' => '-04:00:00',
5014   'dst_region' => '0',
5015   'is_dst' => '0',
5016 ))
5017 ->values(array(
5018   'timezone' => '55',
5019   'name' => 'America/Catamarca',
5020   'offset' => '-03:00:00',
5021   'offset_dst' => '-03:00:00',
5022   'dst_region' => '0',
5023   'is_dst' => '0',
5024 ))
5025 ->values(array(
5026   'timezone' => '56',
5027   'name' => 'America/Cayenne',
5028   'offset' => '-03:00:00',
5029   'offset_dst' => '-03:00:00',
5030   'dst_region' => '0',
5031   'is_dst' => '0',
5032 ))
5033 ->values(array(
5034   'timezone' => '57',
5035   'name' => 'America/Cayman',
5036   'offset' => '-05:00:00',
5037   'offset_dst' => '-05:00:00',
5038   'dst_region' => '0',
5039   'is_dst' => '0',
5040 ))
5041 ->values(array(
5042   'timezone' => '58',
5043   'name' => 'America/Chicago',
5044   'offset' => '-06:00:00',
5045   'offset_dst' => '-05:00:00',
5046   'dst_region' => '15',
5047   'is_dst' => '0',
5048 ))
5049 ->values(array(
5050   'timezone' => '59',
5051   'name' => 'America/Chihuahua',
5052   'offset' => '-07:00:00',
5053   'offset_dst' => '-06:00:00',
5054   'dst_region' => '15',
5055   'is_dst' => '0',
5056 ))
5057 ->values(array(
5058   'timezone' => '60',
5059   'name' => 'America/Cordoba',
5060   'offset' => '-03:00:00',
5061   'offset_dst' => '-03:00:00',
5062   'dst_region' => '0',
5063   'is_dst' => '0',
5064 ))
5065 ->values(array(
5066   'timezone' => '61',
5067   'name' => 'America/Costa Rica',
5068   'offset' => '-06:00:00',
5069   'offset_dst' => '-06:00:00',
5070   'dst_region' => '0',
5071   'is_dst' => '0',
5072 ))
5073 ->values(array(
5074   'timezone' => '62',
5075   'name' => 'America/Cuiaba',
5076   'offset' => '-03:00:00',
5077   'offset_dst' => '-04:00:00',
5078   'dst_region' => '17',
5079   'is_dst' => '0',
5080 ))
5081 ->values(array(
5082   'timezone' => '63',
5083   'name' => 'America/Curacao',
5084   'offset' => '-04:00:00',
5085   'offset_dst' => '-04:00:00',
5086   'dst_region' => '0',
5087   'is_dst' => '0',
5088 ))
5089 ->values(array(
5090   'timezone' => '64',
5091   'name' => 'America/Dawson',
5092   'offset' => '-08:00:00',
5093   'offset_dst' => '-07:00:00',
5094   'dst_region' => '15',
5095   'is_dst' => '0',
5096 ))
5097 ->values(array(
5098   'timezone' => '65',
5099   'name' => 'America/Dawson Creek',
5100   'offset' => '-07:00:00',
5101   'offset_dst' => '-07:00:00',
5102   'dst_region' => '0',
5103   'is_dst' => '0',
5104 ))
5105 ->values(array(
5106   'timezone' => '66',
5107   'name' => 'America/Denver',
5108   'offset' => '-07:00:00',
5109   'offset_dst' => '-06:00:00',
5110   'dst_region' => '15',
5111   'is_dst' => '0',
5112 ))
5113 ->values(array(
5114   'timezone' => '67',
5115   'name' => 'America/Detroit',
5116   'offset' => '-05:00:00',
5117   'offset_dst' => '-04:00:00',
5118   'dst_region' => '15',
5119   'is_dst' => '0',
5120 ))
5121 ->values(array(
5122   'timezone' => '68',
5123   'name' => 'America/Dominica',
5124   'offset' => '-04:00:00',
5125   'offset_dst' => '-04:00:00',
5126   'dst_region' => '0',
5127   'is_dst' => '0',
5128 ))
5129 ->values(array(
5130   'timezone' => '69',
5131   'name' => 'America/Edmonton',
5132   'offset' => '-07:00:00',
5133   'offset_dst' => '-06:00:00',
5134   'dst_region' => '15',
5135   'is_dst' => '0',
5136 ))
5137 ->values(array(
5138   'timezone' => '70',
5139   'name' => 'America/Eirunepe',
5140   'offset' => '-05:00:00',
5141   'offset_dst' => '-05:00:00',
5142   'dst_region' => '0',
5143   'is_dst' => '0',
5144 ))
5145 ->values(array(
5146   'timezone' => '71',
5147   'name' => 'America/El Salvador',
5148   'offset' => '-06:00:00',
5149   'offset_dst' => '-06:00:00',
5150   'dst_region' => '0',
5151   'is_dst' => '0',
5152 ))
5153 ->values(array(
5154   'timezone' => '72',
5155   'name' => 'America/Ensenada',
5156   'offset' => '-08:00:00',
5157   'offset_dst' => '-07:00:00',
5158   'dst_region' => '15',
5159   'is_dst' => '0',
5160 ))
5161 ->values(array(
5162   'timezone' => '73',
5163   'name' => 'America/Fort Wayne',
5164   'offset' => '-05:00:00',
5165   'offset_dst' => '-05:00:00',
5166   'dst_region' => '0',
5167   'is_dst' => '0',
5168 ))
5169 ->values(array(
5170   'timezone' => '74',
5171   'name' => 'America/Fortaleza',
5172   'offset' => '-03:00:00',
5173   'offset_dst' => '-03:00:00',
5174   'dst_region' => '0',
5175   'is_dst' => '0',
5176 ))
5177 ->values(array(
5178   'timezone' => '75',
5179   'name' => 'America/Glace Bay',
5180   'offset' => '-04:00:00',
5181   'offset_dst' => '-03:00:00',
5182   'dst_region' => '15',
5183   'is_dst' => '0',
5184 ))
5185 ->values(array(
5186   'timezone' => '76',
5187   'name' => 'America/Godthab',
5188   'offset' => '-03:00:00',
5189   'offset_dst' => '-02:00:00',
5190   'dst_region' => '15',
5191   'is_dst' => '0',
5192 ))
5193 ->values(array(
5194   'timezone' => '77',
5195   'name' => 'America/Goose Bay',
5196   'offset' => '-04:00:00',
5197   'offset_dst' => '-03:00:00',
5198   'dst_region' => '15',
5199   'is_dst' => '0',
5200 ))
5201 ->values(array(
5202   'timezone' => '78',
5203   'name' => 'America/Grand Turk',
5204   'offset' => '-05:00:00',
5205   'offset_dst' => '-04:00:00',
5206   'dst_region' => '16',
5207   'is_dst' => '0',
5208 ))
5209 ->values(array(
5210   'timezone' => '79',
5211   'name' => 'America/Grenada',
5212   'offset' => '-04:00:00',
5213   'offset_dst' => '-04:00:00',
5214   'dst_region' => '0',
5215   'is_dst' => '0',
5216 ))
5217 ->values(array(
5218   'timezone' => '80',
5219   'name' => 'America/Guadeloupe',
5220   'offset' => '-04:00:00',
5221   'offset_dst' => '-04:00:00',
5222   'dst_region' => '0',
5223   'is_dst' => '0',
5224 ))
5225 ->values(array(
5226   'timezone' => '81',
5227   'name' => 'America/Guatemala',
5228   'offset' => '-06:00:00',
5229   'offset_dst' => '-06:00:00',
5230   'dst_region' => '0',
5231   'is_dst' => '0',
5232 ))
5233 ->values(array(
5234   'timezone' => '82',
5235   'name' => 'America/Guayaquil',
5236   'offset' => '-05:00:00',
5237   'offset_dst' => '-05:00:00',
5238   'dst_region' => '0',
5239   'is_dst' => '0',
5240 ))
5241 ->values(array(
5242   'timezone' => '83',
5243   'name' => 'America/Guyana',
5244   'offset' => '-04:00:00',
5245   'offset_dst' => '-04:00:00',
5246   'dst_region' => '0',
5247   'is_dst' => '0',
5248 ))
5249 ->values(array(
5250   'timezone' => '84',
5251   'name' => 'America/Halifax',
5252   'offset' => '-04:00:00',
5253   'offset_dst' => '-03:00:00',
5254   'dst_region' => '15',
5255   'is_dst' => '0',
5256 ))
5257 ->values(array(
5258   'timezone' => '85',
5259   'name' => 'America/Havana',
5260   'offset' => '-05:00:00',
5261   'offset_dst' => '-04:00:00',
5262   'dst_region' => '16',
5263   'is_dst' => '0',
5264 ))
5265 ->values(array(
5266   'timezone' => '86',
5267   'name' => 'America/Hermosillo',
5268   'offset' => '-07:00:00',
5269   'offset_dst' => '-07:00:00',
5270   'dst_region' => '0',
5271   'is_dst' => '0',
5272 ))
5273 ->values(array(
5274   'timezone' => '87',
5275   'name' => 'America/Indiana/Indianapolis',
5276   'offset' => '-05:00:00',
5277   'offset_dst' => '-05:00:00',
5278   'dst_region' => '0',
5279   'is_dst' => '0',
5280 ))
5281 ->values(array(
5282   'timezone' => '88',
5283   'name' => 'America/Indiana/Knox',
5284   'offset' => '-05:00:00',
5285   'offset_dst' => '-05:00:00',
5286   'dst_region' => '0',
5287   'is_dst' => '0',
5288 ))
5289 ->values(array(
5290   'timezone' => '89',
5291   'name' => 'America/Indiana/Marengo',
5292   'offset' => '-05:00:00',
5293   'offset_dst' => '-05:00:00',
5294   'dst_region' => '0',
5295   'is_dst' => '0',
5296 ))
5297 ->values(array(
5298   'timezone' => '90',
5299   'name' => 'America/Indiana/Vevay',
5300   'offset' => '-05:00:00',
5301   'offset_dst' => '-05:00:00',
5302   'dst_region' => '0',
5303   'is_dst' => '0',
5304 ))
5305 ->values(array(
5306   'timezone' => '91',
5307   'name' => 'America/Indianapolis',
5308   'offset' => '-05:00:00',
5309   'offset_dst' => '-05:00:00',
5310   'dst_region' => '0',
5311   'is_dst' => '0',
5312 ))
5313 ->values(array(
5314   'timezone' => '92',
5315   'name' => 'America/Inuvik',
5316   'offset' => '-07:00:00',
5317   'offset_dst' => '-06:00:00',
5318   'dst_region' => '15',
5319   'is_dst' => '0',
5320 ))
5321 ->values(array(
5322   'timezone' => '93',
5323   'name' => 'America/Iqaluit',
5324   'offset' => '-05:00:00',
5325   'offset_dst' => '-04:00:00',
5326   'dst_region' => '15',
5327   'is_dst' => '0',
5328 ))
5329 ->values(array(
5330   'timezone' => '94',
5331   'name' => 'America/Jamaica',
5332   'offset' => '-05:00:00',
5333   'offset_dst' => '-05:00:00',
5334   'dst_region' => '0',
5335   'is_dst' => '0',
5336 ))
5337 ->values(array(
5338   'timezone' => '95',
5339   'name' => 'America/Jujuy',
5340   'offset' => '-03:00:00',
5341   'offset_dst' => '-03:00:00',
5342   'dst_region' => '0',
5343   'is_dst' => '0',
5344 ))
5345 ->values(array(
5346   'timezone' => '96',
5347   'name' => 'America/Juneau',
5348   'offset' => '-09:00:00',
5349   'offset_dst' => '-08:00:00',
5350   'dst_region' => '15',
5351   'is_dst' => '0',
5352 ))
5353 ->values(array(
5354   'timezone' => '97',
5355   'name' => 'America/Kentucky/Louisville',
5356   'offset' => '-05:00:00',
5357   'offset_dst' => '-04:00:00',
5358   'dst_region' => '15',
5359   'is_dst' => '0',
5360 ))
5361 ->values(array(
5362   'timezone' => '98',
5363   'name' => 'America/Kentucky/Monticello',
5364   'offset' => '-05:00:00',
5365   'offset_dst' => '-04:00:00',
5366   'dst_region' => '15',
5367   'is_dst' => '0',
5368 ))
5369 ->values(array(
5370   'timezone' => '99',
5371   'name' => 'America/Knox IN',
5372   'offset' => '-05:00:00',
5373   'offset_dst' => '-05:00:00',
5374   'dst_region' => '0',
5375   'is_dst' => '0',
5376 ))
5377 ->values(array(
5378   'timezone' => '100',
5379   'name' => 'America/La Paz',
5380   'offset' => '-04:00:00',
5381   'offset_dst' => '-04:00:00',
5382   'dst_region' => '0',
5383   'is_dst' => '0',
5384 ))
5385 ->values(array(
5386   'timezone' => '101',
5387   'name' => 'America/Lima',
5388   'offset' => '-05:00:00',
5389   'offset_dst' => '-05:00:00',
5390   'dst_region' => '0',
5391   'is_dst' => '0',
5392 ))
5393 ->values(array(
5394   'timezone' => '102',
5395   'name' => 'America/Los Angeles',
5396   'offset' => '-08:00:00',
5397   'offset_dst' => '-07:00:00',
5398   'dst_region' => '15',
5399   'is_dst' => '0',
5400 ))
5401 ->values(array(
5402   'timezone' => '103',
5403   'name' => 'America/Louisville',
5404   'offset' => '-05:00:00',
5405   'offset_dst' => '-04:00:00',
5406   'dst_region' => '15',
5407   'is_dst' => '0',
5408 ))
5409 ->values(array(
5410   'timezone' => '104',
5411   'name' => 'America/Maceio',
5412   'offset' => '-03:00:00',
5413   'offset_dst' => '-03:00:00',
5414   'dst_region' => '0',
5415   'is_dst' => '0',
5416 ))
5417 ->values(array(
5418   'timezone' => '105',
5419   'name' => 'America/Managua',
5420   'offset' => '-06:00:00',
5421   'offset_dst' => '-06:00:00',
5422   'dst_region' => '0',
5423   'is_dst' => '0',
5424 ))
5425 ->values(array(
5426   'timezone' => '106',
5427   'name' => 'America/Manaus',
5428   'offset' => '-04:00:00',
5429   'offset_dst' => '-04:00:00',
5430   'dst_region' => '0',
5431   'is_dst' => '0',
5432 ))
5433 ->values(array(
5434   'timezone' => '107',
5435   'name' => 'America/Martinique',
5436   'offset' => '-04:00:00',
5437   'offset_dst' => '-04:00:00',
5438   'dst_region' => '0',
5439   'is_dst' => '0',
5440 ))
5441 ->values(array(
5442   'timezone' => '108',
5443   'name' => 'America/Mazatlan',
5444   'offset' => '-07:00:00',
5445   'offset_dst' => '-06:00:00',
5446   'dst_region' => '15',
5447   'is_dst' => '0',
5448 ))
5449 ->values(array(
5450   'timezone' => '109',
5451   'name' => 'America/Mendoza',
5452   'offset' => '-03:00:00',
5453   'offset_dst' => '-03:00:00',
5454   'dst_region' => '0',
5455   'is_dst' => '0',
5456 ))
5457 ->values(array(
5458   'timezone' => '110',
5459   'name' => 'America/Menominee',
5460   'offset' => '-06:00:00',
5461   'offset_dst' => '-05:00:00',
5462   'dst_region' => '15',
5463   'is_dst' => '0',
5464 ))
5465 ->values(array(
5466   'timezone' => '111',
5467   'name' => 'America/Merida',
5468   'offset' => '-06:00:00',
5469   'offset_dst' => '-05:00:00',
5470   'dst_region' => '15',
5471   'is_dst' => '0',
5472 ))
5473 ->values(array(
5474   'timezone' => '112',
5475   'name' => 'America/Mexico City',
5476   'offset' => '-06:00:00',
5477   'offset_dst' => '-05:00:00',
5478   'dst_region' => '15',
5479   'is_dst' => '0',
5480 ))
5481 ->values(array(
5482   'timezone' => '113',
5483   'name' => 'America/Miquelon',
5484   'offset' => '-03:00:00',
5485   'offset_dst' => '-02:00:00',
5486   'dst_region' => '15',
5487   'is_dst' => '0',
5488 ))
5489 ->values(array(
5490   'timezone' => '114',
5491   'name' => 'America/Monterrey',
5492   'offset' => '-06:00:00',
5493   'offset_dst' => '-05:00:00',
5494   'dst_region' => '15',
5495   'is_dst' => '0',
5496 ))
5497 ->values(array(
5498   'timezone' => '115',
5499   'name' => 'America/Montevideo',
5500   'offset' => '-03:00:00',
5501   'offset_dst' => '-03:00:00',
5502   'dst_region' => '0',
5503   'is_dst' => '0',
5504 ))
5505 ->values(array(
5506   'timezone' => '116',
5507   'name' => 'America/Montreal',
5508   'offset' => '-05:00:00',
5509   'offset_dst' => '-04:00:00',
5510   'dst_region' => '15',
5511   'is_dst' => '0',
5512 ))
5513 ->values(array(
5514   'timezone' => '117',
5515   'name' => 'America/Montserrat',
5516   'offset' => '-04:00:00',
5517   'offset_dst' => '-04:00:00',
5518   'dst_region' => '0',
5519   'is_dst' => '0',
5520 ))
5521 ->values(array(
5522   'timezone' => '118',
5523   'name' => 'America/Nassau',
5524   'offset' => '-05:00:00',
5525   'offset_dst' => '-04:00:00',
5526   'dst_region' => '15',
5527   'is_dst' => '0',
5528 ))
5529 ->values(array(
5530   'timezone' => '119',
5531   'name' => 'America/New York',
5532   'offset' => '-05:00:00',
5533   'offset_dst' => '-04:00:00',
5534   'dst_region' => '15',
5535   'is_dst' => '0',
5536 ))
5537 ->values(array(
5538   'timezone' => '120',
5539   'name' => 'America/Nipigon',
5540   'offset' => '-05:00:00',
5541   'offset_dst' => '-04:00:00',
5542   'dst_region' => '15',
5543   'is_dst' => '0',
5544 ))
5545 ->values(array(
5546   'timezone' => '121',
5547   'name' => 'America/Nome',
5548   'offset' => '-09:00:00',
5549   'offset_dst' => '-08:00:00',
5550   'dst_region' => '15',
5551   'is_dst' => '0',
5552 ))
5553 ->values(array(
5554   'timezone' => '122',
5555   'name' => 'America/Noronha',
5556   'offset' => '-02:00:00',
5557   'offset_dst' => '-02:00:00',
5558   'dst_region' => '0',
5559   'is_dst' => '0',
5560 ))
5561 ->values(array(
5562   'timezone' => '123',
5563   'name' => 'America/Panama',
5564   'offset' => '-05:00:00',
5565   'offset_dst' => '-05:00:00',
5566   'dst_region' => '0',
5567   'is_dst' => '0',
5568 ))
5569 ->values(array(
5570   'timezone' => '124',
5571   'name' => 'America/Pangnirtung',
5572   'offset' => '-05:00:00',
5573   'offset_dst' => '-04:00:00',
5574   'dst_region' => '15',
5575   'is_dst' => '0',
5576 ))
5577 ->values(array(
5578   'timezone' => '125',
5579   'name' => 'America/Paramaribo',
5580   'offset' => '-03:00:00',
5581   'offset_dst' => '-03:00:00',
5582   'dst_region' => '0',
5583   'is_dst' => '0',
5584 ))
5585 ->values(array(
5586   'timezone' => '126',
5587   'name' => 'America/Phoenix',
5588   'offset' => '-07:00:00',
5589   'offset_dst' => '-07:00:00',
5590   'dst_region' => '0',
5591   'is_dst' => '0',
5592 ))
5593 ->values(array(
5594   'timezone' => '127',
5595   'name' => 'America/Port-au-Prince',
5596   'offset' => '-05:00:00',
5597   'offset_dst' => '-05:00:00',
5598   'dst_region' => '0',
5599   'is_dst' => '0',
5600 ))
5601 ->values(array(
5602   'timezone' => '128',
5603   'name' => 'America/Port of Spain',
5604   'offset' => '-04:00:00',
5605   'offset_dst' => '-04:00:00',
5606   'dst_region' => '0',
5607   'is_dst' => '0',
5608 ))
5609 ->values(array(
5610   'timezone' => '129',
5611   'name' => 'America/Porto Acre',
5612   'offset' => '-05:00:00',
5613   'offset_dst' => '-05:00:00',
5614   'dst_region' => '0',
5615   'is_dst' => '0',
5616 ))
5617 ->values(array(
5618   'timezone' => '130',
5619   'name' => 'America/Porto Velho',
5620   'offset' => '-04:00:00',
5621   'offset_dst' => '-04:00:00',
5622   'dst_region' => '0',
5623   'is_dst' => '0',
5624 ))
5625 ->values(array(
5626   'timezone' => '131',
5627   'name' => 'America/Puerto Rico',
5628   'offset' => '-04:00:00',
5629   'offset_dst' => '-04:00:00',
5630   'dst_region' => '0',
5631   'is_dst' => '0',
5632 ))
5633 ->values(array(
5634   'timezone' => '132',
5635   'name' => 'America/Rainy River',
5636   'offset' => '-06:00:00',
5637   'offset_dst' => '-05:00:00',
5638   'dst_region' => '15',
5639   'is_dst' => '0',
5640 ))
5641 ->values(array(
5642   'timezone' => '133',
5643   'name' => 'America/Rankin Inlet',
5644   'offset' => '-06:00:00',
5645   'offset_dst' => '-05:00:00',
5646   'dst_region' => '15',
5647   'is_dst' => '0',
5648 ))
5649 ->values(array(
5650   'timezone' => '134',
5651   'name' => 'America/Recife',
5652   'offset' => '-03:00:00',
5653   'offset_dst' => '-03:00:00',
5654   'dst_region' => '0',
5655   'is_dst' => '0',
5656 ))
5657 ->values(array(
5658   'timezone' => '135',
5659   'name' => 'America/Regina',
5660   'offset' => '-06:00:00',
5661   'offset_dst' => '-06:00:00',
5662   'dst_region' => '0',
5663   'is_dst' => '0',
5664 ))
5665 ->values(array(
5666   'timezone' => '136',
5667   'name' => 'America/Rio Branco',
5668   'offset' => '-05:00:00',
5669   'offset_dst' => '-05:00:00',
5670   'dst_region' => '0',
5671   'is_dst' => '0',
5672 ))
5673 ->values(array(
5674   'timezone' => '137',
5675   'name' => 'America/Rosario',
5676   'offset' => '-03:00:00',
5677   'offset_dst' => '-03:00:00',
5678   'dst_region' => '0',
5679   'is_dst' => '0',
5680 ))
5681 ->values(array(
5682   'timezone' => '138',
5683   'name' => 'America/Santiago',
5684   'offset' => '-03:00:00',
5685   'offset_dst' => '-04:00:00',
5686   'dst_region' => '15',
5687   'is_dst' => '0',
5688 ))
5689 ->values(array(
5690   'timezone' => '139',
5691   'name' => 'America/Santo Domingo',
5692   'offset' => '-04:00:00',
5693   'offset_dst' => '-04:00:00',
5694   'dst_region' => '0',
5695   'is_dst' => '0',
5696 ))
5697 ->values(array(
5698   'timezone' => '140',
5699   'name' => 'America/Sao Paulo',
5700   'offset' => '-02:00:00',
5701   'offset_dst' => '-03:00:00',
5702   'dst_region' => '15',
5703   'is_dst' => '0',
5704 ))
5705 ->values(array(
5706   'timezone' => '141',
5707   'name' => 'America/Scoresbysund',
5708   'offset' => '-01:00:00',
5709   'offset_dst' => '00:00:00',
5710   'dst_region' => '15',
5711   'is_dst' => '0',
5712 ))
5713 ->values(array(
5714   'timezone' => '142',
5715   'name' => 'America/Shiprock',
5716   'offset' => '-07:00:00',
5717   'offset_dst' => '-06:00:00',
5718   'dst_region' => '15',
5719   'is_dst' => '0',
5720 ))
5721 ->values(array(
5722   'timezone' => '143',
5723   'name' => 'America/St Johns',
5724   'offset' => '-03:30:00',
5725   'offset_dst' => '-02:30:00',
5726   'dst_region' => '15',
5727   'is_dst' => '0',
5728 ))
5729 ->values(array(
5730   'timezone' => '144',
5731   'name' => 'America/St Kitts',
5732   'offset' => '-04:00:00',
5733   'offset_dst' => '-04:00:00',
5734   'dst_region' => '0',
5735   'is_dst' => '0',
5736 ))
5737 ->values(array(
5738   'timezone' => '145',
5739   'name' => 'America/St Lucia',
5740   'offset' => '-04:00:00',
5741   'offset_dst' => '-04:00:00',
5742   'dst_region' => '0',
5743   'is_dst' => '0',
5744 ))
5745 ->values(array(
5746   'timezone' => '146',
5747   'name' => 'America/St Thomas',
5748   'offset' => '-04:00:00',
5749   'offset_dst' => '-04:00:00',
5750   'dst_region' => '0',
5751   'is_dst' => '0',
5752 ))
5753 ->values(array(
5754   'timezone' => '147',
5755   'name' => 'America/St Vincent',
5756   'offset' => '-04:00:00',
5757   'offset_dst' => '-04:00:00',
5758   'dst_region' => '0',
5759   'is_dst' => '0',
5760 ))
5761 ->values(array(
5762   'timezone' => '148',
5763   'name' => 'America/Swift Current',
5764   'offset' => '-06:00:00',
5765   'offset_dst' => '-06:00:00',
5766   'dst_region' => '0',
5767   'is_dst' => '0',
5768 ))
5769 ->values(array(
5770   'timezone' => '149',
5771   'name' => 'America/Tegucigalpa',
5772   'offset' => '-06:00:00',
5773   'offset_dst' => '-06:00:00',
5774   'dst_region' => '0',
5775   'is_dst' => '0',
5776 ))
5777 ->values(array(
5778   'timezone' => '150',
5779   'name' => 'America/Thule',
5780   'offset' => '-04:00:00',
5781   'offset_dst' => '-03:00:00',
5782   'dst_region' => '15',
5783   'is_dst' => '0',
5784 ))
5785 ->values(array(
5786   'timezone' => '151',
5787   'name' => 'America/Thunder Bay',
5788   'offset' => '-05:00:00',
5789   'offset_dst' => '-04:00:00',
5790   'dst_region' => '15',
5791   'is_dst' => '0',
5792 ))
5793 ->values(array(
5794   'timezone' => '152',
5795   'name' => 'America/Tijuana',
5796   'offset' => '-08:00:00',
5797   'offset_dst' => '-07:00:00',
5798   'dst_region' => '15',
5799   'is_dst' => '0',
5800 ))
5801 ->values(array(
5802   'timezone' => '153',
5803   'name' => 'America/Tortola',
5804   'offset' => '-04:00:00',
5805   'offset_dst' => '-04:00:00',
5806   'dst_region' => '0',
5807   'is_dst' => '0',
5808 ))
5809 ->values(array(
5810   'timezone' => '154',
5811   'name' => 'America/Vancouver',
5812   'offset' => '-08:00:00',
5813   'offset_dst' => '-07:00:00',
5814   'dst_region' => '15',
5815   'is_dst' => '0',
5816 ))
5817 ->values(array(
5818   'timezone' => '155',
5819   'name' => 'America/Virgin',
5820   'offset' => '-04:00:00',
5821   'offset_dst' => '-04:00:00',
5822   'dst_region' => '0',
5823   'is_dst' => '0',
5824 ))
5825 ->values(array(
5826   'timezone' => '156',
5827   'name' => 'America/Whitehorse',
5828   'offset' => '-08:00:00',
5829   'offset_dst' => '-07:00:00',
5830   'dst_region' => '15',
5831   'is_dst' => '0',
5832 ))
5833 ->values(array(
5834   'timezone' => '157',
5835   'name' => 'America/Winnipeg',
5836   'offset' => '-06:00:00',
5837   'offset_dst' => '-05:00:00',
5838   'dst_region' => '15',
5839   'is_dst' => '0',
5840 ))
5841 ->values(array(
5842   'timezone' => '158',
5843   'name' => 'America/Yakutat',
5844   'offset' => '-09:00:00',
5845   'offset_dst' => '-08:00:00',
5846   'dst_region' => '15',
5847   'is_dst' => '0',
5848 ))
5849 ->values(array(
5850   'timezone' => '159',
5851   'name' => 'America/Yellowknife',
5852   'offset' => '-07:00:00',
5853   'offset_dst' => '-06:00:00',
5854   'dst_region' => '15',
5855   'is_dst' => '0',
5856 ))
5857 ->values(array(
5858   'timezone' => '160',
5859   'name' => 'Antarctica/Casey',
5860   'offset' => '08:00:00',
5861   'offset_dst' => '08:00:00',
5862   'dst_region' => '0',
5863   'is_dst' => '0',
5864 ))
5865 ->values(array(
5866   'timezone' => '161',
5867   'name' => 'Antarctica/Davis',
5868   'offset' => '07:00:00',
5869   'offset_dst' => '07:00:00',
5870   'dst_region' => '0',
5871   'is_dst' => '0',
5872 ))
5873 ->values(array(
5874   'timezone' => '162',
5875   'name' => 'Antarctica/DumontDUrville',
5876   'offset' => '10:00:00',
5877   'offset_dst' => '10:00:00',
5878   'dst_region' => '0',
5879   'is_dst' => '0',
5880 ))
5881 ->values(array(
5882   'timezone' => '163',
5883   'name' => 'Antarctica/Mawson',
5884   'offset' => '06:00:00',
5885   'offset_dst' => '06:00:00',
5886   'dst_region' => '0',
5887   'is_dst' => '0',
5888 ))
5889 ->values(array(
5890   'timezone' => '164',
5891   'name' => 'Antarctica/McMurdo',
5892   'offset' => '13:00:00',
5893   'offset_dst' => '12:00:00',
5894   'dst_region' => '11',
5895   'is_dst' => '0',
5896 ))
5897 ->values(array(
5898   'timezone' => '165',
5899   'name' => 'Antarctica/Palmer',
5900   'offset' => '-03:00:00',
5901   'offset_dst' => '-04:00:00',
5902   'dst_region' => '18',
5903   'is_dst' => '0',
5904 ))
5905 ->values(array(
5906   'timezone' => '166',
5907   'name' => 'Antarctica/South Pole',
5908   'offset' => '13:00:00',
5909   'offset_dst' => '12:00:00',
5910   'dst_region' => '11',
5911   'is_dst' => '0',
5912 ))
5913 ->values(array(
5914   'timezone' => '167',
5915   'name' => 'Antarctica/Syowa',
5916   'offset' => '03:00:00',
5917   'offset_dst' => '03:00:00',
5918   'dst_region' => '0',
5919   'is_dst' => '0',
5920 ))
5921 ->values(array(
5922   'timezone' => '168',
5923   'name' => 'Antarctica/Vostok',
5924   'offset' => '06:00:00',
5925   'offset_dst' => '06:00:00',
5926   'dst_region' => '0',
5927   'is_dst' => '0',
5928 ))
5929 ->values(array(
5930   'timezone' => '169',
5931   'name' => 'Arctic/Longyearbyen',
5932   'offset' => '01:00:00',
5933   'offset_dst' => '02:00:00',
5934   'dst_region' => '14',
5935   'is_dst' => '0',
5936 ))
5937 ->values(array(
5938   'timezone' => '170',
5939   'name' => 'Asia/Aden',
5940   'offset' => '03:00:00',
5941   'offset_dst' => '03:00:00',
5942   'dst_region' => '0',
5943   'is_dst' => '0',
5944 ))
5945 ->values(array(
5946   'timezone' => '171',
5947   'name' => 'Asia/Almaty',
5948   'offset' => '06:00:00',
5949   'offset_dst' => '06:00:00',
5950   'dst_region' => '0',
5951   'is_dst' => '0',
5952 ))
5953 ->values(array(
5954   'timezone' => '172',
5955   'name' => 'Asia/Amman',
5956   'offset' => '02:00:00',
5957   'offset_dst' => '03:00:00',
5958   'dst_region' => '8',
5959   'is_dst' => '0',
5960 ))
5961 ->values(array(
5962   'timezone' => '173',
5963   'name' => 'Asia/Anadyr',
5964   'offset' => '12:00:00',
5965   'offset_dst' => '13:00:00',
5966   'dst_region' => '3',
5967   'is_dst' => '0',
5968 ))
5969 ->values(array(
5970   'timezone' => '174',
5971   'name' => 'Asia/Aqtau',
5972   'offset' => '04:00:00',
5973   'offset_dst' => '05:00:00',
5974   'dst_region' => '3',
5975   'is_dst' => '0',
5976 ))
5977 ->values(array(
5978   'timezone' => '175',
5979   'name' => 'Asia/Aqtobe',
5980   'offset' => '05:00:00',
5981   'offset_dst' => '06:00:00',
5982   'dst_region' => '3',
5983   'is_dst' => '0',
5984 ))
5985 ->values(array(
5986   'timezone' => '176',
5987   'name' => 'Asia/Ashgabat',
5988   'offset' => '05:00:00',
5989   'offset_dst' => '05:00:00',
5990   'dst_region' => '0',
5991   'is_dst' => '0',
5992 ))
5993 ->values(array(
5994   'timezone' => '177',
5995   'name' => 'Asia/Ashkhabad',
5996   'offset' => '05:00:00',
5997   'offset_dst' => '05:00:00',
5998   'dst_region' => '0',
5999   'is_dst' => '0',
6000 ))
6001 ->values(array(
6002   'timezone' => '178',
6003   'name' => 'Asia/Baghdad',
6004   'offset' => '03:00:00',
6005   'offset_dst' => '04:00:00',
6006   'dst_region' => '4',
6007   'is_dst' => '0',
6008 ))
6009 ->values(array(
6010   'timezone' => '179',
6011   'name' => 'Asia/Bahrain',
6012   'offset' => '03:00:00',
6013   'offset_dst' => '03:00:00',
6014   'dst_region' => '0',
6015   'is_dst' => '0',
6016 ))
6017 ->values(array(
6018   'timezone' => '180',
6019   'name' => 'Asia/Baku',
6020   'offset' => '04:00:00',
6021   'offset_dst' => '05:00:00',
6022   'dst_region' => '3',
6023   'is_dst' => '0',
6024 ))
6025 ->values(array(
6026   'timezone' => '181',
6027   'name' => 'Asia/Bangkok',
6028   'offset' => '07:00:00',
6029   'offset_dst' => '07:00:00',
6030   'dst_region' => '0',
6031   'is_dst' => '0',
6032 ))
6033 ->values(array(
6034   'timezone' => '182',
6035   'name' => 'Asia/Beirut',
6036   'offset' => '02:00:00',
6037   'offset_dst' => '03:00:00',
6038   'dst_region' => '6',
6039   'is_dst' => '0',
6040 ))
6041 ->values(array(
6042   'timezone' => '183',
6043   'name' => 'Asia/Bishkek',
6044   'offset' => '05:00:00',
6045   'offset_dst' => '06:00:00',
6046   'dst_region' => '6',
6047   'is_dst' => '0',
6048 ))
6049 ->values(array(
6050   'timezone' => '184',
6051   'name' => 'Asia/Brunei',
6052   'offset' => '08:00:00',
6053   'offset_dst' => '08:00:00',
6054   'dst_region' => '0',
6055   'is_dst' => '0',
6056 ))
6057 ->values(array(
6058   'timezone' => '185',
6059   'name' => 'Asia/Calcutta',
6060   'offset' => '05:30:00',
6061   'offset_dst' => '05:30:30',
6062   'dst_region' => '0',
6063   'is_dst' => '0',
6064 ))
6065 ->values(array(
6066   'timezone' => '186',
6067   'name' => 'Asia/Chungking',
6068   'offset' => '08:00:00',
6069   'offset_dst' => '08:00:00',
6070   'dst_region' => '0',
6071   'is_dst' => '0',
6072 ))
6073 ->values(array(
6074   'timezone' => '187',
6075   'name' => 'Asia/Colombo',
6076   'offset' => '06:00:00',
6077   'offset_dst' => '06:00:00',
6078   'dst_region' => '0',
6079   'is_dst' => '0',
6080 ))
6081 ->values(array(
6082   'timezone' => '188',
6083   'name' => 'Asia/Dacca',
6084   'offset' => '06:00:00',
6085   'offset_dst' => '06:00:00',
6086   'dst_region' => '0',
6087   'is_dst' => '0',
6088 ))
6089 ->values(array(
6090   'timezone' => '189',
6091   'name' => 'Asia/Damascus',
6092   'offset' => '02:00:00',
6093   'offset_dst' => '03:00:00',
6094   'dst_region' => '4',
6095   'is_dst' => '0',
6096 ))
6097 ->values(array(
6098   'timezone' => '190',
6099   'name' => 'Asia/Dhaka',
6100   'offset' => '06:00:00',
6101   'offset_dst' => '06:00:00',
6102   'dst_region' => '0',
6103   'is_dst' => '0',
6104 ))
6105 ->values(array(
6106   'timezone' => '191',
6107   'name' => 'Asia/Dili',
6108   'offset' => '09:00:00',
6109   'offset_dst' => '09:00:00',
6110   'dst_region' => '0',
6111   'is_dst' => '0',
6112 ))
6113 ->values(array(
6114   'timezone' => '192',
6115   'name' => 'Asia/Dubai',
6116   'offset' => '04:00:00',
6117   'offset_dst' => '04:00:00',
6118   'dst_region' => '0',
6119   'is_dst' => '0',
6120 ))
6121 ->values(array(
6122   'timezone' => '193',
6123   'name' => 'Asia/Dushanbe',
6124   'offset' => '05:00:00',
6125   'offset_dst' => '05:00:00',
6126   'dst_region' => '0',
6127   'is_dst' => '0',
6128 ))
6129 ->values(array(
6130   'timezone' => '194',
6131   'name' => 'Asia/Gaza',
6132   'offset' => '02:00:00',
6133   'offset_dst' => '03:00:00',
6134   'dst_region' => '7',
6135   'is_dst' => '0',
6136 ))
6137 ->values(array(
6138   'timezone' => '195',
6139   'name' => 'Asia/Harbin',
6140   'offset' => '08:00:00',
6141   'offset_dst' => '08:00:00',
6142   'dst_region' => '0',
6143   'is_dst' => '0',
6144 ))
6145 ->values(array(
6146   'timezone' => '196',
6147   'name' => 'Asia/Hong Kong',
6148   'offset' => '08:00:00',
6149   'offset_dst' => '08:00:00',
6150   'dst_region' => '0',
6151   'is_dst' => '0',
6152 ))
6153 ->values(array(
6154   'timezone' => '197',
6155   'name' => 'Asia/Hovd',
6156   'offset' => '07:00:00',
6157   'offset_dst' => '07:00:00',
6158   'dst_region' => '0',
6159   'is_dst' => '0',
6160 ))
6161 ->values(array(
6162   'timezone' => '198',
6163   'name' => 'Asia/Irkutsk',
6164   'offset' => '08:00:00',
6165   'offset_dst' => '09:00:00',
6166   'dst_region' => '3',
6167   'is_dst' => '0',
6168 ))
6169 ->values(array(
6170   'timezone' => '199',
6171   'name' => 'Asia/Istanbul',
6172   'offset' => '02:00:00',
6173   'offset_dst' => '03:00:00',
6174   'dst_region' => '3',
6175   'is_dst' => '0',
6176 ))
6177 ->values(array(
6178   'timezone' => '200',
6179   'name' => 'Asia/Jakarta',
6180   'offset' => '07:00:00',
6181   'offset_dst' => '07:00:00',
6182   'dst_region' => '0',
6183   'is_dst' => '0',
6184 ))
6185 ->values(array(
6186   'timezone' => '201',
6187   'name' => 'Asia/Jayapura',
6188   'offset' => '09:00:00',
6189   'offset_dst' => '09:00:00',
6190   'dst_region' => '0',
6191   'is_dst' => '0',
6192 ))
6193 ->values(array(
6194   'timezone' => '202',
6195   'name' => 'Asia/Jerusalem',
6196   'offset' => '02:00:00',
6197   'offset_dst' => '03:00:00',
6198   'dst_region' => '5',
6199   'is_dst' => '0',
6200 ))
6201 ->values(array(
6202   'timezone' => '203',
6203   'name' => 'Asia/Kabul',
6204   'offset' => '04:30:00',
6205   'offset_dst' => '04:30:00',
6206   'dst_region' => '0',
6207   'is_dst' => '0',
6208 ))
6209 ->values(array(
6210   'timezone' => '204',
6211   'name' => 'Asia/Kamchatka',
6212   'offset' => '12:00:00',
6213   'offset_dst' => '13:00:00',
6214   'dst_region' => '3',
6215   'is_dst' => '0',
6216 ))
6217 ->values(array(
6218   'timezone' => '205',
6219   'name' => 'Asia/Karachi',
6220   'offset' => '05:00:00',
6221   'offset_dst' => '05:00:00',
6222   'dst_region' => '0',
6223   'is_dst' => '0',
6224 ))
6225 ->values(array(
6226   'timezone' => '206',
6227   'name' => 'Asia/Kashgar',
6228   'offset' => '08:00:00',
6229   'offset_dst' => '08:00:00',
6230   'dst_region' => '0',
6231   'is_dst' => '0',
6232 ))
6233 ->values(array(
6234   'timezone' => '207',
6235   'name' => 'Asia/Katmandu',
6236   'offset' => '05:45:00',
6237   'offset_dst' => '05:45:00',
6238   'dst_region' => '0',
6239   'is_dst' => '0',
6240 ))
6241 ->values(array(
6242   'timezone' => '208',
6243   'name' => 'Asia/Krasnoyarsk',
6244   'offset' => '07:00:00',
6245   'offset_dst' => '08:00:00',
6246   'dst_region' => '3',
6247   'is_dst' => '0',
6248 ))
6249 ->values(array(
6250   'timezone' => '209',
6251   'name' => 'Asia/Kuala Lumpur',
6252   'offset' => '08:00:00',
6253   'offset_dst' => '08:00:00',
6254   'dst_region' => '0',
6255   'is_dst' => '0',
6256 ))
6257 ->values(array(
6258   'timezone' => '210',
6259   'name' => 'Asia/Kuching',
6260   'offset' => '08:00:00',
6261   'offset_dst' => '08:00:00',
6262   'dst_region' => '0',
6263   'is_dst' => '0',
6264 ))
6265 ->values(array(
6266   'timezone' => '211',
6267   'name' => 'Asia/Kuwait',
6268   'offset' => '03:00:00',
6269   'offset_dst' => '03:00:00',
6270   'dst_region' => '0',
6271   'is_dst' => '0',
6272 ))
6273 ->values(array(
6274   'timezone' => '212',
6275   'name' => 'Asia/Macao',
6276   'offset' => '08:00:00',
6277   'offset_dst' => '08:00:00',
6278   'dst_region' => '0',
6279   'is_dst' => '0',
6280 ))
6281 ->values(array(
6282   'timezone' => '213',
6283   'name' => 'Asia/Magadan',
6284   'offset' => '11:00:00',
6285   'offset_dst' => '12:00:00',
6286   'dst_region' => '3',
6287   'is_dst' => '0',
6288 ))
6289 ->values(array(
6290   'timezone' => '214',
6291   'name' => 'Asia/Manila',
6292   'offset' => '08:00:00',
6293   'offset_dst' => '08:00:00',
6294   'dst_region' => '0',
6295   'is_dst' => '0',
6296 ))
6297 ->values(array(
6298   'timezone' => '215',
6299   'name' => 'Asia/Muscat',
6300   'offset' => '04:00:00',
6301   'offset_dst' => '04:00:00',
6302   'dst_region' => '0',
6303   'is_dst' => '0',
6304 ))
6305 ->values(array(
6306   'timezone' => '216',
6307   'name' => 'Asia/Nicosia',
6308   'offset' => '02:00:00',
6309   'offset_dst' => '03:00:00',
6310   'dst_region' => '3',
6311   'is_dst' => '0',
6312 ))
6313 ->values(array(
6314   'timezone' => '217',
6315   'name' => 'Asia/Novosibirsk',
6316   'offset' => '06:00:00',
6317   'offset_dst' => '07:00:00',
6318   'dst_region' => '3',
6319   'is_dst' => '0',
6320 ))
6321 ->values(array(
6322   'timezone' => '218',
6323   'name' => 'Asia/Omsk',
6324   'offset' => '06:00:00',
6325   'offset_dst' => '07:00:00',
6326   'dst_region' => '3',
6327   'is_dst' => '0',
6328 ))
6329 ->values(array(
6330   'timezone' => '219',
6331   'name' => 'Asia/Phnom Penh',
6332   'offset' => '07:00:00',
6333   'offset_dst' => '07:00:00',
6334   'dst_region' => '0',
6335   'is_dst' => '0',
6336 ))
6337 ->values(array(
6338   'timezone' => '220',
6339   'name' => 'Asia/Pyongyang',
6340   'offset' => '09:00:00',
6341   'offset_dst' => '09:00:00',
6342   'dst_region' => '0',
6343   'is_dst' => '0',
6344 ))
6345 ->values(array(
6346   'timezone' => '221',
6347   'name' => 'Asia/Qatar',
6348   'offset' => '03:00:00',
6349   'offset_dst' => '03:00:00',
6350   'dst_region' => '0',
6351   'is_dst' => '0',
6352 ))
6353 ->values(array(
6354   'timezone' => '222',
6355   'name' => 'Asia/Rangoon',
6356   'offset' => '06:30:00',
6357   'offset_dst' => '06:30:00',
6358   'dst_region' => '0',
6359   'is_dst' => '0',
6360 ))
6361 ->values(array(
6362   'timezone' => '223',
6363   'name' => 'Asia/Riyadh',
6364   'offset' => '03:00:00',
6365   'offset_dst' => '03:00:00',
6366   'dst_region' => '0',
6367   'is_dst' => '0',
6368 ))
6369 ->values(array(
6370   'timezone' => '224',
6371   'name' => 'Asia/Riyadh87',
6372   'offset' => '03:07:04',
6373   'offset_dst' => '03:07:04',
6374   'dst_region' => '0',
6375   'is_dst' => '0',
6376 ))
6377 ->values(array(
6378   'timezone' => '225',
6379   'name' => 'Asia/Riyadh88',
6380   'offset' => '03:07:04',
6381   'offset_dst' => '03:07:04',
6382   'dst_region' => '0',
6383   'is_dst' => '0',
6384 ))
6385 ->values(array(
6386   'timezone' => '226',
6387   'name' => 'Asia/Riyadh89',
6388   'offset' => '03:07:04',
6389   'offset_dst' => '03:07:04',
6390   'dst_region' => '0',
6391   'is_dst' => '0',
6392 ))
6393 ->values(array(
6394   'timezone' => '227',
6395   'name' => 'Asia/Saigon',
6396   'offset' => '07:00:00',
6397   'offset_dst' => '07:00:00',
6398   'dst_region' => '0',
6399   'is_dst' => '0',
6400 ))
6401 ->values(array(
6402   'timezone' => '228',
6403   'name' => 'Asia/Samarkand',
6404   'offset' => '05:00:00',
6405   'offset_dst' => '05:00:00',
6406   'dst_region' => '0',
6407   'is_dst' => '0',
6408 ))
6409 ->values(array(
6410   'timezone' => '229',
6411   'name' => 'Asia/Seoul',
6412   'offset' => '09:00:00',
6413   'offset_dst' => '09:00:00',
6414   'dst_region' => '0',
6415   'is_dst' => '0',
6416 ))
6417 ->values(array(
6418   'timezone' => '230',
6419   'name' => 'Asia/Shanghai',
6420   'offset' => '08:00:00',
6421   'offset_dst' => '08:00:00',
6422   'dst_region' => '0',
6423   'is_dst' => '0',
6424 ))
6425 ->values(array(
6426   'timezone' => '231',
6427   'name' => 'Asia/Singapore',
6428   'offset' => '08:00:00',
6429   'offset_dst' => '08:00:00',
6430   'dst_region' => '0',
6431   'is_dst' => '0',
6432 ))
6433 ->values(array(
6434   'timezone' => '232',
6435   'name' => 'Asia/Taipei',
6436   'offset' => '08:00:00',
6437   'offset_dst' => '08:00:00',
6438   'dst_region' => '0',
6439   'is_dst' => '0',
6440 ))
6441 ->values(array(
6442   'timezone' => '233',
6443   'name' => 'Asia/Tashkent',
6444   'offset' => '05:00:00',
6445   'offset_dst' => '05:00:00',
6446   'dst_region' => '0',
6447   'is_dst' => '0',
6448 ))
6449 ->values(array(
6450   'timezone' => '234',
6451   'name' => 'Asia/Tbilisi',
6452   'offset' => '04:00:00',
6453   'offset_dst' => '05:00:00',
6454   'dst_region' => '3',
6455   'is_dst' => '0',
6456 ))
6457 ->values(array(
6458   'timezone' => '235',
6459   'name' => 'Asia/Tehran',
6460   'offset' => '03:30:00',
6461   'offset_dst' => '04:30:00',
6462   'dst_region' => '8',
6463   'is_dst' => '0',
6464 ))
6465 ->values(array(
6466   'timezone' => '236',
6467   'name' => 'Asia/Tel Aviv',
6468   'offset' => '02:00:00',
6469   'offset_dst' => '03:00:00',
6470   'dst_region' => '5',
6471   'is_dst' => '0',
6472 ))
6473 ->values(array(
6474   'timezone' => '237',
6475   'name' => 'Asia/Thimbu',
6476   'offset' => '06:00:00',
6477   'offset_dst' => '06:00:00',
6478   'dst_region' => '0',
6479   'is_dst' => '0',
6480 ))
6481 ->values(array(
6482   'timezone' => '238',
6483   'name' => 'Asia/Thimphu',
6484   'offset' => '06:00:00',
6485   'offset_dst' => '06:00:00',
6486   'dst_region' => '0',
6487   'is_dst' => '0',
6488 ))
6489 ->values(array(
6490   'timezone' => '239',
6491   'name' => 'Asia/Tokyo',
6492   'offset' => '09:00:00',
6493   'offset_dst' => '09:00:00',
6494   'dst_region' => '0',
6495   'is_dst' => '0',
6496 ))
6497 ->values(array(
6498   'timezone' => '240',
6499   'name' => 'Asia/Ujung Pandang',
6500   'offset' => '08:00:00',
6501   'offset_dst' => '08:00:00',
6502   'dst_region' => '0',
6503   'is_dst' => '0',
6504 ))
6505 ->values(array(
6506   'timezone' => '241',
6507   'name' => 'Asia/Ulaanbaatar',
6508   'offset' => '08:00:00',
6509   'offset_dst' => '08:00:00',
6510   'dst_region' => '0',
6511   'is_dst' => '0',
6512 ))
6513 ->values(array(
6514   'timezone' => '242',
6515   'name' => 'Asia/Ulan Bator',
6516   'offset' => '08:00:00',
6517   'offset_dst' => '08:00:00',
6518   'dst_region' => '0',
6519   'is_dst' => '0',
6520 ))
6521 ->values(array(
6522   'timezone' => '243',
6523   'name' => 'Asia/Urumqi',
6524   'offset' => '08:00:00',
6525   'offset_dst' => '08:00:00',
6526   'dst_region' => '0',
6527   'is_dst' => '0',
6528 ))
6529 ->values(array(
6530   'timezone' => '244',
6531   'name' => 'Asia/Vientiane',
6532   'offset' => '07:00:00',
6533   'offset_dst' => '07:00:00',
6534   'dst_region' => '0',
6535   'is_dst' => '0',
6536 ))
6537 ->values(array(
6538   'timezone' => '245',
6539   'name' => 'Asia/Vladivostok',
6540   'offset' => '10:00:00',
6541   'offset_dst' => '11:00:00',
6542   'dst_region' => '3',
6543   'is_dst' => '0',
6544 ))
6545 ->values(array(
6546   'timezone' => '246',
6547   'name' => 'Asia/Yakutsk',
6548   'offset' => '09:00:00',
6549   'offset_dst' => '10:00:00',
6550   'dst_region' => '3',
6551   'is_dst' => '0',
6552 ))
6553 ->values(array(
6554   'timezone' => '247',
6555   'name' => 'Asia/Yekaterinburg',
6556   'offset' => '05:00:00',
6557   'offset_dst' => '06:00:00',
6558   'dst_region' => '3',
6559   'is_dst' => '0',
6560 ))
6561 ->values(array(
6562   'timezone' => '248',
6563   'name' => 'Asia/Yerevan',
6564   'offset' => '04:00:00',
6565   'offset_dst' => '05:00:00',
6566   'dst_region' => '3',
6567   'is_dst' => '0',
6568 ))
6569 ->values(array(
6570   'timezone' => '249',
6571   'name' => 'Atlantic/Azores',
6572   'offset' => '-01:00:00',
6573   'offset_dst' => '00:00:00',
6574   'dst_region' => '13',
6575   'is_dst' => '0',
6576 ))
6577 ->values(array(
6578   'timezone' => '250',
6579   'name' => 'Atlantic/Bermuda',
6580   'offset' => '-04:00:00',
6581   'offset_dst' => '-03:00:00',
6582   'dst_region' => '15',
6583   'is_dst' => '0',
6584 ))
6585 ->values(array(
6586   'timezone' => '251',
6587   'name' => 'Atlantic/Canary',
6588   'offset' => '00:00:00',
6589   'offset_dst' => '01:00:00',
6590   'dst_region' => '15',
6591   'is_dst' => '0',
6592 ))
6593 ->values(array(
6594   'timezone' => '252',
6595   'name' => 'Atlantic/Cape Verde',
6596   'offset' => '-01:00:00',
6597   'offset_dst' => '-01:00:00',
6598   'dst_region' => '0',
6599   'is_dst' => '0',
6600 ))
6601 ->values(array(
6602   'timezone' => '253',
6603   'name' => 'Atlantic/Faeroe',
6604   'offset' => '00:00:00',
6605   'offset_dst' => '01:00:00',
6606   'dst_region' => '13',
6607   'is_dst' => '0',
6608 ))
6609 ->values(array(
6610   'timezone' => '254',
6611   'name' => 'Atlantic/Jan Mayen',
6612   'offset' => '-01:00:00',
6613   'offset_dst' => '-01:00:00',
6614   'dst_region' => '0',
6615   'is_dst' => '0',
6616 ))
6617 ->values(array(
6618   'timezone' => '255',
6619   'name' => 'Atlantic/Madeira',
6620   'offset' => '00:00:00',
6621   'offset_dst' => '01:00:00',
6622   'dst_region' => '13',
6623   'is_dst' => '0',
6624 ))
6625 ->values(array(
6626   'timezone' => '256',
6627   'name' => 'Atlantic/South Georgia',
6628   'offset' => '-02:00:00',
6629   'offset_dst' => '-02:00:00',
6630   'dst_region' => '0',
6631   'is_dst' => '0',
6632 ))
6633 ->values(array(
6634   'timezone' => '257',
6635   'name' => 'Atlantic/Stanley',
6636   'offset' => '-03:00:00',
6637   'offset_dst' => '-04:00:00',
6638   'dst_region' => '19',
6639   'is_dst' => '0',
6640 ))
6641 ->values(array(
6642   'timezone' => '258',
6643   'name' => 'Australia/ACT',
6644   'offset' => '10:00:00',
6645   'offset_dst' => '11:00:00',
6646   'dst_region' => '9',
6647   'is_dst' => '0',
6648 ))
6649 ->values(array(
6650   'timezone' => '259',
6651   'name' => 'Australia/Adelaide',
6652   'offset' => '10:30:00',
6653   'offset_dst' => '09:30:00',
6654   'dst_region' => '9',
6655   'is_dst' => '0',
6656 ))
6657 ->values(array(
6658   'timezone' => '260',
6659   'name' => 'Australia/Brisbane',
6660   'offset' => '10:00:00',
6661   'offset_dst' => '10:00:00',
6662   'dst_region' => '0',
6663   'is_dst' => '0',
6664 ))
6665 ->values(array(
6666   'timezone' => '261',
6667   'name' => 'Australia/Broken Hill',
6668   'offset' => '10:30:00',
6669   'offset_dst' => '09:30:00',
6670   'dst_region' => '9',
6671   'is_dst' => '0',
6672 ))
6673 ->values(array(
6674   'timezone' => '262',
6675   'name' => 'Australia/Canberra',
6676   'offset' => '11:00:00',
6677   'offset_dst' => '10:00:00',
6678   'dst_region' => '9',
6679   'is_dst' => '0',
6680 ))
6681 ->values(array(
6682   'timezone' => '263',
6683   'name' => 'Australia/Darwin',
6684   'offset' => '09:30:00',
6685   'offset_dst' => '09:30:00',
6686   'dst_region' => '0',
6687   'is_dst' => '0',
6688 ))
6689 ->values(array(
6690   'timezone' => '264',
6691   'name' => 'Australia/Hobart',
6692   'offset' => '11:00:00',
6693   'offset_dst' => '10:00:00',
6694   'dst_region' => '10',
6695   'is_dst' => '0',
6696 ))
6697 ->values(array(
6698   'timezone' => '265',
6699   'name' => 'Australia/LHI',
6700   'offset' => '11:00:00',
6701   'offset_dst' => '10:30:00',
6702   'dst_region' => '9',
6703   'is_dst' => '0',
6704 ))
6705 ->values(array(
6706   'timezone' => '266',
6707   'name' => 'Australia/Lindeman',
6708   'offset' => '10:00:00',
6709   'offset_dst' => '10:00:00',
6710   'dst_region' => '0',
6711   'is_dst' => '0',
6712 ))
6713 ->values(array(
6714   'timezone' => '267',
6715   'name' => 'Australia/Lord Howe',
6716   'offset' => '11:00:00',
6717   'offset_dst' => '10:30:00',
6718   'dst_region' => '9',
6719   'is_dst' => '0',
6720 ))
6721 ->values(array(
6722   'timezone' => '268',
6723   'name' => 'Australia/Melbourne',
6724   'offset' => '10:00:00',
6725   'offset_dst' => '11:00:00',
6726   'dst_region' => '10',
6727   'is_dst' => '0',
6728 ))
6729 ->values(array(
6730   'timezone' => '269',
6731   'name' => 'Australia/NSW',
6732   'offset' => '10:00:00',
6733   'offset_dst' => '11:00:00',
6734   'dst_region' => '9',
6735   'is_dst' => '0',
6736 ))
6737 ->values(array(
6738   'timezone' => '270',
6739   'name' => 'Australia/North',
6740   'offset' => '09:30:00',
6741   'offset_dst' => '09:30:00',
6742   'dst_region' => '0',
6743   'is_dst' => '0',
6744 ))
6745 ->values(array(
6746   'timezone' => '271',
6747   'name' => 'Australia/Perth',
6748   'offset' => '08:00:00',
6749   'offset_dst' => '08:00:00',
6750   'dst_region' => '0',
6751   'is_dst' => '0',
6752 ))
6753 ->values(array(
6754   'timezone' => '272',
6755   'name' => 'Australia/Queensland',
6756   'offset' => '10:00:00',
6757   'offset_dst' => '10:00:00',
6758   'dst_region' => '0',
6759   'is_dst' => '0',
6760 ))
6761 ->values(array(
6762   'timezone' => '273',
6763   'name' => 'Australia/South',
6764   'offset' => '10:30:00',
6765   'offset_dst' => '09:30:00',
6766   'dst_region' => '9',
6767   'is_dst' => '0',
6768 ))
6769 ->values(array(
6770   'timezone' => '274',
6771   'name' => 'Australia/Sydney',
6772   'offset' => '10:00:00',
6773   'offset_dst' => '11:00:00',
6774   'dst_region' => '10',
6775   'is_dst' => '0',
6776 ))
6777 ->values(array(
6778   'timezone' => '275',
6779   'name' => 'Australia/Tasmania',
6780   'offset' => '10:00:00',
6781   'offset_dst' => '11:00:00',
6782   'dst_region' => '9',
6783   'is_dst' => '0',
6784 ))
6785 ->values(array(
6786   'timezone' => '276',
6787   'name' => 'Australia/Victoria',
6788   'offset' => '10:00:00',
6789   'offset_dst' => '11:00:00',
6790   'dst_region' => '9',
6791   'is_dst' => '0',
6792 ))
6793 ->values(array(
6794   'timezone' => '277',
6795   'name' => 'Australia/West',
6796   'offset' => '08:00:00',
6797   'offset_dst' => '08:00:00',
6798   'dst_region' => '0',
6799   'is_dst' => '0',
6800 ))
6801 ->values(array(
6802   'timezone' => '278',
6803   'name' => 'Australia/Yancowinna',
6804   'offset' => '10:30:00',
6805   'offset_dst' => '09:30:00',
6806   'dst_region' => '10',
6807   'is_dst' => '0',
6808 ))
6809 ->values(array(
6810   'timezone' => '279',
6811   'name' => 'Brazil/Acre',
6812   'offset' => '-05:00:00',
6813   'offset_dst' => '-05:00:00',
6814   'dst_region' => '0',
6815   'is_dst' => '0',
6816 ))
6817 ->values(array(
6818   'timezone' => '280',
6819   'name' => 'Brazil/DeNoronha',
6820   'offset' => '-02:00:00',
6821   'offset_dst' => '-02:00:00',
6822   'dst_region' => '0',
6823   'is_dst' => '0',
6824 ))
6825 ->values(array(
6826   'timezone' => '281',
6827   'name' => 'Brazil/East',
6828   'offset' => '-02:00:00',
6829   'offset_dst' => '-03:00:00',
6830   'dst_region' => '17',
6831   'is_dst' => '0',
6832 ))
6833 ->values(array(
6834   'timezone' => '282',
6835   'name' => 'Brazil/West',
6836   'offset' => '-04:00:00',
6837   'offset_dst' => '-04:00:00',
6838   'dst_region' => '0',
6839   'is_dst' => '0',
6840 ))
6841 ->values(array(
6842   'timezone' => '285',
6843   'name' => 'Canada/Atlantic',
6844   'offset' => '-04:00:00',
6845   'offset_dst' => '-03:00:00',
6846   'dst_region' => '15',
6847   'is_dst' => '0',
6848 ))
6849 ->values(array(
6850   'timezone' => '286',
6851   'name' => 'Canada/Central',
6852   'offset' => '-06:00:00',
6853   'offset_dst' => '-05:00:00',
6854   'dst_region' => '15',
6855   'is_dst' => '0',
6856 ))
6857 ->values(array(
6858   'timezone' => '287',
6859   'name' => 'Canada/Central-Saskatchewan',
6860   'offset' => '-06:00:00',
6861   'offset_dst' => '-06:00:00',
6862   'dst_region' => '0',
6863   'is_dst' => '0',
6864 ))
6865 ->values(array(
6866   'timezone' => '288',
6867   'name' => 'Canada/Eastern',
6868   'offset' => '-05:00:00',
6869   'offset_dst' => '-04:00:00',
6870   'dst_region' => '15',
6871   'is_dst' => '0',
6872 ))
6873 ->values(array(
6874   'timezone' => '289',
6875   'name' => 'Canada/Mountain',
6876   'offset' => '-07:00:00',
6877   'offset_dst' => '-06:00:00',
6878   'dst_region' => '15',
6879   'is_dst' => '0',
6880 ))
6881 ->values(array(
6882   'timezone' => '290',
6883   'name' => 'Canada/Newfoundland',
6884   'offset' => '-03:30:00',
6885   'offset_dst' => '-02:30:00',
6886   'dst_region' => '15',
6887   'is_dst' => '0',
6888 ))
6889 ->values(array(
6890   'timezone' => '291',
6891   'name' => 'Canada/Pacific',
6892   'offset' => '-08:00:00',
6893   'offset_dst' => '-07:00:00',
6894   'dst_region' => '15',
6895   'is_dst' => '0',
6896 ))
6897 ->values(array(
6898   'timezone' => '292',
6899   'name' => 'Canada/Saskatchewan',
6900   'offset' => '-06:00:00',
6901   'offset_dst' => '-06:00:00',
6902   'dst_region' => '0',
6903   'is_dst' => '0',
6904 ))
6905 ->values(array(
6906   'timezone' => '293',
6907   'name' => 'Canada/Yukon',
6908   'offset' => '-08:00:00',
6909   'offset_dst' => '-07:00:00',
6910   'dst_region' => '15',
6911   'is_dst' => '0',
6912 ))
6913 ->values(array(
6914   'timezone' => '294',
6915   'name' => 'Chile/Continental',
6916   'offset' => '-03:00:00',
6917   'offset_dst' => '-04:00:00',
6918   'dst_region' => '18',
6919   'is_dst' => '0',
6920 ))
6921 ->values(array(
6922   'timezone' => '295',
6923   'name' => 'Chile/EasterIsland',
6924   'offset' => '-05:00:00',
6925   'offset_dst' => '-06:00:00',
6926   'dst_region' => '18',
6927   'is_dst' => '0',
6928 ))
6929 ->values(array(
6930   'timezone' => '296',
6931   'name' => 'Cuba',
6932   'offset' => '-05:00:00',
6933   'offset_dst' => '-04:00:00',
6934   'dst_region' => '16',
6935   'is_dst' => '0',
6936 ))
6937 ->values(array(
6938   'timezone' => '298',
6939   'name' => 'EST',
6940   'offset' => '-05:00:00',
6941   'offset_dst' => '-05:00:00',
6942   'dst_region' => '0',
6943   'is_dst' => '0',
6944 ))
6945 ->values(array(
6946   'timezone' => '300',
6947   'name' => 'Egypt',
6948   'offset' => '02:00:00',
6949   'offset_dst' => '03:00:00',
6950   'dst_region' => '1',
6951   'is_dst' => '0',
6952 ))
6953 ->values(array(
6954   'timezone' => '301',
6955   'name' => 'Eire',
6956   'offset' => '00:00:00',
6957   'offset_dst' => '01:00:00',
6958   'dst_region' => '13',
6959   'is_dst' => '0',
6960 ))
6961 ->values(array(
6962   'timezone' => '302',
6963   'name' => 'Etc/GMT-1',
6964   'offset' => '-01:00:00',
6965   'offset_dst' => '-01:00:00',
6966   'dst_region' => '0',
6967   'is_dst' => '0',
6968 ))
6969 ->values(array(
6970   'timezone' => '303',
6971   'name' => 'Etc/GMT-10',
6972   'offset' => '-10:00:00',
6973   'offset_dst' => '-10:00:00',
6974   'dst_region' => '0',
6975   'is_dst' => '0',
6976 ))
6977 ->values(array(
6978   'timezone' => '304',
6979   'name' => 'Etc/GMT-11',
6980   'offset' => '-11:00:00',
6981   'offset_dst' => '-11:00:00',
6982   'dst_region' => '0',
6983   'is_dst' => '0',
6984 ))
6985 ->values(array(
6986   'timezone' => '305',
6987   'name' => 'Etc/GMT-12',
6988   'offset' => '-12:00:00',
6989   'offset_dst' => '-12:00:00',
6990   'dst_region' => '0',
6991   'is_dst' => '0',
6992 ))
6993 ->values(array(
6994   'timezone' => '306',
6995   'name' => 'Etc/GMT-2',
6996   'offset' => '-02:00:00',
6997   'offset_dst' => '-02:00:00',
6998   'dst_region' => '0',
6999   'is_dst' => '0',
7000 ))
7001 ->values(array(
7002   'timezone' => '307',
7003   'name' => 'Etc/GMT-3',
7004   'offset' => '-03:00:00',
7005   'offset_dst' => '-03:00:00',
7006   'dst_region' => '0',
7007   'is_dst' => '0',
7008 ))
7009 ->values(array(
7010   'timezone' => '308',
7011   'name' => 'Etc/GMT-4',
7012   'offset' => '-04:00:00',
7013   'offset_dst' => '-04:00:00',
7014   'dst_region' => '0',
7015   'is_dst' => '0',
7016 ))
7017 ->values(array(
7018   'timezone' => '309',
7019   'name' => 'Etc/GMT-5',
7020   'offset' => '-05:00:00',
7021   'offset_dst' => '-05:00:00',
7022   'dst_region' => '0',
7023   'is_dst' => '0',
7024 ))
7025 ->values(array(
7026   'timezone' => '310',
7027   'name' => 'Etc/GMT-6',
7028   'offset' => '-06:00:00',
7029   'offset_dst' => '-06:00:00',
7030   'dst_region' => '0',
7031   'is_dst' => '0',
7032 ))
7033 ->values(array(
7034   'timezone' => '311',
7035   'name' => 'Etc/GMT-7',
7036   'offset' => '-07:00:00',
7037   'offset_dst' => '-07:00:00',
7038   'dst_region' => '0',
7039   'is_dst' => '0',
7040 ))
7041 ->values(array(
7042   'timezone' => '312',
7043   'name' => 'Etc/GMT-8',
7044   'offset' => '-08:00:00',
7045   'offset_dst' => '-08:00:00',
7046   'dst_region' => '0',
7047   'is_dst' => '0',
7048 ))
7049 ->values(array(
7050   'timezone' => '313',
7051   'name' => 'Etc/GMT-9',
7052   'offset' => '-09:00:00',
7053   'offset_dst' => '-09:00:00',
7054   'dst_region' => '0',
7055   'is_dst' => '0',
7056 ))
7057 ->values(array(
7058   'timezone' => '314',
7059   'name' => 'Etc/GMT+1',
7060   'offset' => '01:00:00',
7061   'offset_dst' => '01:00:00',
7062   'dst_region' => '0',
7063   'is_dst' => '0',
7064 ))
7065 ->values(array(
7066   'timezone' => '315',
7067   'name' => 'Etc/GMT+10',
7068   'offset' => '10:00:00',
7069   'offset_dst' => '10:00:00',
7070   'dst_region' => '0',
7071   'is_dst' => '0',
7072 ))
7073 ->values(array(
7074   'timezone' => '316',
7075   'name' => 'Etc/GMT+11',
7076   'offset' => '11:00:00',
7077   'offset_dst' => '11:00:00',
7078   'dst_region' => '0',
7079   'is_dst' => '0',
7080 ))
7081 ->values(array(
7082   'timezone' => '317',
7083   'name' => 'Etc/GMT+12',
7084   'offset' => '12:00:00',
7085   'offset_dst' => '12:00:00',
7086   'dst_region' => '0',
7087   'is_dst' => '0',
7088 ))
7089 ->values(array(
7090   'timezone' => '318',
7091   'name' => 'Etc/GMT+13',
7092   'offset' => '13:00:00',
7093   'offset_dst' => '13:00:00',
7094   'dst_region' => '0',
7095   'is_dst' => '0',
7096 ))
7097 ->values(array(
7098   'timezone' => '319',
7099   'name' => 'Etc/GMT+14',
7100   'offset' => '14:00:00',
7101   'offset_dst' => '14:00:00',
7102   'dst_region' => '0',
7103   'is_dst' => '0',
7104 ))
7105 ->values(array(
7106   'timezone' => '320',
7107   'name' => 'Etc/GMT+2',
7108   'offset' => '02:00:00',
7109   'offset_dst' => '02:00:00',
7110   'dst_region' => '0',
7111   'is_dst' => '0',
7112 ))
7113 ->values(array(
7114   'timezone' => '321',
7115   'name' => 'Etc/GMT+3',
7116   'offset' => '03:00:00',
7117   'offset_dst' => '03:00:00',
7118   'dst_region' => '0',
7119   'is_dst' => '0',
7120 ))
7121 ->values(array(
7122   'timezone' => '322',
7123   'name' => 'Etc/GMT+4',
7124   'offset' => '04:00:00',
7125   'offset_dst' => '04:00:00',
7126   'dst_region' => '0',
7127   'is_dst' => '0',
7128 ))
7129 ->values(array(
7130   'timezone' => '323',
7131   'name' => 'Etc/GMT+5',
7132   'offset' => '05:00:00',
7133   'offset_dst' => '05:00:00',
7134   'dst_region' => '0',
7135   'is_dst' => '0',
7136 ))
7137 ->values(array(
7138   'timezone' => '324',
7139   'name' => 'Etc/GMT+6',
7140   'offset' => '06:00:00',
7141   'offset_dst' => '06:00:00',
7142   'dst_region' => '0',
7143   'is_dst' => '0',
7144 ))
7145 ->values(array(
7146   'timezone' => '325',
7147   'name' => 'Etc/GMT+7',
7148   'offset' => '07:00:00',
7149   'offset_dst' => '07:00:00',
7150   'dst_region' => '0',
7151   'is_dst' => '0',
7152 ))
7153 ->values(array(
7154   'timezone' => '326',
7155   'name' => 'Etc/GMT+8',
7156   'offset' => '08:00:00',
7157   'offset_dst' => '08:00:00',
7158   'dst_region' => '0',
7159   'is_dst' => '0',
7160 ))
7161 ->values(array(
7162   'timezone' => '327',
7163   'name' => 'Etc/GMT+9',
7164   'offset' => '09:00:00',
7165   'offset_dst' => '09:00:00',
7166   'dst_region' => '0',
7167   'is_dst' => '0',
7168 ))
7169 ->values(array(
7170   'timezone' => '328',
7171   'name' => 'Europe/Amsterdam',
7172   'offset' => '01:00:00',
7173   'offset_dst' => '02:00:00',
7174   'dst_region' => '13',
7175   'is_dst' => '0',
7176 ))
7177 ->values(array(
7178   'timezone' => '329',
7179   'name' => 'Europe/Andorra',
7180   'offset' => '01:00:00',
7181   'offset_dst' => '02:00:00',
7182   'dst_region' => '13',
7183   'is_dst' => '0',
7184 ))
7185 ->values(array(
7186   'timezone' => '330',
7187   'name' => 'Europe/Athens',
7188   'offset' => '02:00:00',
7189   'offset_dst' => '03:00:00',
7190   'dst_region' => '13',
7191   'is_dst' => '0',
7192 ))
7193 ->values(array(
7194   'timezone' => '331',
7195   'name' => 'Europe/Belfast',
7196   'offset' => '00:00:00',
7197   'offset_dst' => '01:00:00',
7198   'dst_region' => '13',
7199   'is_dst' => '0',
7200 ))
7201 ->values(array(
7202   'timezone' => '332',
7203   'name' => 'Europe/Belgrade',
7204   'offset' => '01:00:00',
7205   'offset_dst' => '02:00:00',
7206   'dst_region' => '13',
7207   'is_dst' => '0',
7208 ))
7209 ->values(array(
7210   'timezone' => '333',
7211   'name' => 'Europe/Berlin',
7212   'offset' => '01:00:00',
7213   'offset_dst' => '02:00:00',
7214   'dst_region' => '13',
7215   'is_dst' => '0',
7216 ))
7217 ->values(array(
7218   'timezone' => '334',
7219   'name' => 'Europe/Bratislava',
7220   'offset' => '01:00:00',
7221   'offset_dst' => '02:00:00',
7222   'dst_region' => '13',
7223   'is_dst' => '0',
7224 ))
7225 ->values(array(
7226   'timezone' => '335',
7227   'name' => 'Europe/Brussels',
7228   'offset' => '01:00:00',
7229   'offset_dst' => '02:00:00',
7230   'dst_region' => '13',
7231   'is_dst' => '0',
7232 ))
7233 ->values(array(
7234   'timezone' => '336',
7235   'name' => 'Europe/Bucharest',
7236   'offset' => '02:00:00',
7237   'offset_dst' => '03:00:00',
7238   'dst_region' => '13',
7239   'is_dst' => '0',
7240 ))
7241 ->values(array(
7242   'timezone' => '337',
7243   'name' => 'Europe/Budapest',
7244   'offset' => '01:00:00',
7245   'offset_dst' => '02:00:00',
7246   'dst_region' => '13',
7247   'is_dst' => '0',
7248 ))
7249 ->values(array(
7250   'timezone' => '338',
7251   'name' => 'Europe/Chisinau',
7252   'offset' => '02:00:00',
7253   'offset_dst' => '03:00:00',
7254   'dst_region' => '13',
7255   'is_dst' => '0',
7256 ))
7257 ->values(array(
7258   'timezone' => '339',
7259   'name' => 'Europe/Copenhagen',
7260   'offset' => '01:00:00',
7261   'offset_dst' => '02:00:00',
7262   'dst_region' => '13',
7263   'is_dst' => '0',
7264 ))
7265 ->values(array(
7266   'timezone' => '340',
7267   'name' => 'Europe/Dublin',
7268   'offset' => '00:00:00',
7269   'offset_dst' => '01:00:00',
7270   'dst_region' => '13',
7271   'is_dst' => '0',
7272 ))
7273 ->values(array(
7274   'timezone' => '341',
7275   'name' => 'Europe/Gibraltar',
7276   'offset' => '01:00:00',
7277   'offset_dst' => '02:00:00',
7278   'dst_region' => '13',
7279   'is_dst' => '0',
7280 ))
7281 ->values(array(
7282   'timezone' => '342',
7283   'name' => 'Europe/Helsinki',
7284   'offset' => '02:00:00',
7285   'offset_dst' => '03:00:00',
7286   'dst_region' => '13',
7287   'is_dst' => '0',
7288 ))
7289 ->values(array(
7290   'timezone' => '343',
7291   'name' => 'Europe/Istanbul',
7292   'offset' => '02:00:00',
7293   'offset_dst' => '03:00:00',
7294   'dst_region' => '13',
7295   'is_dst' => '0',
7296 ))
7297 ->values(array(
7298   'timezone' => '344',
7299   'name' => 'Europe/Kaliningrad',
7300   'offset' => '02:00:00',
7301   'offset_dst' => '03:00:00',
7302   'dst_region' => '13',
7303   'is_dst' => '0',
7304 ))
7305 ->values(array(
7306   'timezone' => '345',
7307   'name' => 'Europe/Kiev',
7308   'offset' => '02:00:00',
7309   'offset_dst' => '03:00:00',
7310   'dst_region' => '13',
7311   'is_dst' => '0',
7312 ))
7313 ->values(array(
7314   'timezone' => '346',
7315   'name' => 'Europe/Lisbon',
7316   'offset' => '00:00:00',
7317   'offset_dst' => '01:00:00',
7318   'dst_region' => '13',
7319   'is_dst' => '0',
7320 ))
7321 ->values(array(
7322   'timezone' => '347',
7323   'name' => 'Europe/Ljubljana',
7324   'offset' => '01:00:00',
7325   'offset_dst' => '02:00:00',
7326   'dst_region' => '13',
7327   'is_dst' => '0',
7328 ))
7329 ->values(array(
7330   'timezone' => '348',
7331   'name' => 'Europe/London',
7332   'offset' => '00:00:00',
7333   'offset_dst' => '01:00:00',
7334   'dst_region' => '13',
7335   'is_dst' => '0',
7336 ))
7337 ->values(array(
7338   'timezone' => '349',
7339   'name' => 'Europe/Luxembourg',
7340   'offset' => '01:00:00',
7341   'offset_dst' => '02:00:00',
7342   'dst_region' => '13',
7343   'is_dst' => '0',
7344 ))
7345 ->values(array(
7346   'timezone' => '350',
7347   'name' => 'Europe/Madrid',
7348   'offset' => '01:00:00',
7349   'offset_dst' => '02:00:00',
7350   'dst_region' => '13',
7351   'is_dst' => '0',
7352 ))
7353 ->values(array(
7354   'timezone' => '351',
7355   'name' => 'Europe/Malta',
7356   'offset' => '01:00:00',
7357   'offset_dst' => '02:00:00',
7358   'dst_region' => '13',
7359   'is_dst' => '0',
7360 ))
7361 ->values(array(
7362   'timezone' => '352',
7363   'name' => 'Europe/Minsk',
7364   'offset' => '02:00:00',
7365   'offset_dst' => '03:00:00',
7366   'dst_region' => '13',
7367   'is_dst' => '0',
7368 ))
7369 ->values(array(
7370   'timezone' => '353',
7371   'name' => 'Europe/Monaco',
7372   'offset' => '01:00:00',
7373   'offset_dst' => '02:00:00',
7374   'dst_region' => '13',
7375   'is_dst' => '0',
7376 ))
7377 ->values(array(
7378   'timezone' => '354',
7379   'name' => 'Europe/Moscow',
7380   'offset' => '03:00:00',
7381   'offset_dst' => '04:00:00',
7382   'dst_region' => '14',
7383   'is_dst' => '0',
7384 ))
7385 ->values(array(
7386   'timezone' => '355',
7387   'name' => 'Europe/Nicosia',
7388   'offset' => '02:00:00',
7389   'offset_dst' => '03:00:00',
7390   'dst_region' => '13',
7391   'is_dst' => '0',
7392 ))
7393 ->values(array(
7394   'timezone' => '356',
7395   'name' => 'Europe/Oslo',
7396   'offset' => '01:00:00',
7397   'offset_dst' => '02:00:00',
7398   'dst_region' => '13',
7399   'is_dst' => '0',
7400 ))
7401 ->values(array(
7402   'timezone' => '357',
7403   'name' => 'Europe/Paris',
7404   'offset' => '01:00:00',
7405   'offset_dst' => '02:00:00',
7406   'dst_region' => '13',
7407   'is_dst' => '0',
7408 ))
7409 ->values(array(
7410   'timezone' => '358',
7411   'name' => 'Europe/Prague',
7412   'offset' => '01:00:00',
7413   'offset_dst' => '02:00:00',
7414   'dst_region' => '13',
7415   'is_dst' => '0',
7416 ))
7417 ->values(array(
7418   'timezone' => '359',
7419   'name' => 'Europe/Riga',
7420   'offset' => '02:00:00',
7421   'offset_dst' => '03:00:00',
7422   'dst_region' => '13',
7423   'is_dst' => '0',
7424 ))
7425 ->values(array(
7426   'timezone' => '360',
7427   'name' => 'Europe/Rome',
7428   'offset' => '01:00:00',
7429   'offset_dst' => '02:00:00',
7430   'dst_region' => '13',
7431   'is_dst' => '0',
7432 ))
7433 ->values(array(
7434   'timezone' => '361',
7435   'name' => 'Europe/Samara',
7436   'offset' => '04:00:00',
7437   'offset_dst' => '05:00:00',
7438   'dst_region' => '13',
7439   'is_dst' => '0',
7440 ))
7441 ->values(array(
7442   'timezone' => '362',
7443   'name' => 'Europe/San Marino',
7444   'offset' => '01:00:00',
7445   'offset_dst' => '02:00:00',
7446   'dst_region' => '13',
7447   'is_dst' => '0',
7448 ))
7449 ->values(array(
7450   'timezone' => '363',
7451   'name' => 'Europe/Sarajevo',
7452   'offset' => '01:00:00',
7453   'offset_dst' => '02:00:00',
7454   'dst_region' => '13',
7455   'is_dst' => '0',
7456 ))
7457 ->values(array(
7458   'timezone' => '364',
7459   'name' => 'Europe/Simferopol',
7460   'offset' => '02:00:00',
7461   'offset_dst' => '03:00:00',
7462   'dst_region' => '13',
7463   'is_dst' => '0',
7464 ))
7465 ->values(array(
7466   'timezone' => '365',
7467   'name' => 'Europe/Skopje',
7468   'offset' => '01:00:00',
7469   'offset_dst' => '02:00:00',
7470   'dst_region' => '13',
7471   'is_dst' => '0',
7472 ))
7473 ->values(array(
7474   'timezone' => '366',
7475   'name' => 'Europe/Sofia',
7476   'offset' => '02:00:00',
7477   'offset_dst' => '03:00:00',
7478   'dst_region' => '13',
7479   'is_dst' => '0',
7480 ))
7481 ->values(array(
7482   'timezone' => '367',
7483   'name' => 'Europe/Stockholm',
7484   'offset' => '01:00:00',
7485   'offset_dst' => '02:00:00',
7486   'dst_region' => '13',
7487   'is_dst' => '0',
7488 ))
7489 ->values(array(
7490   'timezone' => '368',
7491   'name' => 'Europe/Tallinn',
7492   'offset' => '02:00:00',
7493   'offset_dst' => '02:00:00',
7494   'dst_region' => '0',
7495   'is_dst' => '0',
7496 ))
7497 ->values(array(
7498   'timezone' => '369',
7499   'name' => 'Europe/Tirane',
7500   'offset' => '01:00:00',
7501   'offset_dst' => '02:00:00',
7502   'dst_region' => '13',
7503   'is_dst' => '0',
7504 ))
7505 ->values(array(
7506   'timezone' => '370',
7507   'name' => 'Europe/Tiraspol',
7508   'offset' => '02:00:00',
7509   'offset_dst' => '03:00:00',
7510   'dst_region' => '13',
7511   'is_dst' => '0',
7512 ))
7513 ->values(array(
7514   'timezone' => '371',
7515   'name' => 'Europe/Uzhgorod',
7516   'offset' => '02:00:00',
7517   'offset_dst' => '03:00:00',
7518   'dst_region' => '13',
7519   'is_dst' => '0',
7520 ))
7521 ->values(array(
7522   'timezone' => '372',
7523   'name' => 'Europe/Vaduz',
7524   'offset' => '01:00:00',
7525   'offset_dst' => '02:00:00',
7526   'dst_region' => '13',
7527   'is_dst' => '0',
7528 ))
7529 ->values(array(
7530   'timezone' => '373',
7531   'name' => 'Europe/Vatican',
7532   'offset' => '01:00:00',
7533   'offset_dst' => '02:00:00',
7534   'dst_region' => '13',
7535   'is_dst' => '0',
7536 ))
7537 ->values(array(
7538   'timezone' => '374',
7539   'name' => 'Europe/Vienna',
7540   'offset' => '01:00:00',
7541   'offset_dst' => '02:00:00',
7542   'dst_region' => '13',
7543   'is_dst' => '0',
7544 ))
7545 ->values(array(
7546   'timezone' => '375',
7547   'name' => 'Europe/Vilnius',
7548   'offset' => '02:00:00',
7549   'offset_dst' => '02:00:00',
7550   'dst_region' => '0',
7551   'is_dst' => '0',
7552 ))
7553 ->values(array(
7554   'timezone' => '376',
7555   'name' => 'Europe/Warsaw',
7556   'offset' => '01:00:00',
7557   'offset_dst' => '02:00:00',
7558   'dst_region' => '13',
7559   'is_dst' => '0',
7560 ))
7561 ->values(array(
7562   'timezone' => '377',
7563   'name' => 'Europe/Zagreb',
7564   'offset' => '01:00:00',
7565   'offset_dst' => '02:00:00',
7566   'dst_region' => '13',
7567   'is_dst' => '0',
7568 ))
7569 ->values(array(
7570   'timezone' => '378',
7571   'name' => 'Europe/Zaporozhye',
7572   'offset' => '02:00:00',
7573   'offset_dst' => '03:00:00',
7574   'dst_region' => '13',
7575   'is_dst' => '0',
7576 ))
7577 ->values(array(
7578   'timezone' => '379',
7579   'name' => 'Europe/Zurich',
7580   'offset' => '01:00:00',
7581   'offset_dst' => '02:00:00',
7582   'dst_region' => '13',
7583   'is_dst' => '0',
7584 ))
7585 ->values(array(
7586   'timezone' => '380',
7587   'name' => 'GB',
7588   'offset' => '00:00:00',
7589   'offset_dst' => '01:00:00',
7590   'dst_region' => '13',
7591   'is_dst' => '0',
7592 ))
7593 ->values(array(
7594   'timezone' => '381',
7595   'name' => 'GB-Eire',
7596   'offset' => '00:00:00',
7597   'offset_dst' => '01:00:00',
7598   'dst_region' => '13',
7599   'is_dst' => '0',
7600 ))
7601 ->values(array(
7602   'timezone' => '383',
7603   'name' => 'Hongkong',
7604   'offset' => '08:00:00',
7605   'offset_dst' => '08:00:00',
7606   'dst_region' => '0',
7607   'is_dst' => '0',
7608 ))
7609 ->values(array(
7610   'timezone' => '384',
7611   'name' => 'Indian/Antananarivo',
7612   'offset' => '03:00:00',
7613   'offset_dst' => '03:00:00',
7614   'dst_region' => '0',
7615   'is_dst' => '0',
7616 ))
7617 ->values(array(
7618   'timezone' => '385',
7619   'name' => 'Indian/Chagos',
7620   'offset' => '05:00:00',
7621   'offset_dst' => '05:00:00',
7622   'dst_region' => '0',
7623   'is_dst' => '0',
7624 ))
7625 ->values(array(
7626   'timezone' => '386',
7627   'name' => 'Indian/Christmas',
7628   'offset' => '07:00:00',
7629   'offset_dst' => '07:00:00',
7630   'dst_region' => '0',
7631   'is_dst' => '0',
7632 ))
7633 ->values(array(
7634   'timezone' => '387',
7635   'name' => 'Indian/Cocos',
7636   'offset' => '06:30:00',
7637   'offset_dst' => '06:30:00',
7638   'dst_region' => '0',
7639   'is_dst' => '0',
7640 ))
7641 ->values(array(
7642   'timezone' => '388',
7643   'name' => 'Indian/Comoro',
7644   'offset' => '03:00:00',
7645   'offset_dst' => '03:00:00',
7646   'dst_region' => '0',
7647   'is_dst' => '0',
7648 ))
7649 ->values(array(
7650   'timezone' => '389',
7651   'name' => 'Indian/Kerguelen',
7652   'offset' => '05:00:00',
7653   'offset_dst' => '05:00:00',
7654   'dst_region' => '0',
7655   'is_dst' => '0',
7656 ))
7657 ->values(array(
7658   'timezone' => '390',
7659   'name' => 'Indian/Mahe',
7660   'offset' => '04:00:00',
7661   'offset_dst' => '04:00:00',
7662   'dst_region' => '0',
7663   'is_dst' => '0',
7664 ))
7665 ->values(array(
7666   'timezone' => '391',
7667   'name' => 'Indian/Maldives',
7668   'offset' => '05:00:00',
7669   'offset_dst' => '05:00:00',
7670   'dst_region' => '0',
7671   'is_dst' => '0',
7672 ))
7673 ->values(array(
7674   'timezone' => '392',
7675   'name' => 'Indian/Mauritius',
7676   'offset' => '04:00:00',
7677   'offset_dst' => '04:00:00',
7678   'dst_region' => '0',
7679   'is_dst' => '0',
7680 ))
7681 ->values(array(
7682   'timezone' => '393',
7683   'name' => 'Indian/Mayotte',
7684   'offset' => '03:00:00',
7685   'offset_dst' => '03:00:00',
7686   'dst_region' => '0',
7687   'is_dst' => '0',
7688 ))
7689 ->values(array(
7690   'timezone' => '394',
7691   'name' => 'Indian/Reunion',
7692   'offset' => '04:00:00',
7693   'offset_dst' => '04:00:00',
7694   'dst_region' => '0',
7695   'is_dst' => '0',
7696 ))
7697 ->values(array(
7698   'timezone' => '395',
7699   'name' => 'Iran',
7700   'offset' => '03:30:00',
7701   'offset_dst' => '04:30:00',
7702   'dst_region' => '8',
7703   'is_dst' => '0',
7704 ))
7705 ->values(array(
7706   'timezone' => '396',
7707   'name' => 'Israel',
7708   'offset' => '02:00:00',
7709   'offset_dst' => '03:00:00',
7710   'dst_region' => '5',
7711   'is_dst' => '0',
7712 ))
7713 ->values(array(
7714   'timezone' => '397',
7715   'name' => 'Jamaica',
7716   'offset' => '-05:00:00',
7717   'offset_dst' => '-05:00:00',
7718   'dst_region' => '0',
7719   'is_dst' => '0',
7720 ))
7721 ->values(array(
7722   'timezone' => '398',
7723   'name' => 'Japan',
7724   'offset' => '09:00:00',
7725   'offset_dst' => '09:00:00',
7726   'dst_region' => '0',
7727   'is_dst' => '0',
7728 ))
7729 ->values(array(
7730   'timezone' => '399',
7731   'name' => 'Kwajalein',
7732   'offset' => '12:00:00',
7733   'offset_dst' => '12:00:00',
7734   'dst_region' => '0',
7735   'is_dst' => '0',
7736 ))
7737 ->values(array(
7738   'timezone' => '400',
7739   'name' => 'Libya',
7740   'offset' => '02:00:00',
7741   'offset_dst' => '02:00:00',
7742   'dst_region' => '0',
7743   'is_dst' => '0',
7744 ))
7745 ->values(array(
7746   'timezone' => '404',
7747   'name' => 'Mexico/BajaNorte',
7748   'offset' => '-08:00:00',
7749   'offset_dst' => '-07:00:00',
7750   'dst_region' => '15',
7751   'is_dst' => '0',
7752 ))
7753 ->values(array(
7754   'timezone' => '405',
7755   'name' => 'Mexico/BajaSur',
7756   'offset' => '-07:00:00',
7757   'offset_dst' => '-06:00:00',
7758   'dst_region' => '15',
7759   'is_dst' => '0',
7760 ))
7761 ->values(array(
7762   'timezone' => '406',
7763   'name' => 'Mexico/General',
7764   'offset' => '-06:00:00',
7765   'offset_dst' => '-05:00:00',
7766   'dst_region' => '15',
7767   'is_dst' => '0',
7768 ))
7769 ->values(array(
7770   'timezone' => '407',
7771   'name' => 'Mideast/Riyadh87',
7772   'offset' => '03:07:04',
7773   'offset_dst' => '03:07:04',
7774   'dst_region' => '0',
7775   'is_dst' => '0',
7776 ))
7777 ->values(array(
7778   'timezone' => '408',
7779   'name' => 'Mideast/Riyadh88',
7780   'offset' => '03:07:04',
7781   'offset_dst' => '03:07:04',
7782   'dst_region' => '0',
7783   'is_dst' => '0',
7784 ))
7785 ->values(array(
7786   'timezone' => '409',
7787   'name' => 'Mideast/Riyadh89',
7788   'offset' => '03:07:04',
7789   'offset_dst' => '03:07:04',
7790   'dst_region' => '0',
7791   'is_dst' => '0',
7792 ))
7793 ->values(array(
7794   'timezone' => '410',
7795   'name' => 'NZ',
7796   'offset' => '13:00:00',
7797   'offset_dst' => '12:00:00',
7798   'dst_region' => '11',
7799   'is_dst' => '0',
7800 ))
7801 ->values(array(
7802   'timezone' => '412',
7803   'name' => 'Navajo',
7804   'offset' => '-07:00:00',
7805   'offset_dst' => '-06:00:00',
7806   'dst_region' => '15',
7807   'is_dst' => '0',
7808 ))
7809 ->values(array(
7810   'timezone' => '415',
7811   'name' => 'Pacific/Apia',
7812   'offset' => '-11:00:00',
7813   'offset_dst' => '-11:00:00',
7814   'dst_region' => '0',
7815   'is_dst' => '0',
7816 ))
7817 ->values(array(
7818   'timezone' => '416',
7819   'name' => 'Pacific/Auckland',
7820   'offset' => '13:00:00',
7821   'offset_dst' => '12:00:00',
7822   'dst_region' => '15',
7823   'is_dst' => '0',
7824 ))
7825 ->values(array(
7826   'timezone' => '417',
7827   'name' => 'Pacific/Chatham',
7828   'offset' => '13:45:00',
7829   'offset_dst' => '12:45:00',
7830   'dst_region' => '15',
7831   'is_dst' => '0',
7832 ))
7833 ->values(array(
7834   'timezone' => '418',
7835   'name' => 'Pacific/Easter',
7836   'offset' => '-05:00:00',
7837   'offset_dst' => '-06:00:00',
7838   'dst_region' => '0',
7839   'is_dst' => '0',
7840 ))
7841 ->values(array(
7842   'timezone' => '419',
7843   'name' => 'Pacific/Efate',
7844   'offset' => '11:00:00',
7845   'offset_dst' => '11:00:00',
7846   'dst_region' => '0',
7847   'is_dst' => '0',
7848 ))
7849 ->values(array(
7850   'timezone' => '420',
7851   'name' => 'Pacific/Enderbury',
7852   'offset' => '13:00:00',
7853   'offset_dst' => '13:00:00',
7854   'dst_region' => '0',
7855   'is_dst' => '0',
7856 ))
7857 ->values(array(
7858   'timezone' => '421',
7859   'name' => 'Pacific/Fakaofo',
7860   'offset' => '-10:00:00',
7861   'offset_dst' => '-10:00:00',
7862   'dst_region' => '0',
7863   'is_dst' => '0',
7864 ))
7865 ->values(array(
7866   'timezone' => '422',
7867   'name' => 'Pacific/Fiji',
7868   'offset' => '12:00:00',
7869   'offset_dst' => '12:00:00',
7870   'dst_region' => '0',
7871   'is_dst' => '0',
7872 ))
7873 ->values(array(
7874   'timezone' => '423',
7875   'name' => 'Pacific/Funafuti',
7876   'offset' => '12:00:00',
7877   'offset_dst' => '12:00:00',
7878   'dst_region' => '0',
7879   'is_dst' => '0',
7880 ))
7881 ->values(array(
7882   'timezone' => '424',
7883   'name' => 'Pacific/Galapagos',
7884   'offset' => '-06:00:00',
7885   'offset_dst' => '-06:00:00',
7886   'dst_region' => '0',
7887   'is_dst' => '0',
7888 ))
7889 ->values(array(
7890   'timezone' => '425',
7891   'name' => 'Pacific/Gambier',
7892   'offset' => '-09:00:00',
7893   'offset_dst' => '-09:00:00',
7894   'dst_region' => '0',
7895   'is_dst' => '0',
7896 ))
7897 ->values(array(
7898   'timezone' => '426',
7899   'name' => 'Pacific/Guadalcanal',
7900   'offset' => '11:00:00',
7901   'offset_dst' => '11:00:00',
7902   'dst_region' => '0',
7903   'is_dst' => '0',
7904 ))
7905 ->values(array(
7906   'timezone' => '427',
7907   'name' => 'Pacific/Guam',
7908   'offset' => '10:00:00',
7909   'offset_dst' => '10:00:00',
7910   'dst_region' => '0',
7911   'is_dst' => '0',
7912 ))
7913 ->values(array(
7914   'timezone' => '428',
7915   'name' => 'Pacific/Honolulu',
7916   'offset' => '-10:00:00',
7917   'offset_dst' => '-10:00:00',
7918   'dst_region' => '0',
7919   'is_dst' => '0',
7920 ))
7921 ->values(array(
7922   'timezone' => '429',
7923   'name' => 'Pacific/Johnston',
7924   'offset' => '-10:00:00',
7925   'offset_dst' => '-10:00:00',
7926   'dst_region' => '0',
7927   'is_dst' => '0',
7928 ))
7929 ->values(array(
7930   'timezone' => '430',
7931   'name' => 'Pacific/Kiritimati',
7932   'offset' => '14:00:00',
7933   'offset_dst' => '14:00:00',
7934   'dst_region' => '0',
7935   'is_dst' => '0',
7936 ))
7937 ->values(array(
7938   'timezone' => '431',
7939   'name' => 'Pacific/Kosrae',
7940   'offset' => '11:00:00',
7941   'offset_dst' => '11:00:00',
7942   'dst_region' => '0',
7943   'is_dst' => '0',
7944 ))
7945 ->values(array(
7946   'timezone' => '432',
7947   'name' => 'Pacific/Kwajalein',
7948   'offset' => '12:00:00',
7949   'offset_dst' => '12:00:00',
7950   'dst_region' => '0',
7951   'is_dst' => '0',
7952 ))
7953 ->values(array(
7954   'timezone' => '433',
7955   'name' => 'Pacific/Majuro',
7956   'offset' => '12:00:00',
7957   'offset_dst' => '12:00:00',
7958   'dst_region' => '0',
7959   'is_dst' => '0',
7960 ))
7961 ->values(array(
7962   'timezone' => '434',
7963   'name' => 'Pacific/Marquesas',
7964   'offset' => '-09:30:00',
7965   'offset_dst' => '-09:30:00',
7966   'dst_region' => '0',
7967   'is_dst' => '0',
7968 ))
7969 ->values(array(
7970   'timezone' => '435',
7971   'name' => 'Pacific/Midway',
7972   'offset' => '-11:00:00',
7973   'offset_dst' => '-11:00:00',
7974   'dst_region' => '0',
7975   'is_dst' => '0',
7976 ))
7977 ->values(array(
7978   'timezone' => '436',
7979   'name' => 'Pacific/Nauru',
7980   'offset' => '12:00:00',
7981   'offset_dst' => '12:00:00',
7982   'dst_region' => '0',
7983   'is_dst' => '0',
7984 ))
7985 ->values(array(
7986   'timezone' => '437',
7987   'name' => 'Pacific/Niue',
7988   'offset' => '-11:00:00',
7989   'offset_dst' => '-11:00:00',
7990   'dst_region' => '0',
7991   'is_dst' => '0',
7992 ))
7993 ->values(array(
7994   'timezone' => '438',
7995   'name' => 'Pacific/Norfolk',
7996   'offset' => '11:30:00',
7997   'offset_dst' => '11:30:00',
7998   'dst_region' => '0',
7999   'is_dst' => '0',
8000 ))
8001 ->values(array(
8002   'timezone' => '439',
8003   'name' => 'Pacific/Noumea',
8004   'offset' => '11:00:00',
8005   'offset_dst' => '11:00:00',
8006   'dst_region' => '0',
8007   'is_dst' => '0',
8008 ))
8009 ->values(array(
8010   'timezone' => '440',
8011   'name' => 'Pacific/Pago Pago',
8012   'offset' => '-11:00:00',
8013   'offset_dst' => '-11:00:00',
8014   'dst_region' => '0',
8015   'is_dst' => '0',
8016 ))
8017 ->values(array(
8018   'timezone' => '441',
8019   'name' => 'Pacific/Palau',
8020   'offset' => '09:00:00',
8021   'offset_dst' => '09:00:00',
8022   'dst_region' => '0',
8023   'is_dst' => '0',
8024 ))
8025 ->values(array(
8026   'timezone' => '442',
8027   'name' => 'Pacific/Pitcairn',
8028   'offset' => '-08:00:00',
8029   'offset_dst' => '-08:00:00',
8030   'dst_region' => '0',
8031   'is_dst' => '0',
8032 ))
8033 ->values(array(
8034   'timezone' => '443',
8035   'name' => 'Pacific/Ponape',
8036   'offset' => '11:00:00',
8037   'offset_dst' => '11:00:00',
8038   'dst_region' => '0',
8039   'is_dst' => '0',
8040 ))
8041 ->values(array(
8042   'timezone' => '444',
8043   'name' => 'Pacific/Port Moresby',
8044   'offset' => '10:00:00',
8045   'offset_dst' => '10:00:00',
8046   'dst_region' => '0',
8047   'is_dst' => '0',
8048 ))
8049 ->values(array(
8050   'timezone' => '445',
8051   'name' => 'Pacific/Rarotonga',
8052   'offset' => '-10:00:00',
8053   'offset_dst' => '-10:00:00',
8054   'dst_region' => '0',
8055   'is_dst' => '0',
8056 ))
8057 ->values(array(
8058   'timezone' => '446',
8059   'name' => 'Pacific/Saipan',
8060   'offset' => '10:00:00',
8061   'offset_dst' => '10:00:00',
8062   'dst_region' => '0',
8063   'is_dst' => '0',
8064 ))
8065 ->values(array(
8066   'timezone' => '447',
8067   'name' => 'Pacific/Samoa',
8068   'offset' => '-11:00:00',
8069   'offset_dst' => '-11:00:00',
8070   'dst_region' => '0',
8071   'is_dst' => '0',
8072 ))
8073 ->values(array(
8074   'timezone' => '448',
8075   'name' => 'Pacific/Tahiti',
8076   'offset' => '-10:00:00',
8077   'offset_dst' => '-10:00:00',
8078   'dst_region' => '0',
8079   'is_dst' => '0',
8080 ))
8081 ->values(array(
8082   'timezone' => '449',
8083   'name' => 'Pacific/Tarawa',
8084   'offset' => '12:00:00',
8085   'offset_dst' => '12:00:00',
8086   'dst_region' => '0',
8087   'is_dst' => '0',
8088 ))
8089 ->values(array(
8090   'timezone' => '450',
8091   'name' => 'Pacific/Tongatapu',
8092   'offset' => '13:00:00',
8093   'offset_dst' => '13:00:00',
8094   'dst_region' => '0',
8095   'is_dst' => '0',
8096 ))
8097 ->values(array(
8098   'timezone' => '451',
8099   'name' => 'Pacific/Truk',
8100   'offset' => '10:00:00',
8101   'offset_dst' => '10:00:00',
8102   'dst_region' => '0',
8103   'is_dst' => '0',
8104 ))
8105 ->values(array(
8106   'timezone' => '452',
8107   'name' => 'Pacific/Wake',
8108   'offset' => '12:00:00',
8109   'offset_dst' => '12:00:00',
8110   'dst_region' => '0',
8111   'is_dst' => '0',
8112 ))
8113 ->values(array(
8114   'timezone' => '453',
8115   'name' => 'Pacific/Wallis',
8116   'offset' => '12:00:00',
8117   'offset_dst' => '12:00:00',
8118   'dst_region' => '0',
8119   'is_dst' => '0',
8120 ))
8121 ->values(array(
8122   'timezone' => '454',
8123   'name' => 'Pacific/Yap',
8124   'offset' => '10:00:00',
8125   'offset_dst' => '10:00:00',
8126   'dst_region' => '0',
8127   'is_dst' => '0',
8128 ))
8129 ->values(array(
8130   'timezone' => '455',
8131   'name' => 'Poland',
8132   'offset' => '01:00:00',
8133   'offset_dst' => '02:00:00',
8134   'dst_region' => '13',
8135   'is_dst' => '0',
8136 ))
8137 ->values(array(
8138   'timezone' => '456',
8139   'name' => 'Portugal',
8140   'offset' => '00:00:00',
8141   'offset_dst' => '01:00:00',
8142   'dst_region' => '13',
8143   'is_dst' => '0',
8144 ))
8145 ->values(array(
8146   'timezone' => '459',
8147   'name' => 'Singapore',
8148   'offset' => '08:00:00',
8149   'offset_dst' => '08:00:00',
8150   'dst_region' => '0',
8151   'is_dst' => '0',
8152 ))
8153 ->values(array(
8154   'timezone' => '473',
8155   'name' => 'Turkey',
8156   'offset' => '02:00:00',
8157   'offset_dst' => '03:00:00',
8158   'dst_region' => '13',
8159   'is_dst' => '0',
8160 ))
8161 ->values(array(
8162   'timezone' => '474',
8163   'name' => 'US/Alaska',
8164   'offset' => '-09:00:00',
8165   'offset_dst' => '-08:00:00',
8166   'dst_region' => '15',
8167   'is_dst' => '0',
8168 ))
8169 ->values(array(
8170   'timezone' => '475',
8171   'name' => 'US/Aleutian',
8172   'offset' => '-10:00:00',
8173   'offset_dst' => '-09:00:00',
8174   'dst_region' => '15',
8175   'is_dst' => '0',
8176 ))
8177 ->values(array(
8178   'timezone' => '476',
8179   'name' => 'US/Arizona',
8180   'offset' => '-07:00:00',
8181   'offset_dst' => '-07:00:00',
8182   'dst_region' => '0',
8183   'is_dst' => '0',
8184 ))
8185 ->values(array(
8186   'timezone' => '477',
8187   'name' => 'US/Central',
8188   'offset' => '-06:00:00',
8189   'offset_dst' => '-05:00:00',
8190   'dst_region' => '15',
8191   'is_dst' => '0',
8192 ))
8193 ->values(array(
8194   'timezone' => '478',
8195   'name' => 'US/East-Indiana',
8196   'offset' => '-05:00:00',
8197   'offset_dst' => '-05:00:00',
8198   'dst_region' => '0',
8199   'is_dst' => '0',
8200 ))
8201 ->values(array(
8202   'timezone' => '479',
8203   'name' => 'US/Eastern',
8204   'offset' => '-05:00:00',
8205   'offset_dst' => '-04:00:00',
8206   'dst_region' => '15',
8207   'is_dst' => '0',
8208 ))
8209 ->values(array(
8210   'timezone' => '480',
8211   'name' => 'US/Hawaii',
8212   'offset' => '-10:00:00',
8213   'offset_dst' => '-10:00:00',
8214   'dst_region' => '0',
8215   'is_dst' => '0',
8216 ))
8217 ->values(array(
8218   'timezone' => '481',
8219   'name' => 'US/Indiana-Starke',
8220   'offset' => '-05:00:00',
8221   'offset_dst' => '-05:00:00',
8222   'dst_region' => '0',
8223   'is_dst' => '0',
8224 ))
8225 ->values(array(
8226   'timezone' => '482',
8227   'name' => 'US/Michigan',
8228   'offset' => '-05:00:00',
8229   'offset_dst' => '-04:00:00',
8230   'dst_region' => '15',
8231   'is_dst' => '0',
8232 ))
8233 ->values(array(
8234   'timezone' => '483',
8235   'name' => 'US/Mountain',
8236   'offset' => '-07:00:00',
8237   'offset_dst' => '-06:00:00',
8238   'dst_region' => '15',
8239   'is_dst' => '0',
8240 ))
8241 ->values(array(
8242   'timezone' => '484',
8243   'name' => 'US/Pacific',
8244   'offset' => '-08:00:00',
8245   'offset_dst' => '-07:00:00',
8246   'dst_region' => '15',
8247   'is_dst' => '0',
8248 ))
8249 ->values(array(
8250   'timezone' => '485',
8251   'name' => 'US/Samoa',
8252   'offset' => '-11:00:00',
8253   'offset_dst' => '-11:00:00',
8254   'dst_region' => '0',
8255   'is_dst' => '0',
8256 ))
8257 ->values(array(
8258   'timezone' => '486',
8259   'name' => 'Pacific/French Polynesia-Marquesas Islands',
8260   'offset' => '-09:30:00',
8261   'offset_dst' => '-09:30:00',
8262   'dst_region' => '0',
8263   'is_dst' => '0',
8264 ))
8265 ->values(array(
8266   'timezone' => '487',
8267   'name' => 'Etc/GMT',
8268   'offset' => '00:00:00',
8269   'offset_dst' => '00:00:00',
8270   'dst_region' => '0',
8271   'is_dst' => '0',
8272 ))
8273 ->execute();
8274
8275 $connection->schema()->createTable('files', array(
8276   'fields' => array(
8277     'fid' => array(
8278       'type' => 'serial',
8279       'not null' => TRUE,
8280       'size' => 'normal',
8281       'unsigned' => TRUE,
8282     ),
8283     'uid' => array(
8284       'type' => 'int',
8285       'not null' => TRUE,
8286       'size' => 'normal',
8287       'default' => '0',
8288       'unsigned' => TRUE,
8289     ),
8290     'filename' => array(
8291       'type' => 'varchar',
8292       'not null' => TRUE,
8293       'length' => '255',
8294       'default' => '',
8295     ),
8296     'filepath' => array(
8297       'type' => 'varchar',
8298       'not null' => TRUE,
8299       'length' => '255',
8300       'default' => '',
8301     ),
8302     'filemime' => array(
8303       'type' => 'varchar',
8304       'not null' => TRUE,
8305       'length' => '255',
8306       'default' => '',
8307     ),
8308     'filesize' => array(
8309       'type' => 'int',
8310       'not null' => TRUE,
8311       'size' => 'normal',
8312       'default' => '0',
8313       'unsigned' => TRUE,
8314     ),
8315     'status' => array(
8316       'type' => 'int',
8317       'not null' => TRUE,
8318       'size' => 'normal',
8319       'default' => '0',
8320     ),
8321     'timestamp' => array(
8322       'type' => 'int',
8323       'not null' => TRUE,
8324       'size' => 'normal',
8325       'default' => '0',
8326       'unsigned' => TRUE,
8327     ),
8328   ),
8329   'primary key' => array(
8330     'fid',
8331   ),
8332   'mysql_character_set' => 'utf8',
8333 ));
8334
8335 $connection->insert('files')
8336 ->fields(array(
8337   'fid',
8338   'uid',
8339   'filename',
8340   'filepath',
8341   'filemime',
8342   'filesize',
8343   'status',
8344   'timestamp',
8345 ))
8346 ->values(array(
8347   'fid' => '1',
8348   'uid' => '1',
8349   'filename' => 'Image1.png',
8350   'filepath' => 'core/modules/simpletest/files/image-1.png',
8351   'filemime' => 'image/png',
8352   'filesize' => '39325',
8353   'status' => '1',
8354   'timestamp' => '1388880660',
8355 ))
8356 ->values(array(
8357   'fid' => '2',
8358   'uid' => '1',
8359   'filename' => 'Image2.jpg',
8360   'filepath' => 'core/modules/simpletest/files/image-2.jpg',
8361   'filemime' => 'image/jpeg',
8362   'filesize' => '1831',
8363   'status' => '1',
8364   'timestamp' => '1388880664',
8365 ))
8366 ->values(array(
8367   'fid' => '3',
8368   'uid' => '1',
8369   'filename' => 'Image-test.gif',
8370   'filepath' => 'core/modules/simpletest/files/image-test.gif',
8371   'filemime' => 'image/jpeg',
8372   'filesize' => '183',
8373   'status' => '1',
8374   'timestamp' => '1388880668',
8375 ))
8376 ->values(array(
8377   'fid' => '5',
8378   'uid' => '1',
8379   'filename' => 'html-1.txt',
8380   'filepath' => 'core/modules/simpletest/files/html-1.txt',
8381   'filemime' => 'text/plain',
8382   'filesize' => '24',
8383   'status' => '1',
8384   'timestamp' => '1420858106',
8385 ))
8386 ->values(array(
8387   'fid' => '6',
8388   'uid' => '1',
8389   'filename' => 'some-temp-file.jpg',
8390   'filepath' => '/tmp/some-temp-file.jpg',
8391   'filemime' => 'image/jpeg',
8392   'filesize' => '24',
8393   'status' => '0',
8394   'timestamp' => '1420858106',
8395 ))
8396 ->execute();
8397
8398 $connection->schema()->createTable('filter_formats', array(
8399   'fields' => array(
8400     'format' => array(
8401       'type' => 'serial',
8402       'not null' => TRUE,
8403       'size' => 'normal',
8404     ),
8405     'name' => array(
8406       'type' => 'varchar',
8407       'not null' => TRUE,
8408       'length' => '255',
8409       'default' => '',
8410     ),
8411     'roles' => array(
8412       'type' => 'varchar',
8413       'not null' => TRUE,
8414       'length' => '255',
8415       'default' => '',
8416     ),
8417     'cache' => array(
8418       'type' => 'int',
8419       'not null' => TRUE,
8420       'size' => 'normal',
8421       'default' => '0',
8422     ),
8423   ),
8424   'primary key' => array(
8425     'format',
8426   ),
8427   'mysql_character_set' => 'utf8',
8428 ));
8429
8430 $connection->insert('filter_formats')
8431 ->fields(array(
8432   'format',
8433   'name',
8434   'roles',
8435   'cache',
8436 ))
8437 ->values(array(
8438   'format' => '1',
8439   'name' => 'Filtered HTML',
8440   'roles' => ',1,2,',
8441   'cache' => '1',
8442 ))
8443 ->values(array(
8444   'format' => '2',
8445   'name' => 'Full HTML',
8446   'roles' => '3',
8447   'cache' => '1',
8448 ))
8449 ->values(array(
8450   'format' => '3',
8451   'name' => 'Escape HTML Filter',
8452   'roles' => '',
8453   'cache' => '1',
8454 ))
8455 ->values(array(
8456   'format' => '4',
8457   'name' => 'PHP Code',
8458   'roles' => ',3,4,5,',
8459   'cache' => '0',
8460 ))
8461 ->execute();
8462
8463 $connection->schema()->createTable('filters', array(
8464   'fields' => array(
8465     'fid' => array(
8466       'type' => 'serial',
8467       'not null' => TRUE,
8468       'size' => 'normal',
8469     ),
8470     'format' => array(
8471       'type' => 'int',
8472       'not null' => TRUE,
8473       'size' => 'normal',
8474       'default' => '0',
8475     ),
8476     'module' => array(
8477       'type' => 'varchar',
8478       'not null' => TRUE,
8479       'length' => '64',
8480       'default' => '',
8481     ),
8482     'delta' => array(
8483       'type' => 'int',
8484       'not null' => TRUE,
8485       'size' => 'normal',
8486       'default' => '0',
8487     ),
8488     'weight' => array(
8489       'type' => 'int',
8490       'not null' => TRUE,
8491       'size' => 'normal',
8492       'default' => '0',
8493     ),
8494   ),
8495   'primary key' => array(
8496     'fid',
8497   ),
8498   'mysql_character_set' => 'utf8',
8499 ));
8500
8501 $connection->insert('filters')
8502 ->fields(array(
8503   'fid',
8504   'format',
8505   'module',
8506   'delta',
8507   'weight',
8508 ))
8509 ->values(array(
8510   'fid' => '1',
8511   'format' => '1',
8512   'module' => 'filter',
8513   'delta' => '2',
8514   'weight' => '0',
8515 ))
8516 ->values(array(
8517   'fid' => '2',
8518   'format' => '1',
8519   'module' => 'filter',
8520   'delta' => '0',
8521   'weight' => '1',
8522 ))
8523 ->values(array(
8524   'fid' => '3',
8525   'format' => '1',
8526   'module' => 'filter',
8527   'delta' => '1',
8528   'weight' => '2',
8529 ))
8530 ->values(array(
8531   'fid' => '4',
8532   'format' => '1',
8533   'module' => 'filter',
8534   'delta' => '3',
8535   'weight' => '10',
8536 ))
8537 ->values(array(
8538   'fid' => '5',
8539   'format' => '2',
8540   'module' => 'filter',
8541   'delta' => '2',
8542   'weight' => '0',
8543 ))
8544 ->values(array(
8545   'fid' => '6',
8546   'format' => '2',
8547   'module' => 'filter',
8548   'delta' => '1',
8549   'weight' => '1',
8550 ))
8551 ->values(array(
8552   'fid' => '7',
8553   'format' => '2',
8554   'module' => 'filter',
8555   'delta' => '3',
8556   'weight' => '10',
8557 ))
8558 ->values(array(
8559   'fid' => '8',
8560   'format' => '6',
8561   'module' => 'filter',
8562   'delta' => '2',
8563   'weight' => '0',
8564 ))
8565 ->values(array(
8566   'fid' => '9',
8567   'format' => '6',
8568   'module' => 'filter',
8569   'delta' => '0',
8570   'weight' => '1',
8571 ))
8572 ->values(array(
8573   'fid' => '10',
8574   'format' => '6',
8575   'module' => 'filter',
8576   'delta' => '1',
8577   'weight' => '2',
8578 ))
8579 ->values(array(
8580   'fid' => '11',
8581   'format' => '6',
8582   'module' => 'filter',
8583   'delta' => '3',
8584   'weight' => '10',
8585 ))
8586 ->values(array(
8587   'fid' => '16',
8588   'format' => '4',
8589   'module' => 'php',
8590   'delta' => '0',
8591   'weight' => '10',
8592 ))
8593 ->execute();
8594
8595 $connection->schema()->createTable('flood', array(
8596   'fields' => array(
8597     'fid' => array(
8598       'type' => 'serial',
8599       'not null' => TRUE,
8600       'size' => 'normal',
8601     ),
8602     'event' => array(
8603       'type' => 'varchar',
8604       'not null' => TRUE,
8605       'length' => '64',
8606       'default' => '',
8607     ),
8608     'hostname' => array(
8609       'type' => 'varchar',
8610       'not null' => TRUE,
8611       'length' => '128',
8612       'default' => '',
8613     ),
8614     'timestamp' => array(
8615       'type' => 'int',
8616       'not null' => TRUE,
8617       'size' => 'normal',
8618       'default' => '0',
8619     ),
8620   ),
8621   'primary key' => array(
8622     'fid',
8623   ),
8624   'mysql_character_set' => 'utf8',
8625 ));
8626
8627 $connection->schema()->createTable('forum', array(
8628   'fields' => array(
8629     'nid' => array(
8630       'type' => 'int',
8631       'not null' => TRUE,
8632       'size' => 'normal',
8633       'default' => '0',
8634       'unsigned' => TRUE,
8635     ),
8636     'vid' => array(
8637       'type' => 'int',
8638       'not null' => TRUE,
8639       'size' => 'normal',
8640       'default' => '0',
8641       'unsigned' => TRUE,
8642     ),
8643     'tid' => array(
8644       'type' => 'int',
8645       'not null' => TRUE,
8646       'size' => 'normal',
8647       'default' => '0',
8648       'unsigned' => TRUE,
8649     ),
8650   ),
8651   'primary key' => array(
8652     'vid',
8653   ),
8654   'indexes' => array(
8655     'nid' => array(
8656       'nid',
8657     ),
8658     'tid' => array(
8659       'tid',
8660     ),
8661   ),
8662   'mysql_character_set' => 'utf8',
8663 ));
8664
8665 $connection->insert('forum')
8666 ->fields(array(
8667   'nid',
8668   'vid',
8669   'tid',
8670 ))
8671 ->values(array(
8672   'nid' => '19',
8673   'vid' => '22',
8674   'tid' => '8',
8675 ))
8676 ->execute();
8677
8678 $connection->schema()->createTable('history', array(
8679   'fields' => array(
8680     'uid' => array(
8681       'type' => 'int',
8682       'not null' => TRUE,
8683       'size' => 'normal',
8684       'default' => '0',
8685     ),
8686     'nid' => array(
8687       'type' => 'int',
8688       'not null' => TRUE,
8689       'size' => 'normal',
8690       'default' => '0',
8691     ),
8692     'timestamp' => array(
8693       'type' => 'int',
8694       'not null' => TRUE,
8695       'size' => 'normal',
8696       'default' => '0',
8697     ),
8698   ),
8699   'primary key' => array(
8700     'uid',
8701     'nid',
8702   ),
8703   'mysql_character_set' => 'utf8',
8704 ));
8705
8706 $connection->insert('history')
8707 ->fields(array(
8708   'uid',
8709   'nid',
8710   'timestamp',
8711 ))
8712 ->values(array(
8713   'uid' => '1',
8714   'nid' => '3',
8715   'timestamp' => '1457654737',
8716 ))
8717 ->values(array(
8718   'uid' => '1',
8719   'nid' => '9',
8720   'timestamp' => '1468384961',
8721 ))
8722 ->values(array(
8723   'uid' => '1',
8724   'nid' => '12',
8725   'timestamp' => '1468384823',
8726 ))
8727 ->values(array(
8728   'uid' => '1',
8729   'nid' => '13',
8730   'timestamp' => '1468384931',
8731 ))
8732 ->values(array(
8733   'uid' => '1',
8734   'nid' => '14',
8735   'timestamp' => '1493066668',
8736 ))
8737 ->values(array(
8738   'uid' => '1',
8739   'nid' => '15',
8740   'timestamp' => '1493066677',
8741 ))
8742 ->values(array(
8743   'uid' => '1',
8744   'nid' => '16',
8745   'timestamp' => '1493066685',
8746 ))
8747 ->values(array(
8748   'uid' => '1',
8749   'nid' => '17',
8750   'timestamp' => '1493066693',
8751 ))
8752 ->values(array(
8753   'uid' => '1',
8754   'nid' => '18',
8755   'timestamp' => '1493066711',
8756 ))
8757 ->values(array(
8758   'uid' => '1',
8759   'nid' => '19',
8760   'timestamp' => '1501955803',
8761 ))
8762 ->values(array(
8763   'uid' => '1',
8764   'nid' => '21',
8765   'timestamp' => '1534014729',
8766 ))
8767 ->values(array(
8768   'uid' => '1',
8769   'nid' => '22',
8770   'timestamp' => '1534014763',
8771 ))
8772 ->execute();
8773
8774 $connection->schema()->createTable('i18n_blocks', array(
8775   'fields' => array(
8776     'ibid' => array(
8777       'type' => 'serial',
8778       'not null' => TRUE,
8779       'size' => 'normal',
8780       'unsigned' => TRUE,
8781     ),
8782     'module' => array(
8783       'type' => 'varchar',
8784       'not null' => TRUE,
8785       'length' => '64',
8786     ),
8787     'delta' => array(
8788       'type' => 'varchar',
8789       'not null' => TRUE,
8790       'length' => '32',
8791       'default' => '0',
8792     ),
8793     'type' => array(
8794       'type' => 'int',
8795       'not null' => TRUE,
8796       'size' => 'normal',
8797       'default' => '0',
8798     ),
8799     'language' => array(
8800       'type' => 'varchar',
8801       'not null' => TRUE,
8802       'length' => '12',
8803       'default' => '',
8804     ),
8805   ),
8806   'primary key' => array(
8807     'ibid',
8808   ),
8809   'mysql_character_set' => 'utf8',
8810 ));
8811
8812 $connection->insert('i18n_blocks')
8813 ->fields(array(
8814   'ibid',
8815   'module',
8816   'delta',
8817   'type',
8818   'language',
8819 ))
8820 ->values(array(
8821   'ibid' => '1',
8822   'module' => 'user',
8823   'delta' => '1',
8824   'type' => '0',
8825   'language' => 'zu',
8826 ))
8827 ->values(array(
8828   'ibid' => '2',
8829   'module' => 'menu',
8830   'delta' => 'menu-translation-test',
8831   'type' => '0',
8832   'language' => 'zu',
8833 ))
8834 ->execute();
8835
8836 $connection->schema()->createTable('i18n_strings', array(
8837   'fields' => array(
8838     'lid' => array(
8839       'type' => 'int',
8840       'not null' => TRUE,
8841       'size' => 'normal',
8842       'default' => '0',
8843     ),
8844     'objectid' => array(
8845       'type' => 'varchar',
8846       'not null' => TRUE,
8847       'length' => '255',
8848       'default' => '',
8849     ),
8850     'type' => array(
8851       'type' => 'varchar',
8852       'not null' => TRUE,
8853       'length' => '255',
8854       'default' => '',
8855     ),
8856     'property' => array(
8857       'type' => 'varchar',
8858       'not null' => TRUE,
8859       'length' => '255',
8860       'default' => '',
8861     ),
8862     'objectindex' => array(
8863       'type' => 'int',
8864       'not null' => TRUE,
8865       'size' => 'normal',
8866       'default' => '0',
8867     ),
8868     'format' => array(
8869       'type' => 'int',
8870       'not null' => TRUE,
8871       'size' => 'normal',
8872       'default' => '0',
8873     ),
8874   ),
8875   'primary key' => array(
8876     'lid',
8877   ),
8878   'mysql_character_set' => 'utf8',
8879 ));
8880
8881 $connection->insert('i18n_strings')
8882 ->fields(array(
8883   'lid',
8884   'objectid',
8885   'type',
8886   'property',
8887   'objectindex',
8888   'format',
8889 ))
8890 ->values(array(
8891   'lid' => '504',
8892   'objectid' => 'profile_color',
8893   'type' => 'field',
8894   'property' => 'title',
8895   'objectindex' => '0',
8896   'format' => '0',
8897 ))
8898 ->values(array(
8899   'lid' => '505',
8900   'objectid' => 'profile_color',
8901   'type' => 'field',
8902   'property' => 'explanation',
8903   'objectindex' => '0',
8904   'format' => '0',
8905 ))
8906 ->values(array(
8907   'lid' => '506',
8908   'objectid' => '',
8909   'type' => 'category',
8910   'property' => '',
8911   'objectindex' => '0',
8912   'format' => '0',
8913 ))
8914 ->values(array(
8915   'lid' => '507',
8916   'objectid' => 'profile_biography',
8917   'type' => 'field',
8918   'property' => 'title',
8919   'objectindex' => '0',
8920   'format' => '0',
8921 ))
8922 ->values(array(
8923   'lid' => '508',
8924   'objectid' => 'profile_biography',
8925   'type' => 'field',
8926   'property' => 'explanation',
8927   'objectindex' => '0',
8928   'format' => '0',
8929 ))
8930 ->values(array(
8931   'lid' => '509',
8932   'objectid' => 'profile_sell_Address',
8933   'type' => 'field',
8934   'property' => 'title',
8935   'objectindex' => '0',
8936   'format' => '0',
8937 ))
8938 ->values(array(
8939   'lid' => '510',
8940   'objectid' => 'profile_sell_Address',
8941   'type' => 'field',
8942   'property' => 'explanation',
8943   'objectindex' => '0',
8944   'format' => '0',
8945 ))
8946 ->values(array(
8947   'lid' => '511',
8948   'objectid' => '',
8949   'type' => 'category',
8950   'property' => '',
8951   'objectindex' => '0',
8952   'format' => '0',
8953 ))
8954 ->values(array(
8955   'lid' => '512',
8956   'objectid' => 'profile_sold_to',
8957   'type' => 'field',
8958   'property' => 'title',
8959   'objectindex' => '0',
8960   'format' => '0',
8961 ))
8962 ->values(array(
8963   'lid' => '513',
8964   'objectid' => 'profile_sold_to',
8965   'type' => 'field',
8966   'property' => 'explanation',
8967   'objectindex' => '0',
8968   'format' => '0',
8969 ))
8970 ->values(array(
8971   'lid' => '514',
8972   'objectid' => 'profile_sold_to',
8973   'type' => 'field',
8974   'property' => 'options',
8975   'objectindex' => '0',
8976   'format' => '0',
8977 ))
8978 ->values(array(
8979   'lid' => '515',
8980   'objectid' => '',
8981   'type' => 'category',
8982   'property' => '',
8983   'objectindex' => '0',
8984   'format' => '0',
8985 ))
8986 ->values(array(
8987   'lid' => '516',
8988   'objectid' => 'profile_bands',
8989   'type' => 'field',
8990   'property' => 'title',
8991   'objectindex' => '0',
8992   'format' => '0',
8993 ))
8994 ->values(array(
8995   'lid' => '517',
8996   'objectid' => 'profile_bands',
8997   'type' => 'field',
8998   'property' => 'explanation',
8999   'objectindex' => '0',
9000   'format' => '0',
9001 ))
9002 ->values(array(
9003   'lid' => '518',
9004   'objectid' => 'profile_birthdate',
9005   'type' => 'field',
9006   'property' => 'title',
9007   'objectindex' => '0',
9008   'format' => '0',
9009 ))
9010 ->values(array(
9011   'lid' => '519',
9012   'objectid' => 'profile_birthdate',
9013   'type' => 'field',
9014   'property' => 'explanation',
9015   'objectindex' => '0',
9016   'format' => '0',
9017 ))
9018 ->values(array(
9019   'lid' => '520',
9020   'objectid' => 'profile_really_really_love_migrations',
9021   'type' => 'field',
9022   'property' => 'title',
9023   'objectindex' => '0',
9024   'format' => '0',
9025 ))
9026 ->values(array(
9027   'lid' => '521',
9028   'objectid' => 'profile_really_really_love_migrations',
9029   'type' => 'field',
9030   'property' => 'explanation',
9031   'objectindex' => '0',
9032   'format' => '0',
9033 ))
9034 ->values(array(
9035   'lid' => '522',
9036   'objectid' => 'profile_blog',
9037   'type' => 'field',
9038   'property' => 'title',
9039   'objectindex' => '0',
9040   'format' => '0',
9041 ))
9042 ->values(array(
9043   'lid' => '523',
9044   'objectid' => 'profile_blog',
9045   'type' => 'field',
9046   'property' => 'explanation',
9047   'objectindex' => '0',
9048   'format' => '0',
9049 ))
9050 ->values(array(
9051   'lid' => '524',
9052   'objectid' => '1',
9053   'type' => 'block',
9054   'property' => 'title',
9055   'objectindex' => '1',
9056   'format' => '0',
9057 ))
9058 ->values(array(
9059   'lid' => '525',
9060   'objectid' => '1',
9061   'type' => 'block',
9062   'property' => 'body',
9063   'objectindex' => '1',
9064   'format' => '2',
9065 ))
9066 ->values(array(
9067   'lid' => '526',
9068   'objectid' => '2',
9069   'type' => 'block',
9070   'property' => 'title',
9071   'objectindex' => '2',
9072   'format' => '0',
9073 ))
9074 ->values(array(
9075   'lid' => '527',
9076   'objectid' => '2',
9077   'type' => 'block',
9078   'property' => 'body',
9079   'objectindex' => '2',
9080   'format' => '2',
9081 ))
9082 ->values(array(
9083   'lid' => '528',
9084   'objectid' => '4',
9085   'type' => 'vocabulary',
9086   'property' => 'name',
9087   'objectindex' => '4',
9088   'format' => '0',
9089 ))
9090 ->values(array(
9091   'lid' => '529',
9092   'objectid' => '1',
9093   'type' => 'vocabulary',
9094   'property' => 'name',
9095   'objectindex' => '1',
9096   'format' => '0',
9097 ))
9098 ->values(array(
9099   'lid' => '530',
9100   'objectid' => '2',
9101   'type' => 'vocabulary',
9102   'property' => 'name',
9103   'objectindex' => '2',
9104   'format' => '0',
9105 ))
9106 ->values(array(
9107   'lid' => '531',
9108   'objectid' => '3',
9109   'type' => 'vocabulary',
9110   'property' => 'name',
9111   'objectindex' => '3',
9112   'format' => '0',
9113 ))
9114 ->values(array(
9115   'lid' => '532',
9116   'objectid' => '5',
9117   'type' => 'vocabulary',
9118   'property' => 'name',
9119   'objectindex' => '5',
9120   'format' => '0',
9121 ))
9122 ->values(array(
9123   'lid' => '533',
9124   'objectid' => 'article',
9125   'type' => 'type',
9126   'property' => 'name',
9127   'objectindex' => '0',
9128   'format' => '0',
9129 ))
9130 ->values(array(
9131   'lid' => '534',
9132   'objectid' => 'article',
9133   'type' => 'type',
9134   'property' => 'title',
9135   'objectindex' => '0',
9136   'format' => '0',
9137 ))
9138 ->values(array(
9139   'lid' => '535',
9140   'objectid' => 'article',
9141   'type' => 'type',
9142   'property' => 'body',
9143   'objectindex' => '0',
9144   'format' => '0',
9145 ))
9146 ->values(array(
9147   'lid' => '536',
9148   'objectid' => 'article',
9149   'type' => 'type',
9150   'property' => 'description',
9151   'objectindex' => '0',
9152   'format' => '0',
9153 ))
9154 ->values(array(
9155   'lid' => '537',
9156   'objectid' => 'company',
9157   'type' => 'type',
9158   'property' => 'name',
9159   'objectindex' => '0',
9160   'format' => '0',
9161 ))
9162 ->values(array(
9163   'lid' => '538',
9164   'objectid' => 'company',
9165   'type' => 'type',
9166   'property' => 'title',
9167   'objectindex' => '0',
9168   'format' => '0',
9169 ))
9170 ->values(array(
9171   'lid' => '539',
9172   'objectid' => 'company',
9173   'type' => 'type',
9174   'property' => 'body',
9175   'objectindex' => '0',
9176   'format' => '0',
9177 ))
9178 ->values(array(
9179   'lid' => '540',
9180   'objectid' => 'company',
9181   'type' => 'type',
9182   'property' => 'description',
9183   'objectindex' => '0',
9184   'format' => '0',
9185 ))
9186 ->values(array(
9187   'lid' => '541',
9188   'objectid' => 'employee',
9189   'type' => 'type',
9190   'property' => 'name',
9191   'objectindex' => '0',
9192   'format' => '0',
9193 ))
9194 ->values(array(
9195   'lid' => '542',
9196   'objectid' => 'employee',
9197   'type' => 'type',
9198   'property' => 'title',
9199   'objectindex' => '0',
9200   'format' => '0',
9201 ))
9202 ->values(array(
9203   'lid' => '543',
9204   'objectid' => 'employee',
9205   'type' => 'type',
9206   'property' => 'body',
9207   'objectindex' => '0',
9208   'format' => '0',
9209 ))
9210 ->values(array(
9211   'lid' => '544',
9212   'objectid' => 'employee',
9213   'type' => 'type',
9214   'property' => 'description',
9215   'objectindex' => '0',
9216   'format' => '0',
9217 ))
9218 ->values(array(
9219   'lid' => '545',
9220   'objectid' => 'sponsor',
9221   'type' => 'type',
9222   'property' => 'name',
9223   'objectindex' => '0',
9224   'format' => '0',
9225 ))
9226 ->values(array(
9227   'lid' => '546',
9228   'objectid' => 'sponsor',
9229   'type' => 'type',
9230   'property' => 'title',
9231   'objectindex' => '0',
9232   'format' => '0',
9233 ))
9234 ->values(array(
9235   'lid' => '547',
9236   'objectid' => 'sponsor',
9237   'type' => 'type',
9238   'property' => 'body',
9239   'objectindex' => '0',
9240   'format' => '0',
9241 ))
9242 ->values(array(
9243   'lid' => '548',
9244   'objectid' => 'sponsor',
9245   'type' => 'type',
9246   'property' => 'description',
9247   'objectindex' => '0',
9248   'format' => '0',
9249 ))
9250 ->values(array(
9251   'lid' => '549',
9252   'objectid' => 'story',
9253   'type' => 'type',
9254   'property' => 'name',
9255   'objectindex' => '0',
9256   'format' => '0',
9257 ))
9258 ->values(array(
9259   'lid' => '550',
9260   'objectid' => 'story',
9261   'type' => 'type',
9262   'property' => 'title',
9263   'objectindex' => '0',
9264   'format' => '0',
9265 ))
9266 ->values(array(
9267   'lid' => '551',
9268   'objectid' => 'story',
9269   'type' => 'type',
9270   'property' => 'body',
9271   'objectindex' => '0',
9272   'format' => '0',
9273 ))
9274 ->values(array(
9275   'lid' => '552',
9276   'objectid' => 'story',
9277   'type' => 'type',
9278   'property' => 'description',
9279   'objectindex' => '0',
9280   'format' => '0',
9281 ))
9282 ->values(array(
9283   'lid' => '553',
9284   'objectid' => 'test_event',
9285   'type' => 'type',
9286   'property' => 'name',
9287   'objectindex' => '0',
9288   'format' => '0',
9289 ))
9290 ->values(array(
9291   'lid' => '554',
9292   'objectid' => 'test_event',
9293   'type' => 'type',
9294   'property' => 'title',
9295   'objectindex' => '0',
9296   'format' => '0',
9297 ))
9298 ->values(array(
9299   'lid' => '555',
9300   'objectid' => 'test_event',
9301   'type' => 'type',
9302   'property' => 'body',
9303   'objectindex' => '0',
9304   'format' => '0',
9305 ))
9306 ->values(array(
9307   'lid' => '556',
9308   'objectid' => 'test_event',
9309   'type' => 'type',
9310   'property' => 'description',
9311   'objectindex' => '0',
9312   'format' => '0',
9313 ))
9314 ->values(array(
9315   'lid' => '558',
9316   'objectid' => 'test_page',
9317   'type' => 'type',
9318   'property' => 'name',
9319   'objectindex' => '0',
9320   'format' => '0',
9321 ))
9322 ->values(array(
9323   'lid' => '559',
9324   'objectid' => 'test_page',
9325   'type' => 'type',
9326   'property' => 'title',
9327   'objectindex' => '0',
9328   'format' => '0',
9329 ))
9330 ->values(array(
9331   'lid' => '560',
9332   'objectid' => 'test_page',
9333   'type' => 'type',
9334   'property' => 'body',
9335   'objectindex' => '0',
9336   'format' => '0',
9337 ))
9338 ->values(array(
9339   'lid' => '561',
9340   'objectid' => 'test_page',
9341   'type' => 'type',
9342   'property' => 'description',
9343   'objectindex' => '0',
9344   'format' => '0',
9345 ))
9346 ->values(array(
9347   'lid' => '562',
9348   'objectid' => 'test_planet',
9349   'type' => 'type',
9350   'property' => 'name',
9351   'objectindex' => '0',
9352   'format' => '0',
9353 ))
9354 ->values(array(
9355   'lid' => '563',
9356   'objectid' => 'test_planet',
9357   'type' => 'type',
9358   'property' => 'title',
9359   'objectindex' => '0',
9360   'format' => '0',
9361 ))
9362 ->values(array(
9363   'lid' => '564',
9364   'objectid' => 'test_planet',
9365   'type' => 'type',
9366   'property' => 'body',
9367   'objectindex' => '0',
9368   'format' => '0',
9369 ))
9370 ->values(array(
9371   'lid' => '565',
9372   'objectid' => 'test_planet',
9373   'type' => 'type',
9374   'property' => 'description',
9375   'objectindex' => '0',
9376   'format' => '0',
9377 ))
9378 ->values(array(
9379   'lid' => '566',
9380   'objectid' => 'test_story',
9381   'type' => 'type',
9382   'property' => 'name',
9383   'objectindex' => '0',
9384   'format' => '0',
9385 ))
9386 ->values(array(
9387   'lid' => '567',
9388   'objectid' => 'test_story',
9389   'type' => 'type',
9390   'property' => 'title',
9391   'objectindex' => '0',
9392   'format' => '0',
9393 ))
9394 ->values(array(
9395   'lid' => '568',
9396   'objectid' => 'test_story',
9397   'type' => 'type',
9398   'property' => 'body',
9399   'objectindex' => '0',
9400   'format' => '0',
9401 ))
9402 ->values(array(
9403   'lid' => '569',
9404   'objectid' => 'test_story',
9405   'type' => 'type',
9406   'property' => 'description',
9407   'objectindex' => '0',
9408   'format' => '0',
9409 ))
9410 ->values(array(
9411   'lid' => '570',
9412   'objectid' => 'story-field_test_exclude_unset',
9413   'type' => 'field',
9414   'property' => 'widget_label',
9415   'objectindex' => '0',
9416   'format' => '0',
9417 ))
9418 ->values(array(
9419   'lid' => '571',
9420   'objectid' => 'story-field_test_exclude_unset',
9421   'type' => 'field',
9422   'property' => 'widget_description',
9423   'objectindex' => '0',
9424   'format' => '0',
9425 ))
9426 ->values(array(
9427   'lid' => '572',
9428   'objectid' => 'story-field_test_two',
9429   'type' => 'field',
9430   'property' => 'widget_label',
9431   'objectindex' => '0',
9432   'format' => '0',
9433 ))
9434 ->values(array(
9435   'lid' => '573',
9436   'objectid' => 'story-field_test_two',
9437   'type' => 'field',
9438   'property' => 'widget_description',
9439   'objectindex' => '0',
9440   'format' => '0',
9441 ))
9442 ->values(array(
9443   'lid' => '574',
9444   'objectid' => 'story-field_test',
9445   'type' => 'field',
9446   'property' => 'widget_label',
9447   'objectindex' => '0',
9448   'format' => '0',
9449 ))
9450 ->values(array(
9451   'lid' => '575',
9452   'objectid' => 'story-field_test',
9453   'type' => 'field',
9454   'property' => 'widget_description',
9455   'objectindex' => '0',
9456   'format' => '0',
9457 ))
9458 ->values(array(
9459   'lid' => '576',
9460   'objectid' => 'story-field_test_three',
9461   'type' => 'field',
9462   'property' => 'widget_label',
9463   'objectindex' => '0',
9464   'format' => '0',
9465 ))
9466 ->values(array(
9467   'lid' => '577',
9468   'objectid' => 'story-field_test_three',
9469   'type' => 'field',
9470   'property' => 'widget_description',
9471   'objectindex' => '0',
9472   'format' => '0',
9473 ))
9474 ->values(array(
9475   'lid' => '578',
9476   'objectid' => 'story-field_test_four',
9477   'type' => 'field',
9478   'property' => 'widget_label',
9479   'objectindex' => '0',
9480   'format' => '0',
9481 ))
9482 ->values(array(
9483   'lid' => '579',
9484   'objectid' => 'story-field_test_four',
9485   'type' => 'field',
9486   'property' => 'widget_description',
9487   'objectindex' => '0',
9488   'format' => '0',
9489 ))
9490 ->values(array(
9491   'lid' => '580',
9492   'objectid' => 'story-field_test_identical1',
9493   'type' => 'field',
9494   'property' => 'widget_label',
9495   'objectindex' => '0',
9496   'format' => '0',
9497 ))
9498 ->values(array(
9499   'lid' => '581',
9500   'objectid' => 'story-field_test_identical1',
9501   'type' => 'field',
9502   'property' => 'widget_description',
9503   'objectindex' => '0',
9504   'format' => '0',
9505 ))
9506 ->values(array(
9507   'lid' => '582',
9508   'objectid' => 'story-field_test_identical2',
9509   'type' => 'field',
9510   'property' => 'widget_label',
9511   'objectindex' => '0',
9512   'format' => '0',
9513 ))
9514 ->values(array(
9515   'lid' => '583',
9516   'objectid' => 'story-field_test_identical2',
9517   'type' => 'field',
9518   'property' => 'widget_description',
9519   'objectindex' => '0',
9520   'format' => '0',
9521 ))
9522 ->values(array(
9523   'lid' => '584',
9524   'objectid' => 'story-field_test_email',
9525   'type' => 'field',
9526   'property' => 'widget_label',
9527   'objectindex' => '0',
9528   'format' => '0',
9529 ))
9530 ->values(array(
9531   'lid' => '585',
9532   'objectid' => 'story-field_test_email',
9533   'type' => 'field',
9534   'property' => 'widget_description',
9535   'objectindex' => '0',
9536   'format' => '0',
9537 ))
9538 ->values(array(
9539   'lid' => '586',
9540   'objectid' => 'story-field_test_link',
9541   'type' => 'field',
9542   'property' => 'widget_label',
9543   'objectindex' => '0',
9544   'format' => '0',
9545 ))
9546 ->values(array(
9547   'lid' => '587',
9548   'objectid' => 'story-field_test_link',
9549   'type' => 'field',
9550   'property' => 'widget_description',
9551   'objectindex' => '0',
9552   'format' => '0',
9553 ))
9554 ->values(array(
9555   'lid' => '588',
9556   'objectid' => 'story-field_test_filefield',
9557   'type' => 'field',
9558   'property' => 'widget_label',
9559   'objectindex' => '0',
9560   'format' => '0',
9561 ))
9562 ->values(array(
9563   'lid' => '589',
9564   'objectid' => 'story-field_test_filefield',
9565   'type' => 'field',
9566   'property' => 'widget_description',
9567   'objectindex' => '0',
9568   'format' => '0',
9569 ))
9570 ->values(array(
9571   'lid' => '590',
9572   'objectid' => 'story-field_test_imagefield',
9573   'type' => 'field',
9574   'property' => 'widget_label',
9575   'objectindex' => '0',
9576   'format' => '0',
9577 ))
9578 ->values(array(
9579   'lid' => '591',
9580   'objectid' => 'story-field_test_imagefield',
9581   'type' => 'field',
9582   'property' => 'widget_description',
9583   'objectindex' => '0',
9584   'format' => '0',
9585 ))
9586 ->values(array(
9587   'lid' => '592',
9588   'objectid' => 'story-field_test_date',
9589   'type' => 'field',
9590   'property' => 'widget_label',
9591   'objectindex' => '0',
9592   'format' => '0',
9593 ))
9594 ->values(array(
9595   'lid' => '593',
9596   'objectid' => 'story-field_test_date',
9597   'type' => 'field',
9598   'property' => 'widget_description',
9599   'objectindex' => '0',
9600   'format' => '0',
9601 ))
9602 ->values(array(
9603   'lid' => '594',
9604   'objectid' => 'story-field_test_datestamp',
9605   'type' => 'field',
9606   'property' => 'widget_label',
9607   'objectindex' => '0',
9608   'format' => '0',
9609 ))
9610 ->values(array(
9611   'lid' => '595',
9612   'objectid' => 'story-field_test_datestamp',
9613   'type' => 'field',
9614   'property' => 'widget_description',
9615   'objectindex' => '0',
9616   'format' => '0',
9617 ))
9618 ->values(array(
9619   'lid' => '596',
9620   'objectid' => 'story-field_test_datetime',
9621   'type' => 'field',
9622   'property' => 'widget_label',
9623   'objectindex' => '0',
9624   'format' => '0',
9625 ))
9626 ->values(array(
9627   'lid' => '597',
9628   'objectid' => 'story-field_test_datetime',
9629   'type' => 'field',
9630   'property' => 'widget_description',
9631   'objectindex' => '0',
9632   'format' => '0',
9633 ))
9634 ->values(array(
9635   'lid' => '598',
9636   'objectid' => 'story-field_test_phone',
9637   'type' => 'field',
9638   'property' => 'widget_label',
9639   'objectindex' => '0',
9640   'format' => '0',
9641 ))
9642 ->values(array(
9643   'lid' => '599',
9644   'objectid' => 'story-field_test_phone',
9645   'type' => 'field',
9646   'property' => 'widget_description',
9647   'objectindex' => '0',
9648   'format' => '0',
9649 ))
9650 ->values(array(
9651   'lid' => '600',
9652   'objectid' => 'story-field_test_decimal_radio_buttons',
9653   'type' => 'field',
9654   'property' => 'widget_label',
9655   'objectindex' => '0',
9656   'format' => '0',
9657 ))
9658 ->values(array(
9659   'lid' => '601',
9660   'objectid' => 'story-field_test_decimal_radio_buttons',
9661   'type' => 'field',
9662   'property' => 'widget_description',
9663   'objectindex' => '0',
9664   'format' => '0',
9665 ))
9666 ->values(array(
9667   'lid' => '602',
9668   'objectid' => 'field_test_decimal_radio_buttons',
9669   'type' => 'field',
9670   'property' => 'option_1.2',
9671   'objectindex' => '0',
9672   'format' => '0',
9673 ))
9674 ->values(array(
9675   'lid' => '603',
9676   'objectid' => 'field_test_decimal_radio_buttons',
9677   'type' => 'field',
9678   'property' => 'option_2.1',
9679   'objectindex' => '0',
9680   'format' => '0',
9681 ))
9682 ->values(array(
9683   'lid' => '604',
9684   'objectid' => 'story-field_test_float_single_checkbox',
9685   'type' => 'field',
9686   'property' => 'widget_label',
9687   'objectindex' => '0',
9688   'format' => '0',
9689 ))
9690 ->values(array(
9691   'lid' => '605',
9692   'objectid' => 'story-field_test_float_single_checkbox',
9693   'type' => 'field',
9694   'property' => 'widget_description',
9695   'objectindex' => '0',
9696   'format' => '0',
9697 ))
9698 ->values(array(
9699   'lid' => '606',
9700   'objectid' => 'field_test_float_single_checkbox',
9701   'type' => 'field',
9702   'property' => 'option_3.142',
9703   'objectindex' => '0',
9704   'format' => '0',
9705 ))
9706 ->values(array(
9707   'lid' => '607',
9708   'objectid' => 'field_test_float_single_checkbox',
9709   'type' => 'field',
9710   'property' => 'option_1.234',
9711   'objectindex' => '0',
9712   'format' => '0',
9713 ))
9714 ->values(array(
9715   'lid' => '608',
9716   'objectid' => 'story-field_test_integer_selectlist',
9717   'type' => 'field',
9718   'property' => 'widget_label',
9719   'objectindex' => '0',
9720   'format' => '0',
9721 ))
9722 ->values(array(
9723   'lid' => '609',
9724   'objectid' => 'story-field_test_integer_selectlist',
9725   'type' => 'field',
9726   'property' => 'widget_description',
9727   'objectindex' => '0',
9728   'format' => '0',
9729 ))
9730 ->values(array(
9731   'lid' => '610',
9732   'objectid' => 'field_test_integer_selectlist',
9733   'type' => 'field',
9734   'property' => 'option_1234',
9735   'objectindex' => '0',
9736   'format' => '0',
9737 ))
9738 ->values(array(
9739   'lid' => '611',
9740   'objectid' => 'field_test_integer_selectlist',
9741   'type' => 'field',
9742   'property' => 'option_2341',
9743   'objectindex' => '0',
9744   'format' => '0',
9745 ))
9746 ->values(array(
9747   'lid' => '612',
9748   'objectid' => 'field_test_integer_selectlist',
9749   'type' => 'field',
9750   'property' => 'option_3412',
9751   'objectindex' => '0',
9752   'format' => '0',
9753 ))
9754 ->values(array(
9755   'lid' => '613',
9756   'objectid' => 'field_test_integer_selectlist',
9757   'type' => 'field',
9758   'property' => 'option_4123',
9759   'objectindex' => '0',
9760   'format' => '0',
9761 ))
9762 ->values(array(
9763   'lid' => '614',
9764   'objectid' => 'story-field_test_text_single_checkbox',
9765   'type' => 'field',
9766   'property' => 'widget_label',
9767   'objectindex' => '0',
9768   'format' => '0',
9769 ))
9770 ->values(array(
9771   'lid' => '615',
9772   'objectid' => 'story-field_test_text_single_checkbox',
9773   'type' => 'field',
9774   'property' => 'widget_description',
9775   'objectindex' => '0',
9776   'format' => '0',
9777 ))
9778 ->values(array(
9779   'lid' => '616',
9780   'objectid' => 'field_test_text_single_checkbox',
9781   'type' => 'field',
9782   'property' => 'option_0',
9783   'objectindex' => '0',
9784   'format' => '0',
9785 ))
9786 ->values(array(
9787   'lid' => '617',
9788   'objectid' => 'field_test_text_single_checkbox',
9789   'type' => 'field',
9790   'property' => 'option_1',
9791   'objectindex' => '0',
9792   'format' => '0',
9793 ))
9794 ->values(array(
9795   'lid' => '618',
9796   'objectid' => 'story-field_test_text_single_checkbox2',
9797   'type' => 'field',
9798   'property' => 'widget_label',
9799   'objectindex' => '0',
9800   'format' => '0',
9801 ))
9802 ->values(array(
9803   'lid' => '619',
9804   'objectid' => 'story-field_test_text_single_checkbox2',
9805   'type' => 'field',
9806   'property' => 'widget_description',
9807   'objectindex' => '0',
9808   'format' => '0',
9809 ))
9810 ->values(array(
9811   'lid' => '620',
9812   'objectid' => 'field_test_text_single_checkbox2',
9813   'type' => 'field',
9814   'property' => 'option_Off',
9815   'objectindex' => '0',
9816   'format' => '0',
9817 ))
9818 ->values(array(
9819   'lid' => '621',
9820   'objectid' => 'field_test_text_single_checkbox2',
9821   'type' => 'field',
9822   'property' => 'option_Hello',
9823   'objectindex' => '0',
9824   'format' => '0',
9825 ))
9826 ->values(array(
9827   'lid' => '622',
9828   'objectid' => 'test_page-field_test',
9829   'type' => 'field',
9830   'property' => 'widget_label',
9831   'objectindex' => '0',
9832   'format' => '0',
9833 ))
9834 ->values(array(
9835   'lid' => '623',
9836   'objectid' => 'test_page-field_test',
9837   'type' => 'field',
9838   'property' => 'widget_description',
9839   'objectindex' => '0',
9840   'format' => '0',
9841 ))
9842 ->values(array(
9843   'lid' => '624',
9844   'objectid' => 'test_planet-field_multivalue',
9845   'type' => 'field',
9846   'property' => 'widget_label',
9847   'objectindex' => '0',
9848   'format' => '0',
9849 ))
9850 ->values(array(
9851   'lid' => '625',
9852   'objectid' => 'test_planet-field_multivalue',
9853   'type' => 'field',
9854   'property' => 'widget_description',
9855   'objectindex' => '0',
9856   'format' => '0',
9857 ))
9858 ->values(array(
9859   'lid' => '626',
9860   'objectid' => 'test_planet-field_test_text_single_checkbox',
9861   'type' => 'field',
9862   'property' => 'widget_label',
9863   'objectindex' => '0',
9864   'format' => '0',
9865 ))
9866 ->values(array(
9867   'lid' => '627',
9868   'objectid' => 'test_planet-field_test_text_single_checkbox',
9869   'type' => 'field',
9870   'property' => 'widget_description',
9871   'objectindex' => '0',
9872   'format' => '0',
9873 ))
9874 ->values(array(
9875   'lid' => '633',
9876   'objectid' => '140',
9877   'type' => 'item',
9878   'property' => 'title',
9879   'objectindex' => '140',
9880   'format' => '0',
9881 ))
9882 ->values(array(
9883   'lid' => '634',
9884   'objectid' => '139',
9885   'type' => 'item',
9886   'property' => 'title',
9887   'objectindex' => '139',
9888   'format' => '0',
9889 ))
9890 ->values(array(
9891   'lid' => '635',
9892   'objectid' => '139',
9893   'type' => 'item',
9894   'property' => 'description',
9895   'objectindex' => '139',
9896   'format' => '0',
9897 ))
9898 ->values(array(
9899   'lid' => '1664',
9900   'objectid' => 'forum',
9901   'type' => 'type',
9902   'property' => 'name',
9903   'objectindex' => '0',
9904   'format' => '0',
9905 ))
9906 ->values(array(
9907   'lid' => '1665',
9908   'objectid' => 'forum',
9909   'type' => 'type',
9910   'property' => 'title',
9911   'objectindex' => '0',
9912   'format' => '0',
9913 ))
9914 ->values(array(
9915   'lid' => '1666',
9916   'objectid' => 'forum',
9917   'type' => 'type',
9918   'property' => 'body',
9919   'objectindex' => '0',
9920   'format' => '0',
9921 ))
9922 ->values(array(
9923   'lid' => '1667',
9924   'objectid' => 'forum',
9925   'type' => 'type',
9926   'property' => 'description',
9927   'objectindex' => '0',
9928   'format' => '0',
9929 ))
9930 ->values(array(
9931   'lid' => '1672',
9932   'objectid' => '6',
9933   'type' => 'vocabulary',
9934   'property' => 'name',
9935   'objectindex' => '6',
9936   'format' => '0',
9937 ))
9938 ->values(array(
9939   'lid' => '1673',
9940   'objectid' => '7',
9941   'type' => 'vocabulary',
9942   'property' => 'name',
9943   'objectindex' => '7',
9944   'format' => '0',
9945 ))
9946 ->values(array(
9947   'lid' => '1674',
9948   'objectid' => '463',
9949   'type' => 'item',
9950   'property' => 'title',
9951   'objectindex' => '463',
9952   'format' => '0',
9953 ))
9954 ->values(array(
9955   'lid' => '1675',
9956   'objectid' => '463',
9957   'type' => 'item',
9958   'property' => 'description',
9959   'objectindex' => '463',
9960   'format' => '0',
9961 ))
9962 ->values(array(
9963   'lid' => '1676',
9964   'objectid' => '138',
9965   'type' => 'item',
9966   'property' => 'title',
9967   'objectindex' => '138',
9968   'format' => '0',
9969 ))
9970 ->values(array(
9971   'lid' => '1677',
9972   'objectid' => '138',
9973   'type' => 'item',
9974   'property' => 'description',
9975   'objectindex' => '138',
9976   'format' => '0',
9977 ))
9978 ->values(array(
9979   'lid' => '1678',
9980   'objectid' => 'profile_really_really_love_migrating',
9981   'type' => 'field',
9982   'property' => 'title',
9983   'objectindex' => '0',
9984   'format' => '0',
9985 ))
9986 ->values(array(
9987   'lid' => '1679',
9988   'objectid' => 'menu-translation-test',
9989   'type' => 'menu',
9990   'property' => 'title',
9991   'objectindex' => '0',
9992   'format' => '0',
9993 ))
9994 ->values(array(
9995   'lid' => '1680',
9996   'objectid' => 'employee-field_company',
9997   'type' => 'field',
9998   'property' => 'widget_label',
9999   'objectindex' => '0',
10000   'format' => '0',
10001 ))
10002 ->values(array(
10003   'lid' => '1681',
10004   'objectid' => 'employee-field_commander',
10005   'type' => 'field',
10006   'property' => 'widget_label',
10007   'objectindex' => '0',
10008   'format' => '0',
10009 ))
10010 ->values(array(
10011   'lid' => '1682',
10012   'objectid' => 'employee-field_company_2',
10013   'type' => 'field',
10014   'property' => 'widget_label',
10015   'objectindex' => '0',
10016   'format' => '0',
10017 ))
10018 ->values(array(
10019   'lid' => '1683',
10020   'objectid' => 'employee-field_company_3',
10021   'type' => 'field',
10022   'property' => 'widget_label',
10023   'objectindex' => '0',
10024   'format' => '0',
10025 ))
10026 ->values(array(
10027   'lid' => '1684',
10028   'objectid' => 'page-field_reference',
10029   'type' => 'field',
10030   'property' => 'widget_label',
10031   'objectindex' => '0',
10032   'format' => '0',
10033 ))
10034 ->values(array(
10035   'lid' => '1685',
10036   'objectid' => 'page-field_reference_2',
10037   'type' => 'field',
10038   'property' => 'widget_label',
10039   'objectindex' => '0',
10040   'format' => '0',
10041 ))
10042 ->values(array(
10043   'lid' => '1686',
10044   'objectid' => 'story-field_test_string_selectlist',
10045   'type' => 'field',
10046   'property' => 'widget_label',
10047   'objectindex' => '0',
10048   'format' => '0',
10049 ))
10050 ->values(array(
10051   'lid' => '1689',
10052   'objectid' => 'test_planet-field_test_text_single_checkbox',
10053   'type' => 'field',
10054   'property' => 'widget_label',
10055   'objectindex' => '0',
10056   'format' => '0',
10057 ))
10058 ->values(array(
10059   'lid' => '1690',
10060   'objectid' => 'field_test_string_selectlist',
10061   'type' => 'field',
10062   'property' => 'option_A',
10063   'objectindex' => '0',
10064   'format' => '0',
10065 ))
10066 ->values(array(
10067   'lid' => '1691',
10068   'objectid' => 'field_test_string_selectlist',
10069   'type' => 'field',
10070   'property' => 'option_B',
10071   'objectindex' => '0',
10072   'format' => '0',
10073 ))
10074 ->values(array(
10075   'lid' => '1692',
10076   'objectid' => '14',
10077   'type' => 'term',
10078   'property' => 'name',
10079   'objectindex' => '14',
10080   'format' => '0',
10081 ))
10082 ->values(array(
10083   'lid' => '1693',
10084   'objectid' => '15',
10085   'type' => 'term',
10086   'property' => 'name',
10087   'objectindex' => '15',
10088   'format' => '0',
10089 ))
10090 ->values(array(
10091   'lid' => '1694',
10092   'objectid' => '14',
10093   'type' => 'term',
10094   'property' => 'description',
10095   'objectindex' => '14',
10096   'format' => '0',
10097 ))
10098 ->execute();
10099
10100 $connection->schema()->createTable('i18n_variable', array(
10101   'fields' => array(
10102     'name' => array(
10103       'type' => 'varchar',
10104       'not null' => TRUE,
10105       'length' => '128',
10106       'default' => '',
10107     ),
10108     'language' => array(
10109       'type' => 'varchar',
10110       'not null' => TRUE,
10111       'length' => '12',
10112       'default' => '',
10113     ),
10114     'value' => array(
10115       'type' => 'text',
10116       'not null' => TRUE,
10117       'size' => 'big',
10118     ),
10119   ),
10120   'primary key' => array(
10121     'name',
10122     'language',
10123   ),
10124   'mysql_character_set' => 'utf8',
10125 ));
10126
10127 $connection->insert('i18n_variable')
10128 ->fields(array(
10129   'name',
10130   'language',
10131   'value',
10132 ))
10133 ->values(array(
10134   'name' => 'array_filter',
10135   'language' => 'en',
10136   'value' => 'b:1;',
10137 ))
10138 ->values(array(
10139   'name' => 'i18nstrings_allowed_formats',
10140   'language' => 'en',
10141   'value' => 'a:2:{i:0;i:1;i:1;i:2;}',
10142 ))
10143 ->values(array(
10144   'name' => 'statistics_count_content_views',
10145   'language' => 'en',
10146   'value' => 's:1:"1";',
10147 ))
10148 ->values(array(
10149   'name' => 'statistics_enable_access_log',
10150   'language' => 'en',
10151   'value' => 's:1:"0";',
10152 ))
10153 ->values(array(
10154   'name' => 'statistics_flush_accesslog_timer',
10155   'language' => 'en',
10156   'value' => 's:6:"259200";',
10157 ))
10158 ->values(array(
10159   'name' => 'anonymous',
10160   'language' => 'fr',
10161   'value' => 's:8:"fr Guest";',
10162 ))
10163 ->values(array(
10164   'name' => 'error_level',
10165   'language' => 'fr',
10166   'value' => 's:1:"1";',
10167 ))
10168 ->values(array(
10169   'name' => 'site_403',
10170   'language' => 'fr',
10171   'value' => 's:7:"fr-user";',
10172 ))
10173 ->values(array(
10174   'name' => 'site_404',
10175   'language' => 'fr',
10176   'value' => 's:17:"fr-page-not-found";',
10177 ))
10178 ->values(array(
10179   'name' => 'site_footer',
10180   'language' => 'fr',
10181   'value' => 's:0:"";',
10182 ))
10183 ->values(array(
10184   'name' => 'site_frontpage',
10185   'language' => 'fr',
10186   'value' => 's:4:"node";',
10187 ))
10188 ->values(array(
10189   'name' => 'site_mail',
10190   'language' => 'fr',
10191   'value' => 's:24:"fr_site_mail@example.com";',
10192 ))
10193 ->values(array(
10194   'name' => 'site_mission',
10195   'language' => 'fr',
10196   'value' => 's:0:"";',
10197 ))
10198 ->values(array(
10199   'name' => 'site_name',
10200   'language' => 'fr',
10201   'value' => 's:12:"fr site name";',
10202 ))
10203 ->values(array(
10204   'name' => 'site_offline',
10205   'language' => 'fr',
10206   'value' => 's:1:"0";',
10207 ))
10208 ->values(array(
10209   'name' => 'site_offline_message',
10210   'language' => 'fr',
10211   'value' => 's:99:"fr - Drupal is currently under maintenance. We should be back shortly. Thank you for your patience.";',
10212 ))
10213 ->values(array(
10214   'name' => 'site_slogan',
10215   'language' => 'fr',
10216   'value' => 's:16:"fr Migrate rocks";',
10217 ))
10218 ->values(array(
10219   'name' => 'user_email_verification',
10220   'language' => 'fr',
10221   'value' => 'i:0;',
10222 ))
10223 ->values(array(
10224   'name' => 'user_mail_password_reset_body',
10225   'language' => 'fr',
10226   '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.\";",
10227 ))
10228 ->values(array(
10229   'name' => 'user_mail_password_reset_subject',
10230   'language' => 'fr',
10231   'value' => 's:57:"fr - Replacement login information for !username at !site";',
10232 ))
10233 ->values(array(
10234   'name' => 'user_mail_register_admin_created_body',
10235   'language' => 'fr',
10236   '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\";",
10237 ))
10238 ->values(array(
10239   'name' => 'user_mail_register_admin_created_subject',
10240   'language' => 'fr',
10241   'value' => 's:57:"fr - An administrator created an account for you at !site";',
10242 ))
10243 ->values(array(
10244   'name' => 'user_mail_register_no_approval_required_body',
10245   'language' => 'fr',
10246   '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\";",
10247 ))
10248 ->values(array(
10249   'name' => 'user_mail_register_no_approval_required_subject',
10250   'language' => 'fr',
10251   'value' => 's:43:"fr - Account details for !username at !site";',
10252 ))
10253 ->values(array(
10254   'name' => 'user_mail_register_pending_approval_body',
10255   'language' => 'fr',
10256   '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\";",
10257 ))
10258 ->values(array(
10259   'name' => 'user_mail_register_pending_approval_subject',
10260   'language' => 'fr',
10261   'value' => 's:68:"fr - Account details for !username at !site (pending admin approval)";',
10262 ))
10263 ->values(array(
10264   'name' => 'user_mail_status_activated_body',
10265   'language' => 'fr',
10266   '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\";",
10267 ))
10268 ->values(array(
10269   'name' => 'user_mail_status_activated_notify',
10270   'language' => 'fr',
10271   'value' => 'i:0;',
10272 ))
10273 ->values(array(
10274   'name' => 'user_mail_status_activated_subject',
10275   'language' => 'fr',
10276   'value' => 's:54:"fr - Account details for !username at !site (approved)";',
10277 ))
10278 ->values(array(
10279   'name' => 'user_mail_status_blocked_body',
10280   'language' => 'fr',
10281   'value' => "s:58:\"fr - !username,\r\n\r\nYour account on !site has been blocked.\";",
10282 ))
10283 ->values(array(
10284   'name' => 'user_mail_status_blocked_notify',
10285   'language' => 'fr',
10286   'value' => 'i:1;',
10287 ))
10288 ->values(array(
10289   'name' => 'user_mail_status_blocked_subject',
10290   'language' => 'fr',
10291   'value' => 's:53:"fr - Account details for !username at !site (blocked)";',
10292 ))
10293 ->values(array(
10294   'name' => 'user_mail_status_deleted_body',
10295   'language' => 'fr',
10296   'value' => "s:58:\"fr - !username,\r\n\r\nYour account on !site has been deleted.\";",
10297 ))
10298 ->values(array(
10299   'name' => 'user_mail_status_deleted_notify',
10300   'language' => 'fr',
10301   'value' => 'i:0;',
10302 ))
10303 ->values(array(
10304   'name' => 'user_mail_status_deleted_subject',
10305   'language' => 'fr',
10306   'value' => 's:53:"fr - Account details for !username at !site (deleted)";',
10307 ))
10308 ->values(array(
10309   'name' => 'user_pictures',
10310   'language' => 'fr',
10311   'value' => 's:1:"0";',
10312 ))
10313 ->values(array(
10314   'name' => 'user_picture_default',
10315   'language' => 'fr',
10316   'value' => 's:0:"";',
10317 ))
10318 ->values(array(
10319   'name' => 'user_picture_dimensions',
10320   'language' => 'fr',
10321   'value' => 's:5:"85x85";',
10322 ))
10323 ->values(array(
10324   'name' => 'user_picture_file_size',
10325   'language' => 'fr',
10326   'value' => 's:2:"30";',
10327 ))
10328 ->values(array(
10329   'name' => 'user_picture_guidelines',
10330   'language' => 'fr',
10331   'value' => 's:0:"";',
10332 ))
10333 ->values(array(
10334   'name' => 'user_picture_path',
10335   'language' => 'fr',
10336   'value' => 's:8:"pictures";',
10337 ))
10338 ->values(array(
10339   'name' => 'user_register',
10340   'language' => 'fr',
10341   'value' => 's:1:"0";',
10342 ))
10343 ->values(array(
10344   'name' => 'user_registration_help',
10345   'language' => 'fr',
10346   'value' => 's:0:"";',
10347 ))
10348 ->values(array(
10349   'name' => 'user_signatures',
10350   'language' => 'fr',
10351   'value' => 's:1:"1";',
10352 ))
10353 ->values(array(
10354   'name' => 'anonymous',
10355   'language' => 'zu',
10356   'value' => 's:5:"Guest";',
10357 ))
10358 ->values(array(
10359   'name' => 'error_level',
10360   'language' => 'zu',
10361   'value' => 's:1:"1";',
10362 ))
10363 ->values(array(
10364   'name' => 'site_403',
10365   'language' => 'zu',
10366   'value' => 's:7:"zu-user";',
10367 ))
10368 ->values(array(
10369   'name' => 'site_404',
10370   'language' => 'zu',
10371   'value' => 's:17:"zu-page-not-found";',
10372 ))
10373 ->values(array(
10374   'name' => 'site_footer',
10375   'language' => 'zu',
10376   'value' => 's:0:"";',
10377 ))
10378 ->values(array(
10379   'name' => 'site_frontpage',
10380   'language' => 'zu',
10381   'value' => 's:4:"node";',
10382 ))
10383 ->values(array(
10384   'name' => 'site_mail',
10385   'language' => 'zu',
10386   'value' => 's:21:"site_mail@example.com";',
10387 ))
10388 ->values(array(
10389   'name' => 'site_mission',
10390   'language' => 'zu',
10391   'value' => 's:0:"";',
10392 ))
10393 ->values(array(
10394   'name' => 'site_name',
10395   'language' => 'zu',
10396   'value' => 's:14:"zu - site_name";',
10397 ))
10398 ->values(array(
10399   'name' => 'site_slogan',
10400   'language' => 'zu',
10401   'value' => 's:13:"Migrate rocks";',
10402 ))
10403 ->values(array(
10404   'name' => 'user_email_verification',
10405   'language' => 'zu',
10406   'value' => 'i:0;',
10407 ))
10408 ->values(array(
10409   'name' => 'user_mail_password_reset_body',
10410   'language' => 'zu',
10411   '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.\";",
10412 ))
10413 ->values(array(
10414   'name' => 'user_mail_password_reset_subject',
10415   'language' => 'zu',
10416   'value' => 's:52:"Replacement login information for !username at !site";',
10417 ))
10418 ->values(array(
10419   'name' => 'user_mail_register_admin_created_body',
10420   'language' => 'zu',
10421   '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\";",
10422 ))
10423 ->values(array(
10424   'name' => 'user_mail_register_admin_created_subject',
10425   'language' => 'zu',
10426   'value' => 's:57:"zu - An administrator created an account for you at !site";',
10427 ))
10428 ->values(array(
10429   'name' => 'user_mail_register_no_approval_required_body',
10430   'language' => 'zu',
10431   '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\";",
10432 ))
10433 ->values(array(
10434   'name' => 'user_mail_register_no_approval_required_subject',
10435   'language' => 'zu',
10436   'value' => 's:38:"Account details for !username at !site";',
10437 ))
10438 ->values(array(
10439   'name' => 'user_mail_register_pending_approval_body',
10440   'language' => 'zu',
10441   '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\";",
10442 ))
10443 ->values(array(
10444   'name' => 'user_mail_register_pending_approval_subject',
10445   'language' => 'zu',
10446   'value' => 's:63:"Account details for !username at !site (pending admin approval)";',
10447 ))
10448 ->values(array(
10449   'name' => 'user_mail_status_activated_body',
10450   'language' => 'zu',
10451   '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\";",
10452 ))
10453 ->values(array(
10454   'name' => 'user_mail_status_activated_notify',
10455   'language' => 'zu',
10456   'value' => 'i:0;',
10457 ))
10458 ->values(array(
10459   'name' => 'user_mail_status_activated_subject',
10460   'language' => 'zu',
10461   'value' => 's:49:"Account details for !username at !site (approved)";',
10462 ))
10463 ->values(array(
10464   'name' => 'user_mail_status_blocked_body',
10465   'language' => 'zu',
10466   'value' => "s:53:\"!username,\r\n\r\nYour account on !site has been blocked.\";",
10467 ))
10468 ->values(array(
10469   'name' => 'user_mail_status_blocked_notify',
10470   'language' => 'zu',
10471   'value' => 'i:1;',
10472 ))
10473 ->values(array(
10474   'name' => 'user_mail_status_blocked_subject',
10475   'language' => 'zu',
10476   'value' => 's:48:"Account details for !username at !site (blocked)";',
10477 ))
10478 ->values(array(
10479   'name' => 'user_mail_status_deleted_body',
10480   'language' => 'zu',
10481   'value' => "s:53:\"!username,\r\n\r\nYour account on !site has been deleted.\";",
10482 ))
10483 ->values(array(
10484   'name' => 'user_mail_status_deleted_notify',
10485   'language' => 'zu',
10486   'value' => 'i:0;',
10487 ))
10488 ->values(array(
10489   'name' => 'user_mail_status_deleted_subject',
10490   'language' => 'zu',
10491   'value' => 's:48:"Account details for !username at !site (deleted)";',
10492 ))
10493 ->values(array(
10494   'name' => 'user_pictures',
10495   'language' => 'zu',
10496   'value' => 's:1:"0";',
10497 ))
10498 ->values(array(
10499   'name' => 'user_picture_default',
10500   'language' => 'zu',
10501   'value' => 's:0:"";',
10502 ))
10503 ->values(array(
10504   'name' => 'user_picture_dimensions',
10505   'language' => 'zu',
10506   'value' => 's:5:"85x85";',
10507 ))
10508 ->values(array(
10509   'name' => 'user_picture_file_size',
10510   'language' => 'zu',
10511   'value' => 's:2:"30";',
10512 ))
10513 ->values(array(
10514   'name' => 'user_picture_guidelines',
10515   'language' => 'zu',
10516   'value' => 's:0:"";',
10517 ))
10518 ->values(array(
10519   'name' => 'user_picture_path',
10520   'language' => 'zu',
10521   'value' => 's:8:"pictures";',
10522 ))
10523 ->values(array(
10524   'name' => 'user_register',
10525   'language' => 'zu',
10526   'value' => 's:1:"0";',
10527 ))
10528 ->values(array(
10529   'name' => 'user_registration_help',
10530   'language' => 'zu',
10531   'value' => 's:0:"";',
10532 ))
10533 ->values(array(
10534   'name' => 'user_signatures',
10535   'language' => 'zu',
10536   'value' => 's:1:"1";',
10537 ))
10538 ->execute();
10539
10540 $connection->schema()->createTable('imagecache_action', array(
10541   'fields' => array(
10542     'actionid' => array(
10543       'type' => 'serial',
10544       'not null' => TRUE,
10545       'size' => 'normal',
10546       'unsigned' => TRUE,
10547     ),
10548     'presetid' => array(
10549       'type' => 'int',
10550       'not null' => TRUE,
10551       'size' => 'normal',
10552       'default' => '0',
10553       'unsigned' => TRUE,
10554     ),
10555     'weight' => array(
10556       'type' => 'int',
10557       'not null' => TRUE,
10558       'size' => 'normal',
10559       'default' => '0',
10560     ),
10561     'module' => array(
10562       'type' => 'varchar',
10563       'not null' => TRUE,
10564       'length' => '255',
10565     ),
10566     'action' => array(
10567       'type' => 'varchar',
10568       'not null' => TRUE,
10569       'length' => '255',
10570     ),
10571     'data' => array(
10572       'type' => 'text',
10573       'not null' => TRUE,
10574       'size' => 'normal',
10575     ),
10576   ),
10577   'primary key' => array(
10578     'actionid',
10579   ),
10580   'mysql_character_set' => 'utf8',
10581 ));
10582
10583 $connection->insert('imagecache_action')
10584 ->fields(array(
10585   'actionid',
10586   'presetid',
10587   'weight',
10588   'module',
10589   'action',
10590   'data',
10591 ))
10592 ->values(array(
10593   'actionid' => '3',
10594   'presetid' => '1',
10595   'weight' => '0',
10596   'module' => 'imagecache',
10597   'action' => 'imagecache_scale_and_crop',
10598   'data' => 'a:2:{s:5:"width";s:4:"100%";s:6:"height";s:4:"100%";}',
10599 ))
10600 ->values(array(
10601   'actionid' => '4',
10602   'presetid' => '2',
10603   'weight' => '0',
10604   'module' => 'imagecache',
10605   'action' => 'imagecache_crop',
10606   '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";}',
10607 ))
10608 ->values(array(
10609   'actionid' => '5',
10610   'presetid' => '2',
10611   'weight' => '0',
10612   'module' => 'imagecache',
10613   'action' => 'imagecache_resize',
10614   'data' => 'a:2:{s:5:"width";s:3:"55%";s:6:"height";s:3:"55%";}',
10615 ))
10616 ->values(array(
10617   'actionid' => '6',
10618   'presetid' => '2',
10619   'weight' => '0',
10620   'module' => 'imagecache',
10621   'action' => 'imagecache_rotate',
10622   'data' => 'a:3:{s:7:"degrees";s:2:"55";s:6:"random";i:0;s:7:"bgcolor";s:0:"";}',
10623 ))
10624 ->execute();
10625
10626 $connection->schema()->createTable('imagecache_preset', array(
10627   'fields' => array(
10628     'presetid' => array(
10629       'type' => 'serial',
10630       'not null' => TRUE,
10631       'size' => 'normal',
10632       'unsigned' => TRUE,
10633     ),
10634     'presetname' => array(
10635       'type' => 'varchar',
10636       'not null' => TRUE,
10637       'length' => '255',
10638     ),
10639   ),
10640   'primary key' => array(
10641     'presetid',
10642   ),
10643   'mysql_character_set' => 'utf8',
10644 ));
10645
10646 $connection->insert('imagecache_preset')
10647 ->fields(array(
10648   'presetid',
10649   'presetname',
10650 ))
10651 ->values(array(
10652   'presetid' => '1',
10653   'presetname' => 'slackjaw_boys',
10654 ))
10655 ->values(array(
10656   'presetid' => '2',
10657   'presetname' => 'big_blue_cheese',
10658 ))
10659 ->execute();
10660
10661 $connection->schema()->createTable('languages', array(
10662   'fields' => array(
10663     'language' => array(
10664       'type' => 'varchar',
10665       'not null' => TRUE,
10666       'length' => '12',
10667       'default' => '',
10668     ),
10669     'name' => array(
10670       'type' => 'varchar',
10671       'not null' => TRUE,
10672       'length' => '64',
10673       'default' => '',
10674     ),
10675     'native' => array(
10676       'type' => 'varchar',
10677       'not null' => TRUE,
10678       'length' => '64',
10679       'default' => '',
10680     ),
10681     'direction' => array(
10682       'type' => 'int',
10683       'not null' => TRUE,
10684       'size' => 'normal',
10685       'default' => '0',
10686     ),
10687     'enabled' => array(
10688       'type' => 'int',
10689       'not null' => TRUE,
10690       'size' => 'normal',
10691       'default' => '0',
10692     ),
10693     'plurals' => array(
10694       'type' => 'int',
10695       'not null' => TRUE,
10696       'size' => 'normal',
10697       'default' => '0',
10698     ),
10699     'formula' => array(
10700       'type' => 'varchar',
10701       'not null' => TRUE,
10702       'length' => '128',
10703       'default' => '',
10704     ),
10705     'domain' => array(
10706       'type' => 'varchar',
10707       'not null' => TRUE,
10708       'length' => '128',
10709       'default' => '',
10710     ),
10711     'prefix' => array(
10712       'type' => 'varchar',
10713       'not null' => TRUE,
10714       'length' => '128',
10715       'default' => '',
10716     ),
10717     'weight' => array(
10718       'type' => 'int',
10719       'not null' => TRUE,
10720       'size' => 'normal',
10721       'default' => '0',
10722     ),
10723     'javascript' => array(
10724       'type' => 'varchar',
10725       'not null' => TRUE,
10726       'length' => '32',
10727       'default' => '',
10728     ),
10729   ),
10730   'primary key' => array(
10731     'language',
10732   ),
10733   'indexes' => array(
10734     'list' => array(
10735       'weight',
10736       'name',
10737     ),
10738   ),
10739   'mysql_character_set' => 'utf8',
10740 ));
10741
10742 $connection->insert('languages')
10743 ->fields(array(
10744   'language',
10745   'name',
10746   'native',
10747   'direction',
10748   'enabled',
10749   'plurals',
10750   'formula',
10751   'domain',
10752   'prefix',
10753   'weight',
10754   'javascript',
10755 ))
10756 ->values(array(
10757   'language' => 'en',
10758   'name' => 'English',
10759   'native' => 'English',
10760   'direction' => '0',
10761   'enabled' => '1',
10762   'plurals' => '0',
10763   'formula' => '',
10764   'domain' => '',
10765   'prefix' => '',
10766   'weight' => '0',
10767   'javascript' => '',
10768 ))
10769 ->values(array(
10770   'language' => 'fr',
10771   'name' => 'French',
10772   'native' => 'Français',
10773   'direction' => '0',
10774   'enabled' => '1',
10775   'plurals' => '2',
10776   'formula' => '($n>1)',
10777   'domain' => 'http://fr.drupal.org',
10778   'prefix' => 'fr',
10779   'weight' => '0',
10780   'javascript' => '047746d30d76aa44a54db9923c7c5fb0',
10781 ))
10782 ->values(array(
10783   'language' => 'zu',
10784   'name' => 'Zulu',
10785   'native' => 'isiZulu',
10786   'direction' => '0',
10787   'enabled' => '1',
10788   'plurals' => '0',
10789   'formula' => '',
10790   'domain' => 'http://zu.drupal.org',
10791   'prefix' => 'zu',
10792   'weight' => '0',
10793   'javascript' => '',
10794 ))
10795 ->execute();
10796
10797 $connection->schema()->createTable('locales_source', array(
10798   'fields' => array(
10799     'lid' => array(
10800       'type' => 'serial',
10801       'not null' => TRUE,
10802       'size' => 'normal',
10803     ),
10804     'location' => array(
10805       'type' => 'varchar',
10806       'not null' => TRUE,
10807       'length' => '255',
10808       'default' => '',
10809     ),
10810     'textgroup' => array(
10811       'type' => 'varchar',
10812       'not null' => TRUE,
10813       'length' => '255',
10814       'default' => 'default',
10815     ),
10816     'source' => array(
10817       'type' => 'blob',
10818       'not null' => TRUE,
10819       'size' => 'normal',
10820     ),
10821     'version' => array(
10822       'type' => 'varchar',
10823       'not null' => TRUE,
10824       'length' => '20',
10825       'default' => 'none',
10826     ),
10827   ),
10828   'primary key' => array(
10829     'lid',
10830   ),
10831   'indexes' => array(
10832     'source' => array(
10833       array(
10834         'source',
10835         '30',
10836       ),
10837     ),
10838     'textgroup_location' => array(
10839       array(
10840         'textgroup',
10841         '30',
10842       ),
10843       array(
10844         'location',
10845         '191',
10846       ),
10847     ),
10848   ),
10849   'mysql_character_set' => 'utf8',
10850 ));
10851
10852 $connection->insert('locales_source')
10853 ->fields(array(
10854   'lid',
10855   'location',
10856   'textgroup',
10857   'source',
10858   'version',
10859 ))
10860 ->values(array(
10861   'lid' => '1',
10862   'location' => 'misc/drupal.js',
10863   'textgroup' => 'default',
10864   'source' => 'Unspecified error',
10865   'version' => 'none',
10866 ))
10867 ->values(array(
10868   'lid' => '2',
10869   'location' => 'misc/drupal.js',
10870   'textgroup' => 'default',
10871   'source' => 'An error occurred. \n@uri\n@text',
10872   'version' => 'none',
10873 ))
10874 ->values(array(
10875   'lid' => '3',
10876   'location' => 'misc/drupal.js',
10877   'textgroup' => 'default',
10878   'source' => 'An error occurred. \n@uri\n(no information available).',
10879   'version' => 'none',
10880 ))
10881 ->values(array(
10882   'lid' => '4',
10883   'location' => 'misc/drupal.js',
10884   'textgroup' => 'default',
10885   'source' => 'An HTTP error @status occurred. \n@uri',
10886   'version' => 'none',
10887 ))
10888 ->values(array(
10889   'lid' => '5',
10890   'location' => 'content.module:21',
10891   'textgroup' => 'default',
10892   '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.)',
10893   'version' => 'none',
10894 ))
10895 ->values(array(
10896   'lid' => '6',
10897   'location' => 'content.module:22',
10898   'textgroup' => 'default',
10899   '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.',
10900   'version' => 'none',
10901 ))
10902 ->values(array(
10903   'lid' => '7',
10904   'location' => 'content.module:23',
10905   'textgroup' => 'default',
10906   '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:',
10907   'version' => 'none',
10908 ))
10909 ->values(array(
10910   'lid' => '8',
10911   'location' => 'content.module:25',
10912   'textgroup' => 'default',
10913   '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.',
10914   'version' => 'none',
10915 ))
10916 ->values(array(
10917   'lid' => '9',
10918   'location' => 'content.module:26',
10919   'textgroup' => 'default',
10920   '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.",
10921   'version' => 'none',
10922 ))
10923 ->values(array(
10924   'lid' => '10',
10925   'location' => 'content.module:27',
10926   'textgroup' => 'default',
10927   '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).',
10928   'version' => 'none',
10929 ))
10930 ->values(array(
10931   'lid' => '11',
10932   'location' => 'content.module:28',
10933   'textgroup' => 'default',
10934   '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.",
10935   'version' => 'none',
10936 ))
10937 ->values(array(
10938   'lid' => '12',
10939   'location' => 'content.module:29',
10940   'textgroup' => 'default',
10941   '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.',
10942   'version' => 'none',
10943 ))
10944 ->values(array(
10945   'lid' => '13',
10946   'location' => 'content.module:31',
10947   'textgroup' => 'default',
10948   '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>.',
10949   'version' => 'none',
10950 ))
10951 ->values(array(
10952   'lid' => '14',
10953   'location' => 'theme/theme.inc:111',
10954   'textgroup' => 'default',
10955   'source' => "Configure how this content type's fields and field labels should be displayed when it's viewed in teaser and full-page mode.",
10956   'version' => 'none',
10957 ))
10958 ->values(array(
10959   'lid' => '15',
10960   'location' => 'theme/theme.inc:114',
10961   'textgroup' => 'default',
10962   'source' => "Configure how this content type's fields should be displayed when it's rendered in the following contexts.",
10963   'version' => 'none',
10964 ))
10965 ->values(array(
10966   'lid' => '16',
10967   'location' => 'content.module:48',
10968   'textgroup' => 'default',
10969   'source' => 'Control the order of fields in the input form.',
10970   'version' => 'none',
10971 ))
10972 ->values(array(
10973   'lid' => '17',
10974   'location' => 'content.module:492',
10975   'textgroup' => 'default',
10976   'source' => 'This field is required.',
10977   'version' => '6.38-dev',
10978 ))
10979 ->values(array(
10980   'lid' => '18',
10981   'location' => 'content.module:496',
10982   'textgroup' => 'default',
10983   'source' => '!title: !required',
10984   'version' => '6.38-dev',
10985 ))
10986 ->values(array(
10987   'lid' => '19',
10988   'location' => 'content.module:499,  modules/content_multigroup/content_multigroup.module:903',
10989   'textgroup' => 'default',
10990   'source' => 'Order',
10991   'version' => 'none',
10992 ))
10993 ->values(array(
10994   'lid' => '20',
10995   'location' => 'content.module:1640',
10996   'textgroup' => 'default',
10997   'source' => 'RSS Item',
10998   'version' => 'none',
10999 ))
11000 ->values(array(
11001   'lid' => '21',
11002   'location' => 'content.module:1883',
11003   'textgroup' => 'default',
11004   'source' => 'Search Index',
11005   'version' => 'none',
11006 ))
11007 ->values(array(
11008   'lid' => '22',
11009   'location' => 'content.module:1887',
11010   'textgroup' => 'default',
11011   'source' => 'Search Result',
11012   'version' => 'none',
11013 ))
11014 ->values(array(
11015   'lid' => '23',
11016   'location' => 'content.module:2362',
11017   'textgroup' => 'default',
11018   'source' => 'Language',
11019   'version' => '6.38-dev',
11020 ))
11021 ->values(array(
11022   'lid' => '24',
11023   'location' => 'content.module:2376',
11024   'textgroup' => 'default',
11025   'source' => 'Taxonomy',
11026   'version' => '6.38-dev',
11027 ))
11028 ->values(array(
11029   'lid' => '25',
11030   'location' => 'content.module:2407',
11031   'textgroup' => 'default',
11032   'source' => 'File attachments',
11033   'version' => '6.38-dev',
11034 ))
11035 ->values(array(
11036   'lid' => '26',
11037   'location' => 'content.module:595',
11038   'textgroup' => 'default',
11039   'source' => 'Updating field type %type with module %module.',
11040   'version' => 'none',
11041 ))
11042 ->values(array(
11043   'lid' => '27',
11044   'location' => 'content.module:602',
11045   'textgroup' => 'default',
11046   'source' => 'Updating widget type %type with module %module.',
11047   'version' => 'none',
11048 ))
11049 ->values(array(
11050   'lid' => '28',
11051   'location' => 'content.module:60',
11052   'textgroup' => 'default',
11053   'source' => 'Use PHP input for field settings (dangerous - grant with care)',
11054   'version' => '6.38-dev',
11055 ))
11056 ->values(array(
11057   'lid' => '29',
11058   'location' => 'content.module:101',
11059   'textgroup' => 'default',
11060   'source' => 'Manage fields',
11061   'version' => 'none',
11062 ))
11063 ->values(array(
11064   'lid' => '30',
11065   'location' => 'content.module:110',
11066   'textgroup' => 'default',
11067   'source' => 'Display fields',
11068   'version' => 'none',
11069 ))
11070 ->values(array(
11071   'lid' => '31',
11072   'location' => 'content.module:143',
11073   'textgroup' => 'default',
11074   'source' => 'General',
11075   'version' => 'none',
11076 ))
11077 ->values(array(
11078   'lid' => '32',
11079   'location' => 'content.module:149',
11080   'textgroup' => 'default',
11081   'source' => 'Advanced',
11082   'version' => 'none',
11083 ))
11084 ->values(array(
11085   'lid' => '33',
11086   'location' => 'content.module:141',
11087   'textgroup' => 'default',
11088   'source' => 'Remove field',
11089   'version' => '6.38-dev',
11090 ))
11091 ->values(array(
11092   'lid' => '34',
11093   'location' => 'content.info:0,  includes/content.rules.inc:19;212,  includes/views/content.views.inc:180;261',
11094   'textgroup' => 'default',
11095   'source' => 'Content',
11096   'version' => '6.38-dev',
11097 ))
11098 ->values(array(
11099   'lid' => '35',
11100   'location' => 'content.info:0',
11101   'textgroup' => 'default',
11102   'source' => 'Allows administrators to define new content types.',
11103   'version' => '6.38-dev',
11104 ))
11105 ->values(array(
11106   'lid' => '36',
11107   'location' => 'content.info:0,  modules/content_copy/content_copy.info:0,  modules/content_permissions/content_permissions.info:0,  modules/fieldgroup/fieldgroup.info:0',
11108   'textgroup' => 'default',
11109   'source' => 'CCK',
11110   'version' => '6.38-dev',
11111 ))
11112 ->values(array(
11113   'lid' => '37',
11114   'location' => 'modules/text/text.module:41,  modules/text/text.info:0',
11115   'textgroup' => 'default',
11116   'source' => 'Text',
11117   'version' => '6.38-dev',
11118 ))
11119 ->values(array(
11120   'lid' => '38',
11121   'location' => 'examples/example_field.php:178',
11122   'textgroup' => 'default',
11123   '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.',
11124   'version' => 'none',
11125 ))
11126 ->values(array(
11127   'lid' => '39',
11128   'location' => 'examples/example_field.php:484',
11129   'textgroup' => 'default',
11130   'source' => 'Text area',
11131   'version' => 'none',
11132 ))
11133 ->values(array(
11134   'lid' => '40',
11135   'location' => 'includes/content.admin.inc:171;197;895,  modules/fieldgroup/fieldgroup.module:209',
11136   'textgroup' => 'default',
11137   'source' => 'Remove',
11138   'version' => 'none',
11139 ))
11140 ->values(array(
11141   'lid' => '41',
11142   'location' => 'content.module:1854',
11143   'textgroup' => 'default',
11144   'source' => 'Basic',
11145   'version' => '6.38-dev',
11146 ))
11147 ->values(array(
11148   'lid' => '42',
11149   'location' => 'content.module:1857,  modules/nodereference/nodereference.module:268',
11150   'textgroup' => 'default',
11151   'source' => 'Teaser',
11152   'version' => '6.38-dev',
11153 ))
11154 ->values(array(
11155   'lid' => '43',
11156   'location' => 'content.module:1861,  modules/nodereference/nodereference.module:263',
11157   'textgroup' => 'default',
11158   'source' => 'Full node',
11159   'version' => '6.38-dev',
11160 ))
11161 ->values(array(
11162   'lid' => '44',
11163   'location' => 'content.module:1867;1870',
11164   'textgroup' => 'default',
11165   'source' => 'RSS',
11166   'version' => '6.38-dev',
11167 ))
11168 ->values(array(
11169   'lid' => '45',
11170   'location' => 'content.module:1880',
11171   'textgroup' => 'default',
11172   'source' => 'Search',
11173   'version' => '6.38-dev',
11174 ))
11175 ->values(array(
11176   'lid' => '46',
11177   'location' => 'content.module:2348;2355',
11178   'textgroup' => 'default',
11179   'source' => 'Node module form.',
11180   'version' => '6.38-dev',
11181 ))
11182 ->values(array(
11183   'lid' => '47',
11184   'location' => 'content.module:2363',
11185   'textgroup' => 'default',
11186   'source' => 'Locale module form.',
11187   'version' => '6.38-dev',
11188 ))
11189 ->values(array(
11190   'lid' => '48',
11191   'location' => 'content.module:2369',
11192   'textgroup' => 'default',
11193   'source' => 'Menu settings',
11194   'version' => '6.38-dev',
11195 ))
11196 ->values(array(
11197   'lid' => '49',
11198   'location' => 'content.module:2370',
11199   'textgroup' => 'default',
11200   'source' => 'Menu module form.',
11201   'version' => '6.38-dev',
11202 ))
11203 ->values(array(
11204   'lid' => '50',
11205   'location' => 'content.module:2377',
11206   'textgroup' => 'default',
11207   'source' => 'Taxonomy module form.',
11208   'version' => '6.38-dev',
11209 ))
11210 ->values(array(
11211   'lid' => '51',
11212   'location' => 'content.module:2383',
11213   'textgroup' => 'default',
11214   'source' => 'Book',
11215   'version' => '6.38-dev',
11216 ))
11217 ->values(array(
11218   'lid' => '52',
11219   'location' => 'content.module:2384',
11220   'textgroup' => 'default',
11221   'source' => 'Book module form.',
11222   'version' => '6.38-dev',
11223 ))
11224 ->values(array(
11225   'lid' => '53',
11226   'location' => 'content.module:2390',
11227   'textgroup' => 'default',
11228   'source' => 'Poll title',
11229   'version' => 'none',
11230 ))
11231 ->values(array(
11232   'lid' => '54',
11233   'location' => 'content.module:2391',
11234   'textgroup' => 'default',
11235   'source' => 'Poll module title.',
11236   'version' => 'none',
11237 ))
11238 ->values(array(
11239   'lid' => '55',
11240   'location' => 'content.module:2396',
11241   'textgroup' => 'default',
11242   'source' => 'Poll choices',
11243   'version' => 'none',
11244 ))
11245 ->values(array(
11246   'lid' => '56',
11247   'location' => 'content.module:2397',
11248   'textgroup' => 'default',
11249   'source' => 'Poll module choices.',
11250   'version' => 'none',
11251 ))
11252 ->values(array(
11253   'lid' => '57',
11254   'location' => 'content.module:2400',
11255   'textgroup' => 'default',
11256   'source' => 'Poll settings',
11257   'version' => 'none',
11258 ))
11259 ->values(array(
11260   'lid' => '58',
11261   'location' => 'content.module:2401',
11262   'textgroup' => 'default',
11263   'source' => 'Poll module settings.',
11264   'version' => 'none',
11265 ))
11266 ->values(array(
11267   'lid' => '59',
11268   'location' => 'content.module:2408',
11269   'textgroup' => 'default',
11270   'source' => 'Upload module form.',
11271   'version' => '6.38-dev',
11272 ))
11273 ->values(array(
11274   'lid' => '60',
11275   'location' => 'content.module:595;602;0,  includes/content.crud.inc:589;633',
11276   'textgroup' => 'default',
11277   'source' => 'content',
11278   'version' => 'none',
11279 ))
11280 ->values(array(
11281   'lid' => '61',
11282   'location' => 'content.module:79',
11283   'textgroup' => 'default',
11284   'source' => 'Fields',
11285   'version' => 'none',
11286 ))
11287 ->values(array(
11288   'lid' => '62',
11289   'location' => 'content.install:236',
11290   'textgroup' => 'default',
11291   '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.",
11292   'version' => 'none',
11293 ))
11294 ->values(array(
11295   'lid' => '63',
11296   'location' => 'content.install:239',
11297   'textgroup' => 'default',
11298   '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.',
11299   'version' => 'none',
11300 ))
11301 ->values(array(
11302   'lid' => '64',
11303   'location' => 'content.install:244',
11304   'textgroup' => 'default',
11305   '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.',
11306   'version' => 'none',
11307 ))
11308 ->values(array(
11309   'lid' => '65',
11310   'location' => 'content.install:251',
11311   'textgroup' => 'default',
11312   'source' => 'Some updates are still pending. Please return to <a href="@update-php">update.php</a> and run the remaining updates.',
11313   'version' => 'none',
11314 ))
11315 ->values(array(
11316   'lid' => '66',
11317   'location' => '(duplicate) content.install:10',
11318   'textgroup' => 'default',
11319   'source' => 'CCK - No Views integration',
11320   'version' => 'none',
11321 ))
11322 ->values(array(
11323   'lid' => '67',
11324   'location' => '(duplicate) content.install:11',
11325   'textgroup' => 'default',
11326   'source' => 'CCK integration with Views module requires Views 6.x-2.0-rc2 or greater.',
11327   'version' => 'none',
11328 ))
11329 ->values(array(
11330   'lid' => '68',
11331   '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',
11332   'textgroup' => 'default',
11333   'source' => 'Name',
11334   'version' => '6.38-dev',
11335 ))
11336 ->values(array(
11337   'lid' => '69',
11338   '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',
11339   'textgroup' => 'default',
11340   'source' => 'Type',
11341   'version' => '6.38-dev',
11342 ))
11343 ->values(array(
11344   'lid' => '70',
11345   'location' => 'includes/content.admin.inc:16,  modules/fieldgroup/fieldgroup.module:158',
11346   'textgroup' => 'default',
11347   'source' => 'Description',
11348   'version' => '6.38-dev',
11349 ))
11350 ->values(array(
11351   'lid' => '71',
11352   'location' => 'includes/content.admin.inc:16,  theme/content-admin-field-overview-form.tpl.php:14',
11353   'textgroup' => 'default',
11354   'source' => 'Operations',
11355   'version' => '6.38-dev',
11356 ))
11357 ->values(array(
11358   'lid' => '72',
11359   'location' => 'includes/content.admin.inc:30',
11360   'textgroup' => 'default',
11361   'source' => 'edit',
11362   'version' => '6.38-dev',
11363 ))
11364 ->values(array(
11365   'lid' => '73',
11366   'location' => 'includes/content.admin.inc:33',
11367   'textgroup' => 'default',
11368   'source' => 'manage fields',
11369   'version' => 'none',
11370 ))
11371 ->values(array(
11372   'lid' => '74',
11373   'location' => 'includes/content.admin.inc:36',
11374   'textgroup' => 'default',
11375   'source' => 'delete',
11376   'version' => '6.38-dev',
11377 ))
11378 ->values(array(
11379   'lid' => '75',
11380   'location' => 'includes/content.admin.inc:47',
11381   'textgroup' => 'default',
11382   'source' => 'No content types available.',
11383   'version' => 'none',
11384 ))
11385 ->values(array(
11386   'lid' => '76',
11387   'location' => 'includes/content.admin.inc:54',
11388   'textgroup' => 'default',
11389   'source' => '» Add a new content type',
11390   'version' => 'none',
11391 ))
11392 ->values(array(
11393   'lid' => '77',
11394   'location' => 'includes/content.admin.inc:67;796;991',
11395   'textgroup' => 'default',
11396   'source' => 'Field name',
11397   'version' => 'none',
11398 ))
11399 ->values(array(
11400   'lid' => '78',
11401   'location' => 'includes/content.admin.inc:67;811;997',
11402   'textgroup' => 'default',
11403   'source' => 'Field type',
11404   'version' => 'none',
11405 ))
11406 ->values(array(
11407   'lid' => '79',
11408   'location' => 'includes/content.admin.inc:67',
11409   'textgroup' => 'default',
11410   'source' => 'Used in',
11411   'version' => 'none',
11412 ))
11413 ->values(array(
11414   'lid' => '80',
11415   'location' => 'includes/content.admin.inc:71',
11416   'textgroup' => 'default',
11417   'source' => '@field_name (Locked)',
11418   'version' => 'none',
11419 ))
11420 ->values(array(
11421   'lid' => '81',
11422   'location' => 'includes/content.admin.inc:90',
11423   'textgroup' => 'default',
11424   'source' => 'No fields have been defined for any content type yet.',
11425   'version' => 'none',
11426 ))
11427 ->values(array(
11428   'lid' => '82',
11429   'location' => 'not literally, English needs work,  includes/content.admin.inc:106,  fuzzy',
11430   'textgroup' => 'default',
11431   'source' => 'This content type has inactive fields. Inactive fields are not included in lists of available fields until their modules are enabled.',
11432   'version' => 'none',
11433 ))
11434 ->values(array(
11435   'lid' => '83',
11436   'location' => 'includes/content.admin.inc:108',
11437   'textgroup' => 'default',
11438   'source' => '!field (!field_name) is an inactive !field_type field that uses a !widget_type widget.',
11439   'version' => 'none',
11440 ))
11441 ->values(array(
11442   'lid' => '84',
11443   'location' => 'includes/content.admin.inc:170;196',
11444   'textgroup' => 'default',
11445   'source' => 'Configure',
11446   'version' => '6.38-dev',
11447 ))
11448 ->values(array(
11449   'lid' => '85',
11450   'location' => 'Schreibgeschützt,  includes/content.admin.inc:181',
11451   'textgroup' => 'default',
11452   'source' => 'Locked',
11453   'version' => 'none',
11454 ))
11455 ->values(array(
11456   'lid' => '86',
11457   'location' => 'includes/content.admin.inc:237',
11458   'textgroup' => 'default',
11459   'source' => '- Select a field type -',
11460   'version' => 'none',
11461 ))
11462 ->values(array(
11463   'lid' => '87',
11464   'location' => 'includes/content.admin.inc:238',
11465   'textgroup' => 'default',
11466   'source' => '- Select a widget -',
11467   'version' => 'none',
11468 ))
11469 ->values(array(
11470   'lid' => '88',
11471   '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',
11472   'textgroup' => 'default',
11473   'source' => 'Label',
11474   'version' => 'none',
11475 ))
11476 ->values(array(
11477   'lid' => '89',
11478   'location' => 'includes/content.admin.inc:253',
11479   'textgroup' => 'default',
11480   'source' => 'Field name (a-z, 0-9, _)',
11481   'version' => 'none',
11482 ))
11483 ->values(array(
11484   'lid' => '90',
11485   'location' => 'includes/content.admin.inc:258',
11486   'textgroup' => 'default',
11487   'source' => 'Type of data to store.',
11488   'version' => 'none',
11489 ))
11490 ->values(array(
11491   'lid' => '91',
11492   'location' => 'includes/content.admin.inc:263;295',
11493   'textgroup' => 'default',
11494   'source' => 'Form element to edit the data.',
11495   'version' => 'none',
11496 ))
11497 ->values(array(
11498   'lid' => '92',
11499   'location' => 'includes/content.admin.inc:279',
11500   'textgroup' => 'default',
11501   'source' => '- Select an existing field -',
11502   'version' => 'none',
11503 ))
11504 ->values(array(
11505   'lid' => '93',
11506   'location' => 'includes/content.admin.inc:290',
11507   'textgroup' => 'default',
11508   'source' => 'Field to share',
11509   'version' => 'none',
11510 ))
11511 ->values(array(
11512   'lid' => '94',
11513   'location' => 'includes/content.admin.inc:324',
11514   'textgroup' => 'default',
11515   'source' => 'Group name (a-z, 0-9, _)',
11516   'version' => 'none',
11517 ))
11518 ->values(array(
11519   'lid' => '95',
11520   'location' => 'includes/content.admin.inc:352;677,  modules/fieldgroup/fieldgroup.module:177;341',
11521   'textgroup' => 'default',
11522   'source' => 'Save',
11523   'version' => 'none',
11524 ))
11525 ->values(array(
11526   'lid' => '96',
11527   'location' => 'includes/content.admin.inc:373',
11528   'textgroup' => 'default',
11529   'source' => 'Add new field: you need to provide a label.',
11530   'version' => 'none',
11531 ))
11532 ->values(array(
11533   'lid' => '97',
11534   'location' => 'includes/content.admin.inc:378',
11535   'textgroup' => 'default',
11536   'source' => 'Add new field: you need to provide a field name.',
11537   'version' => 'none',
11538 ))
11539 ->values(array(
11540   'lid' => '98',
11541   'location' => 'includes/content.admin.inc:392',
11542   'textgroup' => 'default',
11543   'source' => 'Add new field: the field name %field_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
11544   'version' => 'none',
11545 ))
11546 ->values(array(
11547   'lid' => '99',
11548   'location' => 'includes/content.admin.inc:395',
11549   'textgroup' => 'default',
11550   'source' => "Add new field: the field name %field_name is too long. The name is limited to 32 characters, including the 'field_' prefix.",
11551   'version' => 'none',
11552 ))
11553 ->values(array(
11554   'lid' => '100',
11555   'location' => 'includes/content.admin.inc:399',
11556   'textgroup' => 'default',
11557   'source' => "Add new field: the name 'field_instance' is a reserved name.",
11558   'version' => 'none',
11559 ))
11560 ->values(array(
11561   'lid' => '101',
11562   'location' => 'includes/content.admin.inc:411',
11563   'textgroup' => 'default',
11564   'source' => 'Add new field: the field name %field_name already exists.',
11565   'version' => 'none',
11566 ))
11567 ->values(array(
11568   'lid' => '102',
11569   'location' => 'includes/content.admin.inc:417',
11570   'textgroup' => 'default',
11571   'source' => 'Add new field: you need to select a field type.',
11572   'version' => 'none',
11573 ))
11574 ->values(array(
11575   'lid' => '103',
11576   'location' => 'includes/content.admin.inc:422',
11577   'textgroup' => 'default',
11578   'source' => 'Add new field: you need to select a widget.',
11579   'version' => 'none',
11580 ))
11581 ->values(array(
11582   'lid' => '104',
11583   'location' => 'includes/content.admin.inc:428',
11584   'textgroup' => 'default',
11585   'source' => 'Add new field: invalid widget.',
11586   'version' => 'none',
11587 ))
11588 ->values(array(
11589   'lid' => '105',
11590   'location' => 'includes/content.admin.inc:449',
11591   'textgroup' => 'default',
11592   'source' => 'Add existing field: you need to provide a label.',
11593   'version' => 'none',
11594 ))
11595 ->values(array(
11596   'lid' => '106',
11597   'location' => 'includes/content.admin.inc:454',
11598   'textgroup' => 'default',
11599   'source' => 'Add existing field: you need to select a field.',
11600   'version' => 'none',
11601 ))
11602 ->values(array(
11603   'lid' => '107',
11604   'location' => 'includes/content.admin.inc:459',
11605   'textgroup' => 'default',
11606   'source' => 'Add existing field: you need to select a widget.',
11607   'version' => 'none',
11608 ))
11609 ->values(array(
11610   'lid' => '108',
11611   'location' => 'includes/content.admin.inc:465',
11612   'textgroup' => 'default',
11613   'source' => 'Add existing field: invalid widget.',
11614   'version' => 'none',
11615 ))
11616 ->values(array(
11617   'lid' => '109',
11618   'location' => 'includes/content.admin.inc:514',
11619   'textgroup' => 'default',
11620   'source' => 'There was a problem creating field %label.',
11621   'version' => 'none',
11622 ))
11623 ->values(array(
11624   'lid' => '110',
11625   'location' => 'includes/content.admin.inc:526',
11626   'textgroup' => 'default',
11627   'source' => 'The field %label cannot be added to a content type because it is locked.',
11628   'version' => 'none',
11629 ))
11630 ->values(array(
11631   'lid' => '111',
11632   'location' => 'includes/content.admin.inc:536',
11633   'textgroup' => 'default',
11634   'source' => 'There was a problem adding field %label.',
11635   'version' => 'none',
11636 ))
11637 ->values(array(
11638   'lid' => '112',
11639   'location' => 'includes/content.admin.inc:578',
11640   'textgroup' => 'default',
11641   'source' => 'There are no fields configured for this content type. You can add new fields on the <a href="@link">Manage fields</a> page.',
11642   'version' => 'none',
11643 ))
11644 ->values(array(
11645   'lid' => '113',
11646   'location' => 'includes/content.admin.inc:585;633,  includes/panels/content_types/content_field.inc:101,  modules/content_multigroup/content_multigroup.module:352',
11647   'textgroup' => 'default',
11648   'source' => 'Above',
11649   'version' => 'none',
11650 ))
11651 ->values(array(
11652   'lid' => '114',
11653   'location' => 'includes/content.admin.inc:586,  includes/panels/content_types/content_field.inc:102',
11654   'textgroup' => 'default',
11655   'source' => 'Inline',
11656   'version' => 'none',
11657 ))
11658 ->values(array(
11659   'lid' => '115',
11660   'location' => 'includes/content.admin.inc:625;668',
11661   'textgroup' => 'default',
11662   'source' => 'Include',
11663   'version' => 'none',
11664 ))
11665 ->values(array(
11666   'lid' => '116',
11667   'location' => 'includes/content.admin.inc:625;668,  theme/content-admin-display-overview-form.tpl.php:17',
11668   'textgroup' => 'default',
11669   'source' => 'Exclude',
11670   'version' => 'none',
11671 ))
11672 ->values(array(
11673   'lid' => '117',
11674   'location' => 'includes/content.admin.inc:637',
11675   'textgroup' => 'default',
11676   'source' => 'no styling',
11677   'version' => 'none',
11678 ))
11679 ->values(array(
11680   'lid' => '118',
11681   'location' => 'includes/content.admin.inc:638',
11682   'textgroup' => 'default',
11683   'source' => 'simple',
11684   'version' => 'none',
11685 ))
11686 ->values(array(
11687   'lid' => '119',
11688   'location' => 'includes/content.admin.inc:639',
11689   'textgroup' => 'default',
11690   'source' => 'fieldset',
11691   'version' => 'none',
11692 ))
11693 ->values(array(
11694   'lid' => '120',
11695   'location' => 'includes/content.admin.inc:640',
11696   'textgroup' => 'default',
11697   'source' => 'fieldset - collapsible',
11698   'version' => 'none',
11699 ))
11700 ->values(array(
11701   'lid' => '121',
11702   'location' => 'includes/content.admin.inc:641',
11703   'textgroup' => 'default',
11704   'source' => 'fieldset - collapsed',
11705   'version' => 'none',
11706 ))
11707 ->values(array(
11708   'lid' => '122',
11709   'location' => 'includes/content.admin.inc:697',
11710   'textgroup' => 'default',
11711   'source' => 'Your settings have been saved.',
11712   'version' => 'none',
11713 ))
11714 ->values(array(
11715   'lid' => '123',
11716   'location' => 'includes/content.admin.inc:767',
11717   'textgroup' => 'default',
11718   'source' => '@type: @field (@label)',
11719   'version' => 'none',
11720 ))
11721 ->values(array(
11722   'lid' => '124',
11723   'location' => 'includes/content.admin.inc:793',
11724   'textgroup' => 'default',
11725   'source' => 'Edit basic information',
11726   'version' => 'none',
11727 ))
11728 ->values(array(
11729   'lid' => '125',
11730   'location' => 'includes/content.admin.inc:799',
11731   'textgroup' => 'default',
11732   'source' => 'The machine-readable name of the field. This name cannot be changed.',
11733   'version' => 'none',
11734 ))
11735 ->values(array(
11736   'lid' => '126',
11737   'location' => 'includes/content.admin.inc:807',
11738   'textgroup' => 'default',
11739   'source' => 'A human-readable name to be used as the label for this field in the %type content type.',
11740   'version' => 'none',
11741 ))
11742 ->values(array(
11743   'lid' => '127',
11744   'location' => 'includes/content.admin.inc:814',
11745   'textgroup' => 'default',
11746   'source' => 'The type of data you would like to store in the database with this field. This option cannot be changed.',
11747   'version' => 'none',
11748 ))
11749 ->values(array(
11750   'lid' => '128',
11751   'location' => 'includes/content.admin.inc:819;1003',
11752   'textgroup' => 'default',
11753   'source' => 'Widget type',
11754   'version' => 'none',
11755 ))
11756 ->values(array(
11757   'lid' => '129',
11758   'location' => 'includes/content.admin.inc:823',
11759   'textgroup' => 'default',
11760   'source' => 'The type of form element you would like to present to the user when creating this field in the %type content type.',
11761   'version' => 'none',
11762 ))
11763 ->values(array(
11764   'lid' => '130',
11765   'location' => 'includes/content.admin.inc:833,  includes/content.rules.inc:66',
11766   'textgroup' => 'default',
11767   'source' => 'Continue',
11768   'version' => 'none',
11769 ))
11770 ->values(array(
11771   'lid' => '131',
11772   'location' => 'includes/content.admin.inc:861',
11773   'textgroup' => 'default',
11774   'source' => 'Updated basic settings for field %label.',
11775   'version' => 'none',
11776 ))
11777 ->values(array(
11778   'lid' => '132',
11779   'location' => 'includes/content.admin.inc:865',
11780   'textgroup' => 'default',
11781   'source' => 'There was a problem updating the basic settings for field %label.',
11782   'version' => 'none',
11783 ))
11784 ->values(array(
11785   'lid' => '133',
11786   'location' => 'includes/content.admin.inc:892',
11787   'textgroup' => 'default',
11788   'source' => 'Are you sure you want to remove the field %field?',
11789   'version' => 'none',
11790 ))
11791 ->values(array(
11792   'lid' => '134',
11793   'location' => 'includes/content.admin.inc:894',
11794   'textgroup' => 'default',
11795   'source' => 'If you have any content left in this field, it will be lost. This action cannot be undone.',
11796   'version' => 'none',
11797 ))
11798 ->values(array(
11799   'lid' => '135',
11800   'location' => 'includes/content.admin.inc:895,  modules/fieldgroup/fieldgroup.module:209',
11801   'textgroup' => 'default',
11802   'source' => 'Cancel',
11803   'version' => 'none',
11804 ))
11805 ->values(array(
11806   'lid' => '136',
11807   'location' => 'includes/content.admin.inc:901',
11808   'textgroup' => 'default',
11809   'source' => 'This field is <strong>locked</strong> and cannot be removed.',
11810   'version' => 'none',
11811 ))
11812 ->values(array(
11813   'lid' => '137',
11814   'location' => 'includes/content.admin.inc:922',
11815   'textgroup' => 'default',
11816   'source' => 'Removed field %field from %type.',
11817   'version' => 'none',
11818 ))
11819 ->values(array(
11820   'lid' => '138',
11821   'location' => 'includes/content.admin.inc:927',
11822   'textgroup' => 'default',
11823   'source' => 'There was a problem deleting %field from %type.',
11824   'version' => 'none',
11825 ))
11826 ->values(array(
11827   'lid' => '139',
11828   'location' => 'includes/content.admin.inc:946',
11829   'textgroup' => 'default',
11830   'source' => 'The field %field is locked and cannot be edited.',
11831   'version' => 'none',
11832 ))
11833 ->values(array(
11834   'lid' => '140',
11835   'location' => 'includes/content.admin.inc:980',
11836   'textgroup' => 'default',
11837   'source' => '%type basic information',
11838   'version' => 'none',
11839 ))
11840 ->values(array(
11841   'lid' => '141',
11842   'location' => 'includes/content.admin.inc:1010;1189',
11843   'textgroup' => 'default',
11844   'source' => 'Change basic information',
11845   'version' => 'none',
11846 ))
11847 ->values(array(
11848   'lid' => '142',
11849   'location' => 'includes/content.admin.inc:1016',
11850   'textgroup' => 'default',
11851   'source' => '%type settings',
11852   'version' => 'none',
11853 ))
11854 ->values(array(
11855   'lid' => '143',
11856   'location' => 'includes/content.admin.inc:1017',
11857   'textgroup' => 'default',
11858   'source' => 'These settings apply only to the %field field as it appears in the %type content type.',
11859   'version' => 'none',
11860 ))
11861 ->values(array(
11862   'lid' => '144',
11863   'location' => 'includes/content.admin.inc:1031,  modules/fieldgroup/fieldgroup.module:145',
11864   'textgroup' => 'default',
11865   'source' => 'Help text',
11866   'version' => 'none',
11867 ))
11868 ->values(array(
11869   'lid' => '145',
11870   'location' => 'includes/content.admin.inc:1034',
11871   'textgroup' => 'default',
11872   'source' => 'Instructions to present to the user below this field on the editing form.<br />Allowed HTML tags: @tags',
11873   'version' => 'none',
11874 ))
11875 ->values(array(
11876   'lid' => '146',
11877   'location' => 'includes/content.admin.inc:1060',
11878   'textgroup' => 'default',
11879   'source' => 'Default value',
11880   'version' => 'none',
11881 ))
11882 ->values(array(
11883   'lid' => '147',
11884   'location' => 'includes/content.admin.inc:1081,  modules/number/number.module:123,  modules/text/text.module:86',
11885   'textgroup' => 'default',
11886   'source' => 'PHP code',
11887   'version' => 'none',
11888 ))
11889 ->values(array(
11890   'lid' => '148',
11891   'location' => 'includes/content.admin.inc:1090;1245,  includes/content.rules.inc:93',
11892   'textgroup' => 'default',
11893   'source' => "'@column' => value for @column",
11894   'version' => 'none',
11895 ))
11896 ->values(array(
11897   'lid' => '149',
11898   'location' => 'includes/content.admin.inc:1092;1247,  includes/content.rules.inc:95',
11899   'textgroup' => 'default',
11900   '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);",
11901   'version' => 'none',
11902 ))
11903 ->values(array(
11904   'lid' => '150',
11905   'location' => 'includes/content.admin.inc:1096;1109,  includes/content.rules.inc:99,  modules/number/number.module:130;139,  modules/text/text.module:93;102',
11906   'textgroup' => 'default',
11907   'source' => 'Code',
11908   'version' => '6.38-dev',
11909 ))
11910 ->values(array(
11911   'lid' => '151',
11912   'location' => 'includes/content.admin.inc:1100',
11913   'textgroup' => 'default',
11914   '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.',
11915   'version' => 'none',
11916 ))
11917 ->values(array(
11918   'lid' => '152',
11919   'location' => 'includes/content.admin.inc:1110,  modules/number/number.module:140,  modules/text/text.module:103',
11920   'textgroup' => 'default',
11921   'source' => '&lt;none&gt;',
11922   'version' => 'none',
11923 ))
11924 ->values(array(
11925   'lid' => '153',
11926   'location' => 'includes/content.admin.inc:1111,  modules/number/number.module:141,  modules/text/text.module:104',
11927   'textgroup' => 'default',
11928   'source' => "You're not allowed to input PHP code.",
11929   'version' => 'none',
11930 ))
11931 ->values(array(
11932   'lid' => '154',
11933   'location' => 'includes/content.admin.inc:1111',
11934   'textgroup' => 'default',
11935   'source' => 'This PHP code was set by an administrator and will override any value specified above.',
11936   'version' => 'none',
11937 ))
11938 ->values(array(
11939   'lid' => '155',
11940   'location' => 'includes/content.admin.inc:1118',
11941   'textgroup' => 'default',
11942   'source' => 'Global settings',
11943   'version' => 'none',
11944 ))
11945 ->values(array(
11946   'lid' => '156',
11947   'location' => 'includes/content.admin.inc:1119',
11948   'textgroup' => 'default',
11949   'source' => 'These settings apply to the %field field in every content type in which it appears.',
11950   'version' => 'none',
11951 ))
11952 ->values(array(
11953   'lid' => '157',
11954   'location' => 'includes/content.admin.inc:1123',
11955   'textgroup' => 'default',
11956   'source' => 'Required',
11957   'version' => 'none',
11958 ))
11959 ->values(array(
11960   'lid' => '158',
11961   'location' => 'includes/content.admin.inc:1126',
11962   'textgroup' => 'default',
11963   'source' => 'Maximum number of values users can enter for this field.',
11964   'version' => 'none',
11965 ))
11966 ->values(array(
11967   'lid' => '159',
11968   'location' => 'includes/content.admin.inc:1128',
11969   'textgroup' => 'default',
11970   'source' => "'Unlimited' will provide an 'Add more' button so the users can add as many values as they like.",
11971   'version' => 'none',
11972 ))
11973 ->values(array(
11974   'lid' => '160',
11975   'location' => 'includes/content.admin.inc:1130',
11976   'textgroup' => 'default',
11977   'source' => 'Warning! Changing this setting after data has been created could result in the loss of data!',
11978   'version' => 'none',
11979 ))
11980 ->values(array(
11981   'lid' => '161',
11982   'location' => 'includes/content.admin.inc:1133',
11983   'textgroup' => 'default',
11984   'source' => 'Number of values',
11985   'version' => 'none',
11986 ))
11987 ->values(array(
11988   'lid' => '162',
11989   'location' => 'includes/content.admin.inc:1134,  modules/content_multigroup/content_multigroup.module:73',
11990   'textgroup' => 'default',
11991   'source' => 'Unlimited',
11992   'version' => 'none',
11993 ))
11994 ->values(array(
11995   'lid' => '163',
11996   'location' => 'includes/content.admin.inc:1151,  modules/content_copy/content_copy.module:251',
11997   'textgroup' => 'default',
11998   'source' => 'Save field settings',
11999   'version' => 'none',
12000 ))
12001 ->values(array(
12002   'lid' => '164',
12003   'location' => 'includes/content.admin.inc:1288',
12004   'textgroup' => 'default',
12005   'source' => "The PHP code for 'default value' returned @value, which is invalid.",
12006   'version' => 'none',
12007 ))
12008 ->values(array(
12009   'lid' => '165',
12010   'location' => 'includes/content.admin.inc:1292',
12011   'textgroup' => 'default',
12012   'source' => 'The default value is invalid.',
12013   'version' => 'none',
12014 ))
12015 ->values(array(
12016   'lid' => '166',
12017   'location' => 'includes/content.admin.inc:1316',
12018   'textgroup' => 'default',
12019   'source' => 'Added field %label.',
12020   'version' => 'none',
12021 ))
12022 ->values(array(
12023   'lid' => '167',
12024   'location' => 'includes/content.admin.inc:1320',
12025   'textgroup' => 'default',
12026   'source' => 'Saved field %label.',
12027   'version' => 'none',
12028 ))
12029 ->values(array(
12030   'lid' => '168',
12031   'location' => 'includes/content.admin.inc:1678',
12032   'textgroup' => 'default',
12033   'source' => 'Processing',
12034   'version' => 'none',
12035 ))
12036 ->values(array(
12037   'lid' => '169',
12038   'location' => 'includes/content.admin.inc:1679',
12039   'textgroup' => 'default',
12040   'source' => 'The update has encountered an error.',
12041   'version' => 'none',
12042 ))
12043 ->values(array(
12044   'lid' => '170',
12045   'location' => 'includes/content.admin.inc:1693',
12046   'textgroup' => 'default',
12047   'source' => 'The database has been altered and data has been migrated or deleted.',
12048   'version' => 'none',
12049 ))
12050 ->values(array(
12051   'lid' => '171',
12052   'location' => 'includes/content.admin.inc:1696',
12053   'textgroup' => 'default',
12054   'source' => 'An error occurred and database alteration did not complete.',
12055   'version' => 'none',
12056 ))
12057 ->values(array(
12058   'lid' => '172',
12059   'location' => 'includes/content.admin.inc:1799',
12060   'textgroup' => 'default',
12061   'source' => 'Processing %title',
12062   'version' => 'none',
12063 ))
12064 ->values(array(
12065   'lid' => '173',
12066   'location' => 'includes/content.admin.inc:1865',
12067   'textgroup' => 'default',
12068   'source' => '%name must be an integer.',
12069   'version' => 'none',
12070 ))
12071 ->values(array(
12072   'lid' => '174',
12073   'location' => 'includes/content.admin.inc:1875',
12074   'textgroup' => 'default',
12075   'source' => '%name must be a positive integer.',
12076   'version' => 'none',
12077 ))
12078 ->values(array(
12079   'lid' => '175',
12080   'location' => 'includes/content.admin.inc:1885',
12081   'textgroup' => 'default',
12082   'source' => '%name must be a number.',
12083   'version' => 'none',
12084 ))
12085 ->values(array(
12086   'lid' => '176',
12087   'location' => 'includes/content.admin.inc:1697',
12088   'textgroup' => 'default',
12089   'source' => '1 item successfully processed:',
12090   'version' => 'none',
12091 ))
12092 ->values(array(
12093   'lid' => '177',
12094   'location' => 'includes/content.admin.inc:1697',
12095   'textgroup' => 'default',
12096   'source' => '@count items successfully processed:',
12097   'version' => 'none',
12098 ))
12099 ->values(array(
12100   'lid' => '178',
12101   'location' => 'includes/content.crud.inc:589',
12102   'textgroup' => 'default',
12103   'source' => 'Content fields table %old_name has been renamed to %new_name and field instances have been updated.',
12104   'version' => 'none',
12105 ))
12106 ->values(array(
12107   'lid' => '179',
12108   'location' => 'includes/content.crud.inc:633',
12109   'textgroup' => 'default',
12110   'source' => 'The content fields table %name has been deleted.',
12111   'version' => 'none',
12112 ))
12113 ->values(array(
12114   'lid' => '180',
12115   'location' => 'includes/content.node_form.inc:223',
12116   'textgroup' => 'default',
12117   'source' => 'Add another item',
12118   'version' => 'none',
12119 ))
12120 ->values(array(
12121   'lid' => '181',
12122   'location' => 'includes/panels/content_types/content_field.inc:14',
12123   'textgroup' => 'default',
12124   'source' => 'Content field',
12125   'version' => 'none',
12126 ))
12127 ->values(array(
12128   'lid' => '182',
12129   'location' => 'includes/content.panels.inc:38',
12130   'textgroup' => 'default',
12131   'source' => 'A content field from the referenced node.',
12132   'version' => 'none',
12133 ))
12134 ->values(array(
12135   'lid' => '183',
12136   'location' => 'includes/panels/content_types/content_field.inc:45,  modules/fieldgroup/fieldgroup.panels.inc:31,  modules/fieldgroup/panels/content_types/content_fieldgroup.inc:43',
12137   'textgroup' => 'default',
12138   'source' => 'Node',
12139   'version' => 'none',
12140 ))
12141 ->values(array(
12142   'lid' => '184',
12143   'location' => 'includes/content.panels.inc:40,  modules/fieldgroup/fieldgroup.panels.inc:32',
12144   'textgroup' => 'default',
12145   'source' => 'Node context',
12146   'version' => 'none',
12147 ))
12148 ->values(array(
12149   'lid' => '185',
12150   'location' => 'includes/panels/content_types/content_field.inc:100',
12151   'textgroup' => 'default',
12152   'source' => 'Block title',
12153   'version' => 'none',
12154 ))
12155 ->values(array(
12156   'lid' => '186',
12157   'location' => 'includes/panels/content_types/content_field.inc:103',
12158   'textgroup' => 'default',
12159   'source' => 'Hidden',
12160   'version' => 'none',
12161 ))
12162 ->values(array(
12163   'lid' => '187',
12164   'location' => 'includes/panels/content_types/content_field.inc:105',
12165   'textgroup' => 'default',
12166   'source' => 'Configure how the label is going to be displayed.',
12167   'version' => 'none',
12168 ))
12169 ->values(array(
12170   'lid' => '188',
12171   'location' => 'includes/content.panels.inc:73',
12172   'textgroup' => 'default',
12173   'source' => 'Field / Formatter',
12174   'version' => 'none',
12175 ))
12176 ->values(array(
12177   'lid' => '189',
12178   'location' => 'includes/content.panels.inc:76',
12179   'textgroup' => 'default',
12180   'source' => 'Select a field and formatter.',
12181   'version' => 'none',
12182 ))
12183 ->values(array(
12184   'lid' => '190',
12185   'location' => 'includes/content.panels.inc:92',
12186   'textgroup' => 'default',
12187   'source' => '"@s" field @name',
12188   'version' => 'none',
12189 ))
12190 ->values(array(
12191   'lid' => '191',
12192   'location' => 'includes/content.rules.inc:15',
12193   'textgroup' => 'default',
12194   'source' => 'Populate a field',
12195   'version' => 'none',
12196 ))
12197 ->values(array(
12198   'lid' => '192',
12199   'location' => 'includes/content.rules.inc:23;224',
12200   'textgroup' => 'default',
12201   'source' => 'You should make sure that the used field exists in the given content type.',
12202   'version' => 'none',
12203 ))
12204 ->values(array(
12205   'lid' => '193',
12206   'location' => 'includes/content.rules.inc:53;276,  modules/nodereference/nodereference.rules.inc:45,  modules/userreference/userreference.rules.inc:47',
12207   'textgroup' => 'default',
12208   'source' => 'Field',
12209   'version' => 'none',
12210 ))
12211 ->values(array(
12212   'lid' => '194',
12213   'location' => 'includes/content.rules.inc:56',
12214   'textgroup' => 'default',
12215   'source' => 'Select the machine-name of the field.',
12216   'version' => 'none',
12217 ))
12218 ->values(array(
12219   'lid' => '195',
12220   'location' => 'includes/content.rules.inc:84',
12221   'textgroup' => 'default',
12222   'source' => 'Advanced: Specify the fields value with PHP code',
12223   'version' => 'none',
12224 ))
12225 ->values(array(
12226   'lid' => '196',
12227   'location' => 'not literally,  includes/content.rules.inc:102',
12228   'textgroup' => 'default',
12229   '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.",
12230   'version' => 'none',
12231 ))
12232 ->values(array(
12233   'lid' => '197',
12234   'location' => 'includes/content.rules.inc:130',
12235   'textgroup' => 'default',
12236   'source' => 'You have to return the default value in the expected format.',
12237   'version' => 'none',
12238 ))
12239 ->values(array(
12240   'lid' => '198',
12241   'location' => 'includes/content.rules.inc:193',
12242   'textgroup' => 'default',
12243   'source' => "Populate @node's field '@field'",
12244   'version' => 'none',
12245 ))
12246 ->values(array(
12247   'lid' => '199',
12248   'location' => 'includes/content.rules.inc:210',
12249   'textgroup' => 'default',
12250   'source' => 'Field has value',
12251   'version' => 'none',
12252 ))
12253 ->values(array(
12254   'lid' => '200',
12255   'location' => 'includes/content.rules.inc:215',
12256   'textgroup' => 'default',
12257   '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.',
12258   'version' => 'none',
12259 ))
12260 ->values(array(
12261   'lid' => '201',
12262   'location' => 'includes/content.rules.inc:219',
12263   'textgroup' => 'default',
12264   'source' => 'Field has changed',
12265   'version' => 'none',
12266 ))
12267 ->values(array(
12268   'lid' => '202',
12269   'location' => 'includes/content.rules.inc:221',
12270   'textgroup' => 'default',
12271   'source' => 'Content containing changes',
12272   'version' => 'none',
12273 ))
12274 ->values(array(
12275   'lid' => '203',
12276   'location' => 'includes/content.rules.inc:222',
12277   'textgroup' => 'default',
12278   'source' => 'Content not containing changes',
12279   'version' => 'none',
12280 ))
12281 ->values(array(
12282   'lid' => '204',
12283   'location' => 'includes/content.rules.inc:259',
12284   'textgroup' => 'default',
12285   'source' => "@node's field '@field' has value",
12286   'version' => 'none',
12287 ))
12288 ->values(array(
12289   'lid' => '205',
12290   'location' => 'not literally,  includes/content.rules.inc:279,  fuzzy',
12291   'textgroup' => 'default',
12292   'source' => 'Select the machine-name of the field to look at.',
12293   'version' => 'none',
12294 ))
12295 ->values(array(
12296   'lid' => '206',
12297   'location' => '@node?,  includes/content.rules.inc:285',
12298   'textgroup' => 'default',
12299   'source' => "@node's field '@field' has been changed",
12300   'version' => 'none',
12301 ))
12302 ->values(array(
12303   'lid' => '207',
12304   'location' => 'includes/content.token.inc:12;15',
12305   'textgroup' => 'default',
12306   'source' => 'Token',
12307   'version' => 'none',
12308 ))
12309 ->values(array(
12310   'lid' => '208',
12311   'location' => 'includes/content.token.inc:81',
12312   'textgroup' => 'default',
12313   'source' => 'Referenced node ID',
12314   'version' => 'none',
12315 ))
12316 ->values(array(
12317   'lid' => '209',
12318   'location' => 'includes/content.token.inc:82',
12319   'textgroup' => 'default',
12320   'source' => 'Referenced node title',
12321   'version' => 'none',
12322 ))
12323 ->values(array(
12324   'lid' => '210',
12325   'location' => 'includes/content.token.inc:83',
12326   'textgroup' => 'default',
12327   'source' => 'Referenced node unfiltered title. WARNING - raw user input.',
12328   'version' => 'none',
12329 ))
12330 ->values(array(
12331   'lid' => '211',
12332   'location' => 'includes/content.token.inc:84',
12333   'textgroup' => 'default',
12334   'source' => 'Formatted html link to the referenced node.',
12335   'version' => 'none',
12336 ))
12337 ->values(array(
12338   'lid' => '212',
12339   'location' => 'includes/content.token.inc:85',
12340   'textgroup' => 'default',
12341   'source' => 'Relative path alias to the referenced node.',
12342   'version' => 'none',
12343 ))
12344 ->values(array(
12345   'lid' => '213',
12346   'location' => 'includes/content.token.inc:86',
12347   'textgroup' => 'default',
12348   'source' => 'Absolute path alias to the referenced node.',
12349   'version' => 'none',
12350 ))
12351 ->values(array(
12352   'lid' => '214',
12353   'location' => 'includes/content.token.inc:114',
12354   'textgroup' => 'default',
12355   'source' => 'Raw number value',
12356   'version' => 'none',
12357 ))
12358 ->values(array(
12359   'lid' => '215',
12360   'location' => 'includes/content.token.inc:115',
12361   'textgroup' => 'default',
12362   'source' => 'Formatted number value',
12363   'version' => 'none',
12364 ))
12365 ->values(array(
12366   'lid' => '216',
12367   'location' => 'includes/content.token.inc:138',
12368   'textgroup' => 'default',
12369   'source' => 'Raw, unfiltered text',
12370   'version' => 'none',
12371 ))
12372 ->values(array(
12373   'lid' => '217',
12374   'location' => 'includes/content.token.inc:139',
12375   'textgroup' => 'default',
12376   'source' => 'Formatted and filtered text',
12377   'version' => 'none',
12378 ))
12379 ->values(array(
12380   'lid' => '218',
12381   'location' => 'includes/content.token.inc:161',
12382   'textgroup' => 'default',
12383   'source' => 'Referenced user ID',
12384   'version' => 'none',
12385 ))
12386 ->values(array(
12387   'lid' => '219',
12388   'location' => 'includes/content.token.inc:162',
12389   'textgroup' => 'default',
12390   'source' => 'Referenced user name',
12391   'version' => 'none',
12392 ))
12393 ->values(array(
12394   'lid' => '220',
12395   'location' => 'includes/content.token.inc:163',
12396   'textgroup' => 'default',
12397   'source' => 'Formatted HTML link to referenced user',
12398   'version' => 'none',
12399 ))
12400 ->values(array(
12401   'lid' => '221',
12402   'location' => 'includes/content.token.inc:164',
12403   'textgroup' => 'default',
12404   'source' => 'Relative path alias to the referenced user.',
12405   'version' => 'none',
12406 ))
12407 ->values(array(
12408   'lid' => '222',
12409   'location' => 'includes/content.token.inc:165',
12410   'textgroup' => 'default',
12411   'source' => 'Absolute path alias to the referenced user.',
12412   'version' => 'none',
12413 ))
12414 ->values(array(
12415   'lid' => '223',
12416   'location' => 'includes/views/content.views.inc:245;261',
12417   'textgroup' => 'default',
12418   'source' => '@label (!name)',
12419   'version' => 'none',
12420 ))
12421 ->values(array(
12422   'lid' => '224',
12423   'location' => 'includes/views/content.views.inc:249',
12424   'textgroup' => 'default',
12425   'source' => '@label (!name) - !column',
12426   'version' => 'none',
12427 ))
12428 ->values(array(
12429   'lid' => '225',
12430   'location' => 'includes/views/content.views.inc:250',
12431   'textgroup' => 'default',
12432   'source' => '@label-truncated - !column',
12433   'version' => 'none',
12434 ))
12435 ->values(array(
12436   'lid' => '226',
12437   'location' => 'includes/views/content.views.inc:257',
12438   'textgroup' => 'default',
12439   'source' => 'Appears in: @types',
12440   'version' => 'none',
12441 ))
12442 ->values(array(
12443   'lid' => '227',
12444   'location' => 'includes/views/handlers/content_handler_field.inc:56',
12445   'textgroup' => 'default',
12446   'source' => 'None',
12447   'version' => 'none',
12448 ))
12449 ->values(array(
12450   'lid' => '228',
12451   'location' => 'includes/views/handlers/content_handler_field.inc:57',
12452   'textgroup' => 'default',
12453   'source' => 'Widget label (@label)',
12454   'version' => 'none',
12455 ))
12456 ->values(array(
12457   'lid' => '229',
12458   'location' => 'includes/views/handlers/content_handler_field.inc:58',
12459   'textgroup' => 'default',
12460   'source' => 'Custom',
12461   'version' => 'none',
12462 ))
12463 ->values(array(
12464   'lid' => '230',
12465   'location' => 'includes/views/handlers/content_handler_field.inc:64',
12466   'textgroup' => 'default',
12467   'source' => 'Custom label',
12468   'version' => 'none',
12469 ))
12470 ->values(array(
12471   'lid' => '231',
12472   'location' => 'includes/views/handlers/content_handler_field.inc:80',
12473   'textgroup' => 'default',
12474   'source' => 'Format',
12475   'version' => 'none',
12476 ))
12477 ->values(array(
12478   'lid' => '232',
12479   'location' => 'includes/views/handlers/content_handler_field_multiple.inc:56',
12480   'textgroup' => 'default',
12481   'source' => 'Group multiple values',
12482   'version' => 'none',
12483 ))
12484 ->values(array(
12485   'lid' => '233',
12486   'location' => 'includes/views/handlers/content_handler_field_multiple.inc:61',
12487   'textgroup' => 'default',
12488   '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.',
12489   'version' => 'none',
12490 ))
12491 ->values(array(
12492   'lid' => '234',
12493   'location' => 'includes/views/handlers/content_handler_field_multiple.inc:63',
12494   'textgroup' => 'default',
12495   'source' => 'Show @count value(s)',
12496   'version' => 'none',
12497 ))
12498 ->values(array(
12499   'lid' => '235',
12500   'location' => 'includes/views/handlers/content_handler_field_multiple.inc:74',
12501   'textgroup' => 'default',
12502   'source' => 'starting from @count',
12503   'version' => 'none',
12504 ))
12505 ->values(array(
12506   'lid' => '236',
12507   'location' => 'includes/views/handlers/content_handler_field_multiple.inc:85',
12508   'textgroup' => 'default',
12509   'source' => 'Reversed (start from last values)',
12510   'version' => 'none',
12511 ))
12512 ->values(array(
12513   'lid' => '237',
12514   'location' => 'includes/views/handlers/content_handler_relationship.inc:40,  includes/views/handlers/content_handler_sort.inc:41',
12515   'textgroup' => 'default',
12516   'source' => 'All',
12517   'version' => 'none',
12518 ))
12519 ->values(array(
12520   'lid' => '238',
12521   'location' => 'includes/views/handlers/content_handler_relationship.inc:48,  includes/views/handlers/content_handler_sort.inc:49',
12522   'textgroup' => 'default',
12523   'source' => 'Delta',
12524   'version' => 'none',
12525 ))
12526 ->values(array(
12527   'lid' => '239',
12528   'location' => 'includes/views/handlers/content_handler_relationship.inc:49',
12529   'textgroup' => 'default',
12530   '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.',
12531   'version' => 'none',
12532 ))
12533 ->values(array(
12534   'lid' => '240',
12535   'location' => 'includes/views/handlers/content_handler_sort.inc:50',
12536   'textgroup' => 'default',
12537   '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.',
12538   'version' => 'none',
12539 ))
12540 ->values(array(
12541   'lid' => '241',
12542   'location' => 'modules/content_copy/content_copy_export_form.tpl.php:9,  modules/content_copy/content_copy.module:191;38',
12543   'textgroup' => 'default',
12544   'source' => 'Export',
12545   'version' => '6.38-dev',
12546 ))
12547 ->values(array(
12548   'lid' => '242',
12549   'location' => 'modules/content_copy/content_copy.module:97',
12550   'textgroup' => 'default',
12551   '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.',
12552   'version' => 'none',
12553 ))
12554 ->values(array(
12555   'lid' => '243',
12556   'location' => 'modules/content_copy/content_copy.module:103',
12557   'textgroup' => 'default',
12558   'source' => 'Types',
12559   'version' => 'none',
12560 ))
12561 ->values(array(
12562   'lid' => '244',
12563   'location' => 'modules/content_copy/content_copy.module:107',
12564   'textgroup' => 'default',
12565   'source' => 'Select the content type to export.',
12566   'version' => 'none',
12567 ))
12568 ->values(array(
12569   'lid' => '245',
12570   'location' => 'modules/content_copy/content_copy.module:175',
12571   'textgroup' => 'default',
12572   'source' => 'Export data',
12573   'version' => 'none',
12574 ))
12575 ->values(array(
12576   'lid' => '246',
12577   'location' => 'modules/content_copy/content_copy.module:180',
12578   'textgroup' => 'default',
12579   'source' => 'Copy the export text and paste it into another content type using the import function.',
12580   'version' => 'none',
12581 ))
12582 ->values(array(
12583   'lid' => '247',
12584   'location' => 'content_admin.inc:42',
12585   'textgroup' => 'default',
12586   'source' => 'Content types',
12587   'version' => '6.38-dev',
12588 ))
12589 ->values(array(
12590   'lid' => '248',
12591   'location' => 'modules/content_copy/content_copy.module:308',
12592   'textgroup' => 'default',
12593   'source' => 'Content type',
12594   'version' => '6.38-dev',
12595 ))
12596 ->values(array(
12597   'lid' => '249',
12598   'location' => 'modules/content_copy/content_copy.module:309',
12599   'textgroup' => 'default',
12600   '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.',
12601   'version' => 'none',
12602 ))
12603 ->values(array(
12604   'lid' => '250',
12605   'location' => 'modules/content_copy/content_copy.module:314',
12606   'textgroup' => 'default',
12607   'source' => 'Import data',
12608   'version' => 'none',
12609 ))
12610 ->values(array(
12611   'lid' => '251',
12612   'location' => 'modules/content_copy/content_copy.module:316',
12613   'textgroup' => 'default',
12614   'source' => 'Paste the text created by a content export into this field.',
12615   'version' => 'none',
12616 ))
12617 ->values(array(
12618   'lid' => '252',
12619   'location' => 'modules/content_copy/content_copy.module:320;46',
12620   'textgroup' => 'default',
12621   'source' => 'Import',
12622   'version' => '6.38-dev',
12623 ))
12624 ->values(array(
12625   'lid' => '253',
12626   'location' => 'modules/content_copy/content_copy.module:328',
12627   'textgroup' => 'default',
12628   'source' => 'A file has been pre-loaded for import.',
12629   'version' => 'none',
12630 ))
12631 ->values(array(
12632   'lid' => '254',
12633   'location' => 'modules/content_copy/content_copy.module:354',
12634   'textgroup' => 'default',
12635   'source' => 'The import data is not valid import text.',
12636   'version' => 'none',
12637 ))
12638 ->values(array(
12639   'lid' => '255',
12640   'location' => 'modules/content_copy/content_copy.module:403',
12641   'textgroup' => 'default',
12642   'source' => 'The following modules must be enabled for this import to work: %modules.',
12643   'version' => 'none',
12644 ))
12645 ->values(array(
12646   'lid' => '256',
12647   'location' => 'modules/content_copy/content_copy.module:411',
12648   'textgroup' => 'default',
12649   'source' => 'The content type %type already exists in this database.',
12650   'version' => 'none',
12651 ))
12652 ->values(array(
12653   'lid' => '257',
12654   'location' => 'modules/content_copy/content_copy.module:418',
12655   'textgroup' => 'default',
12656   'source' => 'Exiting. No import performed.',
12657   'version' => 'none',
12658 ))
12659 ->values(array(
12660   'lid' => '258',
12661   'location' => 'modules/content_copy/content_copy.module:442',
12662   'textgroup' => 'default',
12663   'source' => 'An error has occurred adding the content type %type.<br/>Please check the errors displayed for more details.',
12664   'version' => 'none',
12665 ))
12666 ->values(array(
12667   'lid' => '259',
12668   'location' => 'modules/content_copy/content_copy.module:467',
12669   'textgroup' => 'default',
12670   'source' => 'The imported field %field_label (%field_name) was not added to %type because that field already exists in %type.',
12671   'version' => 'none',
12672 ))
12673 ->values(array(
12674   'lid' => '260',
12675   'location' => 'modules/content_copy/content_copy.module:476',
12676   'textgroup' => 'default',
12677   'source' => 'The field %field_label (%field_name) was added to the content type %type.',
12678   'version' => 'none',
12679 ))
12680 ->values(array(
12681   'lid' => '261',
12682   'location' => 'modules/content_copy/content_copy.module:0',
12683   'textgroup' => 'default',
12684   'source' => 'content_copy',
12685   'version' => 'none',
12686 ))
12687 ->values(array(
12688   'lid' => '262',
12689   'location' => 'modules/content_copy/content_copy.info:0',
12690   'textgroup' => 'default',
12691   'source' => 'Content Copy',
12692   'version' => 'none',
12693 ))
12694 ->values(array(
12695   'lid' => '263',
12696   'location' => 'modules/content_copy/content_copy.info:0',
12697   'textgroup' => 'default',
12698   'source' => 'Enables ability to import/export field definitions.',
12699   'version' => 'none',
12700 ))
12701 ->values(array(
12702   'lid' => '264',
12703   'location' => 'modules/content_multigroup/content_multigroup.module:12',
12704   'textgroup' => 'default',
12705   '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.',
12706   'version' => 'none',
12707 ))
12708 ->values(array(
12709   'lid' => '265',
12710   'location' => 'modules/content_multigroup/content_multigroup.module:65;135',
12711   'textgroup' => 'default',
12712   'source' => 'Multigroup',
12713   'version' => 'none',
12714 ))
12715 ->values(array(
12716   'lid' => '266',
12717   'location' => 'modules/content_multigroup/content_multigroup.module:134',
12718   'textgroup' => 'default',
12719   'source' => 'Standard',
12720   'version' => 'none',
12721 ))
12722 ->values(array(
12723   'lid' => '267',
12724   'location' => 'includes/content.admin.inc:344,  modules/content_multigroup/content_multigroup.module:126',
12725   'textgroup' => 'default',
12726   'source' => 'Type of group.',
12727   'version' => 'none',
12728 ))
12729 ->values(array(
12730   'lid' => '268',
12731   'location' => 'modules/content_multigroup/content_multigroup.module:215',
12732   'textgroup' => 'default',
12733   'source' => 'The field %field has been updated to use %multiple values, to match the multiple value setting of the Multigroup %group.',
12734   'version' => 'none',
12735 ))
12736 ->values(array(
12737   'lid' => '269',
12738   'location' => 'modules/content_multigroup/content_multigroup.module:248',
12739   'textgroup' => 'default',
12740   '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.',
12741   'version' => 'none',
12742 ))
12743 ->values(array(
12744   'lid' => '270',
12745   'location' => 'modules/content_multigroup/content_multigroup.module:272',
12746   'textgroup' => 'default',
12747   '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.',
12748   'version' => 'none',
12749 ))
12750 ->values(array(
12751   'lid' => '271',
12752   'location' => 'modules/content_multigroup/content_multigroup.module:287',
12753   'textgroup' => 'default',
12754   'source' => 'You are moving the field %field into a Multigroup.',
12755   'version' => 'none',
12756 ))
12757 ->values(array(
12758   'lid' => '272',
12759   'location' => 'modules/content_multigroup/content_multigroup.module:320',
12760   'textgroup' => 'default',
12761   '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.',
12762   'version' => 'none',
12763 ))
12764 ->values(array(
12765   'lid' => '273',
12766   'location' => 'modules/content_multigroup/content_multigroup.module:334',
12767   'textgroup' => 'default',
12768   'source' => 'You are moving the field %field out of a Multigroup.',
12769   'version' => 'none',
12770 ))
12771 ->values(array(
12772   'lid' => '274',
12773   'location' => 'modules/content_multigroup/content_multigroup.module:369',
12774   'textgroup' => 'default',
12775   'source' => 'Simple',
12776   'version' => 'none',
12777 ))
12778 ->values(array(
12779   'lid' => '275',
12780   'location' => 'modules/content_multigroup/content_multigroup.module:370',
12781   'textgroup' => 'default',
12782   'source' => 'Fieldset',
12783   'version' => 'none',
12784 ))
12785 ->values(array(
12786   'lid' => '276',
12787   'location' => 'modules/content_multigroup/content_multigroup.module:371',
12788   'textgroup' => 'default',
12789   'source' => 'Horizontal line',
12790   'version' => 'none',
12791 ))
12792 ->values(array(
12793   'lid' => '277',
12794   'location' => 'modules/content_multigroup/content_multigroup.module:372',
12795   'textgroup' => 'default',
12796   'source' => 'Table - Single column',
12797   'version' => 'none',
12798 ))
12799 ->values(array(
12800   'lid' => '278',
12801   'location' => 'modules/content_multigroup/content_multigroup.module:373',
12802   'textgroup' => 'default',
12803   'source' => 'Table - Multiple columns',
12804   'version' => 'none',
12805 ))
12806 ->values(array(
12807   'lid' => '279',
12808   'location' => 'modules/content_multigroup/content_multigroup.module:384',
12809   'textgroup' => 'default',
12810   'source' => '[Subgroup format]',
12811   'version' => 'none',
12812 ))
12813 ->values(array(
12814   'lid' => '280',
12815   'location' => 'modules/content_multigroup/content_multigroup.module:461',
12816   'textgroup' => 'default',
12817   'source' => 'Multigroup settings',
12818   'version' => 'none',
12819 ))
12820 ->values(array(
12821   'lid' => '281',
12822   'location' => 'modules/content_multigroup/content_multigroup.module:476',
12823   'textgroup' => 'default',
12824   'source' => 'Multiple columns',
12825   'version' => 'none',
12826 ))
12827 ->values(array(
12828   'lid' => '282',
12829   'location' => 'modules/content_multigroup/content_multigroup.module:478',
12830   'textgroup' => 'default',
12831   'source' => 'Enable this option to render each field on a separate column on the node edit form.',
12832   'version' => 'none',
12833 ))
12834 ->values(array(
12835   'lid' => '283',
12836   'location' => 'modules/content_multigroup/content_multigroup.module:485',
12837   'textgroup' => 'default',
12838   'source' => 'Enable this option to require a minimum of one collection of fields in this Multigroup.',
12839   'version' => 'none',
12840 ))
12841 ->values(array(
12842   'lid' => '284',
12843   'location' => 'modules/content_multigroup/content_multigroup.module:488',
12844   'textgroup' => 'default',
12845   'source' => 'Number of times to repeat the collection of Multigroup fields.',
12846   'version' => 'none',
12847 ))
12848 ->values(array(
12849   'lid' => '285',
12850   'location' => 'modules/content_multigroup/content_multigroup.module:489',
12851   'textgroup' => 'default',
12852   'source' => "'Unlimited' will provide an 'Add more' button so the users can add items as many times as they like.",
12853   'version' => 'none',
12854 ))
12855 ->values(array(
12856   'lid' => '286',
12857   'location' => 'modules/content_multigroup/content_multigroup.module:490',
12858   'textgroup' => 'default',
12859   'source' => 'All fields in this group will automatically be set to allow this number of values.',
12860   'version' => 'none',
12861 ))
12862 ->values(array(
12863   'lid' => '287',
12864   'location' => 'modules/content_multigroup/content_multigroup.module:495',
12865   'textgroup' => 'default',
12866   'source' => 'Number of repeats',
12867   'version' => 'none',
12868 ))
12869 ->values(array(
12870   'lid' => '288',
12871   'location' => 'modules/content_multigroup/content_multigroup.module:503',
12872   'textgroup' => 'default',
12873   'source' => 'Labels',
12874   'version' => 'none',
12875 ))
12876 ->values(array(
12877   'lid' => '289',
12878   'location' => 'modules/content_multigroup/content_multigroup.module:504',
12879   'textgroup' => 'default',
12880   'source' => "Labels for each subgroup of fields. Labels can be hidden or shown in various contexts using the 'Display fields' screen.",
12881   'version' => 'none',
12882 ))
12883 ->values(array(
12884   'lid' => '290',
12885   'location' => 'modules/content_multigroup/content_multigroup.module:512',
12886   'textgroup' => 'default',
12887   'source' => 'Subgroup %number label',
12888   'version' => 'none',
12889 ))
12890 ->values(array(
12891   'lid' => '291',
12892   'location' => 'modules/content_multigroup/content_multigroup.module:539',
12893   'textgroup' => 'default',
12894   '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.',
12895   'version' => 'none',
12896 ))
12897 ->values(array(
12898   'lid' => '292',
12899   'location' => 'modules/content_multigroup/content_multigroup.module:932',
12900   'textgroup' => 'default',
12901   'source' => '!name field is required in group @group.',
12902   'version' => 'none',
12903 ))
12904 ->values(array(
12905   'lid' => '293',
12906   'location' => 'modules/content_multigroup/content_multigroup.module:946',
12907   'textgroup' => 'default',
12908   'source' => 'Group @name requires one collection of fields minimum.',
12909   'version' => 'none',
12910 ))
12911 ->values(array(
12912   'lid' => '294',
12913   'location' => 'modules/content_multigroup/content_multigroup.module:1145',
12914   'textgroup' => 'default',
12915   'source' => 'Add more values',
12916   'version' => 'none',
12917 ))
12918 ->values(array(
12919   'lid' => '295',
12920   'location' => 'modules/content_multigroup/content_multigroup.module:0',
12921   'textgroup' => 'default',
12922   'source' => 'content_multigroup',
12923   'version' => 'none',
12924 ))
12925 ->values(array(
12926   'lid' => '296',
12927   'location' => 'modules/content_multigroup/content_multigroup.info:0',
12928   'textgroup' => 'default',
12929   'source' => 'Content Multigroup',
12930   'version' => 'none',
12931 ))
12932 ->values(array(
12933   'lid' => '297',
12934   'location' => 'modules/content_multigroup/content_multigroup.info:0',
12935   'textgroup' => 'default',
12936   'source' => 'Combine multiple CCK fields into repeating field collections that work in unison.',
12937   'version' => 'none',
12938 ))
12939 ->values(array(
12940   'lid' => '298',
12941   'location' => 'modules/content_permissions/content_permissions.module:10',
12942   'textgroup' => 'default',
12943   'source' => 'edit',
12944   'version' => 'none',
12945 ))
12946 ->values(array(
12947   'lid' => '299',
12948   'location' => 'modules/content_permissions/content_permissions.module:10;11',
12949   'textgroup' => 'default',
12950   'source' => 'field_name',
12951   'version' => 'none',
12952 ))
12953 ->values(array(
12954   'lid' => '300',
12955   'location' => 'modules/content_permissions/content_permissions.module:11',
12956   'textgroup' => 'default',
12957   'source' => 'view',
12958   'version' => 'none',
12959 ))
12960 ->values(array(
12961   'lid' => '301',
12962   'location' => 'modules/content_permissions/content_permissions.module:0',
12963   'textgroup' => 'default',
12964   'source' => 'content_permissions',
12965   'version' => 'none',
12966 ))
12967 ->values(array(
12968   'lid' => '302',
12969   'location' => 'modules/content_permissions/content_permissions.install:9',
12970   'textgroup' => 'default',
12971   'source' => 'Please <a href="!url">configure your field permissions</a> immediately. All fields are inaccessible by default.',
12972   'version' => 'none',
12973 ))
12974 ->values(array(
12975   'lid' => '303',
12976   'location' => 'modules/content_permissions/content_permissions.info:0',
12977   'textgroup' => 'default',
12978   'source' => 'Content Permissions',
12979   'version' => 'none',
12980 ))
12981 ->values(array(
12982   'lid' => '304',
12983   'location' => 'modules/content_permissions/content_permissions.info:0',
12984   'textgroup' => 'default',
12985   'source' => 'Set field-level permissions for CCK fields.',
12986   'version' => 'none',
12987 ))
12988 ->values(array(
12989   'lid' => '305',
12990   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:10;27,  modules/fieldgroup/panels/content_types/content_fieldgroup.inc:14',
12991   'textgroup' => 'default',
12992   'source' => 'Content fieldgroup',
12993   'version' => 'none',
12994 ))
12995 ->values(array(
12996   'lid' => '306',
12997   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:30',
12998   'textgroup' => 'default',
12999   'source' => 'All fields from a fieldgroup on the referenced node.',
13000   'version' => 'none',
13001 ))
13002 ->values(array(
13003   'lid' => '307',
13004   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:91',
13005   'textgroup' => 'default',
13006   'source' => '@group_label (@group_type_name)',
13007   'version' => 'none',
13008 ))
13009 ->values(array(
13010   'lid' => '308',
13011   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:102,  modules/fieldgroup/fieldgroup.info:0',
13012   'textgroup' => 'default',
13013   'source' => 'Fieldgroup',
13014   'version' => 'none',
13015 ))
13016 ->values(array(
13017   'lid' => '309',
13018   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:112,  modules/fieldgroup/panels/content_types/content_fieldgroup.inc:102',
13019   'textgroup' => 'default',
13020   'source' => 'Text to display if group has no data. Note that title will not display unless overridden.',
13021   'version' => 'none',
13022 ))
13023 ->values(array(
13024   'lid' => '310',
13025   'location' => 'modules/fieldgroup/fieldgroup.panels.inc:128',
13026   'textgroup' => 'default',
13027   'source' => '"@s" fieldgroup @name',
13028   'version' => 'none',
13029 ))
13030 ->values(array(
13031   'lid' => '311',
13032   'location' => 'modules/fieldgroup/fieldgroup.module:124',
13033   'textgroup' => 'default',
13034   'source' => 'Form settings',
13035   'version' => 'none',
13036 ))
13037 ->values(array(
13038   'lid' => '312',
13039   'location' => 'modules/fieldgroup/fieldgroup.module:125',
13040   'textgroup' => 'default',
13041   'source' => 'These settings apply to the group in the node editing form.',
13042   'version' => 'none',
13043 ))
13044 ->values(array(
13045   'lid' => '313',
13046   'location' => 'modules/fieldgroup/fieldgroup.module:129',
13047   'textgroup' => 'default',
13048   'source' => 'Style',
13049   'version' => 'none',
13050 ))
13051 ->values(array(
13052   'lid' => '314',
13053   'location' => 'modules/fieldgroup/fieldgroup.module:132',
13054   'textgroup' => 'default',
13055   'source' => 'always open',
13056   'version' => 'none',
13057 ))
13058 ->values(array(
13059   'lid' => '315',
13060   'location' => 'modules/fieldgroup/fieldgroup.module:133',
13061   'textgroup' => 'default',
13062   'source' => 'collapsible',
13063   'version' => 'none',
13064 ))
13065 ->values(array(
13066   'lid' => '316',
13067   'location' => 'modules/fieldgroup/fieldgroup.module:134',
13068   'textgroup' => 'default',
13069   'source' => 'collapsed',
13070   'version' => 'none',
13071 ))
13072 ->values(array(
13073   'lid' => '317',
13074   'location' => 'modules/fieldgroup/fieldgroup.module:142',
13075   'textgroup' => 'default',
13076   'source' => 'Instructions to present to the user on the editing form.',
13077   'version' => 'none',
13078 ))
13079 ->values(array(
13080   'lid' => '318',
13081   'location' => 'modules/fieldgroup/fieldgroup.module:147',
13082   'textgroup' => 'default',
13083   'source' => 'Display settings',
13084   'version' => 'none',
13085 ))
13086 ->values(array(
13087   'lid' => '319',
13088   'location' => 'modules/fieldgroup/fieldgroup.module:148',
13089   'textgroup' => 'default',
13090   'source' => 'These settings apply to the group on node display.',
13091   'version' => 'none',
13092 ))
13093 ->values(array(
13094   'lid' => '320',
13095   'location' => 'modules/fieldgroup/fieldgroup.module:155',
13096   'textgroup' => 'default',
13097   'source' => 'A description of the group.',
13098   'version' => 'none',
13099 ))
13100 ->values(array(
13101   'lid' => '321',
13102   'location' => 'modules/fieldgroup/fieldgroup.module:200',
13103   'textgroup' => 'default',
13104   'source' => 'Are you sure you want to remove the group %label?',
13105   'version' => 'none',
13106 ))
13107 ->values(array(
13108   'lid' => '322',
13109   'location' => 'modules/fieldgroup/fieldgroup.module:202',
13110   'textgroup' => 'default',
13111   'source' => 'This action cannot be undone.',
13112   'version' => 'none',
13113 ))
13114 ->values(array(
13115   'lid' => '323',
13116   'location' => 'modules/fieldgroup/fieldgroup.module:211',
13117   'textgroup' => 'default',
13118   'source' => 'The group %group_name has been removed.',
13119   'version' => 'none',
13120 ))
13121 ->values(array(
13122   'lid' => '324',
13123   'location' => 'modules/content_multigroup/content_multigroup.module:356,  modules/fieldgroup/fieldgroup.module:266',
13124   'textgroup' => 'default',
13125   'source' => 'none',
13126   'version' => '6.38-dev',
13127 ))
13128 ->values(array(
13129   'lid' => '325',
13130   'location' => 'modules/fieldgroup/fieldgroup.module:353',
13131   'textgroup' => 'default',
13132   'source' => 'You need to provide a label.',
13133   'version' => 'none',
13134 ))
13135 ->values(array(
13136   'lid' => '326',
13137   'location' => 'modules/fieldgroup/fieldgroup.module:358',
13138   'textgroup' => 'default',
13139   'source' => 'You need to provide a group name.',
13140   'version' => 'none',
13141 ))
13142 ->values(array(
13143   'lid' => '327',
13144   'location' => 'modules/fieldgroup/fieldgroup.module:372',
13145   'textgroup' => 'default',
13146   'source' => 'The group name %group_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
13147   'version' => 'none',
13148 ))
13149 ->values(array(
13150   'lid' => '328',
13151   'location' => 'modules/fieldgroup/fieldgroup.module:375',
13152   'textgroup' => 'default',
13153   'source' => "The group name %group_name is too long. The name is limited to 32 characters, including the 'group_' prefix.",
13154   'version' => 'none',
13155 ))
13156 ->values(array(
13157   'lid' => '329',
13158   'location' => 'modules/fieldgroup/fieldgroup.module:381',
13159   'textgroup' => 'default',
13160   'source' => 'The group name %group_name already exists.',
13161   'version' => 'none',
13162 ))
13163 ->values(array(
13164   'lid' => '330',
13165   'location' => 'modules/fieldgroup/fieldgroup.module:400;403',
13166   'textgroup' => 'default',
13167   'source' => 'Add new group:',
13168   'version' => 'none',
13169 ))
13170 ->values(array(
13171   'lid' => '331',
13172   'location' => 'modules/fieldgroup/fieldgroup.module:418',
13173   'textgroup' => 'default',
13174   'source' => 'Add new group: you need to provide a label.',
13175   'version' => 'none',
13176 ))
13177 ->values(array(
13178   'lid' => '332',
13179   'location' => 'modules/fieldgroup/fieldgroup.module:419',
13180   'textgroup' => 'default',
13181   'source' => 'Add new group: you need to provide a group name.',
13182   'version' => 'none',
13183 ))
13184 ->values(array(
13185   'lid' => '333',
13186   'location' => 'modules/fieldgroup/fieldgroup.module:648',
13187   'textgroup' => 'default',
13188   'source' => 'Standard group',
13189   'version' => 'none',
13190 ))
13191 ->values(array(
13192   'lid' => '334',
13193   'location' => 'modules/fieldgroup/fieldgroup.module:39;46',
13194   'textgroup' => 'default',
13195   'source' => 'Edit group',
13196   'version' => 'none',
13197 ))
13198 ->values(array(
13199   'lid' => '335',
13200   'location' => 'modules/fieldgroup/fieldgroup.module:0',
13201   'textgroup' => 'default',
13202   'source' => 'fieldgroup',
13203   'version' => 'none',
13204 ))
13205 ->values(array(
13206   'lid' => '336',
13207   'location' => 'modules/fieldgroup/fieldgroup.info:0',
13208   'textgroup' => 'default',
13209   'source' => 'Create display groups for CCK fields.',
13210   'version' => 'none',
13211 ))
13212 ->values(array(
13213   'lid' => '337',
13214   'location' => 'modules/nodereference/nodereference.rules.inc:15',
13215   'textgroup' => 'default',
13216   'source' => 'Load a referenced node',
13217   'version' => 'none',
13218 ))
13219 ->values(array(
13220   'lid' => '338',
13221   'location' => 'modules/nodereference/nodereference.rules.inc:19',
13222   'textgroup' => 'default',
13223   'source' => 'Content containing the node reference field',
13224   'version' => 'none',
13225 ))
13226 ->values(array(
13227   'lid' => '339',
13228   'location' => 'modules/nodereference/nodereference.rules.inc:25',
13229   'textgroup' => 'default',
13230   'source' => 'Referenced content',
13231   'version' => 'none',
13232 ))
13233 ->values(array(
13234   'lid' => '340',
13235   'location' => 'modules/nodereference/nodereference.rules.inc:29',
13236   'textgroup' => 'default',
13237   'source' => 'Note that if the field has multiple values, only the first content node will be loaded.',
13238   'version' => 'none',
13239 ))
13240 ->values(array(
13241   'lid' => '341',
13242   'location' => 'modules/nodereference/nodereference.rules.inc:50',
13243   'textgroup' => 'default',
13244   'source' => 'There are no nodereference fields defined.',
13245   'version' => 'none',
13246 ))
13247 ->values(array(
13248   'lid' => '342',
13249   'location' => 'modules/nodereference/nodereference.module:71',
13250   'textgroup' => 'default',
13251   'source' => 'Node reference',
13252   'version' => 'none',
13253 ))
13254 ->values(array(
13255   'lid' => '343',
13256   'location' => 'modules/nodereference/nodereference.module:72',
13257   'textgroup' => 'default',
13258   'source' => 'Store the ID of a related node as an integer value.',
13259   'version' => 'none',
13260 ))
13261 ->values(array(
13262   'lid' => '344',
13263   'location' => 'modules/nodereference/nodereference.module:90',
13264   'textgroup' => 'default',
13265   'source' => 'Content types that can be referenced',
13266   'version' => 'none',
13267 ))
13268 ->values(array(
13269   'lid' => '345',
13270   'location' => 'modules/nodereference/nodereference.module:97,  modules/userreference/userreference.module:94',
13271   'textgroup' => 'default',
13272   'source' => 'Default Views',
13273   'version' => 'none',
13274 ))
13275 ->values(array(
13276   'lid' => '346',
13277   'location' => 'modules/nodereference/nodereference.module:101',
13278   'textgroup' => 'default',
13279   'source' => 'Existing Views',
13280   'version' => 'none',
13281 ))
13282 ->values(array(
13283   'lid' => '347',
13284   'location' => 'modules/nodereference/nodereference.module:108',
13285   'textgroup' => 'default',
13286   'source' => 'Advanced - Nodes that can be referenced (View)',
13287   'version' => 'none',
13288 ))
13289 ->values(array(
13290   'lid' => '348',
13291   'location' => 'modules/nodereference/nodereference.module:114',
13292   'textgroup' => 'default',
13293   'source' => 'View used to select the nodes',
13294   'version' => 'none',
13295 ))
13296 ->values(array(
13297   'lid' => '349',
13298   'location' => 'modules/nodereference/nodereference.module:107',
13299   'textgroup' => 'default',
13300   'source' => '<p>Choose the "Views module" view that selects the nodes that can be referenced.<br />Note:</p>',
13301   'version' => 'none',
13302 ))
13303 ->values(array(
13304   'lid' => '350',
13305   'location' => 'modules/nodereference/nodereference.module:108;121',
13306   'textgroup' => 'default',
13307   '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>",
13308   'version' => 'none',
13309 ))
13310 ->values(array(
13311   'lid' => '351',
13312   'location' => 'modules/nodereference/nodereference.module:121',
13313   'textgroup' => 'default',
13314   'source' => 'View arguments',
13315   'version' => 'none',
13316 ))
13317 ->values(array(
13318   'lid' => '352',
13319   'location' => 'modules/nodereference/nodereference.module:124',
13320   'textgroup' => 'default',
13321   'source' => 'Provide a comma separated list of arguments to pass to the view.',
13322   'version' => 'none',
13323 ))
13324 ->values(array(
13325   'lid' => '353',
13326   'location' => 'modules/nodereference/nodereference.module:120',
13327   'textgroup' => 'default',
13328   '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>',
13329   'version' => 'none',
13330 ))
13331 ->values(array(
13332   'lid' => '354',
13333   'location' => 'modules/nodereference/nodereference.module:216,  modules/userreference/userreference.module:195',
13334   'textgroup' => 'default',
13335   'source' => '%name: invalid input.',
13336   'version' => 'none',
13337 ))
13338 ->values(array(
13339   'lid' => '355',
13340   'location' => 'modules/nodereference/nodereference.module:217',
13341   'textgroup' => 'default',
13342   'source' => "%name: this post can't be referenced.",
13343   'version' => 'none',
13344 ))
13345 ->values(array(
13346   'lid' => '356',
13347   'location' => 'modules/nodereference/nodereference.module:200',
13348   'textgroup' => 'default',
13349   'source' => 'Title (link)',
13350   'version' => 'none',
13351 ))
13352 ->values(array(
13353   'lid' => '357',
13354   'location' => 'modules/nodereference/nodereference.module:205',
13355   'textgroup' => 'default',
13356   'source' => 'Title (no link)',
13357   'version' => 'none',
13358 ))
13359 ->values(array(
13360   'lid' => '358',
13361   'location' => 'modules/nodereference/nodereference.module:358,  modules/optionwidgets/optionwidgets.module:80,  modules/userreference/userreference.module:284',
13362   'textgroup' => 'default',
13363   'source' => 'Select list',
13364   'version' => '6.38-dev',
13365 ))
13366 ->values(array(
13367   'lid' => '359',
13368   'location' => 'modules/nodereference/nodereference.module:366,  modules/optionwidgets/optionwidgets.module:88,  modules/userreference/userreference.module:292',
13369   'textgroup' => 'default',
13370   'source' => 'Check boxes/radio buttons',
13371   'version' => '6.38-dev',
13372 ))
13373 ->values(array(
13374   'lid' => '360',
13375   'location' => 'modules/nodereference/nodereference.module:374,  modules/userreference/userreference.module:300',
13376   'textgroup' => 'default',
13377   'source' => 'Autocomplete text field',
13378   'version' => 'none',
13379 ))
13380 ->values(array(
13381   'lid' => '361',
13382   'location' => 'modules/nodereference/nodereference.module:429,  modules/userreference/userreference.module:355',
13383   'textgroup' => 'default',
13384   'source' => 'Autocomplete matching',
13385   'version' => 'none',
13386 ))
13387 ->values(array(
13388   'lid' => '362',
13389   'location' => 'modules/nodereference/nodereference.module:432,  modules/userreference/userreference.module:358',
13390   'textgroup' => 'default',
13391   'source' => 'Starts with',
13392   'version' => 'none',
13393 ))
13394 ->values(array(
13395   'lid' => '363',
13396   'location' => 'modules/nodereference/nodereference.module:433,  modules/userreference/userreference.module:359',
13397   'textgroup' => 'default',
13398   'source' => 'Contains',
13399   'version' => 'none',
13400 ))
13401 ->values(array(
13402   'lid' => '364',
13403   'location' => 'modules/nodereference/nodereference.module:423',
13404   'textgroup' => 'default',
13405   'source' => 'Select the method used to collect autocomplete suggestions. Note that <em>Contains</em> can cause performance issues on sites with thousands of nodes.',
13406   'version' => 'none',
13407 ))
13408 ->values(array(
13409   'lid' => '365',
13410   'location' => 'modules/nodereference/nodereference.module:671',
13411   'textgroup' => 'default',
13412   'source' => '%name: title mismatch. Please check your selection.',
13413   'version' => 'none',
13414 ))
13415 ->values(array(
13416   'lid' => '366',
13417   'location' => 'modules/nodereference/nodereference.module:678',
13418   'textgroup' => 'default',
13419   'source' => '%name: found no valid post with that title.',
13420   'version' => 'none',
13421 ))
13422 ->values(array(
13423   'lid' => '367',
13424   'location' => 'modules/nodereference/nodereference.module:15',
13425   'textgroup' => 'default',
13426   'source' => 'Nodereference autocomplete',
13427   'version' => 'none',
13428 ))
13429 ->values(array(
13430   'lid' => '368',
13431   'location' => 'modules/nodereference/nodereference.module:0',
13432   'textgroup' => 'default',
13433   'source' => 'nodereference',
13434   'version' => 'none',
13435 ))
13436 ->values(array(
13437   'lid' => '369',
13438   'location' => 'modules/nodereference/nodereference.info:0',
13439   'textgroup' => 'default',
13440   'source' => 'Node Reference',
13441   'version' => 'none',
13442 ))
13443 ->values(array(
13444   'lid' => '370',
13445   'location' => 'modules/nodereference/nodereference.info:0',
13446   'textgroup' => 'default',
13447   'source' => 'Defines a field type for referencing one node from another.',
13448   'version' => 'none',
13449 ))
13450 ->values(array(
13451   'lid' => '371',
13452   'location' => 'modules/number/number.module:34',
13453   'textgroup' => 'default',
13454   'source' => 'Integer',
13455   'version' => '6.38-dev',
13456 ))
13457 ->values(array(
13458   'lid' => '372',
13459   'location' => 'modules/number/number.module:35',
13460   'textgroup' => 'default',
13461   'source' => 'Store a number in the database as an integer.',
13462   'version' => '6.38-dev',
13463 ))
13464 ->values(array(
13465   'lid' => '373',
13466   'location' => 'modules/number/number.module:38',
13467   'textgroup' => 'default',
13468   'source' => 'Decimal',
13469   'version' => '6.38-dev',
13470 ))
13471 ->values(array(
13472   'lid' => '374',
13473   'location' => 'modules/number/number.module:39',
13474   'textgroup' => 'default',
13475   'source' => 'Store a number in the database in a fixed decimal format.',
13476   'version' => '6.38-dev',
13477 ))
13478 ->values(array(
13479   'lid' => '375',
13480   'location' => 'modules/number/number.module:42',
13481   'textgroup' => 'default',
13482   'source' => 'Float',
13483   'version' => '6.38-dev',
13484 ))
13485 ->values(array(
13486   'lid' => '376',
13487   'location' => 'modules/number/number.module:43',
13488   'textgroup' => 'default',
13489   'source' => 'Store a number in the database in a floating point format.',
13490   'version' => '6.38-dev',
13491 ))
13492 ->values(array(
13493   'lid' => '377',
13494   'location' => 'modules/number/number.module:57',
13495   'textgroup' => 'default',
13496   'source' => 'Minimum',
13497   'version' => 'none',
13498 ))
13499 ->values(array(
13500   'lid' => '378',
13501   'location' => 'modules/number/number.module:63',
13502   'textgroup' => 'default',
13503   'source' => 'Maximum',
13504   'version' => 'none',
13505 ))
13506 ->values(array(
13507   'lid' => '379',
13508   'location' => 'modules/number/number.module:71',
13509   'textgroup' => 'default',
13510   'source' => 'Precision',
13511   'version' => 'none',
13512 ))
13513 ->values(array(
13514   'lid' => '380',
13515   'location' => 'modules/number/number.module:72',
13516   'textgroup' => 'default',
13517   'source' => 'The total number of digits to store in the database, including those to the right of the decimal.',
13518   'version' => 'none',
13519 ))
13520 ->values(array(
13521   'lid' => '381',
13522   'location' => 'modules/number/number.module:78',
13523   'textgroup' => 'default',
13524   'source' => 'Scale',
13525   'version' => 'none',
13526 ))
13527 ->values(array(
13528   'lid' => '382',
13529   'location' => 'modules/number/number.module:79',
13530   'textgroup' => 'default',
13531   'source' => 'The number of digits to the right of the decimal.',
13532   'version' => 'none',
13533 ))
13534 ->values(array(
13535   'lid' => '383',
13536   'location' => 'modules/number/number.module:85',
13537   'textgroup' => 'default',
13538   'source' => 'Decimal marker',
13539   'version' => 'none',
13540 ))
13541 ->values(array(
13542   'lid' => '384',
13543   'location' => 'modules/number/number.module:86',
13544   'textgroup' => 'default',
13545   'source' => 'The character users will input to mark the decimal point in forms.',
13546   'version' => 'none',
13547 ))
13548 ->values(array(
13549   'lid' => '385',
13550   'location' => 'modules/number/number.module:92',
13551   'textgroup' => 'default',
13552   'source' => 'Prefix',
13553   'version' => 'none',
13554 ))
13555 ->values(array(
13556   'lid' => '386',
13557   'location' => 'modules/number/number.module:95',
13558   'textgroup' => 'default',
13559   '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).',
13560   'version' => 'none',
13561 ))
13562 ->values(array(
13563   'lid' => '387',
13564   'location' => 'modules/number/number.module:99',
13565   'textgroup' => 'default',
13566   'source' => 'Suffix',
13567   'version' => 'none',
13568 ))
13569 ->values(array(
13570   'lid' => '388',
13571   'location' => 'modules/number/number.module:102',
13572   'textgroup' => 'default',
13573   '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).',
13574   'version' => 'none',
13575 ))
13576 ->values(array(
13577   'lid' => '389',
13578   'location' => 'modules/number/number.module:109,  modules/text/text.module:72',
13579   'textgroup' => 'default',
13580   'source' => 'Allowed values',
13581   'version' => 'none',
13582 ))
13583 ->values(array(
13584   'lid' => '390',
13585   'location' => 'modules/number/number.module:115,  modules/text/text.module:78',
13586   'textgroup' => 'default',
13587   'source' => 'Allowed values list',
13588   'version' => 'none',
13589 ))
13590 ->values(array(
13591   'lid' => '391',
13592   'location' => 'modules/number/number.module:119,  modules/text/text.module:82',
13593   'textgroup' => 'default',
13594   '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',
13595   'version' => 'none',
13596 ))
13597 ->values(array(
13598   'lid' => '392',
13599   'location' => 'modules/number/number.module:133,  modules/text/text.module:96',
13600   'textgroup' => 'default',
13601   '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.',
13602   'version' => 'none',
13603 ))
13604 ->values(array(
13605   'lid' => '393',
13606   'location' => 'modules/number/number.module:141,  modules/text/text.module:104',
13607   'textgroup' => 'default',
13608   'source' => 'This PHP code was set by an administrator and will override the allowed values list above.',
13609   'version' => 'none',
13610 ))
13611 ->values(array(
13612   'lid' => '394',
13613   'location' => 'modules/number/number.module:181,  modules/text/text.module:133',
13614   'textgroup' => 'default',
13615   'source' => '@label (!name) - Allowed values',
13616   'version' => 'none',
13617 ))
13618 ->values(array(
13619   'lid' => '395',
13620   'location' => 'modules/number/number.module:195',
13621   'textgroup' => 'default',
13622   'source' => '"Minimum" must be a number.',
13623   'version' => 'none',
13624 ))
13625 ->values(array(
13626   'lid' => '396',
13627   'location' => 'modules/number/number.module:202',
13628   'textgroup' => 'default',
13629   'source' => '"Maximum" must be a number.',
13630   'version' => 'none',
13631 ))
13632 ->values(array(
13633   'lid' => '397',
13634   'location' => 'modules/number/number.module:219',
13635   'textgroup' => 'default',
13636   'source' => '%name: the value may be no smaller than %min.',
13637   'version' => 'none',
13638 ))
13639 ->values(array(
13640   'lid' => '398',
13641   'location' => 'modules/number/number.module:222',
13642   'textgroup' => 'default',
13643   'source' => '%name: the value may be no larger than %max.',
13644   'version' => 'none',
13645 ))
13646 ->values(array(
13647   'lid' => '399',
13648   'location' => 'modules/number/number.module:238,  modules/text/text.module:157',
13649   'textgroup' => 'default',
13650   'source' => '%name: illegal value.',
13651   'version' => 'none',
13652 ))
13653 ->values(array(
13654   'lid' => '400',
13655   'location' => 'modules/number/number.module:270',
13656   'textgroup' => 'default',
13657   'source' => 'unformatted',
13658   'version' => '6.38-dev',
13659 ))
13660 ->values(array(
13661   'lid' => '401',
13662   'location' => 'modules/number/number.module:356,  modules/text/text.module:257',
13663   'textgroup' => 'default',
13664   'source' => 'Text field',
13665   'version' => '6.38-dev',
13666 ))
13667 ->values(array(
13668   'lid' => '402',
13669   'location' => 'Float validation: English needs work,  modules/number/number.module:509,  fuzzy',
13670   'textgroup' => 'default',
13671   'source' => 'Only numbers and decimals are allowed in %field.',
13672   'version' => 'none',
13673 ))
13674 ->values(array(
13675   'lid' => '403',
13676   'location' => 'Integer validation: English needs work,  modules/number/number.module:532,  fuzzy',
13677   'textgroup' => 'default',
13678   'source' => 'Only numbers are allowed in %field.',
13679   'version' => 'none',
13680 ))
13681 ->values(array(
13682   'lid' => '404',
13683   'location' => 'Decimal validation with decimal character: English needs work,  modules/number/number.module:556,  fuzzy',
13684   'textgroup' => 'default',
13685   'source' => 'Only numbers and the decimal character (%decimal) are allowed in %field.',
13686   'version' => 'none',
13687 ))
13688 ->values(array(
13689   'lid' => '405',
13690   'location' => 'modules/number/number.module:0',
13691   'textgroup' => 'default',
13692   'source' => 'number',
13693   'version' => 'none',
13694 ))
13695 ->values(array(
13696   'lid' => '406',
13697   'location' => 'modules/number/number.info:0',
13698   'textgroup' => 'default',
13699   'source' => 'Number',
13700   'version' => 'none',
13701 ))
13702 ->values(array(
13703   'lid' => '407',
13704   'location' => 'modules/number/number.info:0',
13705   'textgroup' => 'default',
13706   'source' => 'Defines numeric field types.',
13707   'version' => 'none',
13708 ))
13709 ->values(array(
13710   'lid' => '408',
13711   'location' => 'modules/optionwidgets/optionwidgets.module:19',
13712   'textgroup' => 'default',
13713   '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.',
13714   'version' => 'none',
13715 ))
13716 ->values(array(
13717   'lid' => '409',
13718   'location' => 'modules/optionwidgets/optionwidgets.module:22',
13719   'textgroup' => 'default',
13720   '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.",
13721   'version' => 'none',
13722 ))
13723 ->values(array(
13724   'lid' => '410',
13725   'location' => 'modules/optionwidgets/optionwidgets.module:25',
13726   'textgroup' => 'default',
13727   'source' => "The 'checkboxes/radio buttons' widget will display checkboxes if the multiple values option is selected for this field, otherwise radios will be displayed.",
13728   'version' => 'none',
13729 ))
13730 ->values(array(
13731   'lid' => '411',
13732   'location' => 'modules/optionwidgets/optionwidgets.module:37',
13733   'textgroup' => 'default',
13734   'source' => "You need to specify the 'allowed values' for this field.",
13735   'version' => 'none',
13736 ))
13737 ->values(array(
13738   'lid' => '412',
13739   'location' => 'modules/optionwidgets/optionwidgets.module:96',
13740   'textgroup' => 'default',
13741   'source' => 'Single on/off checkbox',
13742   'version' => '6.38-dev',
13743 ))
13744 ->values(array(
13745   'lid' => '413',
13746   'location' => 'modules/optionwidgets/optionwidgets.module:331',
13747   'textgroup' => 'default',
13748   'source' => '%name: this field cannot hold more that @count values.',
13749   'version' => 'none',
13750 ))
13751 ->values(array(
13752   'lid' => '414',
13753   'location' => 'modules/optionwidgets/optionwidgets.module:411',
13754   'textgroup' => 'default',
13755   'source' => 'N/A',
13756   'version' => 'none',
13757 ))
13758 ->values(array(
13759   'lid' => '415',
13760   'location' => 'modules/optionwidgets/optionwidgets.module:415',
13761   'textgroup' => 'default',
13762   'source' => '- None -',
13763   'version' => 'none',
13764 ))
13765 ->values(array(
13766   'lid' => '416',
13767   'location' => 'modules/optionwidgets/optionwidgets.module:0',
13768   'textgroup' => 'default',
13769   'source' => 'optionwidgets',
13770   'version' => 'none',
13771 ))
13772 ->values(array(
13773   'lid' => '417',
13774   'location' => 'modules/optionwidgets/optionwidgets.info:0',
13775   'textgroup' => 'default',
13776   'source' => 'Option Widgets',
13777   'version' => 'none',
13778 ))
13779 ->values(array(
13780   'lid' => '418',
13781   'location' => 'modules/optionwidgets/optionwidgets.info:0',
13782   'textgroup' => 'default',
13783   'source' => 'Defines selection, check box and radio button widgets for text and numeric fields.',
13784   'version' => 'none',
13785 ))
13786 ->values(array(
13787   'lid' => '419',
13788   'location' => 'modules/text/text.module:42',
13789   'textgroup' => 'default',
13790   'source' => 'Store text in the database.',
13791   'version' => '6.38-dev',
13792 ))
13793 ->values(array(
13794   'lid' => '420',
13795   'location' => 'modules/text/text.module:55;202,  modules/userreference/userreference.module:237',
13796   'textgroup' => 'default',
13797   'source' => 'Plain text',
13798   'version' => '6.38-dev',
13799 ))
13800 ->values(array(
13801   'lid' => '421',
13802   'location' => 'modules/text/text.module:55',
13803   'textgroup' => 'default',
13804   'source' => 'Filtered text (user selects input format)',
13805   'version' => 'none',
13806 ))
13807 ->values(array(
13808   'lid' => '422',
13809   'location' => 'modules/text/text.module:58',
13810   'textgroup' => 'default',
13811   'source' => 'Text processing',
13812   'version' => 'none',
13813 ))
13814 ->values(array(
13815   'lid' => '423',
13816   'location' => 'modules/text/text.module:64',
13817   'textgroup' => 'default',
13818   'source' => 'Maximum length',
13819   'version' => 'none',
13820 ))
13821 ->values(array(
13822   'lid' => '424',
13823   'location' => 'modules/text/text.module:68',
13824   'textgroup' => 'default',
13825   'source' => 'The maximum length of the field in characters. Leave blank for an unlimited size.',
13826   'version' => 'none',
13827 ))
13828 ->values(array(
13829   'lid' => '425',
13830   'location' => 'modules/text/text.module:160',
13831   'textgroup' => 'default',
13832   'source' => '%name: the value may not be longer than %max characters.',
13833   'version' => 'none',
13834 ))
13835 ->values(array(
13836   'lid' => '426',
13837   'location' => 'modules/text/text.module:197,  modules/userreference/userreference.module:232',
13838   'textgroup' => 'default',
13839   'source' => 'Default',
13840   'version' => '6.38-dev',
13841 ))
13842 ->values(array(
13843   'lid' => '427',
13844   'location' => 'modules/text/text.module:207',
13845   'textgroup' => 'default',
13846   'source' => 'Trimmed',
13847   'version' => '6.38-dev',
13848 ))
13849 ->values(array(
13850   'lid' => '428',
13851   'location' => 'modules/text/text.module:265',
13852   'textgroup' => 'default',
13853   'source' => 'Text area (multiple rows)',
13854   'version' => '6.38-dev',
13855 ))
13856 ->values(array(
13857   'lid' => '429',
13858   'location' => 'modules/nodereference/nodereference.module:439,  modules/text/text.module:317,  modules/userreference/userreference.module:365',
13859   'textgroup' => 'default',
13860   'source' => 'Size of textfield',
13861   'version' => 'none',
13862 ))
13863 ->values(array(
13864   'lid' => '430',
13865   'location' => 'modules/text/text.module:326',
13866   'textgroup' => 'default',
13867   'source' => 'Rows',
13868   'version' => 'none',
13869 ))
13870 ->values(array(
13871   'lid' => '431',
13872   'location' => 'modules/text/text.module:0',
13873   'textgroup' => 'default',
13874   'source' => 'text',
13875   'version' => 'none',
13876 ))
13877 ->values(array(
13878   'lid' => '432',
13879   'location' => 'modules/text/text.info:0',
13880   'textgroup' => 'default',
13881   'source' => 'Defines simple text field types.',
13882   'version' => 'none',
13883 ))
13884 ->values(array(
13885   'lid' => '433',
13886   'location' => 'modules/userreference/userreference.rules.inc:15',
13887   'textgroup' => 'default',
13888   'source' => 'Load a referenced user',
13889   'version' => 'none',
13890 ))
13891 ->values(array(
13892   'lid' => '434',
13893   'location' => 'modules/userreference/userreference.rules.inc:19',
13894   'textgroup' => 'default',
13895   'source' => 'Content containing the user reference field',
13896   'version' => 'none',
13897 ))
13898 ->values(array(
13899   'lid' => '435',
13900   'location' => 'modules/userreference/userreference.rules.inc:25',
13901   'textgroup' => 'default',
13902   'source' => 'Referenced user',
13903   'version' => 'none',
13904 ))
13905 ->values(array(
13906   'lid' => '436',
13907   'location' => 'modules/userreference/userreference.rules.inc:29',
13908   'textgroup' => 'default',
13909   'source' => 'Note that if the field has multiple values, only the first user will be loaded.',
13910   'version' => 'none',
13911 ))
13912 ->values(array(
13913   'lid' => '437',
13914   'location' => 'modules/userreference/userreference.rules.inc:52',
13915   'textgroup' => 'default',
13916   'source' => 'There are no userreference fields defined.',
13917   'version' => 'none',
13918 ))
13919 ->values(array(
13920   'lid' => '438',
13921   'location' => 'modules/userreference/userreference.module:52',
13922   'textgroup' => 'default',
13923   'source' => 'User reference',
13924   'version' => 'none',
13925 ))
13926 ->values(array(
13927   'lid' => '439',
13928   'location' => 'modules/userreference/userreference.module:53',
13929   'textgroup' => 'default',
13930   'source' => 'Store the ID of a related user as an integer value.',
13931   'version' => 'none',
13932 ))
13933 ->values(array(
13934   'lid' => '440',
13935   'location' => 'modules/userreference/userreference.module:67',
13936   'textgroup' => 'default',
13937   'source' => 'User roles that can be referenced',
13938   'version' => 'none',
13939 ))
13940 ->values(array(
13941   'lid' => '441',
13942   'location' => 'modules/userreference/userreference.module:73',
13943   'textgroup' => 'default',
13944   'source' => 'User status that can be referenced',
13945   'version' => 'none',
13946 ))
13947 ->values(array(
13948   'lid' => '442',
13949   'location' => 'modules/userreference/userreference.module:75',
13950   'textgroup' => 'default',
13951   'source' => 'Active',
13952   'version' => 'none',
13953 ))
13954 ->values(array(
13955   'lid' => '443',
13956   'location' => 'modules/userreference/userreference.module:75',
13957   'textgroup' => 'default',
13958   'source' => 'Blocked',
13959   'version' => 'none',
13960 ))
13961 ->values(array(
13962   'lid' => '444',
13963   'location' => 'modules/userreference/userreference.module:94',
13964   'textgroup' => 'default',
13965   'source' => 'Advanced - Users that can be referenced (View)',
13966   'version' => 'none',
13967 ))
13968 ->values(array(
13969   'lid' => '445',
13970   'location' => 'modules/userreference/userreference.module:101',
13971   'textgroup' => 'default',
13972   'source' => 'View used to select the users',
13973   'version' => 'none',
13974 ))
13975 ->values(array(
13976   'lid' => '446',
13977   'location' => 'modules/userreference/userreference.module:104',
13978   'textgroup' => 'default',
13979   'source' => '<p>Choose the "Views module" view that selects the users that can be referenced.<br />Note:</p>',
13980   'version' => 'none',
13981 ))
13982 ->values(array(
13983   'lid' => '447',
13984   'location' => 'modules/userreference/userreference.module:105;118',
13985   'textgroup' => 'default',
13986   '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>",
13987   'version' => 'none',
13988 ))
13989 ->values(array(
13990   'lid' => '448',
13991   'location' => 'modules/userreference/userreference.module:117',
13992   'textgroup' => 'default',
13993   '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>',
13994   'version' => 'none',
13995 ))
13996 ->values(array(
13997   'lid' => '449',
13998   'location' => 'modules/userreference/userreference.module:196',
13999   'textgroup' => 'default',
14000   'source' => '%name: invalid user.',
14001   'version' => 'none',
14002 ))
14003 ->values(array(
14004   'lid' => '450',
14005   'location' => 'modules/userreference/userreference.module:349',
14006   'textgroup' => 'default',
14007   'source' => 'Select the method used to collect autocomplete suggestions. Note that <em>Contains</em> can cause performance issues on sites with thousands of users.',
14008   'version' => 'none',
14009 ))
14010 ->values(array(
14011   'lid' => '451',
14012   'location' => 'modules/userreference/userreference.module:357',
14013   'textgroup' => 'default',
14014   'source' => 'Reverse link',
14015   'version' => 'none',
14016 ))
14017 ->values(array(
14018   'lid' => '452',
14019   'location' => 'modules/userreference/userreference.module:359',
14020   'textgroup' => 'default',
14021   'source' => 'If selected, a reverse link back to the referencing node will displayed on the referenced user record.',
14022   'version' => 'none',
14023 ))
14024 ->values(array(
14025   'lid' => '453',
14026   'location' => 'modules/userreference/userreference.module:594',
14027   'textgroup' => 'default',
14028   'source' => '%name: found no valid user with that name.',
14029   'version' => 'none',
14030 ))
14031 ->values(array(
14032   'lid' => '454',
14033   'location' => 'modules/userreference/userreference.module:887',
14034   'textgroup' => 'default',
14035   'source' => 'Related content',
14036   'version' => 'none',
14037 ))
14038 ->values(array(
14039   'lid' => '455',
14040   'location' => 'modules/userreference/userreference.module:15',
14041   'textgroup' => 'default',
14042   'source' => 'Userreference autocomplete',
14043   'version' => 'none',
14044 ))
14045 ->values(array(
14046   'lid' => '456',
14047   'location' => 'userreference.module:0',
14048   'textgroup' => 'default',
14049   'source' => 'userreference',
14050   'version' => 'none',
14051 ))
14052 ->values(array(
14053   'lid' => '457',
14054   'location' => 'modules/userreference/userreference.info:0',
14055   'textgroup' => 'default',
14056   'source' => 'User Reference',
14057   'version' => 'none',
14058 ))
14059 ->values(array(
14060   'lid' => '458',
14061   'location' => 'modules/userreference/userreference.info:0',
14062   'textgroup' => 'default',
14063   'source' => 'Defines a field type for referencing a user from a node.',
14064   'version' => 'none',
14065 ))
14066 ->values(array(
14067   'lid' => '459',
14068   'location' => 'theme/content-admin-field-overview-form.tpl.php:11',
14069   'textgroup' => 'default',
14070   'source' => 'Weight',
14071   'version' => '6.38-dev',
14072 ))
14073 ->values(array(
14074   'lid' => '460',
14075   'location' => 'theme/content-admin-field-overview-form.tpl.php:53',
14076   'textgroup' => 'default',
14077   'source' => 'Add',
14078   'version' => 'none',
14079 ))
14080 ->values(array(
14081   'lid' => '461',
14082   'location' => 'theme/content-admin-field-overview-form.tpl.php:59',
14083   'textgroup' => 'default',
14084   'source' => 'New field',
14085   'version' => 'none',
14086 ))
14087 ->values(array(
14088   'lid' => '462',
14089   'location' => 'theme/content-admin-field-overview-form.tpl.php:72',
14090   'textgroup' => 'default',
14091   'source' => 'Existing field',
14092   'version' => 'none',
14093 ))
14094 ->values(array(
14095   'lid' => '463',
14096   'location' => 'theme/content-admin-field-overview-form.tpl.php:84',
14097   'textgroup' => 'default',
14098   'source' => 'New group',
14099   'version' => 'none',
14100 ))
14101 ->values(array(
14102   'lid' => '464',
14103   'location' => 'theme/theme.inc:11',
14104   'textgroup' => 'default',
14105   'source' => 'Add fields and groups to the content type, and arrange them on content display and input forms.',
14106   'version' => 'none',
14107 ))
14108 ->values(array(
14109   'lid' => '465',
14110   'location' => 'theme/theme.inc:13',
14111   'textgroup' => 'default',
14112   'source' => 'You can add a field to a group by dragging it below and to the right of the group.',
14113   'version' => 'none',
14114 ))
14115 ->values(array(
14116   'lid' => '466',
14117   'location' => 'theme/theme.inc:16',
14118   'textgroup' => 'default',
14119   'source' => 'Note: Installing the <a href="!adv_help">Advanced help</a> module will let you access more and better help.',
14120   'version' => 'none',
14121 ))
14122 ->values(array(
14123   'lid' => '467',
14124   'location' => 'theme/theme.inc:116',
14125   'textgroup' => 'default',
14126   'source' => "Use the 'Exclude' checkbox to exclude an item from the !content value passed to the node template.",
14127   'version' => 'none',
14128 ))
14129 ->values(array(
14130   'lid' => '468',
14131   'location' => 'theme/content-edit.js:0',
14132   'textgroup' => 'default',
14133   'source' => 'Remove this item',
14134   'version' => 'none',
14135 ))
14136 ->values(array(
14137   'lid' => '469',
14138   'location' => 'content_admin.inc:290',
14139   'textgroup' => 'default',
14140   'source' => 'Add field',
14141   'version' => '6.38-dev',
14142 ))
14143 ->values(array(
14144   'lid' => '470',
14145   'location' => 'field.php:180;190,  number.module:119,  text.module:107',
14146   'textgroup' => 'default',
14147   'source' => 'Illegal value for %name.',
14148   'version' => 'none',
14149 ))
14150 ->values(array(
14151   'lid' => '471',
14152   'location' => 'examples/example_field.php:287 examples/simple_field.php:231,  modules/text/text.module:169',
14153   'textgroup' => 'default',
14154   'source' => '%label is longer than %max characters.',
14155   'version' => 'none',
14156 ))
14157 ->values(array(
14158   'lid' => '472',
14159   'location' => 'field.php:273 text.module:167',
14160   'textgroup' => 'default',
14161   'source' => '"Rows" must be a positive integer.',
14162   'version' => 'none',
14163 ))
14164 ->values(array(
14165   'lid' => '473',
14166   'location' => 'modules/number/number.module:133 modules/text/text.module:92',
14167   'textgroup' => 'default',
14168   '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',
14169   'version' => 'none',
14170 ))
14171 ->values(array(
14172   'lid' => '474',
14173   'location' => 'content.module:144',
14174   'textgroup' => 'default',
14175   'source' => 'add field',
14176   'version' => 'none',
14177 ))
14178 ->values(array(
14179   'lid' => '475',
14180   'location' => 'includes/content.admin.inc:112;291',
14181   'textgroup' => 'default',
14182   'source' => 'There are no fields configured for this content type. You can !link.',
14183   'version' => 'none',
14184 ))
14185 ->values(array(
14186   'lid' => '476',
14187   'location' => 'includes/content.admin.inc:113;292',
14188   'textgroup' => 'default',
14189   'source' => 'Add a new field',
14190   'version' => 'none',
14191 ))
14192 ->values(array(
14193   'lid' => '477',
14194   'location' => 'includes/content.admin.inc:137',
14195   'textgroup' => 'default',
14196   '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.',
14197   'version' => 'none',
14198 ))
14199 ->values(array(
14200   'lid' => '478',
14201   'location' => 'includes/content.admin.inc:477',
14202   'textgroup' => 'default',
14203   '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.',
14204   'version' => 'none',
14205 ))
14206 ->values(array(
14207   'lid' => '479',
14208   'location' => 'content_admin.inc:277',
14209   'textgroup' => 'default',
14210   'source' => 'Add existing field',
14211   'version' => 'none',
14212 ))
14213 ->values(array(
14214   'lid' => '480',
14215   'location' => 'content_admin.inc:311',
14216   'textgroup' => 'default',
14217   'source' => 'Create new field',
14218   'version' => 'none',
14219 ))
14220 ->values(array(
14221   'lid' => '481',
14222   'location' => 'includes/content.admin.inc:606',
14223   'textgroup' => 'default',
14224   'source' => 'The machine-readable name of the field.',
14225   'version' => 'none',
14226 ))
14227 ->values(array(
14228   'lid' => '482',
14229   'location' => 'includes/content.admin.inc:610',
14230   'textgroup' => 'default',
14231   'source' => 'This name cannot be changed.',
14232   'version' => 'none',
14233 ))
14234 ->values(array(
14235   'lid' => '483',
14236   'location' => 'includes/content.admin.inc:618',
14237   'textgroup' => 'default',
14238   '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.",
14239   'version' => 'none',
14240 ))
14241 ->values(array(
14242   'lid' => '484',
14243   'location' => 'includes/content.admin.inc:636',
14244   'textgroup' => 'default',
14245   'source' => 'The type of data you would like to store in the database with this field.',
14246   'version' => 'none',
14247 ))
14248 ->values(array(
14249   'lid' => '485',
14250   'location' => 'includes/content.admin.inc:692',
14251   'textgroup' => 'default',
14252   'source' => 'The field name %field_name is invalid. The name must include only lowercase unaccentuated letters, numbers, and underscores.',
14253   'version' => 'none',
14254 ))
14255 ->values(array(
14256   'lid' => '486',
14257   'location' => 'includes/content.admin.inc:695',
14258   'textgroup' => 'default',
14259   'source' => "The field name %field_name is too long. The name is limited to 32 characters, including the 'field_' prefix.",
14260   'version' => 'none',
14261 ))
14262 ->values(array(
14263   'lid' => '487',
14264   'location' => 'includes/content.admin.inc:706',
14265   'textgroup' => 'default',
14266   'source' => 'The field name %field_name already exists.',
14267   'version' => 'none',
14268 ))
14269 ->values(array(
14270   'lid' => '488',
14271   'location' => 'includes/content.admin.inc:709',
14272   'textgroup' => 'default',
14273   'source' => "The name 'field_instance' is a reserved name.",
14274   'version' => 'none',
14275 ))
14276 ->values(array(
14277   'lid' => '489',
14278   'location' => 'content_admin.inc:432',
14279   'textgroup' => 'default',
14280   'source' => 'Created field %label.',
14281   'version' => 'none',
14282 ))
14283 ->values(array(
14284   'lid' => '490',
14285   'location' => 'includes/content.admin.inc:754',
14286   'textgroup' => 'default',
14287   'source' => 'Update field %label.',
14288   'version' => 'none',
14289 ))
14290 ->values(array(
14291   'lid' => '491',
14292   'location' => 'includes/content.admin.inc:758',
14293   'textgroup' => 'default',
14294   'source' => 'There was a problem updating field %label.',
14295   'version' => 'none',
14296 ))
14297 ->values(array(
14298   'lid' => '492',
14299   'location' => 'includes/content.admin.inc:955',
14300   'textgroup' => 'default',
14301   '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.",
14302   'version' => 'none',
14303 ))
14304 ->values(array(
14305   'lid' => '493',
14306   'location' => 'includes/content.admin.inc:986',
14307   'textgroup' => 'default',
14308   '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.",
14309   'version' => 'none',
14310 ))
14311 ->values(array(
14312   'lid' => '494',
14313   'location' => 'includes/content.admin.inc:1131',
14314   'textgroup' => 'default',
14315   'source' => 'The default value PHP code created @value which is invalid.',
14316   'version' => 'none',
14317 ))
14318 ->values(array(
14319   'lid' => '495',
14320   'location' => 'includes/content.token.inc:62',
14321   'textgroup' => 'default',
14322   'source' => 'Formatted HTML link to the node',
14323   'version' => 'none',
14324 ))
14325 ->values(array(
14326   'lid' => '496',
14327   'location' => 'number.module:113',
14328   'textgroup' => 'default',
14329   'source' => 'The value of %name may be no smaller than %min.',
14330   'version' => 'none',
14331 ))
14332 ->values(array(
14333   'lid' => '497',
14334   'location' => 'number.module:116',
14335   'textgroup' => 'default',
14336   'source' => 'The value of %name may be no larger than %max.',
14337   'version' => 'none',
14338 ))
14339 ->values(array(
14340   'lid' => '498',
14341   'location' => 'modules/number/number.module:476',
14342   'textgroup' => 'default',
14343   'source' => 'Only numbers and decimals are allowed in %field. %start was changed to %value.',
14344   'version' => 'none',
14345 ))
14346 ->values(array(
14347   'lid' => '499',
14348   'location' => 'modules/number/number.module:494',
14349   'textgroup' => 'default',
14350   'source' => 'Only numbers are allowed in %field. %start was changed to %value.',
14351   'version' => 'none',
14352 ))
14353 ->values(array(
14354   'lid' => '500',
14355   'location' => 'modules/number/number.module:513',
14356   'textgroup' => 'default',
14357   'source' => 'Only numbers and the decimal character (%decimal) are allowed in %field. %start was changed to %value.',
14358   'version' => 'none',
14359 ))
14360 ->values(array(
14361   'lid' => '501',
14362   'location' => 'modules/optionwidgets/optionwidgets.module:10',
14363   'textgroup' => 'default',
14364   '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.',
14365   'version' => 'none',
14366 ))
14367 ->values(array(
14368   'lid' => '502',
14369   'location' => 'misc/tabledrag.js',
14370   'textgroup' => 'default',
14371   'source' => 'Drag to re-order',
14372   'version' => 'none',
14373 ))
14374 ->values(array(
14375   'lid' => '503',
14376   'location' => 'misc/tabledrag.js',
14377   'textgroup' => 'default',
14378   'source' => 'Changes made in this table will not be saved until the form is submitted.',
14379   'version' => 'none',
14380 ))
14381 ->values(array(
14382   'lid' => '504',
14383   'location' => 'field:profile_color:title',
14384   'textgroup' => 'profile',
14385   'source' => 'Favorite color',
14386   'version' => '1',
14387 ))
14388 ->values(array(
14389   'lid' => '505',
14390   'location' => 'field:profile_color:explanation',
14391   'textgroup' => 'profile',
14392   'source' => 'List your favorite color',
14393   'version' => '1',
14394 ))
14395 ->values(array(
14396   'lid' => '506',
14397   'location' => 'category',
14398   'textgroup' => 'profile',
14399   'source' => 'Personal information',
14400   'version' => '1',
14401 ))
14402 ->values(array(
14403   'lid' => '507',
14404   'location' => 'field:profile_biography:title',
14405   'textgroup' => 'profile',
14406   'source' => 'Biography',
14407   'version' => '1',
14408 ))
14409 ->values(array(
14410   'lid' => '508',
14411   'location' => 'field:profile_biography:explanation',
14412   'textgroup' => 'profile',
14413   'source' => 'Tell people a little bit about yourself',
14414   'version' => '1',
14415 ))
14416 ->values(array(
14417   'lid' => '509',
14418   'location' => 'field:profile_sell_Address:title',
14419   'textgroup' => 'profile',
14420   'source' => 'Sell your email address?',
14421   'version' => '1',
14422 ))
14423 ->values(array(
14424   'lid' => '510',
14425   'location' => 'field:profile_sell_Address:explanation',
14426   'textgroup' => 'profile',
14427   'source' => "If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
14428   'version' => '1',
14429 ))
14430 ->values(array(
14431   'lid' => '511',
14432   'location' => 'category',
14433   'textgroup' => 'profile',
14434   'source' => 'Communication preferences',
14435   'version' => '1',
14436 ))
14437 ->values(array(
14438   'lid' => '512',
14439   'location' => 'field:profile_sold_to:title',
14440   'textgroup' => 'profile',
14441   'source' => 'Sales Category',
14442   'version' => '1',
14443 ))
14444 ->values(array(
14445   'lid' => '513',
14446   'location' => 'field:profile_sold_to:explanation',
14447   'textgroup' => 'profile',
14448   'source' => "Select the sales categories to which this user's address was sold.",
14449   'version' => '1',
14450 ))
14451 ->values(array(
14452   'lid' => '514',
14453   'location' => 'field:profile_sold_to:options',
14454   'textgroup' => 'profile',
14455   'source' => "Pill spammers\r\nFitness spammers\r\nBack\\slash\r\nForward/slash\r\nDot.in.the.middle",
14456   'version' => '1',
14457 ))
14458 ->values(array(
14459   'lid' => '515',
14460   'location' => 'category',
14461   'textgroup' => 'profile',
14462   'source' => 'Administrative data',
14463   'version' => '1',
14464 ))
14465 ->values(array(
14466   'lid' => '516',
14467   'location' => 'field:profile_bands:title',
14468   'textgroup' => 'profile',
14469   'source' => 'Favorite bands',
14470   'version' => '1',
14471 ))
14472 ->values(array(
14473   'lid' => '517',
14474   'location' => 'field:profile_bands:explanation',
14475   'textgroup' => 'profile',
14476   'source' => "Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
14477   'version' => '1',
14478 ))
14479 ->values(array(
14480   'lid' => '518',
14481   'location' => 'field:profile_birthdate:title',
14482   'textgroup' => 'profile',
14483   'source' => 'Birthdate',
14484   'version' => '1',
14485 ))
14486 ->values(array(
14487   'lid' => '519',
14488   'location' => 'field:profile_birthdate:explanation',
14489   'textgroup' => 'profile',
14490   'source' => "Enter your birth date and we'll send you a coupon.",
14491   'version' => '1',
14492 ))
14493 ->values(array(
14494   'lid' => '520',
14495   'location' => 'field:profile_really_really_love_migrations:title',
14496   'textgroup' => 'profile',
14497   'source' => 'I really, really, really love migrations',
14498   'version' => '1',
14499 ))
14500 ->values(array(
14501   'lid' => '521',
14502   'location' => 'field:profile_really_really_love_migrations:explanation',
14503   'textgroup' => 'profile',
14504   'source' => 'If you check this box, you love migrations.',
14505   'version' => '1',
14506 ))
14507 ->values(array(
14508   'lid' => '522',
14509   'location' => 'field:profile_blog:title',
14510   'textgroup' => 'profile',
14511   'source' => 'Blog',
14512   'version' => '1',
14513 ))
14514 ->values(array(
14515   'lid' => '523',
14516   'location' => 'field:profile_blog:explanation',
14517   'textgroup' => 'profile',
14518   'source' => 'Paste the full URL, including http://, of your personal blog.',
14519   'version' => '1',
14520 ))
14521 ->values(array(
14522   'lid' => '524',
14523   'location' => 'block:1:title',
14524   'textgroup' => 'blocks',
14525   'source' => 'Static Block',
14526   'version' => '1',
14527 ))
14528 ->values(array(
14529   'lid' => '525',
14530   'location' => 'block:1:body',
14531   'textgroup' => 'blocks',
14532   'source' => '<h3>My first custom block body</h3>',
14533   'version' => '1',
14534 ))
14535 ->values(array(
14536   'lid' => '526',
14537   'location' => 'block:2:title',
14538   'textgroup' => 'blocks',
14539   'source' => 'Another Static Block',
14540   'version' => '1',
14541 ))
14542 ->values(array(
14543   'lid' => '527',
14544   'location' => 'block:2:body',
14545   'textgroup' => 'blocks',
14546   'source' => '<h3>My second custom block body</h3>',
14547   'version' => '1',
14548 ))
14549 ->values(array(
14550   'lid' => '528',
14551   'location' => 'vocabulary:4:name',
14552   'textgroup' => 'taxonomy',
14553   'source' => 'Tags',
14554   'version' => '1',
14555 ))
14556 ->values(array(
14557   'lid' => '529',
14558   'location' => 'vocabulary:1:name',
14559   'textgroup' => 'taxonomy',
14560   'source' => 'vocabulary 1 (i=0)',
14561   'version' => '1',
14562 ))
14563 ->values(array(
14564   'lid' => '530',
14565   'location' => 'vocabulary:2:name',
14566   'textgroup' => 'taxonomy',
14567   'source' => 'vocabulary 2 (i=1)',
14568   'version' => '1',
14569 ))
14570 ->values(array(
14571   'lid' => '531',
14572   'location' => 'vocabulary:3:name',
14573   'textgroup' => 'taxonomy',
14574   'source' => 'vocabulary 3 (i=2)',
14575   'version' => '1',
14576 ))
14577 ->values(array(
14578   'lid' => '532',
14579   'location' => 'vocabulary:5:name',
14580   'textgroup' => 'taxonomy',
14581   'source' => 'vocabulary name much longer than thirty two characters',
14582   'version' => '1',
14583 ))
14584 ->values(array(
14585   'lid' => '533',
14586   'location' => 'type:article:name',
14587   'textgroup' => 'nodetype',
14588   'source' => 'Article',
14589   'version' => '1',
14590 ))
14591 ->values(array(
14592   'lid' => '534',
14593   'location' => 'type:article:title',
14594   'textgroup' => 'nodetype',
14595   'source' => 'Title',
14596   'version' => '1',
14597 ))
14598 ->values(array(
14599   'lid' => '535',
14600   'location' => 'type:article:body',
14601   'textgroup' => 'nodetype',
14602   'source' => 'Body',
14603   'version' => '1',
14604 ))
14605 ->values(array(
14606   'lid' => '536',
14607   'location' => 'type:article:description',
14608   'textgroup' => 'nodetype',
14609   'source' => 'An <em>article</em>, content type.',
14610   'version' => '1',
14611 ))
14612 ->values(array(
14613   'lid' => '537',
14614   'location' => 'type:company:name',
14615   'textgroup' => 'nodetype',
14616   'source' => 'Company',
14617   'version' => '1',
14618 ))
14619 ->values(array(
14620   'lid' => '538',
14621   'location' => 'type:company:title',
14622   'textgroup' => 'nodetype',
14623   'source' => 'Name',
14624   'version' => '1',
14625 ))
14626 ->values(array(
14627   'lid' => '539',
14628   'location' => 'type:company:body',
14629   'textgroup' => 'nodetype',
14630   'source' => 'Description',
14631   'version' => '1',
14632 ))
14633 ->values(array(
14634   'lid' => '540',
14635   'location' => 'type:company:description',
14636   'textgroup' => 'nodetype',
14637   'source' => 'Company node type',
14638   'version' => '1',
14639 ))
14640 ->values(array(
14641   'lid' => '541',
14642   'location' => 'type:employee:name',
14643   'textgroup' => 'nodetype',
14644   'source' => 'Employee',
14645   'version' => '1',
14646 ))
14647 ->values(array(
14648   'lid' => '542',
14649   'location' => 'type:employee:title',
14650   'textgroup' => 'nodetype',
14651   'source' => 'Name',
14652   'version' => '1',
14653 ))
14654 ->values(array(
14655   'lid' => '543',
14656   'location' => 'type:employee:body',
14657   'textgroup' => 'nodetype',
14658   'source' => 'Bio',
14659   'version' => '1',
14660 ))
14661 ->values(array(
14662   'lid' => '544',
14663   'location' => 'type:employee:description',
14664   'textgroup' => 'nodetype',
14665   'source' => 'Employee node type',
14666   'version' => '1',
14667 ))
14668 ->values(array(
14669   'lid' => '545',
14670   'location' => 'type:sponsor:name',
14671   'textgroup' => 'nodetype',
14672   'source' => 'Sponsor',
14673   'version' => '1',
14674 ))
14675 ->values(array(
14676   'lid' => '546',
14677   'location' => 'type:sponsor:title',
14678   'textgroup' => 'nodetype',
14679   'source' => 'Name',
14680   'version' => '1',
14681 ))
14682 ->values(array(
14683   'lid' => '547',
14684   'location' => 'type:sponsor:body',
14685   'textgroup' => 'nodetype',
14686   'source' => 'Body',
14687   'version' => '1',
14688 ))
14689 ->values(array(
14690   'lid' => '548',
14691   'location' => 'type:sponsor:description',
14692   'textgroup' => 'nodetype',
14693   'source' => 'Sponsor node type',
14694   'version' => '1',
14695 ))
14696 ->values(array(
14697   'lid' => '549',
14698   'location' => 'type:story:name',
14699   'textgroup' => 'nodetype',
14700   'source' => 'Story',
14701   'version' => '1',
14702 ))
14703 ->values(array(
14704   'lid' => '550',
14705   'location' => 'type:story:title',
14706   'textgroup' => 'nodetype',
14707   'source' => 'Title',
14708   'version' => '1',
14709 ))
14710 ->values(array(
14711   'lid' => '551',
14712   'location' => 'type:story:body',
14713   'textgroup' => 'nodetype',
14714   'source' => 'Body',
14715   'version' => '1',
14716 ))
14717 ->values(array(
14718   'lid' => '552',
14719   'location' => 'type:story:description',
14720   'textgroup' => 'nodetype',
14721   '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.",
14722   'version' => '1',
14723 ))
14724 ->values(array(
14725   'lid' => '553',
14726   'location' => 'type:test_event:name',
14727   'textgroup' => 'nodetype',
14728   'source' => 'Migrate test event',
14729   'version' => '1',
14730 ))
14731 ->values(array(
14732   'lid' => '554',
14733   'location' => 'type:test_event:title',
14734   'textgroup' => 'nodetype',
14735   'source' => 'Event Name',
14736   'version' => '1',
14737 ))
14738 ->values(array(
14739   'lid' => '555',
14740   'location' => 'type:test_event:body',
14741   'textgroup' => 'nodetype',
14742   'source' => 'Body',
14743   'version' => '1',
14744 ))
14745 ->values(array(
14746   'lid' => '556',
14747   'location' => 'type:test_event:description',
14748   'textgroup' => 'nodetype',
14749   'source' => 'test event description here',
14750   'version' => '1',
14751 ))
14752 ->values(array(
14753   'lid' => '558',
14754   'location' => 'type:test_page:name',
14755   'textgroup' => 'nodetype',
14756   'source' => 'Migrate test page',
14757   'version' => '1',
14758 ))
14759 ->values(array(
14760   'lid' => '559',
14761   'location' => 'type:test_page:title',
14762   'textgroup' => 'nodetype',
14763   'source' => 'Title',
14764   'version' => '1',
14765 ))
14766 ->values(array(
14767   'lid' => '560',
14768   'location' => 'type:test_page:body',
14769   'textgroup' => 'nodetype',
14770   'source' => 'This is the body field label',
14771   'version' => '1',
14772 ))
14773 ->values(array(
14774   'lid' => '561',
14775   'location' => 'type:test_page:description',
14776   'textgroup' => 'nodetype',
14777   '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.",
14778   'version' => '1',
14779 ))
14780 ->values(array(
14781   'lid' => '562',
14782   'location' => 'type:test_planet:name',
14783   'textgroup' => 'nodetype',
14784   'source' => 'Migrate test planet',
14785   'version' => '1',
14786 ))
14787 ->values(array(
14788   'lid' => '563',
14789   'location' => 'type:test_planet:title',
14790   'textgroup' => 'nodetype',
14791   'source' => 'Title',
14792   'version' => '1',
14793 ))
14794 ->values(array(
14795   'lid' => '564',
14796   'location' => 'type:test_planet:body',
14797   'textgroup' => 'nodetype',
14798   'source' => 'Body',
14799   'version' => '1',
14800 ))
14801 ->values(array(
14802   'lid' => '565',
14803   'location' => 'type:test_planet:description',
14804   'textgroup' => 'nodetype',
14805   '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.",
14806   'version' => '1',
14807 ))
14808 ->values(array(
14809   'lid' => '566',
14810   'location' => 'type:test_story:name',
14811   'textgroup' => 'nodetype',
14812   'source' => 'Migrate test story',
14813   'version' => '1',
14814 ))
14815 ->values(array(
14816   'lid' => '567',
14817   'location' => 'type:test_story:title',
14818   'textgroup' => 'nodetype',
14819   'source' => 'Title',
14820   'version' => '1',
14821 ))
14822 ->values(array(
14823   'lid' => '568',
14824   'location' => 'type:test_story:body',
14825   'textgroup' => 'nodetype',
14826   'source' => 'Body',
14827   'version' => '1',
14828 ))
14829 ->values(array(
14830   'lid' => '569',
14831   'location' => 'type:test_story:description',
14832   'textgroup' => 'nodetype',
14833   '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.",
14834   'version' => '1',
14835 ))
14836 ->values(array(
14837   'lid' => '570',
14838   'location' => 'field:story-field_test_exclude_unset:widget_label',
14839   'textgroup' => 'cck',
14840   'source' => 'Text Field',
14841   'version' => '1',
14842 ))
14843 ->values(array(
14844   'lid' => '571',
14845   'location' => 'field:story-field_test_exclude_unset:widget_description',
14846   'textgroup' => 'cck',
14847   'source' => 'An example text field without exclude.',
14848   'version' => '1',
14849 ))
14850 ->values(array(
14851   'lid' => '572',
14852   'location' => 'field:story-field_test_two:widget_label',
14853   'textgroup' => 'cck',
14854   'source' => 'Integer Field',
14855   'version' => '1',
14856 ))
14857 ->values(array(
14858   'lid' => '573',
14859   'location' => 'field:story-field_test_two:widget_description',
14860   'textgroup' => 'cck',
14861   'source' => 'An example integer field.',
14862   'version' => '1',
14863 ))
14864 ->values(array(
14865   'lid' => '574',
14866   'location' => 'field:story-field_test:widget_label',
14867   'textgroup' => 'cck',
14868   'source' => 'Text Field',
14869   'version' => '1',
14870 ))
14871 ->values(array(
14872   'lid' => '575',
14873   'location' => 'field:story-field_test:widget_description',
14874   'textgroup' => 'cck',
14875   'source' => 'An example text field.',
14876   'version' => '1',
14877 ))
14878 ->values(array(
14879   'lid' => '576',
14880   'location' => 'field:story-field_test_three:widget_label',
14881   'textgroup' => 'cck',
14882   'source' => 'Decimal Field',
14883   'version' => '1',
14884 ))
14885 ->values(array(
14886   'lid' => '577',
14887   'location' => 'field:story-field_test_three:widget_description',
14888   'textgroup' => 'cck',
14889   'source' => 'An example decimal field.',
14890   'version' => '1',
14891 ))
14892 ->values(array(
14893   'lid' => '578',
14894   'location' => 'field:story-field_test_four:widget_label',
14895   'textgroup' => 'cck',
14896   'source' => 'Float Field',
14897   'version' => '1',
14898 ))
14899 ->values(array(
14900   'lid' => '579',
14901   'location' => 'field:story-field_test_four:widget_description',
14902   'textgroup' => 'cck',
14903   'source' => 'An example float field.',
14904   'version' => '1',
14905 ))
14906 ->values(array(
14907   'lid' => '580',
14908   'location' => 'field:story-field_test_identical1:widget_label',
14909   'textgroup' => 'cck',
14910   'source' => 'Integer Field',
14911   'version' => '1',
14912 ))
14913 ->values(array(
14914   'lid' => '581',
14915   'location' => 'field:story-field_test_identical1:widget_description',
14916   'textgroup' => 'cck',
14917   'source' => 'An example integer field.',
14918   'version' => '1',
14919 ))
14920 ->values(array(
14921   'lid' => '582',
14922   'location' => 'field:story-field_test_identical2:widget_label',
14923   'textgroup' => 'cck',
14924   'source' => 'Integer Field',
14925   'version' => '1',
14926 ))
14927 ->values(array(
14928   'lid' => '583',
14929   'location' => 'field:story-field_test_identical2:widget_description',
14930   'textgroup' => 'cck',
14931   'source' => 'An example integer field.',
14932   'version' => '1',
14933 ))
14934 ->values(array(
14935   'lid' => '584',
14936   'location' => 'field:story-field_test_email:widget_label',
14937   'textgroup' => 'cck',
14938   'source' => 'Email Field',
14939   'version' => '1',
14940 ))
14941 ->values(array(
14942   'lid' => '585',
14943   'location' => 'field:story-field_test_email:widget_description',
14944   'textgroup' => 'cck',
14945   'source' => 'An example email field.',
14946   'version' => '1',
14947 ))
14948 ->values(array(
14949   'lid' => '586',
14950   'location' => 'field:story-field_test_link:widget_label',
14951   'textgroup' => 'cck',
14952   'source' => 'Link Field',
14953   'version' => '1',
14954 ))
14955 ->values(array(
14956   'lid' => '587',
14957   'location' => 'field:story-field_test_link:widget_description',
14958   'textgroup' => 'cck',
14959   'source' => 'An example link field.',
14960   'version' => '1',
14961 ))
14962 ->values(array(
14963   'lid' => '588',
14964   'location' => 'field:story-field_test_filefield:widget_label',
14965   'textgroup' => 'cck',
14966   'source' => 'File Field',
14967   'version' => '1',
14968 ))
14969 ->values(array(
14970   'lid' => '589',
14971   'location' => 'field:story-field_test_filefield:widget_description',
14972   'textgroup' => 'cck',
14973   'source' => 'An example image field.',
14974   'version' => '1',
14975 ))
14976 ->values(array(
14977   'lid' => '590',
14978   'location' => 'field:story-field_test_imagefield:widget_label',
14979   'textgroup' => 'cck',
14980   'source' => 'Image Field',
14981   'version' => '1',
14982 ))
14983 ->values(array(
14984   'lid' => '591',
14985   'location' => 'field:story-field_test_imagefield:widget_description',
14986   'textgroup' => 'cck',
14987   'source' => 'An example image field.',
14988   'version' => '1',
14989 ))
14990 ->values(array(
14991   'lid' => '592',
14992   'location' => 'field:story-field_test_date:widget_label',
14993   'textgroup' => 'cck',
14994   'source' => 'Date Field',
14995   'version' => '1',
14996 ))
14997 ->values(array(
14998   'lid' => '593',
14999   'location' => 'field:story-field_test_date:widget_description',
15000   'textgroup' => 'cck',
15001   'source' => 'An example date field.',
15002   'version' => '1',
15003 ))
15004 ->values(array(
15005   'lid' => '594',
15006   'location' => 'field:story-field_test_datestamp:widget_label',
15007   'textgroup' => 'cck',
15008   'source' => 'Date Stamp Field',
15009   'version' => '1',
15010 ))
15011 ->values(array(
15012   'lid' => '595',
15013   'location' => 'field:story-field_test_datestamp:widget_description',
15014   'textgroup' => 'cck',
15015   'source' => 'An example date stamp field.',
15016   'version' => '1',
15017 ))
15018 ->values(array(
15019   'lid' => '596',
15020   'location' => 'field:story-field_test_datetime:widget_label',
15021   'textgroup' => 'cck',
15022   'source' => 'Datetime Field',
15023   'version' => '1',
15024 ))
15025 ->values(array(
15026   'lid' => '597',
15027   'location' => 'field:story-field_test_datetime:widget_description',
15028   'textgroup' => 'cck',
15029   'source' => 'An example datetime field.',
15030   'version' => '1',
15031 ))
15032 ->values(array(
15033   'lid' => '598',
15034   'location' => 'field:story-field_test_phone:widget_label',
15035   'textgroup' => 'cck',
15036   'source' => 'Phone Field',
15037   'version' => '1',
15038 ))
15039 ->values(array(
15040   'lid' => '599',
15041   'location' => 'field:story-field_test_phone:widget_description',
15042   'textgroup' => 'cck',
15043   'source' => 'An example phone field.',
15044   'version' => '1',
15045 ))
15046 ->values(array(
15047   'lid' => '600',
15048   'location' => 'field:story-field_test_decimal_radio_buttons:widget_label',
15049   'textgroup' => 'cck',
15050   'source' => 'Decimal Radio Buttons Field',
15051   'version' => '1',
15052 ))
15053 ->values(array(
15054   'lid' => '601',
15055   'location' => 'field:story-field_test_decimal_radio_buttons:widget_description',
15056   'textgroup' => 'cck',
15057   'source' => 'An example decimal field using radio buttons.',
15058   'version' => '1',
15059 ))
15060 ->values(array(
15061   'lid' => '602',
15062   'location' => 'field:field_test_decimal_radio_buttons:option_1.2',
15063   'textgroup' => 'cck',
15064   'source' => '1.2',
15065   'version' => '1',
15066 ))
15067 ->values(array(
15068   'lid' => '603',
15069   'location' => 'field:field_test_decimal_radio_buttons:option_2.1',
15070   'textgroup' => 'cck',
15071   'source' => '2.1',
15072   'version' => '1',
15073 ))
15074 ->values(array(
15075   'lid' => '604',
15076   'location' => 'field:story-field_test_float_single_checkbox:widget_label',
15077   'textgroup' => 'cck',
15078   'source' => 'Float Single Checkbox Field',
15079   'version' => '1',
15080 ))
15081 ->values(array(
15082   'lid' => '605',
15083   'location' => 'field:story-field_test_float_single_checkbox:widget_description',
15084   'textgroup' => 'cck',
15085   'source' => 'An example float field using a single on/off checkbox.',
15086   'version' => '1',
15087 ))
15088 ->values(array(
15089   'lid' => '606',
15090   'location' => 'field:field_test_float_single_checkbox:option_3.142',
15091   'textgroup' => 'cck',
15092   'source' => '3.142',
15093   'version' => '1',
15094 ))
15095 ->values(array(
15096   'lid' => '607',
15097   'location' => 'field:field_test_float_single_checkbox:option_1.234',
15098   'textgroup' => 'cck',
15099   'source' => '1.234',
15100   'version' => '1',
15101 ))
15102 ->values(array(
15103   'lid' => '608',
15104   'location' => 'field:story-field_test_integer_selectlist:widget_label',
15105   'textgroup' => 'cck',
15106   'source' => 'Integer Select List Field',
15107   'version' => '1',
15108 ))
15109 ->values(array(
15110   'lid' => '609',
15111   'location' => 'field:story-field_test_integer_selectlist:widget_description',
15112   'textgroup' => 'cck',
15113   'source' => 'An example integer field using a select list.',
15114   'version' => '1',
15115 ))
15116 ->values(array(
15117   'lid' => '610',
15118   'location' => 'field:field_test_integer_selectlist:option_1234',
15119   'textgroup' => 'cck',
15120   'source' => '1234',
15121   'version' => '1',
15122 ))
15123 ->values(array(
15124   'lid' => '611',
15125   'location' => 'field:field_test_integer_selectlist:option_2341',
15126   'textgroup' => 'cck',
15127   'source' => '2341',
15128   'version' => '1',
15129 ))
15130 ->values(array(
15131   'lid' => '612',
15132   'location' => 'field:field_test_integer_selectlist:option_3412',
15133   'textgroup' => 'cck',
15134   'source' => '3412',
15135   'version' => '1',
15136 ))
15137 ->values(array(
15138   'lid' => '613',
15139   'location' => 'field:field_test_integer_selectlist:option_4123',
15140   'textgroup' => 'cck',
15141   'source' => '4123',
15142   'version' => '1',
15143 ))
15144 ->values(array(
15145   'lid' => '614',
15146   'location' => 'field:story-field_test_text_single_checkbox:widget_label',
15147   'textgroup' => 'cck',
15148   'source' => 'Text Single Checkbox Field',
15149   'version' => '1',
15150 ))
15151 ->values(array(
15152   'lid' => '615',
15153   'location' => 'field:story-field_test_text_single_checkbox:widget_description',
15154   'textgroup' => 'cck',
15155   'source' => 'An example text field using a single on/off checkbox.',
15156   'version' => '1',
15157 ))
15158 ->values(array(
15159   'lid' => '616',
15160   'location' => 'field:field_test_text_single_checkbox:option_0',
15161   'textgroup' => 'cck',
15162   'source' => 'Hello',
15163   'version' => '1',
15164 ))
15165 ->values(array(
15166   'lid' => '617',
15167   'location' => 'field:field_test_text_single_checkbox:option_1',
15168   'textgroup' => 'cck',
15169   'source' => 'Goodbye',
15170   'version' => '1',
15171 ))
15172 ->values(array(
15173   'lid' => '618',
15174   'location' => 'field:story-field_test_text_single_checkbox2:widget_label',
15175   'textgroup' => 'cck',
15176   'source' => 'Text Single Checkbox Field 2',
15177   'version' => '1',
15178 ))
15179 ->values(array(
15180   'lid' => '619',
15181   'location' => 'field:story-field_test_text_single_checkbox2:widget_description',
15182   'textgroup' => 'cck',
15183   'source' => 'Checkbox that uses keys only and no label.',
15184   'version' => '1',
15185 ))
15186 ->values(array(
15187   'lid' => '620',
15188   'location' => 'field:field_test_text_single_checkbox2:option_Off',
15189   'textgroup' => 'cck',
15190   'source' => 'Off',
15191   'version' => '1',
15192 ))
15193 ->values(array(
15194   'lid' => '621',
15195   'location' => 'field:field_test_text_single_checkbox2:option_Hello',
15196   'textgroup' => 'cck',
15197   'source' => 'Hello',
15198   'version' => '1',
15199 ))
15200 ->values(array(
15201   'lid' => '622',
15202   'location' => 'field:test_page-field_test:widget_label',
15203   'textgroup' => 'cck',
15204   'source' => 'Text Field',
15205   'version' => '1',
15206 ))
15207 ->values(array(
15208   'lid' => '623',
15209   'location' => 'field:test_page-field_test:widget_description',
15210   'textgroup' => 'cck',
15211   'source' => 'An example text field.',
15212   'version' => '1',
15213 ))
15214 ->values(array(
15215   'lid' => '624',
15216   'location' => 'field:test_planet-field_multivalue:widget_label',
15217   'textgroup' => 'cck',
15218   'source' => 'Decimal Field',
15219   'version' => '1',
15220 ))
15221 ->values(array(
15222   'lid' => '625',
15223   'location' => 'field:test_planet-field_multivalue:widget_description',
15224   'textgroup' => 'cck',
15225   'source' => 'An example multi-valued decimal field.',
15226   'version' => '1',
15227 ))
15228 ->values(array(
15229   'lid' => '627',
15230   'location' => 'field:test_planet-field_test_text_single_checkbox:widget_description',
15231   'textgroup' => 'cck',
15232   'source' => 'An example text field using a single on/off checkbox.',
15233   'version' => '1',
15234 ))
15235 ->values(array(
15236   'lid' => '628',
15237   'location' => 'misc/tableselect.js',
15238   'textgroup' => 'default',
15239   'source' => 'Select all rows in this table',
15240   'version' => 'none',
15241 ))
15242 ->values(array(
15243   'lid' => '629',
15244   'location' => 'misc/tableselect.js',
15245   'textgroup' => 'default',
15246   'source' => 'Deselect all rows in this table',
15247   'version' => 'none',
15248 ))
15249 ->values(array(
15250   'lid' => '630',
15251   'location' => 'sites/all/modules/filefield/filefield.js',
15252   'textgroup' => 'default',
15253   'source' => 'The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.',
15254   'version' => 'none',
15255 ))
15256 ->values(array(
15257   'lid' => '631',
15258   'location' => 'misc/teaser.js',
15259   'textgroup' => 'default',
15260   'source' => 'Split summary at cursor',
15261   'version' => 'none',
15262 ))
15263 ->values(array(
15264   'lid' => '632',
15265   'location' => 'misc/teaser.js',
15266   'textgroup' => 'default',
15267   'source' => 'Join summary',
15268   'version' => 'none',
15269 ))
15270 ->values(array(
15271   'lid' => '633',
15272   'location' => 'item:140:title',
15273   'textgroup' => 'menu',
15274   'source' => 'Drupal.org',
15275   'version' => '1',
15276 ))
15277 ->values(array(
15278   'lid' => '634',
15279   'location' => 'item:139:title',
15280   'textgroup' => 'menu',
15281   'source' => 'Test 2',
15282   'version' => '1',
15283 ))
15284 ->values(array(
15285   'lid' => '635',
15286   'location' => 'item:139:description',
15287   'textgroup' => 'menu',
15288   'source' => 'Test menu link 2',
15289   'version' => '1',
15290 ))
15291 ->values(array(
15292   'lid' => '636',
15293   'location' => '/?q=fr/admin/settings/site-information',
15294   'textgroup' => 'default',
15295   'source' => 'Site information',
15296   'version' => '6.38-dev',
15297 ))
15298 ->values(array(
15299   'lid' => '637',
15300   'location' => '/?q=fr/admin/settings/site-information',
15301   'textgroup' => 'default',
15302   'source' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
15303   'version' => '6.38-dev',
15304 ))
15305 ->values(array(
15306   'lid' => '638',
15307   'location' => '/?q=fr/admin/settings/site-information',
15308   'textgroup' => 'default',
15309   'source' => 'The name of this website.',
15310   'version' => '6.38-dev',
15311 ))
15312 ->values(array(
15313   'lid' => '639',
15314   'location' => '/?q=fr/admin/settings/site-information',
15315   'textgroup' => 'default',
15316   'source' => 'E-mail address',
15317   'version' => '6.38-dev',
15318 ))
15319 ->values(array(
15320   'lid' => '640',
15321   'location' => '/?q=fr/admin/settings/site-information',
15322   'textgroup' => 'default',
15323   '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.)",
15324   'version' => '6.38-dev',
15325 ))
15326 ->values(array(
15327   'lid' => '641',
15328   'location' => '/?q=fr/admin/settings/site-information',
15329   'textgroup' => 'default',
15330   'source' => 'Slogan',
15331   'version' => '6.38-dev',
15332 ))
15333 ->values(array(
15334   'lid' => '642',
15335   'location' => '/?q=fr/admin/settings/site-information',
15336   'textgroup' => 'default',
15337   'source' => "Your site's motto, tag line, or catchphrase (often displayed alongside the title of the site).",
15338   'version' => '6.38-dev',
15339 ))
15340 ->values(array(
15341   'lid' => '643',
15342   'location' => '/?q=fr/admin/settings/site-information',
15343   'textgroup' => 'default',
15344   'source' => 'Mission',
15345   'version' => '6.38-dev',
15346 ))
15347 ->values(array(
15348   'lid' => '644',
15349   'location' => '/?q=fr/admin/settings/site-information',
15350   'textgroup' => 'default',
15351   'source' => "Your site's mission or focus statement (often prominently displayed on the front page).",
15352   'version' => '6.38-dev',
15353 ))
15354 ->values(array(
15355   'lid' => '645',
15356   'location' => '/?q=fr/admin/settings/site-information',
15357   'textgroup' => 'default',
15358   'source' => 'Footer message',
15359   'version' => '6.38-dev',
15360 ))
15361 ->values(array(
15362   'lid' => '646',
15363   'location' => '/?q=fr/admin/settings/site-information',
15364   'textgroup' => 'default',
15365   'source' => 'This text will be displayed at the bottom of each page. Useful for adding a copyright notice to your pages.',
15366   'version' => '6.38-dev',
15367 ))
15368 ->values(array(
15369   'lid' => '647',
15370   'location' => '/?q=fr/admin/settings/site-information',
15371   'textgroup' => 'default',
15372   'source' => 'Anonymous user',
15373   'version' => '6.38-dev',
15374 ))
15375 ->values(array(
15376   'lid' => '648',
15377   'location' => '/?q=fr/admin/settings/site-information',
15378   'textgroup' => 'default',
15379   'source' => 'Anonymous',
15380   'version' => '6.38-dev',
15381 ))
15382 ->values(array(
15383   'lid' => '649',
15384   'location' => '/?q=fr/admin/settings/site-information',
15385   'textgroup' => 'default',
15386   'source' => 'The name used to indicate anonymous users.',
15387   'version' => '6.38-dev',
15388 ))
15389 ->values(array(
15390   'lid' => '650',
15391   'location' => '/?q=fr/admin/settings/site-information',
15392   'textgroup' => 'default',
15393   'source' => 'Default front page',
15394   'version' => '6.38-dev',
15395 ))
15396 ->values(array(
15397   'lid' => '651',
15398   'location' => '/?q=fr/admin/settings/site-information',
15399   'textgroup' => 'default',
15400   'source' => 'The home page displays content from this relative URL. If unsure, specify "node".',
15401   'version' => '6.38-dev',
15402 ))
15403 ->values(array(
15404   'lid' => '652',
15405   'location' => '/?q=fr/admin/settings/site-information',
15406   'textgroup' => 'default',
15407   'source' => 'Save configuration',
15408   'version' => '6.38-dev',
15409 ))
15410 ->values(array(
15411   'lid' => '653',
15412   'location' => '/?q=fr/admin/settings/site-information',
15413   'textgroup' => 'default',
15414   'source' => 'Reset to defaults',
15415   'version' => '6.38-dev',
15416 ))
15417 ->values(array(
15418   'lid' => '654',
15419   'location' => '/?q=fr/admin/settings/site-information',
15420   'textgroup' => 'default',
15421   'source' => 'This is a multilingual variable.',
15422   'version' => '6.38-dev',
15423 ))
15424 ->values(array(
15425   'lid' => '655',
15426   'location' => '/?q=fr/admin/settings/site-information',
15427   'textgroup' => 'default',
15428   'source' => 'Left sidebar',
15429   'version' => '6.38-dev',
15430 ))
15431 ->values(array(
15432   'lid' => '656',
15433   'location' => '/?q=fr/admin/settings/site-information',
15434   'textgroup' => 'default',
15435   'source' => 'Right sidebar',
15436   'version' => '6.38-dev',
15437 ))
15438 ->values(array(
15439   'lid' => '657',
15440   'location' => '/?q=fr/admin/settings/site-information',
15441   'textgroup' => 'default',
15442   'source' => 'Header',
15443   'version' => '6.38-dev',
15444 ))
15445 ->values(array(
15446   'lid' => '658',
15447   'location' => '/?q=fr/admin/settings/site-information',
15448   'textgroup' => 'default',
15449   'source' => 'Footer',
15450   'version' => '6.38-dev',
15451 ))
15452 ->values(array(
15453   'lid' => '659',
15454   'location' => '/?q=fr/admin/settings/site-information',
15455   'textgroup' => 'default',
15456   'source' => 'RSS feed',
15457   'version' => '6.38-dev',
15458 ))
15459 ->values(array(
15460   'lid' => '660',
15461   'location' => '/?q=fr/admin/settings/site-information',
15462   'textgroup' => 'default',
15463   'source' => '',
15464   'version' => '6.38-dev',
15465 ))
15466 ->values(array(
15467   'lid' => '661',
15468   'location' => '/?q=fr/admin/settings/site-information',
15469   'textgroup' => 'default',
15470   'source' => 'Administer',
15471   'version' => '6.38-dev',
15472 ))
15473 ->values(array(
15474   'lid' => '662',
15475   'location' => '/?q=fr/admin/settings/site-information',
15476   'textgroup' => 'default',
15477   'source' => 'Compact mode',
15478   'version' => '6.38-dev',
15479 ))
15480 ->values(array(
15481   'lid' => '663',
15482   'location' => '/?q=fr/admin/settings/site-information',
15483   'textgroup' => 'default',
15484   'source' => 'Content management',
15485   'version' => '6.38-dev',
15486 ))
15487 ->values(array(
15488   'lid' => '664',
15489   'location' => '/?q=fr/admin/settings/site-information',
15490   'textgroup' => 'default',
15491   'source' => "Manage your site's content.",
15492   'version' => '6.38-dev',
15493 ))
15494 ->values(array(
15495   'lid' => '665',
15496   'location' => '/?q=fr/admin/settings/site-information',
15497   'textgroup' => 'default',
15498   'source' => 'Reports',
15499   'version' => '6.38-dev',
15500 ))
15501 ->values(array(
15502   'lid' => '666',
15503   'location' => '/?q=fr/admin/settings/site-information',
15504   'textgroup' => 'default',
15505   'source' => 'View reports from system logs and other status information.',
15506   'version' => '6.38-dev',
15507 ))
15508 ->values(array(
15509   'lid' => '667',
15510   'location' => '/?q=fr/admin/settings/site-information',
15511   'textgroup' => 'default',
15512   'source' => 'Site building',
15513   'version' => '6.38-dev',
15514 ))
15515 ->values(array(
15516   'lid' => '668',
15517   'location' => '/?q=fr/admin/settings/site-information',
15518   'textgroup' => 'default',
15519   'source' => 'Control how your site looks and feels.',
15520   'version' => '6.38-dev',
15521 ))
15522 ->values(array(
15523   'lid' => '669',
15524   'location' => '/?q=fr/admin/settings/site-information',
15525   'textgroup' => 'default',
15526   'source' => 'Site configuration',
15527   'version' => '6.38-dev',
15528 ))
15529 ->values(array(
15530   'lid' => '670',
15531   'location' => '/?q=fr/admin/settings/site-information',
15532   'textgroup' => 'default',
15533   'source' => 'Adjust basic site configuration options.',
15534   'version' => '6.38-dev',
15535 ))
15536 ->values(array(
15537   'lid' => '671',
15538   'location' => '/?q=fr/admin/settings/site-information',
15539   'textgroup' => 'default',
15540   'source' => 'Actions',
15541   'version' => '6.38-dev',
15542 ))
15543 ->values(array(
15544   'lid' => '672',
15545   'location' => '/?q=fr/admin/settings/site-information',
15546   'textgroup' => 'default',
15547   'source' => 'Manage the actions defined for your site.',
15548   'version' => '6.38-dev',
15549 ))
15550 ->values(array(
15551   'lid' => '673',
15552   'location' => '/?q=fr/admin/settings/site-information',
15553   'textgroup' => 'default',
15554   'source' => 'Administration theme',
15555   'version' => '6.38-dev',
15556 ))
15557 ->values(array(
15558   'lid' => '674',
15559   'location' => '/?q=fr/admin/settings/site-information',
15560   'textgroup' => 'default',
15561   'source' => 'Settings for how your administrative pages should look.',
15562   'version' => '6.38-dev',
15563 ))
15564 ->values(array(
15565   'lid' => '675',
15566   'location' => '/?q=fr/admin/settings/site-information',
15567   'textgroup' => 'default',
15568   'source' => 'Clean URLs',
15569   'version' => '6.38-dev',
15570 ))
15571 ->values(array(
15572   'lid' => '676',
15573   'location' => '/?q=fr/admin/settings/site-information',
15574   'textgroup' => 'default',
15575   'source' => 'Enable or disable clean URLs for your site.',
15576   'version' => '6.38-dev',
15577 ))
15578 ->values(array(
15579   'lid' => '677',
15580   'location' => 'date.module:39',
15581   'textgroup' => 'default',
15582   'source' => 'Date and time',
15583   'version' => '6.38-dev',
15584 ))
15585 ->values(array(
15586   'lid' => '678',
15587   'location' => '/?q=fr/admin/settings/site-information',
15588   'textgroup' => 'default',
15589   'source' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
15590   'version' => '6.38-dev',
15591 ))
15592 ->values(array(
15593   'lid' => '679',
15594   'location' => '/?q=fr/admin/settings/site-information',
15595   'textgroup' => 'default',
15596   'source' => 'Error reporting',
15597   'version' => '6.38-dev',
15598 ))
15599 ->values(array(
15600   'lid' => '680',
15601   'location' => '/?q=fr/admin/settings/site-information',
15602   'textgroup' => 'default',
15603   'source' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.',
15604   'version' => '6.38-dev',
15605 ))
15606 ->values(array(
15607   'lid' => '681',
15608   'location' => '/?q=fr/admin/settings/site-information',
15609   'textgroup' => 'default',
15610   'source' => 'File system',
15611   'version' => '6.38-dev',
15612 ))
15613 ->values(array(
15614   'lid' => '682',
15615   'location' => '/?q=fr/admin/settings/site-information',
15616   'textgroup' => 'default',
15617   'source' => 'Tell Drupal where to store uploaded files and how they are accessed.',
15618   'version' => '6.38-dev',
15619 ))
15620 ->values(array(
15621   'lid' => '683',
15622   'location' => '/?q=fr/admin/settings/site-information',
15623   'textgroup' => 'default',
15624   'source' => 'File uploads',
15625   'version' => '6.38-dev',
15626 ))
15627 ->values(array(
15628   'lid' => '684',
15629   'location' => '/?q=fr/admin/settings/site-information',
15630   'textgroup' => 'default',
15631   'source' => 'Control how files may be attached to content.',
15632   'version' => '6.38-dev',
15633 ))
15634 ->values(array(
15635   'lid' => '685',
15636   'location' => '/?q=fr/admin/settings/site-information',
15637   'textgroup' => 'default',
15638   'source' => 'Image toolkit',
15639   'version' => '6.38-dev',
15640 ))
15641 ->values(array(
15642   'lid' => '686',
15643   'location' => '/?q=fr/admin/settings/site-information',
15644   'textgroup' => 'default',
15645   'source' => 'Choose which image toolkit to use if you have installed optional toolkits.',
15646   'version' => '6.38-dev',
15647 ))
15648 ->values(array(
15649   'lid' => '687',
15650   'location' => '/?q=fr/admin/settings/site-information',
15651   'textgroup' => 'default',
15652   'source' => 'Input formats',
15653   'version' => '6.38-dev',
15654 ))
15655 ->values(array(
15656   'lid' => '688',
15657   'location' => '/?q=fr/admin/settings/site-information',
15658   'textgroup' => 'default',
15659   'source' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
15660   'version' => '6.38-dev',
15661 ))
15662 ->values(array(
15663   'lid' => '689',
15664   'location' => '/?q=fr/admin/settings/site-information',
15665   'textgroup' => 'default',
15666   'source' => 'Logging and alerts',
15667   'version' => '6.38-dev',
15668 ))
15669 ->values(array(
15670   'lid' => '690',
15671   'location' => '/?q=fr/admin/settings/site-information',
15672   'textgroup' => 'default',
15673   'source' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.",
15674   'version' => '6.38-dev',
15675 ))
15676 ->values(array(
15677   'lid' => '691',
15678   'location' => '/?q=fr/admin/settings/site-information',
15679   'textgroup' => 'default',
15680   'source' => 'Performance',
15681   'version' => '6.38-dev',
15682 ))
15683 ->values(array(
15684   'lid' => '692',
15685   'location' => '/?q=fr/admin/settings/site-information',
15686   'textgroup' => 'default',
15687   'source' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
15688   'version' => '6.38-dev',
15689 ))
15690 ->values(array(
15691   'lid' => '693',
15692   'location' => '/?q=fr/admin/settings/site-information',
15693   'textgroup' => 'default',
15694   'source' => 'Site maintenance',
15695   'version' => '6.38-dev',
15696 ))
15697 ->values(array(
15698   'lid' => '694',
15699   'location' => '/?q=fr/admin/settings/site-information',
15700   'textgroup' => 'default',
15701   'source' => 'Take the site off-line for maintenance or bring it back online.',
15702   'version' => '6.38-dev',
15703 ))
15704 ->values(array(
15705   'lid' => '695',
15706   'location' => '/?q=fr/admin/settings/site-information',
15707   'textgroup' => 'default',
15708   'source' => 'Events',
15709   'version' => '6.38-dev',
15710 ))
15711 ->values(array(
15712   'lid' => '696',
15713   'location' => '/?q=fr/admin/settings/site-information',
15714   'textgroup' => 'default',
15715   'source' => 'Set up how your site handles events.',
15716   'version' => '6.38-dev',
15717 ))
15718 ->values(array(
15719   'lid' => '697',
15720   'location' => '/?q=fr/admin/settings/site-information',
15721   'textgroup' => 'default',
15722   'source' => 'CCK Email Contact Form Settings',
15723   'version' => '6.38-dev',
15724 ))
15725 ->values(array(
15726   'lid' => '698',
15727   'location' => '/?q=fr/admin/settings/site-information',
15728   'textgroup' => 'default',
15729   'source' => 'Administer flood control settings for email contact forms',
15730   'version' => '6.38-dev',
15731 ))
15732 ->values(array(
15733   'lid' => '699',
15734   'location' => '/?q=fr/admin/settings/site-information',
15735   'textgroup' => 'default',
15736   'source' => 'ImageAPI',
15737   'version' => '6.38-dev',
15738 ))
15739 ->values(array(
15740   'lid' => '700',
15741   'location' => '/?q=fr/admin/settings/site-information',
15742   'textgroup' => 'default',
15743   'source' => 'Configure ImageAPI.',
15744   'version' => '6.38-dev',
15745 ))
15746 ->values(array(
15747   'lid' => '701',
15748   'location' => '/?q=fr/admin/settings/site-information',
15749   'textgroup' => 'default',
15750   'source' => 'Languages',
15751   'version' => '6.38-dev',
15752 ))
15753 ->values(array(
15754   'lid' => '702',
15755   'location' => '/?q=fr/admin/settings/site-information',
15756   'textgroup' => 'default',
15757   'source' => 'Configure languages for content and the user interface.',
15758   'version' => '6.38-dev',
15759 ))
15760 ->values(array(
15761   'lid' => '703',
15762   'location' => '/?q=fr/admin/settings/site-information',
15763   'textgroup' => 'default',
15764   'source' => 'Variables',
15765   'version' => '6.38-dev',
15766 ))
15767 ->values(array(
15768   'lid' => '704',
15769   'location' => '/?q=fr/admin/settings/site-information',
15770   'textgroup' => 'default',
15771   'source' => 'Edit and delete site variables.',
15772   'version' => '6.38-dev',
15773 ))
15774 ->values(array(
15775   'lid' => '705',
15776   'location' => '/?q=fr/admin/settings/site-information',
15777   'textgroup' => 'default',
15778   'source' => 'User management',
15779   'version' => '6.38-dev',
15780 ))
15781 ->values(array(
15782   'lid' => '706',
15783   'location' => '/?q=fr/admin/settings/site-information',
15784   'textgroup' => 'default',
15785   'source' => "Manage your site's users, groups and access to site features.",
15786   'version' => '6.38-dev',
15787 ))
15788 ->values(array(
15789   'lid' => '707',
15790   'location' => '/?q=fr/admin/settings/site-information',
15791   'textgroup' => 'default',
15792   'source' => 'Contact',
15793   'version' => '6.38-dev',
15794 ))
15795 ->values(array(
15796   'lid' => '708',
15797   'location' => '/?q=fr/admin/settings/site-information',
15798   'textgroup' => 'default',
15799   'source' => 'Log out',
15800   'version' => '6.38-dev',
15801 ))
15802 ->values(array(
15803   'lid' => '709',
15804   'location' => '/?q=fr/admin/settings/site-information',
15805   'textgroup' => 'default',
15806   'source' => 'User account',
15807   'version' => '6.38-dev',
15808 ))
15809 ->values(array(
15810   'lid' => '710',
15811   'location' => '/?q=fr/admin/settings/site-information',
15812   'textgroup' => 'default',
15813   'source' => 'User list',
15814   'version' => '6.38-dev',
15815 ))
15816 ->values(array(
15817   'lid' => '711',
15818   'location' => '/?q=fr/admin/settings/site-information',
15819   'textgroup' => 'default',
15820   'source' => 'Autocomplete taxonomy',
15821   'version' => '6.38-dev',
15822 ))
15823 ->values(array(
15824   'lid' => '712',
15825   'location' => '/?q=fr/admin/settings/site-information',
15826   'textgroup' => 'default',
15827   'source' => 'Compose tips',
15828   'version' => '6.38-dev',
15829 ))
15830 ->values(array(
15831   'lid' => '713',
15832   'location' => '/?q=fr/admin/settings/site-information',
15833   'textgroup' => 'default',
15834   'source' => 'Create content',
15835   'version' => '6.38-dev',
15836 ))
15837 ->values(array(
15838   'lid' => '714',
15839   'location' => '/?q=fr/admin/settings/site-information',
15840   'textgroup' => 'default',
15841   'source' => 'Delete comment',
15842   'version' => '6.38-dev',
15843 ))
15844 ->values(array(
15845   'lid' => '715',
15846   'location' => '/?q=fr/admin/settings/site-information',
15847   'textgroup' => 'default',
15848   'source' => 'Edit comment',
15849   'version' => '6.38-dev',
15850 ))
15851 ->values(array(
15852   'lid' => '716',
15853   'location' => '/?q=fr/admin/settings/site-information',
15854   'textgroup' => 'default',
15855   'source' => 'File download',
15856   'version' => '6.38-dev',
15857 ))
15858 ->values(array(
15859   'lid' => '717',
15860   'location' => '/?q=fr/admin/settings/site-information',
15861   'textgroup' => 'default',
15862   'source' => 'User autocomplete',
15863   'version' => '6.38-dev',
15864 ))
15865 ->values(array(
15866   'lid' => '718',
15867   'location' => '/?q=fr/admin/settings/site-information',
15868   'textgroup' => 'default',
15869   'source' => 'User timezone',
15870   'version' => '6.38-dev',
15871 ))
15872 ->values(array(
15873   'lid' => '719',
15874   'location' => '/?q=fr/admin/settings/site-information',
15875   'textgroup' => 'default',
15876   'source' => 'My account',
15877   'version' => '6.38-dev',
15878 ))
15879 ->values(array(
15880   'lid' => '720',
15881   'location' => 'content_admin.inc:199',
15882   'textgroup' => 'default',
15883   'source' => 'Delete',
15884   'version' => '6.38-dev',
15885 ))
15886 ->values(array(
15887   'lid' => '721',
15888   'location' => '/?q=fr/admin/settings/site-information',
15889   'textgroup' => 'default',
15890   'source' => 'Feed aggregator',
15891   'version' => '6.38-dev',
15892 ))
15893 ->values(array(
15894   'lid' => '722',
15895   'location' => '/?q=fr/admin/settings/site-information',
15896   'textgroup' => 'default',
15897   'source' => 'Books',
15898   'version' => '6.38-dev',
15899 ))
15900 ->values(array(
15901   'lid' => '723',
15902   'location' => '/?q=fr/admin/settings/site-information',
15903   'textgroup' => 'default',
15904   'source' => 'Save string',
15905   'version' => '6.38-dev',
15906 ))
15907 ->values(array(
15908   'lid' => '724',
15909   'location' => '/?q=fr/admin/settings/site-information',
15910   'textgroup' => 'default',
15911   'source' => 'Node title autocomplete',
15912   'version' => '6.38-dev',
15913 ))
15914 ->values(array(
15915   'lid' => '725',
15916   'location' => '/?q=fr/admin/settings/site-information',
15917   'textgroup' => 'default',
15918   'source' => 'View user profile.',
15919   'version' => '6.38-dev',
15920 ))
15921 ->values(array(
15922   'lid' => '726',
15923   'location' => '/?q=fr/admin/settings/site-information',
15924   'textgroup' => 'default',
15925   'source' => "Who's new",
15926   'version' => '6.38-dev',
15927 ))
15928 ->values(array(
15929   'lid' => '727',
15930   'location' => '/?q=fr/admin/settings/site-information',
15931   'textgroup' => 'default',
15932   'source' => 'Powered by Drupal, an open source content management system',
15933   'version' => '6.38-dev',
15934 ))
15935 ->values(array(
15936   'lid' => '728',
15937   'location' => '/?q=fr/admin/settings/site-information',
15938   'textgroup' => 'default',
15939   'source' => 'Home',
15940   'version' => '6.38-dev',
15941 ))
15942 ->values(array(
15943   'lid' => '729',
15944   'location' => '/?q=fr/admin/settings/site-information',
15945   'textgroup' => 'default',
15946   'source' => 'The selected file %file could not be uploaded, because the destination %directory is not properly configured.',
15947   'version' => '6.38-dev',
15948 ))
15949 ->values(array(
15950   'lid' => '730',
15951   'location' => '/?q=fr/admin/settings/site-information',
15952   'textgroup' => 'default',
15953   'source' => 'French',
15954   'version' => '6.38-dev',
15955 ))
15956 ->values(array(
15957   'lid' => '731',
15958   'location' => '/?q=fr/admin/settings/site-information',
15959   'textgroup' => 'default',
15960   'source' => 'The configuration options have been saved.',
15961   'version' => '6.38-dev',
15962 ))
15963 ->values(array(
15964   'lid' => '732',
15965   'location' => '/?q=fr/admin/settings/site-information',
15966   'textgroup' => 'default',
15967   'source' => 'Long',
15968   'version' => '6.38-dev',
15969 ))
15970 ->values(array(
15971   'lid' => '733',
15972   'location' => '/?q=fr/admin/settings/site-information',
15973   'textgroup' => 'default',
15974   'source' => 'Medium',
15975   'version' => '6.38-dev',
15976 ))
15977 ->values(array(
15978   'lid' => '734',
15979   'location' => '/?q=fr/admin/settings/site-information',
15980   'textgroup' => 'default',
15981   'source' => 'Short',
15982   'version' => '6.38-dev',
15983 ))
15984 ->values(array(
15985   'lid' => '735',
15986   'location' => '/?q=fr/admin/settings/site-information',
15987   'textgroup' => 'default',
15988   'source' => 'The e-mail address %mail is not valid.',
15989   'version' => '6.38-dev',
15990 ))
15991 ->values(array(
15992   'lid' => '736',
15993   'location' => '/?q=fr/admin/settings/error-reporting',
15994   'textgroup' => 'default',
15995   'source' => 'Default 403 (access denied) page',
15996   'version' => '6.38-dev',
15997 ))
15998 ->values(array(
15999   'lid' => '737',
16000   'location' => '/?q=fr/admin/settings/error-reporting',
16001   'textgroup' => 'default',
16002   'source' => 'This page is displayed when the requested document is denied to the current user. If unsure, specify nothing.',
16003   'version' => '6.38-dev',
16004 ))
16005 ->values(array(
16006   'lid' => '738',
16007   'location' => '/?q=fr/admin/settings/error-reporting',
16008   'textgroup' => 'default',
16009   'source' => 'Default 404 (not found) page',
16010   'version' => '6.38-dev',
16011 ))
16012 ->values(array(
16013   'lid' => '739',
16014   'location' => '/?q=fr/admin/settings/error-reporting',
16015   'textgroup' => 'default',
16016   'source' => 'This page is displayed when no other content matches the requested document. If unsure, specify nothing.',
16017   'version' => '6.38-dev',
16018 ))
16019 ->values(array(
16020   'lid' => '740',
16021   'location' => '/?q=fr/admin/settings/error-reporting',
16022   'textgroup' => 'default',
16023   'source' => 'Write errors to the log',
16024   'version' => '6.38-dev',
16025 ))
16026 ->values(array(
16027   'lid' => '741',
16028   'location' => '/?q=fr/admin/settings/error-reporting',
16029   'textgroup' => 'default',
16030   'source' => 'Write errors to the log and to the screen',
16031   'version' => '6.38-dev',
16032 ))
16033 ->values(array(
16034   'lid' => '742',
16035   'location' => '/?q=fr/admin/settings/error-reporting',
16036   'textgroup' => 'default',
16037   '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.',
16038   'version' => '6.38-dev',
16039 ))
16040 ->values(array(
16041   'lid' => '743',
16042   'location' => '/?q=fr/admin/user',
16043   'textgroup' => 'default',
16044   'source' => 'Access rules',
16045   'version' => '6.38-dev',
16046 ))
16047 ->values(array(
16048   'lid' => '744',
16049   'location' => '/?q=fr/admin/user',
16050   'textgroup' => 'default',
16051   'source' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.',
16052   'version' => '6.38-dev',
16053 ))
16054 ->values(array(
16055   'lid' => '745',
16056   'location' => '/?q=fr/admin/user',
16057   'textgroup' => 'default',
16058   'source' => 'Permissions',
16059   'version' => '6.38-dev',
16060 ))
16061 ->values(array(
16062   'lid' => '746',
16063   'location' => '/?q=fr/admin/user',
16064   'textgroup' => 'default',
16065   'source' => 'Determine access to features by selecting permissions for roles.',
16066   'version' => '6.38-dev',
16067 ))
16068 ->values(array(
16069   'lid' => '747',
16070   'location' => '/?q=fr/admin/user',
16071   'textgroup' => 'default',
16072   'source' => 'Profiles',
16073   'version' => '6.38-dev',
16074 ))
16075 ->values(array(
16076   'lid' => '748',
16077   'location' => '/?q=fr/admin/user',
16078   'textgroup' => 'default',
16079   'source' => 'Create customizable fields for your users.',
16080   'version' => '6.38-dev',
16081 ))
16082 ->values(array(
16083   'lid' => '749',
16084   'location' => '/?q=fr/admin/user',
16085   'textgroup' => 'default',
16086   'source' => 'Roles',
16087   'version' => '6.38-dev',
16088 ))
16089 ->values(array(
16090   'lid' => '750',
16091   'location' => '/?q=fr/admin/user',
16092   'textgroup' => 'default',
16093   'source' => 'List, edit, or add user roles.',
16094   'version' => '6.38-dev',
16095 ))
16096 ->values(array(
16097   'lid' => '751',
16098   'location' => '/?q=fr/admin/user',
16099   'textgroup' => 'default',
16100   'source' => 'User settings',
16101   'version' => '6.38-dev',
16102 ))
16103 ->values(array(
16104   'lid' => '752',
16105   'location' => '/?q=fr/admin/user',
16106   'textgroup' => 'default',
16107   'source' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.',
16108   'version' => '6.38-dev',
16109 ))
16110 ->values(array(
16111   'lid' => '753',
16112   'location' => '/?q=fr/admin/user',
16113   'textgroup' => 'default',
16114   'source' => 'Users',
16115   'version' => '6.38-dev',
16116 ))
16117 ->values(array(
16118   'lid' => '754',
16119   'location' => '/?q=fr/admin/user',
16120   'textgroup' => 'default',
16121   'source' => 'List, add, and edit users.',
16122   'version' => '6.38-dev',
16123 ))
16124 ->values(array(
16125   'lid' => '755',
16126   'location' => '/?q=fr/admin/user/settings',
16127   'textgroup' => 'default',
16128   'source' => 'User registration settings',
16129   'version' => '6.38-dev',
16130 ))
16131 ->values(array(
16132   'lid' => '756',
16133   'location' => '/?q=fr/admin/user/settings',
16134   'textgroup' => 'default',
16135   'source' => 'Public registrations',
16136   'version' => '6.38-dev',
16137 ))
16138 ->values(array(
16139   'lid' => '757',
16140   'location' => '/?q=fr/admin/user/settings',
16141   'textgroup' => 'default',
16142   'source' => 'Only site administrators can create new user accounts.',
16143   'version' => '6.38-dev',
16144 ))
16145 ->values(array(
16146   'lid' => '758',
16147   'location' => '/?q=fr/admin/user/settings',
16148   'textgroup' => 'default',
16149   'source' => 'Visitors can create accounts and no administrator approval is required.',
16150   'version' => '6.38-dev',
16151 ))
16152 ->values(array(
16153   'lid' => '759',
16154   'location' => '/?q=fr/admin/user/settings',
16155   'textgroup' => 'default',
16156   'source' => 'Visitors can create accounts but administrator approval is required.',
16157   'version' => '6.38-dev',
16158 ))
16159 ->values(array(
16160   'lid' => '760',
16161   'location' => '/?q=fr/admin/user/settings',
16162   'textgroup' => 'default',
16163   'source' => 'Require e-mail verification when a visitor creates an account',
16164   'version' => '6.38-dev',
16165 ))
16166 ->values(array(
16167   'lid' => '761',
16168   'location' => '/?q=fr/admin/user/settings',
16169   'textgroup' => 'default',
16170   '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.',
16171   'version' => '6.38-dev',
16172 ))
16173 ->values(array(
16174   'lid' => '762',
16175   'location' => '/?q=fr/admin/user/settings',
16176   'textgroup' => 'default',
16177   'source' => 'User registration guidelines',
16178   'version' => '6.38-dev',
16179 ))
16180 ->values(array(
16181   'lid' => '763',
16182   'location' => '/?q=fr/admin/user/settings',
16183   'textgroup' => 'default',
16184   'source' => 'This text is displayed at the top of the user registration form and is useful for helping or instructing your users.',
16185   'version' => '6.38-dev',
16186 ))
16187 ->values(array(
16188   'lid' => '764',
16189   'location' => '/?q=fr/admin/user/settings',
16190   'textgroup' => 'default',
16191   'source' => 'User e-mail settings',
16192   'version' => '6.38-dev',
16193 ))
16194 ->values(array(
16195   'lid' => '765',
16196   'location' => '/?q=fr/admin/user/settings',
16197   'textgroup' => 'default',
16198   '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.',
16199   'version' => '6.38-dev',
16200 ))
16201 ->values(array(
16202   'lid' => '766',
16203   'location' => '/?q=fr/admin/user/settings',
16204   'textgroup' => 'default',
16205   'source' => 'Available variables are:',
16206   'version' => '6.38-dev',
16207 ))
16208 ->values(array(
16209   'lid' => '767',
16210   'location' => '/?q=fr/admin/user/settings',
16211   'textgroup' => 'default',
16212   'source' => 'Welcome, new user created by administrator',
16213   'version' => '6.38-dev',
16214 ))
16215 ->values(array(
16216   'lid' => '768',
16217   'location' => '/?q=fr/admin/user/settings',
16218   'textgroup' => 'default',
16219   'source' => 'Customize welcome e-mail messages sent to new member accounts created by an administrator.',
16220   'version' => '6.38-dev',
16221 ))
16222 ->values(array(
16223   'lid' => '769',
16224   'location' => '/?q=fr/admin/user/settings',
16225   'textgroup' => 'default',
16226   'source' => 'Subject',
16227   'version' => '6.38-dev',
16228 ))
16229 ->values(array(
16230   'lid' => '770',
16231   'location' => '/?q=fr/admin/user/settings',
16232   'textgroup' => 'default',
16233   'source' => 'Body',
16234   'version' => '6.38-dev',
16235 ))
16236 ->values(array(
16237   'lid' => '771',
16238   'location' => '/?q=fr/admin/user/settings',
16239   'textgroup' => 'default',
16240   'source' => 'Welcome, no approval required',
16241   'version' => '6.38-dev',
16242 ))
16243 ->values(array(
16244   'lid' => '772',
16245   'location' => '/?q=fr/admin/user/settings',
16246   'textgroup' => 'default',
16247   'source' => 'Customize welcome e-mail messages sent to new members upon registering, when no administrator approval is required.',
16248   'version' => '6.38-dev',
16249 ))
16250 ->values(array(
16251   'lid' => '773',
16252   'location' => '/?q=fr/admin/user/settings',
16253   'textgroup' => 'default',
16254   'source' => 'Welcome, awaiting administrator approval',
16255   'version' => '6.38-dev',
16256 ))
16257 ->values(array(
16258   'lid' => '774',
16259   'location' => '/?q=fr/admin/user/settings',
16260   'textgroup' => 'default',
16261   'source' => 'Customize welcome e-mail messages sent to new members upon registering, when administrative approval is required.',
16262   'version' => '6.38-dev',
16263 ))
16264 ->values(array(
16265   'lid' => '775',
16266   'location' => '/?q=fr/admin/user/settings',
16267   'textgroup' => 'default',
16268   'source' => 'Password recovery email',
16269   'version' => '6.38-dev',
16270 ))
16271 ->values(array(
16272   'lid' => '776',
16273   'location' => '/?q=fr/admin/user/settings',
16274   'textgroup' => 'default',
16275   'source' => 'Customize e-mail messages sent to users who request a new password.',
16276   'version' => '6.38-dev',
16277 ))
16278 ->values(array(
16279   'lid' => '777',
16280   'location' => '/?q=fr/admin/user/settings',
16281   'textgroup' => 'default',
16282   'source' => 'Account activation email',
16283   'version' => '6.38-dev',
16284 ))
16285 ->values(array(
16286   'lid' => '778',
16287   'location' => '/?q=fr/admin/user/settings',
16288   'textgroup' => 'default',
16289   '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).',
16290   'version' => '6.38-dev',
16291 ))
16292 ->values(array(
16293   'lid' => '779',
16294   'location' => '/?q=fr/admin/user/settings',
16295   'textgroup' => 'default',
16296   'source' => 'Notify user when account is activated.',
16297   'version' => '6.38-dev',
16298 ))
16299 ->values(array(
16300   'lid' => '780',
16301   'location' => '/?q=fr/admin/user/settings',
16302   'textgroup' => 'default',
16303   'source' => 'Account blocked email',
16304   'version' => '6.38-dev',
16305 ))
16306 ->values(array(
16307   'lid' => '781',
16308   'location' => '/?q=fr/admin/user/settings',
16309   'textgroup' => 'default',
16310   'source' => 'Enable and customize e-mail messages sent to users when their accounts are blocked.',
16311   'version' => '6.38-dev',
16312 ))
16313 ->values(array(
16314   'lid' => '782',
16315   'location' => '/?q=fr/admin/user/settings',
16316   'textgroup' => 'default',
16317   'source' => 'Notify user when account is blocked.',
16318   'version' => '6.38-dev',
16319 ))
16320 ->values(array(
16321   'lid' => '783',
16322   'location' => '/?q=fr/admin/user/settings',
16323   'textgroup' => 'default',
16324   'source' => 'Account deleted email',
16325   'version' => '6.38-dev',
16326 ))
16327 ->values(array(
16328   'lid' => '784',
16329   'location' => '/?q=fr/admin/user/settings',
16330   'textgroup' => 'default',
16331   'source' => 'Enable and customize e-mail messages sent to users when their accounts are deleted.',
16332   'version' => '6.38-dev',
16333 ))
16334 ->values(array(
16335   'lid' => '785',
16336   'location' => '/?q=fr/admin/user/settings',
16337   'textgroup' => 'default',
16338   'source' => 'Notify user when account is deleted.',
16339   'version' => '6.38-dev',
16340 ))
16341 ->values(array(
16342   'lid' => '786',
16343   'location' => '/?q=fr/admin/user/settings',
16344   'textgroup' => 'default',
16345   'source' => 'Signatures',
16346   'version' => '6.38-dev',
16347 ))
16348 ->values(array(
16349   'lid' => '787',
16350   'location' => '/?q=fr/admin/user/settings',
16351   'textgroup' => 'default',
16352   'source' => 'Signature support',
16353   'version' => '6.38-dev',
16354 ))
16355 ->values(array(
16356   'lid' => '788',
16357   'location' => '/?q=fr/admin/user/settings',
16358   'textgroup' => 'default',
16359   'source' => 'Disabled',
16360   'version' => '6.38-dev',
16361 ))
16362 ->values(array(
16363   'lid' => '789',
16364   'location' => '/?q=fr/admin/user/settings',
16365   'textgroup' => 'default',
16366   'source' => 'Enabled',
16367   'version' => '6.38-dev',
16368 ))
16369 ->values(array(
16370   'lid' => '790',
16371   'location' => '/?q=fr/admin/user/settings',
16372   'textgroup' => 'default',
16373   'source' => 'Pictures',
16374   'version' => '6.38-dev',
16375 ))
16376 ->values(array(
16377   'lid' => '791',
16378   'location' => '/?q=fr/admin/user/settings',
16379   'textgroup' => 'default',
16380   'source' => 'Picture support',
16381   'version' => '6.38-dev',
16382 ))
16383 ->values(array(
16384   'lid' => '792',
16385   'location' => '/?q=fr/admin/user/settings',
16386   'textgroup' => 'default',
16387   'source' => 'Picture image path',
16388   'version' => '6.38-dev',
16389 ))
16390 ->values(array(
16391   'lid' => '793',
16392   'location' => '/?q=fr/admin/user/settings',
16393   'textgroup' => 'default',
16394   'source' => 'Subdirectory in the directory %dir where pictures will be stored.',
16395   'version' => '6.38-dev',
16396 ))
16397 ->values(array(
16398   'lid' => '794',
16399   'location' => '/?q=fr/admin/user/settings',
16400   'textgroup' => 'default',
16401   'source' => 'Default picture',
16402   'version' => '6.38-dev',
16403 ))
16404 ->values(array(
16405   'lid' => '795',
16406   'location' => '/?q=fr/admin/user/settings',
16407   'textgroup' => 'default',
16408   'source' => 'URL of picture to display for users with no custom picture selected. Leave blank for none.',
16409   'version' => '6.38-dev',
16410 ))
16411 ->values(array(
16412   'lid' => '796',
16413   'location' => '/?q=fr/admin/user/settings',
16414   'textgroup' => 'default',
16415   'source' => 'Picture maximum dimensions',
16416   'version' => '6.38-dev',
16417 ))
16418 ->values(array(
16419   'lid' => '797',
16420   'location' => '/?q=fr/admin/user/settings',
16421   'textgroup' => 'default',
16422   'source' => 'Maximum dimensions for pictures, in pixels.',
16423   'version' => '6.38-dev',
16424 ))
16425 ->values(array(
16426   'lid' => '798',
16427   'location' => '/?q=fr/admin/user/settings',
16428   'textgroup' => 'default',
16429   'source' => 'Picture maximum file size',
16430   'version' => '6.38-dev',
16431 ))
16432 ->values(array(
16433   'lid' => '799',
16434   'location' => '/?q=fr/admin/user/settings',
16435   'textgroup' => 'default',
16436   'source' => 'Maximum file size for pictures, in kB.',
16437   'version' => '6.38-dev',
16438 ))
16439 ->values(array(
16440   'lid' => '800',
16441   'location' => '/?q=fr/admin/user/settings',
16442   'textgroup' => 'default',
16443   'source' => 'Picture guidelines',
16444   'version' => '6.38-dev',
16445 ))
16446 ->values(array(
16447   'lid' => '801',
16448   'location' => '/?q=fr/admin/user/settings',
16449   'textgroup' => 'default',
16450   '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.",
16451   'version' => '6.38-dev',
16452 ))
16453 ->values(array(
16454   'lid' => '802',
16455   'location' => '/?q=fr/admin/settings/performance',
16456   'textgroup' => 'default',
16457   '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.',
16458   'version' => '6.38-dev',
16459 ))
16460 ->values(array(
16461   'lid' => '803',
16462   'location' => '/?q=fr/admin/settings/performance',
16463   'textgroup' => 'default',
16464   'source' => '<strong class="error">The following enabled modules are incompatible with aggressive mode caching and will not function properly: %modules</strong>',
16465   'version' => '6.38-dev',
16466 ))
16467 ->values(array(
16468   'lid' => '804',
16469   'location' => '/?q=fr/admin/settings/performance',
16470   'textgroup' => 'default',
16471   'source' => 'Page cache',
16472   'version' => '6.38-dev',
16473 ))
16474 ->values(array(
16475   'lid' => '805',
16476   'location' => '/?q=fr/admin/settings/performance',
16477   'textgroup' => 'default',
16478   '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.',
16479   'version' => '6.38-dev',
16480 ))
16481 ->values(array(
16482   'lid' => '806',
16483   'location' => '/?q=fr/admin/settings/performance',
16484   'textgroup' => 'default',
16485   'source' => 'Caching mode',
16486   'version' => '6.38-dev',
16487 ))
16488 ->values(array(
16489   'lid' => '807',
16490   'location' => '/?q=fr/admin/settings/performance',
16491   'textgroup' => 'default',
16492   'source' => 'Normal (recommended for production sites, no side effects)',
16493   'version' => '6.38-dev',
16494 ))
16495 ->values(array(
16496   'lid' => '808',
16497   'location' => '/?q=fr/admin/settings/performance',
16498   'textgroup' => 'default',
16499   'source' => 'Aggressive (experts only, possible side effects)',
16500   'version' => '6.38-dev',
16501 ))
16502 ->values(array(
16503   'lid' => '809',
16504   'location' => '/?q=fr/admin/settings/performance',
16505   'textgroup' => 'default',
16506   'source' => '0 sec',
16507   'version' => '6.38-dev',
16508 ))
16509 ->values(array(
16510   'lid' => '810',
16511   'location' => '/?q=fr/admin/settings/performance',
16512   'textgroup' => 'default',
16513   'source' => '1 min',
16514   'version' => '6.38-dev',
16515 ))
16516 ->values(array(
16517   'lid' => '811',
16518   'location' => '/?q=fr/admin/settings/performance',
16519   'textgroup' => 'default',
16520   'source' => '@count min',
16521   'version' => '6.38-dev',
16522 ))
16523 ->values(array(
16524   'lid' => '812',
16525   'location' => '/?q=fr/admin/settings/performance',
16526   'textgroup' => 'default',
16527   'source' => '1 hour',
16528   'version' => '6.38-dev',
16529 ))
16530 ->values(array(
16531   'lid' => '813',
16532   'location' => '/?q=fr/admin/settings/performance',
16533   'textgroup' => 'default',
16534   'source' => '@count hours',
16535   'version' => '6.38-dev',
16536 ))
16537 ->values(array(
16538   'lid' => '814',
16539   'location' => '/?q=fr/admin/settings/performance',
16540   'textgroup' => 'default',
16541   'source' => '1 day',
16542   'version' => '6.38-dev',
16543 ))
16544 ->values(array(
16545   'lid' => '815',
16546   'location' => '/?q=fr/admin/settings/performance',
16547   'textgroup' => 'default',
16548   'source' => 'Minimum cache lifetime',
16549   'version' => '6.38-dev',
16550 ))
16551 ->values(array(
16552   'lid' => '816',
16553   'location' => '/?q=fr/admin/settings/performance',
16554   'textgroup' => 'default',
16555   '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.',
16556   'version' => '6.38-dev',
16557 ))
16558 ->values(array(
16559   'lid' => '817',
16560   'location' => '/?q=fr/admin/settings/performance',
16561   'textgroup' => 'default',
16562   'source' => 'Page compression',
16563   'version' => '6.38-dev',
16564 ))
16565 ->values(array(
16566   'lid' => '818',
16567   'location' => '/?q=fr/admin/settings/performance',
16568   'textgroup' => 'default',
16569   '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.',
16570   'version' => '6.38-dev',
16571 ))
16572 ->values(array(
16573   'lid' => '819',
16574   'location' => '/?q=fr/admin/settings/performance',
16575   'textgroup' => 'default',
16576   'source' => 'Block cache',
16577   'version' => '6.38-dev',
16578 ))
16579 ->values(array(
16580   'lid' => '820',
16581   'location' => '/?q=fr/admin/settings/performance',
16582   'textgroup' => 'default',
16583   '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.',
16584   'version' => '6.38-dev',
16585 ))
16586 ->values(array(
16587   'lid' => '821',
16588   'location' => '/?q=fr/admin/settings/performance',
16589   'textgroup' => 'default',
16590   'source' => 'Enabled (recommended)',
16591   'version' => '6.38-dev',
16592 ))
16593 ->values(array(
16594   'lid' => '822',
16595   'location' => '/?q=fr/admin/settings/performance',
16596   'textgroup' => 'default',
16597   'source' => 'Note that block caching is inactive when modules defining content access restrictions are enabled.',
16598   'version' => '6.38-dev',
16599 ))
16600 ->values(array(
16601   'lid' => '823',
16602   'location' => '/?q=fr/admin/settings/performance',
16603   'textgroup' => 'default',
16604   'source' => 'Bandwidth optimizations',
16605   'version' => '6.38-dev',
16606 ))
16607 ->values(array(
16608   'lid' => '824',
16609   'location' => '/?q=fr/admin/settings/performance',
16610   'textgroup' => 'default',
16611   '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>',
16612   'version' => '6.38-dev',
16613 ))
16614 ->values(array(
16615   'lid' => '825',
16616   'location' => '/?q=fr/admin/settings/performance',
16617   'textgroup' => 'default',
16618   'source' => 'Optimize CSS files',
16619   'version' => '6.38-dev',
16620 ))
16621 ->values(array(
16622   'lid' => '826',
16623   'location' => '/?q=fr/admin/settings/performance',
16624   'textgroup' => 'default',
16625   'source' => 'This option can interfere with theme development and should only be enabled in a production environment.',
16626   'version' => '6.38-dev',
16627 ))
16628 ->values(array(
16629   'lid' => '827',
16630   'location' => '/?q=fr/admin/settings/performance',
16631   'textgroup' => 'default',
16632   'source' => 'Optimize JavaScript files',
16633   'version' => '6.38-dev',
16634 ))
16635 ->values(array(
16636   'lid' => '828',
16637   'location' => '/?q=fr/admin/settings/performance',
16638   'textgroup' => 'default',
16639   'source' => 'This option can interfere with module development and should only be enabled in a production environment.',
16640   'version' => '6.38-dev',
16641 ))
16642 ->values(array(
16643   'lid' => '829',
16644   'location' => '/?q=fr/admin/settings/performance',
16645   'textgroup' => 'default',
16646   'source' => 'Clear cached data',
16647   'version' => '6.38-dev',
16648 ))
16649 ->values(array(
16650   'lid' => '830',
16651   'location' => '/?q=fr/admin/settings/performance',
16652   'textgroup' => 'default',
16653   '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>',
16654   'version' => '6.38-dev',
16655 ))
16656 ->values(array(
16657   'lid' => '831',
16658   'location' => '/?q=fr/admin/settings/site-maintenance',
16659   'textgroup' => 'default',
16660   'source' => 'Site status',
16661   'version' => '6.38-dev',
16662 ))
16663 ->values(array(
16664   'lid' => '832',
16665   'location' => '/?q=fr/admin/settings/site-maintenance',
16666   'textgroup' => 'default',
16667   'source' => 'Online',
16668   'version' => '6.38-dev',
16669 ))
16670 ->values(array(
16671   'lid' => '833',
16672   'location' => '/?q=fr/admin/settings/site-maintenance',
16673   'textgroup' => 'default',
16674   'source' => 'Off-line',
16675   'version' => '6.38-dev',
16676 ))
16677 ->values(array(
16678   'lid' => '834',
16679   'location' => '/?q=fr/admin/settings/site-maintenance',
16680   'textgroup' => 'default',
16681   '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.',
16682   'version' => '6.38-dev',
16683 ))
16684 ->values(array(
16685   'lid' => '835',
16686   'location' => '/?q=fr/admin/settings/site-maintenance',
16687   'textgroup' => 'default',
16688   'source' => 'Site off-line message',
16689   'version' => '6.38-dev',
16690 ))
16691 ->values(array(
16692   'lid' => '836',
16693   'location' => '/?q=fr/admin/settings/site-maintenance',
16694   'textgroup' => 'default',
16695   'source' => '@site is currently under maintenance. We should be back shortly. Thank you for your patience.',
16696   'version' => '6.38-dev',
16697 ))
16698 ->values(array(
16699   'lid' => '837',
16700   'location' => '/?q=fr/admin/settings/site-maintenance',
16701   'textgroup' => 'default',
16702   'source' => 'Message to show visitors when the site is in off-line mode.',
16703   'version' => '6.38-dev',
16704 ))
16705 ->values(array(
16706   'lid' => '838',
16707   'location' => '/?q=fr/admin/settings/language',
16708   'textgroup' => 'default',
16709   'source' => 'Left to right',
16710   'version' => '6.38-dev',
16711 ))
16712 ->values(array(
16713   'lid' => '839',
16714   'location' => '/?q=fr/admin/settings/language',
16715   'textgroup' => 'default',
16716   'source' => 'English name',
16717   'version' => '6.38-dev',
16718 ))
16719 ->values(array(
16720   'lid' => '840',
16721   'location' => '/?q=fr/admin/settings/language',
16722   'textgroup' => 'default',
16723   'source' => 'Native name',
16724   'version' => '6.38-dev',
16725 ))
16726 ->values(array(
16727   'lid' => '841',
16728   'location' => '/?q=fr/admin/settings/language',
16729   'textgroup' => 'default',
16730   'source' => 'Direction',
16731   'version' => '6.38-dev',
16732 ))
16733 ->values(array(
16734   'lid' => '842',
16735   'location' => '/?q=fr/admin/settings/language',
16736   'textgroup' => 'default',
16737   'source' => 'Language negotiation',
16738   'version' => '6.38-dev',
16739 ))
16740 ->values(array(
16741   'lid' => '843',
16742   'location' => '/?q=fr/admin/settings/language',
16743   'textgroup' => 'default',
16744   'source' => 'List',
16745   'version' => '6.38-dev',
16746 ))
16747 ->values(array(
16748   'lid' => '844',
16749   'location' => '/?q=fr/admin/settings/language',
16750   'textgroup' => 'default',
16751   'source' => 'Options',
16752   'version' => '6.38-dev',
16753 ))
16754 ->values(array(
16755   'lid' => '845',
16756   'location' => '/?q=fr/admin/settings/language',
16757   'textgroup' => 'default',
16758   'source' => 'Configure extended options for multilingual content and translations.',
16759   'version' => '6.38-dev',
16760 ))
16761 ->values(array(
16762   'lid' => '846',
16763   'location' => '/?q=fr/admin/settings/language',
16764   'textgroup' => 'default',
16765   'source' => 'Multilingual variables.',
16766   'version' => '6.38-dev',
16767 ))
16768 ->values(array(
16769   'lid' => '847',
16770   'location' => '/?q=fr/admin/settings/language',
16771   'textgroup' => 'default',
16772   'source' => 'Add language',
16773   'version' => '6.38-dev',
16774 ))
16775 ->values(array(
16776   'lid' => '848',
16777   'location' => '/?q=fr/admin/settings/language',
16778   'textgroup' => 'default',
16779   'source' => 'Multilingual system',
16780   'version' => '6.38-dev',
16781 ))
16782 ->values(array(
16783   'lid' => '849',
16784   'location' => '/?q=fr/admin/settings/language',
16785   'textgroup' => 'default',
16786   'source' => 'String translation',
16787   'version' => '6.38-dev',
16788 ))
16789 ->values(array(
16790   'lid' => '850',
16791   'location' => '/?q=fr/admin/settings/language',
16792   'textgroup' => 'default',
16793   '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.",
16794   'version' => '6.38-dev',
16795 ))
16796 ->values(array(
16797   'lid' => '851',
16798   'location' => '/?q=fr/admin/settings/language',
16799   'textgroup' => 'default',
16800   '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.',
16801   'version' => '6.38-dev',
16802 ))
16803 ->values(array(
16804   'lid' => '852',
16805   'location' => '/?q=fr/admin/settings/language',
16806   'textgroup' => 'default',
16807   '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>.',
16808   'version' => '6.38-dev',
16809 ))
16810 ->values(array(
16811   'lid' => '853',
16812   'location' => '/?q=fr/admin/settings/language',
16813   'textgroup' => 'default',
16814   '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>',
16815   'version' => '6.38-dev',
16816 ))
16817 ->values(array(
16818   'lid' => '854',
16819   'location' => '/?q=fr/admin/settings/filters',
16820   'textgroup' => 'default',
16821   'source' => 'anonymous user',
16822   'version' => '6.38-dev',
16823 ))
16824 ->values(array(
16825   'lid' => '855',
16826   'location' => '/?q=fr/admin/settings/filters',
16827   'textgroup' => 'default',
16828   'source' => 'authenticated user',
16829   'version' => '6.38-dev',
16830 ))
16831 ->values(array(
16832   'lid' => '856',
16833   'location' => '/?q=fr/admin/settings/filters',
16834   'textgroup' => 'default',
16835   'source' => 'All roles may use default format',
16836   'version' => '6.38-dev',
16837 ))
16838 ->values(array(
16839   'lid' => '857',
16840   'location' => 'content_admin.inc:250',
16841   'textgroup' => 'default',
16842   'source' => 'configure',
16843   'version' => '6.38-dev',
16844 ))
16845 ->values(array(
16846   'lid' => '858',
16847   'location' => '/?q=fr/admin/settings/filters',
16848   'textgroup' => 'default',
16849   'source' => 'No roles may use this format',
16850   'version' => '6.38-dev',
16851 ))
16852 ->values(array(
16853   'lid' => '859',
16854   'location' => '/?q=fr/admin/settings/filters',
16855   'textgroup' => 'default',
16856   'source' => 'Set default format',
16857   'version' => '6.38-dev',
16858 ))
16859 ->values(array(
16860   'lid' => '860',
16861   'location' => '/?q=fr/admin/settings/filters',
16862   'textgroup' => 'default',
16863   'source' => 'Delete input format',
16864   'version' => '6.38-dev',
16865 ))
16866 ->values(array(
16867   'lid' => '861',
16868   'location' => '/?q=fr/admin/settings/filters',
16869   'textgroup' => 'default',
16870   'source' => 'Add input format',
16871   'version' => '6.38-dev',
16872 ))
16873 ->values(array(
16874   'lid' => '862',
16875   'location' => '/?q=fr/admin/settings/filters',
16876   'textgroup' => 'default',
16877   '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.',
16878   'version' => '6.38-dev',
16879 ))
16880 ->values(array(
16881   'lid' => '863',
16882   'location' => '/?q=fr/admin/settings/filters',
16883   'textgroup' => 'default',
16884   '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.',
16885   'version' => '6.38-dev',
16886 ))
16887 ->values(array(
16888   'lid' => '864',
16889   'location' => '/?q=fr/admin/settings/filters',
16890   'textgroup' => 'default',
16891   '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.',
16892   'version' => '6.38-dev',
16893 ))
16894 ->values(array(
16895   'lid' => '865',
16896   'location' => '/?q=fr/admin/settings/imageapi',
16897   'textgroup' => 'default',
16898   'source' => 'There are no image toolkit modules enabled. Toolkit modules can be enabled from the <a href="!admin-build-modules">module configuration page</a>.',
16899   'version' => '6.38-dev',
16900 ))
16901 ->values(array(
16902   'lid' => '866',
16903   'location' => '/?q=fr/admin/settings/image-toolkit',
16904   'textgroup' => 'default',
16905   'source' => 'GD2 image manipulation toolkit',
16906   'version' => '6.38-dev',
16907 ))
16908 ->values(array(
16909   'lid' => '867',
16910   'location' => '/?q=fr/admin/settings/image-toolkit',
16911   'textgroup' => 'default',
16912   'source' => 'The GD toolkit is installed and working properly.',
16913   'version' => '6.38-dev',
16914 ))
16915 ->values(array(
16916   'lid' => '868',
16917   'location' => '/?q=fr/admin/settings/image-toolkit',
16918   'textgroup' => 'default',
16919   'source' => 'JPEG quality',
16920   'version' => '6.38-dev',
16921 ))
16922 ->values(array(
16923   'lid' => '869',
16924   'location' => '/?q=fr/admin/settings/image-toolkit',
16925   'textgroup' => 'default',
16926   'source' => 'Define the image quality for JPEG manipulations. Ranges from 0 to 100. Higher values mean better image quality but bigger files.',
16927   'version' => '6.38-dev',
16928 ))
16929 ->values(array(
16930   'lid' => '870',
16931   'location' => '/?q=fr/admin/settings/image-toolkit',
16932   'textgroup' => 'default',
16933   'source' => '%',
16934   'version' => '6.38-dev',
16935 ))
16936 ->values(array(
16937   'lid' => '871',
16938   'location' => '/?q=fr/admin/settings/uploads',
16939   'textgroup' => 'default',
16940   'source' => 'General settings',
16941   'version' => '6.38-dev',
16942 ))
16943 ->values(array(
16944   'lid' => '872',
16945   'location' => '/?q=fr/admin/settings/uploads',
16946   'textgroup' => 'default',
16947   'source' => 'Maximum resolution for uploaded images',
16948   'version' => '6.38-dev',
16949 ))
16950 ->values(array(
16951   'lid' => '873',
16952   'location' => '/?q=fr/admin/settings/uploads',
16953   'textgroup' => 'default',
16954   '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.',
16955   'version' => '6.38-dev',
16956 ))
16957 ->values(array(
16958   'lid' => '874',
16959   'location' => '/?q=fr/admin/settings/uploads',
16960   'textgroup' => 'default',
16961   'source' => 'WIDTHxHEIGHT',
16962   'version' => '6.38-dev',
16963 ))
16964 ->values(array(
16965   'lid' => '875',
16966   'location' => '/?q=fr/admin/settings/uploads',
16967   'textgroup' => 'default',
16968   'source' => 'List files by default',
16969   'version' => '6.38-dev',
16970 ))
16971 ->values(array(
16972   'lid' => '876',
16973   'location' => '/?q=fr/admin/settings/uploads',
16974   'textgroup' => 'default',
16975   'source' => 'No',
16976   'version' => '6.38-dev',
16977 ))
16978 ->values(array(
16979   'lid' => '877',
16980   'location' => '/?q=fr/admin/settings/uploads',
16981   'textgroup' => 'default',
16982   'source' => 'Yes',
16983   'version' => '6.38-dev',
16984 ))
16985 ->values(array(
16986   'lid' => '878',
16987   'location' => '/?q=fr/admin/settings/uploads',
16988   'textgroup' => 'default',
16989   'source' => 'Display attached files when viewing a post.',
16990   'version' => '6.38-dev',
16991 ))
16992 ->values(array(
16993   'lid' => '879',
16994   'location' => '/?q=fr/admin/settings/uploads',
16995   'textgroup' => 'default',
16996   'source' => 'Default permitted file extensions',
16997   'version' => '6.38-dev',
16998 ))
16999 ->values(array(
17000   'lid' => '880',
17001   'location' => '/?q=fr/admin/settings/uploads',
17002   'textgroup' => 'default',
17003   'source' => 'Default extensions that users can upload. Separate extensions with a space and do not include the leading dot.',
17004   'version' => '6.38-dev',
17005 ))
17006 ->values(array(
17007   'lid' => '881',
17008   'location' => '/?q=fr/admin/settings/uploads',
17009   'textgroup' => 'default',
17010   'source' => 'Default maximum file size per upload',
17011   'version' => '6.38-dev',
17012 ))
17013 ->values(array(
17014   'lid' => '882',
17015   'location' => '/?q=fr/admin/settings/uploads',
17016   'textgroup' => 'default',
17017   '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.',
17018   'version' => '6.38-dev',
17019 ))
17020 ->values(array(
17021   'lid' => '883',
17022   'location' => '/?q=fr/admin/settings/uploads',
17023   'textgroup' => 'default',
17024   'source' => 'MB',
17025   'version' => '6.38-dev',
17026 ))
17027 ->values(array(
17028   'lid' => '884',
17029   'location' => '/?q=fr/admin/settings/uploads',
17030   'textgroup' => 'default',
17031   'source' => 'Default total file size per user',
17032   'version' => '6.38-dev',
17033 ))
17034 ->values(array(
17035   'lid' => '885',
17036   'location' => '/?q=fr/admin/settings/uploads',
17037   'textgroup' => 'default',
17038   'source' => 'The default maximum size of all files a user can have on the site.',
17039   'version' => '6.38-dev',
17040 ))
17041 ->values(array(
17042   'lid' => '886',
17043   'location' => '/?q=fr/admin/settings/uploads',
17044   'textgroup' => 'default',
17045   'source' => 'KB',
17046   'version' => '6.38-dev',
17047 ))
17048 ->values(array(
17049   'lid' => '887',
17050   'location' => '/?q=fr/admin/settings/uploads',
17051   'textgroup' => 'default',
17052   'source' => '@size @suffix',
17053   'version' => '6.38-dev',
17054 ))
17055 ->values(array(
17056   'lid' => '888',
17057   'location' => '/?q=fr/admin/settings/uploads',
17058   'textgroup' => 'default',
17059   'source' => 'Your PHP settings limit the maximum file size per upload to %size.',
17060   'version' => '6.38-dev',
17061 ))
17062 ->values(array(
17063   'lid' => '889',
17064   'location' => '/?q=fr/admin/settings/uploads',
17065   'textgroup' => 'default',
17066   '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.',
17067   'version' => '6.38-dev',
17068 ))
17069 ->values(array(
17070   'lid' => '890',
17071   'location' => '/?q=fr/admin/settings/file-system',
17072   'textgroup' => 'default',
17073   'source' => 'File system path',
17074   'version' => '6.38-dev',
17075 ))
17076 ->values(array(
17077   'lid' => '891',
17078   'location' => '/?q=fr/admin/settings/file-system',
17079   'textgroup' => 'default',
17080   '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.',
17081   'version' => '6.38-dev',
17082 ))
17083 ->values(array(
17084   'lid' => '892',
17085   'location' => '/?q=fr/admin/settings/file-system',
17086   'textgroup' => 'default',
17087   'source' => 'Temporary directory',
17088   'version' => '6.38-dev',
17089 ))
17090 ->values(array(
17091   'lid' => '893',
17092   'location' => '/?q=fr/admin/settings/file-system',
17093   'textgroup' => 'default',
17094   'source' => 'A file system path where uploaded files will be stored during previews.',
17095   'version' => '6.38-dev',
17096 ))
17097 ->values(array(
17098   'lid' => '894',
17099   'location' => '/?q=fr/admin/settings/file-system',
17100   'textgroup' => 'default',
17101   'source' => 'Download method',
17102   'version' => '6.38-dev',
17103 ))
17104 ->values(array(
17105   'lid' => '895',
17106   'location' => '/?q=fr/admin/settings/file-system',
17107   'textgroup' => 'default',
17108   'source' => 'Public - files are available using HTTP directly.',
17109   'version' => '6.38-dev',
17110 ))
17111 ->values(array(
17112   'lid' => '896',
17113   'location' => '/?q=fr/admin/settings/file-system',
17114   'textgroup' => 'default',
17115   'source' => 'Private - files are transferred by Drupal.',
17116   'version' => '6.38-dev',
17117 ))
17118 ->values(array(
17119   'lid' => '897',
17120   'location' => '/?q=fr/admin/settings/file-system',
17121   'textgroup' => 'default',
17122   '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.',
17123   'version' => '6.38-dev',
17124 ))
17125 ->values(array(
17126   'lid' => '898',
17127   'location' => '/?q=fr/admin/settings/file-system',
17128   'textgroup' => 'default',
17129   'source' => 'The directory %directory does not exist.',
17130   'version' => '6.38-dev',
17131 ))
17132 ->values(array(
17133   'lid' => '899',
17134   'location' => '/?q=fr/admin/settings/event',
17135   'textgroup' => 'default',
17136   'source' => 'Event overview',
17137   'version' => '6.38-dev',
17138 ))
17139 ->values(array(
17140   'lid' => '900',
17141   'location' => '/?q=fr/admin/settings/event',
17142   'textgroup' => 'default',
17143   'source' => 'Change how event summary information is displayed.',
17144   'version' => '6.38-dev',
17145 ))
17146 ->values(array(
17147   'lid' => '901',
17148   'location' => '/?q=fr/admin/settings/event',
17149   'textgroup' => 'default',
17150   'source' => 'Timezone handling',
17151   'version' => '6.38-dev',
17152 ))
17153 ->values(array(
17154   'lid' => '902',
17155   'location' => '/?q=fr/admin/settings/event',
17156   'textgroup' => 'default',
17157   'source' => 'Change how timezone information is saved and displayed.',
17158   'version' => '6.38-dev',
17159 ))
17160 ->values(array(
17161   'lid' => '903',
17162   'location' => '/?q=fr/admin/settings/event/timezone',
17163   'textgroup' => 'default',
17164   'source' => 'Event time zone input',
17165   'version' => '6.38-dev',
17166 ))
17167 ->values(array(
17168   'lid' => '904',
17169   'location' => '/?q=fr/admin/settings/event/timezone',
17170   'textgroup' => 'default',
17171   'source' => 'Use the sitewide time zone',
17172   'version' => '6.38-dev',
17173 ))
17174 ->values(array(
17175   'lid' => '905',
17176   'location' => '/?q=fr/admin/settings/event/timezone',
17177   'textgroup' => 'default',
17178   'source' => 'Use the time zone of the user editing or creating the event',
17179   'version' => '6.38-dev',
17180 ))
17181 ->values(array(
17182   'lid' => '906',
17183   'location' => '/?q=fr/admin/settings/event/timezone',
17184   'textgroup' => 'default',
17185   'source' => 'Allow users to set event time zones',
17186   'version' => '6.38-dev',
17187 ))
17188 ->values(array(
17189   'lid' => '907',
17190   'location' => '/?q=fr/admin/settings/event/timezone',
17191   'textgroup' => 'default',
17192   'source' => 'date/time settings',
17193   'version' => '6.38-dev',
17194 ))
17195 ->values(array(
17196   'lid' => '908',
17197   'location' => '/?q=fr/admin/settings/event/timezone',
17198   'textgroup' => 'default',
17199   '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.",
17200   'version' => '6.38-dev',
17201 ))
17202 ->values(array(
17203   'lid' => '909',
17204   'location' => '/?q=fr/admin/settings/event/timezone',
17205   'textgroup' => 'default',
17206   'source' => 'Event time zone display',
17207   'version' => '6.38-dev',
17208 ))
17209 ->values(array(
17210   'lid' => '910',
17211   'location' => '/?q=fr/admin/settings/event/timezone',
17212   'textgroup' => 'default',
17213   'source' => "Use the event's time zone",
17214   'version' => '6.38-dev',
17215 ))
17216 ->values(array(
17217   'lid' => '911',
17218   'location' => '/?q=fr/admin/settings/event/timezone',
17219   'textgroup' => 'default',
17220   '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.",
17221   'version' => '6.38-dev',
17222 ))
17223 ->values(array(
17224   'lid' => '912',
17225   'location' => '/?q=fr/admin/settings/event/timezone',
17226   'textgroup' => 'default',
17227   'source' => 'Time notation preference',
17228   'version' => '6.38-dev',
17229 ))
17230 ->values(array(
17231   'lid' => '913',
17232   'location' => '/?q=fr/admin/settings/event/timezone',
17233   'textgroup' => 'default',
17234   'source' => '24h',
17235   'version' => '6.38-dev',
17236 ))
17237 ->values(array(
17238   'lid' => '914',
17239   'location' => '/?q=fr/admin/settings/event/timezone',
17240   'textgroup' => 'default',
17241   'source' => '12h',
17242   'version' => '6.38-dev',
17243 ))
17244 ->values(array(
17245   'lid' => '915',
17246   'location' => '/?q=fr/admin/settings/event/timezone',
17247   'textgroup' => 'default',
17248   'source' => 'The time notation system used for entering event times.',
17249   'version' => '6.38-dev',
17250 ))
17251 ->values(array(
17252   'lid' => '916',
17253   'location' => '/?q=fr/admin/settings/event/overview',
17254   'textgroup' => 'default',
17255   'source' => 'Upcoming event block limit',
17256   'version' => '6.38-dev',
17257 ))
17258 ->values(array(
17259   'lid' => '917',
17260   'location' => '/?q=fr/admin/settings/event/overview',
17261   'textgroup' => 'default',
17262   'source' => 'Limit the amount of events displayed in the upcoming events block by this amount.',
17263   'version' => '6.38-dev',
17264 ))
17265 ->values(array(
17266   'lid' => '918',
17267   'location' => '/?q=fr/admin/settings/event/overview',
17268   'textgroup' => 'default',
17269   'source' => 'Default overview',
17270   'version' => '6.38-dev',
17271 ))
17272 ->values(array(
17273   'lid' => '919',
17274   'location' => '/?q=fr/admin/settings/event/overview',
17275   'textgroup' => 'default',
17276   'source' => 'Day',
17277   'version' => '6.38-dev',
17278 ))
17279 ->values(array(
17280   'lid' => '920',
17281   'location' => '/?q=fr/admin/settings/event/overview',
17282   'textgroup' => 'default',
17283   'source' => 'Week',
17284   'version' => '6.38-dev',
17285 ))
17286 ->values(array(
17287   'lid' => '921',
17288   'location' => '/?q=fr/admin/settings/event/overview',
17289   'textgroup' => 'default',
17290   'source' => 'Month',
17291   'version' => '6.38-dev',
17292 ))
17293 ->values(array(
17294   'lid' => '922',
17295   'location' => '/?q=fr/admin/settings/event/overview',
17296   'textgroup' => 'default',
17297   'source' => 'Table',
17298   'version' => '6.38-dev',
17299 ))
17300 ->values(array(
17301   'lid' => '923',
17302   'location' => '/?q=fr/admin/settings/event/overview',
17303   'textgroup' => 'default',
17304   '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.',
17305   'version' => '6.38-dev',
17306 ))
17307 ->values(array(
17308   'lid' => '924',
17309   'location' => '/?q=fr/admin/settings/event/overview',
17310   'textgroup' => 'default',
17311   'source' => 'Table view default period',
17312   'version' => '6.38-dev',
17313 ))
17314 ->values(array(
17315   'lid' => '925',
17316   'location' => '/?q=fr/admin/settings/event/overview',
17317   'textgroup' => 'default',
17318   'source' => 'here',
17319   'version' => '6.38-dev',
17320 ))
17321 ->values(array(
17322   'lid' => '926',
17323   'location' => '/?q=fr/admin/settings/event/overview',
17324   'textgroup' => 'default',
17325   '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',
17326   'version' => '6.38-dev',
17327 ))
17328 ->values(array(
17329   'lid' => '927',
17330   'location' => '/?q=fr/admin/settings/event/overview',
17331   'textgroup' => 'default',
17332   'source' => 'Taxonomy filter controls',
17333   'version' => '6.38-dev',
17334 ))
17335 ->values(array(
17336   'lid' => '928',
17337   'location' => '/?q=fr/admin/settings/event/overview',
17338   'textgroup' => 'default',
17339   'source' => 'Show taxonomy filter control on calendar views',
17340   'version' => '6.38-dev',
17341 ))
17342 ->values(array(
17343   'lid' => '929',
17344   'location' => '/?q=fr/admin/settings/event/overview',
17345   'textgroup' => 'default',
17346   'source' => 'Only show taxonomy filter control when taxonomy filter view is requested',
17347   'version' => '6.38-dev',
17348 ))
17349 ->values(array(
17350   'lid' => '930',
17351   'location' => '/?q=fr/admin/settings/event/overview',
17352   'textgroup' => 'default',
17353   'source' => 'Never show taxonomy filter control',
17354   'version' => '6.38-dev',
17355 ))
17356 ->values(array(
17357   'lid' => '931',
17358   'location' => '/?q=fr/admin/settings/event/overview',
17359   'textgroup' => 'default',
17360   'source' => 'Content type filter controls',
17361   'version' => '6.38-dev',
17362 ))
17363 ->values(array(
17364   'lid' => '932',
17365   'location' => '/?q=fr/admin/settings/event/overview',
17366   'textgroup' => 'default',
17367   'source' => 'Show content type filter control on calendar views',
17368   'version' => '6.38-dev',
17369 ))
17370 ->values(array(
17371   'lid' => '933',
17372   'location' => '/?q=fr/admin/settings/event/overview',
17373   'textgroup' => 'default',
17374   'source' => 'Only show content type filter control when content type filter view is requested',
17375   'version' => '6.38-dev',
17376 ))
17377 ->values(array(
17378   'lid' => '934',
17379   'location' => '/?q=fr/admin/settings/event/overview',
17380   'textgroup' => 'default',
17381   'source' => 'Never show content type filter control',
17382   'version' => '6.38-dev',
17383 ))
17384 ->values(array(
17385   'lid' => '935',
17386   'location' => '/?q=fr/admin/settings/email',
17387   'textgroup' => 'default',
17388   'source' => 'Hourly threshold for a CCK Email contact form',
17389   'version' => '6.38-dev',
17390 ))
17391 ->values(array(
17392   'lid' => '936',
17393   'location' => '/?q=fr/admin/settings/email',
17394   'textgroup' => 'default',
17395   'source' => 'The maximum number of contact form submissions a user can perform per hour.',
17396   'version' => '6.38-dev',
17397 ))
17398 ->values(array(
17399   'lid' => '937',
17400   'location' => '/?q=fr/admin/settings/admin',
17401   'textgroup' => 'default',
17402   'source' => 'System default',
17403   'version' => '6.38-dev',
17404 ))
17405 ->values(array(
17406   'lid' => '938',
17407   'location' => '/?q=fr/admin/settings/admin',
17408   'textgroup' => 'default',
17409   '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.',
17410   'version' => '6.38-dev',
17411 ))
17412 ->values(array(
17413   'lid' => '939',
17414   'location' => '/?q=fr/admin/settings/admin',
17415   'textgroup' => 'default',
17416   'source' => 'Use administration theme for content editing',
17417   'version' => '6.38-dev',
17418 ))
17419 ->values(array(
17420   'lid' => '940',
17421   'location' => '/?q=fr/admin/settings/admin',
17422   'textgroup' => 'default',
17423   'source' => 'Use the administration theme when editing existing posts or creating new ones.',
17424   'version' => '6.38-dev',
17425 ))
17426 ->values(array(
17427   'lid' => '941',
17428   'location' => '/?q=fr/admin/settings/actions',
17429   'textgroup' => 'default',
17430   'source' => 'Publish comment',
17431   'version' => '6.38-dev',
17432 ))
17433 ->values(array(
17434   'lid' => '942',
17435   'location' => '/?q=fr/admin/settings/actions',
17436   'textgroup' => 'default',
17437   'source' => 'Unpublish comment',
17438   'version' => '6.38-dev',
17439 ))
17440 ->values(array(
17441   'lid' => '943',
17442   'location' => '/?q=fr/admin/settings/actions',
17443   'textgroup' => 'default',
17444   'source' => 'Unpublish comment containing keyword(s)',
17445   'version' => '6.38-dev',
17446 ))
17447 ->values(array(
17448   'lid' => '944',
17449   'location' => '/?q=fr/admin/settings/actions',
17450   'textgroup' => 'default',
17451   'source' => 'Publish post',
17452   'version' => '6.38-dev',
17453 ))
17454 ->values(array(
17455   'lid' => '945',
17456   'location' => '/?q=fr/admin/settings/actions',
17457   'textgroup' => 'default',
17458   'source' => 'Unpublish post',
17459   'version' => '6.38-dev',
17460 ))
17461 ->values(array(
17462   'lid' => '946',
17463   'location' => '/?q=fr/admin/settings/actions',
17464   'textgroup' => 'default',
17465   'source' => 'Make post sticky',
17466   'version' => '6.38-dev',
17467 ))
17468 ->values(array(
17469   'lid' => '947',
17470   'location' => '/?q=fr/admin/settings/actions',
17471   'textgroup' => 'default',
17472   'source' => 'Make post unsticky',
17473   'version' => '6.38-dev',
17474 ))
17475 ->values(array(
17476   'lid' => '948',
17477   'location' => '/?q=fr/admin/settings/actions',
17478   'textgroup' => 'default',
17479   'source' => 'Promote post to front page',
17480   'version' => '6.38-dev',
17481 ))
17482 ->values(array(
17483   'lid' => '949',
17484   'location' => '/?q=fr/admin/settings/actions',
17485   'textgroup' => 'default',
17486   'source' => 'Remove post from front page',
17487   'version' => '6.38-dev',
17488 ))
17489 ->values(array(
17490   'lid' => '950',
17491   'location' => '/?q=fr/admin/settings/actions',
17492   'textgroup' => 'default',
17493   'source' => 'Change the author of a post',
17494   'version' => '6.38-dev',
17495 ))
17496 ->values(array(
17497   'lid' => '951',
17498   'location' => '/?q=fr/admin/settings/actions',
17499   'textgroup' => 'default',
17500   'source' => 'Save post',
17501   'version' => '6.38-dev',
17502 ))
17503 ->values(array(
17504   'lid' => '952',
17505   'location' => '/?q=fr/admin/settings/actions',
17506   'textgroup' => 'default',
17507   'source' => 'Unpublish post containing keyword(s)',
17508   'version' => '6.38-dev',
17509 ))
17510 ->values(array(
17511   'lid' => '953',
17512   'location' => '/?q=fr/admin/settings/actions',
17513   'textgroup' => 'default',
17514   'source' => 'Display a message to the user',
17515   'version' => '6.38-dev',
17516 ))
17517 ->values(array(
17518   'lid' => '954',
17519   'location' => '/?q=fr/admin/settings/actions',
17520   'textgroup' => 'default',
17521   'source' => 'Send e-mail',
17522   'version' => '6.38-dev',
17523 ))
17524 ->values(array(
17525   'lid' => '955',
17526   'location' => '/?q=fr/admin/settings/actions',
17527   'textgroup' => 'default',
17528   'source' => 'Redirect to URL',
17529   'version' => '6.38-dev',
17530 ))
17531 ->values(array(
17532   'lid' => '956',
17533   'location' => '/?q=fr/admin/settings/actions',
17534   'textgroup' => 'default',
17535   'source' => 'Block current user',
17536   'version' => '6.38-dev',
17537 ))
17538 ->values(array(
17539   'lid' => '957',
17540   'location' => '/?q=fr/admin/settings/actions',
17541   'textgroup' => 'default',
17542   'source' => 'Ban IP address of current user',
17543   'version' => '6.38-dev',
17544 ))
17545 ->values(array(
17546   'lid' => '958',
17547   'location' => '/?q=fr/admin/settings/actions',
17548   'textgroup' => 'default',
17549   'source' => "ImageCache: Flush ALL presets for this node's filefield images",
17550   'version' => '6.38-dev',
17551 ))
17552 ->values(array(
17553   'lid' => '959',
17554   'location' => '/?q=fr/admin/settings/actions',
17555   'textgroup' => 'default',
17556   'source' => "ImageCache: Generate ALL presets for this node's filefield images",
17557   'version' => '6.38-dev',
17558 ))
17559 ->values(array(
17560   'lid' => '960',
17561   'location' => '/?q=fr/admin/settings/actions',
17562   'textgroup' => 'default',
17563   'source' => "ImageCache: Generate configured preset(s) for this node's filefield images",
17564   'version' => '6.38-dev',
17565 ))
17566 ->values(array(
17567   'lid' => '961',
17568   'location' => '/?q=fr/admin/settings/actions',
17569   'textgroup' => 'default',
17570   'source' => 'Choose an advanced action',
17571   'version' => '6.38-dev',
17572 ))
17573 ->values(array(
17574   'lid' => '962',
17575   'location' => '/?q=fr/admin/settings/actions',
17576   'textgroup' => 'default',
17577   'source' => 'Action type',
17578   'version' => '6.38-dev',
17579 ))
17580 ->values(array(
17581   'lid' => '963',
17582   'location' => '/?q=fr/admin/settings/actions',
17583   'textgroup' => 'default',
17584   'source' => '« first',
17585   'version' => '6.38-dev',
17586 ))
17587 ->values(array(
17588   'lid' => '964',
17589   'location' => '/?q=fr/admin/settings/actions',
17590   'textgroup' => 'default',
17591   'source' => '‹ previous',
17592   'version' => '6.38-dev',
17593 ))
17594 ->values(array(
17595   'lid' => '965',
17596   'location' => '/?q=fr/admin/settings/actions',
17597   'textgroup' => 'default',
17598   'source' => 'next â€º',
17599   'version' => '6.38-dev',
17600 ))
17601 ->values(array(
17602   'lid' => '966',
17603   'location' => '/?q=fr/admin/settings/actions',
17604   'textgroup' => 'default',
17605   'source' => 'last Â»',
17606   'version' => '6.38-dev',
17607 ))
17608 ->values(array(
17609   'lid' => '967',
17610   'location' => '/?q=fr/admin/settings/actions',
17611   'textgroup' => 'default',
17612   'source' => 'Actions available to Drupal:',
17613   'version' => '6.38-dev',
17614 ))
17615 ->values(array(
17616   'lid' => '968',
17617   'location' => '/?q=fr/admin/settings/actions',
17618   'textgroup' => 'default',
17619   'source' => 'sort by @s',
17620   'version' => '6.38-dev',
17621 ))
17622 ->values(array(
17623   'lid' => '969',
17624   'location' => '/?q=fr/admin/settings/actions',
17625   'textgroup' => 'default',
17626   'source' => 'sort icon',
17627   'version' => '6.38-dev',
17628 ))
17629 ->values(array(
17630   'lid' => '970',
17631   'location' => '/?q=fr/admin/settings/actions',
17632   'textgroup' => 'default',
17633   'source' => 'sort descending',
17634   'version' => '6.38-dev',
17635 ))
17636 ->values(array(
17637   'lid' => '971',
17638   'location' => '/?q=fr/admin/settings/actions',
17639   'textgroup' => 'default',
17640   'source' => 'Make a new advanced action available',
17641   'version' => '6.38-dev',
17642 ))
17643 ->values(array(
17644   'lid' => '972',
17645   'location' => '/?q=fr/admin/settings/actions',
17646   'textgroup' => 'default',
17647   'source' => 'Create',
17648   'version' => '6.38-dev',
17649 ))
17650 ->values(array(
17651   'lid' => '973',
17652   'location' => '/?q=fr/admin/settings/actions',
17653   'textgroup' => 'default',
17654   'source' => 'Configure an advanced action',
17655   'version' => '6.38-dev',
17656 ))
17657 ->values(array(
17658   'lid' => '974',
17659   'location' => '/?q=fr/admin/settings/actions',
17660   'textgroup' => 'default',
17661   'source' => 'Remove orphans',
17662   'version' => '6.38-dev',
17663 ))
17664 ->values(array(
17665   'lid' => '975',
17666   'location' => '/?q=fr/admin/settings/actions',
17667   'textgroup' => 'default',
17668   'source' => 'Manage actions',
17669   'version' => '6.38-dev',
17670 ))
17671 ->values(array(
17672   'lid' => '976',
17673   'location' => '/?q=fr/admin/settings/actions',
17674   'textgroup' => 'default',
17675   '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.',
17676   'version' => '6.38-dev',
17677 ))
17678 ->values(array(
17679   'lid' => '977',
17680   'location' => '/?q=fr/admin/settings/actions',
17681   'textgroup' => 'default',
17682   '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.',
17683   'version' => '6.38-dev',
17684 ))
17685 ->values(array(
17686   'lid' => '978',
17687   'location' => '/?q=fr/admin/user/user',
17688   'textgroup' => 'default',
17689   'source' => 'Create new account',
17690   'version' => '6.38-dev',
17691 ))
17692 ->values(array(
17693   'lid' => '979',
17694   'location' => '/?q=fr/admin/user/user',
17695   'textgroup' => 'default',
17696   'source' => 'role',
17697   'version' => '6.38-dev',
17698 ))
17699 ->values(array(
17700   'lid' => '980',
17701   'location' => '/?q=fr/admin/user/user',
17702   'textgroup' => 'default',
17703   'source' => '@module module',
17704   'version' => '6.38-dev',
17705 ))
17706 ->values(array(
17707   'lid' => '981',
17708   'location' => '/?q=fr/admin/user/user',
17709   'textgroup' => 'default',
17710   'source' => 'access news feeds',
17711   'version' => '6.38-dev',
17712 ))
17713 ->values(array(
17714   'lid' => '982',
17715   'location' => '/?q=fr/admin/user/user',
17716   'textgroup' => 'default',
17717   'source' => 'administer news feeds',
17718   'version' => '6.38-dev',
17719 ))
17720 ->values(array(
17721   'lid' => '983',
17722   'location' => '/?q=fr/admin/user/user',
17723   'textgroup' => 'default',
17724   'source' => 'administer blocks',
17725   'version' => '6.38-dev',
17726 ))
17727 ->values(array(
17728   'lid' => '984',
17729   'location' => '/?q=fr/admin/user/user',
17730   'textgroup' => 'default',
17731   'source' => 'use PHP for block visibility',
17732   'version' => '6.38-dev',
17733 ))
17734 ->values(array(
17735   'lid' => '985',
17736   'location' => '/?q=fr/admin/user/user',
17737   'textgroup' => 'default',
17738   'source' => 'access printer-friendly version',
17739   'version' => '6.38-dev',
17740 ))
17741 ->values(array(
17742   'lid' => '986',
17743   'location' => '/?q=fr/admin/user/user',
17744   'textgroup' => 'default',
17745   'source' => 'add content to books',
17746   'version' => '6.38-dev',
17747 ))
17748 ->values(array(
17749   'lid' => '987',
17750   'location' => '/?q=fr/admin/user/user',
17751   'textgroup' => 'default',
17752   'source' => 'administer book outlines',
17753   'version' => '6.38-dev',
17754 ))
17755 ->values(array(
17756   'lid' => '988',
17757   'location' => '/?q=fr/admin/user/user',
17758   'textgroup' => 'default',
17759   'source' => 'create new books',
17760   'version' => '6.38-dev',
17761 ))
17762 ->values(array(
17763   'lid' => '989',
17764   'location' => '/?q=fr/admin/user/user',
17765   'textgroup' => 'default',
17766   'source' => 'access comments',
17767   'version' => '6.38-dev',
17768 ))
17769 ->values(array(
17770   'lid' => '990',
17771   'location' => '/?q=fr/admin/user/user',
17772   'textgroup' => 'default',
17773   'source' => 'administer comments',
17774   'version' => '6.38-dev',
17775 ))
17776 ->values(array(
17777   'lid' => '991',
17778   'location' => '/?q=fr/admin/user/user',
17779   'textgroup' => 'default',
17780   'source' => 'post comments',
17781   'version' => '6.38-dev',
17782 ))
17783 ->values(array(
17784   'lid' => '992',
17785   'location' => '/?q=fr/admin/user/user',
17786   'textgroup' => 'default',
17787   'source' => 'post comments without approval',
17788   'version' => '6.38-dev',
17789 ))
17790 ->values(array(
17791   'lid' => '993',
17792   'location' => '/?q=fr/admin/user/user',
17793   'textgroup' => 'default',
17794   'source' => 'access site-wide contact form',
17795   'version' => '6.38-dev',
17796 ))
17797 ->values(array(
17798   'lid' => '994',
17799   'location' => '/?q=fr/admin/user/user',
17800   'textgroup' => 'default',
17801   'source' => 'administer site-wide contact form',
17802   'version' => '6.38-dev',
17803 ))
17804 ->values(array(
17805   'lid' => '995',
17806   'location' => '/?q=fr/admin/user/user',
17807   'textgroup' => 'default',
17808   'source' => 'administer filters',
17809   'version' => '6.38-dev',
17810 ))
17811 ->values(array(
17812   'lid' => '996',
17813   'location' => '/?q=fr/admin/user/user',
17814   'textgroup' => 'default',
17815   'source' => 'administer languages',
17816   'version' => '6.38-dev',
17817 ))
17818 ->values(array(
17819   'lid' => '997',
17820   'location' => '/?q=fr/admin/user/user',
17821   'textgroup' => 'default',
17822   'source' => 'translate interface',
17823   'version' => '6.38-dev',
17824 ))
17825 ->values(array(
17826   'lid' => '998',
17827   'location' => '/?q=fr/admin/user/user',
17828   'textgroup' => 'default',
17829   'source' => 'administer menu',
17830   'version' => '6.38-dev',
17831 ))
17832 ->values(array(
17833   'lid' => '999',
17834   'location' => '/?q=fr/admin/user/user',
17835   'textgroup' => 'default',
17836   'source' => 'access content',
17837   'version' => '6.38-dev',
17838 ))
17839 ->values(array(
17840   'lid' => '1000',
17841   'location' => '/?q=fr/admin/user/user',
17842   'textgroup' => 'default',
17843   'source' => 'administer content types',
17844   'version' => '6.38-dev',
17845 ))
17846 ->values(array(
17847   'lid' => '1001',
17848   'location' => '/?q=fr/admin/user/user',
17849   'textgroup' => 'default',
17850   'source' => 'administer nodes',
17851   'version' => '6.38-dev',
17852 ))
17853 ->values(array(
17854   'lid' => '1002',
17855   'location' => '/?q=fr/admin/user/user',
17856   'textgroup' => 'default',
17857   'source' => 'create article content',
17858   'version' => '6.38-dev',
17859 ))
17860 ->values(array(
17861   'lid' => '1003',
17862   'location' => '/?q=fr/admin/user/user',
17863   'textgroup' => 'default',
17864   'source' => 'create company content',
17865   'version' => '6.38-dev',
17866 ))
17867 ->values(array(
17868   'lid' => '1004',
17869   'location' => '/?q=fr/admin/user/user',
17870   'textgroup' => 'default',
17871   'source' => 'create employee content',
17872   'version' => '6.38-dev',
17873 ))
17874 ->values(array(
17875   'lid' => '1005',
17876   'location' => '/?q=fr/admin/user/user',
17877   'textgroup' => 'default',
17878   'source' => 'create sponsor content',
17879   'version' => '6.38-dev',
17880 ))
17881 ->values(array(
17882   'lid' => '1006',
17883   'location' => '/?q=fr/admin/user/user',
17884   'textgroup' => 'default',
17885   'source' => 'create story content',
17886   'version' => '6.38-dev',
17887 ))
17888 ->values(array(
17889   'lid' => '1007',
17890   'location' => '/?q=fr/admin/user/user',
17891   'textgroup' => 'default',
17892   'source' => 'create test_event content',
17893   'version' => '6.38-dev',
17894 ))
17895 ->values(array(
17896   'lid' => '1008',
17897   'location' => '/?q=fr/admin/user/user',
17898   'textgroup' => 'default',
17899   'source' => 'create test_page content',
17900   'version' => '6.38-dev',
17901 ))
17902 ->values(array(
17903   'lid' => '1009',
17904   'location' => '/?q=fr/admin/user/user',
17905   'textgroup' => 'default',
17906   'source' => 'create test_planet content',
17907   'version' => '6.38-dev',
17908 ))
17909 ->values(array(
17910   'lid' => '1010',
17911   'location' => '/?q=fr/admin/user/user',
17912   'textgroup' => 'default',
17913   'source' => 'create test_story content',
17914   'version' => '6.38-dev',
17915 ))
17916 ->values(array(
17917   'lid' => '1011',
17918   'location' => '/?q=fr/admin/user/user',
17919   'textgroup' => 'default',
17920   'source' => 'delete any article content',
17921   'version' => '6.38-dev',
17922 ))
17923 ->values(array(
17924   'lid' => '1012',
17925   'location' => '/?q=fr/admin/user/user',
17926   'textgroup' => 'default',
17927   'source' => 'delete any company content',
17928   'version' => '6.38-dev',
17929 ))
17930 ->values(array(
17931   'lid' => '1013',
17932   'location' => '/?q=fr/admin/user/user',
17933   'textgroup' => 'default',
17934   'source' => 'delete any employee content',
17935   'version' => '6.38-dev',
17936 ))
17937 ->values(array(
17938   'lid' => '1014',
17939   'location' => '/?q=fr/admin/user/user',
17940   'textgroup' => 'default',
17941   'source' => 'delete any sponsor content',
17942   'version' => '6.38-dev',
17943 ))
17944 ->values(array(
17945   'lid' => '1015',
17946   'location' => '/?q=fr/admin/user/user',
17947   'textgroup' => 'default',
17948   'source' => 'delete any story content',
17949   'version' => '6.38-dev',
17950 ))
17951 ->values(array(
17952   'lid' => '1016',
17953   'location' => '/?q=fr/admin/user/user',
17954   'textgroup' => 'default',
17955   'source' => 'delete any test_event content',
17956   'version' => '6.38-dev',
17957 ))
17958 ->values(array(
17959   'lid' => '1017',
17960   'location' => '/?q=fr/admin/user/user',
17961   'textgroup' => 'default',
17962   'source' => 'delete any test_page content',
17963   'version' => '6.38-dev',
17964 ))
17965 ->values(array(
17966   'lid' => '1018',
17967   'location' => '/?q=fr/admin/user/user',
17968   'textgroup' => 'default',
17969   'source' => 'delete any test_planet content',
17970   'version' => '6.38-dev',
17971 ))
17972 ->values(array(
17973   'lid' => '1019',
17974   'location' => '/?q=fr/admin/user/user',
17975   'textgroup' => 'default',
17976   'source' => 'delete any test_story content',
17977   'version' => '6.38-dev',
17978 ))
17979 ->values(array(
17980   'lid' => '1020',
17981   'location' => '/?q=fr/admin/user/user',
17982   'textgroup' => 'default',
17983   'source' => 'delete own article content',
17984   'version' => '6.38-dev',
17985 ))
17986 ->values(array(
17987   'lid' => '1021',
17988   'location' => '/?q=fr/admin/user/user',
17989   'textgroup' => 'default',
17990   'source' => 'delete own company content',
17991   'version' => '6.38-dev',
17992 ))
17993 ->values(array(
17994   'lid' => '1022',
17995   'location' => '/?q=fr/admin/user/user',
17996   'textgroup' => 'default',
17997   'source' => 'delete own employee content',
17998   'version' => '6.38-dev',
17999 ))
18000 ->values(array(
18001   'lid' => '1023',
18002   'location' => '/?q=fr/admin/user/user',
18003   'textgroup' => 'default',
18004   'source' => 'delete own sponsor content',
18005   'version' => '6.38-dev',
18006 ))
18007 ->values(array(
18008   'lid' => '1024',
18009   'location' => '/?q=fr/admin/user/user',
18010   'textgroup' => 'default',
18011   'source' => 'delete own story content',
18012   'version' => '6.38-dev',
18013 ))
18014 ->values(array(
18015   'lid' => '1025',
18016   'location' => '/?q=fr/admin/user/user',
18017   'textgroup' => 'default',
18018   'source' => 'delete own test_event content',
18019   'version' => '6.38-dev',
18020 ))
18021 ->values(array(
18022   'lid' => '1026',
18023   'location' => '/?q=fr/admin/user/user',
18024   'textgroup' => 'default',
18025   'source' => 'delete own test_page content',
18026   'version' => '6.38-dev',
18027 ))
18028 ->values(array(
18029   'lid' => '1027',
18030   'location' => '/?q=fr/admin/user/user',
18031   'textgroup' => 'default',
18032   'source' => 'delete own test_planet content',
18033   'version' => '6.38-dev',
18034 ))
18035 ->values(array(
18036   'lid' => '1028',
18037   'location' => '/?q=fr/admin/user/user',
18038   'textgroup' => 'default',
18039   'source' => 'delete own test_story content',
18040   'version' => '6.38-dev',
18041 ))
18042 ->values(array(
18043   'lid' => '1029',
18044   'location' => '/?q=fr/admin/user/user',
18045   'textgroup' => 'default',
18046   'source' => 'delete revisions',
18047   'version' => '6.38-dev',
18048 ))
18049 ->values(array(
18050   'lid' => '1030',
18051   'location' => '/?q=fr/admin/user/user',
18052   'textgroup' => 'default',
18053   'source' => 'edit any article content',
18054   'version' => '6.38-dev',
18055 ))
18056 ->values(array(
18057   'lid' => '1031',
18058   'location' => '/?q=fr/admin/user/user',
18059   'textgroup' => 'default',
18060   'source' => 'edit any company content',
18061   'version' => '6.38-dev',
18062 ))
18063 ->values(array(
18064   'lid' => '1032',
18065   'location' => '/?q=fr/admin/user/user',
18066   'textgroup' => 'default',
18067   'source' => 'edit any employee content',
18068   'version' => '6.38-dev',
18069 ))
18070 ->values(array(
18071   'lid' => '1033',
18072   'location' => '/?q=fr/admin/user/user',
18073   'textgroup' => 'default',
18074   'source' => 'edit any sponsor content',
18075   'version' => '6.38-dev',
18076 ))
18077 ->values(array(
18078   'lid' => '1034',
18079   'location' => '/?q=fr/admin/user/user',
18080   'textgroup' => 'default',
18081   'source' => 'edit any story content',
18082   'version' => '6.38-dev',
18083 ))
18084 ->values(array(
18085   'lid' => '1035',
18086   'location' => '/?q=fr/admin/user/user',
18087   'textgroup' => 'default',
18088   'source' => 'edit any test_event content',
18089   'version' => '6.38-dev',
18090 ))
18091 ->values(array(
18092   'lid' => '1036',
18093   'location' => '/?q=fr/admin/user/user',
18094   'textgroup' => 'default',
18095   'source' => 'edit any test_page content',
18096   'version' => '6.38-dev',
18097 ))
18098 ->values(array(
18099   'lid' => '1037',
18100   'location' => '/?q=fr/admin/user/user',
18101   'textgroup' => 'default',
18102   'source' => 'edit any test_planet content',
18103   'version' => '6.38-dev',
18104 ))
18105 ->values(array(
18106   'lid' => '1038',
18107   'location' => '/?q=fr/admin/user/user',
18108   'textgroup' => 'default',
18109   'source' => 'edit any test_story content',
18110   'version' => '6.38-dev',
18111 ))
18112 ->values(array(
18113   'lid' => '1039',
18114   'location' => '/?q=fr/admin/user/user',
18115   'textgroup' => 'default',
18116   'source' => 'edit own article content',
18117   'version' => '6.38-dev',
18118 ))
18119 ->values(array(
18120   'lid' => '1040',
18121   'location' => '/?q=fr/admin/user/user',
18122   'textgroup' => 'default',
18123   'source' => 'edit own company content',
18124   'version' => '6.38-dev',
18125 ))
18126 ->values(array(
18127   'lid' => '1041',
18128   'location' => '/?q=fr/admin/user/user',
18129   'textgroup' => 'default',
18130   'source' => 'edit own employee content',
18131   'version' => '6.38-dev',
18132 ))
18133 ->values(array(
18134   'lid' => '1042',
18135   'location' => '/?q=fr/admin/user/user',
18136   'textgroup' => 'default',
18137   'source' => 'edit own sponsor content',
18138   'version' => '6.38-dev',
18139 ))
18140 ->values(array(
18141   'lid' => '1043',
18142   'location' => '/?q=fr/admin/user/user',
18143   'textgroup' => 'default',
18144   'source' => 'edit own story content',
18145   'version' => '6.38-dev',
18146 ))
18147 ->values(array(
18148   'lid' => '1044',
18149   'location' => '/?q=fr/admin/user/user',
18150   'textgroup' => 'default',
18151   'source' => 'edit own test_event content',
18152   'version' => '6.38-dev',
18153 ))
18154 ->values(array(
18155   'lid' => '1045',
18156   'location' => '/?q=fr/admin/user/user',
18157   'textgroup' => 'default',
18158   'source' => 'edit own test_page content',
18159   'version' => '6.38-dev',
18160 ))
18161 ->values(array(
18162   'lid' => '1046',
18163   'location' => '/?q=fr/admin/user/user',
18164   'textgroup' => 'default',
18165   'source' => 'edit own test_planet content',
18166   'version' => '6.38-dev',
18167 ))
18168 ->values(array(
18169   'lid' => '1047',
18170   'location' => '/?q=fr/admin/user/user',
18171   'textgroup' => 'default',
18172   'source' => 'edit own test_story content',
18173   'version' => '6.38-dev',
18174 ))
18175 ->values(array(
18176   'lid' => '1048',
18177   'location' => '/?q=fr/admin/user/user',
18178   'textgroup' => 'default',
18179   'source' => 'revert revisions',
18180   'version' => '6.38-dev',
18181 ))
18182 ->values(array(
18183   'lid' => '1049',
18184   'location' => '/?q=fr/admin/user/user',
18185   'textgroup' => 'default',
18186   'source' => 'view revisions',
18187   'version' => '6.38-dev',
18188 ))
18189 ->values(array(
18190   'lid' => '1050',
18191   'location' => '/?q=fr/admin/user/user',
18192   'textgroup' => 'default',
18193   'source' => 'administer url aliases',
18194   'version' => '6.38-dev',
18195 ))
18196 ->values(array(
18197   'lid' => '1051',
18198   'location' => '/?q=fr/admin/user/user',
18199   'textgroup' => 'default',
18200   'source' => 'create url aliases',
18201   'version' => '6.38-dev',
18202 ))
18203 ->values(array(
18204   'lid' => '1052',
18205   'location' => '/?q=fr/admin/user/user',
18206   'textgroup' => 'default',
18207   'source' => 'access administration pages',
18208   'version' => '6.38-dev',
18209 ))
18210 ->values(array(
18211   'lid' => '1053',
18212   'location' => '/?q=fr/admin/user/user',
18213   'textgroup' => 'default',
18214   'source' => 'access site reports',
18215   'version' => '6.38-dev',
18216 ))
18217 ->values(array(
18218   'lid' => '1054',
18219   'location' => '/?q=fr/admin/user/user',
18220   'textgroup' => 'default',
18221   'source' => 'administer actions',
18222   'version' => '6.38-dev',
18223 ))
18224 ->values(array(
18225   'lid' => '1055',
18226   'location' => '/?q=fr/admin/user/user',
18227   'textgroup' => 'default',
18228   'source' => 'administer files',
18229   'version' => '6.38-dev',
18230 ))
18231 ->values(array(
18232   'lid' => '1056',
18233   'location' => '/?q=fr/admin/user/user',
18234   'textgroup' => 'default',
18235   'source' => 'administer site configuration',
18236   'version' => '6.38-dev',
18237 ))
18238 ->values(array(
18239   'lid' => '1057',
18240   'location' => '/?q=fr/admin/user/user',
18241   'textgroup' => 'default',
18242   'source' => 'select different theme',
18243   'version' => '6.38-dev',
18244 ))
18245 ->values(array(
18246   'lid' => '1058',
18247   'location' => '/?q=fr/admin/user/user',
18248   'textgroup' => 'default',
18249   'source' => 'administer taxonomy',
18250   'version' => '6.38-dev',
18251 ))
18252 ->values(array(
18253   'lid' => '1059',
18254   'location' => '/?q=fr/admin/user/user',
18255   'textgroup' => 'default',
18256   'source' => 'translate content',
18257   'version' => '6.38-dev',
18258 ))
18259 ->values(array(
18260   'lid' => '1060',
18261   'location' => '/?q=fr/admin/user/user',
18262   'textgroup' => 'default',
18263   'source' => 'upload files',
18264   'version' => '6.38-dev',
18265 ))
18266 ->values(array(
18267   'lid' => '1061',
18268   'location' => '/?q=fr/admin/user/user',
18269   'textgroup' => 'default',
18270   'source' => 'view uploaded files',
18271   'version' => '6.38-dev',
18272 ))
18273 ->values(array(
18274   'lid' => '1062',
18275   'location' => '/?q=fr/admin/user/user',
18276   'textgroup' => 'default',
18277   'source' => 'access user profiles',
18278   'version' => '6.38-dev',
18279 ))
18280 ->values(array(
18281   'lid' => '1063',
18282   'location' => '/?q=fr/admin/user/user',
18283   'textgroup' => 'default',
18284   'source' => 'administer permissions',
18285   'version' => '6.38-dev',
18286 ))
18287 ->values(array(
18288   'lid' => '1064',
18289   'location' => '/?q=fr/admin/user/user',
18290   'textgroup' => 'default',
18291   'source' => 'administer users',
18292   'version' => '6.38-dev',
18293 ))
18294 ->values(array(
18295   'lid' => '1065',
18296   'location' => '/?q=fr/admin/user/user',
18297   'textgroup' => 'default',
18298   'source' => 'change own username',
18299   'version' => '6.38-dev',
18300 ))
18301 ->values(array(
18302   'lid' => '1066',
18303   'location' => '/?q=fr/admin/user/user',
18304   'textgroup' => 'default',
18305   'source' => 'view date repeats',
18306   'version' => '6.38-dev',
18307 ))
18308 ->values(array(
18309   'lid' => '1067',
18310   'location' => '/?q=fr/admin/user/user',
18311   'textgroup' => 'default',
18312   'source' => 'administer imageapi',
18313   'version' => '6.38-dev',
18314 ))
18315 ->values(array(
18316   'lid' => '1068',
18317   'location' => '/?q=fr/admin/user/user',
18318   'textgroup' => 'default',
18319   'source' => 'administer imagecache',
18320   'version' => '6.38-dev',
18321 ))
18322 ->values(array(
18323   'lid' => '1069',
18324   'location' => '/?q=fr/admin/user/user',
18325   'textgroup' => 'default',
18326   'source' => 'flush imagecache',
18327   'version' => '6.38-dev',
18328 ))
18329 ->values(array(
18330   'lid' => '1070',
18331   'location' => '/?q=fr/admin/user/user',
18332   'textgroup' => 'default',
18333   'source' => 'view imagecache big_blue_cheese',
18334   'version' => '6.38-dev',
18335 ))
18336 ->values(array(
18337   'lid' => '1071',
18338   'location' => '/?q=fr/admin/user/user',
18339   'textgroup' => 'default',
18340   'source' => 'view imagecache slackjaw_boys',
18341   'version' => '6.38-dev',
18342 ))
18343 ->values(array(
18344   'lid' => '1072',
18345   'location' => '/?q=fr/admin/user/user',
18346   'textgroup' => 'default',
18347   'source' => 'administer all languages',
18348   'version' => '6.38-dev',
18349 ))
18350 ->values(array(
18351   'lid' => '1073',
18352   'location' => '/?q=fr/admin/user/user',
18353   'textgroup' => 'default',
18354   'source' => 'administer translations',
18355   'version' => '6.38-dev',
18356 ))
18357 ->values(array(
18358   'lid' => '1074',
18359   'location' => '/?q=fr/admin/user/user',
18360   'textgroup' => 'default',
18361   'source' => 'permission',
18362   'version' => '6.38-dev',
18363 ))
18364 ->values(array(
18365   'lid' => '1075',
18366   'location' => '/?q=fr/admin/user/user',
18367   'textgroup' => 'default',
18368   'source' => 'status',
18369   'version' => '6.38-dev',
18370 ))
18371 ->values(array(
18372   'lid' => '1076',
18373   'location' => '/?q=fr/admin/user/user',
18374   'textgroup' => 'default',
18375   'source' => 'active',
18376   'version' => '6.38-dev',
18377 ))
18378 ->values(array(
18379   'lid' => '1077',
18380   'location' => '/?q=fr/admin/user/user',
18381   'textgroup' => 'default',
18382   'source' => 'blocked',
18383   'version' => '6.38-dev',
18384 ))
18385 ->values(array(
18386   'lid' => '1078',
18387   'location' => '/?q=fr/admin/user/user',
18388   'textgroup' => 'default',
18389   'source' => 'Show only users where',
18390   'version' => '6.38-dev',
18391 ))
18392 ->values(array(
18393   'lid' => '1079',
18394   'location' => '/?q=fr/admin/user/user',
18395   'textgroup' => 'default',
18396   'source' => 'Filter',
18397   'version' => '6.38-dev',
18398 ))
18399 ->values(array(
18400   'lid' => '1080',
18401   'location' => '/?q=fr/admin/user/user',
18402   'textgroup' => 'default',
18403   'source' => 'is',
18404   'version' => '6.38-dev',
18405 ))
18406 ->values(array(
18407   'lid' => '1081',
18408   'location' => '/?q=fr/admin/user/user',
18409   'textgroup' => 'default',
18410   'source' => 'Username',
18411   'version' => '6.38-dev',
18412 ))
18413 ->values(array(
18414   'lid' => '1082',
18415   'location' => '/?q=fr/admin/user/user',
18416   'textgroup' => 'default',
18417   'source' => 'Status',
18418   'version' => '6.38-dev',
18419 ))
18420 ->values(array(
18421   'lid' => '1083',
18422   'location' => '/?q=fr/admin/user/user',
18423   'textgroup' => 'default',
18424   'source' => 'Member for',
18425   'version' => '6.38-dev',
18426 ))
18427 ->values(array(
18428   'lid' => '1084',
18429   'location' => '/?q=fr/admin/user/user',
18430   'textgroup' => 'default',
18431   'source' => 'Last access',
18432   'version' => '6.38-dev',
18433 ))
18434 ->values(array(
18435   'lid' => '1085',
18436   'location' => '/?q=fr/admin/user/user',
18437   'textgroup' => 'default',
18438   'source' => 'Update options',
18439   'version' => '6.38-dev',
18440 ))
18441 ->values(array(
18442   'lid' => '1086',
18443   'location' => '/?q=fr/admin/user/user',
18444   'textgroup' => 'default',
18445   'source' => 'Unblock the selected users',
18446   'version' => '6.38-dev',
18447 ))
18448 ->values(array(
18449   'lid' => '1087',
18450   'location' => '/?q=fr/admin/user/user',
18451   'textgroup' => 'default',
18452   'source' => 'Block the selected users',
18453   'version' => '6.38-dev',
18454 ))
18455 ->values(array(
18456   'lid' => '1088',
18457   'location' => '/?q=fr/admin/user/user',
18458   'textgroup' => 'default',
18459   'source' => 'Delete the selected users',
18460   'version' => '6.38-dev',
18461 ))
18462 ->values(array(
18463   'lid' => '1089',
18464   'location' => '/?q=fr/admin/user/user',
18465   'textgroup' => 'default',
18466   'source' => 'Add a role to the selected users',
18467   'version' => '6.38-dev',
18468 ))
18469 ->values(array(
18470   'lid' => '1090',
18471   'location' => '/?q=fr/admin/user/user',
18472   'textgroup' => 'default',
18473   'source' => 'Remove a role from the selected users',
18474   'version' => '6.38-dev',
18475 ))
18476 ->values(array(
18477   'lid' => '1091',
18478   'location' => '/?q=fr/admin/user/user',
18479   'textgroup' => 'default',
18480   'source' => 'Update',
18481   'version' => '6.38-dev',
18482 ))
18483 ->values(array(
18484   'lid' => '1092',
18485   'location' => '/?q=fr/admin/user/user',
18486   'textgroup' => 'default',
18487   'source' => '@count years',
18488   'version' => '6.38-dev',
18489 ))
18490 ->values(array(
18491   'lid' => '1093',
18492   'location' => '/?q=fr/admin/user/user',
18493   'textgroup' => 'default',
18494   'source' => '@count weeks',
18495   'version' => '6.38-dev',
18496 ))
18497 ->values(array(
18498   'lid' => '1094',
18499   'location' => '/?q=fr/admin/user/user',
18500   'textgroup' => 'default',
18501   'source' => '@time ago',
18502   'version' => '6.38-dev',
18503 ))
18504 ->values(array(
18505   'lid' => '1095',
18506   'location' => '/?q=fr/admin/user/user',
18507   'textgroup' => 'default',
18508   'source' => '@count sec',
18509   'version' => '6.38-dev',
18510 ))
18511 ->values(array(
18512   'lid' => '1096',
18513   'location' => '/?q=fr/admin/user/user',
18514   'textgroup' => 'default',
18515   'source' => 'sort ascending',
18516   'version' => '6.38-dev',
18517 ))
18518 ->values(array(
18519   'lid' => '1097',
18520   'location' => '/?q=fr/admin/user/user',
18521   'textgroup' => 'default',
18522   'source' => 'Add user',
18523   'version' => '6.38-dev',
18524 ))
18525 ->values(array(
18526   'lid' => '1098',
18527   'location' => '/?q=fr/admin/user/user',
18528   'textgroup' => 'default',
18529   '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.',
18530   'version' => '6.38-dev',
18531 ))
18532 ->values(array(
18533   'lid' => '1099',
18534   'location' => '/?q=fr/admin/user/roles',
18535   'textgroup' => 'default',
18536   'source' => 'Add role',
18537   'version' => '6.38-dev',
18538 ))
18539 ->values(array(
18540   'lid' => '1100',
18541   'location' => '/?q=fr/admin/user/roles',
18542   'textgroup' => 'default',
18543   'source' => 'edit permissions',
18544   'version' => '6.38-dev',
18545 ))
18546 ->values(array(
18547   'lid' => '1101',
18548   'location' => '/?q=fr/admin/user/roles',
18549   'textgroup' => 'default',
18550   'source' => 'locked',
18551   'version' => '6.38-dev',
18552 ))
18553 ->values(array(
18554   'lid' => '1102',
18555   'location' => '/?q=fr/admin/user/roles',
18556   'textgroup' => 'default',
18557   'source' => 'edit role',
18558   'version' => '6.38-dev',
18559 ))
18560 ->values(array(
18561   'lid' => '1103',
18562   'location' => '/?q=fr/admin/user/roles',
18563   'textgroup' => 'default',
18564   'source' => 'Edit role',
18565   'version' => '6.38-dev',
18566 ))
18567 ->values(array(
18568   'lid' => '1104',
18569   'location' => '/?q=fr/admin/user/roles',
18570   'textgroup' => 'default',
18571   '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>",
18572   'version' => '6.38-dev',
18573 ))
18574 ->values(array(
18575   'lid' => '1105',
18576   'location' => '/?q=fr/admin/user/profile',
18577   'textgroup' => 'default',
18578   'source' => 'Add new field',
18579   'version' => '6.38-dev',
18580 ))
18581 ->values(array(
18582   'lid' => '1106',
18583   'location' => '/?q=fr/admin/user/profile',
18584   'textgroup' => 'default',
18585   'source' => 'single-line textfield',
18586   'version' => '6.38-dev',
18587 ))
18588 ->values(array(
18589   'lid' => '1107',
18590   'location' => '/?q=fr/admin/user/profile',
18591   'textgroup' => 'default',
18592   'source' => 'multi-line textfield',
18593   'version' => '6.38-dev',
18594 ))
18595 ->values(array(
18596   'lid' => '1108',
18597   'location' => '/?q=fr/admin/user/profile',
18598   'textgroup' => 'default',
18599   'source' => 'checkbox',
18600   'version' => '6.38-dev',
18601 ))
18602 ->values(array(
18603   'lid' => '1109',
18604   'location' => '/?q=fr/admin/user/profile',
18605   'textgroup' => 'default',
18606   'source' => 'list selection',
18607   'version' => '6.38-dev',
18608 ))
18609 ->values(array(
18610   'lid' => '1110',
18611   'location' => '/?q=fr/admin/user/profile',
18612   'textgroup' => 'default',
18613   'source' => 'freeform list',
18614   'version' => '6.38-dev',
18615 ))
18616 ->values(array(
18617   'lid' => '1111',
18618   'location' => '/?q=fr/admin/user/profile',
18619   'textgroup' => 'default',
18620   'source' => 'URL',
18621   'version' => '6.38-dev',
18622 ))
18623 ->values(array(
18624   'lid' => '1112',
18625   'location' => '/?q=fr/admin/user/profile',
18626   'textgroup' => 'default',
18627   'source' => 'date',
18628   'version' => '6.38-dev',
18629 ))
18630 ->values(array(
18631   'lid' => '1113',
18632   'location' => '/?q=fr/admin/user/profile',
18633   'textgroup' => 'default',
18634   'source' => 'No fields in this category. If this category remains empty when saved, it will be removed.',
18635   'version' => '6.38-dev',
18636 ))
18637 ->values(array(
18638   'lid' => '1114',
18639   'location' => '/?q=fr/admin/user/profile',
18640   'textgroup' => 'default',
18641   'source' => 'Title',
18642   'version' => '6.38-dev',
18643 ))
18644 ->values(array(
18645   'lid' => '1115',
18646   'location' => '/?q=fr/admin/user/profile',
18647   'textgroup' => 'default',
18648   'source' => 'Category',
18649   'version' => '6.38-dev',
18650 ))
18651 ->values(array(
18652   'lid' => '1116',
18653   'location' => '/?q=fr/admin/user/profile',
18654   'textgroup' => 'default',
18655   'source' => 'Delete field',
18656   'version' => '6.38-dev',
18657 ))
18658 ->values(array(
18659   'lid' => '1117',
18660   'location' => '/?q=fr/admin/user/profile',
18661   'textgroup' => 'default',
18662   'source' => 'Edit field',
18663   'version' => '6.38-dev',
18664 ))
18665 ->values(array(
18666   'lid' => '1118',
18667   'location' => '/?q=fr/admin/user/profile',
18668   'textgroup' => 'default',
18669   'source' => 'Profile category autocomplete',
18670   'version' => '6.38-dev',
18671 ))
18672 ->values(array(
18673   'lid' => '1119',
18674   'location' => '/?q=fr/admin/user/profile',
18675   'textgroup' => 'default',
18676   'source' => "This page displays a list of the existing custom profile fields to be displayed on a user's <em>My Account</em> page. To provide structure, similar or related fields may be placed inside a category. To add a new category (or edit an existing one), edit a profile field and provide a new category name. To change the category of a field or the order of fields within a category, grab a drag-and-drop handle under the Title 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 <em>Save configuration</em> button at the bottom of the page.",
18677   'version' => '6.38-dev',
18678 ))
18679 ->values(array(
18680   'lid' => '1120',
18681   'location' => '/?q=fr/admin/user/permissions',
18682   'textgroup' => 'default',
18683   'source' => 'Save permissions',
18684   'version' => '6.38-dev',
18685 ))
18686 ->values(array(
18687   'lid' => '1121',
18688   'location' => '/?q=fr/admin/user/permissions',
18689   'textgroup' => 'default',
18690   'source' => 'Permission',
18691   'version' => '6.38-dev',
18692 ))
18693 ->values(array(
18694   'lid' => '1122',
18695   'location' => '/?q=fr/admin/user/permissions',
18696   'textgroup' => 'default',
18697   'source' => 'Permissions let you control what users can do on your site. Each user role (defined on the <a href="@role">user roles page</a>) has its own set of permissions. For example, you could give users classified as "Administrators" permission to "administer nodes" but deny this power to ordinary, "authenticated" users. You can use permissions to reveal new features to privileged users (those with subscriptions, for example). Permissions also allow trusted users to share the administrative burden of running a busy site.',
18698   'version' => '6.38-dev',
18699 ))
18700 ->values(array(
18701   'lid' => '1123',
18702   'location' => '/?q=fr/admin/user/rules',
18703   'textgroup' => 'default',
18704   'source' => 'Access type',
18705   'version' => '6.38-dev',
18706 ))
18707 ->values(array(
18708   'lid' => '1124',
18709   'location' => '/?q=fr/admin/user/rules',
18710   'textgroup' => 'default',
18711   'source' => 'Rule type',
18712   'version' => '6.38-dev',
18713 ))
18714 ->values(array(
18715   'lid' => '1125',
18716   'location' => '/?q=fr/admin/user/rules',
18717   'textgroup' => 'default',
18718   'source' => 'Mask',
18719   'version' => '6.38-dev',
18720 ))
18721 ->values(array(
18722   'lid' => '1126',
18723   'location' => '/?q=fr/admin/user/rules',
18724   'textgroup' => 'default',
18725   'source' => 'username',
18726   'version' => '6.38-dev',
18727 ))
18728 ->values(array(
18729   'lid' => '1127',
18730   'location' => '/?q=fr/admin/user/rules',
18731   'textgroup' => 'default',
18732   'source' => 'e-mail',
18733   'version' => '6.38-dev',
18734 ))
18735 ->values(array(
18736   'lid' => '1128',
18737   'location' => '/?q=fr/admin/user/rules',
18738   'textgroup' => 'default',
18739   'source' => 'host',
18740   'version' => '6.38-dev',
18741 ))
18742 ->values(array(
18743   'lid' => '1129',
18744   'location' => '/?q=fr/admin/user/rules',
18745   'textgroup' => 'default',
18746   'source' => 'There are currently no access rules.',
18747   'version' => '6.38-dev',
18748 ))
18749 ->values(array(
18750   'lid' => '1130',
18751   'location' => '/?q=fr/admin/user/rules',
18752   'textgroup' => 'default',
18753   'source' => 'Delete rule',
18754   'version' => '6.38-dev',
18755 ))
18756 ->values(array(
18757   'lid' => '1131',
18758   'location' => '/?q=fr/admin/user/rules',
18759   'textgroup' => 'default',
18760   'source' => 'Edit rule',
18761   'version' => '6.38-dev',
18762 ))
18763 ->values(array(
18764   'lid' => '1132',
18765   'location' => '/?q=fr/admin/user/rules',
18766   'textgroup' => 'default',
18767   'source' => 'Add rule',
18768   'version' => '6.38-dev',
18769 ))
18770 ->values(array(
18771   'lid' => '1133',
18772   'location' => '/?q=fr/admin/user/rules',
18773   'textgroup' => 'default',
18774   'source' => 'Check rules',
18775   'version' => '6.38-dev',
18776 ))
18777 ->values(array(
18778   'lid' => '1134',
18779   'location' => '/?q=fr/admin/user/rules',
18780   'textgroup' => 'default',
18781   'source' => 'Set up username and e-mail address access rules for new <em>and</em> existing accounts (currently logged in accounts will not be logged out). If a username or e-mail address for an account matches any deny rule, but not an allow rule, then the account will not be allowed to be created or to log in. A host rule is effective for every page view, not just registrations.',
18782   'version' => '6.38-dev',
18783 ))
18784 ->values(array(
18785   'lid' => '1135',
18786   'location' => '/?q=fr/admin/user/profile/edit/11',
18787   'textgroup' => 'default',
18788   'source' => 'edit %title',
18789   'version' => '6.38-dev',
18790 ))
18791 ->values(array(
18792   'lid' => '1136',
18793   'location' => '/?q=fr/admin/user/profile/edit/11',
18794   'textgroup' => 'default',
18795   'source' => 'Field settings',
18796   'version' => '6.38-dev',
18797 ))
18798 ->values(array(
18799   'lid' => '1137',
18800   'location' => '/?q=fr/admin/user/profile/edit/11',
18801   'textgroup' => 'default',
18802   'source' => 'The category the new field should be part of. Categories are used to group fields logically. An example category is "Personal information".',
18803   'version' => '6.38-dev',
18804 ))
18805 ->values(array(
18806   'lid' => '1138',
18807   'location' => '/?q=fr/admin/user/profile/edit/11',
18808   'textgroup' => 'default',
18809   'source' => 'The title of the new field. The title will be shown to the user. An example title is "Favorite color".',
18810   'version' => '6.38-dev',
18811 ))
18812 ->values(array(
18813   'lid' => '1139',
18814   'location' => '/?q=fr/admin/user/profile/edit/11',
18815   'textgroup' => 'default',
18816   'source' => 'Form name',
18817   'version' => '6.38-dev',
18818 ))
18819 ->values(array(
18820   'lid' => '1140',
18821   'location' => '/?q=fr/admin/user/profile/edit/11',
18822   'textgroup' => 'default',
18823   'source' => "The name of the field. The form name is not shown to the user but used internally in the HTML code and URLs.\nUnless you know what you are doing, it is highly recommended that you prefix the form name with <code>profile_</code> to avoid name clashes with other fields. Spaces or any other special characters except dash (-) and underscore (_) are not allowed. An example name is \"profile_favorite_color\" or perhaps just \"profile_color\".",
18824   'version' => '6.38-dev',
18825 ))
18826 ->values(array(
18827   'lid' => '1141',
18828   'location' => '/?q=fr/admin/user/profile/edit/11',
18829   'textgroup' => 'default',
18830   'source' => 'Explanation',
18831   'version' => '6.38-dev',
18832 ))
18833 ->values(array(
18834   'lid' => '1142',
18835   'location' => '/?q=fr/admin/user/profile/edit/11',
18836   'textgroup' => 'default',
18837   'source' => 'An optional explanation to go with the new field. The explanation will be shown to the user.',
18838   'version' => '6.38-dev',
18839 ))
18840 ->values(array(
18841   'lid' => '1143',
18842   'location' => '/?q=fr/admin/user/profile/edit/11',
18843   'textgroup' => 'default',
18844   'source' => 'Selection options',
18845   'version' => '6.38-dev',
18846 ))
18847 ->values(array(
18848   'lid' => '1144',
18849   'location' => '/?q=fr/admin/user/profile/edit/11',
18850   'textgroup' => 'default',
18851   'source' => 'A list of all options. Put each option on a separate line. Example options are "red", "blue", "green", etc.',
18852   'version' => '6.38-dev',
18853 ))
18854 ->values(array(
18855   'lid' => '1145',
18856   'location' => '/?q=fr/admin/user/profile/edit/11',
18857   'textgroup' => 'default',
18858   'source' => 'Visibility',
18859   'version' => '6.38-dev',
18860 ))
18861 ->values(array(
18862   'lid' => '1146',
18863   'location' => '/?q=fr/admin/user/profile/edit/11',
18864   'textgroup' => 'default',
18865   'source' => 'Hidden profile field, only accessible by administrators, modules and themes.',
18866   'version' => '6.38-dev',
18867 ))
18868 ->values(array(
18869   'lid' => '1147',
18870   'location' => '/?q=fr/admin/user/profile/edit/11',
18871   'textgroup' => 'default',
18872   'source' => 'Private field, content only available to privileged users.',
18873   'version' => '6.38-dev',
18874 ))
18875 ->values(array(
18876   'lid' => '1148',
18877   'location' => '/?q=fr/admin/user/profile/edit/11',
18878   'textgroup' => 'default',
18879   'source' => 'Public field, content shown on profile page but not used on member list pages.',
18880   'version' => '6.38-dev',
18881 ))
18882 ->values(array(
18883   'lid' => '1149',
18884   'location' => '/?q=fr/admin/user/profile/edit/11',
18885   'textgroup' => 'default',
18886   'source' => 'Public field, content shown on profile page and on member list pages.',
18887   'version' => '6.38-dev',
18888 ))
18889 ->values(array(
18890   'lid' => '1150',
18891   'location' => '/?q=fr/admin/user/profile/edit/11',
18892   'textgroup' => 'default',
18893   'source' => 'Page title',
18894   'version' => '6.38-dev',
18895 ))
18896 ->values(array(
18897   'lid' => '1151',
18898   'location' => '/?q=fr/admin/user/profile/edit/11',
18899   'textgroup' => 'default',
18900   'source' => 'To enable browsing this field by value, enter a title for the resulting page. The word <code>%value</code> will be substituted with the corresponding value. An example page title is "People whose favorite color is %value". This is only applicable for a public field.',
18901   'version' => '6.38-dev',
18902 ))
18903 ->values(array(
18904   'lid' => '1152',
18905   'location' => '/?q=fr/admin/user/profile/edit/11',
18906   'textgroup' => 'default',
18907   'source' => 'The weights define the order in which the form fields are shown. Lighter fields "float up" towards the top of the category.',
18908   'version' => '6.38-dev',
18909 ))
18910 ->values(array(
18911   'lid' => '1153',
18912   'location' => '/?q=fr/admin/user/profile/edit/11',
18913   'textgroup' => 'default',
18914   'source' => 'Form will auto-complete while user is typing.',
18915   'version' => '6.38-dev',
18916 ))
18917 ->values(array(
18918   'lid' => '1154',
18919   'location' => '/?q=fr/admin/user/profile/edit/11',
18920   'textgroup' => 'default',
18921   'source' => 'For security, auto-complete will be disabled if the user does not have access to user profiles.',
18922   'version' => '6.38-dev',
18923 ))
18924 ->values(array(
18925   'lid' => '1155',
18926   'location' => '/?q=fr/admin/user/profile/edit/11',
18927   'textgroup' => 'default',
18928   'source' => 'The user must enter a value.',
18929   'version' => '6.38-dev',
18930 ))
18931 ->values(array(
18932   'lid' => '1156',
18933   'location' => '/?q=fr/admin/user/profile/edit/11',
18934   'textgroup' => 'default',
18935   'source' => 'Visible in user registration form.',
18936   'version' => '6.38-dev',
18937 ))
18938 ->values(array(
18939   'lid' => '1157',
18940   'location' => '/?q=fr/admin/user/profile/edit/11',
18941   'textgroup' => 'default',
18942   'source' => 'Save field',
18943   'version' => '6.38-dev',
18944 ))
18945 ->values(array(
18946   'lid' => '1158',
18947   'location' => '/?q=fr/admin/user/profile/edit/11',
18948   'textgroup' => 'default',
18949   'source' => 'The specified form name contains one or more illegal characters. Spaces or any other special characters except dash (-) and underscore (_) are not allowed.',
18950   'version' => '6.38-dev',
18951 ))
18952 ->values(array(
18953   'lid' => '1159',
18954   'location' => '/?q=fr/admin/settings/language/configure',
18955   'textgroup' => 'default',
18956   'source' => 'None.',
18957   'version' => '6.38-dev',
18958 ))
18959 ->values(array(
18960   'lid' => '1160',
18961   'location' => '/?q=fr/admin/settings/language/configure',
18962   'textgroup' => 'default',
18963   'source' => 'Path prefix only.',
18964   'version' => '6.38-dev',
18965 ))
18966 ->values(array(
18967   'lid' => '1161',
18968   'location' => '/?q=fr/admin/settings/language/configure',
18969   'textgroup' => 'default',
18970   'source' => 'Path prefix with language fallback.',
18971   'version' => '6.38-dev',
18972 ))
18973 ->values(array(
18974   'lid' => '1162',
18975   'location' => '/?q=fr/admin/settings/language/configure',
18976   'textgroup' => 'default',
18977   'source' => 'Domain name only.',
18978   'version' => '6.38-dev',
18979 ))
18980 ->values(array(
18981   'lid' => '1163',
18982   'location' => '/?q=fr/admin/settings/language/configure',
18983   'textgroup' => 'default',
18984   'source' => "Select the mechanism used to determine your site's presentation language. <strong>Modifying this setting may break all incoming URLs and should be used with caution in a production environment.</strong>",
18985   'version' => '6.38-dev',
18986 ))
18987 ->values(array(
18988   'lid' => '1164',
18989   'location' => '/?q=fr/admin/settings/language/configure',
18990   'textgroup' => 'default',
18991   'source' => 'Save settings',
18992   'version' => '6.38-dev',
18993 ))
18994 ->values(array(
18995   'lid' => '1165',
18996   'location' => '/?q=fr/admin/settings/language/configure',
18997   'textgroup' => 'default',
18998   'source' => "Language negotiation settings determine the site's presentation language. Available options include:",
18999   'version' => '6.38-dev',
19000 ))
19001 ->values(array(
19002   'lid' => '1166',
19003   'location' => '/?q=fr/admin/settings/language/configure',
19004   'textgroup' => 'default',
19005   'source' => '<strong>None.</strong> The default language is used for site presentation, though users may (optionally) select a preferred language on the <em>My Account</em> page. (User language preferences will be used for site e-mails, if available.)',
19006   'version' => '6.38-dev',
19007 ))
19008 ->values(array(
19009   'lid' => '1167',
19010   'location' => '/?q=fr/admin/settings/language/configure',
19011   'textgroup' => 'default',
19012   'source' => '<strong>Path prefix only.</strong> The presentation language is determined by examining the path for a language code or other custom string that matches the path prefix (if any) specified for each language. If a suitable prefix is not identified, the default language is used. <em>Example: "example.com/de/contact" sets presentation language to German based on the use of "de" within the path.</em>',
19013   'version' => '6.38-dev',
19014 ))
19015 ->values(array(
19016   'lid' => '1168',
19017   'location' => '/?q=fr/admin/settings/language/configure',
19018   'textgroup' => 'default',
19019   'source' => "<strong>Path prefix with language fallback.</strong> The presentation language is determined by examining the path for a language code or other custom string that matches the path prefix (if any) specified for each language. If a suitable prefix is not identified, the display language is determined by the user's language preferences from the <em>My Account</em> page, or by the browser's language settings. If a presentation language cannot be determined, the default language is used.",
19020   'version' => '6.38-dev',
19021 ))
19022 ->values(array(
19023   'lid' => '1169',
19024   'location' => '/?q=fr/admin/settings/language/configure',
19025   'textgroup' => 'default',
19026   'source' => '<strong>Domain name only.</strong> The presentation language is determined by examining the domain used to access the site, and comparing it to the language domain (if any) specified for each language. If a match is not identified, the default language is used. <em>Example: "http://de.example.com/contact" sets presentation language to German based on the use of "http://de.example.com" in the domain.</em>',
19027   'version' => '6.38-dev',
19028 ))
19029 ->values(array(
19030   'lid' => '1170',
19031   'location' => '/?q=fr/admin/settings/language/configure',
19032   'textgroup' => 'default',
19033   'source' => 'The path prefix or domain name for a language may be set by editing the <a href="@languages">available languages</a>. In the absence of an appropriate match, the site is displayed in the <a href="@languages">default language</a>.',
19034   'version' => '6.38-dev',
19035 ))
19036 ->values(array(
19037   'lid' => '1171',
19038   'location' => '/?q=fr/admin/settings/language/configure/strings',
19039   'textgroup' => 'default',
19040   'source' => 'Translatable input formats',
19041   'version' => '6.38-dev',
19042 ))
19043 ->values(array(
19044   'lid' => '1172',
19045   'location' => '/?q=fr/admin/settings/language/configure/strings',
19046   'textgroup' => 'default',
19047   'source' => 'Only the strings that have the input formats selected will be allowed by the translation system. All the others will be deleted next time the strings are refreshed.',
19048   'version' => '6.38-dev',
19049 ))
19050 ->values(array(
19051   'lid' => '1173',
19052   'location' => '/?q=fr/admin/settings/language/configure/strings',
19053   'textgroup' => 'default',
19054   'source' => 'Built-in interface',
19055   'version' => '6.38-dev',
19056 ))
19057 ->values(array(
19058   'lid' => '1174',
19059   'location' => '/?q=fr/admin/settings/language/configure/strings',
19060   'textgroup' => 'default',
19061   'source' => 'Blocks',
19062   'version' => '6.38-dev',
19063 ))
19064 ->values(array(
19065   'lid' => '1175',
19066   'location' => '/?q=fr/admin/settings/language/configure/strings',
19067   'textgroup' => 'default',
19068   'source' => 'Menu',
19069   'version' => '6.38-dev',
19070 ))
19071 ->values(array(
19072   'lid' => '1176',
19073   'location' => '/?q=fr/admin/settings/language/configure/strings',
19074   'textgroup' => 'default',
19075   'source' => 'Profile',
19076   'version' => '6.38-dev',
19077 ))
19078 ->values(array(
19079   'lid' => '1177',
19080   'location' => '/?q=fr/admin/settings/language/configure/strings',
19081   'textgroup' => 'default',
19082   'source' => 'When translating user defined strings that have an Input format associated, translators will be able to edit the text before it is filtered which may be a security risk for some filters. An obvious example is when using the PHP filter but other filters may also be dangerous.',
19083   'version' => '6.38-dev',
19084 ))
19085 ->values(array(
19086   'lid' => '1178',
19087   'location' => '/?q=fr/admin/settings/language/configure/strings',
19088   'textgroup' => 'default',
19089   'source' => "As a general rule <strong>do not allow any filtered text to be translated unless the translators already have access to that Input format</strong>. However if you are doing all your translations through this site's translation UI or the Localization client, and never importing translations for other textgroups than <i>default</i>, filter access will be checked for translators on every translation page.",
19090   'version' => '6.38-dev',
19091 ))
19092 ->values(array(
19093   'lid' => '1179',
19094   'location' => '/?q=fr/admin/settings/language/configure/strings',
19095   'textgroup' => 'default',
19096   'source' => '<strong>Important:</strong> After disallowing some Input format, use the <a href="@refresh-strings">refresh strings</a> page so forbidden strings are deleted and not allowed anymore for translators.',
19097   'version' => '6.38-dev',
19098 ))
19099 ->values(array(
19100   'lid' => '1180',
19101   'location' => '/?q=fr/admin/settings/language/i18n',
19102   'textgroup' => 'default',
19103   'source' => 'Content selection',
19104   'version' => '6.38-dev',
19105 ))
19106 ->values(array(
19107   'lid' => '1181',
19108   'location' => '/?q=fr/admin/settings/language/i18n',
19109   'textgroup' => 'default',
19110   'source' => 'Content selection mode',
19111   'version' => '6.38-dev',
19112 ))
19113 ->values(array(
19114   'lid' => '1182',
19115   'location' => '/?q=fr/admin/settings/language/i18n',
19116   'textgroup' => 'default',
19117   'source' => 'Current language and language neutral.',
19118   'version' => '6.38-dev',
19119 ))
19120 ->values(array(
19121   'lid' => '1183',
19122   'location' => '/?q=fr/admin/settings/language/i18n',
19123   'textgroup' => 'default',
19124   'source' => 'Mixed current language (if available) or default language (if not) and language neutral.',
19125   'version' => '6.38-dev',
19126 ))
19127 ->values(array(
19128   'lid' => '1184',
19129   'location' => '/?q=fr/admin/settings/language/i18n',
19130   'textgroup' => 'default',
19131   'source' => 'Only default language and language neutral.',
19132   'version' => '6.38-dev',
19133 ))
19134 ->values(array(
19135   'lid' => '1185',
19136   'location' => '/?q=fr/admin/settings/language/i18n',
19137   'textgroup' => 'default',
19138   'source' => 'Only current language.',
19139   'version' => '6.38-dev',
19140 ))
19141 ->values(array(
19142   'lid' => '1186',
19143   'location' => '/?q=fr/admin/settings/language/i18n',
19144   'textgroup' => 'default',
19145   'source' => 'All content. No language conditions apply.',
19146   'version' => '6.38-dev',
19147 ))
19148 ->values(array(
19149   'lid' => '1187',
19150   'location' => '/?q=fr/admin/settings/language/i18n',
19151   'textgroup' => 'default',
19152   'source' => 'Determines which content to show depending on the current page language and the default language of the site.',
19153   'version' => '6.38-dev',
19154 ))
19155 ->values(array(
19156   'lid' => '1188',
19157   'location' => '/?q=fr/admin/settings/language/i18n',
19158   'textgroup' => 'default',
19159   'source' => 'Content translation links',
19160   'version' => '6.38-dev',
19161 ))
19162 ->values(array(
19163   'lid' => '1189',
19164   'location' => '/?q=fr/admin/settings/language/i18n',
19165   'textgroup' => 'default',
19166   'source' => 'Hide content translation links',
19167   'version' => '6.38-dev',
19168 ))
19169 ->values(array(
19170   'lid' => '1190',
19171   'location' => '/?q=fr/admin/settings/language/i18n',
19172   'textgroup' => 'default',
19173   'source' => 'Hide the links to translations in content body and teasers. If you choose this option, switching language will only be available from the language switcher block.',
19174   'version' => '6.38-dev',
19175 ))
19176 ->values(array(
19177   'lid' => '1191',
19178   'location' => '/?q=fr/admin/settings/language/i18n',
19179   'textgroup' => 'default',
19180   'source' => 'Switch interface for translating',
19181   'version' => '6.38-dev',
19182 ))
19183 ->values(array(
19184   'lid' => '1192',
19185   'location' => '/?q=fr/admin/settings/language/i18n',
19186   'textgroup' => 'default',
19187   'source' => 'Switch interface language to fit node language when creating or editing a translation. If not checked the interface language will be independent from node language.',
19188   'version' => '6.38-dev',
19189 ))
19190 ->values(array(
19191   'lid' => '1193',
19192   'location' => '/?q=fr/admin/settings/language/i18n',
19193   'textgroup' => 'default',
19194   'source' => 'To set up multilingual options for vocabularies go to <a href="@configure_taxonomy">Taxonomy configuration page</a>.',
19195   'version' => '6.38-dev',
19196 ))
19197 ->values(array(
19198   'lid' => '1194',
19199   'location' => '/?q=fr/admin/settings/language/i18n',
19200   'textgroup' => 'default',
19201   'source' => 'To enable multilingual support for specific content types go to <a href="@configure_content_types">configure content types</a>.',
19202   'version' => '6.38-dev',
19203 ))
19204 ->values(array(
19205   'lid' => '1195',
19206   'location' => '/?q=fr/admin',
19207   'textgroup' => 'default',
19208   'source' => 'Drupal',
19209   'version' => '6.38-dev',
19210 ))
19211 ->values(array(
19212   'lid' => '1196',
19213   'location' => '/?q=fr/admin',
19214   'textgroup' => 'default',
19215   'source' => 'Web server',
19216   'version' => '6.38-dev',
19217 ))
19218 ->values(array(
19219   'lid' => '1197',
19220   'location' => '/?q=fr/admin',
19221   'textgroup' => 'default',
19222   'source' => 'PHP',
19223   'version' => '6.38-dev',
19224 ))
19225 ->values(array(
19226   'lid' => '1198',
19227   'location' => '/?q=fr/admin',
19228   'textgroup' => 'default',
19229   'source' => 'PHP register globals',
19230   'version' => '6.38-dev',
19231 ))
19232 ->values(array(
19233   'lid' => '1199',
19234   'location' => '/?q=fr/admin',
19235   'textgroup' => 'default',
19236   'source' => 'PHP memory limit',
19237   'version' => '6.38-dev',
19238 ))
19239 ->values(array(
19240   'lid' => '1200',
19241   'location' => '/?q=fr/admin',
19242   'textgroup' => 'default',
19243   'source' => 'MySQL database',
19244   'version' => '6.38-dev',
19245 ))
19246 ->values(array(
19247   'lid' => '1201',
19248   'location' => '/?q=fr/admin',
19249   'textgroup' => 'default',
19250   'source' => 'Protected',
19251   'version' => '6.38-dev',
19252 ))
19253 ->values(array(
19254   'lid' => '1202',
19255   'location' => '/?q=fr/admin',
19256   'textgroup' => 'default',
19257   'source' => 'Configuration file',
19258   'version' => '6.38-dev',
19259 ))
19260 ->values(array(
19261   'lid' => '1203',
19262   'location' => '/?q=fr/admin',
19263   'textgroup' => 'default',
19264   'source' => 'Files directory',
19265   'version' => '6.38-dev',
19266 ))
19267 ->values(array(
19268   'lid' => '1204',
19269   'location' => '/?q=fr/admin',
19270   'textgroup' => 'default',
19271   'source' => 'Temporary files directory',
19272   'version' => '6.38-dev',
19273 ))
19274 ->values(array(
19275   'lid' => '1205',
19276   'location' => '/?q=fr/admin',
19277   'textgroup' => 'default',
19278   'source' => 'Not fully protected',
19279   'version' => '6.38-dev',
19280 ))
19281 ->values(array(
19282   'lid' => '1206',
19283   'location' => '/?q=fr/admin',
19284   'textgroup' => 'default',
19285   'source' => 'See <a href="@url">@url</a> for information about the recommended .htaccess file which should be added to the %directory directory to help protect against arbitrary code execution.',
19286   'version' => '6.38-dev',
19287 ))
19288 ->values(array(
19289   'lid' => '1207',
19290   'location' => '/?q=fr/admin',
19291   'textgroup' => 'default',
19292   'source' => 'For more information, see the online handbook entry for <a href="@cron-handbook">configuring cron jobs</a>.',
19293   'version' => '6.38-dev',
19294 ))
19295 ->values(array(
19296   'lid' => '1208',
19297   'location' => '/?q=fr/admin',
19298   'textgroup' => 'default',
19299   'source' => 'Never run',
19300   'version' => '6.38-dev',
19301 ))
19302 ->values(array(
19303   'lid' => '1209',
19304   'location' => '/?q=fr/admin',
19305   'textgroup' => 'default',
19306   'source' => 'Cron has not run.',
19307   'version' => '6.38-dev',
19308 ))
19309 ->values(array(
19310   'lid' => '1210',
19311   'location' => '/?q=fr/admin',
19312   'textgroup' => 'default',
19313   'source' => 'Cron maintenance tasks',
19314   'version' => '6.38-dev',
19315 ))
19316 ->values(array(
19317   'lid' => '1211',
19318   'location' => '/?q=fr/admin',
19319   'textgroup' => 'default',
19320   'source' => 'You can <a href="@cron">run cron manually</a>.',
19321   'version' => '6.38-dev',
19322 ))
19323 ->values(array(
19324   'lid' => '1212',
19325   'location' => '/?q=fr/admin',
19326   'textgroup' => 'default',
19327   'source' => 'Not writable',
19328   'version' => '6.38-dev',
19329 ))
19330 ->values(array(
19331   'lid' => '1213',
19332   'location' => '/?q=fr/admin',
19333   'textgroup' => 'default',
19334   'source' => "You may need to set the correct directory at the <a href=\"@admin-file-system\">file system settings page</a> or change the current directory's permissions so that it is writable.",
19335   'version' => '6.38-dev',
19336 ))
19337 ->values(array(
19338   'lid' => '1214',
19339   'location' => '/?q=fr/admin',
19340   'textgroup' => 'default',
19341   'source' => 'Database updates',
19342   'version' => '6.38-dev',
19343 ))
19344 ->values(array(
19345   'lid' => '1215',
19346   'location' => '/?q=fr/admin',
19347   'textgroup' => 'default',
19348   'source' => 'Up to date',
19349   'version' => '6.38-dev',
19350 ))
19351 ->values(array(
19352   'lid' => '1216',
19353   'location' => '/?q=fr/admin',
19354   'textgroup' => 'default',
19355   'source' => 'Access to update.php',
19356   'version' => '6.38-dev',
19357 ))
19358 ->values(array(
19359   'lid' => '1217',
19360   'location' => '/?q=fr/admin',
19361   'textgroup' => 'default',
19362   'source' => 'Standard PHP',
19363   'version' => '6.38-dev',
19364 ))
19365 ->values(array(
19366   'lid' => '1218',
19367   'location' => '/?q=fr/admin',
19368   'textgroup' => 'default',
19369   'source' => 'PHP Mbstring Extension',
19370   'version' => '6.38-dev',
19371 ))
19372 ->values(array(
19373   'lid' => '1219',
19374   'location' => '/?q=fr/admin',
19375   'textgroup' => 'default',
19376   'source' => 'Error',
19377   'version' => '6.38-dev',
19378 ))
19379 ->values(array(
19380   'lid' => '1220',
19381   'location' => '/?q=fr/admin',
19382   'textgroup' => 'default',
19383   'source' => 'Unicode library',
19384   'version' => '6.38-dev',
19385 ))
19386 ->values(array(
19387   'lid' => '1221',
19388   'location' => '/?q=fr/admin',
19389   'textgroup' => 'default',
19390   'source' => 'Not enabled',
19391   'version' => '6.38-dev',
19392 ))
19393 ->values(array(
19394   'lid' => '1222',
19395   'location' => '/?q=fr/admin',
19396   'textgroup' => 'default',
19397   'source' => 'Update notifications are not enabled. It is <strong>highly recommended</strong> that you enable the update status module from the <a href="@module">module administration page</a> in order to stay up-to-date on new releases. For more information please read the <a href="@update">Update status handbook page</a>.',
19398   'version' => '6.38-dev',
19399 ))
19400 ->values(array(
19401   'lid' => '1223',
19402   'location' => '/?q=fr/admin',
19403   'textgroup' => 'default',
19404   'source' => 'Update notifications',
19405   'version' => '6.38-dev',
19406 ))
19407 ->values(array(
19408   'lid' => '1224',
19409   'location' => '/?q=fr/admin',
19410   'textgroup' => 'default',
19411   'source' => 'set the site timezone name',
19412   'version' => '6.38-dev',
19413 ))
19414 ->values(array(
19415   'lid' => '1225',
19416   'location' => '/?q=fr/admin',
19417   'textgroup' => 'default',
19418   'source' => 'The Date Timezone module requires you to !link.',
19419   'version' => '6.38-dev',
19420 ))
19421 ->values(array(
19422   'lid' => '1226',
19423   'location' => '/?q=fr/admin',
19424   'textgroup' => 'default',
19425   'source' => 'Date Timezone requirements',
19426   'version' => '6.38-dev',
19427 ))
19428 ->values(array(
19429   'lid' => '1227',
19430   'location' => '/?q=fr/admin',
19431   'textgroup' => 'default',
19432   'source' => 'MySQL database for event module',
19433   'version' => '6.38-dev',
19434 ))
19435 ->values(array(
19436   'lid' => '1228',
19437   'location' => '/?q=fr/admin',
19438   'textgroup' => 'default',
19439   'source' => 'Your server is capable of displaying file upload progress, but does not have the required libraries. It is recommended to install the <a href="http://pecl.php.net/package/uploadprogress">PECL uploadprogress library</a> (preferred) or to install <a href="http://us2.php.net/apc">APC</a>.',
19440   'version' => '6.38-dev',
19441 ))
19442 ->values(array(
19443   'lid' => '1229',
19444   'location' => '/?q=fr/admin',
19445   'textgroup' => 'default',
19446   'source' => 'Upload progress',
19447   'version' => '6.38-dev',
19448 ))
19449 ->values(array(
19450   'lid' => '1230',
19451   'location' => '/?q=fr/admin',
19452   'textgroup' => 'default',
19453   'source' => 'ImageAPI Toolkit',
19454   'version' => '6.38-dev',
19455 ))
19456 ->values(array(
19457   'lid' => '1231',
19458   'location' => '/?q=fr/admin',
19459   'textgroup' => 'default',
19460   'source' => 'No ImageAPI toolkits available',
19461   'version' => '6.38-dev',
19462 ))
19463 ->values(array(
19464   'lid' => '1232',
19465   'location' => '/?q=fr/admin',
19466   'textgroup' => 'default',
19467   'source' => 'ImageAPI requires a Toolkit such as ImageAPI GD or ImageAPI ImageMagick to function. Go to !modules and enable one of them.',
19468   'version' => '6.38-dev',
19469 ))
19470 ->values(array(
19471   'lid' => '1233',
19472   'location' => '/?q=fr/admin',
19473   'textgroup' => 'default',
19474   'source' => 'ImageCache Directory',
19475   'version' => '6.38-dev',
19476 ))
19477 ->values(array(
19478   'lid' => '1234',
19479   'location' => '/?q=fr/admin',
19480   'textgroup' => 'default',
19481   'source' => '%p is not a directory or is not readable by the webserver.',
19482   'version' => '6.38-dev',
19483 ))
19484 ->values(array(
19485   'lid' => '1235',
19486   'location' => '/?q=fr/admin',
19487   'textgroup' => 'default',
19488   'source' => 'One or more problems were detected with your Drupal installation. Check the <a href="@status">status report</a> for more information.',
19489   'version' => '6.38-dev',
19490 ))
19491 ->values(array(
19492   'lid' => '1236',
19493   'location' => '/?q=fr/admin',
19494   'textgroup' => 'default',
19495   'source' => 'Comments',
19496   'version' => '6.38-dev',
19497 ))
19498 ->values(array(
19499   'lid' => '1237',
19500   'location' => '/?q=fr/admin',
19501   'textgroup' => 'default',
19502   'source' => 'List and edit site comments and the comment moderation queue.',
19503   'version' => '6.38-dev',
19504 ))
19505 ->values(array(
19506   'lid' => '1238',
19507   'location' => '/?q=fr/admin',
19508   'textgroup' => 'default',
19509   'source' => "View, edit, and delete your site's content.",
19510   'version' => '6.38-dev',
19511 ))
19512 ->values(array(
19513   'lid' => '1239',
19514   'location' => '/?q=fr/admin',
19515   'textgroup' => 'default',
19516   'source' => 'Manage posts by content type, including default status, front page promotion, etc.',
19517   'version' => '6.38-dev',
19518 ))
19519 ->values(array(
19520   'lid' => '1240',
19521   'location' => '/?q=fr/admin',
19522   'textgroup' => 'default',
19523   'source' => 'Post settings',
19524   'version' => '6.38-dev',
19525 ))
19526 ->values(array(
19527   'lid' => '1241',
19528   'location' => '/?q=fr/admin',
19529   'textgroup' => 'default',
19530   'source' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.',
19531   'version' => '6.38-dev',
19532 ))
19533 ->values(array(
19534   'lid' => '1242',
19535   'location' => '/?q=fr/admin',
19536   'textgroup' => 'default',
19537   'source' => 'RSS publishing',
19538   'version' => '6.38-dev',
19539 ))
19540 ->values(array(
19541   'lid' => '1243',
19542   'location' => '/?q=fr/admin',
19543   'textgroup' => 'default',
19544   'source' => 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.',
19545   'version' => '6.38-dev',
19546 ))
19547 ->values(array(
19548   'lid' => '1244',
19549   'location' => '/?q=fr/admin',
19550   'textgroup' => 'default',
19551   'source' => 'Manage tagging, categorization, and classification of your content.',
19552   'version' => '6.38-dev',
19553 ))
19554 ->values(array(
19555   'lid' => '1245',
19556   'location' => '/?q=fr/admin',
19557   'textgroup' => 'default',
19558   'source' => "Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.",
19559   'version' => '6.38-dev',
19560 ))
19561 ->values(array(
19562   'lid' => '1246',
19563   'location' => '/?q=fr/admin',
19564   'textgroup' => 'default',
19565   'source' => "Manage your site's book outlines.",
19566   'version' => '6.38-dev',
19567 ))
19568 ->values(array(
19569   'lid' => '1247',
19570   'location' => '/?q=fr/admin',
19571   'textgroup' => 'default',
19572   'source' => 'Status report',
19573   'version' => '6.38-dev',
19574 ))
19575 ->values(array(
19576   'lid' => '1248',
19577   'location' => '/?q=fr/admin',
19578   'textgroup' => 'default',
19579   'source' => "Get a status report about your site's operation and any detected problems.",
19580   'version' => '6.38-dev',
19581 ))
19582 ->values(array(
19583   'lid' => '1249',
19584   'location' => '/?q=fr/admin',
19585   'textgroup' => 'default',
19586   'source' => "Configure what block content appears in your site's sidebars and other regions.",
19587   'version' => '6.38-dev',
19588 ))
19589 ->values(array(
19590   'lid' => '1250',
19591   'location' => '/?q=fr/admin',
19592   'textgroup' => 'default',
19593   'source' => 'Contact form',
19594   'version' => '6.38-dev',
19595 ))
19596 ->values(array(
19597   'lid' => '1251',
19598   'location' => '/?q=fr/admin',
19599   'textgroup' => 'default',
19600   'source' => 'Create a system contact form and set up categories for the form to use.',
19601   'version' => '6.38-dev',
19602 ))
19603 ->values(array(
19604   'lid' => '1252',
19605   'location' => '/?q=fr/admin',
19606   'textgroup' => 'default',
19607   'source' => 'Menus',
19608   'version' => '6.38-dev',
19609 ))
19610 ->values(array(
19611   'lid' => '1253',
19612   'location' => '/?q=fr/admin',
19613   'textgroup' => 'default',
19614   'source' => "Control your site's navigation menu, primary links and secondary links, as well as rename and reorganize menu items.",
19615   'version' => '6.38-dev',
19616 ))
19617 ->values(array(
19618   'lid' => '1254',
19619   'location' => '/?q=fr/admin',
19620   'textgroup' => 'default',
19621   'source' => 'Modules',
19622   'version' => '6.38-dev',
19623 ))
19624 ->values(array(
19625   'lid' => '1255',
19626   'location' => '/?q=fr/admin',
19627   'textgroup' => 'default',
19628   'source' => 'Enable or disable add-on modules for your site.',
19629   'version' => '6.38-dev',
19630 ))
19631 ->values(array(
19632   'lid' => '1256',
19633   'location' => '/?q=fr/admin',
19634   'textgroup' => 'default',
19635   'source' => 'Themes',
19636   'version' => '6.38-dev',
19637 ))
19638 ->values(array(
19639   'lid' => '1257',
19640   'location' => '/?q=fr/admin',
19641   'textgroup' => 'default',
19642   'source' => 'Change which theme your site uses or allows users to set.',
19643   'version' => '6.38-dev',
19644 ))
19645 ->values(array(
19646   'lid' => '1258',
19647   'location' => '/?q=fr/admin',
19648   'textgroup' => 'default',
19649   'source' => 'URL aliases',
19650   'version' => '6.38-dev',
19651 ))
19652 ->values(array(
19653   'lid' => '1259',
19654   'location' => '/?q=fr/admin',
19655   'textgroup' => 'default',
19656   'source' => "Change your site's URL paths by aliasing them.",
19657   'version' => '6.38-dev',
19658 ))
19659 ->values(array(
19660   'lid' => '1260',
19661   'location' => '/?q=fr/admin',
19662   'textgroup' => 'default',
19663   'source' => 'Translate interface',
19664   'version' => '6.38-dev',
19665 ))
19666 ->values(array(
19667   'lid' => '1261',
19668   'location' => '/?q=fr/admin',
19669   'textgroup' => 'default',
19670   'source' => 'Translate the built in interface and optionally other text.',
19671   'version' => '6.38-dev',
19672 ))
19673 ->values(array(
19674   'lid' => '1262',
19675   'location' => '/?q=fr/admin',
19676   'textgroup' => 'default',
19677   'source' => 'Hide descriptions',
19678   'version' => '6.38-dev',
19679 ))
19680 ->values(array(
19681   'lid' => '1263',
19682   'location' => '/?q=fr/admin',
19683   'textgroup' => 'default',
19684   'source' => 'Compress layout by hiding descriptions.',
19685   'version' => '6.38-dev',
19686 ))
19687 ->values(array(
19688   'lid' => '1264',
19689   'location' => '/?q=fr/admin',
19690   'textgroup' => 'default',
19691   'source' => 'By task',
19692   'version' => '6.38-dev',
19693 ))
19694 ->values(array(
19695   'lid' => '1265',
19696   'location' => '/?q=fr/admin',
19697   'textgroup' => 'default',
19698   'source' => 'By module',
19699   'version' => '6.38-dev',
19700 ))
19701 ->values(array(
19702   'lid' => '1266',
19703   'location' => '/?q=fr/admin',
19704   'textgroup' => 'default',
19705   'source' => 'Welcome to the administration section. Here you may control how your site functions.',
19706   'version' => '6.38-dev',
19707 ))
19708 ->values(array(
19709   'lid' => '1267',
19710   'location' => '/?q=fr/admin/by-module',
19711   'textgroup' => 'default',
19712   'source' => 'Configure permissions',
19713   'version' => '6.38-dev',
19714 ))
19715 ->values(array(
19716   'lid' => '1268',
19717   'location' => '/?q=fr/admin/by-module',
19718   'textgroup' => 'default',
19719   'source' => 'Store a date in the database as an ISO date, recommended for historical or partial dates.',
19720   'version' => '6.38-dev',
19721 ))
19722 ->values(array(
19723   'lid' => '1269',
19724   'location' => '/?q=fr/admin/by-module',
19725   'textgroup' => 'default',
19726   'source' => 'Store a date in the database as a timestamp, deprecated format to suppport legacy data.',
19727   'version' => '6.38-dev',
19728 ))
19729 ->values(array(
19730   'lid' => '1270',
19731   'location' => '/?q=fr/admin/by-module',
19732   'textgroup' => 'default',
19733   'source' => 'Store a date in the database as a datetime field, recommended for complete dates and times that may need timezone conversion.',
19734   'version' => '6.38-dev',
19735 ))
19736 ->values(array(
19737   'lid' => '1271',
19738   'location' => '/?q=fr/admin/by-module',
19739   'textgroup' => 'default',
19740   'source' => 'File',
19741   'version' => '6.38-dev',
19742 ))
19743 ->values(array(
19744   'lid' => '1272',
19745   'location' => '/?q=fr/admin/by-module',
19746   'textgroup' => 'default',
19747   'source' => 'Store an arbitrary file.',
19748   'version' => '6.38-dev',
19749 ))
19750 ->values(array(
19751   'lid' => '1273',
19752   'location' => '/?q=fr/admin/by-module',
19753   'textgroup' => 'default',
19754   'source' => 'Link',
19755   'version' => '6.38-dev',
19756 ))
19757 ->values(array(
19758   'lid' => '1274',
19759   'location' => '/?q=fr/admin/by-module',
19760   'textgroup' => 'default',
19761   'source' => 'Store a title, href, and attributes in the database to assemble a link.',
19762   'version' => '6.38-dev',
19763 ))
19764 ->values(array(
19765   'lid' => '1275',
19766   'location' => '/?q=fr/admin/by-module',
19767   'textgroup' => 'default',
19768   'source' => 'Phone Numbers - France',
19769   'version' => '6.38-dev',
19770 ))
19771 ->values(array(
19772   'lid' => '1276',
19773   'location' => '/?q=fr/admin/by-module',
19774   'textgroup' => 'default',
19775   'source' => 'Phone Numbers - Belgium',
19776   'version' => '6.38-dev',
19777 ))
19778 ->values(array(
19779   'lid' => '1277',
19780   'location' => '/?q=fr/admin/by-module',
19781   'textgroup' => 'default',
19782   'source' => 'Phone Numbers - Italy',
19783   'version' => '6.38-dev',
19784 ))
19785 ->values(array(
19786   'lid' => '1278',
19787   'location' => '/?q=fr/admin/by-module',
19788   'textgroup' => 'default',
19789   'source' => 'Phone Numbers - Greece',
19790   'version' => '6.38-dev',
19791 ))
19792 ->values(array(
19793   'lid' => '1279',
19794   'location' => '/?q=fr/admin/by-module',
19795   'textgroup' => 'default',
19796   'source' => 'Phone Numbers - Switzerland',
19797   'version' => '6.38-dev',
19798 ))
19799 ->values(array(
19800   'lid' => '1280',
19801   'location' => '/?q=fr/admin/by-module',
19802   'textgroup' => 'default',
19803   'source' => 'Phone Numbers - US & Canada',
19804   'version' => '6.38-dev',
19805 ))
19806 ->values(array(
19807   'lid' => '1281',
19808   'location' => '/?q=fr/admin/by-module',
19809   'textgroup' => 'default',
19810   'source' => 'Phone Numbers - Costa Rica',
19811   'version' => '6.38-dev',
19812 ))
19813 ->values(array(
19814   'lid' => '1282',
19815   'location' => '/?q=fr/admin/by-module',
19816   'textgroup' => 'default',
19817   'source' => 'Phone Numbers - Panama',
19818   'version' => '6.38-dev',
19819 ))
19820 ->values(array(
19821   'lid' => '1283',
19822   'location' => '/?q=fr/admin/by-module',
19823   'textgroup' => 'default',
19824   'source' => 'Phone Numbers - Great Britain - United Kingdom',
19825   'version' => '6.38-dev',
19826 ))
19827 ->values(array(
19828   'lid' => '1284',
19829   'location' => '/?q=fr/admin/by-module',
19830   'textgroup' => 'default',
19831   'source' => 'Phone Numbers - Russia',
19832   'version' => '6.38-dev',
19833 ))
19834 ->values(array(
19835   'lid' => '1285',
19836   'location' => '/?q=fr/admin/by-module',
19837   'textgroup' => 'default',
19838   'source' => 'Phone Numbers - Ukraine - in Kiev',
19839   'version' => '6.38-dev',
19840 ))
19841 ->values(array(
19842   'lid' => '1286',
19843   'location' => '/?q=fr/admin/by-module',
19844   'textgroup' => 'default',
19845   'source' => 'Phone Numbers - Spain',
19846   'version' => '6.38-dev',
19847 ))
19848 ->values(array(
19849   'lid' => '1287',
19850   'location' => '/?q=fr/admin/by-module',
19851   'textgroup' => 'default',
19852   'source' => 'Phone Numbers - Australia',
19853   'version' => '6.38-dev',
19854 ))
19855 ->values(array(
19856   'lid' => '1288',
19857   'location' => '/?q=fr/admin/by-module',
19858   'textgroup' => 'default',
19859   'source' => 'Phone Numbers - Czech Republic',
19860   'version' => '6.38-dev',
19861 ))
19862 ->values(array(
19863   'lid' => '1289',
19864   'location' => '/?q=fr/admin/by-module',
19865   'textgroup' => 'default',
19866   'source' => 'Phone Numbers - Hungary',
19867   'version' => '6.38-dev',
19868 ))
19869 ->values(array(
19870   'lid' => '1290',
19871   'location' => '/?q=fr/admin/by-module',
19872   'textgroup' => 'default',
19873   'source' => 'Phone Numbers - Poland - mobiles only',
19874   'version' => '6.38-dev',
19875 ))
19876 ->values(array(
19877   'lid' => '1291',
19878   'location' => '/?q=fr/admin/by-module',
19879   'textgroup' => 'default',
19880   'source' => 'Phone Numbers - Netherland',
19881   'version' => '6.38-dev',
19882 ))
19883 ->values(array(
19884   'lid' => '1292',
19885   'location' => '/?q=fr/admin/by-module',
19886   'textgroup' => 'default',
19887   'source' => 'Phone Numbers - Sweden',
19888   'version' => '6.38-dev',
19889 ))
19890 ->values(array(
19891   'lid' => '1293',
19892   'location' => '/?q=fr/admin/by-module',
19893   'textgroup' => 'default',
19894   'source' => 'Phone Numbers - South Africa',
19895   'version' => '6.38-dev',
19896 ))
19897 ->values(array(
19898   'lid' => '1294',
19899   'location' => '/?q=fr/admin/by-module',
19900   'textgroup' => 'default',
19901   'source' => 'Phone Numbers - Israel',
19902   'version' => '6.38-dev',
19903 ))
19904 ->values(array(
19905   'lid' => '1295',
19906   'location' => '/?q=fr/admin/by-module',
19907   'textgroup' => 'default',
19908   'source' => 'Phone Numbers - New Zealand',
19909   'version' => '6.38-dev',
19910 ))
19911 ->values(array(
19912   'lid' => '1296',
19913   'location' => '/?q=fr/admin/by-module',
19914   'textgroup' => 'default',
19915   'source' => 'Phone Numbers - Brazil',
19916   'version' => '6.38-dev',
19917 ))
19918 ->values(array(
19919   'lid' => '1297',
19920   'location' => '/?q=fr/admin/by-module',
19921   'textgroup' => 'default',
19922   'source' => 'Phone Numbers - Chile',
19923   'version' => '6.38-dev',
19924 ))
19925 ->values(array(
19926   'lid' => '1298',
19927   'location' => '/?q=fr/admin/by-module',
19928   'textgroup' => 'default',
19929   'source' => 'Phone Numbers - China',
19930   'version' => '6.38-dev',
19931 ))
19932 ->values(array(
19933   'lid' => '1299',
19934   'location' => '/?q=fr/admin/by-module',
19935   'textgroup' => 'default',
19936   'source' => 'Phone Numbers - Hong-Kong',
19937   'version' => '6.38-dev',
19938 ))
19939 ->values(array(
19940   'lid' => '1300',
19941   'location' => '/?q=fr/admin/by-module',
19942   'textgroup' => 'default',
19943   'source' => 'Phone Numbers - Macao',
19944   'version' => '6.38-dev',
19945 ))
19946 ->values(array(
19947   'lid' => '1301',
19948   'location' => '/?q=fr/admin/by-module',
19949   'textgroup' => 'default',
19950   'source' => 'Phone Numbers - The Philippines',
19951   'version' => '6.38-dev',
19952 ))
19953 ->values(array(
19954   'lid' => '1302',
19955   'location' => '/?q=fr/admin/by-module',
19956   'textgroup' => 'default',
19957   'source' => 'Phone Numbers - Singapore',
19958   'version' => '6.38-dev',
19959 ))
19960 ->values(array(
19961   'lid' => '1303',
19962   'location' => '/?q=fr/admin/by-module',
19963   'textgroup' => 'default',
19964   'source' => 'Phone Numbers - Jordan',
19965   'version' => '6.38-dev',
19966 ))
19967 ->values(array(
19968   'lid' => '1304',
19969   'location' => '/?q=fr/admin/by-module',
19970   'textgroup' => 'default',
19971   'source' => 'Phone Numbers - Egypt',
19972   'version' => '6.38-dev',
19973 ))
19974 ->values(array(
19975   'lid' => '1305',
19976   'location' => '/?q=fr/admin/by-module',
19977   'textgroup' => 'default',
19978   'source' => 'Phone Numbers - Pakistan',
19979   'version' => '6.38-dev',
19980 ))
19981 ->values(array(
19982   'lid' => '1306',
19983   'location' => '/?q=fr/admin/by-module',
19984   'textgroup' => 'default',
19985   'source' => 'Phone Numbers - International Phone Numbers per E.123',
19986   'version' => '6.38-dev',
19987 ))
19988 ->values(array(
19989   'lid' => '1307',
19990   'location' => '/?q=fr/admin/by-module',
19991   'textgroup' => 'default',
19992   'source' => 'Select List',
19993   'version' => '6.38-dev',
19994 ))
19995 ->values(array(
19996   'lid' => '1308',
19997   'location' => '/?q=fr/admin/by-module',
19998   'textgroup' => 'default',
19999   'source' => 'Select List with Repeat options',
20000   'version' => '6.38-dev',
20001 ))
20002 ->values(array(
20003   'lid' => '1309',
20004   'location' => '/?q=fr/admin/by-module',
20005   'textgroup' => 'default',
20006   'source' => 'Text Field with custom input format',
20007   'version' => '6.38-dev',
20008 ))
20009 ->values(array(
20010   'lid' => '1310',
20011   'location' => '/?q=fr/admin/by-module',
20012   'textgroup' => 'default',
20013   'source' => 'Text Field with Repeat options',
20014   'version' => '6.38-dev',
20015 ))
20016 ->values(array(
20017   'lid' => '1311',
20018   'location' => '/?q=fr/admin/by-module',
20019   'textgroup' => 'default',
20020   'source' => 'As Time Ago',
20021   'version' => '6.38-dev',
20022 ))
20023 ->values(array(
20024   'lid' => '1312',
20025   'location' => '/?q=fr/admin/by-module',
20026   'textgroup' => 'default',
20027   'source' => 'Default email link',
20028   'version' => '6.38-dev',
20029 ))
20030 ->values(array(
20031   'lid' => '1313',
20032   'location' => '/?q=fr/admin/by-module',
20033   'textgroup' => 'default',
20034   'source' => 'Email contact form',
20035   'version' => '6.38-dev',
20036 ))
20037 ->values(array(
20038   'lid' => '1314',
20039   'location' => '/?q=fr/admin/by-module',
20040   'textgroup' => 'default',
20041   'source' => 'Email plain text',
20042   'version' => '6.38-dev',
20043 ))
20044 ->values(array(
20045   'lid' => '1315',
20046   'location' => '/?q=fr/admin/by-module',
20047   'textgroup' => 'default',
20048   'source' => 'File Upload',
20049   'version' => '6.38-dev',
20050 ))
20051 ->values(array(
20052   'lid' => '1316',
20053   'location' => '/?q=fr/admin/by-module',
20054   'textgroup' => 'default',
20055   'source' => 'A plain file upload widget.',
20056   'version' => '6.38-dev',
20057 ))
20058 ->values(array(
20059   'lid' => '1317',
20060   'location' => '/?q=fr/admin/by-module',
20061   'textgroup' => 'default',
20062   'source' => 'Generic files',
20063   'version' => '6.38-dev',
20064 ))
20065 ->values(array(
20066   'lid' => '1318',
20067   'location' => '/?q=fr/admin/by-module',
20068   'textgroup' => 'default',
20069   'source' => 'Displays all kinds of files with an icon and a linked file description.',
20070   'version' => '6.38-dev',
20071 ))
20072 ->values(array(
20073   'lid' => '1319',
20074   'location' => '/?q=fr/admin/by-module',
20075   'textgroup' => 'default',
20076   'source' => 'Path to file',
20077   'version' => '6.38-dev',
20078 ))
20079 ->values(array(
20080   'lid' => '1320',
20081   'location' => '/?q=fr/admin/by-module',
20082   'textgroup' => 'default',
20083   'source' => 'Displays the file system path to the file.',
20084   'version' => '6.38-dev',
20085 ))
20086 ->values(array(
20087   'lid' => '1321',
20088   'location' => '/?q=fr/admin/by-module',
20089   'textgroup' => 'default',
20090   'source' => 'URL to file',
20091   'version' => '6.38-dev',
20092 ))
20093 ->values(array(
20094   'lid' => '1322',
20095   'location' => '/?q=fr/admin/by-module',
20096   'textgroup' => 'default',
20097   'source' => 'Displays a full URL to the file.',
20098   'version' => '6.38-dev',
20099 ))
20100 ->values(array(
20101   'lid' => '1323',
20102   'location' => '/?q=fr/admin/by-module',
20103   'textgroup' => 'default',
20104   'source' => '@preset image',
20105   'version' => '6.38-dev',
20106 ))
20107 ->values(array(
20108   'lid' => '1324',
20109   'location' => '/?q=fr/admin/by-module',
20110   'textgroup' => 'default',
20111   'source' => '@preset image linked to node',
20112   'version' => '6.38-dev',
20113 ))
20114 ->values(array(
20115   'lid' => '1325',
20116   'location' => '/?q=fr/admin/by-module',
20117   'textgroup' => 'default',
20118   'source' => '@preset image linked to image',
20119   'version' => '6.38-dev',
20120 ))
20121 ->values(array(
20122   'lid' => '1326',
20123   'location' => '/?q=fr/admin/by-module',
20124   'textgroup' => 'default',
20125   'source' => '@preset file path',
20126   'version' => '6.38-dev',
20127 ))
20128 ->values(array(
20129   'lid' => '1327',
20130   'location' => '/?q=fr/admin/by-module',
20131   'textgroup' => 'default',
20132   'source' => '@preset URL',
20133   'version' => '6.38-dev',
20134 ))
20135 ->values(array(
20136   'lid' => '1328',
20137   'location' => '/?q=fr/admin/by-module',
20138   'textgroup' => 'default',
20139   'source' => 'Image',
20140   'version' => '6.38-dev',
20141 ))
20142 ->values(array(
20143   'lid' => '1329',
20144   'location' => '/?q=fr/admin/by-module',
20145   'textgroup' => 'default',
20146   'source' => 'An edit widget for image files, including a preview of the image.',
20147   'version' => '6.38-dev',
20148 ))
20149 ->values(array(
20150   'lid' => '1330',
20151   'location' => '/?q=fr/admin/by-module',
20152   'textgroup' => 'default',
20153   'source' => 'Displays image files in their original size.',
20154   'version' => '6.38-dev',
20155 ))
20156 ->values(array(
20157   'lid' => '1331',
20158   'location' => '/?q=fr/admin/by-module',
20159   'textgroup' => 'default',
20160   'source' => 'Image linked to node',
20161   'version' => '6.38-dev',
20162 ))
20163 ->values(array(
20164   'lid' => '1332',
20165   'location' => '/?q=fr/admin/by-module',
20166   'textgroup' => 'default',
20167   'source' => 'Image linked to file',
20168   'version' => '6.38-dev',
20169 ))
20170 ->values(array(
20171   'lid' => '1333',
20172   'location' => '/?q=fr/admin/by-module',
20173   'textgroup' => 'default',
20174   'source' => 'Title, as link (default)',
20175   'version' => '6.38-dev',
20176 ))
20177 ->values(array(
20178   'lid' => '1334',
20179   'location' => '/?q=fr/admin/by-module',
20180   'textgroup' => 'default',
20181   'source' => 'Title, as plain text',
20182   'version' => '6.38-dev',
20183 ))
20184 ->values(array(
20185   'lid' => '1335',
20186   'location' => '/?q=fr/admin/by-module',
20187   'textgroup' => 'default',
20188   'source' => 'URL, as link',
20189   'version' => '6.38-dev',
20190 ))
20191 ->values(array(
20192   'lid' => '1336',
20193   'location' => '/?q=fr/admin/by-module',
20194   'textgroup' => 'default',
20195   'source' => 'URL, as plain text',
20196   'version' => '6.38-dev',
20197 ))
20198 ->values(array(
20199   'lid' => '1337',
20200   'location' => '/?q=fr/admin/by-module',
20201   'textgroup' => 'default',
20202   'source' => 'URL, as absolute URL',
20203   'version' => '6.38-dev',
20204 ))
20205 ->values(array(
20206   'lid' => '1338',
20207   'location' => '/?q=fr/admin/by-module',
20208   'textgroup' => 'default',
20209   'source' => 'Short, as link with title "Link"',
20210   'version' => '6.38-dev',
20211 ))
20212 ->values(array(
20213   'lid' => '1339',
20214   'location' => '/?q=fr/admin/by-module',
20215   'textgroup' => 'default',
20216   'source' => 'Label, as link with label as title',
20217   'version' => '6.38-dev',
20218 ))
20219 ->values(array(
20220   'lid' => '1340',
20221   'location' => '/?q=fr/admin/by-module',
20222   'textgroup' => 'default',
20223   'source' => 'Separate title and URL',
20224   'version' => '6.38-dev',
20225 ))
20226 ->values(array(
20227   'lid' => '1341',
20228   'location' => '/?q=fr/admin/by-module',
20229   'textgroup' => 'default',
20230   'source' => 'Textfield',
20231   'version' => '6.38-dev',
20232 ))
20233 ->values(array(
20234   'lid' => '1342',
20235   'location' => '/?q=fr/admin/by-module',
20236   'textgroup' => 'default',
20237   'source' => 'Revision information',
20238   'version' => '6.38-dev',
20239 ))
20240 ->values(array(
20241   'lid' => '1343',
20242   'location' => '/?q=fr/admin/by-module',
20243   'textgroup' => 'default',
20244   'source' => 'Authoring information',
20245   'version' => '6.38-dev',
20246 ))
20247 ->values(array(
20248   'lid' => '1344',
20249   'location' => '/?q=fr/admin/by-module',
20250   'textgroup' => 'default',
20251   'source' => 'Publishing options',
20252   'version' => '6.38-dev',
20253 ))
20254 ->values(array(
20255   'lid' => '1345',
20256   'location' => '/?q=fr/admin/by-module',
20257   'textgroup' => 'default',
20258   'source' => 'Comment settings',
20259   'version' => '6.38-dev',
20260 ))
20261 ->values(array(
20262   'lid' => '1346',
20263   'location' => '/?q=fr/admin/by-module',
20264   'textgroup' => 'default',
20265   'source' => 'Comment module form.',
20266   'version' => '6.38-dev',
20267 ))
20268 ->values(array(
20269   'lid' => '1347',
20270   'location' => '/?q=fr/admin/by-module',
20271   'textgroup' => 'default',
20272   'source' => 'Translation settings',
20273   'version' => '6.38-dev',
20274 ))
20275 ->values(array(
20276   'lid' => '1348',
20277   'location' => '/?q=fr/admin/by-module',
20278   'textgroup' => 'default',
20279   'source' => 'Translation module form.',
20280   'version' => '6.38-dev',
20281 ))
20282 ->values(array(
20283   'lid' => '1349',
20284   'location' => '/?q=fr/admin/by-module',
20285   'textgroup' => 'default',
20286   'source' => 'Path settings',
20287   'version' => '6.38-dev',
20288 ))
20289 ->values(array(
20290   'lid' => '1350',
20291   'location' => '/?q=fr/admin/by-module',
20292   'textgroup' => 'default',
20293   'source' => 'Path module form.',
20294   'version' => '6.38-dev',
20295 ))
20296 ->values(array(
20297   'lid' => '1351',
20298   'location' => 'content.module:1897;1900,  fuzzy',
20299   'textgroup' => 'default',
20300   'source' => 'Print',
20301   'version' => '6.38-dev',
20302 ))
20303 ->values(array(
20304   'lid' => '1352',
20305   'location' => '/?q=fr/admin/by-module',
20306   'textgroup' => 'default',
20307   'source' => 'Account settings',
20308   'version' => '6.38-dev',
20309 ))
20310 ->values(array(
20311   'lid' => '1353',
20312   'location' => '/?q=fr/admin/by-module',
20313   'textgroup' => 'default',
20314   'source' => 'Aggregates syndicated content (RSS, RDF, and Atom feeds).',
20315   'version' => '6.38-dev',
20316 ))
20317 ->values(array(
20318   'lid' => '1354',
20319   'location' => '/?q=fr/admin/by-module',
20320   'textgroup' => 'default',
20321   'source' => 'Controls the boxes that are displayed around the main content.',
20322   'version' => '6.38-dev',
20323 ))
20324 ->values(array(
20325   'lid' => '1355',
20326   'location' => '/?q=fr/admin/by-module',
20327   'textgroup' => 'default',
20328   'source' => 'Allows users to structure site pages in a hierarchy or outline.',
20329   'version' => '6.38-dev',
20330 ))
20331 ->values(array(
20332   'lid' => '1356',
20333   'location' => '/?q=fr/admin/by-module',
20334   'textgroup' => 'default',
20335   'source' => 'Allows users to comment on and discuss published content.',
20336   'version' => '6.38-dev',
20337 ))
20338 ->values(array(
20339   'lid' => '1357',
20340   'location' => '/?q=fr/admin/by-module',
20341   'textgroup' => 'default',
20342   'source' => 'Enables the use of both personal and site-wide contact forms.',
20343   'version' => '6.38-dev',
20344 ))
20345 ->values(array(
20346   'lid' => '1358',
20347   'location' => '/?q=fr/admin/by-module',
20348   'textgroup' => 'default',
20349   'source' => 'Defines CCK date/time fields and widgets.',
20350   'version' => '6.38-dev',
20351 ))
20352 ->values(array(
20353   'lid' => '1359',
20354   'location' => '/?q=fr/admin/by-module',
20355   'textgroup' => 'default',
20356   'source' => 'Defines an email field type for cck',
20357   'version' => '6.38-dev',
20358 ))
20359 ->values(array(
20360   'lid' => '1360',
20361   'location' => '/?q=fr/admin/by-module',
20362   'textgroup' => 'default',
20363   'source' => 'Calendaring API, calendar display and export',
20364   'version' => '6.38-dev',
20365 ))
20366 ->values(array(
20367   'lid' => '1361',
20368   'location' => '/?q=fr/admin/by-module',
20369   'textgroup' => 'default',
20370   'source' => 'Handles the filtering of content in preparation for display.',
20371   'version' => '6.38-dev',
20372 ))
20373 ->values(array(
20374   'lid' => '1362',
20375   'location' => '/?q=fr/admin/by-module',
20376   'textgroup' => 'default',
20377   'source' => 'Extends Drupal support for multilingual features.',
20378   'version' => '6.38-dev',
20379 ))
20380 ->values(array(
20381   'lid' => '1363',
20382   'location' => '/?q=fr/admin/by-module',
20383   'textgroup' => 'default',
20384   'source' => 'ImageAPI supporting multiple toolkits.',
20385   'version' => '6.38-dev',
20386 ))
20387 ->values(array(
20388   'lid' => '1364',
20389   'location' => '/?q=fr/admin/by-module',
20390   'textgroup' => 'default',
20391   'source' => 'Dynamic image manipulator and cache.',
20392   'version' => '6.38-dev',
20393 ))
20394 ->values(array(
20395   'lid' => '1365',
20396   'location' => '/?q=fr/admin/by-module',
20397   'textgroup' => 'default',
20398   'source' => 'Adds language handling functionality and enables the translation of the user interface to languages other than English.',
20399   'version' => '6.38-dev',
20400 ))
20401 ->values(array(
20402   'lid' => '1366',
20403   'location' => '/?q=fr/admin/by-module',
20404   'textgroup' => 'default',
20405   'source' => 'Allows administrators to customize the site navigation menu.',
20406   'version' => '6.38-dev',
20407 ))
20408 ->values(array(
20409   'lid' => '1367',
20410   'location' => '/?q=fr/admin/by-module',
20411   'textgroup' => 'default',
20412   'source' => 'Allows content to be submitted to the site and displayed on pages.',
20413   'version' => '6.38-dev',
20414 ))
20415 ->values(array(
20416   'lid' => '1368',
20417   'location' => '/?q=fr/admin/by-module',
20418   'textgroup' => 'default',
20419   'source' => 'Allows users to rename URLs.',
20420   'version' => '6.38-dev',
20421 ))
20422 ->values(array(
20423   'lid' => '1369',
20424   'location' => '/?q=fr/admin/by-module',
20425   'textgroup' => 'default',
20426   'source' => 'Supports configurable user profiles.',
20427   'version' => '6.38-dev',
20428 ))
20429 ->values(array(
20430   'lid' => '1370',
20431   'location' => '/?q=fr/admin/by-module',
20432   'textgroup' => 'default',
20433   'source' => 'Handles general site configuration for administrators.',
20434   'version' => '6.38-dev',
20435 ))
20436 ->values(array(
20437   'lid' => '1371',
20438   'location' => '/?q=fr/admin/by-module',
20439   'textgroup' => 'default',
20440   'source' => 'Enables the categorization of content.',
20441   'version' => '6.38-dev',
20442 ))
20443 ->values(array(
20444   'lid' => '1372',
20445   'location' => '/?q=fr/admin/by-module',
20446   'textgroup' => 'default',
20447   'source' => 'Allows content to be translated into different languages.',
20448   'version' => '6.38-dev',
20449 ))
20450 ->values(array(
20451   'lid' => '1373',
20452   'location' => '/?q=fr/admin/by-module',
20453   'textgroup' => 'default',
20454   'source' => 'Allows users to upload and attach files to content.',
20455   'version' => '6.38-dev',
20456 ))
20457 ->values(array(
20458   'lid' => '1374',
20459   'location' => '/?q=fr/admin/by-module',
20460   'textgroup' => 'default',
20461   'source' => 'Manages the user registration and login system.',
20462   'version' => '6.38-dev',
20463 ))
20464 ->values(array(
20465   'lid' => '1375',
20466   'location' => '/?q=fr/admin/by-module',
20467   'textgroup' => 'default',
20468   'source' => 'Variable API - Admin UI',
20469   'version' => '6.38-dev',
20470 ))
20471 ->values(array(
20472   'lid' => '1376',
20473   'location' => '/?q=fr/admin/by-module',
20474   'textgroup' => 'default',
20475   'source' => 'This page shows you all available administration tasks for each module.',
20476   'version' => '6.38-dev',
20477 ))
20478 ->values(array(
20479   'lid' => '1377',
20480   'location' => 'field.php:102 number.module:82 text.module:80',
20481   'textgroup' => 'default',
20482   'source' => 'is equal to',
20483   'version' => 'none',
20484 ))
20485 ->values(array(
20486   'lid' => '1378',
20487   'location' => 'field.php:103 number.module:83 text.module:81',
20488   'textgroup' => 'default',
20489   'source' => 'is not equal to',
20490   'version' => 'none',
20491 ))
20492 ->values(array(
20493   'lid' => '1379',
20494   'location' => 'field.php:104 text.module:82',
20495   'textgroup' => 'default',
20496   'source' => 'matches the pattern',
20497   'version' => 'none',
20498 ))
20499 ->values(array(
20500   'lid' => '1380',
20501   'location' => 'content_admin.inc:25 content.module:119',
20502   'textgroup' => 'default',
20503   'source' => 'duplicate',
20504   'version' => 'none',
20505 ))
20506 ->values(array(
20507   'lid' => '1381',
20508   'location' => 'number.module:52,  text.module:55',
20509   'textgroup' => 'default',
20510   'source' => 'The possible values this field can contain. Any other values will result in an error. Enter one value per line.',
20511   'version' => 'none',
20512 ))
20513 ->values(array(
20514   'lid' => '1382',
20515   'location' => 'content.module:73',
20516   'textgroup' => 'default',
20517   'source' => 'add content type',
20518   'version' => 'none',
20519 ))
20520 ->values(array(
20521   'lid' => '1383',
20522   'location' => 'content.module:80',
20523   'textgroup' => 'default',
20524   'source' => 'fields',
20525   'version' => 'none',
20526 ))
20527 ->values(array(
20528   'lid' => '1384',
20529   'location' => 'content.module:164',
20530   'textgroup' => 'default',
20531   'source' => 'remove field',
20532   'version' => 'none',
20533 ))
20534 ->values(array(
20535   'lid' => '1385',
20536   'location' => 'nodereference.module:15',
20537   'textgroup' => 'default',
20538   'source' => 'Defines a field type for referencing one node from another. <em>Note: Requires content.module.</em>',
20539   'version' => 'none',
20540 ))
20541 ->values(array(
20542   'lid' => '1386',
20543   'location' => 'nodereference.module:26',
20544   'textgroup' => 'default',
20545   'source' => 'node reference autocomplete',
20546   'version' => 'none',
20547 ))
20548 ->values(array(
20549   'lid' => '1387',
20550   'location' => 'nodereference.module:204',
20551   'textgroup' => 'default',
20552   'source' => 'No post with that title exists.',
20553   'version' => 'none',
20554 ))
20555 ->values(array(
20556   'lid' => '1388',
20557   'location' => 'number.module:15',
20558   'textgroup' => 'default',
20559   'source' => 'Defines numeric field types. <em>Note: Requires content.module.</em>',
20560   'version' => 'none',
20561 ))
20562 ->values(array(
20563   'lid' => '1389',
20564   'location' => 'optionwidgets.module:15',
20565   'textgroup' => 'default',
20566   'source' => 'Defines selection, check box and radio button widgets for text and numeric fields. <em>Note: Requires content.module, text.module and number.module.</em>',
20567   'version' => 'none',
20568 ))
20569 ->values(array(
20570   'lid' => '1390',
20571   'location' => 'text.module:15',
20572   'textgroup' => 'default',
20573   'source' => 'Defines simple text field types. <em>Note: Requires content.module.</em>',
20574   'version' => 'none',
20575 ))
20576 ->values(array(
20577   'lid' => '1391',
20578   'location' => 'userreference.module:15',
20579   'textgroup' => 'default',
20580   'source' => 'Defines a field type for referencing a user from a node. <em>Note: Requires content.module.</em>',
20581   'version' => 'none',
20582 ))
20583 ->values(array(
20584   'lid' => '1392',
20585   'location' => 'userreference.module:176',
20586   'textgroup' => 'default',
20587   'source' => 'Invalid user name.',
20588   'version' => 'none',
20589 ))
20590 ->values(array(
20591   'lid' => '1393',
20592   'location' => 'weburl.module:15',
20593   'textgroup' => 'default',
20594   'source' => 'Defines simple weburl field types. <em>Note: Requires content.module.</em>',
20595   'version' => 'none',
20596 ))
20597 ->values(array(
20598   'lid' => '1394',
20599   'location' => 'weburl.module:164;172',
20600   'textgroup' => 'default',
20601   'source' => 'Not a valid Web URL.',
20602   'version' => 'none',
20603 ))
20604 ->values(array(
20605   'lid' => '1395',
20606   'location' => 'weburl.module:0',
20607   'textgroup' => 'default',
20608   'source' => 'weburl',
20609   'version' => 'none',
20610 ))
20611 ->values(array(
20612   'lid' => '1396',
20613   'location' => 'content_admin.inc:90',
20614   'textgroup' => 'default',
20615   'source' => 'The human-readable name of this content type.',
20616   'version' => 'none',
20617 ))
20618 ->values(array(
20619   'lid' => '1397',
20620   'location' => 'content_admin.inc:98',
20621   'textgroup' => 'default',
20622   'source' => 'A brief description of the content type.',
20623   'version' => 'none',
20624 ))
20625 ->values(array(
20626   'lid' => '1398',
20627   'location' => 'content_admin.inc:106',
20628   'textgroup' => 'default',
20629   'source' => 'Instructions to present to the user when adding new content of this type.',
20630   'version' => 'none',
20631 ))
20632 ->values(array(
20633   'lid' => '1399',
20634   'location' => 'content_admin.inc:110',
20635   'textgroup' => 'default',
20636   'source' => 'Title field label',
20637   'version' => 'none',
20638 ))
20639 ->values(array(
20640   'lid' => '1400',
20641   'location' => 'content_admin.inc:113',
20642   'textgroup' => 'default',
20643   'source' => 'The label for the title field.',
20644   'version' => 'none',
20645 ))
20646 ->values(array(
20647   'lid' => '1401',
20648   'location' => 'content_admin.inc:118',
20649   'textgroup' => 'default',
20650   'source' => 'Save content type',
20651   'version' => 'none',
20652 ))
20653 ->values(array(
20654   'lid' => '1402',
20655   'location' => 'content_admin.inc:182',
20656   'textgroup' => 'default',
20657   'source' => 'Saved content type %type.',
20658   'version' => 'none',
20659 ))
20660 ->values(array(
20661   'lid' => '1403',
20662   'location' => 'content_admin.inc:198',
20663   'textgroup' => 'default',
20664   'source' => 'Are you sure you want to delete the content type %type?',
20665   'version' => 'none',
20666 ))
20667 ->values(array(
20668   'lid' => '1404',
20669   'location' => 'content_admin.inc:198',
20670   'textgroup' => 'default',
20671   'source' => 'If you have any content left in this content type, it will be permanently deleted. This action cannot be undone.',
20672   'version' => 'none',
20673 ))
20674 ->values(array(
20675   'lid' => '1405',
20676   'location' => 'content_admin.inc:220',
20677   'textgroup' => 'default',
20678   'source' => 'Deleted content type %type.',
20679   'version' => 'none',
20680 ))
20681 ->values(array(
20682   'lid' => '1406',
20683   'location' => 'content_admin.inc:251',
20684   'textgroup' => 'default',
20685   'source' => 'remove',
20686   'version' => 'none',
20687 ))
20688 ->values(array(
20689   'lid' => '1407',
20690   'location' => 'content_admin.inc:313',
20691   'textgroup' => 'default',
20692   'source' => 'The human-readable name of this field.',
20693   'version' => 'none',
20694 ))
20695 ->values(array(
20696   'lid' => '1408',
20697   'location' => 'content_admin.inc:326',
20698   'textgroup' => 'default',
20699   'source' => 'Create field',
20700   'version' => 'none',
20701 ))
20702 ->values(array(
20703   'lid' => '1409',
20704   'location' => 'content_admin.inc:335',
20705   'textgroup' => 'default',
20706   '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.',
20707   'version' => 'none',
20708 ))
20709 ->values(array(
20710   'lid' => '1410',
20711   'location' => 'content_admin.inc:487',
20712   'textgroup' => 'default',
20713   'source' => 'The field %field no longer exists in any content type, so it was deleted.',
20714   'version' => 'none',
20715 ))
20716 ->values(array(
20717   'lid' => '1411',
20718   'location' => 'content_admin.inc:522',
20719   'textgroup' => 'default',
20720   'source' => 'Widget settings',
20721   'version' => 'none',
20722 ))
20723 ->values(array(
20724   'lid' => '1412',
20725   'location' => 'content_admin.inc:526',
20726   'textgroup' => 'default',
20727   'source' => 'Widget',
20728   'version' => 'none',
20729 ))
20730 ->values(array(
20731   'lid' => '1413',
20732   'location' => 'content_admin.inc:541',
20733   'textgroup' => 'default',
20734   'source' => 'In the node editing form, the heavier fields will sink and the lighter fields will be positioned nearer the top.',
20735   'version' => 'none',
20736 ))
20737 ->values(array(
20738   'lid' => '1414',
20739   'location' => 'content_admin.inc:552',
20740   'textgroup' => 'default',
20741   'source' => 'Instructions to present to the user below this field on the editing form.',
20742   'version' => 'none',
20743 ))
20744 ->values(array(
20745   'lid' => '1415',
20746   'location' => 'content_admin.inc:569',
20747   'textgroup' => 'default',
20748   'source' => 'Data settings',
20749   'version' => 'none',
20750 ))
20751 ->values(array(
20752   'lid' => '1416',
20753   'location' => 'content_admin.inc:579',
20754   'textgroup' => 'default',
20755   'source' => 'Multiple values',
20756   'version' => 'none',
20757 ))
20758 ->values(array(
20759   'lid' => '1417',
20760   'location' => 'content_admin.inc:652',
20761   'textgroup' => 'default',
20762   'source' => 'Saved field %field.',
20763   'version' => 'none',
20764 ))
20765 ->values(array(
20766   'lid' => '1418',
20767   'location' => 'content_admin.inc:882;971',
20768   'textgroup' => 'default',
20769   'source' => 'No PostgreSQL mapping found for %type data type.',
20770   'version' => 'none',
20771 ))
20772 ->values(array(
20773   'lid' => '1419',
20774   'location' => 'content_admin.inc:896;985',
20775   'textgroup' => 'default',
20776   'source' => 'database',
20777   'version' => 'none',
20778 ))
20779 ->values(array(
20780   'lid' => '1420',
20781   'location' => 'date.module:15',
20782   'textgroup' => 'default',
20783   'source' => 'Defines a date/time field type. <em>Note: Requires content.module.</em>',
20784   'version' => 'none',
20785 ))
20786 ->values(array(
20787   'lid' => '1421',
20788   'location' => 'date.module:36',
20789   'textgroup' => 'default',
20790   'source' => 'Year',
20791   'version' => 'none',
20792 ))
20793 ->values(array(
20794   'lid' => '1422',
20795   'location' => 'date.module:37',
20796   'textgroup' => 'default',
20797   'source' => 'Year and month',
20798   'version' => 'none',
20799 ))
20800 ->values(array(
20801   'lid' => '1423',
20802   'location' => 'date.module:40',
20803   'textgroup' => 'default',
20804   'source' => 'Time only',
20805   'version' => 'none',
20806 ))
20807 ->values(array(
20808   'lid' => '1424',
20809   'location' => 'date.module:44',
20810   'textgroup' => 'default',
20811   'source' => 'Granularity',
20812   'version' => 'none',
20813 ))
20814 ->values(array(
20815   'lid' => '1425',
20816   'location' => 'date.module:102',
20817   'textgroup' => 'default',
20818   'source' => "Times are entered and displayed with site's time zone",
20819   'version' => 'none',
20820 ))
20821 ->values(array(
20822   'lid' => '1426',
20823   'location' => 'date.module:103',
20824   'textgroup' => 'default',
20825   'source' => "Times are entered and displayed with user's time zone",
20826   'version' => 'none',
20827 ))
20828 ->values(array(
20829   'lid' => '1427',
20830   'location' => 'date.module:107',
20831   'textgroup' => 'default',
20832   'source' => 'Time zone handling',
20833   'version' => 'none',
20834 ))
20835 ->values(array(
20836   'lid' => '1428',
20837   'location' => 'date.module:153',
20838   'textgroup' => 'default',
20839   'source' => '%name must be entered in ISO 8601 format (YYYYMMDDThh:mm:ss).',
20840   'version' => 'none',
20841 ))
20842 ->values(array(
20843   'lid' => '1429',
20844   'location' => 'content.module:61',
20845   'textgroup' => 'default',
20846   'source' => 'content types',
20847   'version' => 'none',
20848 ))
20849 ->values(array(
20850   'lid' => '1430',
20851   'location' => 'content.module:67',
20852   'textgroup' => 'default',
20853   'source' => 'list',
20854   'version' => 'none',
20855 ))
20856 ->values(array(
20857   'lid' => '1431',
20858   'location' => 'modules/optionwidgets/optionwidgets.module:326',
20859   'textgroup' => 'default',
20860   'source' => '%name: this field cannot hold more than @count values.',
20861   'version' => 'none',
20862 ))
20863 ->values(array(
20864   'lid' => '1432',
20865   'location' => 'includes/panels/content_types/content_field.inc:37',
20866   'textgroup' => 'default',
20867   'source' => '@type: (@field_type) @field',
20868   'version' => 'none',
20869 ))
20870 ->values(array(
20871   'lid' => '1433',
20872   'location' => 'includes/panels/content_types/content_field.inc:44',
20873   'textgroup' => 'default',
20874   'source' => 'Field on the referenced node.',
20875   'version' => 'none',
20876 ))
20877 ->values(array(
20878   'lid' => '1434',
20879   'location' => 'includes/panels/content_types/content_field.inc:128',
20880   'textgroup' => 'default',
20881   'source' => 'Formatter',
20882   'version' => 'none',
20883 ))
20884 ->values(array(
20885   'lid' => '1435',
20886   'location' => 'includes/panels/content_types/content_field.inc:131',
20887   'textgroup' => 'default',
20888   'source' => 'Select a formatter.',
20889   'version' => 'none',
20890 ))
20891 ->values(array(
20892   'lid' => '1436',
20893   'location' => 'includes/panels/content_types/content_field.inc:147',
20894   'textgroup' => 'default',
20895   'source' => '"@s" field (@name)',
20896   'version' => 'none',
20897 ))
20898 ->values(array(
20899   'lid' => '1437',
20900   'location' => '/?q=zu/admin/settingsjhkjg',
20901   'textgroup' => 'default',
20902   'source' => 'Page not found',
20903   'version' => '6.38-dev',
20904 ))
20905 ->values(array(
20906   'lid' => '1438',
20907   'location' => '/?q=zu/admin/settingsjhkjg',
20908   'textgroup' => 'default',
20909   'source' => 'The requested page could not be found.',
20910   'version' => '6.38-dev',
20911 ))
20912 ->values(array(
20913   'lid' => '1439',
20914   'location' => '/?q=zu/admin/build/translate',
20915   'textgroup' => 'default',
20916   'source' => 'English (built-in)',
20917   'version' => '6.38-dev',
20918 ))
20919 ->values(array(
20920   'lid' => '1440',
20921   'location' => '/?q=zu/admin/build/translate',
20922   'textgroup' => 'default',
20923   'source' => 'n/a',
20924   'version' => '6.38-dev',
20925 ))
20926 ->values(array(
20927   'lid' => '1441',
20928   'location' => '/?q=zu/admin/build/translate',
20929   'textgroup' => 'default',
20930   'source' => 'Zulu',
20931   'version' => '6.38-dev',
20932 ))
20933 ->values(array(
20934   'lid' => '1442',
20935   'location' => '/?q=zu/admin/build/translate',
20936   'textgroup' => 'default',
20937   'source' => 'Overview',
20938   'version' => '6.38-dev',
20939 ))
20940 ->values(array(
20941   'lid' => '1443',
20942   'location' => '/?q=zu/admin/build/translate',
20943   'textgroup' => 'default',
20944   'source' => 'Refresh',
20945   'version' => '6.38-dev',
20946 ))
20947 ->values(array(
20948   'lid' => '1444',
20949   'location' => '/?q=zu/admin/build/translate',
20950   'textgroup' => 'default',
20951   'source' => 'This page provides an overview of available translatable strings. Drupal displays translatable strings in text groups; modules may define additional text groups containing other translatable strings. Because text groups provide a method of grouping related strings, they are often used to focus translation efforts on specific areas of the Drupal interface.',
20952   'version' => '6.38-dev',
20953 ))
20954 ->values(array(
20955   'lid' => '1445',
20956   'location' => '/?q=zu/admin/build/translate',
20957   'textgroup' => 'default',
20958   'source' => 'Review the <a href="@languages">languages page</a> for more information on adding support for additional languages.',
20959   'version' => '6.38-dev',
20960 ))
20961 ->values(array(
20962   'lid' => '1446',
20963   'location' => '/?q=zu/admin/build/translate/search',
20964   'textgroup' => 'default',
20965   'source' => 'English',
20966   'version' => '6.38-dev',
20967 ))
20968 ->values(array(
20969   'lid' => '1447',
20970   'location' => '/?q=zu/admin/build/translate/search',
20971   'textgroup' => 'default',
20972   'source' => 'String contains',
20973   'version' => '6.38-dev',
20974 ))
20975 ->values(array(
20976   'lid' => '1448',
20977   'location' => '/?q=zu/admin/build/translate/search',
20978   'textgroup' => 'default',
20979   'source' => 'Leave blank to show all strings. The search is case sensitive.',
20980   'version' => '6.38-dev',
20981 ))
20982 ->values(array(
20983   'lid' => '1449',
20984   'location' => '/?q=zu/admin/build/translate/search',
20985   'textgroup' => 'default',
20986   'source' => 'All languages',
20987   'version' => '6.38-dev',
20988 ))
20989 ->values(array(
20990   'lid' => '1450',
20991   'location' => '/?q=zu/admin/build/translate/search',
20992   'textgroup' => 'default',
20993   'source' => 'English (provided by Drupal)',
20994   'version' => '6.38-dev',
20995 ))
20996 ->values(array(
20997   'lid' => '1451',
20998   'location' => '/?q=zu/admin/build/translate/search',
20999   'textgroup' => 'default',
21000   'source' => 'Search in',
21001   'version' => '6.38-dev',
21002 ))
21003 ->values(array(
21004   'lid' => '1452',
21005   'location' => '/?q=zu/admin/build/translate/search',
21006   'textgroup' => 'default',
21007   'source' => 'Both translated and untranslated strings',
21008   'version' => '6.38-dev',
21009 ))
21010 ->values(array(
21011   'lid' => '1453',
21012   'location' => '/?q=zu/admin/build/translate/search',
21013   'textgroup' => 'default',
21014   'source' => 'Only translated strings',
21015   'version' => '6.38-dev',
21016 ))
21017 ->values(array(
21018   'lid' => '1454',
21019   'location' => '/?q=zu/admin/build/translate/search',
21020   'textgroup' => 'default',
21021   'source' => 'Only untranslated strings',
21022   'version' => '6.38-dev',
21023 ))
21024 ->values(array(
21025   'lid' => '1455',
21026   'location' => '/?q=zu/admin/build/translate/search',
21027   'textgroup' => 'default',
21028   'source' => 'Limit search to',
21029   'version' => '6.38-dev',
21030 ))
21031 ->values(array(
21032   'lid' => '1456',
21033   'location' => '/?q=zu/admin/build/translate/search',
21034   'textgroup' => 'default',
21035   'source' => 'All text groups',
21036   'version' => '6.38-dev',
21037 ))
21038 ->values(array(
21039   'lid' => '1457',
21040   'location' => '/?q=zu/admin/build/translate/search',
21041   'textgroup' => 'default',
21042   'source' => 'This page allows a translator to search for specific translated and untranslated strings, and is used when creating or editing translations. (Note: For translation tasks involving many strings, it may be more convenient to <a href="@export">export</a> strings for off-line editing in a desktop Gettext translation editor.) Searches may be limited to strings found within a specific text group or in a specific language.',
21043   'version' => '6.38-dev',
21044 ))
21045 ->values(array(
21046   'lid' => '1458',
21047   'location' => '/?q=zu/admin/build/translate/import',
21048   'textgroup' => 'default',
21049   'source' => 'Already added languages',
21050   'version' => '6.38-dev',
21051 ))
21052 ->values(array(
21053   'lid' => '1459',
21054   'location' => '/?q=zu/admin/build/translate/import',
21055   'textgroup' => 'default',
21056   'source' => 'Languages not yet added',
21057   'version' => '6.38-dev',
21058 ))
21059 ->values(array(
21060   'lid' => '1460',
21061   'location' => '/?q=zu/admin/build/translate/import',
21062   'textgroup' => 'default',
21063   'source' => 'Afar',
21064   'version' => '6.38-dev',
21065 ))
21066 ->values(array(
21067   'lid' => '1461',
21068   'location' => '/?q=zu/admin/build/translate/import',
21069   'textgroup' => 'default',
21070   'source' => 'Abkhazian',
21071   'version' => '6.38-dev',
21072 ))
21073 ->values(array(
21074   'lid' => '1462',
21075   'location' => '/?q=zu/admin/build/translate/import',
21076   'textgroup' => 'default',
21077   'source' => 'Avestan',
21078   'version' => '6.38-dev',
21079 ))
21080 ->values(array(
21081   'lid' => '1463',
21082   'location' => '/?q=zu/admin/build/translate/import',
21083   'textgroup' => 'default',
21084   'source' => 'Afrikaans',
21085   'version' => '6.38-dev',
21086 ))
21087 ->values(array(
21088   'lid' => '1464',
21089   'location' => '/?q=zu/admin/build/translate/import',
21090   'textgroup' => 'default',
21091   'source' => 'Akan',
21092   'version' => '6.38-dev',
21093 ))
21094 ->values(array(
21095   'lid' => '1465',
21096   'location' => '/?q=zu/admin/build/translate/import',
21097   'textgroup' => 'default',
21098   'source' => 'Amharic',
21099   'version' => '6.38-dev',
21100 ))
21101 ->values(array(
21102   'lid' => '1466',
21103   'location' => '/?q=zu/admin/build/translate/import',
21104   'textgroup' => 'default',
21105   'source' => 'Arabic',
21106   'version' => '6.38-dev',
21107 ))
21108 ->values(array(
21109   'lid' => '1467',
21110   'location' => '/?q=zu/admin/build/translate/import',
21111   'textgroup' => 'default',
21112   'source' => 'Assamese',
21113   'version' => '6.38-dev',
21114 ))
21115 ->values(array(
21116   'lid' => '1468',
21117   'location' => '/?q=zu/admin/build/translate/import',
21118   'textgroup' => 'default',
21119   'source' => 'Avar',
21120   'version' => '6.38-dev',
21121 ))
21122 ->values(array(
21123   'lid' => '1469',
21124   'location' => '/?q=zu/admin/build/translate/import',
21125   'textgroup' => 'default',
21126   'source' => 'Aymara',
21127   'version' => '6.38-dev',
21128 ))
21129 ->values(array(
21130   'lid' => '1470',
21131   'location' => '/?q=zu/admin/build/translate/import',
21132   'textgroup' => 'default',
21133   'source' => 'Azerbaijani',
21134   'version' => '6.38-dev',
21135 ))
21136 ->values(array(
21137   'lid' => '1471',
21138   'location' => '/?q=zu/admin/build/translate/import',
21139   'textgroup' => 'default',
21140   'source' => 'Bashkir',
21141   'version' => '6.38-dev',
21142 ))
21143 ->values(array(
21144   'lid' => '1472',
21145   'location' => '/?q=zu/admin/build/translate/import',
21146   'textgroup' => 'default',
21147   'source' => 'Belarusian',
21148   'version' => '6.38-dev',
21149 ))
21150 ->values(array(
21151   'lid' => '1473',
21152   'location' => '/?q=zu/admin/build/translate/import',
21153   'textgroup' => 'default',
21154   'source' => 'Bulgarian',
21155   'version' => '6.38-dev',
21156 ))
21157 ->values(array(
21158   'lid' => '1474',
21159   'location' => '/?q=zu/admin/build/translate/import',
21160   'textgroup' => 'default',
21161   'source' => 'Bihari',
21162   'version' => '6.38-dev',
21163 ))
21164 ->values(array(
21165   'lid' => '1475',
21166   'location' => '/?q=zu/admin/build/translate/import',
21167   'textgroup' => 'default',
21168   'source' => 'Bislama',
21169   'version' => '6.38-dev',
21170 ))
21171 ->values(array(
21172   'lid' => '1476',
21173   'location' => '/?q=zu/admin/build/translate/import',
21174   'textgroup' => 'default',
21175   'source' => 'Bambara',
21176   'version' => '6.38-dev',
21177 ))
21178 ->values(array(
21179   'lid' => '1477',
21180   'location' => '/?q=zu/admin/build/translate/import',
21181   'textgroup' => 'default',
21182   'source' => 'Bengali',
21183   'version' => '6.38-dev',
21184 ))
21185 ->values(array(
21186   'lid' => '1478',
21187   'location' => '/?q=zu/admin/build/translate/import',
21188   'textgroup' => 'default',
21189   'source' => 'Tibetan',
21190   'version' => '6.38-dev',
21191 ))
21192 ->values(array(
21193   'lid' => '1479',
21194   'location' => '/?q=zu/admin/build/translate/import',
21195   'textgroup' => 'default',
21196   'source' => 'Breton',
21197   'version' => '6.38-dev',
21198 ))
21199 ->values(array(
21200   'lid' => '1480',
21201   'location' => '/?q=zu/admin/build/translate/import',
21202   'textgroup' => 'default',
21203   'source' => 'Bosnian',
21204   'version' => '6.38-dev',
21205 ))
21206 ->values(array(
21207   'lid' => '1481',
21208   'location' => '/?q=zu/admin/build/translate/import',
21209   'textgroup' => 'default',
21210   'source' => 'Catalan',
21211   'version' => '6.38-dev',
21212 ))
21213 ->values(array(
21214   'lid' => '1482',
21215   'location' => '/?q=zu/admin/build/translate/import',
21216   'textgroup' => 'default',
21217   'source' => 'Chechen',
21218   'version' => '6.38-dev',
21219 ))
21220 ->values(array(
21221   'lid' => '1483',
21222   'location' => '/?q=zu/admin/build/translate/import',
21223   'textgroup' => 'default',
21224   'source' => 'Chamorro',
21225   'version' => '6.38-dev',
21226 ))
21227 ->values(array(
21228   'lid' => '1484',
21229   'location' => '/?q=zu/admin/build/translate/import',
21230   'textgroup' => 'default',
21231   'source' => 'Corsican',
21232   'version' => '6.38-dev',
21233 ))
21234 ->values(array(
21235   'lid' => '1485',
21236   'location' => '/?q=zu/admin/build/translate/import',
21237   'textgroup' => 'default',
21238   'source' => 'Cree',
21239   'version' => '6.38-dev',
21240 ))
21241 ->values(array(
21242   'lid' => '1486',
21243   'location' => '/?q=zu/admin/build/translate/import',
21244   'textgroup' => 'default',
21245   'source' => 'Czech',
21246   'version' => '6.38-dev',
21247 ))
21248 ->values(array(
21249   'lid' => '1487',
21250   'location' => '/?q=zu/admin/build/translate/import',
21251   'textgroup' => 'default',
21252   'source' => 'Old Slavonic',
21253   'version' => '6.38-dev',
21254 ))
21255 ->values(array(
21256   'lid' => '1488',
21257   'location' => '/?q=zu/admin/build/translate/import',
21258   'textgroup' => 'default',
21259   'source' => 'Chuvash',
21260   'version' => '6.38-dev',
21261 ))
21262 ->values(array(
21263   'lid' => '1489',
21264   'location' => '/?q=zu/admin/build/translate/import',
21265   'textgroup' => 'default',
21266   'source' => 'Welsh',
21267   'version' => '6.38-dev',
21268 ))
21269 ->values(array(
21270   'lid' => '1490',
21271   'location' => '/?q=zu/admin/build/translate/import',
21272   'textgroup' => 'default',
21273   'source' => 'Danish',
21274   'version' => '6.38-dev',
21275 ))
21276 ->values(array(
21277   'lid' => '1491',
21278   'location' => '/?q=zu/admin/build/translate/import',
21279   'textgroup' => 'default',
21280   'source' => 'German',
21281   'version' => '6.38-dev',
21282 ))
21283 ->values(array(
21284   'lid' => '1492',
21285   'location' => '/?q=zu/admin/build/translate/import',
21286   'textgroup' => 'default',
21287   'source' => 'Maldivian',
21288   'version' => '6.38-dev',
21289 ))
21290 ->values(array(
21291   'lid' => '1493',
21292   'location' => '/?q=zu/admin/build/translate/import',
21293   'textgroup' => 'default',
21294   'source' => 'Bhutani',
21295   'version' => '6.38-dev',
21296 ))
21297 ->values(array(
21298   'lid' => '1494',
21299   'location' => '/?q=zu/admin/build/translate/import',
21300   'textgroup' => 'default',
21301   'source' => 'Ewe',
21302   'version' => '6.38-dev',
21303 ))
21304 ->values(array(
21305   'lid' => '1495',
21306   'location' => '/?q=zu/admin/build/translate/import',
21307   'textgroup' => 'default',
21308   'source' => 'Greek',
21309   'version' => '6.38-dev',
21310 ))
21311 ->values(array(
21312   'lid' => '1496',
21313   'location' => '/?q=zu/admin/build/translate/import',
21314   'textgroup' => 'default',
21315   'source' => 'Esperanto',
21316   'version' => '6.38-dev',
21317 ))
21318 ->values(array(
21319   'lid' => '1497',
21320   'location' => '/?q=zu/admin/build/translate/import',
21321   'textgroup' => 'default',
21322   'source' => 'Spanish',
21323   'version' => '6.38-dev',
21324 ))
21325 ->values(array(
21326   'lid' => '1498',
21327   'location' => '/?q=zu/admin/build/translate/import',
21328   'textgroup' => 'default',
21329   'source' => 'Estonian',
21330   'version' => '6.38-dev',
21331 ))
21332 ->values(array(
21333   'lid' => '1499',
21334   'location' => '/?q=zu/admin/build/translate/import',
21335   'textgroup' => 'default',
21336   'source' => 'Basque',
21337   'version' => '6.38-dev',
21338 ))
21339 ->values(array(
21340   'lid' => '1500',
21341   'location' => '/?q=zu/admin/build/translate/import',
21342   'textgroup' => 'default',
21343   'source' => 'Persian',
21344   'version' => '6.38-dev',
21345 ))
21346 ->values(array(
21347   'lid' => '1501',
21348   'location' => '/?q=zu/admin/build/translate/import',
21349   'textgroup' => 'default',
21350   'source' => 'Fulah',
21351   'version' => '6.38-dev',
21352 ))
21353 ->values(array(
21354   'lid' => '1502',
21355   'location' => '/?q=zu/admin/build/translate/import',
21356   'textgroup' => 'default',
21357   'source' => 'Finnish',
21358   'version' => '6.38-dev',
21359 ))
21360 ->values(array(
21361   'lid' => '1503',
21362   'location' => '/?q=zu/admin/build/translate/import',
21363   'textgroup' => 'default',
21364   'source' => 'Fiji',
21365   'version' => '6.38-dev',
21366 ))
21367 ->values(array(
21368   'lid' => '1504',
21369   'location' => '/?q=zu/admin/build/translate/import',
21370   'textgroup' => 'default',
21371   'source' => 'Faeroese',
21372   'version' => '6.38-dev',
21373 ))
21374 ->values(array(
21375   'lid' => '1505',
21376   'location' => '/?q=zu/admin/build/translate/import',
21377   'textgroup' => 'default',
21378   'source' => 'Frisian',
21379   'version' => '6.38-dev',
21380 ))
21381 ->values(array(
21382   'lid' => '1506',
21383   'location' => '/?q=zu/admin/build/translate/import',
21384   'textgroup' => 'default',
21385   'source' => 'Irish',
21386   'version' => '6.38-dev',
21387 ))
21388 ->values(array(
21389   'lid' => '1507',
21390   'location' => '/?q=zu/admin/build/translate/import',
21391   'textgroup' => 'default',
21392   'source' => 'Scots Gaelic',
21393   'version' => '6.38-dev',
21394 ))
21395 ->values(array(
21396   'lid' => '1508',
21397   'location' => '/?q=zu/admin/build/translate/import',
21398   'textgroup' => 'default',
21399   'source' => 'Galician',
21400   'version' => '6.38-dev',
21401 ))
21402 ->values(array(
21403   'lid' => '1509',
21404   'location' => '/?q=zu/admin/build/translate/import',
21405   'textgroup' => 'default',
21406   'source' => 'Guarani',
21407   'version' => '6.38-dev',
21408 ))
21409 ->values(array(
21410   'lid' => '1510',
21411   'location' => '/?q=zu/admin/build/translate/import',
21412   'textgroup' => 'default',
21413   'source' => 'Gujarati',
21414   'version' => '6.38-dev',
21415 ))
21416 ->values(array(
21417   'lid' => '1511',
21418   'location' => '/?q=zu/admin/build/translate/import',
21419   'textgroup' => 'default',
21420   'source' => 'Manx',
21421   'version' => '6.38-dev',
21422 ))
21423 ->values(array(
21424   'lid' => '1512',
21425   'location' => '/?q=zu/admin/build/translate/import',
21426   'textgroup' => 'default',
21427   'source' => 'Hausa',
21428   'version' => '6.38-dev',
21429 ))
21430 ->values(array(
21431   'lid' => '1513',
21432   'location' => '/?q=zu/admin/build/translate/import',
21433   'textgroup' => 'default',
21434   'source' => 'Hebrew',
21435   'version' => '6.38-dev',
21436 ))
21437 ->values(array(
21438   'lid' => '1514',
21439   'location' => '/?q=zu/admin/build/translate/import',
21440   'textgroup' => 'default',
21441   'source' => 'Hindi',
21442   'version' => '6.38-dev',
21443 ))
21444 ->values(array(
21445   'lid' => '1515',
21446   'location' => '/?q=zu/admin/build/translate/import',
21447   'textgroup' => 'default',
21448   'source' => 'Hiri Motu',
21449   'version' => '6.38-dev',
21450 ))
21451 ->values(array(
21452   'lid' => '1516',
21453   'location' => '/?q=zu/admin/build/translate/import',
21454   'textgroup' => 'default',
21455   'source' => 'Croatian',
21456   'version' => '6.38-dev',
21457 ))
21458 ->values(array(
21459   'lid' => '1517',
21460   'location' => '/?q=zu/admin/build/translate/import',
21461   'textgroup' => 'default',
21462   'source' => 'Hungarian',
21463   'version' => '6.38-dev',
21464 ))
21465 ->values(array(
21466   'lid' => '1518',
21467   'location' => '/?q=zu/admin/build/translate/import',
21468   'textgroup' => 'default',
21469   'source' => 'Armenian',
21470   'version' => '6.38-dev',
21471 ))
21472 ->values(array(
21473   'lid' => '1519',
21474   'location' => '/?q=zu/admin/build/translate/import',
21475   'textgroup' => 'default',
21476   'source' => 'Herero',
21477   'version' => '6.38-dev',
21478 ))
21479 ->values(array(
21480   'lid' => '1520',
21481   'location' => '/?q=zu/admin/build/translate/import',
21482   'textgroup' => 'default',
21483   'source' => 'Interlingua',
21484   'version' => '6.38-dev',
21485 ))
21486 ->values(array(
21487   'lid' => '1521',
21488   'location' => '/?q=zu/admin/build/translate/import',
21489   'textgroup' => 'default',
21490   'source' => 'Indonesian',
21491   'version' => '6.38-dev',
21492 ))
21493 ->values(array(
21494   'lid' => '1522',
21495   'location' => '/?q=zu/admin/build/translate/import',
21496   'textgroup' => 'default',
21497   'source' => 'Interlingue',
21498   'version' => '6.38-dev',
21499 ))
21500 ->values(array(
21501   'lid' => '1523',
21502   'location' => '/?q=zu/admin/build/translate/import',
21503   'textgroup' => 'default',
21504   'source' => 'Igbo',
21505   'version' => '6.38-dev',
21506 ))
21507 ->values(array(
21508   'lid' => '1524',
21509   'location' => '/?q=zu/admin/build/translate/import',
21510   'textgroup' => 'default',
21511   'source' => 'Inupiak',
21512   'version' => '6.38-dev',
21513 ))
21514 ->values(array(
21515   'lid' => '1525',
21516   'location' => '/?q=zu/admin/build/translate/import',
21517   'textgroup' => 'default',
21518   'source' => 'Icelandic',
21519   'version' => '6.38-dev',
21520 ))
21521 ->values(array(
21522   'lid' => '1526',
21523   'location' => '/?q=zu/admin/build/translate/import',
21524   'textgroup' => 'default',
21525   'source' => 'Italian',
21526   'version' => '6.38-dev',
21527 ))
21528 ->values(array(
21529   'lid' => '1527',
21530   'location' => '/?q=zu/admin/build/translate/import',
21531   'textgroup' => 'default',
21532   'source' => 'Inuktitut',
21533   'version' => '6.38-dev',
21534 ))
21535 ->values(array(
21536   'lid' => '1528',
21537   'location' => '/?q=zu/admin/build/translate/import',
21538   'textgroup' => 'default',
21539   'source' => 'Japanese',
21540   'version' => '6.38-dev',
21541 ))
21542 ->values(array(
21543   'lid' => '1529',
21544   'location' => '/?q=zu/admin/build/translate/import',
21545   'textgroup' => 'default',
21546   'source' => 'Javanese',
21547   'version' => '6.38-dev',
21548 ))
21549 ->values(array(
21550   'lid' => '1530',
21551   'location' => '/?q=zu/admin/build/translate/import',
21552   'textgroup' => 'default',
21553   'source' => 'Georgian',
21554   'version' => '6.38-dev',
21555 ))
21556 ->values(array(
21557   'lid' => '1531',
21558   'location' => '/?q=zu/admin/build/translate/import',
21559   'textgroup' => 'default',
21560   'source' => 'Kongo',
21561   'version' => '6.38-dev',
21562 ))
21563 ->values(array(
21564   'lid' => '1532',
21565   'location' => '/?q=zu/admin/build/translate/import',
21566   'textgroup' => 'default',
21567   'source' => 'Kikuyu',
21568   'version' => '6.38-dev',
21569 ))
21570 ->values(array(
21571   'lid' => '1533',
21572   'location' => '/?q=zu/admin/build/translate/import',
21573   'textgroup' => 'default',
21574   'source' => 'Kwanyama',
21575   'version' => '6.38-dev',
21576 ))
21577 ->values(array(
21578   'lid' => '1534',
21579   'location' => '/?q=zu/admin/build/translate/import',
21580   'textgroup' => 'default',
21581   'source' => 'Kazakh',
21582   'version' => '6.38-dev',
21583 ))
21584 ->values(array(
21585   'lid' => '1535',
21586   'location' => '/?q=zu/admin/build/translate/import',
21587   'textgroup' => 'default',
21588   'source' => 'Greenlandic',
21589   'version' => '6.38-dev',
21590 ))
21591 ->values(array(
21592   'lid' => '1536',
21593   'location' => '/?q=zu/admin/build/translate/import',
21594   'textgroup' => 'default',
21595   'source' => 'Cambodian',
21596   'version' => '6.38-dev',
21597 ))
21598 ->values(array(
21599   'lid' => '1537',
21600   'location' => '/?q=zu/admin/build/translate/import',
21601   'textgroup' => 'default',
21602   'source' => 'Kannada',
21603   'version' => '6.38-dev',
21604 ))
21605 ->values(array(
21606   'lid' => '1538',
21607   'location' => '/?q=zu/admin/build/translate/import',
21608   'textgroup' => 'default',
21609   'source' => 'Korean',
21610   'version' => '6.38-dev',
21611 ))
21612 ->values(array(
21613   'lid' => '1539',
21614   'location' => '/?q=zu/admin/build/translate/import',
21615   'textgroup' => 'default',
21616   'source' => 'Kanuri',
21617   'version' => '6.38-dev',
21618 ))
21619 ->values(array(
21620   'lid' => '1540',
21621   'location' => '/?q=zu/admin/build/translate/import',
21622   'textgroup' => 'default',
21623   'source' => 'Kashmiri',
21624   'version' => '6.38-dev',
21625 ))
21626 ->values(array(
21627   'lid' => '1541',
21628   'location' => '/?q=zu/admin/build/translate/import',
21629   'textgroup' => 'default',
21630   'source' => 'Kurdish',
21631   'version' => '6.38-dev',
21632 ))
21633 ->values(array(
21634   'lid' => '1542',
21635   'location' => '/?q=zu/admin/build/translate/import',
21636   'textgroup' => 'default',
21637   'source' => 'Komi',
21638   'version' => '6.38-dev',
21639 ))
21640 ->values(array(
21641   'lid' => '1543',
21642   'location' => '/?q=zu/admin/build/translate/import',
21643   'textgroup' => 'default',
21644   'source' => 'Cornish',
21645   'version' => '6.38-dev',
21646 ))
21647 ->values(array(
21648   'lid' => '1544',
21649   'location' => '/?q=zu/admin/build/translate/import',
21650   'textgroup' => 'default',
21651   'source' => 'Kirghiz',
21652   'version' => '6.38-dev',
21653 ))
21654 ->values(array(
21655   'lid' => '1545',
21656   'location' => '/?q=zu/admin/build/translate/import',
21657   'textgroup' => 'default',
21658   'source' => 'Latin',
21659   'version' => '6.38-dev',
21660 ))
21661 ->values(array(
21662   'lid' => '1546',
21663   'location' => '/?q=zu/admin/build/translate/import',
21664   'textgroup' => 'default',
21665   'source' => 'Luxembourgish',
21666   'version' => '6.38-dev',
21667 ))
21668 ->values(array(
21669   'lid' => '1547',
21670   'location' => '/?q=zu/admin/build/translate/import',
21671   'textgroup' => 'default',
21672   'source' => 'Luganda',
21673   'version' => '6.38-dev',
21674 ))
21675 ->values(array(
21676   'lid' => '1548',
21677   'location' => '/?q=zu/admin/build/translate/import',
21678   'textgroup' => 'default',
21679   'source' => 'Lingala',
21680   'version' => '6.38-dev',
21681 ))
21682 ->values(array(
21683   'lid' => '1549',
21684   'location' => '/?q=zu/admin/build/translate/import',
21685   'textgroup' => 'default',
21686   'source' => 'Laothian',
21687   'version' => '6.38-dev',
21688 ))
21689 ->values(array(
21690   'lid' => '1550',
21691   'location' => '/?q=zu/admin/build/translate/import',
21692   'textgroup' => 'default',
21693   'source' => 'Lithuanian',
21694   'version' => '6.38-dev',
21695 ))
21696 ->values(array(
21697   'lid' => '1551',
21698   'location' => '/?q=zu/admin/build/translate/import',
21699   'textgroup' => 'default',
21700   'source' => 'Latvian',
21701   'version' => '6.38-dev',
21702 ))
21703 ->values(array(
21704   'lid' => '1552',
21705   'location' => '/?q=zu/admin/build/translate/import',
21706   'textgroup' => 'default',
21707   'source' => 'Malagasy',
21708   'version' => '6.38-dev',
21709 ))
21710 ->values(array(
21711   'lid' => '1553',
21712   'location' => '/?q=zu/admin/build/translate/import',
21713   'textgroup' => 'default',
21714   'source' => 'Marshallese',
21715   'version' => '6.38-dev',
21716 ))
21717 ->values(array(
21718   'lid' => '1554',
21719   'location' => '/?q=zu/admin/build/translate/import',
21720   'textgroup' => 'default',
21721   'source' => 'Maori',
21722   'version' => '6.38-dev',
21723 ))
21724 ->values(array(
21725   'lid' => '1555',
21726   'location' => '/?q=zu/admin/build/translate/import',
21727   'textgroup' => 'default',
21728   'source' => 'Macedonian',
21729   'version' => '6.38-dev',
21730 ))
21731 ->values(array(
21732   'lid' => '1556',
21733   'location' => '/?q=zu/admin/build/translate/import',
21734   'textgroup' => 'default',
21735   'source' => 'Malayalam',
21736   'version' => '6.38-dev',
21737 ))
21738 ->values(array(
21739   'lid' => '1557',
21740   'location' => '/?q=zu/admin/build/translate/import',
21741   'textgroup' => 'default',
21742   'source' => 'Mongolian',
21743   'version' => '6.38-dev',
21744 ))
21745 ->values(array(
21746   'lid' => '1558',
21747   'location' => '/?q=zu/admin/build/translate/import',
21748   'textgroup' => 'default',
21749   'source' => 'Moldavian',
21750   'version' => '6.38-dev',
21751 ))
21752 ->values(array(
21753   'lid' => '1559',
21754   'location' => '/?q=zu/admin/build/translate/import',
21755   'textgroup' => 'default',
21756   'source' => 'Marathi',
21757   'version' => '6.38-dev',
21758 ))
21759 ->values(array(
21760   'lid' => '1560',
21761   'location' => '/?q=zu/admin/build/translate/import',
21762   'textgroup' => 'default',
21763   'source' => 'Malay',
21764   'version' => '6.38-dev',
21765 ))
21766 ->values(array(
21767   'lid' => '1561',
21768   'location' => '/?q=zu/admin/build/translate/import',
21769   'textgroup' => 'default',
21770   'source' => 'Maltese',
21771   'version' => '6.38-dev',
21772 ))
21773 ->values(array(
21774   'lid' => '1562',
21775   'location' => '/?q=zu/admin/build/translate/import',
21776   'textgroup' => 'default',
21777   'source' => 'Burmese',
21778   'version' => '6.38-dev',
21779 ))
21780 ->values(array(
21781   'lid' => '1563',
21782   'location' => '/?q=zu/admin/build/translate/import',
21783   'textgroup' => 'default',
21784   'source' => 'Nauru',
21785   'version' => '6.38-dev',
21786 ))
21787 ->values(array(
21788   'lid' => '1564',
21789   'location' => '/?q=zu/admin/build/translate/import',
21790   'textgroup' => 'default',
21791   'source' => 'North Ndebele',
21792   'version' => '6.38-dev',
21793 ))
21794 ->values(array(
21795   'lid' => '1565',
21796   'location' => '/?q=zu/admin/build/translate/import',
21797   'textgroup' => 'default',
21798   'source' => 'Nepali',
21799   'version' => '6.38-dev',
21800 ))
21801 ->values(array(
21802   'lid' => '1566',
21803   'location' => '/?q=zu/admin/build/translate/import',
21804   'textgroup' => 'default',
21805   'source' => 'Ndonga',
21806   'version' => '6.38-dev',
21807 ))
21808 ->values(array(
21809   'lid' => '1567',
21810   'location' => '/?q=zu/admin/build/translate/import',
21811   'textgroup' => 'default',
21812   'source' => 'Dutch',
21813   'version' => '6.38-dev',
21814 ))
21815 ->values(array(
21816   'lid' => '1568',
21817   'location' => '/?q=zu/admin/build/translate/import',
21818   'textgroup' => 'default',
21819   'source' => 'Norwegian BokmÃ¥l',
21820   'version' => '6.38-dev',
21821 ))
21822 ->values(array(
21823   'lid' => '1569',
21824   'location' => '/?q=zu/admin/build/translate/import',
21825   'textgroup' => 'default',
21826   'source' => 'Norwegian Nynorsk',
21827   'version' => '6.38-dev',
21828 ))
21829 ->values(array(
21830   'lid' => '1570',
21831   'location' => '/?q=zu/admin/build/translate/import',
21832   'textgroup' => 'default',
21833   'source' => 'South Ndebele',
21834   'version' => '6.38-dev',
21835 ))
21836 ->values(array(
21837   'lid' => '1571',
21838   'location' => '/?q=zu/admin/build/translate/import',
21839   'textgroup' => 'default',
21840   'source' => 'Navajo',
21841   'version' => '6.38-dev',
21842 ))
21843 ->values(array(
21844   'lid' => '1572',
21845   'location' => '/?q=zu/admin/build/translate/import',
21846   'textgroup' => 'default',
21847   'source' => 'Chichewa',
21848   'version' => '6.38-dev',
21849 ))
21850 ->values(array(
21851   'lid' => '1573',
21852   'location' => '/?q=zu/admin/build/translate/import',
21853   'textgroup' => 'default',
21854   'source' => 'Occitan',
21855   'version' => '6.38-dev',
21856 ))
21857 ->values(array(
21858   'lid' => '1574',
21859   'location' => '/?q=zu/admin/build/translate/import',
21860   'textgroup' => 'default',
21861   'source' => 'Oromo',
21862   'version' => '6.38-dev',
21863 ))
21864 ->values(array(
21865   'lid' => '1575',
21866   'location' => '/?q=zu/admin/build/translate/import',
21867   'textgroup' => 'default',
21868   'source' => 'Oriya',
21869   'version' => '6.38-dev',
21870 ))
21871 ->values(array(
21872   'lid' => '1576',
21873   'location' => '/?q=zu/admin/build/translate/import',
21874   'textgroup' => 'default',
21875   'source' => 'Ossetian',
21876   'version' => '6.38-dev',
21877 ))
21878 ->values(array(
21879   'lid' => '1577',
21880   'location' => '/?q=zu/admin/build/translate/import',
21881   'textgroup' => 'default',
21882   'source' => 'Punjabi',
21883   'version' => '6.38-dev',
21884 ))
21885 ->values(array(
21886   'lid' => '1578',
21887   'location' => '/?q=zu/admin/build/translate/import',
21888   'textgroup' => 'default',
21889   'source' => 'Pali',
21890   'version' => '6.38-dev',
21891 ))
21892 ->values(array(
21893   'lid' => '1579',
21894   'location' => '/?q=zu/admin/build/translate/import',
21895   'textgroup' => 'default',
21896   'source' => 'Polish',
21897   'version' => '6.38-dev',
21898 ))
21899 ->values(array(
21900   'lid' => '1580',
21901   'location' => '/?q=zu/admin/build/translate/import',
21902   'textgroup' => 'default',
21903   'source' => 'Pashto',
21904   'version' => '6.38-dev',
21905 ))
21906 ->values(array(
21907   'lid' => '1581',
21908   'location' => '/?q=zu/admin/build/translate/import',
21909   'textgroup' => 'default',
21910   'source' => 'Portuguese, Portugal',
21911   'version' => '6.38-dev',
21912 ))
21913 ->values(array(
21914   'lid' => '1582',
21915   'location' => '/?q=zu/admin/build/translate/import',
21916   'textgroup' => 'default',
21917   'source' => 'Portuguese, Brazil',
21918   'version' => '6.38-dev',
21919 ))
21920 ->values(array(
21921   'lid' => '1583',
21922   'location' => '/?q=zu/admin/build/translate/import',
21923   'textgroup' => 'default',
21924   'source' => 'Quechua',
21925   'version' => '6.38-dev',
21926 ))
21927 ->values(array(
21928   'lid' => '1584',
21929   'location' => '/?q=zu/admin/build/translate/import',
21930   'textgroup' => 'default',
21931   'source' => 'Rhaeto-Romance',
21932   'version' => '6.38-dev',
21933 ))
21934 ->values(array(
21935   'lid' => '1585',
21936   'location' => '/?q=zu/admin/build/translate/import',
21937   'textgroup' => 'default',
21938   'source' => 'Kirundi',
21939   'version' => '6.38-dev',
21940 ))
21941 ->values(array(
21942   'lid' => '1586',
21943   'location' => '/?q=zu/admin/build/translate/import',
21944   'textgroup' => 'default',
21945   'source' => 'Romanian',
21946   'version' => '6.38-dev',
21947 ))
21948 ->values(array(
21949   'lid' => '1587',
21950   'location' => '/?q=zu/admin/build/translate/import',
21951   'textgroup' => 'default',
21952   'source' => 'Russian',
21953   'version' => '6.38-dev',
21954 ))
21955 ->values(array(
21956   'lid' => '1588',
21957   'location' => '/?q=zu/admin/build/translate/import',
21958   'textgroup' => 'default',
21959   'source' => 'Kinyarwanda',
21960   'version' => '6.38-dev',
21961 ))
21962 ->values(array(
21963   'lid' => '1589',
21964   'location' => '/?q=zu/admin/build/translate/import',
21965   'textgroup' => 'default',
21966   'source' => 'Sanskrit',
21967   'version' => '6.38-dev',
21968 ))
21969 ->values(array(
21970   'lid' => '1590',
21971   'location' => '/?q=zu/admin/build/translate/import',
21972   'textgroup' => 'default',
21973   'source' => 'Sardinian',
21974   'version' => '6.38-dev',
21975 ))
21976 ->values(array(
21977   'lid' => '1591',
21978   'location' => '/?q=zu/admin/build/translate/import',
21979   'textgroup' => 'default',
21980   'source' => 'Sindhi',
21981   'version' => '6.38-dev',
21982 ))
21983 ->values(array(
21984   'lid' => '1592',
21985   'location' => '/?q=zu/admin/build/translate/import',
21986   'textgroup' => 'default',
21987   'source' => 'Northern Sami',
21988   'version' => '6.38-dev',
21989 ))
21990 ->values(array(
21991   'lid' => '1593',
21992   'location' => '/?q=zu/admin/build/translate/import',
21993   'textgroup' => 'default',
21994   'source' => 'Sango',
21995   'version' => '6.38-dev',
21996 ))
21997 ->values(array(
21998   'lid' => '1594',
21999   'location' => '/?q=zu/admin/build/translate/import',
22000   'textgroup' => 'default',
22001   'source' => 'Serbo-Croatian',
22002   'version' => '6.38-dev',
22003 ))
22004 ->values(array(
22005   'lid' => '1595',
22006   'location' => '/?q=zu/admin/build/translate/import',
22007   'textgroup' => 'default',
22008   'source' => 'Sinhala',
22009   'version' => '6.38-dev',
22010 ))
22011 ->values(array(
22012   'lid' => '1596',
22013   'location' => '/?q=zu/admin/build/translate/import',
22014   'textgroup' => 'default',
22015   'source' => 'Slovak',
22016   'version' => '6.38-dev',
22017 ))
22018 ->values(array(
22019   'lid' => '1597',
22020   'location' => '/?q=zu/admin/build/translate/import',
22021   'textgroup' => 'default',
22022   'source' => 'Slovenian',
22023   'version' => '6.38-dev',
22024 ))
22025 ->values(array(
22026   'lid' => '1598',
22027   'location' => '/?q=zu/admin/build/translate/import',
22028   'textgroup' => 'default',
22029   'source' => 'Samoan',
22030   'version' => '6.38-dev',
22031 ))
22032 ->values(array(
22033   'lid' => '1599',
22034   'location' => '/?q=zu/admin/build/translate/import',
22035   'textgroup' => 'default',
22036   'source' => 'Shona',
22037   'version' => '6.38-dev',
22038 ))
22039 ->values(array(
22040   'lid' => '1600',
22041   'location' => '/?q=zu/admin/build/translate/import',
22042   'textgroup' => 'default',
22043   'source' => 'Somali',
22044   'version' => '6.38-dev',
22045 ))
22046 ->values(array(
22047   'lid' => '1601',
22048   'location' => '/?q=zu/admin/build/translate/import',
22049   'textgroup' => 'default',
22050   'source' => 'Albanian',
22051   'version' => '6.38-dev',
22052 ))
22053 ->values(array(
22054   'lid' => '1602',
22055   'location' => '/?q=zu/admin/build/translate/import',
22056   'textgroup' => 'default',
22057   'source' => 'Serbian',
22058   'version' => '6.38-dev',
22059 ))
22060 ->values(array(
22061   'lid' => '1603',
22062   'location' => '/?q=zu/admin/build/translate/import',
22063   'textgroup' => 'default',
22064   'source' => 'Siswati',
22065   'version' => '6.38-dev',
22066 ))
22067 ->values(array(
22068   'lid' => '1604',
22069   'location' => '/?q=zu/admin/build/translate/import',
22070   'textgroup' => 'default',
22071   'source' => 'Sesotho',
22072   'version' => '6.38-dev',
22073 ))
22074 ->values(array(
22075   'lid' => '1605',
22076   'location' => '/?q=zu/admin/build/translate/import',
22077   'textgroup' => 'default',
22078   'source' => 'Sudanese',
22079   'version' => '6.38-dev',
22080 ))
22081 ->values(array(
22082   'lid' => '1606',
22083   'location' => '/?q=zu/admin/build/translate/import',
22084   'textgroup' => 'default',
22085   'source' => 'Swedish',
22086   'version' => '6.38-dev',
22087 ))
22088 ->values(array(
22089   'lid' => '1607',
22090   'location' => '/?q=zu/admin/build/translate/import',
22091   'textgroup' => 'default',
22092   'source' => 'Swahili',
22093   'version' => '6.38-dev',
22094 ))
22095 ->values(array(
22096   'lid' => '1608',
22097   'location' => '/?q=zu/admin/build/translate/import',
22098   'textgroup' => 'default',
22099   'source' => 'Tamil',
22100   'version' => '6.38-dev',
22101 ))
22102 ->values(array(
22103   'lid' => '1609',
22104   'location' => '/?q=zu/admin/build/translate/import',
22105   'textgroup' => 'default',
22106   'source' => 'Telugu',
22107   'version' => '6.38-dev',
22108 ))
22109 ->values(array(
22110   'lid' => '1610',
22111   'location' => '/?q=zu/admin/build/translate/import',
22112   'textgroup' => 'default',
22113   'source' => 'Tajik',
22114   'version' => '6.38-dev',
22115 ))
22116 ->values(array(
22117   'lid' => '1611',
22118   'location' => '/?q=zu/admin/build/translate/import',
22119   'textgroup' => 'default',
22120   'source' => 'Thai',
22121   'version' => '6.38-dev',
22122 ))
22123 ->values(array(
22124   'lid' => '1612',
22125   'location' => '/?q=zu/admin/build/translate/import',
22126   'textgroup' => 'default',
22127   'source' => 'Tigrinya',
22128   'version' => '6.38-dev',
22129 ))
22130 ->values(array(
22131   'lid' => '1613',
22132   'location' => '/?q=zu/admin/build/translate/import',
22133   'textgroup' => 'default',
22134   'source' => 'Turkmen',
22135   'version' => '6.38-dev',
22136 ))
22137 ->values(array(
22138   'lid' => '1614',
22139   'location' => '/?q=zu/admin/build/translate/import',
22140   'textgroup' => 'default',
22141   'source' => 'Tagalog',
22142   'version' => '6.38-dev',
22143 ))
22144 ->values(array(
22145   'lid' => '1615',
22146   'location' => '/?q=zu/admin/build/translate/import',
22147   'textgroup' => 'default',
22148   'source' => 'Setswana',
22149   'version' => '6.38-dev',
22150 ))
22151 ->values(array(
22152   'lid' => '1616',
22153   'location' => '/?q=zu/admin/build/translate/import',
22154   'textgroup' => 'default',
22155   'source' => 'Tonga',
22156   'version' => '6.38-dev',
22157 ))
22158 ->values(array(
22159   'lid' => '1617',
22160   'location' => '/?q=zu/admin/build/translate/import',
22161   'textgroup' => 'default',
22162   'source' => 'Turkish',
22163   'version' => '6.38-dev',
22164 ))
22165 ->values(array(
22166   'lid' => '1618',
22167   'location' => '/?q=zu/admin/build/translate/import',
22168   'textgroup' => 'default',
22169   'source' => 'Tsonga',
22170   'version' => '6.38-dev',
22171 ))
22172 ->values(array(
22173   'lid' => '1619',
22174   'location' => '/?q=zu/admin/build/translate/import',
22175   'textgroup' => 'default',
22176   'source' => 'Tatar',
22177   'version' => '6.38-dev',
22178 ))
22179 ->values(array(
22180   'lid' => '1620',
22181   'location' => '/?q=zu/admin/build/translate/import',
22182   'textgroup' => 'default',
22183   'source' => 'Twi',
22184   'version' => '6.38-dev',
22185 ))
22186 ->values(array(
22187   'lid' => '1621',
22188   'location' => '/?q=zu/admin/build/translate/import',
22189   'textgroup' => 'default',
22190   'source' => 'Tahitian',
22191   'version' => '6.38-dev',
22192 ))
22193 ->values(array(
22194   'lid' => '1622',
22195   'location' => '/?q=zu/admin/build/translate/import',
22196   'textgroup' => 'default',
22197   'source' => 'Uighur',
22198   'version' => '6.38-dev',
22199 ))
22200 ->values(array(
22201   'lid' => '1623',
22202   'location' => '/?q=zu/admin/build/translate/refresh',
22203   'textgroup' => 'default',
22204   'source' => 'Select text groups',
22205   'version' => '6.38-dev',
22206 ))
22207 ->values(array(
22208   'lid' => '1624',
22209   'location' => '/?q=zu/admin/build/translate/import',
22210   'textgroup' => 'default',
22211   'source' => 'Ukrainian',
22212   'version' => '6.38-dev',
22213 ))
22214 ->values(array(
22215   'lid' => '1625',
22216   'location' => '/?q=zu/admin/build/translate/refresh',
22217   'textgroup' => 'default',
22218   'source' => 'If a text group is no showing up here it means this feature is not implemented for it.',
22219   'version' => '6.38-dev',
22220 ))
22221 ->values(array(
22222   'lid' => '1626',
22223   'location' => '/?q=zu/admin/build/translate/import',
22224   'textgroup' => 'default',
22225   'source' => 'Urdu',
22226   'version' => '6.38-dev',
22227 ))
22228 ->values(array(
22229   'lid' => '1627',
22230   'location' => '/?q=zu/admin/build/translate/refresh',
22231   'textgroup' => 'default',
22232   'source' => 'Refresh strings',
22233   'version' => '6.38-dev',
22234 ))
22235 ->values(array(
22236   'lid' => '1628',
22237   'location' => '/?q=zu/admin/build/translate/import',
22238   'textgroup' => 'default',
22239   'source' => 'Uzbek',
22240   'version' => '6.38-dev',
22241 ))
22242 ->values(array(
22243   'lid' => '1629',
22244   'location' => '/?q=zu/admin/build/translate/refresh',
22245   'textgroup' => 'default',
22246   'source' => 'This will create all the missing strings for the selected text groups.',
22247   'version' => '6.38-dev',
22248 ))
22249 ->values(array(
22250   'lid' => '1630',
22251   'location' => '/?q=zu/admin/build/translate/import',
22252   'textgroup' => 'default',
22253   'source' => 'Venda',
22254   'version' => '6.38-dev',
22255 ))
22256 ->values(array(
22257   'lid' => '1631',
22258   'location' => '/?q=zu/admin/build/translate/refresh',
22259   'textgroup' => 'default',
22260   'source' => 'Select languages',
22261   'version' => '6.38-dev',
22262 ))
22263 ->values(array(
22264   'lid' => '1632',
22265   'location' => '/?q=zu/admin/build/translate/import',
22266   'textgroup' => 'default',
22267   'source' => 'Vietnamese',
22268   'version' => '6.38-dev',
22269 ))
22270 ->values(array(
22271   'lid' => '1633',
22272   'location' => '/?q=zu/admin/build/translate/refresh',
22273   'textgroup' => 'default',
22274   'source' => 'Update translations',
22275   'version' => '6.38-dev',
22276 ))
22277 ->values(array(
22278   'lid' => '1634',
22279   'location' => '/?q=zu/admin/build/translate/import',
22280   'textgroup' => 'default',
22281   'source' => 'Wolof',
22282   'version' => '6.38-dev',
22283 ))
22284 ->values(array(
22285   'lid' => '1635',
22286   'location' => '/?q=zu/admin/build/translate/refresh',
22287   'textgroup' => 'default',
22288   'source' => 'This will fetch all existing translations from the localization tables for the selected text groups and languages.',
22289   'version' => '6.38-dev',
22290 ))
22291 ->values(array(
22292   'lid' => '1636',
22293   'location' => '/?q=zu/admin/build/translate/import',
22294   'textgroup' => 'default',
22295   'source' => 'Xhosa',
22296   'version' => '6.38-dev',
22297 ))
22298 ->values(array(
22299   'lid' => '1637',
22300   'location' => '/?q=zu/admin/build/translate/import',
22301   'textgroup' => 'default',
22302   'source' => 'Yiddish',
22303   'version' => '6.38-dev',
22304 ))
22305 ->values(array(
22306   'lid' => '1638',
22307   'location' => '/?q=zu/admin/build/translate/import',
22308   'textgroup' => 'default',
22309   'source' => 'Yoruba',
22310   'version' => '6.38-dev',
22311 ))
22312 ->values(array(
22313   'lid' => '1639',
22314   'location' => '/?q=zu/admin/build/translate/refresh',
22315   'textgroup' => 'default',
22316   'source' => 'On this page you can refresh and update values for user defined strings.',
22317   'version' => '6.38-dev',
22318 ))
22319 ->values(array(
22320   'lid' => '1640',
22321   'location' => '/?q=zu/admin/build/translate/import',
22322   'textgroup' => 'default',
22323   'source' => 'Zhuang',
22324   'version' => '6.38-dev',
22325 ))
22326 ->values(array(
22327   'lid' => '1641',
22328   'location' => '/?q=zu/admin/build/translate/refresh',
22329   'textgroup' => 'default',
22330   'source' => 'Use the refresh option when you are missing strings to translate for a given text group. All the strings will be re-created keeping existing translations.',
22331   'version' => '6.38-dev',
22332 ))
22333 ->values(array(
22334   'lid' => '1642',
22335   'location' => '/?q=zu/admin/build/translate/import',
22336   'textgroup' => 'default',
22337   'source' => 'Chinese, Simplified',
22338   'version' => '6.38-dev',
22339 ))
22340 ->values(array(
22341   'lid' => '1643',
22342   'location' => '/?q=zu/admin/build/translate/refresh',
22343   'textgroup' => 'default',
22344   'source' => 'Use the update option when some of the strings had been previously translated with the localization system, but the translations are not showing up for the configurable strings.',
22345   'version' => '6.38-dev',
22346 ))
22347 ->values(array(
22348   'lid' => '1644',
22349   'location' => '/?q=zu/admin/build/translate/import',
22350   'textgroup' => 'default',
22351   'source' => 'Chinese, Traditional',
22352   'version' => '6.38-dev',
22353 ))
22354 ->values(array(
22355   'lid' => '1645',
22356   'location' => '/?q=zu/admin/build/translate/refresh',
22357   'textgroup' => 'default',
22358   'source' => 'To search and translate strings, use the <a href="@translate-interface">translation interface</a> pages.',
22359   'version' => '6.38-dev',
22360 ))
22361 ->values(array(
22362   'lid' => '1646',
22363   'location' => '/?q=zu/admin/build/translate/import',
22364   'textgroup' => 'default',
22365   'source' => 'Import translation',
22366   'version' => '6.38-dev',
22367 ))
22368 ->values(array(
22369   'lid' => '1647',
22370   'location' => '/?q=zu/admin/build/translate/refresh',
22371   'textgroup' => 'default',
22372   'source' => '<strong>Important:</strong> To configure which Input formats are safe for translation, visit the <a href="@configure-strings">configure strings</a> page before refreshing your strings.',
22373   'version' => '6.38-dev',
22374 ))
22375 ->values(array(
22376   'lid' => '1648',
22377   'location' => '/?q=zu/admin/build/translate/import',
22378   'textgroup' => 'default',
22379   'source' => 'Language file',
22380   'version' => '6.38-dev',
22381 ))
22382 ->values(array(
22383   'lid' => '1649',
22384   'location' => '/?q=zu/admin/build/translate/import',
22385   'textgroup' => 'default',
22386   'source' => 'A Gettext Portable Object (<em>.po</em>) file.',
22387   'version' => '6.38-dev',
22388 ))
22389 ->values(array(
22390   'lid' => '1650',
22391   'location' => '/?q=zu/admin/build/translate/import',
22392   'textgroup' => 'default',
22393   'source' => 'Import into',
22394   'version' => '6.38-dev',
22395 ))
22396 ->values(array(
22397   'lid' => '1651',
22398   'location' => '/?q=zu/admin/build/translate/import',
22399   'textgroup' => 'default',
22400   'source' => 'Choose the language you want to add strings into. If you choose a language which is not yet set up, it will be added.',
22401   'version' => '6.38-dev',
22402 ))
22403 ->values(array(
22404   'lid' => '1652',
22405   'location' => '/?q=zu/admin/build/translate/import',
22406   'textgroup' => 'default',
22407   'source' => 'Text group',
22408   'version' => '6.38-dev',
22409 ))
22410 ->values(array(
22411   'lid' => '1653',
22412   'location' => '/?q=zu/admin/build/translate/import',
22413   'textgroup' => 'default',
22414   'source' => 'Imported translations will be added to this text group.',
22415   'version' => '6.38-dev',
22416 ))
22417 ->values(array(
22418   'lid' => '1654',
22419   'location' => '/?q=zu/admin/build/translate/import',
22420   'textgroup' => 'default',
22421   'source' => 'Mode',
22422   'version' => '6.38-dev',
22423 ))
22424 ->values(array(
22425   'lid' => '1655',
22426   'location' => '/?q=zu/admin/build/translate/import',
22427   'textgroup' => 'default',
22428   'source' => 'Strings in the uploaded file replace existing ones, new ones are added',
22429   'version' => '6.38-dev',
22430 ))
22431 ->values(array(
22432   'lid' => '1656',
22433   'location' => '/?q=zu/admin/build/translate/import',
22434   'textgroup' => 'default',
22435   'source' => 'Existing strings are kept, only new strings are added',
22436   'version' => '6.38-dev',
22437 ))
22438 ->values(array(
22439   'lid' => '1657',
22440   'location' => '/?q=zu/admin/build/translate/import',
22441   'textgroup' => 'default',
22442   'source' => 'This page imports the translated strings contained in an individual Gettext Portable Object (<em>.po</em>) file. Normally distributed as part of a translation package (each translation package may contain several <em>.po</em> files), a <em>.po</em> file may need to be imported after off-line editing in a Gettext translation editor. Importing an individual <em>.po</em> file may be a lengthy process.',
22443   'version' => '6.38-dev',
22444 ))
22445 ->values(array(
22446   'lid' => '1658',
22447   'location' => '/?q=zu/admin/build/translate/import',
22448   'textgroup' => 'default',
22449   'source' => 'Note that the <em>.po</em> files within a translation package are imported automatically (if available) when new modules or themes are enabled, or as new languages are added. Since this page only allows the import of one <em>.po</em> file at a time, it may be simpler to download and extract a translation package into your Drupal installation directory and <a href="@language-add">add the language</a> (which automatically imports all <em>.po</em> files within the package). Translation packages are available for download on the <a href="@translations">Drupal translation page</a>.',
22450   'version' => '6.38-dev',
22451 ))
22452 ->values(array(
22453   'lid' => '1659',
22454   'location' => '/?q=zu/admin/settings/language/i18n/variables',
22455   'textgroup' => 'default',
22456   'source' => 'Variable name',
22457   'version' => '6.38-dev',
22458 ))
22459 ->values(array(
22460   'lid' => '1660',
22461   'location' => '/?q=zu/admin/settings/language/i18n/variables',
22462   'textgroup' => 'default',
22463   'source' => 'Is multilingual',
22464   'version' => '6.38-dev',
22465 ))
22466 ->values(array(
22467   'lid' => '1661',
22468   'location' => '/?q=zu/admin/settings/language/i18n/variables',
22469   'textgroup' => 'default',
22470   'source' => 'Has translations',
22471   'version' => '6.38-dev',
22472 ))
22473 ->values(array(
22474   'lid' => '1662',
22475   'location' => '/?q=zu/admin/settings/language/i18n/variables',
22476   'textgroup' => 'default',
22477   'source' => 'Delete all existing translations for variables.',
22478   'version' => '6.38-dev',
22479 ))
22480 ->values(array(
22481   'lid' => '1663',
22482   'location' => '/?q=zu/admin/settings/language/i18n/variables',
22483   'textgroup' => 'default',
22484   'source' => 'Delete all translations',
22485   'version' => '6.38-dev',
22486 ))
22487 ->values(array(
22488   'lid' => '1664',
22489   'location' => 'type:forum:name',
22490   'textgroup' => 'nodetype',
22491   'source' => 'Forum topic',
22492   'version' => '1',
22493 ))
22494 ->values(array(
22495   'lid' => '1665',
22496   'location' => 'type:forum:title',
22497   'textgroup' => 'nodetype',
22498   'source' => 'Subject',
22499   'version' => '1',
22500 ))
22501 ->values(array(
22502   'lid' => '1666',
22503   'location' => 'type:forum:body',
22504   'textgroup' => 'nodetype',
22505   'source' => 'Body',
22506   'version' => '1',
22507 ))
22508 ->values(array(
22509   'lid' => '1667',
22510   'location' => 'type:forum:description',
22511   'textgroup' => 'nodetype',
22512   'source' => 'A <em>forum topic</em> is the initial post to a new discussion thread within a forum.',
22513   'version' => '1',
22514 ))
22515 ->values(array(
22516   'lid' => '1668',
22517   'location' => 'modules/block/block.js',
22518   'textgroup' => 'default',
22519   'source' => 'The changes to these blocks will not be saved until the <em>Save blocks</em> button is clicked.',
22520   'version' => 'none',
22521 ))
22522 ->values(array(
22523   'lid' => '1669',
22524   'location' => 'modules/nodereference/nodereference.module:117',
22525   'textgroup' => 'default',
22526   'source' => "Choose the \"Views module\" view that selects the nodes that can be referenced.<br />Note:<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>",
22527   'version' => 'none',
22528 ))
22529 ->values(array(
22530   'lid' => '1670',
22531   'location' => 'modules/nodereference/nodereference.module:175',
22532   'textgroup' => 'default',
22533   'source' => "%name: This post can't be referenced.",
22534   'version' => 'none',
22535 ))
22536 ->values(array(
22537   'lid' => '1671',
22538   'location' => 'modules/nodereference/nodereference.module:518',
22539   'textgroup' => 'default',
22540   'source' => '%name: Title mismatch. Please check your selection.',
22541   'version' => 'none',
22542 ))
22543 ->values(array(
22544   'lid' => '1672',
22545   'location' => 'vocabulary:6:name',
22546   'textgroup' => 'taxonomy',
22547   'source' => 'Type',
22548   'version' => '1',
22549 ))
22550 ->values(array(
22551   'lid' => '1673',
22552   'location' => 'vocabulary:7:name',
22553   'textgroup' => 'taxonomy',
22554   'source' => 'Forums',
22555   'version' => '1',
22556 ))
22557 ->values(array(
22558   'lid' => '1674',
22559   'location' => 'item:463:title',
22560   'textgroup' => 'menu',
22561   'source' => 'fr - Test 1',
22562   'version' => '1',
22563 ))
22564 ->values(array(
22565   'lid' => '1675',
22566   'location' => 'item:463:description',
22567   'textgroup' => 'menu',
22568   'source' => 'fr - Test menu link 1',
22569   'version' => '1',
22570 ))
22571 ->values(array(
22572   'lid' => '1676',
22573   'location' => 'item:138:title',
22574   'textgroup' => 'menu',
22575   'source' => 'Test 1',
22576   'version' => '1',
22577 ))
22578 ->values(array(
22579   'lid' => '1677',
22580   'location' => 'item:138:description',
22581   'textgroup' => 'menu',
22582   'source' => 'Test menu link 1',
22583   'version' => '1',
22584 ))
22585 ->values(array(
22586   'lid' => '1678',
22587   'location' => 'field:profile_really_really_love_migrating:title',
22588   'textgroup' => 'profile',
22589   'source' => 'I really, really, really love migrating',
22590   'version' => '1',
22591 ))
22592 ->values(array(
22593   'lid' => '1679',
22594   'location' => 'menu:menu-translation-test:title',
22595   'textgroup' => 'menu',
22596   'source' => 'Translation test',
22597   'version' => '1',
22598 ))
22599 ->values(array(
22600   'lid' => '1680',
22601   'location' => 'field:employee-field_company:widget_label',
22602   'textgroup' => 'cck',
22603   'source' => 'Company',
22604   'version' => '1',
22605 ))
22606 ->values(array(
22607   'lid' => '1681',
22608   'location' => 'field:employee-field_commander:widget_label',
22609   'textgroup' => 'cck',
22610   'source' => 'Commanding Officer',
22611   'version' => '1',
22612 ))
22613 ->values(array(
22614   'lid' => '1682',
22615   'location' => 'field:employee-field_company_2:widget_label',
22616   'textgroup' => 'cck',
22617   'source' => 'Company 2',
22618   'version' => '1',
22619 ))
22620 ->values(array(
22621   'lid' => '1683',
22622   'location' => 'field:employee-field_company_3:widget_label',
22623   'textgroup' => 'cck',
22624   'source' => 'Company 3',
22625   'version' => '1',
22626 ))
22627 ->values(array(
22628   'lid' => '1684',
22629   'location' => 'field:page-field_reference:widget_label',
22630   'textgroup' => 'cck',
22631   'source' => 'Reference',
22632   'version' => '1',
22633 ))
22634 ->values(array(
22635   'lid' => '1685',
22636   'location' => 'field:page-field_reference_2:widget_label',
22637   'textgroup' => 'cck',
22638   'source' => 'Reference',
22639   'version' => '1',
22640 ))
22641 ->values(array(
22642   'lid' => '1686',
22643   'location' => 'field:story-field_test_string_selectlist:widget_label',
22644   'textgroup' => 'cck',
22645   'source' => 'String Select List Field',
22646   'version' => '1',
22647 ))
22648 ->values(array(
22649   'lid' => '1689',
22650   'location' => 'field:test_planet-field_test_text_single_checkbox:widget_label',
22651   'textgroup' => 'cck',
22652   'source' => 'Text Single Checkbox Field',
22653   'version' => '1',
22654 ))
22655 ->values(array(
22656   'lid' => '1690',
22657   'location' => 'field:field_test_string_selectlist:option_A',
22658   'textgroup' => 'cck',
22659   'source' => 'Black',
22660   'version' => '1',
22661 ))
22662 ->values(array(
22663   'lid' => '1691',
22664   'location' => 'field:field_test_string_selectlist:option_B',
22665   'textgroup' => 'cck',
22666   'source' => 'White',
22667   'version' => '1',
22668 ))
22669 ->values(array(
22670   'lid' => '1692',
22671   'location' => 'term:14:name',
22672   'textgroup' => 'taxonomy',
22673   'source' => 'Talos IV',
22674   'version' => '1',
22675 ))
22676 ->values(array(
22677   'lid' => '1693',
22678   'location' => 'term:15:name',
22679   'textgroup' => 'taxonomy',
22680   'source' => 'Vulcan',
22681   'version' => '1',
22682 ))
22683 ->values(array(
22684   'lid' => '1694',
22685   'location' => 'term:14:description',
22686   'textgroup' => 'taxonomy',
22687   'source' => 'The home of Captain Christopher Pike.',
22688   'version' => '1',
22689 ))
22690 ->execute();
22691
22692 $connection->schema()->createTable('locales_target', array(
22693   'fields' => array(
22694     'lid' => array(
22695       'type' => 'int',
22696       'not null' => TRUE,
22697       'size' => 'normal',
22698       'default' => '0',
22699     ),
22700     'translation' => array(
22701       'type' => 'blob',
22702       'not null' => TRUE,
22703       'size' => 'normal',
22704     ),
22705     'language' => array(
22706       'type' => 'varchar',
22707       'not null' => TRUE,
22708       'length' => '12',
22709       'default' => '',
22710     ),
22711     'plid' => array(
22712       'type' => 'int',
22713       'not null' => TRUE,
22714       'size' => 'normal',
22715       'default' => '0',
22716     ),
22717     'plural' => array(
22718       'type' => 'int',
22719       'not null' => TRUE,
22720       'size' => 'normal',
22721       'default' => '0',
22722     ),
22723     'i18n_status' => array(
22724       'type' => 'int',
22725       'not null' => TRUE,
22726       'size' => 'normal',
22727       'default' => '0',
22728     ),
22729   ),
22730   'primary key' => array(
22731     'language',
22732     'lid',
22733     'plural',
22734   ),
22735   'indexes' => array(
22736     'lid' => array(
22737       'lid',
22738     ),
22739     'plid' => array(
22740       'plid',
22741     ),
22742     'plural' => array(
22743       'plural',
22744     ),
22745   ),
22746   'mysql_character_set' => 'utf8',
22747 ));
22748
22749 $connection->insert('locales_target')
22750 ->fields(array(
22751   'lid',
22752   'translation',
22753   'language',
22754   'plid',
22755   'plural',
22756   'i18n_status',
22757 ))
22758 ->values(array(
22759   'lid' => '5',
22760   'translation' => "Le module Content, composant obligatoire du kit CCK (Content Construction Kit) permet aux administrateurs d'associer des champs personnalisés Ã  des types de contenus. Au sein de Drupal, les types de contenus servent Ã  définir les caractéristiques d'une publication, y compris le titre et la description des champs affichés sur ses pages \"ajouter\" et \"éditer\". Le module Content (et les modules auxiliaires inclus dans CCK) permet d'ajouter des champs personnalisés en plus des champs par défaut \"Titre\" et \"Corps\". Les fonctionnalités de CCK sont accessible via différents onglets sur la <a href=\"@content-types\">page d'administration des types de contenus</a>. (Voir la <a href=\"@node-help\">page d'aide du module Node</a> pour plus d'informations sur les types de contenus).",
22761   'language' => 'fr',
22762   'plid' => '0',
22763   'plural' => '0',
22764   'i18n_status' => '0',
22765 ))
22766 ->values(array(
22767   'lid' => '6',
22768   'translation' => "Lorsque vous ajoutez un champ personnalisé Ã  un type de contenu, vous déterminez son type (c'est-à-dire s'il doit contenir du texte, des nombres ou des références Ã  d'autres objets) et la façon dont il doit Ãªtre affiché (en tant que champ ou zone de texte, liste de sélection, case Ã  cocher, bouton radio, ou champ Ã  auto-complètement). Un champ peut présenter plusieurs valeurs (par exemple, une \"personne\" peut disposer de plusieurs adresses courriel) ou une seule (par exemple, un \"employé\" possède un numéro d'identification unique). Ã€ mesure que vous ajoutez et modifiez des champs, CCK ajuste automatiquement la structure de la base de données en fonction. CCK propose Ã©galement un certain nombre d'autres fonctionnalités, par exemple un cache intelligent pour vos données personnalisées, des fonctionnalités d'import et d'export pour les définitions de types de contenus, ainsi qu'une intégration Ã  d'autres modules provenant des contributions.",
22769   'language' => 'fr',
22770   'plid' => '0',
22771   'plural' => '0',
22772   'i18n_status' => '0',
22773 ))
22774 ->values(array(
22775   'lid' => '7',
22776   'translation' => "Des types de champs personnalisés sont proposés par plusieurs modules optionnels inclus dans CCK (chaque module fournissant un type différent). La <a href=\"@modules\">page des modules</a> vous permet d'activer ou de désactiver des composants CCK. Une installation par défaut de CCK inclut :",
22777   'language' => 'fr',
22778   'plid' => '0',
22779   'plural' => '0',
22780   'i18n_status' => '0',
22781 ))
22782 ->values(array(
22783   'lid' => '8',
22784   'translation' => "<em>Number</em>, qui ajoute des types de champs numériques (formats entier, décimal ou réel Ã  virgule flottante). Vous pouvez définir un jeu ou un intervalle de valeurs autorisées. Divers formats sont disponibles pour l'affichage des données numériques.",
22785   'language' => 'fr',
22786   'plid' => '0',
22787   'plural' => '0',
22788   'i18n_status' => '0',
22789 ))
22790 ->values(array(
22791   'lid' => '9',
22792   'translation' => "<em>Text</em>, qui ajoute des types de champs de texte. Un champ texte peut contenir du texte brut uniquement ou, optionnellement, utiliser les filtres des formats d'entrée que propose Drupal pour gérer en toute sécurité des textes enrichis. Les champs de saisie de texte peuvent Ãªtre constitués d'une seule ligne (champ texte), de plusieurs lignes (zone de texte) ou, pour un meilleur contrôle des valeurs saisies, une liste de sélection, des cases Ã  cocher ou des boutons radio. Si besoin, CCK peut valider les saisies sur la base d'un ensemble de valeurs autorisées.",
22793   'language' => 'fr',
22794   'plid' => '0',
22795   'plural' => '0',
22796   'i18n_status' => '0',
22797 ))
22798 ->values(array(
22799   'lid' => '10',
22800   'translation' => '<em>Node Reference</em>, qui crée des références personnalisées entre nÅ“uds de Drupal. En ajoutant, par exemple, un champ <em>nodereference</em> et deux types de contenus différents, vous pouvez facilement créer des relations complexes de type parent/enfant entre données (par exemple plusieurs nÅ“uds "employé" peuvent présenter un champ <em>nodereference</em> pointant vers un même nÅ“ud "employeur").',
22801   'language' => 'fr',
22802   'plid' => '0',
22803   'plural' => '0',
22804   'i18n_status' => '0',
22805 ))
22806 ->values(array(
22807   'lid' => '11',
22808   'translation' => "<em>User reference</em>, qui crée des références personnalisées vers les comptes des utilisateurs de votre site. En ajoutant un champ <em>userreference</em>, vous pouvez créer des relations complexes entre les utilisateurs de votre site et des publications. Ainsi, pour tracer l'implication d'un utilisateur dans une publication (au delà du champ Drupal standard <em>Écrit par</em>), vous pouvez ajouter Ã  un type de contenu un champ <em>userreference</em> intitulé \"Édité par\" pour enregistrer un lien vers la page du compte utilisateur ayant Ã©dité la publication.",
22809   'language' => 'fr',
22810   'plid' => '0',
22811   'plural' => '0',
22812   'i18n_status' => '0',
22813 ))
22814 ->values(array(
22815   'lid' => '12',
22816   'translation' => "<em>Fieldgroup</em>, qui crée des groupes de champs liés. Les groupe de champ peuvent Ãªtre repliés, et vous pouvez choisir qu'ils soient dépliés ou repliés par défaut. L'ordre des groupes de champs, ainsi que l'ordre des champs au sein d'un groupe, est géré grâce Ã  l'interface par glisser-déposer fournie par le module Content.",
22817   'language' => 'fr',
22818   'plid' => '0',
22819   'plural' => '0',
22820   'i18n_status' => '0',
22821 ))
22822 ->values(array(
22823   'lid' => '13',
22824   'translation' => "Pour plus d'informations, reportez-vous Ã  l'entrée de manuel en ligne relative Ã  <a href=\"@handbook-cck\">CCK</a> ou Ã  la <a href=\"@project-cck\">page du projet CCK</a>.",
22825   'language' => 'fr',
22826   'plid' => '0',
22827   'plural' => '0',
22828   'i18n_status' => '0',
22829 ))
22830 ->values(array(
22831   'lid' => '14',
22832   'translation' => 'Configurez ici la manière dont les champs et Ã©tiquettes de champs de ce type de contenu doivent Ãªtre affichées, lorsque le contenu est vu en mode résumé ou en pleine page.',
22833   'language' => 'fr',
22834   'plid' => '0',
22835   'plural' => '0',
22836   'i18n_status' => '0',
22837 ))
22838 ->values(array(
22839   'lid' => '15',
22840   'translation' => "Configurez ici la façon dont les champs de ce type de contenu doivent Ãªtre affichés lorsqu'il est rendu dans les contextes suivants.",
22841   'language' => 'fr',
22842   'plid' => '0',
22843   'plural' => '0',
22844   'i18n_status' => '0',
22845 ))
22846 ->values(array(
22847   'lid' => '16',
22848   'translation' => "Contrôlez ici l'ordre des champs dans le formulaire de saisie.",
22849   'language' => 'fr',
22850   'plid' => '0',
22851   'plural' => '0',
22852   'i18n_status' => '0',
22853 ))
22854 ->values(array(
22855   'lid' => '17',
22856   'translation' => 'Ce champ est obligatoire.',
22857   'language' => 'fr',
22858   'plid' => '0',
22859   'plural' => '0',
22860   'i18n_status' => '0',
22861 ))
22862 ->values(array(
22863   'lid' => '18',
22864   'translation' => '!title : !required',
22865   'language' => 'fr',
22866   'plid' => '0',
22867   'plural' => '0',
22868   'i18n_status' => '0',
22869 ))
22870 ->values(array(
22871   'lid' => '19',
22872   'translation' => 'Ordre',
22873   'language' => 'fr',
22874   'plid' => '0',
22875   'plural' => '0',
22876   'i18n_status' => '0',
22877 ))
22878 ->values(array(
22879   'lid' => '20',
22880   'translation' => 'Élément de flux RSS',
22881   'language' => 'fr',
22882   'plid' => '0',
22883   'plural' => '0',
22884   'i18n_status' => '0',
22885 ))
22886 ->values(array(
22887   'lid' => '21',
22888   'translation' => 'Index de recherche',
22889   'language' => 'fr',
22890   'plid' => '0',
22891   'plural' => '0',
22892   'i18n_status' => '0',
22893 ))
22894 ->values(array(
22895   'lid' => '22',
22896   'translation' => 'Résultat de recherche',
22897   'language' => 'fr',
22898   'plid' => '0',
22899   'plural' => '0',
22900   'i18n_status' => '0',
22901 ))
22902 ->values(array(
22903   'lid' => '23',
22904   'translation' => 'Langue',
22905   'language' => 'fr',
22906   'plid' => '0',
22907   'plural' => '0',
22908   'i18n_status' => '0',
22909 ))
22910 ->values(array(
22911   'lid' => '24',
22912   'translation' => 'Taxonomie',
22913   'language' => 'fr',
22914   'plid' => '0',
22915   'plural' => '0',
22916   'i18n_status' => '0',
22917 ))
22918 ->values(array(
22919   'lid' => '25',
22920   'translation' => 'Fichiers attachés',
22921   'language' => 'fr',
22922   'plid' => '0',
22923   'plural' => '0',
22924   'i18n_status' => '0',
22925 ))
22926 ->values(array(
22927   'lid' => '26',
22928   'translation' => 'Mise Ã  jour du type de champ %type avec le module %module.',
22929   'language' => 'fr',
22930   'plid' => '0',
22931   'plural' => '0',
22932   'i18n_status' => '0',
22933 ))
22934 ->values(array(
22935   'lid' => '27',
22936   'translation' => 'Mise Ã  jour du type de widget %widget avec le module %module.',
22937   'language' => 'fr',
22938   'plid' => '0',
22939   'plural' => '0',
22940   'i18n_status' => '0',
22941 ))
22942 ->values(array(
22943   'lid' => '28',
22944   'translation' => "Utiliser du code PHP pour le paramétrage des champs (dangereux - Ã  n'autoriser qu'avec précautions)",
22945   'language' => 'fr',
22946   'plid' => '0',
22947   'plural' => '0',
22948   'i18n_status' => '0',
22949 ))
22950 ->values(array(
22951   'lid' => '29',
22952   'translation' => 'Gérer les champs',
22953   'language' => 'fr',
22954   'plid' => '0',
22955   'plural' => '0',
22956   'i18n_status' => '0',
22957 ))
22958 ->values(array(
22959   'lid' => '30',
22960   'translation' => 'Afficher les champs',
22961   'language' => 'fr',
22962   'plid' => '0',
22963   'plural' => '0',
22964   'i18n_status' => '0',
22965 ))
22966 ->values(array(
22967   'lid' => '31',
22968   'translation' => 'Général',
22969   'language' => 'fr',
22970   'plid' => '0',
22971   'plural' => '0',
22972   'i18n_status' => '0',
22973 ))
22974 ->values(array(
22975   'lid' => '32',
22976   'translation' => 'Avancé',
22977   'language' => 'fr',
22978   'plid' => '0',
22979   'plural' => '0',
22980   'i18n_status' => '0',
22981 ))
22982 ->values(array(
22983   'lid' => '33',
22984   'translation' => 'Supprimer un champ',
22985   'language' => 'fr',
22986   'plid' => '0',
22987   'plural' => '0',
22988   'i18n_status' => '0',
22989 ))
22990 ->values(array(
22991   'lid' => '34',
22992   'translation' => 'Content',
22993   'language' => 'fr',
22994   'plid' => '0',
22995   'plural' => '0',
22996   'i18n_status' => '0',
22997 ))
22998 ->values(array(
22999   'lid' => '35',
23000   'translation' => 'Permet aux administrateurs de définir des nouveaux types de contenu.',
23001   'language' => 'fr',
23002   'plid' => '0',
23003   'plural' => '0',
23004   'i18n_status' => '0',
23005 ))
23006 ->values(array(
23007   'lid' => '36',
23008   'translation' => 'CCK',
23009   'language' => 'fr',
23010   'plid' => '0',
23011   'plural' => '0',
23012   'i18n_status' => '0',
23013 ))
23014 ->values(array(
23015   'lid' => '37',
23016   'translation' => 'Texte',
23017   'language' => 'fr',
23018   'plid' => '0',
23019   'plural' => '0',
23020   'i18n_status' => '0',
23021 ))
23022 ->values(array(
23023   'lid' => '38',
23024   'translation' => "Les valeurs possibles pour ce champ. Saisissez une valeur par ligne, sous la forme <em>clé|libellé</em>. La clé est la valeur enregistrée dans la base de données, et elle doit correspondre au type de stockage du champ, %type. Le libellé est optionnel et, s'il n'est pas spécifié, la clé sera utilisée comme libellé.",
23025   'language' => 'fr',
23026   'plid' => '0',
23027   'plural' => '0',
23028   'i18n_status' => '0',
23029 ))
23030 ->values(array(
23031   'lid' => '39',
23032   'translation' => 'Zone de texte',
23033   'language' => 'fr',
23034   'plid' => '0',
23035   'plural' => '0',
23036   'i18n_status' => '0',
23037 ))
23038 ->values(array(
23039   'lid' => '40',
23040   'translation' => 'Ôter',
23041   'language' => 'fr',
23042   'plid' => '0',
23043   'plural' => '0',
23044   'i18n_status' => '0',
23045 ))
23046 ->values(array(
23047   'lid' => '41',
23048   'translation' => 'Basique',
23049   'language' => 'fr',
23050   'plid' => '0',
23051   'plural' => '0',
23052   'i18n_status' => '0',
23053 ))
23054 ->values(array(
23055   'lid' => '42',
23056   'translation' => 'Résumé',
23057   'language' => 'fr',
23058   'plid' => '0',
23059   'plural' => '0',
23060   'i18n_status' => '0',
23061 ))
23062 ->values(array(
23063   'lid' => '43',
23064   'translation' => 'NÅ“ud complet',
23065   'language' => 'fr',
23066   'plid' => '0',
23067   'plural' => '0',
23068   'i18n_status' => '0',
23069 ))
23070 ->values(array(
23071   'lid' => '44',
23072   'translation' => 'RSS',
23073   'language' => 'fr',
23074   'plid' => '0',
23075   'plural' => '0',
23076   'i18n_status' => '0',
23077 ))
23078 ->values(array(
23079   'lid' => '45',
23080   'translation' => 'Recherche',
23081   'language' => 'fr',
23082   'plid' => '0',
23083   'plural' => '0',
23084   'i18n_status' => '0',
23085 ))
23086 ->values(array(
23087   'lid' => '46',
23088   'translation' => 'Formulaire du module node.',
23089   'language' => 'fr',
23090   'plid' => '0',
23091   'plural' => '0',
23092   'i18n_status' => '0',
23093 ))
23094 ->values(array(
23095   'lid' => '47',
23096   'translation' => 'Formulaire du module locale.',
23097   'language' => 'fr',
23098   'plid' => '0',
23099   'plural' => '0',
23100   'i18n_status' => '0',
23101 ))
23102 ->values(array(
23103   'lid' => '48',
23104   'translation' => 'Paramètres du menu',
23105   'language' => 'fr',
23106   'plid' => '0',
23107   'plural' => '0',
23108   'i18n_status' => '0',
23109 ))
23110 ->values(array(
23111   'lid' => '49',
23112   'translation' => 'Formulaire du module menu.',
23113   'language' => 'fr',
23114   'plid' => '0',
23115   'plural' => '0',
23116   'i18n_status' => '0',
23117 ))
23118 ->values(array(
23119   'lid' => '50',
23120   'translation' => 'Formulaire du module taxonomy.',
23121   'language' => 'fr',
23122   'plid' => '0',
23123   'plural' => '0',
23124   'i18n_status' => '0',
23125 ))
23126 ->values(array(
23127   'lid' => '51',
23128   'translation' => 'Livre',
23129   'language' => 'fr',
23130   'plid' => '0',
23131   'plural' => '0',
23132   'i18n_status' => '0',
23133 ))
23134 ->values(array(
23135   'lid' => '52',
23136   'translation' => 'Formulaire du module livre (book).',
23137   'language' => 'fr',
23138   'plid' => '0',
23139   'plural' => '0',
23140   'i18n_status' => '0',
23141 ))
23142 ->values(array(
23143   'lid' => '53',
23144   'translation' => 'Titre du sondage',
23145   'language' => 'fr',
23146   'plid' => '0',
23147   'plural' => '0',
23148   'i18n_status' => '0',
23149 ))
23150 ->values(array(
23151   'lid' => '54',
23152   'translation' => 'Titre du module sondage (Poll)',
23153   'language' => 'fr',
23154   'plid' => '0',
23155   'plural' => '0',
23156   'i18n_status' => '0',
23157 ))
23158 ->values(array(
23159   'lid' => '55',
23160   'translation' => 'Choix du sondage',
23161   'language' => 'fr',
23162   'plid' => '0',
23163   'plural' => '0',
23164   'i18n_status' => '0',
23165 ))
23166 ->values(array(
23167   'lid' => '56',
23168   'translation' => 'Choix du module sondage (poll).',
23169   'language' => 'fr',
23170   'plid' => '0',
23171   'plural' => '0',
23172   'i18n_status' => '0',
23173 ))
23174 ->values(array(
23175   'lid' => '57',
23176   'translation' => 'Paramètrage du sondage',
23177   'language' => 'fr',
23178   'plid' => '0',
23179   'plural' => '0',
23180   'i18n_status' => '0',
23181 ))
23182 ->values(array(
23183   'lid' => '58',
23184   'translation' => 'Paramètres du module sondage (poll).',
23185   'language' => 'fr',
23186   'plid' => '0',
23187   'plural' => '0',
23188   'i18n_status' => '0',
23189 ))
23190 ->values(array(
23191   'lid' => '59',
23192   'translation' => 'Formulaire du module upload.',
23193   'language' => 'fr',
23194   'plid' => '0',
23195   'plural' => '0',
23196   'i18n_status' => '0',
23197 ))
23198 ->values(array(
23199   'lid' => '60',
23200   'translation' => 'contenu',
23201   'language' => 'fr',
23202   'plid' => '0',
23203   'plural' => '0',
23204   'i18n_status' => '0',
23205 ))
23206 ->values(array(
23207   'lid' => '61',
23208   'translation' => 'Champs',
23209   'language' => 'fr',
23210   'plid' => '0',
23211   'plural' => '0',
23212   'i18n_status' => '0',
23213 ))
23214 ->values(array(
23215   'lid' => '62',
23216   'translation' => "Les mises Ã  jour des modules liés Ã  CCK ne sont pas exécutées tant que les modules ne sont pas activés sur la  <a href=\"@admin-modules-path\">page d'administration des modules</a>. Lorsque vous les activerez, vous devrez retourner sur la page <a href=\"@update-php\">update.php</a> et exécuter les mises Ã  jour restantes.",
23217   'language' => 'fr',
23218   'plid' => '0',
23219   'plural' => '0',
23220   'i18n_status' => '0',
23221 ))
23222 ->values(array(
23223   'lid' => '63',
23224   'translation' => "!module.module possède des mises Ã  jour mais ne peut pas Ãªtre mis Ã  jour car content.module n'est pas activé.<br /> Le cas Ã©chéant, lors de l'activation de content.module, vous devrez exécuter Ã  nouveau le script de mise Ã  jour. Vous continuerez Ã  voir ce message jusqu'à ce que le module soit activé et les mises Ã  jour exécutées.",
23225   'language' => 'fr',
23226   'plid' => '0',
23227   'plural' => '0',
23228   'i18n_status' => '0',
23229 ))
23230 ->values(array(
23231   'lid' => '64',
23232   'translation' => "!module.module possède des mises Ã  jour et est disponible dans le répertoire des modules, mais n'est pas activé.<br /> Le cas Ã©chéant, lorsque vous l'aurez activé, vous devrez ré-exécuter le script de mise Ã  jour. Vous continuerez Ã  voir ce message jusqu'à l'activation du module et l'exécution des mises Ã  jour. ",
23233   'language' => 'fr',
23234   'plid' => '0',
23235   'plural' => '0',
23236   'i18n_status' => '0',
23237 ))
23238 ->values(array(
23239   'lid' => '65',
23240   'translation' => 'Des mises Ã  jour sont toujours en attente. Veuillez retourner sur <a href="@update-php">update.php</a> et exécuter les mises Ã  jour restarntes.',
23241   'language' => 'fr',
23242   'plid' => '0',
23243   'plural' => '0',
23244   'i18n_status' => '0',
23245 ))
23246 ->values(array(
23247   'lid' => '66',
23248   'translation' => 'CCK - Aucune Intégration aux Vues',
23249   'language' => 'fr',
23250   'plid' => '0',
23251   'plural' => '0',
23252   'i18n_status' => '0',
23253 ))
23254 ->values(array(
23255   'lid' => '67',
23256   'translation' => 'L"intégration de CCK avec le module Views requiert Views 6.x-2.0-rc2 ou une version supérieure.',
23257   'language' => 'fr',
23258   'plid' => '0',
23259   'plural' => '0',
23260   'i18n_status' => '0',
23261 ))
23262 ->values(array(
23263   'lid' => '68',
23264   'translation' => 'Nom',
23265   'language' => 'fr',
23266   'plid' => '0',
23267   'plural' => '0',
23268   'i18n_status' => '0',
23269 ))
23270 ->values(array(
23271   'lid' => '69',
23272   'translation' => 'Type',
23273   'language' => 'fr',
23274   'plid' => '0',
23275   'plural' => '0',
23276   'i18n_status' => '0',
23277 ))
23278 ->values(array(
23279   'lid' => '70',
23280   'translation' => 'Description',
23281   'language' => 'fr',
23282   'plid' => '0',
23283   'plural' => '0',
23284   'i18n_status' => '0',
23285 ))
23286 ->values(array(
23287   'lid' => '71',
23288   'translation' => 'Opérations',
23289   'language' => 'fr',
23290   'plid' => '0',
23291   'plural' => '0',
23292   'i18n_status' => '0',
23293 ))
23294 ->values(array(
23295   'lid' => '72',
23296   'translation' => 'éditer',
23297   'language' => 'fr',
23298   'plid' => '0',
23299   'plural' => '0',
23300   'i18n_status' => '0',
23301 ))
23302 ->values(array(
23303   'lid' => '73',
23304   'translation' => 'gérer les champs',
23305   'language' => 'fr',
23306   'plid' => '0',
23307   'plural' => '0',
23308   'i18n_status' => '0',
23309 ))
23310 ->values(array(
23311   'lid' => '74',
23312   'translation' => 'supprimer',
23313   'language' => 'fr',
23314   'plid' => '0',
23315   'plural' => '0',
23316   'i18n_status' => '0',
23317 ))
23318 ->values(array(
23319   'lid' => '75',
23320   'translation' => 'Aucun type de contenu disponible.',
23321   'language' => 'fr',
23322   'plid' => '0',
23323   'plural' => '0',
23324   'i18n_status' => '0',
23325 ))
23326 ->values(array(
23327   'lid' => '76',
23328   'translation' => '» Ajouter un nouveau type de contenu',
23329   'language' => 'fr',
23330   'plid' => '0',
23331   'plural' => '0',
23332   'i18n_status' => '0',
23333 ))
23334 ->values(array(
23335   'lid' => '77',
23336   'translation' => 'Nom du champ',
23337   'language' => 'fr',
23338   'plid' => '0',
23339   'plural' => '0',
23340   'i18n_status' => '0',
23341 ))
23342 ->values(array(
23343   'lid' => '78',
23344   'translation' => 'Type de champ',
23345   'language' => 'fr',
23346   'plid' => '0',
23347   'plural' => '0',
23348   'i18n_status' => '0',
23349 ))
23350 ->values(array(
23351   'lid' => '79',
23352   'translation' => 'Utilisé dans',
23353   'language' => 'fr',
23354   'plid' => '0',
23355   'plural' => '0',
23356   'i18n_status' => '0',
23357 ))
23358 ->values(array(
23359   'lid' => '80',
23360   'translation' => '@field_name (Verrouillé)',
23361   'language' => 'fr',
23362   'plid' => '0',
23363   'plural' => '0',
23364   'i18n_status' => '0',
23365 ))
23366 ->values(array(
23367   'lid' => '81',
23368   'translation' => "Aucun champ n'est pour l'instant défini sur l'ensemble des types de contenu.",
23369   'language' => 'fr',
23370   'plid' => '0',
23371   'plural' => '0',
23372   'i18n_status' => '0',
23373 ))
23374 ->values(array(
23375   'lid' => '82',
23376   'translation' => "Ce type de contenu possède des champs inactifs. Les champs inactifs ne sont pas inclus dans la liste de champs disponibles, jusqu'à l'activation des modules correspondants.",
23377   'language' => 'fr',
23378   'plid' => '0',
23379   'plural' => '0',
23380   'i18n_status' => '0',
23381 ))
23382 ->values(array(
23383   'lid' => '83',
23384   'translation' => '!field (!field_name) est un champ inactif de type !field_type, qui utilise un widget de type !widget_type.',
23385   'language' => 'fr',
23386   'plid' => '0',
23387   'plural' => '0',
23388   'i18n_status' => '0',
23389 ))
23390 ->values(array(
23391   'lid' => '84',
23392   'translation' => 'Configurer',
23393   'language' => 'fr',
23394   'plid' => '0',
23395   'plural' => '0',
23396   'i18n_status' => '0',
23397 ))
23398 ->values(array(
23399   'lid' => '85',
23400   'translation' => 'Verrouillé',
23401   'language' => 'fr',
23402   'plid' => '0',
23403   'plural' => '0',
23404   'i18n_status' => '0',
23405 ))
23406 ->values(array(
23407   'lid' => '86',
23408   'translation' => '- Sélectionnez un type de champ -',
23409   'language' => 'fr',
23410   'plid' => '0',
23411   'plural' => '0',
23412   'i18n_status' => '0',
23413 ))
23414 ->values(array(
23415   'lid' => '87',
23416   'translation' => '- Sélectionnez un widget -',
23417   'language' => 'fr',
23418   'plid' => '0',
23419   'plural' => '0',
23420   'i18n_status' => '0',
23421 ))
23422 ->values(array(
23423   'lid' => '88',
23424   'translation' => 'Étiquette',
23425   'language' => 'fr',
23426   'plid' => '0',
23427   'plural' => '0',
23428   'i18n_status' => '0',
23429 ))
23430 ->values(array(
23431   'lid' => '89',
23432   'translation' => 'Nom du champ (a-z, 0-9, _)',
23433   'language' => 'fr',
23434   'plid' => '0',
23435   'plural' => '0',
23436   'i18n_status' => '0',
23437 ))
23438 ->values(array(
23439   'lid' => '90',
23440   'translation' => 'Type de données Ã  stocker.',
23441   'language' => 'fr',
23442   'plid' => '0',
23443   'plural' => '0',
23444   'i18n_status' => '0',
23445 ))
23446 ->values(array(
23447   'lid' => '91',
23448   'translation' => "Elément du formulaire pour l'édition des données.",
23449   'language' => 'fr',
23450   'plid' => '0',
23451   'plural' => '0',
23452   'i18n_status' => '0',
23453 ))
23454 ->values(array(
23455   'lid' => '92',
23456   'translation' => '- Sélectionnez un champ existant -',
23457   'language' => 'fr',
23458   'plid' => '0',
23459   'plural' => '0',
23460   'i18n_status' => '0',
23461 ))
23462 ->values(array(
23463   'lid' => '93',
23464   'translation' => 'Champ Ã  partager',
23465   'language' => 'fr',
23466   'plid' => '0',
23467   'plural' => '0',
23468   'i18n_status' => '0',
23469 ))
23470 ->values(array(
23471   'lid' => '94',
23472   'translation' => 'Nom du groupe (a-z, 0-9, _)',
23473   'language' => 'fr',
23474   'plid' => '0',
23475   'plural' => '0',
23476   'i18n_status' => '0',
23477 ))
23478 ->values(array(
23479   'lid' => '95',
23480   'translation' => 'Enregistrer',
23481   'language' => 'fr',
23482   'plid' => '0',
23483   'plural' => '0',
23484   'i18n_status' => '0',
23485 ))
23486 ->values(array(
23487   'lid' => '96',
23488   'translation' => 'Ajouter un nouveau champ : vous devez fournir une Ã©tiquette.',
23489   'language' => 'fr',
23490   'plid' => '0',
23491   'plural' => '0',
23492   'i18n_status' => '0',
23493 ))
23494 ->values(array(
23495   'lid' => '97',
23496   'translation' => 'Ajouter un nouveau champ : vous devez fournir un nom de champ.',
23497   'language' => 'fr',
23498   'plid' => '0',
23499   'plural' => '0',
23500   'i18n_status' => '0',
23501 ))
23502 ->values(array(
23503   'lid' => '98',
23504   'translation' => "Ajouter un nouveau champ : le nom de champ %field_name n'est pas valide. Le nom doit seulement contenir des lettre minuscules non accentuées, des nombres, et des underscores. ",
23505   'language' => 'fr',
23506   'plid' => '0',
23507   'plural' => '0',
23508   'i18n_status' => '0',
23509 ))
23510 ->values(array(
23511   'lid' => '99',
23512   'translation' => "Ajouter un nouveau champ : le nom de champ %field_name est trop long. Le nom est limité Ã  32 caractères, en comptant le préfixe 'field_'.",
23513   'language' => 'fr',
23514   'plid' => '0',
23515   'plural' => '0',
23516   'i18n_status' => '0',
23517 ))
23518 ->values(array(
23519   'lid' => '100',
23520   'translation' => "Ajouter un nouveau champ : le nom 'field_instance' est un nom réservé.",
23521   'language' => 'fr',
23522   'plid' => '0',
23523   'plural' => '0',
23524   'i18n_status' => '0',
23525 ))
23526 ->values(array(
23527   'lid' => '101',
23528   'translation' => 'Ajouter un nouveau champ : le nom du champ %field_name existe déjà.',
23529   'language' => 'fr',
23530   'plid' => '0',
23531   'plural' => '0',
23532   'i18n_status' => '0',
23533 ))
23534 ->values(array(
23535   'lid' => '102',
23536   'translation' => 'Ajouter un nouveau champ : vous devez sélectionner un type de champ.',
23537   'language' => 'fr',
23538   'plid' => '0',
23539   'plural' => '0',
23540   'i18n_status' => '0',
23541 ))
23542 ->values(array(
23543   'lid' => '103',
23544   'translation' => 'Ajouter un nouveau champ : vous devez sélectionner un widget.',
23545   'language' => 'fr',
23546   'plid' => '0',
23547   'plural' => '0',
23548   'i18n_status' => '0',
23549 ))
23550 ->values(array(
23551   'lid' => '104',
23552   'translation' => 'Ajouter un nouveau champ : widget non valide.',
23553   'language' => 'fr',
23554   'plid' => '0',
23555   'plural' => '0',
23556   'i18n_status' => '0',
23557 ))
23558 ->values(array(
23559   'lid' => '105',
23560   'translation' => 'Ajouter un champ existant : vous devez fournir une Ã©tiquette.',
23561   'language' => 'fr',
23562   'plid' => '0',
23563   'plural' => '0',
23564   'i18n_status' => '0',
23565 ))
23566 ->values(array(
23567   'lid' => '106',
23568   'translation' => 'Ajouter un champ existant : vous devez sélectionner un champ.',
23569   'language' => 'fr',
23570   'plid' => '0',
23571   'plural' => '0',
23572   'i18n_status' => '0',
23573 ))
23574 ->values(array(
23575   'lid' => '107',
23576   'translation' => 'Ajouter un champ existant: vous devez sélectionner un widget.',
23577   'language' => 'fr',
23578   'plid' => '0',
23579   'plural' => '0',
23580   'i18n_status' => '0',
23581 ))
23582 ->values(array(
23583   'lid' => '108',
23584   'translation' => 'Ajouter un champ existant : widget non valide.',
23585   'language' => 'fr',
23586   'plid' => '0',
23587   'plural' => '0',
23588   'i18n_status' => '0',
23589 ))
23590 ->values(array(
23591   'lid' => '109',
23592   'translation' => "Un problème est survenu Ã  la création du champ '%label'.",
23593   'language' => 'fr',
23594   'plid' => '0',
23595   'plural' => '0',
23596   'i18n_status' => '0',
23597 ))
23598 ->values(array(
23599   'lid' => '110',
23600   'translation' => "Le champ %label n'a pas pu Ãªtre ajouté au type de contenu car il est verrouillé.",
23601   'language' => 'fr',
23602   'plid' => '0',
23603   'plural' => '0',
23604   'i18n_status' => '0',
23605 ))
23606 ->values(array(
23607   'lid' => '111',
23608   'translation' => "Un problème est survenu lors de l'ajout du champ '%label'.",
23609   'language' => 'fr',
23610   'plid' => '0',
23611   'plural' => '0',
23612   'i18n_status' => '0',
23613 ))
23614 ->values(array(
23615   'lid' => '112',
23616   'translation' => "Il n'y a aucun champ configuré pour ce type de contenu. Vous pouvez ajouter de nouveaux champs sur la page <a href=\"@link\">Gérer les champs</a>.",
23617   'language' => 'fr',
23618   'plid' => '0',
23619   'plural' => '0',
23620   'i18n_status' => '0',
23621 ))
23622 ->values(array(
23623   'lid' => '113',
23624   'translation' => 'Au dessus',
23625   'language' => 'fr',
23626   'plid' => '0',
23627   'plural' => '0',
23628   'i18n_status' => '0',
23629 ))
23630 ->values(array(
23631   'lid' => '114',
23632   'translation' => 'Sur la même ligne',
23633   'language' => 'fr',
23634   'plid' => '0',
23635   'plural' => '0',
23636   'i18n_status' => '0',
23637 ))
23638 ->values(array(
23639   'lid' => '115',
23640   'translation' => 'Inclure',
23641   'language' => 'fr',
23642   'plid' => '0',
23643   'plural' => '0',
23644   'i18n_status' => '0',
23645 ))
23646 ->values(array(
23647   'lid' => '116',
23648   'translation' => 'Exclure',
23649   'language' => 'fr',
23650   'plid' => '0',
23651   'plural' => '0',
23652   'i18n_status' => '0',
23653 ))
23654 ->values(array(
23655   'lid' => '117',
23656   'translation' => 'aucune mise en forme',
23657   'language' => 'fr',
23658   'plid' => '0',
23659   'plural' => '0',
23660   'i18n_status' => '0',
23661 ))
23662 ->values(array(
23663   'lid' => '118',
23664   'translation' => 'simple',
23665   'language' => 'fr',
23666   'plid' => '0',
23667   'plural' => '0',
23668   'i18n_status' => '0',
23669 ))
23670 ->values(array(
23671   'lid' => '119',
23672   'translation' => 'groupe de champs',
23673   'language' => 'fr',
23674   'plid' => '0',
23675   'plural' => '0',
23676   'i18n_status' => '0',
23677 ))
23678 ->values(array(
23679   'lid' => '120',
23680   'translation' => 'groupe de champs - repliable',
23681   'language' => 'fr',
23682   'plid' => '0',
23683   'plural' => '0',
23684   'i18n_status' => '0',
23685 ))
23686 ->values(array(
23687   'lid' => '121',
23688   'translation' => 'groupe de champs - replié',
23689   'language' => 'fr',
23690   'plid' => '0',
23691   'plural' => '0',
23692   'i18n_status' => '0',
23693 ))
23694 ->values(array(
23695   'lid' => '122',
23696   'translation' => 'Vos paramètres ont Ã©té enregistrés.',
23697   'language' => 'fr',
23698   'plid' => '0',
23699   'plural' => '0',
23700   'i18n_status' => '0',
23701 ))
23702 ->values(array(
23703   'lid' => '123',
23704   'translation' => '@type : @field (@label)',
23705   'language' => 'fr',
23706   'plid' => '0',
23707   'plural' => '0',
23708   'i18n_status' => '0',
23709 ))
23710 ->values(array(
23711   'lid' => '124',
23712   'translation' => 'Éditer les informations de base',
23713   'language' => 'fr',
23714   'plid' => '0',
23715   'plural' => '0',
23716   'i18n_status' => '0',
23717 ))
23718 ->values(array(
23719   'lid' => '125',
23720   'translation' => 'Le nom lisible par une machine du champ. Ce nom ne peut Ãªtre changé.',
23721   'language' => 'fr',
23722   'plid' => '0',
23723   'plural' => '0',
23724   'i18n_status' => '0',
23725 ))
23726 ->values(array(
23727   'lid' => '126',
23728   'translation' => "Nom lisible par une personne, destiné Ã  servir d'étiquette pour ce champ au sein du type de contenu '%type'.",
23729   'language' => 'fr',
23730   'plid' => '0',
23731   'plural' => '0',
23732   'i18n_status' => '0',
23733 ))
23734 ->values(array(
23735   'lid' => '127',
23736   'translation' => 'Type de données que vous souhaitez enregistrer, par le biais de ce champ, dans la base de données. Cette option ne peut Ãªtre modifiée.',
23737   'language' => 'fr',
23738   'plid' => '0',
23739   'plural' => '0',
23740   'i18n_status' => '0',
23741 ))
23742 ->values(array(
23743   'lid' => '128',
23744   'translation' => 'Type de widget',
23745   'language' => 'fr',
23746   'plid' => '0',
23747   'plural' => '0',
23748   'i18n_status' => '0',
23749 ))
23750 ->values(array(
23751   'lid' => '129',
23752   'translation' => "Type d'élément de formulaire que vous souhaitez présenter Ã  l'utilisateur lorsqu'il renseigne ce champ dans le type de contenu '%type'.",
23753   'language' => 'fr',
23754   'plid' => '0',
23755   'plural' => '0',
23756   'i18n_status' => '0',
23757 ))
23758 ->values(array(
23759   'lid' => '130',
23760   'translation' => 'Continuer',
23761   'language' => 'fr',
23762   'plid' => '0',
23763   'plural' => '0',
23764   'i18n_status' => '0',
23765 ))
23766 ->values(array(
23767   'lid' => '131',
23768   'translation' => 'Les paramètres basiques du champ %label ont Ã©té mis Ã  jour.',
23769   'language' => 'fr',
23770   'plid' => '0',
23771   'plural' => '0',
23772   'i18n_status' => '0',
23773 ))
23774 ->values(array(
23775   'lid' => '132',
23776   'translation' => 'Un problème a Ã©té rencontré lors de la mise Ã  jour des paramètres basiques du champ %label.',
23777   'language' => 'fr',
23778   'plid' => '0',
23779   'plural' => '0',
23780   'i18n_status' => '0',
23781 ))
23782 ->values(array(
23783   'lid' => '133',
23784   'translation' => "Êtes-vous certain de vouloir enlever le champ '%field' ?",
23785   'language' => 'fr',
23786   'plid' => '0',
23787   'plural' => '0',
23788   'i18n_status' => '0',
23789 ))
23790 ->values(array(
23791   'lid' => '134',
23792   'translation' => 'Si vous avez encore du contenu dans ce champ, il sera perdu. Cette action est irréversible.',
23793   'language' => 'fr',
23794   'plid' => '0',
23795   'plural' => '0',
23796   'i18n_status' => '0',
23797 ))
23798 ->values(array(
23799   'lid' => '135',
23800   'translation' => 'Annuler',
23801   'language' => 'fr',
23802   'plid' => '0',
23803   'plural' => '0',
23804   'i18n_status' => '0',
23805 ))
23806 ->values(array(
23807   'lid' => '136',
23808   'translation' => 'Ce champ est <strong>verrouillé</strong> et ne peut Ãªtre supprimé.',
23809   'language' => 'fr',
23810   'plid' => '0',
23811   'plural' => '0',
23812   'i18n_status' => '0',
23813 ))
23814 ->values(array(
23815   'lid' => '137',
23816   'translation' => "Le champ '%field' de '%type' a Ã©té enlevé.",
23817   'language' => 'fr',
23818   'plid' => '0',
23819   'plural' => '0',
23820   'i18n_status' => '0',
23821 ))
23822 ->values(array(
23823   'lid' => '138',
23824   'translation' => "Un problème est survenu Ã  la suppression du champ '%field' du type '%type'.",
23825   'language' => 'fr',
23826   'plid' => '0',
23827   'plural' => '0',
23828   'i18n_status' => '0',
23829 ))
23830 ->values(array(
23831   'lid' => '139',
23832   'translation' => 'Le champ %field est verouillé et ne peut Ãªtre Ã©dité.',
23833   'language' => 'fr',
23834   'plid' => '0',
23835   'plural' => '0',
23836   'i18n_status' => '0',
23837 ))
23838 ->values(array(
23839   'lid' => '140',
23840   'translation' => "Informations de base pour '%type'",
23841   'language' => 'fr',
23842   'plid' => '0',
23843   'plural' => '0',
23844   'i18n_status' => '0',
23845 ))
23846 ->values(array(
23847   'lid' => '141',
23848   'translation' => 'Modifier les informations de base',
23849   'language' => 'fr',
23850   'plid' => '0',
23851   'plural' => '0',
23852   'i18n_status' => '0',
23853 ))
23854 ->values(array(
23855   'lid' => '142',
23856   'translation' => "Paramètres de '%type'",
23857   'language' => 'fr',
23858   'plid' => '0',
23859   'plural' => '0',
23860   'i18n_status' => '0',
23861 ))
23862 ->values(array(
23863   'lid' => '143',
23864   'translation' => "Ces paramètres ne s'applique qu'au champ '%field' tel qu'il apparaît dans le type contenu '%type'.",
23865   'language' => 'fr',
23866   'plid' => '0',
23867   'plural' => '0',
23868   'i18n_status' => '0',
23869 ))
23870 ->values(array(
23871   'lid' => '144',
23872   'translation' => "Texte d'aide",
23873   'language' => 'fr',
23874   'plid' => '0',
23875   'plural' => '0',
23876   'i18n_status' => '0',
23877 ))
23878 ->values(array(
23879   'lid' => '145',
23880   'translation' => "Instructions Ã  présenter Ã  l'utilisateur sous ce champ, dans le formulaire d'édition.<br />Balises HTML autorisées : @tags",
23881   'language' => 'fr',
23882   'plid' => '0',
23883   'plural' => '0',
23884   'i18n_status' => '0',
23885 ))
23886 ->values(array(
23887   'lid' => '146',
23888   'translation' => 'Valeur par défaut',
23889   'language' => 'fr',
23890   'plid' => '0',
23891   'plural' => '0',
23892   'i18n_status' => '0',
23893 ))
23894 ->values(array(
23895   'lid' => '147',
23896   'translation' => 'Code PHP',
23897   'language' => 'fr',
23898   'plid' => '0',
23899   'plural' => '0',
23900   'i18n_status' => '0',
23901 ))
23902 ->values(array(
23903   'lid' => '148',
23904   'translation' => "'@column' => valeur de @column",
23905   'language' => 'fr',
23906   'plid' => '0',
23907   'plural' => '0',
23908   'i18n_status' => '0',
23909 ))
23910 ->values(array(
23911   'lid' => '149',
23912   'translation' => "return array(\n  0 => array(@columns),\n  // Vous voudrez vous arrêter là dans la plupart des cas. Fournir plus de valeurs\n  // si vous souhaitez que votre 'valeur par défaut' ait des valeurs multiples :\n  1 => array(@columns),\n  2 => ...\n);",
23913   'language' => 'fr',
23914   'plid' => '0',
23915   'plural' => '0',
23916   'i18n_status' => '0',
23917 ))
23918 ->values(array(
23919   'lid' => '150',
23920   'translation' => 'Code',
23921   'language' => 'fr',
23922   'plid' => '0',
23923   'plural' => '0',
23924   'i18n_status' => '0',
23925 ))
23926 ->values(array(
23927   'lid' => '151',
23928   'translation' => "Usage avancé seulement : code PHP retournant une valeur par défaut. Ne doit pas contenir les délimiteurs &lt;?php ?&gt;. Si ce champ est rempli, la valeur retournée par ce code Ã©crasera toute valeur spécifiée ci-dessus. Format attendu : <pre>!sample</pre>. Pour vous faire une idée du format attendu, vous pouvez utiliser l'onglet <em>devel load</em> fourni par <a href=\"@link_devel\">le module devel</a> sur une page de contenu de type  %type.",
23929   'language' => 'fr',
23930   'plid' => '0',
23931   'plural' => '0',
23932   'i18n_status' => '0',
23933 ))
23934 ->values(array(
23935   'lid' => '152',
23936   'translation' => '&lt;aucun&gt;',
23937   'language' => 'fr',
23938   'plid' => '0',
23939   'plural' => '0',
23940   'i18n_status' => '0',
23941 ))
23942 ->values(array(
23943   'lid' => '153',
23944   'translation' => "Vous n'êtes pas autorisé Ã  saisir du code PHP.",
23945   'language' => 'fr',
23946   'plid' => '0',
23947   'plural' => '0',
23948   'i18n_status' => '0',
23949 ))
23950 ->values(array(
23951   'lid' => '154',
23952   'translation' => 'Ce code PHP a Ã©té inséré par un administrateur et supplantera toute valeur spécifiée ci-dessus.',
23953   'language' => 'fr',
23954   'plid' => '0',
23955   'plural' => '0',
23956   'i18n_status' => '0',
23957 ))
23958 ->values(array(
23959   'lid' => '155',
23960   'translation' => 'Paramètres globaux',
23961   'language' => 'fr',
23962   'plid' => '0',
23963   'plural' => '0',
23964   'i18n_status' => '0',
23965 ))
23966 ->values(array(
23967   'lid' => '156',
23968   'translation' => "Ces paramètres s'appliquent au champ '%field' dans tous les types de contenu où il apparaît.",
23969   'language' => 'fr',
23970   'plid' => '0',
23971   'plural' => '0',
23972   'i18n_status' => '0',
23973 ))
23974 ->values(array(
23975   'lid' => '157',
23976   'translation' => 'Obligatoire',
23977   'language' => 'fr',
23978   'plid' => '0',
23979   'plural' => '0',
23980   'i18n_status' => '0',
23981 ))
23982 ->values(array(
23983   'lid' => '158',
23984   'translation' => "Le nombre maximum de valeurs qu'un utilisateur peut entrer pour ce champ.",
23985   'language' => 'fr',
23986   'plid' => '0',
23987   'plural' => '0',
23988   'i18n_status' => '0',
23989 ))
23990 ->values(array(
23991   'lid' => '159',
23992   'translation' => "'Illimité' fournira un bouton 'Ajouter plus' pour que les utilisateurs puissent ajouter autant de valeurs qu'ils le souhaitent.",
23993   'language' => 'fr',
23994   'plid' => '0',
23995   'plural' => '0',
23996   'i18n_status' => '0',
23997 ))
23998 ->values(array(
23999   'lid' => '160',
24000   'translation' => 'Attention ! Changer ce paramètre alors que des données ont déjà Ã©té créées peut conduire Ã  perdre des données !',
24001   'language' => 'fr',
24002   'plid' => '0',
24003   'plural' => '0',
24004   'i18n_status' => '0',
24005 ))
24006 ->values(array(
24007   'lid' => '161',
24008   'translation' => 'Nombre de valeurs',
24009   'language' => 'fr',
24010   'plid' => '0',
24011   'plural' => '0',
24012   'i18n_status' => '0',
24013 ))
24014 ->values(array(
24015   'lid' => '162',
24016   'translation' => 'Illimité',
24017   'language' => 'fr',
24018   'plid' => '0',
24019   'plural' => '0',
24020   'i18n_status' => '0',
24021 ))
24022 ->values(array(
24023   'lid' => '163',
24024   'translation' => 'Enregistrer les paramètres du champ',
24025   'language' => 'fr',
24026   'plid' => '0',
24027   'plural' => '0',
24028   'i18n_status' => '0',
24029 ))
24030 ->values(array(
24031   'lid' => '164',
24032   'translation' => "Le code PHP pour la 'valeur par défaut' a retourné @value, qui n'est pas valide.",
24033   'language' => 'fr',
24034   'plid' => '0',
24035   'plural' => '0',
24036   'i18n_status' => '0',
24037 ))
24038 ->values(array(
24039   'lid' => '165',
24040   'translation' => 'La valeur par défaut est invalide.',
24041   'language' => 'fr',
24042   'plid' => '0',
24043   'plural' => '0',
24044   'i18n_status' => '0',
24045 ))
24046 ->values(array(
24047   'lid' => '166',
24048   'translation' => "Le champ '%label' a Ã©té ajouté.",
24049   'language' => 'fr',
24050   'plid' => '0',
24051   'plural' => '0',
24052   'i18n_status' => '0',
24053 ))
24054 ->values(array(
24055   'lid' => '167',
24056   'translation' => "Champ '%label' enregistré.",
24057   'language' => 'fr',
24058   'plid' => '0',
24059   'plural' => '0',
24060   'i18n_status' => '0',
24061 ))
24062 ->values(array(
24063   'lid' => '168',
24064   'translation' => 'Exécution',
24065   'language' => 'fr',
24066   'plid' => '0',
24067   'plural' => '0',
24068   'i18n_status' => '0',
24069 ))
24070 ->values(array(
24071   'lid' => '169',
24072   'translation' => 'La mise Ã  jour a Ã©choué.',
24073   'language' => 'fr',
24074   'plid' => '0',
24075   'plural' => '0',
24076   'i18n_status' => '0',
24077 ))
24078 ->values(array(
24079   'lid' => '170',
24080   'translation' => 'La base de données a Ã©té modifiée et des données ont Ã©té déplacées ou supprimées.',
24081   'language' => 'fr',
24082   'plid' => '0',
24083   'plural' => '0',
24084   'i18n_status' => '0',
24085 ))
24086 ->values(array(
24087   'lid' => '171',
24088   'translation' => 'Une erreur est survenue et a interrompu la modification de la base de données.',
24089   'language' => 'fr',
24090   'plid' => '0',
24091   'plural' => '0',
24092   'i18n_status' => '0',
24093 ))
24094 ->values(array(
24095   'lid' => '172',
24096   'translation' => "'%title' en cours de traitement",
24097   'language' => 'fr',
24098   'plid' => '0',
24099   'plural' => '0',
24100   'i18n_status' => '0',
24101 ))
24102 ->values(array(
24103   'lid' => '173',
24104   'translation' => '%name doit Ãªtre un entier.',
24105   'language' => 'fr',
24106   'plid' => '0',
24107   'plural' => '0',
24108   'i18n_status' => '0',
24109 ))
24110 ->values(array(
24111   'lid' => '174',
24112   'translation' => '%name doit Ãªtre un entier positif.',
24113   'language' => 'fr',
24114   'plid' => '0',
24115   'plural' => '0',
24116   'i18n_status' => '0',
24117 ))
24118 ->values(array(
24119   'lid' => '175',
24120   'translation' => '%name doit Ãªtre un nombre.',
24121   'language' => 'fr',
24122   'plid' => '0',
24123   'plural' => '0',
24124   'i18n_status' => '0',
24125 ))
24126 ->values(array(
24127   'lid' => '176',
24128   'translation' => '1 Ã©lément traité avec succès&nbsp:',
24129   'language' => 'fr',
24130   'plid' => '0',
24131   'plural' => '0',
24132   'i18n_status' => '0',
24133 ))
24134 ->values(array(
24135   'lid' => '177',
24136   'translation' => '@count Ã©léments traités avec succès&nbsp:',
24137   'language' => 'fr',
24138   'plid' => '176',
24139   'plural' => '1',
24140   'i18n_status' => '0',
24141 ))
24142 ->values(array(
24143   'lid' => '178',
24144   'translation' => "La table de champs a Ã©té renommée de '%old_name' Ã  '%new_name' et les instances des champs ont Ã©té mises Ã  jour.",
24145   'language' => 'fr',
24146   'plid' => '0',
24147   'plural' => '0',
24148   'i18n_status' => '0',
24149 ))
24150 ->values(array(
24151   'lid' => '179',
24152   'translation' => "La table de champs '%name' a Ã©té supprimée.",
24153   'language' => 'fr',
24154   'plid' => '0',
24155   'plural' => '0',
24156   'i18n_status' => '0',
24157 ))
24158 ->values(array(
24159   'lid' => '180',
24160   'translation' => 'Ajouter un autre Ã©lément',
24161   'language' => 'fr',
24162   'plid' => '0',
24163   'plural' => '0',
24164   'i18n_status' => '0',
24165 ))
24166 ->values(array(
24167   'lid' => '181',
24168   'translation' => 'Contenu du champ',
24169   'language' => 'fr',
24170   'plid' => '0',
24171   'plural' => '0',
24172   'i18n_status' => '0',
24173 ))
24174 ->values(array(
24175   'lid' => '182',
24176   'translation' => 'Un champ de contenu du node référencé.',
24177   'language' => 'fr',
24178   'plid' => '0',
24179   'plural' => '0',
24180   'i18n_status' => '0',
24181 ))
24182 ->values(array(
24183   'lid' => '183',
24184   'translation' => 'Noeud',
24185   'language' => 'fr',
24186   'plid' => '0',
24187   'plural' => '0',
24188   'i18n_status' => '0',
24189 ))
24190 ->values(array(
24191   'lid' => '184',
24192   'translation' => 'Contexte du noeud',
24193   'language' => 'fr',
24194   'plid' => '0',
24195   'plural' => '0',
24196   'i18n_status' => '0',
24197 ))
24198 ->values(array(
24199   'lid' => '185',
24200   'translation' => 'Titre du bloc',
24201   'language' => 'fr',
24202   'plid' => '0',
24203   'plural' => '0',
24204   'i18n_status' => '0',
24205 ))
24206 ->values(array(
24207   'lid' => '186',
24208   'translation' => 'Caché',
24209   'language' => 'fr',
24210   'plid' => '0',
24211   'plural' => '0',
24212   'i18n_status' => '0',
24213 ))
24214 ->values(array(
24215   'lid' => '187',
24216   'translation' => "Configurer la manière dont l'étiquette est affichée.",
24217   'language' => 'fr',
24218   'plid' => '0',
24219   'plural' => '0',
24220   'i18n_status' => '0',
24221 ))
24222 ->values(array(
24223   'lid' => '188',
24224   'translation' => 'Champ / Formateur',
24225   'language' => 'fr',
24226   'plid' => '0',
24227   'plural' => '0',
24228   'i18n_status' => '0',
24229 ))
24230 ->values(array(
24231   'lid' => '189',
24232   'translation' => 'Sélectionner un champ et un formateur.',
24233   'language' => 'fr',
24234   'plid' => '0',
24235   'plural' => '0',
24236   'i18n_status' => '0',
24237 ))
24238 ->values(array(
24239   'lid' => '190',
24240   'translation' => '"@s" champ @name',
24241   'language' => 'fr',
24242   'plid' => '0',
24243   'plural' => '0',
24244   'i18n_status' => '0',
24245 ))
24246 ->values(array(
24247   'lid' => '191',
24248   'translation' => 'Remplir un champ',
24249   'language' => 'fr',
24250   'plid' => '0',
24251   'plural' => '0',
24252   'i18n_status' => '0',
24253 ))
24254 ->values(array(
24255   'lid' => '192',
24256   'translation' => 'Vous devez vous assurer que le champ existe pour le type de contenu donné.',
24257   'language' => 'fr',
24258   'plid' => '0',
24259   'plural' => '0',
24260   'i18n_status' => '0',
24261 ))
24262 ->values(array(
24263   'lid' => '193',
24264   'translation' => 'Champ',
24265   'language' => 'fr',
24266   'plid' => '0',
24267   'plural' => '0',
24268   'i18n_status' => '0',
24269 ))
24270 ->values(array(
24271   'lid' => '194',
24272   'translation' => 'Sélectionnez le nom-machine du champ.',
24273   'language' => 'fr',
24274   'plid' => '0',
24275   'plural' => '0',
24276   'i18n_status' => '0',
24277 ))
24278 ->values(array(
24279   'lid' => '195',
24280   'translation' => 'Avancé : Préciser les valeurs des champs avec du code PHP',
24281   'language' => 'fr',
24282   'plid' => '0',
24283   'plural' => '0',
24284   'i18n_status' => '0',
24285 ))
24286 ->values(array(
24287   'lid' => '196',
24288   'translation' => "Usage avancé seulement : code PHP retournant la valeur Ã  définir. Ne doit pas contenir les délimiteurs &lt;?php ?&gt;. Si ce champ est rempli, la valeur retournée par ce code Ã©crasera toute valeur spécifiée ci-dessus. Format attendu : <pre>!sample</pre>. Pour vous faire une idée du format attendu, vous pouvez utiliser l'onglet <em>devel load</em> fourni par <a href=\"@link_devel\">le module devel</a> sur une page de contenu de type  %type.",
24289   'language' => 'fr',
24290   'plid' => '0',
24291   'plural' => '0',
24292   'i18n_status' => '0',
24293 ))
24294 ->values(array(
24295   'lid' => '197',
24296   'translation' => 'Vous devez retourner la valeur par défaut dans le format attendu.',
24297   'language' => 'fr',
24298   'plid' => '0',
24299   'plural' => '0',
24300   'i18n_status' => '0',
24301 ))
24302 ->values(array(
24303   'lid' => '198',
24304   'translation' => "Remplir le champ '@field' de @node",
24305   'language' => 'fr',
24306   'plid' => '0',
24307   'plural' => '0',
24308   'i18n_status' => '0',
24309 ))
24310 ->values(array(
24311   'lid' => '199',
24312   'translation' => 'Le champ possède une valeur',
24313   'language' => 'fr',
24314   'plid' => '0',
24315   'plural' => '0',
24316   'i18n_status' => '0',
24317 ))
24318 ->values(array(
24319   'lid' => '200',
24320   'translation' => 'Vous devez vous assurer que le champ utilisé existe dans le type de contenu donné. La condition retourne TRUE, si le champ sélectionné possède la valeur donnée.',
24321   'language' => 'fr',
24322   'plid' => '0',
24323   'plural' => '0',
24324   'i18n_status' => '0',
24325 ))
24326 ->values(array(
24327   'lid' => '201',
24328   'translation' => 'Le champ a Ã©té modifié',
24329   'language' => 'fr',
24330   'plid' => '0',
24331   'plural' => '0',
24332   'i18n_status' => '0',
24333 ))
24334 ->values(array(
24335   'lid' => '202',
24336   'translation' => 'Contenu contenant des modifications',
24337   'language' => 'fr',
24338   'plid' => '0',
24339   'plural' => '0',
24340   'i18n_status' => '0',
24341 ))
24342 ->values(array(
24343   'lid' => '203',
24344   'translation' => 'Contenu ne contenant pas de modification',
24345   'language' => 'fr',
24346   'plid' => '0',
24347   'plural' => '0',
24348   'i18n_status' => '0',
24349 ))
24350 ->values(array(
24351   'lid' => '204',
24352   'translation' => "Le champ '@field' de @node possède une valeur",
24353   'language' => 'fr',
24354   'plid' => '0',
24355   'plural' => '0',
24356   'i18n_status' => '0',
24357 ))
24358 ->values(array(
24359   'lid' => '205',
24360   'translation' => 'Sélectionnez le nom-machine du champ Ã  voir.',
24361   'language' => 'fr',
24362   'plid' => '0',
24363   'plural' => '0',
24364   'i18n_status' => '0',
24365 ))
24366 ->values(array(
24367   'lid' => '206',
24368   'translation' => "Le champ '@field' de @node a Ã©té modifié",
24369   'language' => 'fr',
24370   'plid' => '0',
24371   'plural' => '0',
24372   'i18n_status' => '0',
24373 ))
24374 ->values(array(
24375   'lid' => '207',
24376   'translation' => 'Jeton (Token)',
24377   'language' => 'fr',
24378   'plid' => '0',
24379   'plural' => '0',
24380   'i18n_status' => '0',
24381 ))
24382 ->values(array(
24383   'lid' => '208',
24384   'translation' => 'Identifiant du nÅ“ud référencé',
24385   'language' => 'fr',
24386   'plid' => '0',
24387   'plural' => '0',
24388   'i18n_status' => '0',
24389 ))
24390 ->values(array(
24391   'lid' => '209',
24392   'translation' => 'Titre du nÅ“ud référencé',
24393   'language' => 'fr',
24394   'plid' => '0',
24395   'plural' => '0',
24396   'i18n_status' => '0',
24397 ))
24398 ->values(array(
24399   'lid' => '210',
24400   'translation' => 'Titre non filtré du noeud référencé. ATTENTION - saisie brute utilisateur.',
24401   'language' => 'fr',
24402   'plid' => '0',
24403   'plural' => '0',
24404   'i18n_status' => '0',
24405 ))
24406 ->values(array(
24407   'lid' => '211',
24408   'translation' => 'Lien html formaté vers le noeud référencé.',
24409   'language' => 'fr',
24410   'plid' => '0',
24411   'plural' => '0',
24412   'i18n_status' => '0',
24413 ))
24414 ->values(array(
24415   'lid' => '212',
24416   'translation' => 'Alias de chemin relatif vers le noeud référencé.',
24417   'language' => 'fr',
24418   'plid' => '0',
24419   'plural' => '0',
24420   'i18n_status' => '0',
24421 ))
24422 ->values(array(
24423   'lid' => '213',
24424   'translation' => 'Alias de chemin absolu vers le noeud référencé.',
24425   'language' => 'fr',
24426   'plid' => '0',
24427   'plural' => '0',
24428   'i18n_status' => '0',
24429 ))
24430 ->values(array(
24431   'lid' => '214',
24432   'translation' => 'Valeur numérique brute',
24433   'language' => 'fr',
24434   'plid' => '0',
24435   'plural' => '0',
24436   'i18n_status' => '0',
24437 ))
24438 ->values(array(
24439   'lid' => '215',
24440   'translation' => 'Valeur numérique mise en forme',
24441   'language' => 'fr',
24442   'plid' => '0',
24443   'plural' => '0',
24444   'i18n_status' => '0',
24445 ))
24446 ->values(array(
24447   'lid' => '216',
24448   'translation' => 'Texte brut, non filtré',
24449   'language' => 'fr',
24450   'plid' => '0',
24451   'plural' => '0',
24452   'i18n_status' => '0',
24453 ))
24454 ->values(array(
24455   'lid' => '217',
24456   'translation' => 'Texte filtré et mis en forme',
24457   'language' => 'fr',
24458   'plid' => '0',
24459   'plural' => '0',
24460   'i18n_status' => '0',
24461 ))
24462 ->values(array(
24463   'lid' => '218',
24464   'translation' => "Identifiant de l'utilisateur référencé",
24465   'language' => 'fr',
24466   'plid' => '0',
24467   'plural' => '0',
24468   'i18n_status' => '0',
24469 ))
24470 ->values(array(
24471   'lid' => '219',
24472   'translation' => "Nom de l'utilisateur référencé",
24473   'language' => 'fr',
24474   'plid' => '0',
24475   'plural' => '0',
24476   'i18n_status' => '0',
24477 ))
24478 ->values(array(
24479   'lid' => '220',
24480   'translation' => "Lien HTML mis en forme vers l'utilisateur référencé",
24481   'language' => 'fr',
24482   'plid' => '0',
24483   'plural' => '0',
24484   'i18n_status' => '0',
24485 ))
24486 ->values(array(
24487   'lid' => '221',
24488   'translation' => "Alias de chemin relatif vers l'utilisateur référencé.",
24489   'language' => 'fr',
24490   'plid' => '0',
24491   'plural' => '0',
24492   'i18n_status' => '0',
24493 ))
24494 ->values(array(
24495   'lid' => '222',
24496   'translation' => "Alias de chemin absolu vers l'utilisateur référencé.",
24497   'language' => 'fr',
24498   'plid' => '0',
24499   'plural' => '0',
24500   'i18n_status' => '0',
24501 ))
24502 ->values(array(
24503   'lid' => '223',
24504   'translation' => '@label (!name)',
24505   'language' => 'fr',
24506   'plid' => '0',
24507   'plural' => '0',
24508   'i18n_status' => '0',
24509 ))
24510 ->values(array(
24511   'lid' => '224',
24512   'translation' => '@label (!name) - !column',
24513   'language' => 'fr',
24514   'plid' => '0',
24515   'plural' => '0',
24516   'i18n_status' => '0',
24517 ))
24518 ->values(array(
24519   'lid' => '225',
24520   'translation' => '@label-truncated - !column',
24521   'language' => 'fr',
24522   'plid' => '0',
24523   'plural' => '0',
24524   'i18n_status' => '0',
24525 ))
24526 ->values(array(
24527   'lid' => '226',
24528   'translation' => 'Apparaît dans : @types',
24529   'language' => 'fr',
24530   'plid' => '0',
24531   'plural' => '0',
24532   'i18n_status' => '0',
24533 ))
24534 ->values(array(
24535   'lid' => '227',
24536   'translation' => 'Aucun',
24537   'language' => 'fr',
24538   'plid' => '0',
24539   'plural' => '0',
24540   'i18n_status' => '0',
24541 ))
24542 ->values(array(
24543   'lid' => '228',
24544   'translation' => 'Étiquette du widget (@label)',
24545   'language' => 'fr',
24546   'plid' => '0',
24547   'plural' => '0',
24548   'i18n_status' => '0',
24549 ))
24550 ->values(array(
24551   'lid' => '229',
24552   'translation' => 'Personnalisé',
24553   'language' => 'fr',
24554   'plid' => '0',
24555   'plural' => '0',
24556   'i18n_status' => '0',
24557 ))
24558 ->values(array(
24559   'lid' => '230',
24560   'translation' => 'Étiquette personnalisée',
24561   'language' => 'fr',
24562   'plid' => '0',
24563   'plural' => '0',
24564   'i18n_status' => '0',
24565 ))
24566 ->values(array(
24567   'lid' => '231',
24568   'translation' => 'Format',
24569   'language' => 'fr',
24570   'plid' => '0',
24571   'plural' => '0',
24572   'i18n_status' => '0',
24573 ))
24574 ->values(array(
24575   'lid' => '232',
24576   'translation' => 'Grouper plusieurs valeurs',
24577   'language' => 'fr',
24578   'plid' => '0',
24579   'plural' => '0',
24580   'i18n_status' => '0',
24581 ))
24582 ->values(array(
24583   'lid' => '233',
24584   'translation' => "Si non coché, chaque Ã©lément du champ créera une nouvelle ligne, ce qui pourrait apparemment entraîner des doublons. Ce paramètre n'est pas compatible avec le tri par clic dans l'affichage du tableau. ",
24585   'language' => 'fr',
24586   'plid' => '0',
24587   'plural' => '0',
24588   'i18n_status' => '0',
24589 ))
24590 ->values(array(
24591   'lid' => '234',
24592   'translation' => 'Afficher @count valeur(s)',
24593   'language' => 'fr',
24594   'plid' => '0',
24595   'plural' => '0',
24596   'i18n_status' => '0',
24597 ))
24598 ->values(array(
24599   'lid' => '235',
24600   'translation' => 'en commençant Ã  @count',
24601   'language' => 'fr',
24602   'plid' => '0',
24603   'plural' => '0',
24604   'i18n_status' => '0',
24605 ))
24606 ->values(array(
24607   'lid' => '236',
24608   'translation' => 'Inversé (commencer Ã  partir des dernières valeurs)',
24609   'language' => 'fr',
24610   'plid' => '0',
24611   'plural' => '0',
24612   'i18n_status' => '0',
24613 ))
24614 ->values(array(
24615   'lid' => '237',
24616   'translation' => 'Tous / Toutes',
24617   'language' => 'fr',
24618   'plid' => '0',
24619   'plural' => '0',
24620   'i18n_status' => '0',
24621 ))
24622 ->values(array(
24623   'lid' => '238',
24624   'translation' => 'Delta',
24625   'language' => 'fr',
24626   'plid' => '0',
24627   'plural' => '0',
24628   'i18n_status' => '0',
24629 ))
24630 ->values(array(
24631   'lid' => '239',
24632   'translation' => "Le delta vous permet de sélectionner quel Ã©lément d'un champ Ã  valeur multiple sera la clé de la relation. Sélectionnez \"1\" pour utiliser le premier Ã©lément, \"2\" pour le second et ainsi de suite. Si vous sélectionnez \"Tous\", chaque Ã©lément du champ créera une nouvelle ligne, ce qui pourrait causer des doublons.",
24633   'language' => 'fr',
24634   'plid' => '0',
24635   'plural' => '0',
24636   'i18n_status' => '0',
24637 ))
24638 ->values(array(
24639   'lid' => '240',
24640   'translation' => "Le delta vous permet de sélectionner quel Ã©lément d'un champ Ã  valeur multiple sera utilisé pour les tris. Sélectionnez \"1\" pour utiliser le premier Ã©lément, \"2\" pour le second et ainsi de suite. Si vous sélectionnez \"Tous\", chaque Ã©lément du champ créera une nouvelle ligne, ce qui pourrait causer des doublons.",
24641   'language' => 'fr',
24642   'plid' => '0',
24643   'plural' => '0',
24644   'i18n_status' => '0',
24645 ))
24646 ->values(array(
24647   'lid' => '241',
24648   'translation' => 'Exporter',
24649   'language' => 'fr',
24650   'plid' => '0',
24651   'plural' => '0',
24652   'i18n_status' => '0',
24653 ))
24654 ->values(array(
24655   'lid' => '242',
24656   'translation' => "Ce formulaire traitera un type de contenu et un ou plusieurs champs de ce type, pour en exporter les paramètres. Le code d'export ainsi généré peut Ãªtre copié et collé dans la page d'import, vers la base de données courante ou vers une autre base de données. L'opération d'import ajoutera les champs Ã  un type de contenu existant ou créera un nouveau type de contenu intégrant les champs sélectionnés.",
24657   'language' => 'fr',
24658   'plid' => '0',
24659   'plural' => '0',
24660   'i18n_status' => '0',
24661 ))
24662 ->values(array(
24663   'lid' => '243',
24664   'translation' => 'Types',
24665   'language' => 'fr',
24666   'plid' => '0',
24667   'plural' => '0',
24668   'i18n_status' => '0',
24669 ))
24670 ->values(array(
24671   'lid' => '244',
24672   'translation' => 'Sélectionner le type de contenu Ã  exporter.',
24673   'language' => 'fr',
24674   'plid' => '0',
24675   'plural' => '0',
24676   'i18n_status' => '0',
24677 ))
24678 ->values(array(
24679   'lid' => '245',
24680   'translation' => 'Données exportée',
24681   'language' => 'fr',
24682   'plid' => '0',
24683   'plural' => '0',
24684   'i18n_status' => '0',
24685 ))
24686 ->values(array(
24687   'lid' => '246',
24688   'translation' => "Copiez le texte exporté et collez-le dans le type de contenu de votre choix, Ã  l'aide de la fonction d'import.",
24689   'language' => 'fr',
24690   'plid' => '0',
24691   'plural' => '0',
24692   'i18n_status' => '0',
24693 ))
24694 ->values(array(
24695   'lid' => '247',
24696   'translation' => 'Types de contenu',
24697   'language' => 'fr',
24698   'plid' => '0',
24699   'plural' => '0',
24700   'i18n_status' => '0',
24701 ))
24702 ->values(array(
24703   'lid' => '248',
24704   'translation' => 'Type de contenu',
24705   'language' => 'fr',
24706   'plid' => '0',
24707   'plural' => '0',
24708   'i18n_status' => '0',
24709 ))
24710 ->values(array(
24711   'lid' => '249',
24712   'translation' => 'Séléctionnez le type de contenu dans lequel importer ces champs.<br />Sélectionnez &lt;Créer&gt; pour créer un nouveau type de contenu qui contiendra ces champs.',
24713   'language' => 'fr',
24714   'plid' => '0',
24715   'plural' => '0',
24716   'i18n_status' => '0',
24717 ))
24718 ->values(array(
24719   'lid' => '250',
24720   'translation' => 'Données Ã  importer',
24721   'language' => 'fr',
24722   'plid' => '0',
24723   'plural' => '0',
24724   'i18n_status' => '0',
24725 ))
24726 ->values(array(
24727   'lid' => '251',
24728   'translation' => 'Collez dans ce champ le texte créé par un export de contenu.',
24729   'language' => 'fr',
24730   'plid' => '0',
24731   'plural' => '0',
24732   'i18n_status' => '0',
24733 ))
24734 ->values(array(
24735   'lid' => '252',
24736   'translation' => 'Importer',
24737   'language' => 'fr',
24738   'plid' => '0',
24739   'plural' => '0',
24740   'i18n_status' => '0',
24741 ))
24742 ->values(array(
24743   'lid' => '253',
24744   'translation' => "Un fichier a Ã©té préchargé pour l'import.",
24745   'language' => 'fr',
24746   'plid' => '0',
24747   'plural' => '0',
24748   'i18n_status' => '0',
24749 ))
24750 ->values(array(
24751   'lid' => '254',
24752   'translation' => "Les données d'import ne sont valides.",
24753   'language' => 'fr',
24754   'plid' => '0',
24755   'plural' => '0',
24756   'i18n_status' => '0',
24757 ))
24758 ->values(array(
24759   'lid' => '255',
24760   'translation' => "Les modules suivants doivent Ãªtre activés pour que l'import fonctionne : '%modules'.",
24761   'language' => 'fr',
24762   'plid' => '0',
24763   'plural' => '0',
24764   'i18n_status' => '0',
24765 ))
24766 ->values(array(
24767   'lid' => '256',
24768   'translation' => "Le type de contenu '%type' existe déjà dans cette base de données.",
24769   'language' => 'fr',
24770   'plid' => '0',
24771   'plural' => '0',
24772   'i18n_status' => '0',
24773 ))
24774 ->values(array(
24775   'lid' => '257',
24776   'translation' => "Abandon. L'import n'a pas Ã©té réalisé.",
24777   'language' => 'fr',
24778   'plid' => '0',
24779   'plural' => '0',
24780   'i18n_status' => '0',
24781 ))
24782 ->values(array(
24783   'lid' => '258',
24784   'translation' => "Une erreur s'est produite lors de l'ajout du nouveau type de contenu %type.<br> Veuillez vérifier les erreurs affichées pour plus de détails.",
24785   'language' => 'fr',
24786   'plid' => '0',
24787   'plural' => '0',
24788   'i18n_status' => '0',
24789 ))
24790 ->values(array(
24791   'lid' => '259',
24792   'translation' => "Le champ importé '%field_label' (%field_name) n'a pas Ã©té ajouté Ã  '%type' car ce champ existe déjà.",
24793   'language' => 'fr',
24794   'plid' => '0',
24795   'plural' => '0',
24796   'i18n_status' => '0',
24797 ))
24798 ->values(array(
24799   'lid' => '260',
24800   'translation' => "Le champ importé '%field_label' (%field_name) a Ã©té ajouté au type de contenu '%type'.",
24801   'language' => 'fr',
24802   'plid' => '0',
24803   'plural' => '0',
24804   'i18n_status' => '0',
24805 ))
24806 ->values(array(
24807   'lid' => '261',
24808   'translation' => 'content_copy',
24809   'language' => 'fr',
24810   'plid' => '0',
24811   'plural' => '0',
24812   'i18n_status' => '0',
24813 ))
24814 ->values(array(
24815   'lid' => '262',
24816   'translation' => 'Content Copy',
24817   'language' => 'fr',
24818   'plid' => '0',
24819   'plural' => '0',
24820   'i18n_status' => '0',
24821 ))
24822 ->values(array(
24823   'lid' => '263',
24824   'translation' => "Permet d'importer et d'exporter des définitions de champs.",
24825   'language' => 'fr',
24826   'plid' => '0',
24827   'plural' => '0',
24828   'i18n_status' => '0',
24829 ))
24830 ->values(array(
24831   'lid' => '264',
24832   'translation' => "Les champs d'un groupe Standard sont indépendants les uns des autres, et chacun peut soit avoir une valeur unique, soit des valeurs multiples. Les champs d'un Multigroupe sont traités comme une ensemble répétable de champs Ã  valeurs uniques.",
24833   'language' => 'fr',
24834   'plid' => '0',
24835   'plural' => '0',
24836   'i18n_status' => '0',
24837 ))
24838 ->values(array(
24839   'lid' => '265',
24840   'translation' => 'Multigroupe',
24841   'language' => 'fr',
24842   'plid' => '0',
24843   'plural' => '0',
24844   'i18n_status' => '0',
24845 ))
24846 ->values(array(
24847   'lid' => '266',
24848   'translation' => 'Standard',
24849   'language' => 'fr',
24850   'plid' => '0',
24851   'plural' => '0',
24852   'i18n_status' => '0',
24853 ))
24854 ->values(array(
24855   'lid' => '267',
24856   'translation' => 'Type de groupe.',
24857   'language' => 'fr',
24858   'plid' => '0',
24859   'plural' => '0',
24860   'i18n_status' => '0',
24861 ))
24862 ->values(array(
24863   'lid' => '268',
24864   'translation' => "Le champ %field a Ã©té mis Ã  jour pour l'utilisation de valeurs %multiple, afin de correspondre au paramètre de valeur multipe du Multigroup %group.",
24865   'language' => 'fr',
24866   'plid' => '0',
24867   'plural' => '0',
24868   'i18n_status' => '0',
24869 ))
24870 ->values(array(
24871   'lid' => '269',
24872   'translation' => "Cette modification n'est pas autorisée. Le champ %field possède déjà des valeurs multiples dans la base de données, mais le groupe %group en autorise seulement %group_max. Effectuer cette modification pourrait entraîner la perte de données. ",
24873   'language' => 'fr',
24874   'plid' => '0',
24875   'plural' => '0',
24876   'i18n_status' => '0',
24877 ))
24878 ->values(array(
24879   'lid' => '270',
24880   'translation' => "Cette modification n'est pas autorisée. Le champ %field manipule les valeurs multiples différemment du module Content. Effectuer cette modification pourrait entraîner la perte de données. ",
24881   'language' => 'fr',
24882   'plid' => '0',
24883   'plural' => '0',
24884   'i18n_status' => '0',
24885 ))
24886 ->values(array(
24887   'lid' => '271',
24888   'translation' => "Vous Ãªtes en train d'inclure le champ %field dans un Multigroupe",
24889   'language' => 'fr',
24890   'plid' => '0',
24891   'plural' => '0',
24892   'i18n_status' => '0',
24893 ))
24894 ->values(array(
24895   'lid' => '272',
24896   'translation' => "Cette modification n'est pas autorisée. Le champ %field possède déjà des données créées, et utilise un widget qui stocke les données différemment dans un groupe Standard que dans un Multigroupe. Effectuer ce changement pourrait entraîner la perte de données.",
24897   'language' => 'fr',
24898   'plid' => '0',
24899   'plural' => '0',
24900   'i18n_status' => '0',
24901 ))
24902 ->values(array(
24903   'lid' => '273',
24904   'translation' => "Vous Ãªtes en train de retirer le champ %field d'un Multigroupe",
24905   'language' => 'fr',
24906   'plid' => '0',
24907   'plural' => '0',
24908   'i18n_status' => '0',
24909 ))
24910 ->values(array(
24911   'lid' => '274',
24912   'translation' => 'Simple',
24913   'language' => 'fr',
24914   'plid' => '0',
24915   'plural' => '0',
24916   'i18n_status' => '0',
24917 ))
24918 ->values(array(
24919   'lid' => '275',
24920   'translation' => 'Groupe de champs',
24921   'language' => 'fr',
24922   'plid' => '0',
24923   'plural' => '0',
24924   'i18n_status' => '0',
24925 ))
24926 ->values(array(
24927   'lid' => '276',
24928   'translation' => 'Ligne horizontale',
24929   'language' => 'fr',
24930   'plid' => '0',
24931   'plural' => '0',
24932   'i18n_status' => '0',
24933 ))
24934 ->values(array(
24935   'lid' => '277',
24936   'translation' => 'Tableau - Colonne unique',
24937   'language' => 'fr',
24938   'plid' => '0',
24939   'plural' => '0',
24940   'i18n_status' => '0',
24941 ))
24942 ->values(array(
24943   'lid' => '278',
24944   'translation' => 'Tableau - Colonnes multiples',
24945   'language' => 'fr',
24946   'plid' => '0',
24947   'plural' => '0',
24948   'i18n_status' => '0',
24949 ))
24950 ->values(array(
24951   'lid' => '279',
24952   'translation' => '[Format du sous-groupe]',
24953   'language' => 'fr',
24954   'plid' => '0',
24955   'plural' => '0',
24956   'i18n_status' => '0',
24957 ))
24958 ->values(array(
24959   'lid' => '280',
24960   'translation' => 'Paramètres multigroupe',
24961   'language' => 'fr',
24962   'plid' => '0',
24963   'plural' => '0',
24964   'i18n_status' => '0',
24965 ))
24966 ->values(array(
24967   'lid' => '281',
24968   'translation' => 'Colonnes multiples',
24969   'language' => 'fr',
24970   'plid' => '0',
24971   'plural' => '0',
24972   'i18n_status' => '0',
24973 ))
24974 ->values(array(
24975   'lid' => '282',
24976   'translation' => "Activez cette option pour rendre chaque champs dans une colonne disctincte sur le formulaire d'édition de noeud.",
24977   'language' => 'fr',
24978   'plid' => '0',
24979   'plural' => '0',
24980   'i18n_status' => '0',
24981 ))
24982 ->values(array(
24983   'lid' => '283',
24984   'translation' => "Activez cette option pour rendre obligatoire un minimum d'une collection de champs dans ce Multigroupe.",
24985   'language' => 'fr',
24986   'plid' => '0',
24987   'plural' => '0',
24988   'i18n_status' => '0',
24989 ))
24990 ->values(array(
24991   'lid' => '284',
24992   'translation' => "Nombre de fois où répéter l'ensemble Multigroupe de champs.",
24993   'language' => 'fr',
24994   'plid' => '0',
24995   'plural' => '0',
24996   'i18n_status' => '0',
24997 ))
24998 ->values(array(
24999   'lid' => '285',
25000   'translation' => "'Illimité' fournira un bouton 'Ajouter plus' pour que les utilisateurs puissent ajouter des Ã©léments autant de fois qu'ils le souhaitent.",
25001   'language' => 'fr',
25002   'plid' => '0',
25003   'plural' => '0',
25004   'i18n_status' => '0',
25005 ))
25006 ->values(array(
25007   'lid' => '286',
25008   'translation' => 'Tous les champs de ce groupe seront automatiquement paramétrés pour autoriser ce nombre de valeurs.',
25009   'language' => 'fr',
25010   'plid' => '0',
25011   'plural' => '0',
25012   'i18n_status' => '0',
25013 ))
25014 ->values(array(
25015   'lid' => '287',
25016   'translation' => 'Nombre de répétitions',
25017   'language' => 'fr',
25018   'plid' => '0',
25019   'plural' => '0',
25020   'i18n_status' => '0',
25021 ))
25022 ->values(array(
25023   'lid' => '288',
25024   'translation' => 'Etiquettes',
25025   'language' => 'fr',
25026   'plid' => '0',
25027   'plural' => '0',
25028   'i18n_status' => '0',
25029 ))
25030 ->values(array(
25031   'lid' => '289',
25032   'translation' => "Etiquettes pour chaque sous-groupe de champs. Les Ã©tiquettes peuvent Ãªtre cachées ou affichées dans des contextes divers en utilisant l'écran 'Afficher les champs'.",
25033   'language' => 'fr',
25034   'plid' => '0',
25035   'plural' => '0',
25036   'i18n_status' => '0',
25037 ))
25038 ->values(array(
25039   'lid' => '290',
25040   'translation' => 'Etiquette du sous-groupe %number',
25041   'language' => 'fr',
25042   'plid' => '0',
25043   'plural' => '0',
25044   'i18n_status' => '0',
25045 ))
25046 ->values(array(
25047   'lid' => '291',
25048   'translation' => 'Le champ %field dans ce groupe possède déjà %multiple valeurs dans la base de données. Pour Ã©viter la perte de données, vous ne pouvez définir le nombre de valeurs du Multigroupe Ã  une valeur inférieure.',
25049   'language' => 'fr',
25050   'plid' => '0',
25051   'plural' => '0',
25052   'i18n_status' => '0',
25053 ))
25054 ->values(array(
25055   'lid' => '292',
25056   'translation' => 'Le champ !name est obligatoire dans le groupe @group.',
25057   'language' => 'fr',
25058   'plid' => '0',
25059   'plural' => '0',
25060   'i18n_status' => '0',
25061 ))
25062 ->values(array(
25063   'lid' => '293',
25064   'translation' => 'Le groupe @name requiert au minimum un groupe de champs.',
25065   'language' => 'fr',
25066   'plid' => '0',
25067   'plural' => '0',
25068   'i18n_status' => '0',
25069 ))
25070 ->values(array(
25071   'lid' => '294',
25072   'translation' => 'Ajouter plus de valeurs',
25073   'language' => 'fr',
25074   'plid' => '0',
25075   'plural' => '0',
25076   'i18n_status' => '0',
25077 ))
25078 ->values(array(
25079   'lid' => '295',
25080   'translation' => 'content_multigroup',
25081   'language' => 'fr',
25082   'plid' => '0',
25083   'plural' => '0',
25084   'i18n_status' => '0',
25085 ))
25086 ->values(array(
25087   'lid' => '296',
25088   'translation' => 'Contenu Multigroupe',
25089   'language' => 'fr',
25090   'plid' => '0',
25091   'plural' => '0',
25092   'i18n_status' => '0',
25093 ))
25094 ->values(array(
25095   'lid' => '297',
25096   'translation' => "Combinez de multiples champs CCK au sein de collections de champs qui fonctionnent Ã  l'unisson.",
25097   'language' => 'fr',
25098   'plid' => '0',
25099   'plural' => '0',
25100   'i18n_status' => '0',
25101 ))
25102 ->values(array(
25103   'lid' => '298',
25104   'translation' => 'éditer',
25105   'language' => 'fr',
25106   'plid' => '0',
25107   'plural' => '0',
25108   'i18n_status' => '0',
25109 ))
25110 ->values(array(
25111   'lid' => '299',
25112   'translation' => 'field_name',
25113   'language' => 'fr',
25114   'plid' => '0',
25115   'plural' => '0',
25116   'i18n_status' => '0',
25117 ))
25118 ->values(array(
25119   'lid' => '300',
25120   'translation' => 'voir',
25121   'language' => 'fr',
25122   'plid' => '0',
25123   'plural' => '0',
25124   'i18n_status' => '0',
25125 ))
25126 ->values(array(
25127   'lid' => '301',
25128   'translation' => 'content_permissions',
25129   'language' => 'fr',
25130   'plid' => '0',
25131   'plural' => '0',
25132   'i18n_status' => '0',
25133 ))
25134 ->values(array(
25135   'lid' => '302',
25136   'translation' => 'Veuillez <a href="!url">configurer vos permissions sur les champs</a> immédiatement. Tous les champs sont inaccessibles par défaut.',
25137   'language' => 'fr',
25138   'plid' => '0',
25139   'plural' => '0',
25140   'i18n_status' => '0',
25141 ))
25142 ->values(array(
25143   'lid' => '303',
25144   'translation' => 'Permissions sur les Contenus',
25145   'language' => 'fr',
25146   'plid' => '0',
25147   'plural' => '0',
25148   'i18n_status' => '0',
25149 ))
25150 ->values(array(
25151   'lid' => '304',
25152   'translation' => 'Définit un niveau de permission par champ pour les champs CCK.',
25153   'language' => 'fr',
25154   'plid' => '0',
25155   'plural' => '0',
25156   'i18n_status' => '0',
25157 ))
25158 ->values(array(
25159   'lid' => '305',
25160   'translation' => 'Contenu du groupe de champ',
25161   'language' => 'fr',
25162   'plid' => '0',
25163   'plural' => '0',
25164   'i18n_status' => '0',
25165 ))
25166 ->values(array(
25167   'lid' => '306',
25168   'translation' => "Tous les champs d'un groupe de champs sur le node référencé.",
25169   'language' => 'fr',
25170   'plid' => '0',
25171   'plural' => '0',
25172   'i18n_status' => '0',
25173 ))
25174 ->values(array(
25175   'lid' => '307',
25176   'translation' => '@group_label (@group_type_name)',
25177   'language' => 'fr',
25178   'plid' => '0',
25179   'plural' => '0',
25180   'i18n_status' => '0',
25181 ))
25182 ->values(array(
25183   'lid' => '308',
25184   'translation' => 'Fieldgroup',
25185   'language' => 'fr',
25186   'plid' => '0',
25187   'plural' => '0',
25188   'i18n_status' => '0',
25189 ))
25190 ->values(array(
25191   'lid' => '309',
25192   'translation' => "Texte Ã  afficher si un groupe n'a pas de données. Notez que le titre ne s'affichera pas sauf s'il est surclassé.",
25193   'language' => 'fr',
25194   'plid' => '0',
25195   'plural' => '0',
25196   'i18n_status' => '0',
25197 ))
25198 ->values(array(
25199   'lid' => '310',
25200   'translation' => '"@s" groupe de champs @name',
25201   'language' => 'fr',
25202   'plid' => '0',
25203   'plural' => '0',
25204   'i18n_status' => '0',
25205 ))
25206 ->values(array(
25207   'lid' => '311',
25208   'translation' => 'Paramètres du formulaire',
25209   'language' => 'fr',
25210   'plid' => '0',
25211   'plural' => '0',
25212   'i18n_status' => '0',
25213 ))
25214 ->values(array(
25215   'lid' => '312',
25216   'translation' => "Ces paramètres s'appliquent au groupe dans le formulaire d'édition de nÅ“ud.",
25217   'language' => 'fr',
25218   'plid' => '0',
25219   'plural' => '0',
25220   'i18n_status' => '0',
25221 ))
25222 ->values(array(
25223   'lid' => '313',
25224   'translation' => 'Style',
25225   'language' => 'fr',
25226   'plid' => '0',
25227   'plural' => '0',
25228   'i18n_status' => '0',
25229 ))
25230 ->values(array(
25231   'lid' => '314',
25232   'translation' => 'toujours déplié',
25233   'language' => 'fr',
25234   'plid' => '0',
25235   'plural' => '0',
25236   'i18n_status' => '0',
25237 ))
25238 ->values(array(
25239   'lid' => '315',
25240   'translation' => 'repliable',
25241   'language' => 'fr',
25242   'plid' => '0',
25243   'plural' => '0',
25244   'i18n_status' => '0',
25245 ))
25246 ->values(array(
25247   'lid' => '316',
25248   'translation' => 'replié',
25249   'language' => 'fr',
25250   'plid' => '0',
25251   'plural' => '0',
25252   'i18n_status' => '0',
25253 ))
25254 ->values(array(
25255   'lid' => '317',
25256   'translation' => "Instructions Ã  présenter Ã  l'utilisateur dans le formulaire d'édition.",
25257   'language' => 'fr',
25258   'plid' => '0',
25259   'plural' => '0',
25260   'i18n_status' => '0',
25261 ))
25262 ->values(array(
25263   'lid' => '318',
25264   'translation' => "Paramètres d'affichage",
25265   'language' => 'fr',
25266   'plid' => '0',
25267   'plural' => '0',
25268   'i18n_status' => '0',
25269 ))
25270 ->values(array(
25271   'lid' => '319',
25272   'translation' => "Ces paramètres s'appliquent au groupe Ã  l'affichage du nÅ“ud.",
25273   'language' => 'fr',
25274   'plid' => '0',
25275   'plural' => '0',
25276   'i18n_status' => '0',
25277 ))
25278 ->values(array(
25279   'lid' => '320',
25280   'translation' => 'Description du groupe.',
25281   'language' => 'fr',
25282   'plid' => '0',
25283   'plural' => '0',
25284   'i18n_status' => '0',
25285 ))
25286 ->values(array(
25287   'lid' => '321',
25288   'translation' => "Êtes-vous sûr(e) de vouloir supprimer le groupe '%label' ?",
25289   'language' => 'fr',
25290   'plid' => '0',
25291   'plural' => '0',
25292   'i18n_status' => '0',
25293 ))
25294 ->values(array(
25295   'lid' => '322',
25296   'translation' => 'Cette action est irréversible.',
25297   'language' => 'fr',
25298   'plid' => '0',
25299   'plural' => '0',
25300   'i18n_status' => '0',
25301 ))
25302 ->values(array(
25303   'lid' => '323',
25304   'translation' => "Le groupe '%group_name' a Ã©té supprimé.",
25305   'language' => 'fr',
25306   'plid' => '0',
25307   'plural' => '0',
25308   'i18n_status' => '0',
25309 ))
25310 ->values(array(
25311   'lid' => '324',
25312   'translation' => 'aucun',
25313   'language' => 'fr',
25314   'plid' => '0',
25315   'plural' => '0',
25316   'i18n_status' => '0',
25317 ))
25318 ->values(array(
25319   'lid' => '325',
25320   'translation' => 'Vous devez fournir une Ã©tiquette.',
25321   'language' => 'fr',
25322   'plid' => '0',
25323   'plural' => '0',
25324   'i18n_status' => '0',
25325 ))
25326 ->values(array(
25327   'lid' => '326',
25328   'translation' => 'Vous devez fournir un nom de groupe',
25329   'language' => 'fr',
25330   'plid' => '0',
25331   'plural' => '0',
25332   'i18n_status' => '0',
25333 ))
25334 ->values(array(
25335   'lid' => '327',
25336   'translation' => "Le nom de groupe %group_name n'est pas valide. Le nom ne doit contenir que des lettres sans accents, des nombres, et des underscores.",
25337   'language' => 'fr',
25338   'plid' => '0',
25339   'plural' => '0',
25340   'i18n_status' => '0',
25341 ))
25342 ->values(array(
25343   'lid' => '328',
25344   'translation' => "Le nom de groupe %group_name est trop long. Le nom est limité Ã  32 caractères, le préfixe 'group_' compris.",
25345   'language' => 'fr',
25346   'plid' => '0',
25347   'plural' => '0',
25348   'i18n_status' => '0',
25349 ))
25350 ->values(array(
25351   'lid' => '329',
25352   'translation' => 'Le nom de groupe %group_name existe déjà.',
25353   'language' => 'fr',
25354   'plid' => '0',
25355   'plural' => '0',
25356   'i18n_status' => '0',
25357 ))
25358 ->values(array(
25359   'lid' => '330',
25360   'translation' => 'Ajouter un nouveau groupe :',
25361   'language' => 'fr',
25362   'plid' => '0',
25363   'plural' => '0',
25364   'i18n_status' => '0',
25365 ))
25366 ->values(array(
25367   'lid' => '331',
25368   'translation' => 'Ajouter un nouveau groupe : vous devez fournir une Ã©tiquette.',
25369   'language' => 'fr',
25370   'plid' => '0',
25371   'plural' => '0',
25372   'i18n_status' => '0',
25373 ))
25374 ->values(array(
25375   'lid' => '332',
25376   'translation' => 'Ajouter un nouveau groupe : vous devez fournir un nom de groupe.',
25377   'language' => 'fr',
25378   'plid' => '0',
25379   'plural' => '0',
25380   'i18n_status' => '0',
25381 ))
25382 ->values(array(
25383   'lid' => '333',
25384   'translation' => 'Groupe standard',
25385   'language' => 'fr',
25386   'plid' => '0',
25387   'plural' => '0',
25388   'i18n_status' => '0',
25389 ))
25390 ->values(array(
25391   'lid' => '334',
25392   'translation' => 'Éditer le groupe',
25393   'language' => 'fr',
25394   'plid' => '0',
25395   'plural' => '0',
25396   'i18n_status' => '0',
25397 ))
25398 ->values(array(
25399   'lid' => '335',
25400   'translation' => 'fieldgroup',
25401   'language' => 'fr',
25402   'plid' => '0',
25403   'plural' => '0',
25404   'i18n_status' => '0',
25405 ))
25406 ->values(array(
25407   'lid' => '336',
25408   'translation' => "Créée des groupes d'affichage pour les champs CCK.",
25409   'language' => 'fr',
25410   'plid' => '0',
25411   'plural' => '0',
25412   'i18n_status' => '0',
25413 ))
25414 ->values(array(
25415   'lid' => '337',
25416   'translation' => 'Charge un noeud référencé',
25417   'language' => 'fr',
25418   'plid' => '0',
25419   'plural' => '0',
25420   'i18n_status' => '0',
25421 ))
25422 ->values(array(
25423   'lid' => '338',
25424   'translation' => 'Contenu contenant le champ node reference',
25425   'language' => 'fr',
25426   'plid' => '0',
25427   'plural' => '0',
25428   'i18n_status' => '0',
25429 ))
25430 ->values(array(
25431   'lid' => '339',
25432   'translation' => 'Contenu référencé',
25433   'language' => 'fr',
25434   'plid' => '0',
25435   'plural' => '0',
25436   'i18n_status' => '0',
25437 ))
25438 ->values(array(
25439   'lid' => '340',
25440   'translation' => 'Notez que si le champs possède des valeurs multiples, seul le premier contenu sera chargé.',
25441   'language' => 'fr',
25442   'plid' => '0',
25443   'plural' => '0',
25444   'i18n_status' => '0',
25445 ))
25446 ->values(array(
25447   'lid' => '341',
25448   'translation' => "Il n'y a aucun champ  nodereference défini.",
25449   'language' => 'fr',
25450   'plid' => '0',
25451   'plural' => '0',
25452   'i18n_status' => '0',
25453 ))
25454 ->values(array(
25455   'lid' => '342',
25456   'translation' => 'Node référence',
25457   'language' => 'fr',
25458   'plid' => '0',
25459   'plural' => '0',
25460   'i18n_status' => '0',
25461 ))
25462 ->values(array(
25463   'lid' => '343',
25464   'translation' => "Stocker l'ID du noeud lié en tant que valeur entière.",
25465   'language' => 'fr',
25466   'plid' => '0',
25467   'plural' => '0',
25468   'i18n_status' => '0',
25469 ))
25470 ->values(array(
25471   'lid' => '344',
25472   'translation' => 'Types de contenu pouvant Ãªtre référencés',
25473   'language' => 'fr',
25474   'plid' => '0',
25475   'plural' => '0',
25476   'i18n_status' => '0',
25477 ))
25478 ->values(array(
25479   'lid' => '345',
25480   'translation' => 'Vues par défaut',
25481   'language' => 'fr',
25482   'plid' => '0',
25483   'plural' => '0',
25484   'i18n_status' => '0',
25485 ))
25486 ->values(array(
25487   'lid' => '346',
25488   'translation' => 'Vues Ã©xistantes',
25489   'language' => 'fr',
25490   'plid' => '0',
25491   'plural' => '0',
25492   'i18n_status' => '0',
25493 ))
25494 ->values(array(
25495   'lid' => '347',
25496   'translation' => 'Avancé - NÅ“uds pouvant Ãªtre référencés (Vue)',
25497   'language' => 'fr',
25498   'plid' => '0',
25499   'plural' => '0',
25500   'i18n_status' => '0',
25501 ))
25502 ->values(array(
25503   'lid' => '348',
25504   'translation' => 'Vue utilisée pour sélectionner les noeuds',
25505   'language' => 'fr',
25506   'plid' => '0',
25507   'plural' => '0',
25508   'i18n_status' => '0',
25509 ))
25510 ->values(array(
25511   'lid' => '349',
25512   'translation' => '<p>Choisissez la vue du "module Views" qui sélectionne les noeuds pouvant Ãªtre référencés.<br />Note :</p>',
25513   'language' => 'fr',
25514   'plid' => '0',
25515   'plural' => '0',
25516   'i18n_status' => '0',
25517 ))
25518 ->values(array(
25519   'lid' => '350',
25520   'translation' => "<ul><li>Seules les vues qui possèdent des champs fonctionneront Ã  cet effet.</li><li>Ceci annulera les paramètres \"Types de contenu\" ci-dessus. Utilisez la section \"filtres\" de la vue Ã  la place.</li><li>Utilisez la section \"champs\" de la vue pour afficher des informations supplémentaires Ã  propos des noeuds candidats sur le formulaire de création/édition.</li><li>Utilisez la section \"critère de tri\" de la vue pour déterminer l'ordre dans lequel les noeuds candidats seront affichés.</li></ul>",
25521   'language' => 'fr',
25522   'plid' => '0',
25523   'plural' => '0',
25524   'i18n_status' => '0',
25525 ))
25526 ->values(array(
25527   'lid' => '351',
25528   'translation' => 'Arguments de la vue',
25529   'language' => 'fr',
25530   'plid' => '0',
25531   'plural' => '0',
25532   'i18n_status' => '0',
25533 ))
25534 ->values(array(
25535   'lid' => '352',
25536   'translation' => "Fournit une liste d'arguments, séparés par des virgules, Ã  transmettre Ã  la vue.",
25537   'language' => 'fr',
25538   'plid' => '0',
25539   'plural' => '0',
25540   'i18n_status' => '0',
25541 ))
25542 ->values(array(
25543   'lid' => '353',
25544   'translation' => "<p>La liste des noeuds pouvant Ãªtre référencés peut s'appuyer sur une vue du \"module Views\" mais aucune vue appropriée n'a Ã©té trouvée. <br />Note :</p>",
25545   'language' => 'fr',
25546   'plid' => '0',
25547   'plural' => '0',
25548   'i18n_status' => '0',
25549 ))
25550 ->values(array(
25551   'lid' => '354',
25552   'translation' => '%name : saisie non valide.',
25553   'language' => 'fr',
25554   'plid' => '0',
25555   'plural' => '0',
25556   'i18n_status' => '0',
25557 ))
25558 ->values(array(
25559   'lid' => '355',
25560   'translation' => '%name : ce contenu ne peut Ãªtre référencé.',
25561   'language' => 'fr',
25562   'plid' => '0',
25563   'plural' => '0',
25564   'i18n_status' => '0',
25565 ))
25566 ->values(array(
25567   'lid' => '356',
25568   'translation' => 'Titre (avec lien)',
25569   'language' => 'fr',
25570   'plid' => '0',
25571   'plural' => '0',
25572   'i18n_status' => '0',
25573 ))
25574 ->values(array(
25575   'lid' => '357',
25576   'translation' => 'Titre (sans lien)',
25577   'language' => 'fr',
25578   'plid' => '0',
25579   'plural' => '0',
25580   'i18n_status' => '0',
25581 ))
25582 ->values(array(
25583   'lid' => '358',
25584   'translation' => 'Liste de sélection',
25585   'language' => 'fr',
25586   'plid' => '0',
25587   'plural' => '0',
25588   'i18n_status' => '0',
25589 ))
25590 ->values(array(
25591   'lid' => '359',
25592   'translation' => 'Cases Ã  cocher/boutons radio',
25593   'language' => 'fr',
25594   'plid' => '0',
25595   'plural' => '0',
25596   'i18n_status' => '0',
25597 ))
25598 ->values(array(
25599   'lid' => '360',
25600   'translation' => 'Champ texte Ã  auto-complètement',
25601   'language' => 'fr',
25602   'plid' => '0',
25603   'plural' => '0',
25604   'i18n_status' => '0',
25605 ))
25606 ->values(array(
25607   'lid' => '361',
25608   'translation' => "Correspondance de l'autocomplétion",
25609   'language' => 'fr',
25610   'plid' => '0',
25611   'plural' => '0',
25612   'i18n_status' => '0',
25613 ))
25614 ->values(array(
25615   'lid' => '362',
25616   'translation' => 'Commence par',
25617   'language' => 'fr',
25618   'plid' => '0',
25619   'plural' => '0',
25620   'i18n_status' => '0',
25621 ))
25622 ->values(array(
25623   'lid' => '363',
25624   'translation' => 'Contient',
25625   'language' => 'fr',
25626   'plid' => '0',
25627   'plural' => '0',
25628   'i18n_status' => '0',
25629 ))
25630 ->values(array(
25631   'lid' => '364',
25632   'translation' => "Séléctionnez la méthode utilisée pour collecter les suggestions de l'autocomplétion. Notez que <em>Contient</em> peut engendrer des problèmes de performances sur des sites avec des milliers de noeuds",
25633   'language' => 'fr',
25634   'plid' => '0',
25635   'plural' => '0',
25636   'i18n_status' => '0',
25637 ))
25638 ->values(array(
25639   'lid' => '365',
25640   'translation' => '%name : différence de titre. Veuillez vérifier votre sélection.',
25641   'language' => 'fr',
25642   'plid' => '0',
25643   'plural' => '0',
25644   'i18n_status' => '0',
25645 ))
25646 ->values(array(
25647   'lid' => '366',
25648   'translation' => "%name : aucun contenu valide n'a Ã©té trouvé pour ce titre.",
25649   'language' => 'fr',
25650   'plid' => '0',
25651   'plural' => '0',
25652   'i18n_status' => '0',
25653 ))
25654 ->values(array(
25655   'lid' => '367',
25656   'translation' => 'Autocomplétion de nodereference',
25657   'language' => 'fr',
25658   'plid' => '0',
25659   'plural' => '0',
25660   'i18n_status' => '0',
25661 ))
25662 ->values(array(
25663   'lid' => '368',
25664   'translation' => 'nodereference',
25665   'language' => 'fr',
25666   'plid' => '0',
25667   'plural' => '0',
25668   'i18n_status' => '0',
25669 ))
25670 ->values(array(
25671   'lid' => '369',
25672   'translation' => 'Node Reference',
25673   'language' => 'fr',
25674   'plid' => '0',
25675   'plural' => '0',
25676   'i18n_status' => '0',
25677 ))
25678 ->values(array(
25679   'lid' => '370',
25680   'translation' => 'Définit un type de champ pour référencer un noeud depuis un autre noeud.',
25681   'language' => 'fr',
25682   'plid' => '0',
25683   'plural' => '0',
25684   'i18n_status' => '0',
25685 ))
25686 ->values(array(
25687   'lid' => '371',
25688   'translation' => 'Entier',
25689   'language' => 'fr',
25690   'plid' => '0',
25691   'plural' => '0',
25692   'i18n_status' => '0',
25693 ))
25694 ->values(array(
25695   'lid' => '372',
25696   'translation' => 'Stocke un nombre dans la base de données en format entier.',
25697   'language' => 'fr',
25698   'plid' => '0',
25699   'plural' => '0',
25700   'i18n_status' => '0',
25701 ))
25702 ->values(array(
25703   'lid' => '373',
25704   'translation' => 'Décimal',
25705   'language' => 'fr',
25706   'plid' => '0',
25707   'plural' => '0',
25708   'i18n_status' => '0',
25709 ))
25710 ->values(array(
25711   'lid' => '374',
25712   'translation' => 'Stocke un nombre dans la base de données en format décimal fixe.',
25713   'language' => 'fr',
25714   'plid' => '0',
25715   'plural' => '0',
25716   'i18n_status' => '0',
25717 ))
25718 ->values(array(
25719   'lid' => '375',
25720   'translation' => 'Réel (Float)',
25721   'language' => 'fr',
25722   'plid' => '0',
25723   'plural' => '0',
25724   'i18n_status' => '0',
25725 ))
25726 ->values(array(
25727   'lid' => '376',
25728   'translation' => 'Stocke un nombre dans la base de données en format réel.',
25729   'language' => 'fr',
25730   'plid' => '0',
25731   'plural' => '0',
25732   'i18n_status' => '0',
25733 ))
25734 ->values(array(
25735   'lid' => '377',
25736   'translation' => 'Minimum',
25737   'language' => 'fr',
25738   'plid' => '0',
25739   'plural' => '0',
25740   'i18n_status' => '0',
25741 ))
25742 ->values(array(
25743   'lid' => '378',
25744   'translation' => 'Maximum',
25745   'language' => 'fr',
25746   'plid' => '0',
25747   'plural' => '0',
25748   'i18n_status' => '0',
25749 ))
25750 ->values(array(
25751   'lid' => '379',
25752   'translation' => 'Précision',
25753   'language' => 'fr',
25754   'plid' => '0',
25755   'plural' => '0',
25756   'i18n_status' => '0',
25757 ))
25758 ->values(array(
25759   'lid' => '380',
25760   'translation' => 'Le nombre total de chiffres Ã  stocker dans la base de données, en incluant ceux Ã  droite de la virgule.',
25761   'language' => 'fr',
25762   'plid' => '0',
25763   'plural' => '0',
25764   'i18n_status' => '0',
25765 ))
25766 ->values(array(
25767   'lid' => '381',
25768   'translation' => 'Echelle',
25769   'language' => 'fr',
25770   'plid' => '0',
25771   'plural' => '0',
25772   'i18n_status' => '0',
25773 ))
25774 ->values(array(
25775   'lid' => '382',
25776   'translation' => 'Le nombre de chiffres Ã  droite de la virgule',
25777   'language' => 'fr',
25778   'plid' => '0',
25779   'plural' => '0',
25780   'i18n_status' => '0',
25781 ))
25782 ->values(array(
25783   'lid' => '383',
25784   'translation' => 'Séparateur de décimales',
25785   'language' => 'fr',
25786   'plid' => '0',
25787   'plural' => '0',
25788   'i18n_status' => '0',
25789 ))
25790 ->values(array(
25791   'lid' => '384',
25792   'translation' => 'Le caractère que les utilisateurs saisiront pour séparer les décimales dans les formulaires.',
25793   'language' => 'fr',
25794   'plid' => '0',
25795   'plural' => '0',
25796   'i18n_status' => '0',
25797 ))
25798 ->values(array(
25799   'lid' => '385',
25800   'translation' => 'Préfixe',
25801   'language' => 'fr',
25802   'plid' => '0',
25803   'plural' => '0',
25804   'i18n_status' => '0',
25805 ))
25806 ->values(array(
25807   'lid' => '386',
25808   'translation' => 'Définissez une chaîne de caractères Ã  utiliser pour préfixer la valeur, par exemple $ ou â‚¬. Laissez vide pour ne rien afficher de plus. Séparez les valeurs singulier et pluriel par une barre verticale (euro|euros).',
25809   'language' => 'fr',
25810   'plid' => '0',
25811   'plural' => '0',
25812   'i18n_status' => '0',
25813 ))
25814 ->values(array(
25815   'lid' => '387',
25816   'translation' => 'Suffixe',
25817   'language' => 'fr',
25818   'plid' => '0',
25819   'plural' => '0',
25820   'i18n_status' => '0',
25821 ))
25822 ->values(array(
25823   'lid' => '388',
25824   'translation' => 'Définissez une chaîne qui sera ajoutée en suffixe Ã  la valeur, comme m², m/s², kb/s. Laisser vide pour aucun suffixe. Séparez les singulier et pluriel avec un pipe (mètre|mètres).',
25825   'language' => 'fr',
25826   'plid' => '0',
25827   'plural' => '0',
25828   'i18n_status' => '0',
25829 ))
25830 ->values(array(
25831   'lid' => '389',
25832   'translation' => 'Valeurs autorisées',
25833   'language' => 'fr',
25834   'plid' => '0',
25835   'plural' => '0',
25836   'i18n_status' => '0',
25837 ))
25838 ->values(array(
25839   'lid' => '390',
25840   'translation' => 'Liste des valeurs autorisées',
25841   'language' => 'fr',
25842   'plid' => '0',
25843   'plural' => '0',
25844   'i18n_status' => '0',
25845 ))
25846 ->values(array(
25847   'lid' => '391',
25848   'translation' => "Les valeurs possibles que ce champ peut contenir. Entrez une valeur par ligne, sous la forme clé|étiquette. La clé est une valeur qui sera stocker dans la base de données, elle doit correspondre au type de champ défini (%type). L'étiquette est optionnelle, si elle n'est pas précisée, la clé sera utilisée Ã©galement comme Ã©tiquette.<br />Balises HTML autorisées : @tags",
25849   'language' => 'fr',
25850   'plid' => '0',
25851   'plural' => '0',
25852   'i18n_status' => '0',
25853 ))
25854 ->values(array(
25855   'lid' => '392',
25856   'translation' => 'Pour usage avancé seulement : code PHP fournissant un tableau par clé des valeurs autorisées. Ne doit pas inclure les délimiteurs &lt;?php ?&gt;. Si ce champ est rempli, le tableau renvoyé par le code prendra le pas sur la liste des valeurs autorisées apparaissant ci-dessus.',
25857   'language' => 'fr',
25858   'plid' => '0',
25859   'plural' => '0',
25860   'i18n_status' => '0',
25861 ))
25862 ->values(array(
25863   'lid' => '393',
25864   'translation' => 'Ce code PHP a Ã©té saisi par un administrateur et supplantera la liste des valeurs permises ci-dessus.',
25865   'language' => 'fr',
25866   'plid' => '0',
25867   'plural' => '0',
25868   'i18n_status' => '0',
25869 ))
25870 ->values(array(
25871   'lid' => '394',
25872   'translation' => '@label (!name) - Valeurs autorisées',
25873   'language' => 'fr',
25874   'plid' => '0',
25875   'plural' => '0',
25876   'i18n_status' => '0',
25877 ))
25878 ->values(array(
25879   'lid' => '395',
25880   'translation' => '"Minimum" doit Ãªtre un nombre.',
25881   'language' => 'fr',
25882   'plid' => '0',
25883   'plural' => '0',
25884   'i18n_status' => '0',
25885 ))
25886 ->values(array(
25887   'lid' => '396',
25888   'translation' => '"Maximum" doit Ãªtre un nombre.',
25889   'language' => 'fr',
25890   'plid' => '0',
25891   'plural' => '0',
25892   'i18n_status' => '0',
25893 ))
25894 ->values(array(
25895   'lid' => '397',
25896   'translation' => '%name : la valeur ne peut Ãªtre inférieure Ã  %min.',
25897   'language' => 'fr',
25898   'plid' => '0',
25899   'plural' => '0',
25900   'i18n_status' => '0',
25901 ))
25902 ->values(array(
25903   'lid' => '398',
25904   'translation' => '%name : la valeur ne peut Ãªtre supérieure Ã  %max.',
25905   'language' => 'fr',
25906   'plid' => '0',
25907   'plural' => '0',
25908   'i18n_status' => '0',
25909 ))
25910 ->values(array(
25911   'lid' => '399',
25912   'translation' => '%name : valeur illégale.',
25913   'language' => 'fr',
25914   'plid' => '0',
25915   'plural' => '0',
25916   'i18n_status' => '0',
25917 ))
25918 ->values(array(
25919   'lid' => '400',
25920   'translation' => 'non mis en forme',
25921   'language' => 'fr',
25922   'plid' => '0',
25923   'plural' => '0',
25924   'i18n_status' => '0',
25925 ))
25926 ->values(array(
25927   'lid' => '401',
25928   'translation' => 'Champ texte',
25929   'language' => 'fr',
25930   'plid' => '0',
25931   'plural' => '0',
25932   'i18n_status' => '0',
25933 ))
25934 ->values(array(
25935   'lid' => '402',
25936   'translation' => 'Seuls les nombres et les décimaux sont autorisés dans %field.',
25937   'language' => 'fr',
25938   'plid' => '0',
25939   'plural' => '0',
25940   'i18n_status' => '0',
25941 ))
25942 ->values(array(
25943   'lid' => '403',
25944   'translation' => 'Seuls les nombres sont autorisés dans %field.',
25945   'language' => 'fr',
25946   'plid' => '0',
25947   'plural' => '0',
25948   'i18n_status' => '0',
25949 ))
25950 ->values(array(
25951   'lid' => '404',
25952   'translation' => 'Seuls les nombres et le caractère décimal (%decimal) sont autorisés dans %field.',
25953   'language' => 'fr',
25954   'plid' => '0',
25955   'plural' => '0',
25956   'i18n_status' => '0',
25957 ))
25958 ->values(array(
25959   'lid' => '405',
25960   'translation' => 'nombre',
25961   'language' => 'fr',
25962   'plid' => '0',
25963   'plural' => '0',
25964   'i18n_status' => '0',
25965 ))
25966 ->values(array(
25967   'lid' => '406',
25968   'translation' => 'Nombre',
25969   'language' => 'fr',
25970   'plid' => '0',
25971   'plural' => '0',
25972   'i18n_status' => '0',
25973 ))
25974 ->values(array(
25975   'lid' => '407',
25976   'translation' => 'Définit des types de champs numériques.',
25977   'language' => 'fr',
25978   'plid' => '0',
25979   'plural' => '0',
25980   'i18n_status' => '0',
25981 ))
25982 ->values(array(
25983   'lid' => '408',
25984   'translation' => "Créez une liste d'options en tant que liste dans la <strong>Liste des valeurs autorisées</strong>, ou en tant que tableau en code PHP. Ces valeurs seront les mêmes pour le champ %field au sein de tous les types de contenu.",
25985   'language' => 'fr',
25986   'plid' => '0',
25987   'plural' => '0',
25988   'i18n_status' => '0',
25989 ))
25990 ->values(array(
25991   'lid' => '409',
25992   'translation' => "Pour un widget 'case Ã  cocher oui/non', définissez la valeur 'non' en premier, puis la valeur 'oui', dans la section <strong>Valeurs autorisées</strong>. Notez que la case Ã  cocher sera Ã©tiquetée avec l'étiquette de la valeur du 'oui'.",
25993   'language' => 'fr',
25994   'plid' => '0',
25995   'plural' => '0',
25996   'i18n_status' => '0',
25997 ))
25998 ->values(array(
25999   'lid' => '410',
26000   'translation' => "Le widget 'cases Ã  cocher/boutons radio' affichera des cases Ã  cocher si l'option valeurs multiples est sélectionnées pour ce champ, autrement, des boutons radio seront affichés.",
26001   'language' => 'fr',
26002   'plid' => '0',
26003   'plural' => '0',
26004   'i18n_status' => '0',
26005 ))
26006 ->values(array(
26007   'lid' => '411',
26008   'translation' => "Vous devez préciser les 'valeurs autorisées' pour ce champ.",
26009   'language' => 'fr',
26010   'plid' => '0',
26011   'plural' => '0',
26012   'i18n_status' => '0',
26013 ))
26014 ->values(array(
26015   'lid' => '412',
26016   'translation' => 'Case Ã  cocher on/off unique',
26017   'language' => 'fr',
26018   'plid' => '0',
26019   'plural' => '0',
26020   'i18n_status' => '0',
26021 ))
26022 ->values(array(
26023   'lid' => '413',
26024   'translation' => '%name : ce champ ne peut contenir plus de @count valeurs.',
26025   'language' => 'fr',
26026   'plid' => '0',
26027   'plural' => '0',
26028   'i18n_status' => '0',
26029 ))
26030 ->values(array(
26031   'lid' => '414',
26032   'translation' => 'N/A',
26033   'language' => 'fr',
26034   'plid' => '0',
26035   'plural' => '0',
26036   'i18n_status' => '0',
26037 ))
26038 ->values(array(
26039   'lid' => '415',
26040   'translation' => '- Aucun -',
26041   'language' => 'fr',
26042   'plid' => '0',
26043   'plural' => '0',
26044   'i18n_status' => '0',
26045 ))
26046 ->values(array(
26047   'lid' => '416',
26048   'translation' => 'optionwidgets',
26049   'language' => 'fr',
26050   'plid' => '0',
26051   'plural' => '0',
26052   'i18n_status' => '0',
26053 ))
26054 ->values(array(
26055   'lid' => '417',
26056   'translation' => 'Option Widgets',
26057   'language' => 'fr',
26058   'plid' => '0',
26059   'plural' => '0',
26060   'i18n_status' => '0',
26061 ))
26062 ->values(array(
26063   'lid' => '418',
26064   'translation' => 'Définit des widgets de liste déroulante, case Ã  cocher et bouton radio pour des champs texte et numériques.',
26065   'language' => 'fr',
26066   'plid' => '0',
26067   'plural' => '0',
26068   'i18n_status' => '0',
26069 ))
26070 ->values(array(
26071   'lid' => '419',
26072   'translation' => 'Enregistre le texte dans la base de données.',
26073   'language' => 'fr',
26074   'plid' => '0',
26075   'plural' => '0',
26076   'i18n_status' => '0',
26077 ))
26078 ->values(array(
26079   'lid' => '420',
26080   'translation' => 'Texte simple',
26081   'language' => 'fr',
26082   'plid' => '0',
26083   'plural' => '0',
26084   'i18n_status' => '0',
26085 ))
26086 ->values(array(
26087   'lid' => '421',
26088   'translation' => "Texte filtré (l'utilisateur choisit le format d'entrée)",
26089   'language' => 'fr',
26090   'plid' => '0',
26091   'plural' => '0',
26092   'i18n_status' => '0',
26093 ))
26094 ->values(array(
26095   'lid' => '422',
26096   'translation' => 'Traitement du texte',
26097   'language' => 'fr',
26098   'plid' => '0',
26099   'plural' => '0',
26100   'i18n_status' => '0',
26101 ))
26102 ->values(array(
26103   'lid' => '423',
26104   'translation' => 'Taille maximale',
26105   'language' => 'fr',
26106   'plid' => '0',
26107   'plural' => '0',
26108   'i18n_status' => '0',
26109 ))
26110 ->values(array(
26111   'lid' => '424',
26112   'translation' => 'La taille maximale des champs, en caractères. Laisser vide pour ne pas limiter la taille.',
26113   'language' => 'fr',
26114   'plid' => '0',
26115   'plural' => '0',
26116   'i18n_status' => '0',
26117 ))
26118 ->values(array(
26119   'lid' => '425',
26120   'translation' => '%name : la valeur ne doit pas dépasser %max caractères.',
26121   'language' => 'fr',
26122   'plid' => '0',
26123   'plural' => '0',
26124   'i18n_status' => '0',
26125 ))
26126 ->values(array(
26127   'lid' => '426',
26128   'translation' => 'Par défaut',
26129   'language' => 'fr',
26130   'plid' => '0',
26131   'plural' => '0',
26132   'i18n_status' => '0',
26133 ))
26134 ->values(array(
26135   'lid' => '427',
26136   'translation' => 'Coupé',
26137   'language' => 'fr',
26138   'plid' => '0',
26139   'plural' => '0',
26140   'i18n_status' => '0',
26141 ))
26142 ->values(array(
26143   'lid' => '428',
26144   'translation' => 'Zone de texte (plusieurs lignes)',
26145   'language' => 'fr',
26146   'plid' => '0',
26147   'plural' => '0',
26148   'i18n_status' => '0',
26149 ))
26150 ->values(array(
26151   'lid' => '429',
26152   'translation' => 'Taille du champ texte',
26153   'language' => 'fr',
26154   'plid' => '0',
26155   'plural' => '0',
26156   'i18n_status' => '0',
26157 ))
26158 ->values(array(
26159   'lid' => '430',
26160   'translation' => 'Rangées',
26161   'language' => 'fr',
26162   'plid' => '0',
26163   'plural' => '0',
26164   'i18n_status' => '0',
26165 ))
26166 ->values(array(
26167   'lid' => '431',
26168   'translation' => 'texte',
26169   'language' => 'fr',
26170   'plid' => '0',
26171   'plural' => '0',
26172   'i18n_status' => '0',
26173 ))
26174 ->values(array(
26175   'lid' => '432',
26176   'translation' => 'Définit les types de champs en texte simple.',
26177   'language' => 'fr',
26178   'plid' => '0',
26179   'plural' => '0',
26180   'i18n_status' => '0',
26181 ))
26182 ->values(array(
26183   'lid' => '433',
26184   'translation' => 'Charge un utilisateur référencé',
26185   'language' => 'fr',
26186   'plid' => '0',
26187   'plural' => '0',
26188   'i18n_status' => '0',
26189 ))
26190 ->values(array(
26191   'lid' => '434',
26192   'translation' => 'Contenu contenant le champ userrefernece',
26193   'language' => 'fr',
26194   'plid' => '0',
26195   'plural' => '0',
26196   'i18n_status' => '0',
26197 ))
26198 ->values(array(
26199   'lid' => '435',
26200   'translation' => 'Utilisateur référencé',
26201   'language' => 'fr',
26202   'plid' => '0',
26203   'plural' => '0',
26204   'i18n_status' => '0',
26205 ))
26206 ->values(array(
26207   'lid' => '436',
26208   'translation' => 'Noter que si le champ possède des valeurs multiples, seul le premier utilisateur sera chargé',
26209   'language' => 'fr',
26210   'plid' => '0',
26211   'plural' => '0',
26212   'i18n_status' => '0',
26213 ))
26214 ->values(array(
26215   'lid' => '437',
26216   'translation' => "Il n'y a aucun champ userreference défini",
26217   'language' => 'fr',
26218   'plid' => '0',
26219   'plural' => '0',
26220   'i18n_status' => '0',
26221 ))
26222 ->values(array(
26223   'lid' => '438',
26224   'translation' => 'User reference',
26225   'language' => 'fr',
26226   'plid' => '0',
26227   'plural' => '0',
26228   'i18n_status' => '0',
26229 ))
26230 ->values(array(
26231   'lid' => '439',
26232   'translation' => "Stocke l'ID d'un utilisateur lié sous forme d'entier",
26233   'language' => 'fr',
26234   'plid' => '0',
26235   'plural' => '0',
26236   'i18n_status' => '0',
26237 ))
26238 ->values(array(
26239   'lid' => '440',
26240   'translation' => 'Rôles utilisateur pouvant Ãªtre référencés',
26241   'language' => 'fr',
26242   'plid' => '0',
26243   'plural' => '0',
26244   'i18n_status' => '0',
26245 ))
26246 ->values(array(
26247   'lid' => '441',
26248   'translation' => 'Statuts utilisateur pouvant Ãªtre référencés',
26249   'language' => 'fr',
26250   'plid' => '0',
26251   'plural' => '0',
26252   'i18n_status' => '0',
26253 ))
26254 ->values(array(
26255   'lid' => '442',
26256   'translation' => 'Actif',
26257   'language' => 'fr',
26258   'plid' => '0',
26259   'plural' => '0',
26260   'i18n_status' => '0',
26261 ))
26262 ->values(array(
26263   'lid' => '443',
26264   'translation' => 'Bloqué',
26265   'language' => 'fr',
26266   'plid' => '0',
26267   'plural' => '0',
26268   'i18n_status' => '0',
26269 ))
26270 ->values(array(
26271   'lid' => '444',
26272   'translation' => 'Avancé - Utilisateurs pouvant Ãªtre référencés (Vue)',
26273   'language' => 'fr',
26274   'plid' => '0',
26275   'plural' => '0',
26276   'i18n_status' => '0',
26277 ))
26278 ->values(array(
26279   'lid' => '445',
26280   'translation' => 'Vue utilisée pour sélectionner les utilisateurs',
26281   'language' => 'fr',
26282   'plid' => '0',
26283   'plural' => '0',
26284   'i18n_status' => '0',
26285 ))
26286 ->values(array(
26287   'lid' => '446',
26288   'translation' => '<p>Choisissez la vue du "module Views" qui sélectionne les utilisateurs pouvant Ãªtre référencés.<br />Note :</p>',
26289   'language' => 'fr',
26290   'plid' => '0',
26291   'plural' => '0',
26292   'i18n_status' => '0',
26293 ))
26294 ->values(array(
26295   'lid' => '447',
26296   'translation' => "<ul><li>Seules les vues qui possèdent des champs fonctionneront Ã  cet effet.</li><li>Ceci annulera les paramètres \"Rôles Référençables\" et \"Statut Référençable\" ci-dessus. Utilisez la section \"filtres\" de la vue Ã  la place.</li><li>Utilisez la section \"champs\" de la vue pour afficher des informations supplémentaires Ã  propos des utilisateurs candidats sur le formulaire de création/édition.</li><li>Utilisez la section \"critère de tri\" de la vue pour déterminer l'ordre dans lequel les utilisateurs candidats seront affichés.</li></ul>",
26297   'language' => 'fr',
26298   'plid' => '0',
26299   'plural' => '0',
26300   'i18n_status' => '0',
26301 ))
26302 ->values(array(
26303   'lid' => '448',
26304   'translation' => "<p>La liste d'utilisateurs pouvant Ãªtre référencés peut s'appueyr sur une vue du \"module Views\", mais aucune vue appropriée n'a Ã©té trouvée. <br />Note :</p>",
26305   'language' => 'fr',
26306   'plid' => '0',
26307   'plural' => '0',
26308   'i18n_status' => '0',
26309 ))
26310 ->values(array(
26311   'lid' => '449',
26312   'translation' => '%name : utilisateur invalide.',
26313   'language' => 'fr',
26314   'plid' => '0',
26315   'plural' => '0',
26316   'i18n_status' => '0',
26317 ))
26318 ->values(array(
26319   'lid' => '450',
26320   'translation' => "Séléctionnez la méthode utilisée pour collecter les suggestions de l'autocomplétion. Notez que <em>Contient</em> peut engendrer des problèmes de performances sur des sites avec des milliers d'utilisateurs.",
26321   'language' => 'fr',
26322   'plid' => '0',
26323   'plural' => '0',
26324   'i18n_status' => '0',
26325 ))
26326 ->values(array(
26327   'lid' => '451',
26328   'translation' => 'Lien retour',
26329   'language' => 'fr',
26330   'plid' => '0',
26331   'plural' => '0',
26332   'i18n_status' => '0',
26333 ))
26334 ->values(array(
26335   'lid' => '452',
26336   'translation' => "Si cette option est sélectionnée, un lien réciproque vers le nÅ“ud référençant sera affiché dans l'enregistrement utilisateur référencé.",
26337   'language' => 'fr',
26338   'plid' => '0',
26339   'plural' => '0',
26340   'i18n_status' => '0',
26341 ))
26342 ->values(array(
26343   'lid' => '453',
26344   'translation' => "%name : nous n'avons pas trouvé d'utilisateur valide pour ce nom.",
26345   'language' => 'fr',
26346   'plid' => '0',
26347   'plural' => '0',
26348   'i18n_status' => '0',
26349 ))
26350 ->values(array(
26351   'lid' => '454',
26352   'translation' => 'Contenu lié',
26353   'language' => 'fr',
26354   'plid' => '0',
26355   'plural' => '0',
26356   'i18n_status' => '0',
26357 ))
26358 ->values(array(
26359   'lid' => '455',
26360   'translation' => 'Autocomplétion Userreference',
26361   'language' => 'fr',
26362   'plid' => '0',
26363   'plural' => '0',
26364   'i18n_status' => '0',
26365 ))
26366 ->values(array(
26367   'lid' => '456',
26368   'translation' => 'userreference',
26369   'language' => 'fr',
26370   'plid' => '0',
26371   'plural' => '0',
26372   'i18n_status' => '0',
26373 ))
26374 ->values(array(
26375   'lid' => '457',
26376   'translation' => 'User Reference',
26377   'language' => 'fr',
26378   'plid' => '0',
26379   'plural' => '0',
26380   'i18n_status' => '0',
26381 ))
26382 ->values(array(
26383   'lid' => '458',
26384   'translation' => 'Définit un type de champ pour référencer un utilisateur depuis un noeud.',
26385   'language' => 'fr',
26386   'plid' => '0',
26387   'plural' => '0',
26388   'i18n_status' => '0',
26389 ))
26390 ->values(array(
26391   'lid' => '459',
26392   'translation' => 'Poids',
26393   'language' => 'fr',
26394   'plid' => '0',
26395   'plural' => '0',
26396   'i18n_status' => '0',
26397 ))
26398 ->values(array(
26399   'lid' => '460',
26400   'translation' => 'Ajouter',
26401   'language' => 'fr',
26402   'plid' => '0',
26403   'plural' => '0',
26404   'i18n_status' => '0',
26405 ))
26406 ->values(array(
26407   'lid' => '461',
26408   'translation' => 'Nouveau champ',
26409   'language' => 'fr',
26410   'plid' => '0',
26411   'plural' => '0',
26412   'i18n_status' => '0',
26413 ))
26414 ->values(array(
26415   'lid' => '462',
26416   'translation' => 'Champ existant',
26417   'language' => 'fr',
26418   'plid' => '0',
26419   'plural' => '0',
26420   'i18n_status' => '0',
26421 ))
26422 ->values(array(
26423   'lid' => '463',
26424   'translation' => 'Nouveau groupe',
26425   'language' => 'fr',
26426   'plid' => '0',
26427   'plural' => '0',
26428   'i18n_status' => '0',
26429 ))
26430 ->values(array(
26431   'lid' => '464',
26432   'translation' => "Ajouter des champs et des groupes au type de contenu, et les paramétrer pour l'affichage du contenu et les formulaires de saisie.",
26433   'language' => 'fr',
26434   'plid' => '0',
26435   'plural' => '0',
26436   'i18n_status' => '0',
26437 ))
26438 ->values(array(
26439   'lid' => '465',
26440   'translation' => 'Vous pouvez ajouter un champ Ã  un groupe en le faisant glisser ci-dessous et Ã  la droite du groupe.',
26441   'language' => 'fr',
26442   'plid' => '0',
26443   'plural' => '0',
26444   'i18n_status' => '0',
26445 ))
26446 ->values(array(
26447   'lid' => '466',
26448   'translation' => "Note : l'installation du module <a href=\"!adv_help\">Aide avancée (Advanced help)</a> vous permettra d'accéder Ã  plus d'aide, et de meilleure qualité.",
26449   'language' => 'fr',
26450   'plid' => '0',
26451   'plural' => '0',
26452   'i18n_status' => '0',
26453 ))
26454 ->values(array(
26455   'lid' => '467',
26456   'translation' => "Utiliser la case Ã  cocher 'Exclure' pour exclure un Ã©lément de la valeur de !content transmis au gabarit du node.",
26457   'language' => 'fr',
26458   'plid' => '0',
26459   'plural' => '0',
26460   'i18n_status' => '0',
26461 ))
26462 ->values(array(
26463   'lid' => '468',
26464   'translation' => 'Supprimer cet Ã©lément',
26465   'language' => 'fr',
26466   'plid' => '0',
26467   'plural' => '0',
26468   'i18n_status' => '0',
26469 ))
26470 ->values(array(
26471   'lid' => '469',
26472   'translation' => 'Ajouter un champ',
26473   'language' => 'fr',
26474   'plid' => '0',
26475   'plural' => '0',
26476   'i18n_status' => '0',
26477 ))
26478 ->values(array(
26479   'lid' => '470',
26480   'translation' => "Valeur illégale pour le champ '%name'.",
26481   'language' => 'fr',
26482   'plid' => '0',
26483   'plural' => '0',
26484   'i18n_status' => '0',
26485 ))
26486 ->values(array(
26487   'lid' => '471',
26488   'translation' => "La longueur de '%label' dépasse %max caractères.",
26489   'language' => 'fr',
26490   'plid' => '0',
26491   'plural' => '0',
26492   'i18n_status' => '0',
26493 ))
26494 ->values(array(
26495   'lid' => '472',
26496   'translation' => "Le champ 'Rangées' doit Ãªtre un entier positif.",
26497   'language' => 'fr',
26498   'plid' => '0',
26499   'plural' => '0',
26500   'i18n_status' => '0',
26501 ))
26502 ->values(array(
26503   'lid' => '473',
26504   'translation' => "Les valeurs que ce champ peut contenir. Saisissez une valeur par ligne, au format clé|libellé. La clé est la valeur qui sera enregistrée dans la base de données et elle doit correspondre au type définit pour le champ dans la base, '%type'. Le libellé est optionnel et, si aucune valeur n'est spécifiée, la clé sera utilisée comme libellé.<br />Balises HTML autorisées : @tags",
26505   'language' => 'fr',
26506   'plid' => '0',
26507   'plural' => '0',
26508   'i18n_status' => '0',
26509 ))
26510 ->values(array(
26511   'lid' => '474',
26512   'translation' => 'ajouter un champ',
26513   'language' => 'fr',
26514   'plid' => '0',
26515   'plural' => '0',
26516   'i18n_status' => '0',
26517 ))
26518 ->values(array(
26519   'lid' => '475',
26520   'translation' => "Il n'y a aucun champ configuré pour ce type de contenu. Vous pouvez néanmoins dès maintenant !link.",
26521   'language' => 'fr',
26522   'plid' => '0',
26523   'plural' => '0',
26524   'i18n_status' => '0',
26525 ))
26526 ->values(array(
26527   'lid' => '476',
26528   'translation' => 'ajouter un nouveau champ',
26529   'language' => 'fr',
26530   'plid' => '0',
26531   'plural' => '0',
26532   'i18n_status' => '0',
26533 ))
26534 ->values(array(
26535   'lid' => '477',
26536   'translation' => "Pour changer l'ordre d'un champ, utilisez la poignée qui figure sous la colonne Ã‰tiquette et faites glisser le champ jusqu'à l'emplacement désiré. Pour manipuler la poignée (l'icône en forme de croix), cliquez sur l'icône et maintenez enfoncé le bouton de la souris. N'oubliez pas que vos modifications ne seront prises en compte que lorsque vous aurez cliqué sur le bouton <em>Enregistrer</em> qui figure en base de page.",
26537   'language' => 'fr',
26538   'plid' => '0',
26539   'plural' => '0',
26540   'i18n_status' => '0',
26541 ))
26542 ->values(array(
26543   'lid' => '478',
26544   'translation' => "Aucun module de champs n'est activé. Vous devez en <a href=\"!modules_url\">activer un</a>, par exemple le module Text, avant de pouvoir ajouter des champs.",
26545   'language' => 'fr',
26546   'plid' => '0',
26547   'plural' => '0',
26548   'i18n_status' => '0',
26549 ))
26550 ->values(array(
26551   'lid' => '479',
26552   'translation' => 'Ajouter un champ existant',
26553   'language' => 'fr',
26554   'plid' => '0',
26555   'plural' => '0',
26556   'i18n_status' => '0',
26557 ))
26558 ->values(array(
26559   'lid' => '480',
26560   'translation' => 'Créer un nouveau champ',
26561   'language' => 'fr',
26562   'plid' => '0',
26563   'plural' => '0',
26564   'i18n_status' => '0',
26565 ))
26566 ->values(array(
26567   'lid' => '481',
26568   'translation' => 'Nom du champ, lisible par une machine.',
26569   'language' => 'fr',
26570   'plid' => '0',
26571   'plural' => '0',
26572   'i18n_status' => '0',
26573 ))
26574 ->values(array(
26575   'lid' => '482',
26576   'translation' => ' Ce nom ne peut Ãªtre modifié.',
26577   'language' => 'fr',
26578   'plid' => '0',
26579   'plural' => '0',
26580   'i18n_status' => '0',
26581 ))
26582 ->values(array(
26583   'lid' => '483',
26584   'translation' => " Ce nom ne pourra pas Ãªtre modifié par la suite ! Le nom sera préfixé par 'field_' et peut inclure des lettres minuscules non accentués, des nombres et des caractères \"espace souligné\". La longueur du nom, y compris le préfixe, est limitée Ã  un total de 32 caractères.",
26585   'language' => 'fr',
26586   'plid' => '0',
26587   'plural' => '0',
26588   'i18n_status' => '0',
26589 ))
26590 ->values(array(
26591   'lid' => '484',
26592   'translation' => 'Type de données que vous souhaitez enregistrer, par le biais de ce champ, dans la base de données.',
26593   'language' => 'fr',
26594   'plid' => '0',
26595   'plural' => '0',
26596   'i18n_status' => '0',
26597 ))
26598 ->values(array(
26599   'lid' => '485',
26600   'translation' => "Le nom de champ '%field_name' est invalide. Le nom ne doit comporter que des lettres minuscules non accentuées, des nombres ou des espaces soulignés.",
26601   'language' => 'fr',
26602   'plid' => '0',
26603   'plural' => '0',
26604   'i18n_status' => '0',
26605 ))
26606 ->values(array(
26607   'lid' => '486',
26608   'translation' => "Le nom de champ '%field_name' est trop long. La longueur du nom est limitée Ã  32 caractères, y compris le préfixe 'field_'.",
26609   'language' => 'fr',
26610   'plid' => '0',
26611   'plural' => '0',
26612   'i18n_status' => '0',
26613 ))
26614 ->values(array(
26615   'lid' => '487',
26616   'translation' => "Le nom de champ '%field_name' existe déjà.",
26617   'language' => 'fr',
26618   'plid' => '0',
26619   'plural' => '0',
26620   'i18n_status' => '0',
26621 ))
26622 ->values(array(
26623   'lid' => '488',
26624   'translation' => "Le nom 'field_instance' est un nom réservé.",
26625   'language' => 'fr',
26626   'plid' => '0',
26627   'plural' => '0',
26628   'i18n_status' => '0',
26629 ))
26630 ->values(array(
26631   'lid' => '489',
26632   'translation' => "Le champ '%label' a Ã©té créé.",
26633   'language' => 'fr',
26634   'plid' => '0',
26635   'plural' => '0',
26636   'i18n_status' => '0',
26637 ))
26638 ->values(array(
26639   'lid' => '490',
26640   'translation' => "Mettre Ã  jour le champ '%label'.",
26641   'language' => 'fr',
26642   'plid' => '0',
26643   'plural' => '0',
26644   'i18n_status' => '0',
26645 ))
26646 ->values(array(
26647   'lid' => '491',
26648   'translation' => "Un problème est survenu Ã  la mise Ã  jour du champ '%label'.",
26649   'language' => 'fr',
26650   'plid' => '0',
26651   'plural' => '0',
26652   'i18n_status' => '0',
26653 ))
26654 ->values(array(
26655   'lid' => '492',
26656   'translation' => "Réservé Ã  une utilisation avancée : code PHP renvoyant la valeur par défaut du champ. Ne doit pas inclure les délimiteurs &lt;?php ?&gt;. Si ce champ est renseigné, la valeur renvoyée par le code supplante toute valeur indiquée ci-desus. Format attendu : <pre>!sample</pre> Vous pouvez utiliser l'onglet 'devel load' du module !link_devel sur un nÅ“ud de type '%type' pour mieux comprendre le format attendu.",
26657   'language' => 'fr',
26658   'plid' => '0',
26659   'plural' => '0',
26660   'i18n_status' => '0',
26661 ))
26662 ->values(array(
26663   'lid' => '493',
26664   'translation' => "Choisissez un nombre de valeurs pour ce champ, ou 'Illimité' pour proposer un bouton 'Ajouter' aux utilisateurs, de sorte qu'ils peuvent insérer autant de valeurs qu'ils le souhaitent.",
26665   'language' => 'fr',
26666   'plid' => '0',
26667   'plural' => '0',
26668   'i18n_status' => '0',
26669 ))
26670 ->values(array(
26671   'lid' => '494',
26672   'translation' => 'Le code PHP de valeur par défaut a créé @value, qui est invalide.',
26673   'language' => 'fr',
26674   'plid' => '0',
26675   'plural' => '0',
26676   'i18n_status' => '0',
26677 ))
26678 ->values(array(
26679   'lid' => '495',
26680   'translation' => 'Lien HTML mis en forme vers le nÅ“ud',
26681   'language' => 'fr',
26682   'plid' => '0',
26683   'plural' => '0',
26684   'i18n_status' => '0',
26685 ))
26686 ->values(array(
26687   'lid' => '496',
26688   'translation' => "La valeur de '%name 'ne peut Ãªtre plus petite que %min.",
26689   'language' => 'fr',
26690   'plid' => '0',
26691   'plural' => '0',
26692   'i18n_status' => '0',
26693 ))
26694 ->values(array(
26695   'lid' => '497',
26696   'translation' => "La valeur de '%name' ne peut pas Ãªtre plus grande que %max.",
26697   'language' => 'fr',
26698   'plid' => '0',
26699   'plural' => '0',
26700   'i18n_status' => '0',
26701 ))
26702 ->values(array(
26703   'lid' => '498',
26704   'translation' => "Seuls des nombres et des décimaux sont autorisés dans '%field'. La valeur saisie, '%start', a Ã©té modifié en '%value'.",
26705   'language' => 'fr',
26706   'plid' => '0',
26707   'plural' => '0',
26708   'i18n_status' => '0',
26709 ))
26710 ->values(array(
26711   'lid' => '499',
26712   'translation' => "Seuls des nombres sont autorisés dans '%field'. La valeur saisie, '%start', a Ã©té modifié en '%value'.",
26713   'language' => 'fr',
26714   'plid' => '0',
26715   'plural' => '0',
26716   'i18n_status' => '0',
26717 ))
26718 ->values(array(
26719   'lid' => '500',
26720   'translation' => "Seuls des nombres et le marqueur décimal (%decimal) sont autorisés dans '%field'. La valeur saisie, '%start', a Ã©té modifié en '%value'.",
26721   'language' => 'fr',
26722   'plid' => '0',
26723   'plural' => '0',
26724   'i18n_status' => '0',
26725 ))
26726 ->values(array(
26727   'lid' => '501',
26728   'translation' => "Créez une liste d'options en tant que liste dans les <strong>Valeurs permises</strong> ou en tant que tableau dans le code PHP. Ces valeurs seront identiques pour '%field' dans tous les types de contenus.",
26729   'language' => 'fr',
26730   'plid' => '0',
26731   'plural' => '0',
26732   'i18n_status' => '0',
26733 ))
26734 ->values(array(
26735   'lid' => '504',
26736   'translation' => 'fr - Favorite color',
26737   'language' => 'fr',
26738   'plid' => '0',
26739   'plural' => '0',
26740   'i18n_status' => '0',
26741 ))
26742 ->values(array(
26743   'lid' => '505',
26744   'translation' => 'Inscrivez votre couleur préférée',
26745   'language' => 'fr',
26746   'plid' => '0',
26747   'plural' => '0',
26748   'i18n_status' => '0',
26749 ))
26750 ->values(array(
26751   'lid' => '506',
26752   'translation' => 'fr - Personal information',
26753   'language' => 'fr',
26754   'plid' => '0',
26755   'plural' => '0',
26756   'i18n_status' => '0',
26757 ))
26758 ->values(array(
26759   'lid' => '507',
26760   'translation' => 'fr - Biography',
26761   'language' => 'fr',
26762   'plid' => '0',
26763   'plural' => '0',
26764   'i18n_status' => '0',
26765 ))
26766 ->values(array(
26767   'lid' => '508',
26768   'translation' => 'fr - Tell people a little bit about yourself',
26769   'language' => 'fr',
26770   'plid' => '0',
26771   'plural' => '0',
26772   'i18n_status' => '0',
26773 ))
26774 ->values(array(
26775   'lid' => '509',
26776   'translation' => 'fr - Sell your email address?',
26777   'language' => 'fr',
26778   'plid' => '0',
26779   'plural' => '0',
26780   'i18n_status' => '0',
26781 ))
26782 ->values(array(
26783   'lid' => '510',
26784   'translation' => "fr - If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
26785   'language' => 'fr',
26786   'plid' => '0',
26787   'plural' => '0',
26788   'i18n_status' => '0',
26789 ))
26790 ->values(array(
26791   'lid' => '511',
26792   'translation' => 'fr - Communication preferences',
26793   'language' => 'fr',
26794   'plid' => '0',
26795   'plural' => '0',
26796   'i18n_status' => '0',
26797 ))
26798 ->values(array(
26799   'lid' => '512',
26800   'translation' => 'fr - Sales Category',
26801   'language' => 'fr',
26802   'plid' => '0',
26803   'plural' => '0',
26804   'i18n_status' => '0',
26805 ))
26806 ->values(array(
26807   'lid' => '513',
26808   'translation' => "fr - Select the sales categories to which this user's address was sold.",
26809   'language' => 'fr',
26810   'plid' => '0',
26811   'plural' => '0',
26812   'i18n_status' => '0',
26813 ))
26814 ->values(array(
26815   'lid' => '514',
26816   'translation' => 'fr - Pill spammers Fitness spammers Back\slash Forward/slash Dot.in.the.middle',
26817   'language' => 'fr',
26818   'plid' => '0',
26819   'plural' => '0',
26820   'i18n_status' => '0',
26821 ))
26822 ->values(array(
26823   'lid' => '515',
26824   'translation' => 'fr - Administrative data',
26825   'language' => 'fr',
26826   'plid' => '0',
26827   'plural' => '0',
26828   'i18n_status' => '0',
26829 ))
26830 ->values(array(
26831   'lid' => '516',
26832   'translation' => 'Mes groupes préférés',
26833   'language' => 'fr',
26834   'plid' => '0',
26835   'plural' => '0',
26836   'i18n_status' => '0',
26837 ))
26838 ->values(array(
26839   'lid' => '517',
26840   'translation' => "fr - Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
26841   'language' => 'fr',
26842   'plid' => '0',
26843   'plural' => '0',
26844   'i18n_status' => '0',
26845 ))
26846 ->values(array(
26847   'lid' => '518',
26848   'translation' => 'fr - Birthdate',
26849   'language' => 'fr',
26850   'plid' => '0',
26851   'plural' => '0',
26852   'i18n_status' => '0',
26853 ))
26854 ->values(array(
26855   'lid' => '519',
26856   'translation' => "fr - Enter your birth date and we'll send you a coupon.",
26857   'language' => 'fr',
26858   'plid' => '0',
26859   'plural' => '0',
26860   'i18n_status' => '0',
26861 ))
26862 ->values(array(
26863   'lid' => '520',
26864   'translation' => "J'aime les migrations",
26865   'language' => 'fr',
26866   'plid' => '0',
26867   'plural' => '0',
26868   'i18n_status' => '1',
26869 ))
26870 ->values(array(
26871   'lid' => '521',
26872   'translation' => 'Si vous cochez cette case, vous aimez les migrations.',
26873   'language' => 'fr',
26874   'plid' => '0',
26875   'plural' => '0',
26876   'i18n_status' => '0',
26877 ))
26878 ->values(array(
26879   'lid' => '522',
26880   'translation' => 'fr - Blog',
26881   'language' => 'fr',
26882   'plid' => '0',
26883   'plural' => '0',
26884   'i18n_status' => '0',
26885 ))
26886 ->values(array(
26887   'lid' => '523',
26888   'translation' => 'fr - Paste the full URL, including http://, of your personal blog.',
26889   'language' => 'fr',
26890   'plid' => '0',
26891   'plural' => '0',
26892   'i18n_status' => '0',
26893 ))
26894 ->values(array(
26895   'lid' => '524',
26896   'translation' => 'fr - Static Block',
26897   'language' => 'fr',
26898   'plid' => '0',
26899   'plural' => '0',
26900   'i18n_status' => '0',
26901 ))
26902 ->values(array(
26903   'lid' => '525',
26904   'translation' => '<h3>fr - My first custom block body</h3>',
26905   'language' => 'fr',
26906   'plid' => '0',
26907   'plural' => '0',
26908   'i18n_status' => '0',
26909 ))
26910 ->values(array(
26911   'lid' => '526',
26912   'translation' => 'Encore un bloc statique',
26913   'language' => 'fr',
26914   'plid' => '0',
26915   'plural' => '0',
26916   'i18n_status' => '0',
26917 ))
26918 ->values(array(
26919   'lid' => '527',
26920   'translation' => 'Nom de vocabulaire beaucoup plus long que trente-deux caractères',
26921   'language' => 'fr',
26922   'plid' => '0',
26923   'plural' => '0',
26924   'i18n_status' => '0',
26925 ))
26926 ->values(array(
26927   'lid' => '528',
26928   'translation' => 'fr - Tags',
26929   'language' => 'fr',
26930   'plid' => '0',
26931   'plural' => '0',
26932   'i18n_status' => '0',
26933 ))
26934 ->values(array(
26935   'lid' => '529',
26936   'translation' => 'fr - vocabulary 1 (i=0)',
26937   'language' => 'fr',
26938   'plid' => '0',
26939   'plural' => '0',
26940   'i18n_status' => '0',
26941 ))
26942 ->values(array(
26943   'lid' => '530',
26944   'translation' => 'fr - vocabulary 2 (i=1)',
26945   'language' => 'fr',
26946   'plid' => '0',
26947   'plural' => '0',
26948   'i18n_status' => '0',
26949 ))
26950 ->values(array(
26951   'lid' => '531',
26952   'translation' => 'fr - vocabulary 3 (i=2)',
26953   'language' => 'fr',
26954   'plid' => '0',
26955   'plural' => '0',
26956   'i18n_status' => '0',
26957 ))
26958 ->values(array(
26959   'lid' => '532',
26960   'translation' => 'Nom de vocabulaire beaucoup plus long que trente-deux caractères',
26961   'language' => 'fr',
26962   'plid' => '0',
26963   'plural' => '0',
26964   'i18n_status' => '0',
26965 ))
26966 ->values(array(
26967   'lid' => '533',
26968   'translation' => 'fr - Article',
26969   'language' => 'fr',
26970   'plid' => '0',
26971   'plural' => '0',
26972   'i18n_status' => '0',
26973 ))
26974 ->values(array(
26975   'lid' => '534',
26976   'translation' => 'fr - Title',
26977   'language' => 'fr',
26978   'plid' => '0',
26979   'plural' => '0',
26980   'i18n_status' => '0',
26981 ))
26982 ->values(array(
26983   'lid' => '535',
26984   'translation' => 'fr - Body',
26985   'language' => 'fr',
26986   'plid' => '0',
26987   'plural' => '0',
26988   'i18n_status' => '0',
26989 ))
26990 ->values(array(
26991   'lid' => '536',
26992   'translation' => 'fr - An <em>article</em>, content type.',
26993   'language' => 'fr',
26994   'plid' => '0',
26995   'plural' => '0',
26996   'i18n_status' => '0',
26997 ))
26998 ->values(array(
26999   'lid' => '537',
27000   'translation' => 'fr - Company',
27001   'language' => 'fr',
27002   'plid' => '0',
27003   'plural' => '0',
27004   'i18n_status' => '0',
27005 ))
27006 ->values(array(
27007   'lid' => '538',
27008   'translation' => 'fr - Name',
27009   'language' => 'fr',
27010   'plid' => '0',
27011   'plural' => '0',
27012   'i18n_status' => '0',
27013 ))
27014 ->values(array(
27015   'lid' => '539',
27016   'translation' => 'fr - Description',
27017   'language' => 'fr',
27018   'plid' => '0',
27019   'plural' => '0',
27020   'i18n_status' => '0',
27021 ))
27022 ->values(array(
27023   'lid' => '540',
27024   'translation' => 'fr - Company node type',
27025   'language' => 'fr',
27026   'plid' => '0',
27027   'plural' => '0',
27028   'i18n_status' => '0',
27029 ))
27030 ->values(array(
27031   'lid' => '541',
27032   'translation' => 'fr - Employee',
27033   'language' => 'fr',
27034   'plid' => '0',
27035   'plural' => '0',
27036   'i18n_status' => '0',
27037 ))
27038 ->values(array(
27039   'lid' => '542',
27040   'translation' => 'fr - Name',
27041   'language' => 'fr',
27042   'plid' => '0',
27043   'plural' => '0',
27044   'i18n_status' => '0',
27045 ))
27046 ->values(array(
27047   'lid' => '543',
27048   'translation' => 'fr - Bio',
27049   'language' => 'fr',
27050   'plid' => '0',
27051   'plural' => '0',
27052   'i18n_status' => '0',
27053 ))
27054 ->values(array(
27055   'lid' => '544',
27056   'translation' => 'fr - Employee node type',
27057   'language' => 'fr',
27058   'plid' => '0',
27059   'plural' => '0',
27060   'i18n_status' => '0',
27061 ))
27062 ->values(array(
27063   'lid' => '545',
27064   'translation' => 'fr - Sponsor',
27065   'language' => 'fr',
27066   'plid' => '0',
27067   'plural' => '0',
27068   'i18n_status' => '0',
27069 ))
27070 ->values(array(
27071   'lid' => '546',
27072   'translation' => 'fr - Name',
27073   'language' => 'fr',
27074   'plid' => '0',
27075   'plural' => '0',
27076   'i18n_status' => '0',
27077 ))
27078 ->values(array(
27079   'lid' => '547',
27080   'translation' => 'fr - Body',
27081   'language' => 'fr',
27082   'plid' => '0',
27083   'plural' => '0',
27084   'i18n_status' => '0',
27085 ))
27086 ->values(array(
27087   'lid' => '548',
27088   'translation' => 'fr - Sponsor node type',
27089   'language' => 'fr',
27090   'plid' => '0',
27091   'plural' => '0',
27092   'i18n_status' => '0',
27093 ))
27094 ->values(array(
27095   'lid' => '549',
27096   'translation' => 'fr - Story',
27097   'language' => 'fr',
27098   'plid' => '0',
27099   'plural' => '0',
27100   'i18n_status' => '0',
27101 ))
27102 ->values(array(
27103   'lid' => '550',
27104   'translation' => 'fr - Title',
27105   'language' => 'fr',
27106   'plid' => '0',
27107   'plural' => '0',
27108   'i18n_status' => '0',
27109 ))
27110 ->values(array(
27111   'lid' => '551',
27112   'translation' => 'fr - Body',
27113   'language' => 'fr',
27114   'plid' => '0',
27115   'plural' => '0',
27116   'i18n_status' => '0',
27117 ))
27118 ->values(array(
27119   'lid' => '552',
27120   'translation' => "fr - 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.",
27121   'language' => 'fr',
27122   'plid' => '0',
27123   'plural' => '0',
27124   'i18n_status' => '0',
27125 ))
27126 ->values(array(
27127   'lid' => '553',
27128   'translation' => 'fr - Migrate test event',
27129   'language' => 'fr',
27130   'plid' => '0',
27131   'plural' => '0',
27132   'i18n_status' => '0',
27133 ))
27134 ->values(array(
27135   'lid' => '554',
27136   'translation' => 'fr - Event Name',
27137   'language' => 'fr',
27138   'plid' => '0',
27139   'plural' => '0',
27140   'i18n_status' => '0',
27141 ))
27142 ->values(array(
27143   'lid' => '555',
27144   'translation' => 'fr - Body',
27145   'language' => 'fr',
27146   'plid' => '0',
27147   'plural' => '0',
27148   'i18n_status' => '0',
27149 ))
27150 ->values(array(
27151   'lid' => '556',
27152   'translation' => 'fr - test event description here',
27153   'language' => 'fr',
27154   'plid' => '0',
27155   'plural' => '0',
27156   'i18n_status' => '0',
27157 ))
27158 ->values(array(
27159   'lid' => '558',
27160   'translation' => 'fr - Migrate test page',
27161   'language' => 'fr',
27162   'plid' => '0',
27163   'plural' => '0',
27164   'i18n_status' => '0',
27165 ))
27166 ->values(array(
27167   'lid' => '559',
27168   'translation' => 'fr - Title',
27169   'language' => 'fr',
27170   'plid' => '0',
27171   'plural' => '0',
27172   'i18n_status' => '0',
27173 ))
27174 ->values(array(
27175   'lid' => '560',
27176   'translation' => 'fr - This is the body field label',
27177   'language' => 'fr',
27178   'plid' => '0',
27179   'plural' => '0',
27180   'i18n_status' => '0',
27181 ))
27182 ->values(array(
27183   'lid' => '561',
27184   'translation' => "fr - 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.",
27185   'language' => 'fr',
27186   'plid' => '0',
27187   'plural' => '0',
27188   'i18n_status' => '0',
27189 ))
27190 ->values(array(
27191   'lid' => '562',
27192   'translation' => 'fr - Migrate test planet',
27193   'language' => 'fr',
27194   'plid' => '0',
27195   'plural' => '0',
27196   'i18n_status' => '0',
27197 ))
27198 ->values(array(
27199   'lid' => '563',
27200   'translation' => 'fr - Title',
27201   'language' => 'fr',
27202   'plid' => '0',
27203   'plural' => '0',
27204   'i18n_status' => '0',
27205 ))
27206 ->values(array(
27207   'lid' => '564',
27208   'translation' => 'fr - Body',
27209   'language' => 'fr',
27210   'plid' => '0',
27211   'plural' => '0',
27212   'i18n_status' => '0',
27213 ))
27214 ->values(array(
27215   'lid' => '565',
27216   'translation' => "fr - 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.",
27217   'language' => 'fr',
27218   'plid' => '0',
27219   'plural' => '0',
27220   'i18n_status' => '0',
27221 ))
27222 ->values(array(
27223   'lid' => '566',
27224   'translation' => 'Migrer histoire de test',
27225   'language' => 'fr',
27226   'plid' => '0',
27227   'plural' => '0',
27228   'i18n_status' => '0',
27229 ))
27230 ->values(array(
27231   'lid' => '567',
27232   'translation' => 'Titre',
27233   'language' => 'fr',
27234   'plid' => '0',
27235   'plural' => '0',
27236   'i18n_status' => '0',
27237 ))
27238 ->values(array(
27239   'lid' => '568',
27240   'translation' => 'Le corps',
27241   'language' => 'fr',
27242   'plid' => '0',
27243   'plural' => '0',
27244   'i18n_status' => '0',
27245 ))
27246 ->values(array(
27247   'lid' => '569',
27248   'translation' => "A histoire, de forme semblable Ã  un page, est idéal pour la création et l'affichage du contenu qui informe et pousse les visiteurs du site. Communiqués de presse, des annonces du site, et les entrées de blog comme informels peuvent Ãªtre créés avec un histoire entrée. Par défaut, un histoire entrée est automatiquement présenté sur la page d'accueil initiale du site, et offre la possibilité de poster des commentaires.",
27249   'language' => 'fr',
27250   'plid' => '0',
27251   'plural' => '0',
27252   'i18n_status' => '0',
27253 ))
27254 ->values(array(
27255   'lid' => '570',
27256   'translation' => 'fr - Text Field',
27257   'language' => 'fr',
27258   'plid' => '0',
27259   'plural' => '0',
27260   'i18n_status' => '0',
27261 ))
27262 ->values(array(
27263   'lid' => '571',
27264   'translation' => 'fr - An example text field without exclude.',
27265   'language' => 'fr',
27266   'plid' => '0',
27267   'plural' => '0',
27268   'i18n_status' => '0',
27269 ))
27270 ->values(array(
27271   'lid' => '572',
27272   'translation' => 'fr - Integer Field',
27273   'language' => 'fr',
27274   'plid' => '0',
27275   'plural' => '0',
27276   'i18n_status' => '0',
27277 ))
27278 ->values(array(
27279   'lid' => '573',
27280   'translation' => 'fr - An example integer field.',
27281   'language' => 'fr',
27282   'plid' => '0',
27283   'plural' => '0',
27284   'i18n_status' => '0',
27285 ))
27286 ->values(array(
27287   'lid' => '574',
27288   'translation' => 'fr - Text Field',
27289   'language' => 'fr',
27290   'plid' => '0',
27291   'plural' => '0',
27292   'i18n_status' => '0',
27293 ))
27294 ->values(array(
27295   'lid' => '575',
27296   'translation' => 'fr - An example text field.',
27297   'language' => 'fr',
27298   'plid' => '0',
27299   'plural' => '0',
27300   'i18n_status' => '0',
27301 ))
27302 ->values(array(
27303   'lid' => '576',
27304   'translation' => 'fr - Decimal Field',
27305   'language' => 'fr',
27306   'plid' => '0',
27307   'plural' => '0',
27308   'i18n_status' => '0',
27309 ))
27310 ->values(array(
27311   'lid' => '577',
27312   'translation' => 'fr - An example decimal field.',
27313   'language' => 'fr',
27314   'plid' => '0',
27315   'plural' => '0',
27316   'i18n_status' => '0',
27317 ))
27318 ->values(array(
27319   'lid' => '578',
27320   'translation' => 'fr - Float Field',
27321   'language' => 'fr',
27322   'plid' => '0',
27323   'plural' => '0',
27324   'i18n_status' => '0',
27325 ))
27326 ->values(array(
27327   'lid' => '579',
27328   'translation' => 'fr - An example float field.',
27329   'language' => 'fr',
27330   'plid' => '0',
27331   'plural' => '0',
27332   'i18n_status' => '0',
27333 ))
27334 ->values(array(
27335   'lid' => '580',
27336   'translation' => 'fr - Integer Field',
27337   'language' => 'fr',
27338   'plid' => '0',
27339   'plural' => '0',
27340   'i18n_status' => '0',
27341 ))
27342 ->values(array(
27343   'lid' => '581',
27344   'translation' => 'fr - An example integer field.',
27345   'language' => 'fr',
27346   'plid' => '0',
27347   'plural' => '0',
27348   'i18n_status' => '0',
27349 ))
27350 ->values(array(
27351   'lid' => '582',
27352   'translation' => 'fr - Integer Field',
27353   'language' => 'fr',
27354   'plid' => '0',
27355   'plural' => '0',
27356   'i18n_status' => '0',
27357 ))
27358 ->values(array(
27359   'lid' => '583',
27360   'translation' => 'fr - An example integer field.',
27361   'language' => 'fr',
27362   'plid' => '0',
27363   'plural' => '0',
27364   'i18n_status' => '0',
27365 ))
27366 ->values(array(
27367   'lid' => '584',
27368   'translation' => 'fr - Email Field',
27369   'language' => 'fr',
27370   'plid' => '0',
27371   'plural' => '0',
27372   'i18n_status' => '0',
27373 ))
27374 ->values(array(
27375   'lid' => '585',
27376   'translation' => 'fr - An example email field.',
27377   'language' => 'fr',
27378   'plid' => '0',
27379   'plural' => '0',
27380   'i18n_status' => '0',
27381 ))
27382 ->values(array(
27383   'lid' => '586',
27384   'translation' => 'fr - Link Field',
27385   'language' => 'fr',
27386   'plid' => '0',
27387   'plural' => '0',
27388   'i18n_status' => '0',
27389 ))
27390 ->values(array(
27391   'lid' => '587',
27392   'translation' => 'fr - An example link field.',
27393   'language' => 'fr',
27394   'plid' => '0',
27395   'plural' => '0',
27396   'i18n_status' => '0',
27397 ))
27398 ->values(array(
27399   'lid' => '588',
27400   'translation' => 'fr - File Field',
27401   'language' => 'fr',
27402   'plid' => '0',
27403   'plural' => '0',
27404   'i18n_status' => '0',
27405 ))
27406 ->values(array(
27407   'lid' => '589',
27408   'translation' => 'fr - An example file field.',
27409   'language' => 'fr',
27410   'plid' => '0',
27411   'plural' => '0',
27412   'i18n_status' => '0',
27413 ))
27414 ->values(array(
27415   'lid' => '590',
27416   'translation' => 'fr - Image Field',
27417   'language' => 'fr',
27418   'plid' => '0',
27419   'plural' => '0',
27420   'i18n_status' => '0',
27421 ))
27422 ->values(array(
27423   'lid' => '591',
27424   'translation' => 'fr - An example image field.',
27425   'language' => 'fr',
27426   'plid' => '0',
27427   'plural' => '0',
27428   'i18n_status' => '0',
27429 ))
27430 ->values(array(
27431   'lid' => '592',
27432   'translation' => 'fr - Date Field',
27433   'language' => 'fr',
27434   'plid' => '0',
27435   'plural' => '0',
27436   'i18n_status' => '0',
27437 ))
27438 ->values(array(
27439   'lid' => '593',
27440   'translation' => 'fr - An example date field.',
27441   'language' => 'fr',
27442   'plid' => '0',
27443   'plural' => '0',
27444   'i18n_status' => '0',
27445 ))
27446 ->values(array(
27447   'lid' => '594',
27448   'translation' => 'fr - Date Stamp Field',
27449   'language' => 'fr',
27450   'plid' => '0',
27451   'plural' => '0',
27452   'i18n_status' => '0',
27453 ))
27454 ->values(array(
27455   'lid' => '595',
27456   'translation' => 'fr - An example date stamp field.',
27457   'language' => 'fr',
27458   'plid' => '0',
27459   'plural' => '0',
27460   'i18n_status' => '0',
27461 ))
27462 ->values(array(
27463   'lid' => '596',
27464   'translation' => 'fr - Datetime Field',
27465   'language' => 'fr',
27466   'plid' => '0',
27467   'plural' => '0',
27468   'i18n_status' => '0',
27469 ))
27470 ->values(array(
27471   'lid' => '597',
27472   'translation' => 'fr - An example datetime field.',
27473   'language' => 'fr',
27474   'plid' => '0',
27475   'plural' => '0',
27476   'i18n_status' => '0',
27477 ))
27478 ->values(array(
27479   'lid' => '598',
27480   'translation' => 'fr - Phone Field',
27481   'language' => 'fr',
27482   'plid' => '0',
27483   'plural' => '0',
27484   'i18n_status' => '0',
27485 ))
27486 ->values(array(
27487   'lid' => '599',
27488   'translation' => 'fr - An example phone field.',
27489   'language' => 'fr',
27490   'plid' => '0',
27491   'plural' => '0',
27492   'i18n_status' => '0',
27493 ))
27494 ->values(array(
27495   'lid' => '600',
27496   'translation' => 'fr - Decimal Radio Buttons Field',
27497   'language' => 'fr',
27498   'plid' => '0',
27499   'plural' => '0',
27500   'i18n_status' => '0',
27501 ))
27502 ->values(array(
27503   'lid' => '601',
27504   'translation' => 'fr - An example decimal field using radio buttons.',
27505   'language' => 'fr',
27506   'plid' => '0',
27507   'plural' => '0',
27508   'i18n_status' => '0',
27509 ))
27510 ->values(array(
27511   'lid' => '604',
27512   'translation' => 'fr - Float Single Checkbox Field',
27513   'language' => 'fr',
27514   'plid' => '0',
27515   'plural' => '0',
27516   'i18n_status' => '0',
27517 ))
27518 ->values(array(
27519   'lid' => '605',
27520   'translation' => 'fr - An example float field using a single on/off checkbox.',
27521   'language' => 'fr',
27522   'plid' => '0',
27523   'plural' => '0',
27524   'i18n_status' => '0',
27525 ))
27526 ->values(array(
27527   'lid' => '607',
27528   'translation' => 'fr - 1.234',
27529   'language' => 'fr',
27530   'plid' => '0',
27531   'plural' => '0',
27532   'i18n_status' => '0',
27533 ))
27534 ->values(array(
27535   'lid' => '608',
27536   'translation' => 'fr - Integer Select List Field',
27537   'language' => 'fr',
27538   'plid' => '0',
27539   'plural' => '0',
27540   'i18n_status' => '0',
27541 ))
27542 ->values(array(
27543   'lid' => '609',
27544   'translation' => 'fr - An example integer field using a select list.',
27545   'language' => 'fr',
27546   'plid' => '0',
27547   'plural' => '0',
27548   'i18n_status' => '0',
27549 ))
27550 ->values(array(
27551   'lid' => '611',
27552   'translation' => 'fr - 2341',
27553   'language' => 'fr',
27554   'plid' => '0',
27555   'plural' => '0',
27556   'i18n_status' => '0',
27557 ))
27558 ->values(array(
27559   'lid' => '613',
27560   'translation' => 'fr - 4123',
27561   'language' => 'fr',
27562   'plid' => '0',
27563   'plural' => '0',
27564   'i18n_status' => '0',
27565 ))
27566 ->values(array(
27567   'lid' => '614',
27568   'translation' => 'fr - Text Single Checkbox Field',
27569   'language' => 'fr',
27570   'plid' => '0',
27571   'plural' => '0',
27572   'i18n_status' => '0',
27573 ))
27574 ->values(array(
27575   'lid' => '615',
27576   'translation' => 'fr - An example text field using a single on/off checkbox.',
27577   'language' => 'fr',
27578   'plid' => '0',
27579   'plural' => '0',
27580   'i18n_status' => '0',
27581 ))
27582 ->values(array(
27583   'lid' => '616',
27584   'translation' => 'fr - Hello',
27585   'language' => 'fr',
27586   'plid' => '0',
27587   'plural' => '0',
27588   'i18n_status' => '0',
27589 ))
27590 ->values(array(
27591   'lid' => '617',
27592   'translation' => 'fr - Goodbye',
27593   'language' => 'fr',
27594   'plid' => '0',
27595   'plural' => '0',
27596   'i18n_status' => '0',
27597 ))
27598 ->values(array(
27599   'lid' => '618',
27600   'translation' => 'fr - Text Single Checkbox Field 2',
27601   'language' => 'fr',
27602   'plid' => '0',
27603   'plural' => '0',
27604   'i18n_status' => '0',
27605 ))
27606 ->values(array(
27607   'lid' => '619',
27608   'translation' => 'fr - Checkbox that uses keys only and no label.',
27609   'language' => 'fr',
27610   'plid' => '0',
27611   'plural' => '0',
27612   'i18n_status' => '0',
27613 ))
27614 ->values(array(
27615   'lid' => '620',
27616   'translation' => 'fr - Off',
27617   'language' => 'fr',
27618   'plid' => '0',
27619   'plural' => '0',
27620   'i18n_status' => '0',
27621 ))
27622 ->values(array(
27623   'lid' => '621',
27624   'translation' => 'fr - Hello',
27625   'language' => 'fr',
27626   'plid' => '0',
27627   'plural' => '0',
27628   'i18n_status' => '0',
27629 ))
27630 ->values(array(
27631   'lid' => '622',
27632   'translation' => 'Champ de texte',
27633   'language' => 'fr',
27634   'plid' => '0',
27635   'plural' => '0',
27636   'i18n_status' => '0',
27637 ))
27638 ->values(array(
27639   'lid' => '623',
27640   'translation' => 'fr - An example text field.',
27641   'language' => 'fr',
27642   'plid' => '0',
27643   'plural' => '0',
27644   'i18n_status' => '0',
27645 ))
27646 ->values(array(
27647   'lid' => '624',
27648   'translation' => 'fr - Decimal Field',
27649   'language' => 'fr',
27650   'plid' => '0',
27651   'plural' => '0',
27652   'i18n_status' => '0',
27653 ))
27654 ->values(array(
27655   'lid' => '625',
27656   'translation' => 'Un exemple plusieurs valeurs champ décimal.',
27657   'language' => 'fr',
27658   'plid' => '0',
27659   'plural' => '0',
27660   'i18n_status' => '0',
27661 ))
27662 ->values(array(
27663   'lid' => '627',
27664   'translation' => 'fr - An example text field using a single on/off checkbox.',
27665   'language' => 'fr',
27666   'plid' => '0',
27667   'plural' => '0',
27668   'i18n_status' => '0',
27669 ))
27670 ->values(array(
27671   'lid' => '633',
27672   'translation' => 'fr - Drupal.org',
27673   'language' => 'fr',
27674   'plid' => '0',
27675   'plural' => '0',
27676   'i18n_status' => '0',
27677 ))
27678 ->values(array(
27679   'lid' => '634',
27680   'translation' => 'fr - Test 2',
27681   'language' => 'fr',
27682   'plid' => '0',
27683   'plural' => '0',
27684   'i18n_status' => '0',
27685 ))
27686 ->values(array(
27687   'lid' => '635',
27688   'translation' => 'fr - Test menu link 2',
27689   'language' => 'fr',
27690   'plid' => '0',
27691   'plural' => '0',
27692   'i18n_status' => '0',
27693 ))
27694 ->values(array(
27695   'lid' => '663',
27696   'translation' => 'fr - Content management',
27697   'language' => 'fr',
27698   'plid' => '0',
27699   'plural' => '0',
27700   'i18n_status' => '0',
27701 ))
27702 ->values(array(
27703   'lid' => '1254',
27704   'translation' => 'fr - Modules',
27705   'language' => 'fr',
27706   'plid' => '0',
27707   'plural' => '0',
27708   'i18n_status' => '0',
27709 ))
27710 ->values(array(
27711   'lid' => '1264',
27712   'translation' => 'fr - By task',
27713   'language' => 'fr',
27714   'plid' => '0',
27715   'plural' => '0',
27716   'i18n_status' => '0',
27717 ))
27718 ->values(array(
27719   'lid' => '1265',
27720   'translation' => 'fr - By module',
27721   'language' => 'fr',
27722   'plid' => '0',
27723   'plural' => '0',
27724   'i18n_status' => '0',
27725 ))
27726 ->values(array(
27727   'lid' => '1669',
27728   'translation' => "Choisissez la vue du module Views qui sélectionne les nÅ“uds pouvant Ãªtre référencés.<br />Notez que :<ul><li>seules les vues présentant des champs fonctionneront dans ce cadre </li><li>ceci effacera les paramètres de \"Types de contenus\" figurant ci-dessus. Utilisez Ã  la place la section \"filtres\" de la vue ;</li><li>utilisez la section \"champs\" de la vue pour afficher des informations supplémentaires sur les nÅ“uds candidats dans le formulaire de création/édition de nÅ“ud ;</li><li>utilisez la section \"critère de tri\" de la vue pour déterminer l'ordre d'affichage des nÅ“uds candidats.</li></ul>",
27729   'language' => 'fr',
27730   'plid' => '0',
27731   'plural' => '0',
27732   'i18n_status' => '0',
27733 ))
27734 ->values(array(
27735   'lid' => '1670',
27736   'translation' => "Champ '%name' : cette publication ne peut Ãªtre référencée.",
27737   'language' => 'fr',
27738   'plid' => '0',
27739   'plural' => '0',
27740   'i18n_status' => '0',
27741 ))
27742 ->values(array(
27743   'lid' => '1671',
27744   'translation' => "Champ '%name' : incohérence au niveau du titre. Merci de vérifier votre sélection.",
27745   'language' => 'fr',
27746   'plid' => '0',
27747   'plural' => '0',
27748   'i18n_status' => '0',
27749 ))
27750 ->values(array(
27751   'lid' => '1678',
27752   'translation' => 'fr - I really, really, really love migrating ',
27753   'language' => 'fr',
27754   'plid' => '0',
27755   'plural' => '0',
27756   'i18n_status' => '0',
27757 ))
27758 ->values(array(
27759   'lid' => '1690',
27760   'translation' => 'Noir',
27761   'language' => 'fr',
27762   'plid' => '0',
27763   'plural' => '0',
27764   'i18n_status' => '0',
27765 ))
27766 ->values(array(
27767   'lid' => '1672',
27768   'translation' => 'fr - Type',
27769   'language' => 'fr',
27770   'plid' => '0',
27771   'plural' => '0',
27772   'i18n_status' => '0',
27773 ))
27774 ->values(array(
27775   'lid' => '1692',
27776   'translation' => 'fr - Talos IV',
27777   'language' => 'fr',
27778   'plid' => '0',
27779   'plural' => '0',
27780   'i18n_status' => '0',
27781 ))
27782 ->values(array(
27783   'lid' => '1694',
27784   'translation' => 'fr - The home of Captain Christopher Pike.',
27785   'language' => 'fr',
27786   'plid' => '0',
27787   'plural' => '0',
27788   'i18n_status' => '0',
27789 ))
27790 ->values(array(
27791   'lid' => '66',
27792   'translation' => 'zu - CCK - Aucune Intégration aux Vues',
27793   'language' => 'zu',
27794   'plid' => '0',
27795   'plural' => '0',
27796   'i18n_status' => '0',
27797 ))
27798 ->values(array(
27799   'lid' => '506',
27800   'translation' => 'zu - Personal information',
27801   'language' => 'zu',
27802   'plid' => '0',
27803   'plural' => '0',
27804   'i18n_status' => '0',
27805 ))
27806 ->values(array(
27807   'lid' => '512',
27808   'translation' => 'zu - Sales Category',
27809   'language' => 'zu',
27810   'plid' => '0',
27811   'plural' => '0',
27812   'i18n_status' => '0',
27813 ))
27814 ->values(array(
27815   'lid' => '513',
27816   'translation' => "zu - Select the sales categories to which this user's address was sold.",
27817   'language' => 'zu',
27818   'plid' => '0',
27819   'plural' => '0',
27820   'i18n_status' => '0',
27821 ))
27822 ->values(array(
27823   'lid' => '514',
27824   'translation' => 'zu - Pill spammers Fitness spammers Back\slash Forward/slash Dot.in.the.middle',
27825   'language' => 'zu',
27826   'plid' => '0',
27827   'plural' => '0',
27828   'i18n_status' => '0',
27829 ))
27830 ->values(array(
27831   'lid' => '525',
27832   'translation' => '<h3>zu - My first custom block body</h3>',
27833   'language' => 'zu',
27834   'plid' => '0',
27835   'plural' => '0',
27836   'i18n_status' => '0',
27837 ))
27838 ->values(array(
27839   'lid' => '529',
27840   'translation' => 'zu - vocabulary 1 (i=0)',
27841   'language' => 'zu',
27842   'plid' => '0',
27843   'plural' => '0',
27844   'i18n_status' => '0',
27845 ))
27846 ->values(array(
27847   'lid' => '535',
27848   'translation' => 'zu - Body',
27849   'language' => 'zu',
27850   'plid' => '0',
27851   'plural' => '0',
27852   'i18n_status' => '0',
27853 ))
27854 ->values(array(
27855   'lid' => '590',
27856   'translation' => 'zu - Image Field',
27857   'language' => 'zu',
27858   'plid' => '0',
27859   'plural' => '0',
27860   'i18n_status' => '0',
27861 ))
27862 ->values(array(
27863   'lid' => '591',
27864   'translation' => 'zu - An example image field.',
27865   'language' => 'zu',
27866   'plid' => '0',
27867   'plural' => '0',
27868   'i18n_status' => '0',
27869 ))
27870 ->values(array(
27871   'lid' => '607',
27872   'translation' => 'zu - 1.234',
27873   'language' => 'zu',
27874   'plid' => '0',
27875   'plural' => '0',
27876   'i18n_status' => '0',
27877 ))
27878 ->values(array(
27879   'lid' => '611',
27880   'translation' => 'zu - 2341',
27881   'language' => 'zu',
27882   'plid' => '0',
27883   'plural' => '0',
27884   'i18n_status' => '0',
27885 ))
27886 ->values(array(
27887   'lid' => '621',
27888   'translation' => 'zu - Hello',
27889   'language' => 'zu',
27890   'plid' => '0',
27891   'plural' => '0',
27892   'i18n_status' => '0',
27893 ))
27894 ->values(array(
27895   'lid' => '635',
27896   'translation' => 'zu - Test menu link 2',
27897   'language' => 'zu',
27898   'plid' => '0',
27899   'plural' => '0',
27900   'i18n_status' => '0',
27901 ))
27902 ->values(array(
27903   'lid' => '1690',
27904   'translation' => 'Okumnyama',
27905   'language' => 'zu',
27906   'plid' => '0',
27907   'plural' => '0',
27908   'i18n_status' => '0',
27909 ))
27910 ->values(array(
27911   'lid' => '1691',
27912   'translation' => 'Mhlophe',
27913   'language' => 'zu',
27914   'plid' => '0',
27915   'plural' => '0',
27916   'i18n_status' => '0',
27917 ))
27918 ->values(array(
27919   'lid' => '1672',
27920   'translation' => 'zu - Type',
27921   'language' => 'zu',
27922   'plid' => '0',
27923   'plural' => '0',
27924   'i18n_status' => '0',
27925 ))
27926 ->values(array(
27927   'lid' => '1693',
27928   'translation' => 'zu - Vulcan',
27929   'language' => 'zu',
27930   'plid' => '0',
27931   'plural' => '0',
27932   'i18n_status' => '0',
27933 ))
27934 ->values(array(
27935   'lid' => '1694',
27936   'translation' => 'zu - The home of Captain Christopher Pike.',
27937   'language' => 'zu',
27938   'plid' => '0',
27939   'plural' => '0',
27940   'i18n_status' => '0',
27941 ))
27942 ->execute();
27943
27944 $connection->schema()->createTable('menu_custom', array(
27945   'fields' => array(
27946     'menu_name' => array(
27947       'type' => 'varchar',
27948       'not null' => TRUE,
27949       'length' => '32',
27950       'default' => '',
27951     ),
27952     'title' => array(
27953       'type' => 'varchar',
27954       'not null' => TRUE,
27955       'length' => '255',
27956       'default' => '',
27957     ),
27958     'description' => array(
27959       'type' => 'text',
27960       'not null' => FALSE,
27961       'size' => 'normal',
27962     ),
27963   ),
27964   'primary key' => array(
27965     'menu_name',
27966   ),
27967   'mysql_character_set' => 'utf8',
27968 ));
27969
27970 $connection->insert('menu_custom')
27971 ->fields(array(
27972   'menu_name',
27973   'title',
27974   'description',
27975 ))
27976 ->values(array(
27977   'menu_name' => 'navigation',
27978   'title' => 'Navigation',
27979   'description' => 'The navigation menu is provided by Drupal and is the main interactive menu for any site. It is usually the only menu that contains personalized links for authenticated users, and is often not even visible to anonymous users.',
27980 ))
27981 ->values(array(
27982   'menu_name' => 'primary-links',
27983   'title' => 'Primary links',
27984   'description' => 'Primary links are often used at the theme layer to show the major sections of a site. A typical representation for primary links would be tabs along the top.',
27985 ))
27986 ->values(array(
27987   'menu_name' => 'secondary-links',
27988   'title' => 'Secondary links',
27989   'description' => 'Secondary links are often used for pages like legal notices, contact details, and other secondary navigation items that play a lesser role than primary links',
27990 ))
27991 ->execute();
27992
27993 $connection->schema()->createTable('menu_links', array(
27994   'fields' => array(
27995     'menu_name' => array(
27996       'type' => 'varchar',
27997       'not null' => TRUE,
27998       'length' => '32',
27999       'default' => '',
28000     ),
28001     'mlid' => array(
28002       'type' => 'serial',
28003       'not null' => TRUE,
28004       'size' => 'normal',
28005       'unsigned' => TRUE,
28006     ),
28007     'plid' => array(
28008       'type' => 'int',
28009       'not null' => TRUE,
28010       'size' => 'normal',
28011       'default' => '0',
28012       'unsigned' => TRUE,
28013     ),
28014     'link_path' => array(
28015       'type' => 'varchar',
28016       'not null' => TRUE,
28017       'length' => '255',
28018       'default' => '',
28019     ),
28020     'router_path' => array(
28021       'type' => 'varchar',
28022       'not null' => TRUE,
28023       'length' => '255',
28024       'default' => '',
28025     ),
28026     'link_title' => array(
28027       'type' => 'varchar',
28028       'not null' => TRUE,
28029       'length' => '255',
28030       'default' => '',
28031     ),
28032     'options' => array(
28033       'type' => 'text',
28034       'not null' => FALSE,
28035       'size' => 'normal',
28036     ),
28037     'module' => array(
28038       'type' => 'varchar',
28039       'not null' => TRUE,
28040       'length' => '255',
28041       'default' => 'system',
28042     ),
28043     'hidden' => array(
28044       'type' => 'int',
28045       'not null' => TRUE,
28046       'size' => 'normal',
28047       'default' => '0',
28048     ),
28049     'external' => array(
28050       'type' => 'int',
28051       'not null' => TRUE,
28052       'size' => 'normal',
28053       'default' => '0',
28054     ),
28055     'has_children' => array(
28056       'type' => 'int',
28057       'not null' => TRUE,
28058       'size' => 'normal',
28059       'default' => '0',
28060     ),
28061     'expanded' => array(
28062       'type' => 'int',
28063       'not null' => TRUE,
28064       'size' => 'normal',
28065       'default' => '0',
28066     ),
28067     'weight' => array(
28068       'type' => 'int',
28069       'not null' => TRUE,
28070       'size' => 'normal',
28071       'default' => '0',
28072     ),
28073     'depth' => array(
28074       'type' => 'int',
28075       'not null' => TRUE,
28076       'size' => 'normal',
28077       'default' => '0',
28078     ),
28079     'customized' => array(
28080       'type' => 'int',
28081       'not null' => TRUE,
28082       'size' => 'normal',
28083       'default' => '0',
28084     ),
28085     'p1' => array(
28086       'type' => 'int',
28087       'not null' => TRUE,
28088       'size' => 'normal',
28089       'default' => '0',
28090       'unsigned' => TRUE,
28091     ),
28092     'p2' => array(
28093       'type' => 'int',
28094       'not null' => TRUE,
28095       'size' => 'normal',
28096       'default' => '0',
28097       'unsigned' => TRUE,
28098     ),
28099     'p3' => array(
28100       'type' => 'int',
28101       'not null' => TRUE,
28102       'size' => 'normal',
28103       'default' => '0',
28104       'unsigned' => TRUE,
28105     ),
28106     'p4' => array(
28107       'type' => 'int',
28108       'not null' => TRUE,
28109       'size' => 'normal',
28110       'default' => '0',
28111       'unsigned' => TRUE,
28112     ),
28113     'p5' => array(
28114       'type' => 'int',
28115       'not null' => TRUE,
28116       'size' => 'normal',
28117       'default' => '0',
28118       'unsigned' => TRUE,
28119     ),
28120     'p6' => array(
28121       'type' => 'int',
28122       'not null' => TRUE,
28123       'size' => 'normal',
28124       'default' => '0',
28125       'unsigned' => TRUE,
28126     ),
28127     'p7' => array(
28128       'type' => 'int',
28129       'not null' => TRUE,
28130       'size' => 'normal',
28131       'default' => '0',
28132       'unsigned' => TRUE,
28133     ),
28134     'p8' => array(
28135       'type' => 'int',
28136       'not null' => TRUE,
28137       'size' => 'normal',
28138       'default' => '0',
28139       'unsigned' => TRUE,
28140     ),
28141     'p9' => array(
28142       'type' => 'int',
28143       'not null' => TRUE,
28144       'size' => 'normal',
28145       'default' => '0',
28146       'unsigned' => TRUE,
28147     ),
28148     'updated' => array(
28149       'type' => 'int',
28150       'not null' => TRUE,
28151       'size' => 'normal',
28152       'default' => '0',
28153     ),
28154   ),
28155   'primary key' => array(
28156     'mlid',
28157   ),
28158   'mysql_character_set' => 'utf8',
28159 ));
28160
28161 $connection->insert('menu_links')
28162 ->fields(array(
28163   'menu_name',
28164   'mlid',
28165   'plid',
28166   'link_path',
28167   'router_path',
28168   'link_title',
28169   'options',
28170   'module',
28171   'hidden',
28172   'external',
28173   'has_children',
28174   'expanded',
28175   'weight',
28176   'depth',
28177   'customized',
28178   'p1',
28179   'p2',
28180   'p3',
28181   'p4',
28182   'p5',
28183   'p6',
28184   'p7',
28185   'p8',
28186   'p9',
28187   'updated',
28188 ))
28189 ->values(array(
28190   'menu_name' => 'book-toc-1',
28191   'mlid' => '1',
28192   'plid' => '0',
28193   'link_path' => 'node/4',
28194   'router_path' => 'node/%',
28195   'link_title' => 'Test top book title',
28196   'options' => 'a:0:{}',
28197   'module' => 'book',
28198   'hidden' => '0',
28199   'external' => '0',
28200   'has_children' => '1',
28201   'expanded' => '0',
28202   'weight' => '-10',
28203   'depth' => '1',
28204   'customized' => '0',
28205   'p1' => '1',
28206   'p2' => '0',
28207   'p3' => '0',
28208   'p4' => '0',
28209   'p5' => '0',
28210   'p6' => '0',
28211   'p7' => '0',
28212   'p8' => '0',
28213   'p9' => '0',
28214   'updated' => '0',
28215 ))
28216 ->values(array(
28217   'menu_name' => 'book-toc-1',
28218   'mlid' => '2',
28219   'plid' => '1',
28220   'link_path' => 'node/5',
28221   'router_path' => 'node/%',
28222   'link_title' => 'Test book title child 1',
28223   'options' => 'a:0:{}',
28224   'module' => 'book',
28225   'hidden' => '0',
28226   'external' => '0',
28227   'has_children' => '1',
28228   'expanded' => '0',
28229   'weight' => '0',
28230   'depth' => '2',
28231   'customized' => '0',
28232   'p1' => '1',
28233   'p2' => '2',
28234   'p3' => '0',
28235   'p4' => '0',
28236   'p5' => '0',
28237   'p6' => '0',
28238   'p7' => '0',
28239   'p8' => '0',
28240   'p9' => '0',
28241   'updated' => '0',
28242 ))
28243 ->values(array(
28244   'menu_name' => 'book-toc-1',
28245   'mlid' => '3',
28246   'plid' => '2',
28247   'link_path' => 'node/6',
28248   'router_path' => 'node/%',
28249   'link_title' => 'Test book title child 1.1',
28250   'options' => 'a:0:{}',
28251   'module' => 'book',
28252   'hidden' => '0',
28253   'external' => '0',
28254   'has_children' => '0',
28255   'expanded' => '0',
28256   'weight' => '0',
28257   'depth' => '3',
28258   'customized' => '0',
28259   'p1' => '1',
28260   'p2' => '2',
28261   'p3' => '3',
28262   'p4' => '0',
28263   'p5' => '0',
28264   'p6' => '0',
28265   'p7' => '0',
28266   'p8' => '0',
28267   'p9' => '0',
28268   'updated' => '0',
28269 ))
28270 ->values(array(
28271   'menu_name' => 'book-toc-1',
28272   'mlid' => '4',
28273   'plid' => '2',
28274   'link_path' => 'node/7',
28275   'router_path' => 'node/%',
28276   'link_title' => 'Test book title child 1.2',
28277   'options' => 'a:0:{}',
28278   'module' => 'book',
28279   'hidden' => '0',
28280   'external' => '0',
28281   'has_children' => '0',
28282   'expanded' => '0',
28283   'weight' => '0',
28284   'depth' => '3',
28285   'customized' => '0',
28286   'p1' => '1',
28287   'p2' => '2',
28288   'p3' => '4',
28289   'p4' => '0',
28290   'p5' => '0',
28291   'p6' => '0',
28292   'p7' => '0',
28293   'p8' => '0',
28294   'p9' => '0',
28295   'updated' => '0',
28296 ))
28297 ->values(array(
28298   'menu_name' => 'book-toc-2',
28299   'mlid' => '5',
28300   'plid' => '0',
28301   'link_path' => 'node/8',
28302   'router_path' => 'node/%',
28303   'link_title' => 'Test top book 2 title',
28304   'options' => 'a:0:{}',
28305   'module' => 'book',
28306   'hidden' => '0',
28307   'external' => '0',
28308   'has_children' => '1',
28309   'expanded' => '0',
28310   'weight' => '-10',
28311   'depth' => '1',
28312   'customized' => '0',
28313   'p1' => '5',
28314   'p2' => '0',
28315   'p3' => '0',
28316   'p4' => '0',
28317   'p5' => '0',
28318   'p6' => '0',
28319   'p7' => '0',
28320   'p8' => '0',
28321   'p9' => '0',
28322   'updated' => '0',
28323 ))
28324 ->values(array(
28325   'menu_name' => 'secondary-links',
28326   'mlid' => '138',
28327   'plid' => '139',
28328   'link_path' => 'user/login',
28329   'router_path' => 'user/login',
28330   'link_title' => 'Test 1',
28331   'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:16:"Test menu link 1";}s:8:"langcode";s:2:"en";}',
28332   'module' => 'menu',
28333   'hidden' => '0',
28334   'external' => '0',
28335   'has_children' => '1',
28336   'expanded' => '0',
28337   'weight' => '-50',
28338   'depth' => '2',
28339   'customized' => '1',
28340   'p1' => '139',
28341   'p2' => '138',
28342   'p3' => '0',
28343   'p4' => '0',
28344   'p5' => '0',
28345   'p6' => '0',
28346   'p7' => '0',
28347   'p8' => '0',
28348   'p9' => '0',
28349   'updated' => '0',
28350 ))
28351 ->values(array(
28352   'menu_name' => 'secondary-links',
28353   'mlid' => '139',
28354   'plid' => '0',
28355   'link_path' => 'admin',
28356   'router_path' => 'admin',
28357   'link_title' => 'Test 2',
28358   'options' => 'a:2:{s:5:"query";s:7:"foo=bar";s:10:"attributes";a:1:{s:5:"title";s:16:"Test menu link 2";}}',
28359   'module' => 'menu',
28360   'hidden' => '0',
28361   'external' => '0',
28362   'has_children' => '1',
28363   'expanded' => '1',
28364   'weight' => '-49',
28365   'depth' => '1',
28366   'customized' => '1',
28367   'p1' => '139',
28368   'p2' => '0',
28369   'p3' => '0',
28370   'p4' => '0',
28371   'p5' => '0',
28372   'p6' => '0',
28373   'p7' => '0',
28374   'p8' => '0',
28375   'p9' => '0',
28376   'updated' => '0',
28377 ))
28378 ->values(array(
28379   'menu_name' => 'secondary-links',
28380   'mlid' => '140',
28381   'plid' => '0',
28382   'link_path' => 'https://www.drupal.org',
28383   'router_path' => '',
28384   'link_title' => 'Drupal.org',
28385   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}}',
28386   'module' => 'menu',
28387   'hidden' => '0',
28388   'external' => '1',
28389   'has_children' => '0',
28390   'expanded' => '0',
28391   'weight' => '-50',
28392   'depth' => '1',
28393   'customized' => '1',
28394   'p1' => '140',
28395   'p2' => '0',
28396   'p3' => '0',
28397   'p4' => '0',
28398   'p5' => '0',
28399   'p6' => '0',
28400   'p7' => '0',
28401   'p8' => '0',
28402   'p9' => '0',
28403   'updated' => '0',
28404 ))
28405 ->values(array(
28406   'menu_name' => 'navigation',
28407   'mlid' => '141',
28408   'plid' => '0',
28409   'link_path' => 'node',
28410   'router_path' => 'node',
28411   'link_title' => 'Content',
28412   'options' => 'a:0:{}',
28413   'module' => 'system',
28414   'hidden' => '-1',
28415   'external' => '0',
28416   'has_children' => '0',
28417   'expanded' => '0',
28418   'weight' => '0',
28419   'depth' => '1',
28420   'customized' => '0',
28421   'p1' => '141',
28422   'p2' => '0',
28423   'p3' => '0',
28424   'p4' => '0',
28425   'p5' => '0',
28426   'p6' => '0',
28427   'p7' => '0',
28428   'p8' => '0',
28429   'p9' => '0',
28430   'updated' => '0',
28431 ))
28432 ->values(array(
28433   'menu_name' => 'navigation',
28434   'mlid' => '142',
28435   'plid' => '0',
28436   'link_path' => 'rss.xml',
28437   'router_path' => 'rss.xml',
28438   'link_title' => 'RSS feed',
28439   'options' => 'a:0:{}',
28440   'module' => 'system',
28441   'hidden' => '-1',
28442   'external' => '0',
28443   'has_children' => '0',
28444   'expanded' => '0',
28445   'weight' => '0',
28446   'depth' => '1',
28447   'customized' => '0',
28448   'p1' => '142',
28449   'p2' => '0',
28450   'p3' => '0',
28451   'p4' => '0',
28452   'p5' => '0',
28453   'p6' => '0',
28454   'p7' => '0',
28455   'p8' => '0',
28456   'p9' => '0',
28457   'updated' => '0',
28458 ))
28459 ->values(array(
28460   'menu_name' => 'navigation',
28461   'mlid' => '143',
28462   'plid' => '0',
28463   'link_path' => 'batch',
28464   'router_path' => 'batch',
28465   'link_title' => '',
28466   'options' => 'a:0:{}',
28467   'module' => 'system',
28468   'hidden' => '-1',
28469   'external' => '0',
28470   'has_children' => '0',
28471   'expanded' => '0',
28472   'weight' => '0',
28473   'depth' => '1',
28474   'customized' => '0',
28475   'p1' => '143',
28476   'p2' => '0',
28477   'p3' => '0',
28478   'p4' => '0',
28479   'p5' => '0',
28480   'p6' => '0',
28481   'p7' => '0',
28482   'p8' => '0',
28483   'p9' => '0',
28484   'updated' => '0',
28485 ))
28486 ->values(array(
28487   'menu_name' => 'navigation',
28488   'mlid' => '144',
28489   'plid' => '0',
28490   'link_path' => 'admin',
28491   'router_path' => 'admin',
28492   'link_title' => 'Administer',
28493   'options' => 'a:0:{}',
28494   'module' => 'system',
28495   'hidden' => '0',
28496   'external' => '0',
28497   'has_children' => '1',
28498   'expanded' => '0',
28499   'weight' => '9',
28500   'depth' => '1',
28501   'customized' => '0',
28502   'p1' => '144',
28503   'p2' => '0',
28504   'p3' => '0',
28505   'p4' => '0',
28506   'p5' => '0',
28507   'p6' => '0',
28508   'p7' => '0',
28509   'p8' => '0',
28510   'p9' => '0',
28511   'updated' => '0',
28512 ))
28513 ->values(array(
28514   'menu_name' => 'navigation',
28515   'mlid' => '145',
28516   'plid' => '0',
28517   'link_path' => 'contact',
28518   'router_path' => 'contact',
28519   'link_title' => 'Contact',
28520   'options' => 'a:0:{}',
28521   'module' => 'system',
28522   'hidden' => '1',
28523   'external' => '0',
28524   'has_children' => '0',
28525   'expanded' => '0',
28526   'weight' => '0',
28527   'depth' => '1',
28528   'customized' => '0',
28529   'p1' => '145',
28530   'p2' => '0',
28531   'p3' => '0',
28532   'p4' => '0',
28533   'p5' => '0',
28534   'p6' => '0',
28535   'p7' => '0',
28536   'p8' => '0',
28537   'p9' => '0',
28538   'updated' => '0',
28539 ))
28540 ->values(array(
28541   'menu_name' => 'navigation',
28542   'mlid' => '147',
28543   'plid' => '0',
28544   'link_path' => 'logout',
28545   'router_path' => 'logout',
28546   'link_title' => 'Log out',
28547   'options' => 'a:0:{}',
28548   'module' => 'system',
28549   'hidden' => '0',
28550   'external' => '0',
28551   'has_children' => '0',
28552   'expanded' => '0',
28553   'weight' => '10',
28554   'depth' => '1',
28555   'customized' => '0',
28556   'p1' => '147',
28557   'p2' => '0',
28558   'p3' => '0',
28559   'p4' => '0',
28560   'p5' => '0',
28561   'p6' => '0',
28562   'p7' => '0',
28563   'p8' => '0',
28564   'p9' => '0',
28565   'updated' => '0',
28566 ))
28567 ->values(array(
28568   'menu_name' => 'navigation',
28569   'mlid' => '148',
28570   'plid' => '0',
28571   'link_path' => 'user',
28572   'router_path' => 'user',
28573   'link_title' => 'User account',
28574   'options' => 'a:0:{}',
28575   'module' => 'system',
28576   'hidden' => '-1',
28577   'external' => '0',
28578   'has_children' => '0',
28579   'expanded' => '0',
28580   'weight' => '0',
28581   'depth' => '1',
28582   'customized' => '0',
28583   'p1' => '148',
28584   'p2' => '0',
28585   'p3' => '0',
28586   'p4' => '0',
28587   'p5' => '0',
28588   'p6' => '0',
28589   'p7' => '0',
28590   'p8' => '0',
28591   'p9' => '0',
28592   'updated' => '0',
28593 ))
28594 ->values(array(
28595   'menu_name' => 'navigation',
28596   'mlid' => '149',
28597   'plid' => '0',
28598   'link_path' => 'profile',
28599   'router_path' => 'profile',
28600   'link_title' => 'User list',
28601   'options' => 'a:0:{}',
28602   'module' => 'system',
28603   'hidden' => '1',
28604   'external' => '0',
28605   'has_children' => '0',
28606   'expanded' => '0',
28607   'weight' => '0',
28608   'depth' => '1',
28609   'customized' => '0',
28610   'p1' => '149',
28611   'p2' => '0',
28612   'p3' => '0',
28613   'p4' => '0',
28614   'p5' => '0',
28615   'p6' => '0',
28616   'p7' => '0',
28617   'p8' => '0',
28618   'p9' => '0',
28619   'updated' => '0',
28620 ))
28621 ->values(array(
28622   'menu_name' => 'navigation',
28623   'mlid' => '150',
28624   'plid' => '0',
28625   'link_path' => 'node/%',
28626   'router_path' => 'node/%',
28627   'link_title' => '',
28628   'options' => 'a:0:{}',
28629   'module' => 'system',
28630   'hidden' => '-1',
28631   'external' => '0',
28632   'has_children' => '0',
28633   'expanded' => '0',
28634   'weight' => '0',
28635   'depth' => '1',
28636   'customized' => '0',
28637   'p1' => '150',
28638   'p2' => '0',
28639   'p3' => '0',
28640   'p4' => '0',
28641   'p5' => '0',
28642   'p6' => '0',
28643   'p7' => '0',
28644   'p8' => '0',
28645   'p9' => '0',
28646   'updated' => '0',
28647 ))
28648 ->values(array(
28649   'menu_name' => 'navigation',
28650   'mlid' => '151',
28651   'plid' => '0',
28652   'link_path' => 'content/js_add_more',
28653   'router_path' => 'content/js_add_more',
28654   'link_title' => '',
28655   'options' => 'a:0:{}',
28656   'module' => 'system',
28657   'hidden' => '-1',
28658   'external' => '0',
28659   'has_children' => '0',
28660   'expanded' => '0',
28661   'weight' => '0',
28662   'depth' => '1',
28663   'customized' => '0',
28664   'p1' => '151',
28665   'p2' => '0',
28666   'p3' => '0',
28667   'p4' => '0',
28668   'p5' => '0',
28669   'p6' => '0',
28670   'p7' => '0',
28671   'p8' => '0',
28672   'p9' => '0',
28673   'updated' => '0',
28674 ))
28675 ->values(array(
28676   'menu_name' => 'navigation',
28677   'mlid' => '152',
28678   'plid' => '0',
28679   'link_path' => 'upload/js',
28680   'router_path' => 'upload/js',
28681   'link_title' => '',
28682   'options' => 'a:0:{}',
28683   'module' => 'system',
28684   'hidden' => '-1',
28685   'external' => '0',
28686   'has_children' => '0',
28687   'expanded' => '0',
28688   'weight' => '0',
28689   'depth' => '1',
28690   'customized' => '0',
28691   'p1' => '152',
28692   'p2' => '0',
28693   'p3' => '0',
28694   'p4' => '0',
28695   'p5' => '0',
28696   'p6' => '0',
28697   'p7' => '0',
28698   'p8' => '0',
28699   'p9' => '0',
28700   'updated' => '0',
28701 ))
28702 ->values(array(
28703   'menu_name' => 'navigation',
28704   'mlid' => '153',
28705   'plid' => '0',
28706   'link_path' => 'taxonomy/autocomplete',
28707   'router_path' => 'taxonomy/autocomplete',
28708   'link_title' => 'Autocomplete taxonomy',
28709   'options' => 'a:0:{}',
28710   'module' => 'system',
28711   'hidden' => '-1',
28712   'external' => '0',
28713   'has_children' => '0',
28714   'expanded' => '0',
28715   'weight' => '0',
28716   'depth' => '1',
28717   'customized' => '0',
28718   'p1' => '153',
28719   'p2' => '0',
28720   'p3' => '0',
28721   'p4' => '0',
28722   'p5' => '0',
28723   'p6' => '0',
28724   'p7' => '0',
28725   'p8' => '0',
28726   'p9' => '0',
28727   'updated' => '0',
28728 ))
28729 ->values(array(
28730   'menu_name' => 'navigation',
28731   'mlid' => '155',
28732   'plid' => '144',
28733   'link_path' => 'admin/compact',
28734   'router_path' => 'admin/compact',
28735   'link_title' => 'Compact mode',
28736   'options' => 'a:0:{}',
28737   'module' => 'system',
28738   'hidden' => '-1',
28739   'external' => '0',
28740   'has_children' => '0',
28741   'expanded' => '0',
28742   'weight' => '0',
28743   'depth' => '2',
28744   'customized' => '0',
28745   'p1' => '144',
28746   'p2' => '155',
28747   'p3' => '0',
28748   'p4' => '0',
28749   'p5' => '0',
28750   'p6' => '0',
28751   'p7' => '0',
28752   'p8' => '0',
28753   'p9' => '0',
28754   'updated' => '0',
28755 ))
28756 ->values(array(
28757   'menu_name' => 'navigation',
28758   'mlid' => '156',
28759   'plid' => '0',
28760   'link_path' => 'filter/tips',
28761   'router_path' => 'filter/tips',
28762   'link_title' => 'Compose tips',
28763   'options' => 'a:0:{}',
28764   'module' => 'system',
28765   'hidden' => '1',
28766   'external' => '0',
28767   'has_children' => '0',
28768   'expanded' => '0',
28769   'weight' => '0',
28770   'depth' => '1',
28771   'customized' => '0',
28772   'p1' => '156',
28773   'p2' => '0',
28774   'p3' => '0',
28775   'p4' => '0',
28776   'p5' => '0',
28777   'p6' => '0',
28778   'p7' => '0',
28779   'p8' => '0',
28780   'p9' => '0',
28781   'updated' => '0',
28782 ))
28783 ->values(array(
28784   'menu_name' => 'navigation',
28785   'mlid' => '157',
28786   'plid' => '144',
28787   'link_path' => 'admin/content',
28788   'router_path' => 'admin/content',
28789   'link_title' => 'Content management',
28790   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:27:\"Manage your site's content.\";}}",
28791   'module' => 'system',
28792   'hidden' => '0',
28793   'external' => '0',
28794   'has_children' => '1',
28795   'expanded' => '0',
28796   'weight' => '-10',
28797   'depth' => '2',
28798   'customized' => '0',
28799   'p1' => '144',
28800   'p2' => '157',
28801   'p3' => '0',
28802   'p4' => '0',
28803   'p5' => '0',
28804   'p6' => '0',
28805   'p7' => '0',
28806   'p8' => '0',
28807   'p9' => '0',
28808   'updated' => '0',
28809 ))
28810 ->values(array(
28811   'menu_name' => 'navigation',
28812   'mlid' => '158',
28813   'plid' => '0',
28814   'link_path' => 'node/add',
28815   'router_path' => 'node/add',
28816   'link_title' => 'Create content',
28817   'options' => 'a:0:{}',
28818   'module' => 'system',
28819   'hidden' => '0',
28820   'external' => '0',
28821   'has_children' => '1',
28822   'expanded' => '0',
28823   'weight' => '1',
28824   'depth' => '1',
28825   'customized' => '0',
28826   'p1' => '158',
28827   'p2' => '0',
28828   'p3' => '0',
28829   'p4' => '0',
28830   'p5' => '0',
28831   'p6' => '0',
28832   'p7' => '0',
28833   'p8' => '0',
28834   'p9' => '0',
28835   'updated' => '0',
28836 ))
28837 ->values(array(
28838   'menu_name' => 'navigation',
28839   'mlid' => '159',
28840   'plid' => '0',
28841   'link_path' => 'comment/delete',
28842   'router_path' => 'comment/delete',
28843   'link_title' => 'Delete comment',
28844   'options' => 'a:0:{}',
28845   'module' => 'system',
28846   'hidden' => '-1',
28847   'external' => '0',
28848   'has_children' => '0',
28849   'expanded' => '0',
28850   'weight' => '0',
28851   'depth' => '1',
28852   'customized' => '0',
28853   'p1' => '159',
28854   'p2' => '0',
28855   'p3' => '0',
28856   'p4' => '0',
28857   'p5' => '0',
28858   'p6' => '0',
28859   'p7' => '0',
28860   'p8' => '0',
28861   'p9' => '0',
28862   'updated' => '0',
28863 ))
28864 ->values(array(
28865   'menu_name' => 'navigation',
28866   'mlid' => '160',
28867   'plid' => '0',
28868   'link_path' => 'comment/edit',
28869   'router_path' => 'comment/edit',
28870   'link_title' => 'Edit comment',
28871   'options' => 'a:0:{}',
28872   'module' => 'system',
28873   'hidden' => '-1',
28874   'external' => '0',
28875   'has_children' => '0',
28876   'expanded' => '0',
28877   'weight' => '0',
28878   'depth' => '1',
28879   'customized' => '0',
28880   'p1' => '160',
28881   'p2' => '0',
28882   'p3' => '0',
28883   'p4' => '0',
28884   'p5' => '0',
28885   'p6' => '0',
28886   'p7' => '0',
28887   'p8' => '0',
28888   'p9' => '0',
28889   'updated' => '0',
28890 ))
28891 ->values(array(
28892   'menu_name' => 'navigation',
28893   'mlid' => '161',
28894   'plid' => '0',
28895   'link_path' => 'system/files',
28896   'router_path' => 'system/files',
28897   'link_title' => 'File download',
28898   'options' => 'a:0:{}',
28899   'module' => 'system',
28900   'hidden' => '-1',
28901   'external' => '0',
28902   'has_children' => '0',
28903   'expanded' => '0',
28904   'weight' => '0',
28905   'depth' => '1',
28906   'customized' => '0',
28907   'p1' => '161',
28908   'p2' => '0',
28909   'p3' => '0',
28910   'p4' => '0',
28911   'p5' => '0',
28912   'p6' => '0',
28913   'p7' => '0',
28914   'p8' => '0',
28915   'p9' => '0',
28916   'updated' => '0',
28917 ))
28918 ->values(array(
28919   'menu_name' => 'navigation',
28920   'mlid' => '163',
28921   'plid' => '149',
28922   'link_path' => 'profile/autocomplete',
28923   'router_path' => 'profile/autocomplete',
28924   'link_title' => 'Profile autocomplete',
28925   'options' => 'a:0:{}',
28926   'module' => 'system',
28927   'hidden' => '-1',
28928   'external' => '0',
28929   'has_children' => '0',
28930   'expanded' => '0',
28931   'weight' => '0',
28932   'depth' => '2',
28933   'customized' => '0',
28934   'p1' => '149',
28935   'p2' => '163',
28936   'p3' => '0',
28937   'p4' => '0',
28938   'p5' => '0',
28939   'p6' => '0',
28940   'p7' => '0',
28941   'p8' => '0',
28942   'p9' => '0',
28943   'updated' => '0',
28944 ))
28945 ->values(array(
28946   'menu_name' => 'navigation',
28947   'mlid' => '165',
28948   'plid' => '144',
28949   'link_path' => 'admin/reports',
28950   'router_path' => 'admin/reports',
28951   'link_title' => 'Reports',
28952   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"View reports from system logs and other status information.";}}',
28953   'module' => 'system',
28954   'hidden' => '0',
28955   'external' => '0',
28956   'has_children' => '1',
28957   'expanded' => '0',
28958   'weight' => '5',
28959   'depth' => '2',
28960   'customized' => '0',
28961   'p1' => '144',
28962   'p2' => '165',
28963   'p3' => '0',
28964   'p4' => '0',
28965   'p5' => '0',
28966   'p6' => '0',
28967   'p7' => '0',
28968   'p8' => '0',
28969   'p9' => '0',
28970   'updated' => '0',
28971 ))
28972 ->values(array(
28973   'menu_name' => 'navigation',
28974   'mlid' => '166',
28975   'plid' => '144',
28976   'link_path' => 'admin/build',
28977   'router_path' => 'admin/build',
28978   'link_title' => 'Site building',
28979   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Control how your site looks and feels.";}}',
28980   'module' => 'system',
28981   'hidden' => '0',
28982   'external' => '0',
28983   'has_children' => '1',
28984   'expanded' => '0',
28985   'weight' => '-10',
28986   'depth' => '2',
28987   'customized' => '0',
28988   'p1' => '144',
28989   'p2' => '166',
28990   'p3' => '0',
28991   'p4' => '0',
28992   'p5' => '0',
28993   'p6' => '0',
28994   'p7' => '0',
28995   'p8' => '0',
28996   'p9' => '0',
28997   'updated' => '0',
28998 ))
28999 ->values(array(
29000   'menu_name' => 'navigation',
29001   'mlid' => '167',
29002   'plid' => '144',
29003   'link_path' => 'admin/settings',
29004   'router_path' => 'admin/settings',
29005   'link_title' => 'Site configuration',
29006   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:40:"Adjust basic site configuration options.";}}',
29007   'module' => 'system',
29008   'hidden' => '0',
29009   'external' => '0',
29010   'has_children' => '1',
29011   'expanded' => '0',
29012   'weight' => '-5',
29013   'depth' => '2',
29014   'customized' => '0',
29015   'p1' => '144',
29016   'p2' => '167',
29017   'p3' => '0',
29018   'p4' => '0',
29019   'p5' => '0',
29020   'p6' => '0',
29021   'p7' => '0',
29022   'p8' => '0',
29023   'p9' => '0',
29024   'updated' => '0',
29025 ))
29026 ->values(array(
29027   'menu_name' => 'navigation',
29028   'mlid' => '169',
29029   'plid' => '0',
29030   'link_path' => 'user/autocomplete',
29031   'router_path' => 'user/autocomplete',
29032   'link_title' => 'User autocomplete',
29033   'options' => 'a:0:{}',
29034   'module' => 'system',
29035   'hidden' => '-1',
29036   'external' => '0',
29037   'has_children' => '0',
29038   'expanded' => '0',
29039   'weight' => '0',
29040   'depth' => '1',
29041   'customized' => '0',
29042   'p1' => '169',
29043   'p2' => '0',
29044   'p3' => '0',
29045   'p4' => '0',
29046   'p5' => '0',
29047   'p6' => '0',
29048   'p7' => '0',
29049   'p8' => '0',
29050   'p9' => '0',
29051   'updated' => '0',
29052 ))
29053 ->values(array(
29054   'menu_name' => 'navigation',
29055   'mlid' => '170',
29056   'plid' => '144',
29057   'link_path' => 'admin/user',
29058   'router_path' => 'admin/user',
29059   'link_title' => 'User management',
29060   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:61:\"Manage your site's users, groups and access to site features.\";}}",
29061   'module' => 'system',
29062   'hidden' => '0',
29063   'external' => '0',
29064   'has_children' => '1',
29065   'expanded' => '0',
29066   'weight' => '0',
29067   'depth' => '2',
29068   'customized' => '0',
29069   'p1' => '144',
29070   'p2' => '170',
29071   'p3' => '0',
29072   'p4' => '0',
29073   'p5' => '0',
29074   'p6' => '0',
29075   'p7' => '0',
29076   'p8' => '0',
29077   'p9' => '0',
29078   'updated' => '0',
29079 ))
29080 ->values(array(
29081   'menu_name' => 'navigation',
29082   'mlid' => '171',
29083   'plid' => '0',
29084   'link_path' => 'user/timezone',
29085   'router_path' => 'user/timezone',
29086   'link_title' => 'User timezone',
29087   'options' => 'a:0:{}',
29088   'module' => 'system',
29089   'hidden' => '-1',
29090   'external' => '0',
29091   'has_children' => '0',
29092   'expanded' => '0',
29093   'weight' => '0',
29094   'depth' => '1',
29095   'customized' => '0',
29096   'p1' => '171',
29097   'p2' => '0',
29098   'p3' => '0',
29099   'p4' => '0',
29100   'p5' => '0',
29101   'p6' => '0',
29102   'p7' => '0',
29103   'p8' => '0',
29104   'p9' => '0',
29105   'updated' => '0',
29106 ))
29107 ->values(array(
29108   'menu_name' => 'navigation',
29109   'mlid' => '172',
29110   'plid' => '0',
29111   'link_path' => 'user/%',
29112   'router_path' => 'user/%',
29113   'link_title' => 'My account',
29114   'options' => 'a:0:{}',
29115   'module' => 'system',
29116   'hidden' => '0',
29117   'external' => '0',
29118   'has_children' => '0',
29119   'expanded' => '0',
29120   'weight' => '0',
29121   'depth' => '1',
29122   'customized' => '0',
29123   'p1' => '172',
29124   'p2' => '0',
29125   'p3' => '0',
29126   'p4' => '0',
29127   'p5' => '0',
29128   'p6' => '0',
29129   'p7' => '0',
29130   'p8' => '0',
29131   'p9' => '0',
29132   'updated' => '0',
29133 ))
29134 ->values(array(
29135   'menu_name' => 'navigation',
29136   'mlid' => '175',
29137   'plid' => '170',
29138   'link_path' => 'admin/user/rules',
29139   'router_path' => 'admin/user/rules',
29140   'link_title' => 'Access rules',
29141   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:80:"List and create rules to disallow usernames, e-mail addresses, and IP addresses.";}}',
29142   'module' => 'system',
29143   'hidden' => '0',
29144   'external' => '0',
29145   'has_children' => '0',
29146   'expanded' => '0',
29147   'weight' => '0',
29148   'depth' => '3',
29149   'customized' => '0',
29150   'p1' => '144',
29151   'p2' => '170',
29152   'p3' => '175',
29153   'p4' => '0',
29154   'p5' => '0',
29155   'p6' => '0',
29156   'p7' => '0',
29157   'p8' => '0',
29158   'p9' => '0',
29159   'updated' => '0',
29160 ))
29161 ->values(array(
29162   'menu_name' => 'navigation',
29163   'mlid' => '176',
29164   'plid' => '167',
29165   'link_path' => 'admin/settings/actions',
29166   'router_path' => 'admin/settings/actions',
29167   'link_title' => 'Actions',
29168   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}',
29169   'module' => 'system',
29170   'hidden' => '0',
29171   'external' => '0',
29172   'has_children' => '0',
29173   'expanded' => '0',
29174   'weight' => '0',
29175   'depth' => '3',
29176   'customized' => '0',
29177   'p1' => '144',
29178   'p2' => '167',
29179   'p3' => '176',
29180   'p4' => '0',
29181   'p5' => '0',
29182   'p6' => '0',
29183   'p7' => '0',
29184   'p8' => '0',
29185   'p9' => '0',
29186   'updated' => '0',
29187 ))
29188 ->values(array(
29189   'menu_name' => 'navigation',
29190   'mlid' => '177',
29191   'plid' => '167',
29192   'link_path' => 'admin/settings/admin',
29193   'router_path' => 'admin/settings/admin',
29194   'link_title' => 'Administration theme',
29195   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Settings for how your administrative pages should look.";}}',
29196   'module' => 'system',
29197   'hidden' => '0',
29198   'external' => '0',
29199   'has_children' => '0',
29200   'expanded' => '0',
29201   'weight' => '0',
29202   'depth' => '3',
29203   'customized' => '0',
29204   'p1' => '144',
29205   'p2' => '167',
29206   'p3' => '177',
29207   'p4' => '0',
29208   'p5' => '0',
29209   'p6' => '0',
29210   'p7' => '0',
29211   'p8' => '0',
29212   'p9' => '0',
29213   'updated' => '0',
29214 ))
29215 ->values(array(
29216   'menu_name' => 'navigation',
29217   'mlid' => '178',
29218   'plid' => '158',
29219   'link_path' => 'node/add/article',
29220   'router_path' => 'node/add/article',
29221   'link_title' => 'Article',
29222   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"An <em>article</em>, content type.";}}',
29223   'module' => 'system',
29224   'hidden' => '0',
29225   'external' => '0',
29226   'has_children' => '0',
29227   'expanded' => '0',
29228   'weight' => '0',
29229   'depth' => '2',
29230   'customized' => '0',
29231   'p1' => '158',
29232   'p2' => '178',
29233   'p3' => '0',
29234   'p4' => '0',
29235   'p5' => '0',
29236   'p6' => '0',
29237   'p7' => '0',
29238   'p8' => '0',
29239   'p9' => '0',
29240   'updated' => '0',
29241 ))
29242 ->values(array(
29243   'menu_name' => 'navigation',
29244   'mlid' => '179',
29245   'plid' => '166',
29246   'link_path' => 'admin/build/block',
29247   'router_path' => 'admin/build/block',
29248   'link_title' => 'Blocks',
29249   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:79:\"Configure what block content appears in your site's sidebars and other regions.\";}}",
29250   'module' => 'system',
29251   'hidden' => '0',
29252   'external' => '0',
29253   'has_children' => '0',
29254   'expanded' => '0',
29255   'weight' => '0',
29256   'depth' => '3',
29257   'customized' => '0',
29258   'p1' => '144',
29259   'p2' => '166',
29260   'p3' => '179',
29261   'p4' => '0',
29262   'p5' => '0',
29263   'p6' => '0',
29264   'p7' => '0',
29265   'p8' => '0',
29266   'p9' => '0',
29267   'updated' => '0',
29268 ))
29269 ->values(array(
29270   'menu_name' => 'navigation',
29271   'mlid' => '180',
29272   'plid' => '167',
29273   'link_path' => 'admin/settings/clean-urls',
29274   'router_path' => 'admin/settings/clean-urls',
29275   'link_title' => 'Clean URLs',
29276   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Enable or disable clean URLs for your site.";}}',
29277   'module' => 'system',
29278   'hidden' => '0',
29279   'external' => '0',
29280   'has_children' => '0',
29281   'expanded' => '0',
29282   'weight' => '0',
29283   'depth' => '3',
29284   'customized' => '0',
29285   'p1' => '144',
29286   'p2' => '167',
29287   'p3' => '180',
29288   'p4' => '0',
29289   'p5' => '0',
29290   'p6' => '0',
29291   'p7' => '0',
29292   'p8' => '0',
29293   'p9' => '0',
29294   'updated' => '0',
29295 ))
29296 ->values(array(
29297   'menu_name' => 'navigation',
29298   'mlid' => '181',
29299   'plid' => '157',
29300   'link_path' => 'admin/content/comment',
29301   'router_path' => 'admin/content/comment',
29302   'link_title' => 'Comments',
29303   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:61:"List and edit site comments and the comment moderation queue.";}}',
29304   'module' => 'system',
29305   'hidden' => '0',
29306   'external' => '0',
29307   'has_children' => '0',
29308   'expanded' => '0',
29309   'weight' => '0',
29310   'depth' => '3',
29311   'customized' => '0',
29312   'p1' => '144',
29313   'p2' => '157',
29314   'p3' => '181',
29315   'p4' => '0',
29316   'p5' => '0',
29317   'p6' => '0',
29318   'p7' => '0',
29319   'p8' => '0',
29320   'p9' => '0',
29321   'updated' => '0',
29322 ))
29323 ->values(array(
29324   'menu_name' => 'navigation',
29325   'mlid' => '182',
29326   'plid' => '158',
29327   'link_path' => 'node/add/company',
29328   'router_path' => 'node/add/company',
29329   'link_title' => 'Company',
29330   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Company node type";}}',
29331   'module' => 'system',
29332   'hidden' => '0',
29333   'external' => '0',
29334   'has_children' => '0',
29335   'expanded' => '0',
29336   'weight' => '0',
29337   'depth' => '2',
29338   'customized' => '0',
29339   'p1' => '158',
29340   'p2' => '182',
29341   'p3' => '0',
29342   'p4' => '0',
29343   'p5' => '0',
29344   'p6' => '0',
29345   'p7' => '0',
29346   'p8' => '0',
29347   'p9' => '0',
29348   'updated' => '0',
29349 ))
29350 ->values(array(
29351   'menu_name' => 'navigation',
29352   'mlid' => '183',
29353   'plid' => '166',
29354   'link_path' => 'admin/build/contact',
29355   'router_path' => 'admin/build/contact',
29356   'link_title' => 'Contact form',
29357   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:71:"Create a system contact form and set up categories for the form to use.";}}',
29358   'module' => 'system',
29359   'hidden' => '0',
29360   'external' => '0',
29361   'has_children' => '0',
29362   'expanded' => '0',
29363   'weight' => '0',
29364   'depth' => '3',
29365   'customized' => '0',
29366   'p1' => '144',
29367   'p2' => '166',
29368   'p3' => '183',
29369   'p4' => '0',
29370   'p5' => '0',
29371   'p6' => '0',
29372   'p7' => '0',
29373   'p8' => '0',
29374   'p9' => '0',
29375   'updated' => '0',
29376 ))
29377 ->values(array(
29378   'menu_name' => 'navigation',
29379   'mlid' => '184',
29380   'plid' => '157',
29381   'link_path' => 'admin/content/node',
29382   'router_path' => 'admin/content/node',
29383   'link_title' => 'Content',
29384   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View, edit, and delete your site's content.\";}}",
29385   'module' => 'system',
29386   'hidden' => '0',
29387   'external' => '0',
29388   'has_children' => '0',
29389   'expanded' => '0',
29390   'weight' => '0',
29391   'depth' => '3',
29392   'customized' => '0',
29393   'p1' => '144',
29394   'p2' => '157',
29395   'p3' => '184',
29396   'p4' => '0',
29397   'p5' => '0',
29398   'p6' => '0',
29399   'p7' => '0',
29400   'p8' => '0',
29401   'p9' => '0',
29402   'updated' => '0',
29403 ))
29404 ->values(array(
29405   'menu_name' => 'navigation',
29406   'mlid' => '185',
29407   'plid' => '157',
29408   'link_path' => 'admin/content/types',
29409   'router_path' => 'admin/content/types',
29410   'link_title' => 'Content types',
29411   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:82:"Manage posts by content type, including default status, front page promotion, etc.";}}',
29412   'module' => 'system',
29413   'hidden' => '0',
29414   'external' => '0',
29415   'has_children' => '0',
29416   'expanded' => '0',
29417   'weight' => '0',
29418   'depth' => '3',
29419   'customized' => '0',
29420   'p1' => '144',
29421   'p2' => '157',
29422   'p3' => '185',
29423   'p4' => '0',
29424   'p5' => '0',
29425   'p6' => '0',
29426   'p7' => '0',
29427   'p8' => '0',
29428   'p9' => '0',
29429   'updated' => '0',
29430 ))
29431 ->values(array(
29432   'menu_name' => 'navigation',
29433   'mlid' => '186',
29434   'plid' => '167',
29435   'link_path' => 'admin/settings/date-time',
29436   'router_path' => 'admin/settings/date-time',
29437   'link_title' => 'Date and time',
29438   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:89:\"Settings for how Drupal displays date and time, as well as the system's default timezone.\";}}",
29439   'module' => 'system',
29440   'hidden' => '0',
29441   'external' => '0',
29442   'has_children' => '0',
29443   'expanded' => '0',
29444   'weight' => '0',
29445   'depth' => '3',
29446   'customized' => '0',
29447   'p1' => '144',
29448   'p2' => '167',
29449   'p3' => '186',
29450   'p4' => '0',
29451   'p5' => '0',
29452   'p6' => '0',
29453   'p7' => '0',
29454   'p8' => '0',
29455   'p9' => '0',
29456   'updated' => '0',
29457 ))
29458 ->values(array(
29459   'menu_name' => 'navigation',
29460   'mlid' => '187',
29461   'plid' => '0',
29462   'link_path' => 'node/%/delete',
29463   'router_path' => 'node/%/delete',
29464   'link_title' => 'Delete',
29465   'options' => 'a:0:{}',
29466   'module' => 'system',
29467   'hidden' => '-1',
29468   'external' => '0',
29469   'has_children' => '0',
29470   'expanded' => '0',
29471   'weight' => '1',
29472   'depth' => '1',
29473   'customized' => '0',
29474   'p1' => '187',
29475   'p2' => '0',
29476   'p3' => '0',
29477   'p4' => '0',
29478   'p5' => '0',
29479   'p6' => '0',
29480   'p7' => '0',
29481   'p8' => '0',
29482   'p9' => '0',
29483   'updated' => '0',
29484 ))
29485 ->values(array(
29486   'menu_name' => 'navigation',
29487   'mlid' => '188',
29488   'plid' => '172',
29489   'link_path' => 'user/%/delete',
29490   'router_path' => 'user/%/delete',
29491   'link_title' => 'Delete',
29492   'options' => 'a:0:{}',
29493   'module' => 'system',
29494   'hidden' => '-1',
29495   'external' => '0',
29496   'has_children' => '0',
29497   'expanded' => '0',
29498   'weight' => '0',
29499   'depth' => '2',
29500   'customized' => '0',
29501   'p1' => '172',
29502   'p2' => '188',
29503   'p3' => '0',
29504   'p4' => '0',
29505   'p5' => '0',
29506   'p6' => '0',
29507   'p7' => '0',
29508   'p8' => '0',
29509   'p9' => '0',
29510   'updated' => '0',
29511 ))
29512 ->values(array(
29513   'menu_name' => 'navigation',
29514   'mlid' => '189',
29515   'plid' => '158',
29516   'link_path' => 'node/add/employee',
29517   'router_path' => 'node/add/employee',
29518   'link_title' => 'Employee',
29519   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:18:"Employee node type";}}',
29520   'module' => 'system',
29521   'hidden' => '0',
29522   'external' => '0',
29523   'has_children' => '0',
29524   'expanded' => '0',
29525   'weight' => '0',
29526   'depth' => '2',
29527   'customized' => '0',
29528   'p1' => '158',
29529   'p2' => '189',
29530   'p3' => '0',
29531   'p4' => '0',
29532   'p5' => '0',
29533   'p6' => '0',
29534   'p7' => '0',
29535   'p8' => '0',
29536   'p9' => '0',
29537   'updated' => '0',
29538 ))
29539 ->values(array(
29540   'menu_name' => 'navigation',
29541   'mlid' => '190',
29542   'plid' => '167',
29543   'link_path' => 'admin/settings/error-reporting',
29544   'router_path' => 'admin/settings/error-reporting',
29545   'link_title' => 'Error reporting',
29546   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:93:"Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.";}}',
29547   'module' => 'system',
29548   'hidden' => '0',
29549   'external' => '0',
29550   'has_children' => '0',
29551   'expanded' => '0',
29552   'weight' => '0',
29553   'depth' => '3',
29554   'customized' => '0',
29555   'p1' => '144',
29556   'p2' => '167',
29557   'p3' => '190',
29558   'p4' => '0',
29559   'p5' => '0',
29560   'p6' => '0',
29561   'p7' => '0',
29562   'p8' => '0',
29563   'p9' => '0',
29564   'updated' => '0',
29565 ))
29566 ->values(array(
29567   'menu_name' => 'navigation',
29568   'mlid' => '192',
29569   'plid' => '167',
29570   'link_path' => 'admin/settings/file-system',
29571   'router_path' => 'admin/settings/file-system',
29572   'link_title' => 'File system',
29573   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:68:"Tell Drupal where to store uploaded files and how they are accessed.";}}',
29574   'module' => 'system',
29575   'hidden' => '0',
29576   'external' => '0',
29577   'has_children' => '0',
29578   'expanded' => '0',
29579   'weight' => '0',
29580   'depth' => '3',
29581   'customized' => '0',
29582   'p1' => '144',
29583   'p2' => '167',
29584   'p3' => '192',
29585   'p4' => '0',
29586   'p5' => '0',
29587   'p6' => '0',
29588   'p7' => '0',
29589   'p8' => '0',
29590   'p9' => '0',
29591   'updated' => '0',
29592 ))
29593 ->values(array(
29594   'menu_name' => 'navigation',
29595   'mlid' => '193',
29596   'plid' => '167',
29597   'link_path' => 'admin/settings/uploads',
29598   'router_path' => 'admin/settings/uploads',
29599   'link_title' => 'File uploads',
29600   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Control how files may be attached to content.";}}',
29601   'module' => 'system',
29602   'hidden' => '0',
29603   'external' => '0',
29604   'has_children' => '0',
29605   'expanded' => '0',
29606   'weight' => '0',
29607   'depth' => '3',
29608   'customized' => '0',
29609   'p1' => '144',
29610   'p2' => '167',
29611   'p3' => '193',
29612   'p4' => '0',
29613   'p5' => '0',
29614   'p6' => '0',
29615   'p7' => '0',
29616   'p8' => '0',
29617   'p9' => '0',
29618   'updated' => '0',
29619 ))
29620 ->values(array(
29621   'menu_name' => 'navigation',
29622   'mlid' => '194',
29623   'plid' => '167',
29624   'link_path' => 'admin/settings/image-toolkit',
29625   'router_path' => 'admin/settings/image-toolkit',
29626   'link_title' => 'Image toolkit',
29627   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:74:"Choose which image toolkit to use if you have installed optional toolkits.";}}',
29628   'module' => 'system',
29629   'hidden' => '0',
29630   'external' => '0',
29631   'has_children' => '0',
29632   'expanded' => '0',
29633   'weight' => '0',
29634   'depth' => '3',
29635   'customized' => '0',
29636   'p1' => '144',
29637   'p2' => '167',
29638   'p3' => '194',
29639   'p4' => '0',
29640   'p5' => '0',
29641   'p6' => '0',
29642   'p7' => '0',
29643   'p8' => '0',
29644   'p9' => '0',
29645   'updated' => '0',
29646 ))
29647 ->values(array(
29648   'menu_name' => 'navigation',
29649   'mlid' => '195',
29650   'plid' => '167',
29651   'link_path' => 'admin/settings/filters',
29652   'router_path' => 'admin/settings/filters',
29653   'link_title' => 'Input formats',
29654   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:127:"Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.";}}',
29655   'module' => 'system',
29656   'hidden' => '0',
29657   'external' => '0',
29658   'has_children' => '0',
29659   'expanded' => '0',
29660   'weight' => '0',
29661   'depth' => '3',
29662   'customized' => '0',
29663   'p1' => '144',
29664   'p2' => '167',
29665   'p3' => '195',
29666   'p4' => '0',
29667   'p5' => '0',
29668   'p6' => '0',
29669   'p7' => '0',
29670   'p8' => '0',
29671   'p9' => '0',
29672   'updated' => '0',
29673 ))
29674 ->values(array(
29675   'menu_name' => 'navigation',
29676   'mlid' => '196',
29677   'plid' => '167',
29678   'link_path' => 'admin/settings/logging',
29679   'router_path' => 'admin/settings/logging',
29680   'link_title' => 'Logging and alerts',
29681   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:156:\"Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.\";}}",
29682   'module' => 'system',
29683   'hidden' => '0',
29684   'external' => '0',
29685   'has_children' => '0',
29686   'expanded' => '0',
29687   'weight' => '0',
29688   'depth' => '3',
29689   'customized' => '0',
29690   'p1' => '144',
29691   'p2' => '167',
29692   'p3' => '196',
29693   'p4' => '0',
29694   'p5' => '0',
29695   'p6' => '0',
29696   'p7' => '0',
29697   'p8' => '0',
29698   'p9' => '0',
29699   'updated' => '0',
29700 ))
29701 ->values(array(
29702   'menu_name' => 'navigation',
29703   'mlid' => '197',
29704   'plid' => '166',
29705   'link_path' => 'admin/build/menu',
29706   'router_path' => 'admin/build/menu',
29707   'link_title' => 'Menus',
29708   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:116:\"Control your site's navigation menu, primary links and secondary links, as well as rename and reorganize menu items.\";}}",
29709   'module' => 'system',
29710   'hidden' => '0',
29711   'external' => '0',
29712   'has_children' => '0',
29713   'expanded' => '0',
29714   'weight' => '0',
29715   'depth' => '3',
29716   'customized' => '0',
29717   'p1' => '144',
29718   'p2' => '166',
29719   'p3' => '197',
29720   'p4' => '0',
29721   'p5' => '0',
29722   'p6' => '0',
29723   'p7' => '0',
29724   'p8' => '0',
29725   'p9' => '0',
29726   'updated' => '0',
29727 ))
29728 ->values(array(
29729   'menu_name' => 'navigation',
29730   'mlid' => '198',
29731   'plid' => '158',
29732   'link_path' => 'node/add/test-event',
29733   'router_path' => 'node/add/test-event',
29734   'link_title' => 'Migrate test event',
29735   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:27:"test event description here";}}',
29736   'module' => 'system',
29737   'hidden' => '0',
29738   'external' => '0',
29739   'has_children' => '0',
29740   'expanded' => '0',
29741   'weight' => '0',
29742   'depth' => '2',
29743   'customized' => '0',
29744   'p1' => '158',
29745   'p2' => '198',
29746   'p3' => '0',
29747   'p4' => '0',
29748   'p5' => '0',
29749   'p6' => '0',
29750   'p7' => '0',
29751   'p8' => '0',
29752   'p9' => '0',
29753   'updated' => '0',
29754 ))
29755 ->values(array(
29756   'menu_name' => 'navigation',
29757   'mlid' => '199',
29758   'plid' => '158',
29759   'link_path' => 'node/add/test-page',
29760   'router_path' => 'node/add/test-page',
29761   'link_title' => 'Migrate test page',
29762   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:296:\"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.\";}}",
29763   'module' => 'system',
29764   'hidden' => '0',
29765   'external' => '0',
29766   'has_children' => '0',
29767   'expanded' => '0',
29768   'weight' => '0',
29769   'depth' => '2',
29770   'customized' => '0',
29771   'p1' => '158',
29772   'p2' => '199',
29773   'p3' => '0',
29774   'p4' => '0',
29775   'p5' => '0',
29776   'p6' => '0',
29777   'p7' => '0',
29778   'p8' => '0',
29779   'p9' => '0',
29780   'updated' => '0',
29781 ))
29782 ->values(array(
29783   'menu_name' => 'navigation',
29784   'mlid' => '200',
29785   'plid' => '158',
29786   'link_path' => 'node/add/test-planet',
29787   'router_path' => 'node/add/test-planet',
29788   'link_title' => 'Migrate test planet',
29789   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:392:\"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.\";}}",
29790   'module' => 'system',
29791   'hidden' => '0',
29792   'external' => '0',
29793   'has_children' => '0',
29794   'expanded' => '0',
29795   'weight' => '0',
29796   'depth' => '2',
29797   'customized' => '0',
29798   'p1' => '158',
29799   'p2' => '200',
29800   'p3' => '0',
29801   'p4' => '0',
29802   'p5' => '0',
29803   'p6' => '0',
29804   'p7' => '0',
29805   'p8' => '0',
29806   'p9' => '0',
29807   'updated' => '0',
29808 ))
29809 ->values(array(
29810   'menu_name' => 'navigation',
29811   'mlid' => '201',
29812   'plid' => '158',
29813   'link_path' => 'node/add/test-story',
29814   'router_path' => 'node/add/test-story',
29815   'link_title' => 'Migrate test story',
29816   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:392:\"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.\";}}",
29817   'module' => 'system',
29818   'hidden' => '0',
29819   'external' => '0',
29820   'has_children' => '0',
29821   'expanded' => '0',
29822   'weight' => '0',
29823   'depth' => '2',
29824   'customized' => '0',
29825   'p1' => '158',
29826   'p2' => '201',
29827   'p3' => '0',
29828   'p4' => '0',
29829   'p5' => '0',
29830   'p6' => '0',
29831   'p7' => '0',
29832   'p8' => '0',
29833   'p9' => '0',
29834   'updated' => '0',
29835 ))
29836 ->values(array(
29837   'menu_name' => 'navigation',
29838   'mlid' => '202',
29839   'plid' => '166',
29840   'link_path' => 'admin/build/modules',
29841   'router_path' => 'admin/build/modules',
29842   'link_title' => 'Modules',
29843   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Enable or disable add-on modules for your site.";}}',
29844   'module' => 'system',
29845   'hidden' => '0',
29846   'external' => '0',
29847   'has_children' => '0',
29848   'expanded' => '0',
29849   'weight' => '0',
29850   'depth' => '3',
29851   'customized' => '0',
29852   'p1' => '144',
29853   'p2' => '166',
29854   'p3' => '202',
29855   'p4' => '0',
29856   'p5' => '0',
29857   'p6' => '0',
29858   'p7' => '0',
29859   'p8' => '0',
29860   'p9' => '0',
29861   'updated' => '0',
29862 ))
29863 ->values(array(
29864   'menu_name' => 'navigation',
29865   'mlid' => '203',
29866   'plid' => '167',
29867   'link_path' => 'admin/settings/performance',
29868   'router_path' => 'admin/settings/performance',
29869   'link_title' => 'Performance',
29870   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:101:"Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.";}}',
29871   'module' => 'system',
29872   'hidden' => '0',
29873   'external' => '0',
29874   'has_children' => '0',
29875   'expanded' => '0',
29876   'weight' => '0',
29877   'depth' => '3',
29878   'customized' => '0',
29879   'p1' => '144',
29880   'p2' => '167',
29881   'p3' => '203',
29882   'p4' => '0',
29883   'p5' => '0',
29884   'p6' => '0',
29885   'p7' => '0',
29886   'p8' => '0',
29887   'p9' => '0',
29888   'updated' => '0',
29889 ))
29890 ->values(array(
29891   'menu_name' => 'navigation',
29892   'mlid' => '204',
29893   'plid' => '170',
29894   'link_path' => 'admin/user/permissions',
29895   'router_path' => 'admin/user/permissions',
29896   'link_title' => 'Permissions',
29897   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}',
29898   'module' => 'system',
29899   'hidden' => '0',
29900   'external' => '0',
29901   'has_children' => '0',
29902   'expanded' => '0',
29903   'weight' => '0',
29904   'depth' => '3',
29905   'customized' => '0',
29906   'p1' => '144',
29907   'p2' => '170',
29908   'p3' => '204',
29909   'p4' => '0',
29910   'p5' => '0',
29911   'p6' => '0',
29912   'p7' => '0',
29913   'p8' => '0',
29914   'p9' => '0',
29915   'updated' => '0',
29916 ))
29917 ->values(array(
29918   'menu_name' => 'navigation',
29919   'mlid' => '205',
29920   'plid' => '157',
29921   'link_path' => 'admin/content/node-settings',
29922   'router_path' => 'admin/content/node-settings',
29923   'link_title' => 'Post settings',
29924   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:126:"Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.";}}',
29925   'module' => 'system',
29926   'hidden' => '0',
29927   'external' => '0',
29928   'has_children' => '0',
29929   'expanded' => '0',
29930   'weight' => '0',
29931   'depth' => '3',
29932   'customized' => '0',
29933   'p1' => '144',
29934   'p2' => '157',
29935   'p3' => '205',
29936   'p4' => '0',
29937   'p5' => '0',
29938   'p6' => '0',
29939   'p7' => '0',
29940   'p8' => '0',
29941   'p9' => '0',
29942   'updated' => '0',
29943 ))
29944 ->values(array(
29945   'menu_name' => 'navigation',
29946   'mlid' => '206',
29947   'plid' => '170',
29948   'link_path' => 'admin/user/profile',
29949   'router_path' => 'admin/user/profile',
29950   'link_title' => 'Profiles',
29951   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:42:"Create customizable fields for your users.";}}',
29952   'module' => 'system',
29953   'hidden' => '0',
29954   'external' => '0',
29955   'has_children' => '0',
29956   'expanded' => '0',
29957   'weight' => '0',
29958   'depth' => '3',
29959   'customized' => '0',
29960   'p1' => '144',
29961   'p2' => '170',
29962   'p3' => '206',
29963   'p4' => '0',
29964   'p5' => '0',
29965   'p6' => '0',
29966   'p7' => '0',
29967   'p8' => '0',
29968   'p9' => '0',
29969   'updated' => '0',
29970 ))
29971 ->values(array(
29972   'menu_name' => 'navigation',
29973   'mlid' => '207',
29974   'plid' => '157',
29975   'link_path' => 'admin/content/rss-publishing',
29976   'router_path' => 'admin/content/rss-publishing',
29977   'link_title' => 'RSS publishing',
29978   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:92:"Configure the number of items per feed and whether feeds should be titles/teasers/full-text.";}}',
29979   'module' => 'system',
29980   'hidden' => '0',
29981   'external' => '0',
29982   'has_children' => '0',
29983   'expanded' => '0',
29984   'weight' => '0',
29985   'depth' => '3',
29986   'customized' => '0',
29987   'p1' => '144',
29988   'p2' => '157',
29989   'p3' => '207',
29990   'p4' => '0',
29991   'p5' => '0',
29992   'p6' => '0',
29993   'p7' => '0',
29994   'p8' => '0',
29995   'p9' => '0',
29996   'updated' => '0',
29997 ))
29998 ->values(array(
29999   'menu_name' => 'navigation',
30000   'mlid' => '208',
30001   'plid' => '0',
30002   'link_path' => 'comment/reply/%',
30003   'router_path' => 'comment/reply/%',
30004   'link_title' => 'Reply to comment',
30005   'options' => 'a:0:{}',
30006   'module' => 'system',
30007   'hidden' => '-1',
30008   'external' => '0',
30009   'has_children' => '0',
30010   'expanded' => '0',
30011   'weight' => '0',
30012   'depth' => '1',
30013   'customized' => '0',
30014   'p1' => '208',
30015   'p2' => '0',
30016   'p3' => '0',
30017   'p4' => '0',
30018   'p5' => '0',
30019   'p6' => '0',
30020   'p7' => '0',
30021   'p8' => '0',
30022   'p9' => '0',
30023   'updated' => '0',
30024 ))
30025 ->values(array(
30026   'menu_name' => 'navigation',
30027   'mlid' => '209',
30028   'plid' => '170',
30029   'link_path' => 'admin/user/roles',
30030   'router_path' => 'admin/user/roles',
30031   'link_title' => 'Roles',
30032   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"List, edit, or add user roles.";}}',
30033   'module' => 'system',
30034   'hidden' => '0',
30035   'external' => '0',
30036   'has_children' => '0',
30037   'expanded' => '0',
30038   'weight' => '0',
30039   'depth' => '3',
30040   'customized' => '0',
30041   'p1' => '144',
30042   'p2' => '170',
30043   'p3' => '209',
30044   'p4' => '0',
30045   'p5' => '0',
30046   'p6' => '0',
30047   'p7' => '0',
30048   'p8' => '0',
30049   'p9' => '0',
30050   'updated' => '0',
30051 ))
30052 ->values(array(
30053   'menu_name' => 'navigation',
30054   'mlid' => '210',
30055   'plid' => '167',
30056   'link_path' => 'admin/settings/site-information',
30057   'router_path' => 'admin/settings/site-information',
30058   'link_title' => 'Site information',
30059   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:107:"Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.";}}',
30060   'module' => 'system',
30061   'hidden' => '0',
30062   'external' => '0',
30063   'has_children' => '0',
30064   'expanded' => '0',
30065   'weight' => '0',
30066   'depth' => '3',
30067   'customized' => '0',
30068   'p1' => '144',
30069   'p2' => '167',
30070   'p3' => '210',
30071   'p4' => '0',
30072   'p5' => '0',
30073   'p6' => '0',
30074   'p7' => '0',
30075   'p8' => '0',
30076   'p9' => '0',
30077   'updated' => '0',
30078 ))
30079 ->values(array(
30080   'menu_name' => 'navigation',
30081   'mlid' => '211',
30082   'plid' => '167',
30083   'link_path' => 'admin/settings/site-maintenance',
30084   'router_path' => 'admin/settings/site-maintenance',
30085   'link_title' => 'Site maintenance',
30086   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:63:"Take the site off-line for maintenance or bring it back online.";}}',
30087   'module' => 'system',
30088   'hidden' => '0',
30089   'external' => '0',
30090   'has_children' => '0',
30091   'expanded' => '0',
30092   'weight' => '0',
30093   'depth' => '3',
30094   'customized' => '0',
30095   'p1' => '144',
30096   'p2' => '167',
30097   'p3' => '211',
30098   'p4' => '0',
30099   'p5' => '0',
30100   'p6' => '0',
30101   'p7' => '0',
30102   'p8' => '0',
30103   'p9' => '0',
30104   'updated' => '0',
30105 ))
30106 ->values(array(
30107   'menu_name' => 'navigation',
30108   'mlid' => '212',
30109   'plid' => '158',
30110   'link_path' => 'node/add/sponsor',
30111   'router_path' => 'node/add/sponsor',
30112   'link_title' => 'Sponsor',
30113   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Sponsor node type";}}',
30114   'module' => 'system',
30115   'hidden' => '0',
30116   'external' => '0',
30117   'has_children' => '0',
30118   'expanded' => '0',
30119   'weight' => '0',
30120   'depth' => '2',
30121   'customized' => '0',
30122   'p1' => '158',
30123   'p2' => '212',
30124   'p3' => '0',
30125   'p4' => '0',
30126   'p5' => '0',
30127   'p6' => '0',
30128   'p7' => '0',
30129   'p8' => '0',
30130   'p9' => '0',
30131   'updated' => '0',
30132 ))
30133 ->values(array(
30134   'menu_name' => 'navigation',
30135   'mlid' => '213',
30136   'plid' => '165',
30137   'link_path' => 'admin/reports/status',
30138   'router_path' => 'admin/reports/status',
30139   'link_title' => 'Status report',
30140   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:74:\"Get a status report about your site's operation and any detected problems.\";}}",
30141   'module' => 'system',
30142   'hidden' => '0',
30143   'external' => '0',
30144   'has_children' => '0',
30145   'expanded' => '0',
30146   'weight' => '10',
30147   'depth' => '3',
30148   'customized' => '0',
30149   'p1' => '144',
30150   'p2' => '165',
30151   'p3' => '213',
30152   'p4' => '0',
30153   'p5' => '0',
30154   'p6' => '0',
30155   'p7' => '0',
30156   'p8' => '0',
30157   'p9' => '0',
30158   'updated' => '0',
30159 ))
30160 ->values(array(
30161   'menu_name' => 'navigation',
30162   'mlid' => '214',
30163   'plid' => '157',
30164   'link_path' => 'admin/content/taxonomy',
30165   'router_path' => 'admin/content/taxonomy',
30166   'link_title' => 'Taxonomy',
30167   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Manage tagging, categorization, and classification of your content.";}}',
30168   'module' => 'system',
30169   'hidden' => '0',
30170   'external' => '0',
30171   'has_children' => '0',
30172   'expanded' => '0',
30173   'weight' => '0',
30174   'depth' => '3',
30175   'customized' => '0',
30176   'p1' => '144',
30177   'p2' => '157',
30178   'p3' => '214',
30179   'p4' => '0',
30180   'p5' => '0',
30181   'p6' => '0',
30182   'p7' => '0',
30183   'p8' => '0',
30184   'p9' => '0',
30185   'updated' => '0',
30186 ))
30187 ->values(array(
30188   'menu_name' => 'navigation',
30189   'mlid' => '215',
30190   'plid' => '0',
30191   'link_path' => 'taxonomy/term/%',
30192   'router_path' => 'taxonomy/term/%',
30193   'link_title' => 'Taxonomy term',
30194   'options' => 'a:0:{}',
30195   'module' => 'system',
30196   'hidden' => '-1',
30197   'external' => '0',
30198   'has_children' => '0',
30199   'expanded' => '0',
30200   'weight' => '0',
30201   'depth' => '1',
30202   'customized' => '0',
30203   'p1' => '215',
30204   'p2' => '0',
30205   'p3' => '0',
30206   'p4' => '0',
30207   'p5' => '0',
30208   'p6' => '0',
30209   'p7' => '0',
30210   'p8' => '0',
30211   'p9' => '0',
30212   'updated' => '0',
30213 ))
30214 ->values(array(
30215   'menu_name' => 'navigation',
30216   'mlid' => '216',
30217   'plid' => '166',
30218   'link_path' => 'admin/build/themes',
30219   'router_path' => 'admin/build/themes',
30220   'link_title' => 'Themes',
30221   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Change which theme your site uses or allows users to set.";}}',
30222   'module' => 'system',
30223   'hidden' => '0',
30224   'external' => '0',
30225   'has_children' => '0',
30226   'expanded' => '0',
30227   'weight' => '0',
30228   'depth' => '3',
30229   'customized' => '0',
30230   'p1' => '144',
30231   'p2' => '166',
30232   'p3' => '216',
30233   'p4' => '0',
30234   'p5' => '0',
30235   'p6' => '0',
30236   'p7' => '0',
30237   'p8' => '0',
30238   'p9' => '0',
30239   'updated' => '0',
30240 ))
30241 ->values(array(
30242   'menu_name' => 'navigation',
30243   'mlid' => '217',
30244   'plid' => '170',
30245   'link_path' => 'admin/user/settings',
30246   'router_path' => 'admin/user/settings',
30247   'link_title' => 'User settings',
30248   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:101:"Configure default behavior of users, including registration requirements, e-mails, and user pictures.";}}',
30249   'module' => 'system',
30250   'hidden' => '0',
30251   'external' => '0',
30252   'has_children' => '0',
30253   'expanded' => '0',
30254   'weight' => '0',
30255   'depth' => '3',
30256   'customized' => '0',
30257   'p1' => '144',
30258   'p2' => '170',
30259   'p3' => '217',
30260   'p4' => '0',
30261   'p5' => '0',
30262   'p6' => '0',
30263   'p7' => '0',
30264   'p8' => '0',
30265   'p9' => '0',
30266   'updated' => '0',
30267 ))
30268 ->values(array(
30269   'menu_name' => 'navigation',
30270   'mlid' => '218',
30271   'plid' => '170',
30272   'link_path' => 'admin/user/user',
30273   'router_path' => 'admin/user/user',
30274   'link_title' => 'Users',
30275   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:26:"List, add, and edit users.";}}',
30276   'module' => 'system',
30277   'hidden' => '0',
30278   'external' => '0',
30279   'has_children' => '0',
30280   'expanded' => '0',
30281   'weight' => '0',
30282   'depth' => '3',
30283   'customized' => '0',
30284   'p1' => '144',
30285   'p2' => '170',
30286   'p3' => '218',
30287   'p4' => '0',
30288   'p5' => '0',
30289   'p6' => '0',
30290   'p7' => '0',
30291   'p8' => '0',
30292   'p9' => '0',
30293   'updated' => '0',
30294 ))
30295 ->values(array(
30296   'menu_name' => 'navigation',
30297   'mlid' => '219',
30298   'plid' => '195',
30299   'link_path' => 'admin/settings/filters/%',
30300   'router_path' => 'admin/settings/filters/%',
30301   'link_title' => '',
30302   'options' => 'a:0:{}',
30303   'module' => 'system',
30304   'hidden' => '-1',
30305   'external' => '0',
30306   'has_children' => '0',
30307   'expanded' => '0',
30308   'weight' => '0',
30309   'depth' => '4',
30310   'customized' => '0',
30311   'p1' => '144',
30312   'p2' => '167',
30313   'p3' => '195',
30314   'p4' => '219',
30315   'p5' => '0',
30316   'p6' => '0',
30317   'p7' => '0',
30318   'p8' => '0',
30319   'p9' => '0',
30320   'updated' => '0',
30321 ))
30322 ->values(array(
30323   'menu_name' => 'navigation',
30324   'mlid' => '220',
30325   'plid' => '206',
30326   'link_path' => 'admin/user/profile/add',
30327   'router_path' => 'admin/user/profile/add',
30328   'link_title' => 'Add field',
30329   'options' => 'a:0:{}',
30330   'module' => 'system',
30331   'hidden' => '-1',
30332   'external' => '0',
30333   'has_children' => '0',
30334   'expanded' => '0',
30335   'weight' => '0',
30336   'depth' => '4',
30337   'customized' => '0',
30338   'p1' => '144',
30339   'p2' => '170',
30340   'p3' => '206',
30341   'p4' => '220',
30342   'p5' => '0',
30343   'p6' => '0',
30344   'p7' => '0',
30345   'p8' => '0',
30346   'p9' => '0',
30347   'updated' => '0',
30348 ))
30349 ->values(array(
30350   'menu_name' => 'navigation',
30351   'mlid' => '221',
30352   'plid' => '157',
30353   'link_path' => 'admin/content/node-type/article',
30354   'router_path' => 'admin/content/node-type/article',
30355   'link_title' => 'Article',
30356   'options' => 'a:0:{}',
30357   'module' => 'system',
30358   'hidden' => '-1',
30359   'external' => '0',
30360   'has_children' => '0',
30361   'expanded' => '0',
30362   'weight' => '0',
30363   'depth' => '3',
30364   'customized' => '0',
30365   'p1' => '144',
30366   'p2' => '157',
30367   'p3' => '221',
30368   'p4' => '0',
30369   'p5' => '0',
30370   'p6' => '0',
30371   'p7' => '0',
30372   'p8' => '0',
30373   'p9' => '0',
30374   'updated' => '0',
30375 ))
30376 ->values(array(
30377   'menu_name' => 'navigation',
30378   'mlid' => '222',
30379   'plid' => '180',
30380   'link_path' => 'admin/settings/clean-urls/check',
30381   'router_path' => 'admin/settings/clean-urls/check',
30382   'link_title' => 'Clean URL check',
30383   'options' => 'a:0:{}',
30384   'module' => 'system',
30385   'hidden' => '-1',
30386   'external' => '0',
30387   'has_children' => '0',
30388   'expanded' => '0',
30389   'weight' => '0',
30390   'depth' => '4',
30391   'customized' => '0',
30392   'p1' => '144',
30393   'p2' => '167',
30394   'p3' => '180',
30395   'p4' => '222',
30396   'p5' => '0',
30397   'p6' => '0',
30398   'p7' => '0',
30399   'p8' => '0',
30400   'p9' => '0',
30401   'updated' => '0',
30402 ))
30403 ->values(array(
30404   'menu_name' => 'navigation',
30405   'mlid' => '223',
30406   'plid' => '157',
30407   'link_path' => 'admin/content/node-type/company',
30408   'router_path' => 'admin/content/node-type/company',
30409   'link_title' => 'Company',
30410   'options' => 'a:0:{}',
30411   'module' => 'system',
30412   'hidden' => '-1',
30413   'external' => '0',
30414   'has_children' => '0',
30415   'expanded' => '0',
30416   'weight' => '0',
30417   'depth' => '3',
30418   'customized' => '0',
30419   'p1' => '144',
30420   'p2' => '157',
30421   'p3' => '223',
30422   'p4' => '0',
30423   'p5' => '0',
30424   'p6' => '0',
30425   'p7' => '0',
30426   'p8' => '0',
30427   'p9' => '0',
30428   'updated' => '0',
30429 ))
30430 ->values(array(
30431   'menu_name' => 'navigation',
30432   'mlid' => '224',
30433   'plid' => '176',
30434   'link_path' => 'admin/settings/actions/configure',
30435   'router_path' => 'admin/settings/actions/configure',
30436   'link_title' => 'Configure an advanced action',
30437   'options' => 'a:0:{}',
30438   'module' => 'system',
30439   'hidden' => '-1',
30440   'external' => '0',
30441   'has_children' => '0',
30442   'expanded' => '0',
30443   'weight' => '0',
30444   'depth' => '4',
30445   'customized' => '0',
30446   'p1' => '144',
30447   'p2' => '167',
30448   'p3' => '176',
30449   'p4' => '224',
30450   'p5' => '0',
30451   'p6' => '0',
30452   'p7' => '0',
30453   'p8' => '0',
30454   'p9' => '0',
30455   'updated' => '0',
30456 ))
30457 ->values(array(
30458   'menu_name' => 'navigation',
30459   'mlid' => '225',
30460   'plid' => '179',
30461   'link_path' => 'admin/build/block/configure',
30462   'router_path' => 'admin/build/block/configure',
30463   'link_title' => 'Configure block',
30464   'options' => 'a:0:{}',
30465   'module' => 'system',
30466   'hidden' => '-1',
30467   'external' => '0',
30468   'has_children' => '0',
30469   'expanded' => '0',
30470   'weight' => '0',
30471   'depth' => '4',
30472   'customized' => '0',
30473   'p1' => '144',
30474   'p2' => '166',
30475   'p3' => '179',
30476   'p4' => '225',
30477   'p5' => '0',
30478   'p6' => '0',
30479   'p7' => '0',
30480   'p8' => '0',
30481   'p9' => '0',
30482   'updated' => '0',
30483 ))
30484 ->values(array(
30485   'menu_name' => 'navigation',
30486   'mlid' => '226',
30487   'plid' => '166',
30488   'link_path' => 'admin/build/menu-customize/%',
30489   'router_path' => 'admin/build/menu-customize/%',
30490   'link_title' => 'Customize menu',
30491   'options' => 'a:0:{}',
30492   'module' => 'system',
30493   'hidden' => '-1',
30494   'external' => '0',
30495   'has_children' => '0',
30496   'expanded' => '0',
30497   'weight' => '0',
30498   'depth' => '3',
30499   'customized' => '0',
30500   'p1' => '144',
30501   'p2' => '166',
30502   'p3' => '226',
30503   'p4' => '0',
30504   'p5' => '0',
30505   'p6' => '0',
30506   'p7' => '0',
30507   'p8' => '0',
30508   'p9' => '0',
30509   'updated' => '0',
30510 ))
30511 ->values(array(
30512   'menu_name' => 'navigation',
30513   'mlid' => '227',
30514   'plid' => '186',
30515   'link_path' => 'admin/settings/date-time/lookup',
30516   'router_path' => 'admin/settings/date-time/lookup',
30517   'link_title' => 'Date and time lookup',
30518   'options' => 'a:0:{}',
30519   'module' => 'system',
30520   'hidden' => '-1',
30521   'external' => '0',
30522   'has_children' => '0',
30523   'expanded' => '0',
30524   'weight' => '0',
30525   'depth' => '4',
30526   'customized' => '0',
30527   'p1' => '144',
30528   'p2' => '167',
30529   'p3' => '186',
30530   'p4' => '227',
30531   'p5' => '0',
30532   'p6' => '0',
30533   'p7' => '0',
30534   'p8' => '0',
30535   'p9' => '0',
30536   'updated' => '0',
30537 ))
30538 ->values(array(
30539   'menu_name' => 'navigation',
30540   'mlid' => '228',
30541   'plid' => '179',
30542   'link_path' => 'admin/build/block/delete',
30543   'router_path' => 'admin/build/block/delete',
30544   'link_title' => 'Delete block',
30545   'options' => 'a:0:{}',
30546   'module' => 'system',
30547   'hidden' => '-1',
30548   'external' => '0',
30549   'has_children' => '0',
30550   'expanded' => '0',
30551   'weight' => '0',
30552   'depth' => '4',
30553   'customized' => '0',
30554   'p1' => '144',
30555   'p2' => '166',
30556   'p3' => '179',
30557   'p4' => '228',
30558   'p5' => '0',
30559   'p6' => '0',
30560   'p7' => '0',
30561   'p8' => '0',
30562   'p9' => '0',
30563   'updated' => '0',
30564 ))
30565 ->values(array(
30566   'menu_name' => 'navigation',
30567   'mlid' => '229',
30568   'plid' => '206',
30569   'link_path' => 'admin/user/profile/delete',
30570   'router_path' => 'admin/user/profile/delete',
30571   'link_title' => 'Delete field',
30572   'options' => 'a:0:{}',
30573   'module' => 'system',
30574   'hidden' => '-1',
30575   'external' => '0',
30576   'has_children' => '0',
30577   'expanded' => '0',
30578   'weight' => '0',
30579   'depth' => '4',
30580   'customized' => '0',
30581   'p1' => '144',
30582   'p2' => '170',
30583   'p3' => '206',
30584   'p4' => '229',
30585   'p5' => '0',
30586   'p6' => '0',
30587   'p7' => '0',
30588   'p8' => '0',
30589   'p9' => '0',
30590   'updated' => '0',
30591 ))
30592 ->values(array(
30593   'menu_name' => 'navigation',
30594   'mlid' => '230',
30595   'plid' => '195',
30596   'link_path' => 'admin/settings/filters/delete',
30597   'router_path' => 'admin/settings/filters/delete',
30598   'link_title' => 'Delete input format',
30599   'options' => 'a:0:{}',
30600   'module' => 'system',
30601   'hidden' => '-1',
30602   'external' => '0',
30603   'has_children' => '0',
30604   'expanded' => '0',
30605   'weight' => '0',
30606   'depth' => '4',
30607   'customized' => '0',
30608   'p1' => '144',
30609   'p2' => '167',
30610   'p3' => '195',
30611   'p4' => '230',
30612   'p5' => '0',
30613   'p6' => '0',
30614   'p7' => '0',
30615   'p8' => '0',
30616   'p9' => '0',
30617   'updated' => '0',
30618 ))
30619 ->values(array(
30620   'menu_name' => 'navigation',
30621   'mlid' => '231',
30622   'plid' => '175',
30623   'link_path' => 'admin/user/rules/delete',
30624   'router_path' => 'admin/user/rules/delete',
30625   'link_title' => 'Delete rule',
30626   'options' => 'a:0:{}',
30627   'module' => 'system',
30628   'hidden' => '-1',
30629   'external' => '0',
30630   'has_children' => '0',
30631   'expanded' => '0',
30632   'weight' => '0',
30633   'depth' => '4',
30634   'customized' => '0',
30635   'p1' => '144',
30636   'p2' => '170',
30637   'p3' => '175',
30638   'p4' => '231',
30639   'p5' => '0',
30640   'p6' => '0',
30641   'p7' => '0',
30642   'p8' => '0',
30643   'p9' => '0',
30644   'updated' => '0',
30645 ))
30646 ->values(array(
30647   'menu_name' => 'navigation',
30648   'mlid' => '232',
30649   'plid' => '206',
30650   'link_path' => 'admin/user/profile/edit',
30651   'router_path' => 'admin/user/profile/edit',
30652   'link_title' => 'Edit field',
30653   'options' => 'a:0:{}',
30654   'module' => 'system',
30655   'hidden' => '-1',
30656   'external' => '0',
30657   'has_children' => '0',
30658   'expanded' => '0',
30659   'weight' => '0',
30660   'depth' => '4',
30661   'customized' => '0',
30662   'p1' => '144',
30663   'p2' => '170',
30664   'p3' => '206',
30665   'p4' => '232',
30666   'p5' => '0',
30667   'p6' => '0',
30668   'p7' => '0',
30669   'p8' => '0',
30670   'p9' => '0',
30671   'updated' => '0',
30672 ))
30673 ->values(array(
30674   'menu_name' => 'navigation',
30675   'mlid' => '233',
30676   'plid' => '209',
30677   'link_path' => 'admin/user/roles/edit',
30678   'router_path' => 'admin/user/roles/edit',
30679   'link_title' => 'Edit role',
30680   'options' => 'a:0:{}',
30681   'module' => 'system',
30682   'hidden' => '-1',
30683   'external' => '0',
30684   'has_children' => '0',
30685   'expanded' => '0',
30686   'weight' => '0',
30687   'depth' => '4',
30688   'customized' => '0',
30689   'p1' => '144',
30690   'p2' => '170',
30691   'p3' => '209',
30692   'p4' => '233',
30693   'p5' => '0',
30694   'p6' => '0',
30695   'p7' => '0',
30696   'p8' => '0',
30697   'p9' => '0',
30698   'updated' => '0',
30699 ))
30700 ->values(array(
30701   'menu_name' => 'navigation',
30702   'mlid' => '234',
30703   'plid' => '175',
30704   'link_path' => 'admin/user/rules/edit',
30705   'router_path' => 'admin/user/rules/edit',
30706   'link_title' => 'Edit rule',
30707   'options' => 'a:0:{}',
30708   'module' => 'system',
30709   'hidden' => '-1',
30710   'external' => '0',
30711   'has_children' => '0',
30712   'expanded' => '0',
30713   'weight' => '0',
30714   'depth' => '4',
30715   'customized' => '0',
30716   'p1' => '144',
30717   'p2' => '170',
30718   'p3' => '175',
30719   'p4' => '234',
30720   'p5' => '0',
30721   'p6' => '0',
30722   'p7' => '0',
30723   'p8' => '0',
30724   'p9' => '0',
30725   'updated' => '0',
30726 ))
30727 ->values(array(
30728   'menu_name' => 'navigation',
30729   'mlid' => '235',
30730   'plid' => '157',
30731   'link_path' => 'admin/content/node-type/employee',
30732   'router_path' => 'admin/content/node-type/employee',
30733   'link_title' => 'Employee',
30734   'options' => 'a:0:{}',
30735   'module' => 'system',
30736   'hidden' => '-1',
30737   'external' => '0',
30738   'has_children' => '0',
30739   'expanded' => '0',
30740   'weight' => '0',
30741   'depth' => '3',
30742   'customized' => '0',
30743   'p1' => '144',
30744   'p2' => '157',
30745   'p3' => '235',
30746   'p4' => '0',
30747   'p5' => '0',
30748   'p6' => '0',
30749   'p7' => '0',
30750   'p8' => '0',
30751   'p9' => '0',
30752   'updated' => '0',
30753 ))
30754 ->values(array(
30755   'menu_name' => 'navigation',
30756   'mlid' => '236',
30757   'plid' => '214',
30758   'link_path' => 'admin/content/taxonomy/%',
30759   'router_path' => 'admin/content/taxonomy/%',
30760   'link_title' => 'List terms',
30761   'options' => 'a:0:{}',
30762   'module' => 'system',
30763   'hidden' => '-1',
30764   'external' => '0',
30765   'has_children' => '0',
30766   'expanded' => '0',
30767   'weight' => '0',
30768   'depth' => '4',
30769   'customized' => '0',
30770   'p1' => '144',
30771   'p2' => '157',
30772   'p3' => '214',
30773   'p4' => '236',
30774   'p5' => '0',
30775   'p6' => '0',
30776   'p7' => '0',
30777   'p8' => '0',
30778   'p9' => '0',
30779   'updated' => '0',
30780 ))
30781 ->values(array(
30782   'menu_name' => 'navigation',
30783   'mlid' => '237',
30784   'plid' => '157',
30785   'link_path' => 'admin/content/node-type/test-event',
30786   'router_path' => 'admin/content/node-type/test-event',
30787   'link_title' => 'Migrate test event',
30788   'options' => 'a:0:{}',
30789   'module' => 'system',
30790   'hidden' => '-1',
30791   'external' => '0',
30792   'has_children' => '0',
30793   'expanded' => '0',
30794   'weight' => '0',
30795   'depth' => '3',
30796   'customized' => '0',
30797   'p1' => '144',
30798   'p2' => '157',
30799   'p3' => '237',
30800   'p4' => '0',
30801   'p5' => '0',
30802   'p6' => '0',
30803   'p7' => '0',
30804   'p8' => '0',
30805   'p9' => '0',
30806   'updated' => '0',
30807 ))
30808 ->values(array(
30809   'menu_name' => 'navigation',
30810   'mlid' => '238',
30811   'plid' => '157',
30812   'link_path' => 'admin/content/node-type/test-page',
30813   'router_path' => 'admin/content/node-type/test-page',
30814   'link_title' => 'Migrate test page',
30815   'options' => 'a:0:{}',
30816   'module' => 'system',
30817   'hidden' => '-1',
30818   'external' => '0',
30819   'has_children' => '0',
30820   'expanded' => '0',
30821   'weight' => '0',
30822   'depth' => '3',
30823   'customized' => '0',
30824   'p1' => '144',
30825   'p2' => '157',
30826   'p3' => '238',
30827   'p4' => '0',
30828   'p5' => '0',
30829   'p6' => '0',
30830   'p7' => '0',
30831   'p8' => '0',
30832   'p9' => '0',
30833   'updated' => '0',
30834 ))
30835 ->values(array(
30836   'menu_name' => 'navigation',
30837   'mlid' => '239',
30838   'plid' => '157',
30839   'link_path' => 'admin/content/node-type/test-planet',
30840   'router_path' => 'admin/content/node-type/test-planet',
30841   'link_title' => 'Migrate test planet',
30842   'options' => 'a:0:{}',
30843   'module' => 'system',
30844   'hidden' => '-1',
30845   'external' => '0',
30846   'has_children' => '0',
30847   'expanded' => '0',
30848   'weight' => '0',
30849   'depth' => '3',
30850   'customized' => '0',
30851   'p1' => '144',
30852   'p2' => '157',
30853   'p3' => '239',
30854   'p4' => '0',
30855   'p5' => '0',
30856   'p6' => '0',
30857   'p7' => '0',
30858   'p8' => '0',
30859   'p9' => '0',
30860   'updated' => '0',
30861 ))
30862 ->values(array(
30863   'menu_name' => 'navigation',
30864   'mlid' => '240',
30865   'plid' => '157',
30866   'link_path' => 'admin/content/node-type/test-story',
30867   'router_path' => 'admin/content/node-type/test-story',
30868   'link_title' => 'Migrate test story',
30869   'options' => 'a:0:{}',
30870   'module' => 'system',
30871   'hidden' => '-1',
30872   'external' => '0',
30873   'has_children' => '0',
30874   'expanded' => '0',
30875   'weight' => '0',
30876   'depth' => '3',
30877   'customized' => '0',
30878   'p1' => '144',
30879   'p2' => '157',
30880   'p3' => '240',
30881   'p4' => '0',
30882   'p5' => '0',
30883   'p6' => '0',
30884   'p7' => '0',
30885   'p8' => '0',
30886   'p9' => '0',
30887   'updated' => '0',
30888 ))
30889 ->values(array(
30890   'menu_name' => 'navigation',
30891   'mlid' => '241',
30892   'plid' => '213',
30893   'link_path' => 'admin/reports/status/php',
30894   'router_path' => 'admin/reports/status/php',
30895   'link_title' => 'PHP',
30896   'options' => 'a:0:{}',
30897   'module' => 'system',
30898   'hidden' => '-1',
30899   'external' => '0',
30900   'has_children' => '0',
30901   'expanded' => '0',
30902   'weight' => '0',
30903   'depth' => '4',
30904   'customized' => '0',
30905   'p1' => '144',
30906   'p2' => '165',
30907   'p3' => '213',
30908   'p4' => '241',
30909   'p5' => '0',
30910   'p6' => '0',
30911   'p7' => '0',
30912   'p8' => '0',
30913   'p9' => '0',
30914   'updated' => '0',
30915 ))
30916 ->values(array(
30917   'menu_name' => 'navigation',
30918   'mlid' => '242',
30919   'plid' => '206',
30920   'link_path' => 'admin/user/profile/autocomplete',
30921   'router_path' => 'admin/user/profile/autocomplete',
30922   'link_title' => 'Profile category autocomplete',
30923   'options' => 'a:0:{}',
30924   'module' => 'system',
30925   'hidden' => '-1',
30926   'external' => '0',
30927   'has_children' => '0',
30928   'expanded' => '0',
30929   'weight' => '0',
30930   'depth' => '4',
30931   'customized' => '0',
30932   'p1' => '144',
30933   'p2' => '170',
30934   'p3' => '206',
30935   'p4' => '242',
30936   'p5' => '0',
30937   'p6' => '0',
30938   'p7' => '0',
30939   'p8' => '0',
30940   'p9' => '0',
30941   'updated' => '0',
30942 ))
30943 ->values(array(
30944   'menu_name' => 'navigation',
30945   'mlid' => '243',
30946   'plid' => '205',
30947   'link_path' => 'admin/content/node-settings/rebuild',
30948   'router_path' => 'admin/content/node-settings/rebuild',
30949   'link_title' => 'Rebuild permissions',
30950   'options' => 'a:0:{}',
30951   'module' => 'system',
30952   'hidden' => '-1',
30953   'external' => '0',
30954   'has_children' => '0',
30955   'expanded' => '0',
30956   'weight' => '0',
30957   'depth' => '4',
30958   'customized' => '0',
30959   'p1' => '144',
30960   'p2' => '157',
30961   'p3' => '205',
30962   'p4' => '243',
30963   'p5' => '0',
30964   'p6' => '0',
30965   'p7' => '0',
30966   'p8' => '0',
30967   'p9' => '0',
30968   'updated' => '0',
30969 ))
30970 ->values(array(
30971   'menu_name' => 'navigation',
30972   'mlid' => '244',
30973   'plid' => '176',
30974   'link_path' => 'admin/settings/actions/orphan',
30975   'router_path' => 'admin/settings/actions/orphan',
30976   'link_title' => 'Remove orphans',
30977   'options' => 'a:0:{}',
30978   'module' => 'system',
30979   'hidden' => '-1',
30980   'external' => '0',
30981   'has_children' => '0',
30982   'expanded' => '0',
30983   'weight' => '0',
30984   'depth' => '4',
30985   'customized' => '0',
30986   'p1' => '144',
30987   'p2' => '167',
30988   'p3' => '176',
30989   'p4' => '244',
30990   'p5' => '0',
30991   'p6' => '0',
30992   'p7' => '0',
30993   'p8' => '0',
30994   'p9' => '0',
30995   'updated' => '0',
30996 ))
30997 ->values(array(
30998   'menu_name' => 'navigation',
30999   'mlid' => '245',
31000   'plid' => '213',
31001   'link_path' => 'admin/reports/status/run-cron',
31002   'router_path' => 'admin/reports/status/run-cron',
31003   'link_title' => 'Run cron',
31004   'options' => 'a:0:{}',
31005   'module' => 'system',
31006   'hidden' => '-1',
31007   'external' => '0',
31008   'has_children' => '0',
31009   'expanded' => '0',
31010   'weight' => '0',
31011   'depth' => '4',
31012   'customized' => '0',
31013   'p1' => '144',
31014   'p2' => '165',
31015   'p3' => '213',
31016   'p4' => '245',
31017   'p5' => '0',
31018   'p6' => '0',
31019   'p7' => '0',
31020   'p8' => '0',
31021   'p9' => '0',
31022   'updated' => '0',
31023 ))
31024 ->values(array(
31025   'menu_name' => 'navigation',
31026   'mlid' => '246',
31027   'plid' => '213',
31028   'link_path' => 'admin/reports/status/sql',
31029   'router_path' => 'admin/reports/status/sql',
31030   'link_title' => 'SQL',
31031   'options' => 'a:0:{}',
31032   'module' => 'system',
31033   'hidden' => '-1',
31034   'external' => '0',
31035   'has_children' => '0',
31036   'expanded' => '0',
31037   'weight' => '0',
31038   'depth' => '4',
31039   'customized' => '0',
31040   'p1' => '144',
31041   'p2' => '165',
31042   'p3' => '213',
31043   'p4' => '246',
31044   'p5' => '0',
31045   'p6' => '0',
31046   'p7' => '0',
31047   'p8' => '0',
31048   'p9' => '0',
31049   'updated' => '0',
31050 ))
31051 ->values(array(
31052   'menu_name' => 'navigation',
31053   'mlid' => '247',
31054   'plid' => '157',
31055   'link_path' => 'admin/content/node-type/sponsor',
31056   'router_path' => 'admin/content/node-type/sponsor',
31057   'link_title' => 'Sponsor',
31058   'options' => 'a:0:{}',
31059   'module' => 'system',
31060   'hidden' => '-1',
31061   'external' => '0',
31062   'has_children' => '0',
31063   'expanded' => '0',
31064   'weight' => '0',
31065   'depth' => '3',
31066   'customized' => '0',
31067   'p1' => '144',
31068   'p2' => '157',
31069   'p3' => '247',
31070   'p4' => '0',
31071   'p5' => '0',
31072   'p6' => '0',
31073   'p7' => '0',
31074   'p8' => '0',
31075   'p9' => '0',
31076   'updated' => '0',
31077 ))
31078 ->values(array(
31079   'menu_name' => 'navigation',
31080   'mlid' => '248',
31081   'plid' => '186',
31082   'link_path' => 'admin/settings/date-time/formats/lookup',
31083   'router_path' => 'admin/settings/date-time/formats/lookup',
31084   'link_title' => 'Date and time lookup',
31085   'options' => 'a:0:{}',
31086   'module' => 'system',
31087   'hidden' => '-1',
31088   'external' => '0',
31089   'has_children' => '0',
31090   'expanded' => '0',
31091   'weight' => '0',
31092   'depth' => '4',
31093   'customized' => '0',
31094   'p1' => '144',
31095   'p2' => '167',
31096   'p3' => '186',
31097   'p4' => '248',
31098   'p5' => '0',
31099   'p6' => '0',
31100   'p7' => '0',
31101   'p8' => '0',
31102   'p9' => '0',
31103   'updated' => '0',
31104 ))
31105 ->values(array(
31106   'menu_name' => 'navigation',
31107   'mlid' => '249',
31108   'plid' => '0',
31109   'link_path' => 'admin/content/node-type/article/delete',
31110   'router_path' => 'admin/content/node-type/article/delete',
31111   'link_title' => 'Delete',
31112   'options' => 'a:0:{}',
31113   'module' => 'system',
31114   'hidden' => '-1',
31115   'external' => '0',
31116   'has_children' => '0',
31117   'expanded' => '0',
31118   'weight' => '0',
31119   'depth' => '1',
31120   'customized' => '0',
31121   'p1' => '249',
31122   'p2' => '0',
31123   'p3' => '0',
31124   'p4' => '0',
31125   'p5' => '0',
31126   'p6' => '0',
31127   'p7' => '0',
31128   'p8' => '0',
31129   'p9' => '0',
31130   'updated' => '0',
31131 ))
31132 ->values(array(
31133   'menu_name' => 'navigation',
31134   'mlid' => '250',
31135   'plid' => '0',
31136   'link_path' => 'admin/content/node-type/company/delete',
31137   'router_path' => 'admin/content/node-type/company/delete',
31138   'link_title' => 'Delete',
31139   'options' => 'a:0:{}',
31140   'module' => 'system',
31141   'hidden' => '-1',
31142   'external' => '0',
31143   'has_children' => '0',
31144   'expanded' => '0',
31145   'weight' => '0',
31146   'depth' => '1',
31147   'customized' => '0',
31148   'p1' => '250',
31149   'p2' => '0',
31150   'p3' => '0',
31151   'p4' => '0',
31152   'p5' => '0',
31153   'p6' => '0',
31154   'p7' => '0',
31155   'p8' => '0',
31156   'p9' => '0',
31157   'updated' => '0',
31158 ))
31159 ->values(array(
31160   'menu_name' => 'navigation',
31161   'mlid' => '251',
31162   'plid' => '0',
31163   'link_path' => 'admin/content/node-type/employee/delete',
31164   'router_path' => 'admin/content/node-type/employee/delete',
31165   'link_title' => 'Delete',
31166   'options' => 'a:0:{}',
31167   'module' => 'system',
31168   'hidden' => '-1',
31169   'external' => '0',
31170   'has_children' => '0',
31171   'expanded' => '0',
31172   'weight' => '0',
31173   'depth' => '1',
31174   'customized' => '0',
31175   'p1' => '251',
31176   'p2' => '0',
31177   'p3' => '0',
31178   'p4' => '0',
31179   'p5' => '0',
31180   'p6' => '0',
31181   'p7' => '0',
31182   'p8' => '0',
31183   'p9' => '0',
31184   'updated' => '0',
31185 ))
31186 ->values(array(
31187   'menu_name' => 'navigation',
31188   'mlid' => '252',
31189   'plid' => '0',
31190   'link_path' => 'admin/content/node-type/sponsor/delete',
31191   'router_path' => 'admin/content/node-type/sponsor/delete',
31192   'link_title' => 'Delete',
31193   'options' => 'a:0:{}',
31194   'module' => 'system',
31195   'hidden' => '-1',
31196   'external' => '0',
31197   'has_children' => '0',
31198   'expanded' => '0',
31199   'weight' => '0',
31200   'depth' => '1',
31201   'customized' => '0',
31202   'p1' => '252',
31203   'p2' => '0',
31204   'p3' => '0',
31205   'p4' => '0',
31206   'p5' => '0',
31207   'p6' => '0',
31208   'p7' => '0',
31209   'p8' => '0',
31210   'p9' => '0',
31211   'updated' => '0',
31212 ))
31213 ->values(array(
31214   'menu_name' => 'navigation',
31215   'mlid' => '253',
31216   'plid' => '0',
31217   'link_path' => 'admin/content/node-type/test-event/delete',
31218   'router_path' => 'admin/content/node-type/test-event/delete',
31219   'link_title' => 'Delete',
31220   'options' => 'a:0:{}',
31221   'module' => 'system',
31222   'hidden' => '-1',
31223   'external' => '0',
31224   'has_children' => '0',
31225   'expanded' => '0',
31226   'weight' => '0',
31227   'depth' => '1',
31228   'customized' => '0',
31229   'p1' => '253',
31230   'p2' => '0',
31231   'p3' => '0',
31232   'p4' => '0',
31233   'p5' => '0',
31234   'p6' => '0',
31235   'p7' => '0',
31236   'p8' => '0',
31237   'p9' => '0',
31238   'updated' => '0',
31239 ))
31240 ->values(array(
31241   'menu_name' => 'navigation',
31242   'mlid' => '254',
31243   'plid' => '0',
31244   'link_path' => 'admin/content/node-type/test-page/delete',
31245   'router_path' => 'admin/content/node-type/test-page/delete',
31246   'link_title' => 'Delete',
31247   'options' => 'a:0:{}',
31248   'module' => 'system',
31249   'hidden' => '-1',
31250   'external' => '0',
31251   'has_children' => '0',
31252   'expanded' => '0',
31253   'weight' => '0',
31254   'depth' => '1',
31255   'customized' => '0',
31256   'p1' => '254',
31257   'p2' => '0',
31258   'p3' => '0',
31259   'p4' => '0',
31260   'p5' => '0',
31261   'p6' => '0',
31262   'p7' => '0',
31263   'p8' => '0',
31264   'p9' => '0',
31265   'updated' => '0',
31266 ))
31267 ->values(array(
31268   'menu_name' => 'navigation',
31269   'mlid' => '255',
31270   'plid' => '0',
31271   'link_path' => 'admin/content/node-type/test-planet/delete',
31272   'router_path' => 'admin/content/node-type/test-planet/delete',
31273   'link_title' => 'Delete',
31274   'options' => 'a:0:{}',
31275   'module' => 'system',
31276   'hidden' => '-1',
31277   'external' => '0',
31278   'has_children' => '0',
31279   'expanded' => '0',
31280   'weight' => '0',
31281   'depth' => '1',
31282   'customized' => '0',
31283   'p1' => '255',
31284   'p2' => '0',
31285   'p3' => '0',
31286   'p4' => '0',
31287   'p5' => '0',
31288   'p6' => '0',
31289   'p7' => '0',
31290   'p8' => '0',
31291   'p9' => '0',
31292   'updated' => '0',
31293 ))
31294 ->values(array(
31295   'menu_name' => 'navigation',
31296   'mlid' => '256',
31297   'plid' => '0',
31298   'link_path' => 'admin/content/node-type/test-story/delete',
31299   'router_path' => 'admin/content/node-type/test-story/delete',
31300   'link_title' => 'Delete',
31301   'options' => 'a:0:{}',
31302   'module' => 'system',
31303   'hidden' => '-1',
31304   'external' => '0',
31305   'has_children' => '0',
31306   'expanded' => '0',
31307   'weight' => '0',
31308   'depth' => '1',
31309   'customized' => '0',
31310   'p1' => '256',
31311   'p2' => '0',
31312   'p3' => '0',
31313   'p4' => '0',
31314   'p5' => '0',
31315   'p6' => '0',
31316   'p7' => '0',
31317   'p8' => '0',
31318   'p9' => '0',
31319   'updated' => '0',
31320 ))
31321 ->values(array(
31322   'menu_name' => 'navigation',
31323   'mlid' => '257',
31324   'plid' => '176',
31325   'link_path' => 'admin/settings/actions/delete/%',
31326   'router_path' => 'admin/settings/actions/delete/%',
31327   'link_title' => 'Delete action',
31328   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Delete an action.";}}',
31329   'module' => 'system',
31330   'hidden' => '-1',
31331   'external' => '0',
31332   'has_children' => '0',
31333   'expanded' => '0',
31334   'weight' => '0',
31335   'depth' => '4',
31336   'customized' => '0',
31337   'p1' => '144',
31338   'p2' => '167',
31339   'p3' => '176',
31340   'p4' => '257',
31341   'p5' => '0',
31342   'p6' => '0',
31343   'p7' => '0',
31344   'p8' => '0',
31345   'p9' => '0',
31346   'updated' => '0',
31347 ))
31348 ->values(array(
31349   'menu_name' => 'navigation',
31350   'mlid' => '258',
31351   'plid' => '183',
31352   'link_path' => 'admin/build/contact/delete/%',
31353   'router_path' => 'admin/build/contact/delete/%',
31354   'link_title' => 'Delete contact',
31355   'options' => 'a:0:{}',
31356   'module' => 'system',
31357   'hidden' => '-1',
31358   'external' => '0',
31359   'has_children' => '0',
31360   'expanded' => '0',
31361   'weight' => '0',
31362   'depth' => '4',
31363   'customized' => '0',
31364   'p1' => '144',
31365   'p2' => '166',
31366   'p3' => '183',
31367   'p4' => '258',
31368   'p5' => '0',
31369   'p6' => '0',
31370   'p7' => '0',
31371   'p8' => '0',
31372   'p9' => '0',
31373   'updated' => '0',
31374 ))
31375 ->values(array(
31376   'menu_name' => 'navigation',
31377   'mlid' => '259',
31378   'plid' => '186',
31379   'link_path' => 'admin/settings/date-time/delete/%',
31380   'router_path' => 'admin/settings/date-time/delete/%',
31381   'link_title' => 'Delete date format type',
31382   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:52:"Allow users to delete a configured date format type.";}}',
31383   'module' => 'system',
31384   'hidden' => '-1',
31385   'external' => '0',
31386   'has_children' => '0',
31387   'expanded' => '0',
31388   'weight' => '0',
31389   'depth' => '4',
31390   'customized' => '0',
31391   'p1' => '144',
31392   'p2' => '167',
31393   'p3' => '186',
31394   'p4' => '259',
31395   'p5' => '0',
31396   'p6' => '0',
31397   'p7' => '0',
31398   'p8' => '0',
31399   'p9' => '0',
31400   'updated' => '0',
31401 ))
31402 ->values(array(
31403   'menu_name' => 'navigation',
31404   'mlid' => '260',
31405   'plid' => '0',
31406   'link_path' => 'admin/build/menu-customize/%/delete',
31407   'router_path' => 'admin/build/menu-customize/%/delete',
31408   'link_title' => 'Delete menu',
31409   'options' => 'a:0:{}',
31410   'module' => 'system',
31411   'hidden' => '-1',
31412   'external' => '0',
31413   'has_children' => '0',
31414   'expanded' => '0',
31415   'weight' => '0',
31416   'depth' => '1',
31417   'customized' => '0',
31418   'p1' => '260',
31419   'p2' => '0',
31420   'p3' => '0',
31421   'p4' => '0',
31422   'p5' => '0',
31423   'p6' => '0',
31424   'p7' => '0',
31425   'p8' => '0',
31426   'p9' => '0',
31427   'updated' => '0',
31428 ))
31429 ->values(array(
31430   'menu_name' => 'navigation',
31431   'mlid' => '261',
31432   'plid' => '183',
31433   'link_path' => 'admin/build/contact/edit/%',
31434   'router_path' => 'admin/build/contact/edit/%',
31435   'link_title' => 'Edit contact category',
31436   'options' => 'a:0:{}',
31437   'module' => 'system',
31438   'hidden' => '-1',
31439   'external' => '0',
31440   'has_children' => '0',
31441   'expanded' => '0',
31442   'weight' => '0',
31443   'depth' => '4',
31444   'customized' => '0',
31445   'p1' => '144',
31446   'p2' => '166',
31447   'p3' => '183',
31448   'p4' => '261',
31449   'p5' => '0',
31450   'p6' => '0',
31451   'p7' => '0',
31452   'p8' => '0',
31453   'p9' => '0',
31454   'updated' => '0',
31455 ))
31456 ->values(array(
31457   'menu_name' => 'navigation',
31458   'mlid' => '262',
31459   'plid' => '214',
31460   'link_path' => 'admin/content/taxonomy/edit/term',
31461   'router_path' => 'admin/content/taxonomy/edit/term',
31462   'link_title' => 'Edit term',
31463   'options' => 'a:0:{}',
31464   'module' => 'system',
31465   'hidden' => '-1',
31466   'external' => '0',
31467   'has_children' => '0',
31468   'expanded' => '0',
31469   'weight' => '0',
31470   'depth' => '4',
31471   'customized' => '0',
31472   'p1' => '144',
31473   'p2' => '157',
31474   'p3' => '214',
31475   'p4' => '262',
31476   'p5' => '0',
31477   'p6' => '0',
31478   'p7' => '0',
31479   'p8' => '0',
31480   'p9' => '0',
31481   'updated' => '0',
31482 ))
31483 ->values(array(
31484   'menu_name' => 'navigation',
31485   'mlid' => '263',
31486   'plid' => '179',
31487   'link_path' => 'admin/build/block/list/js',
31488   'router_path' => 'admin/build/block/list/js',
31489   'link_title' => 'JavaScript List Form',
31490   'options' => 'a:0:{}',
31491   'module' => 'system',
31492   'hidden' => '-1',
31493   'external' => '0',
31494   'has_children' => '0',
31495   'expanded' => '0',
31496   'weight' => '0',
31497   'depth' => '4',
31498   'customized' => '0',
31499   'p1' => '144',
31500   'p2' => '166',
31501   'p3' => '179',
31502   'p4' => '263',
31503   'p5' => '0',
31504   'p6' => '0',
31505   'p7' => '0',
31506   'p8' => '0',
31507   'p9' => '0',
31508   'updated' => '0',
31509 ))
31510 ->values(array(
31511   'menu_name' => 'navigation',
31512   'mlid' => '264',
31513   'plid' => '202',
31514   'link_path' => 'admin/build/modules/list/confirm',
31515   'router_path' => 'admin/build/modules/list/confirm',
31516   'link_title' => 'List',
31517   'options' => 'a:0:{}',
31518   'module' => 'system',
31519   'hidden' => '-1',
31520   'external' => '0',
31521   'has_children' => '0',
31522   'expanded' => '0',
31523   'weight' => '0',
31524   'depth' => '4',
31525   'customized' => '0',
31526   'p1' => '144',
31527   'p2' => '166',
31528   'p3' => '202',
31529   'p4' => '264',
31530   'p5' => '0',
31531   'p6' => '0',
31532   'p7' => '0',
31533   'p8' => '0',
31534   'p9' => '0',
31535   'updated' => '0',
31536 ))
31537 ->values(array(
31538   'menu_name' => 'navigation',
31539   'mlid' => '266',
31540   'plid' => '0',
31541   'link_path' => 'user/reset/%/%/%',
31542   'router_path' => 'user/reset/%/%/%',
31543   'link_title' => 'Reset password',
31544   'options' => 'a:0:{}',
31545   'module' => 'system',
31546   'hidden' => '-1',
31547   'external' => '0',
31548   'has_children' => '0',
31549   'expanded' => '0',
31550   'weight' => '0',
31551   'depth' => '1',
31552   'customized' => '0',
31553   'p1' => '266',
31554   'p2' => '0',
31555   'p3' => '0',
31556   'p4' => '0',
31557   'p5' => '0',
31558   'p6' => '0',
31559   'p7' => '0',
31560   'p8' => '0',
31561   'p9' => '0',
31562   'updated' => '0',
31563 ))
31564 ->values(array(
31565   'menu_name' => 'navigation',
31566   'mlid' => '267',
31567   'plid' => '202',
31568   'link_path' => 'admin/build/modules/uninstall/confirm',
31569   'router_path' => 'admin/build/modules/uninstall/confirm',
31570   'link_title' => 'Uninstall',
31571   'options' => 'a:0:{}',
31572   'module' => 'system',
31573   'hidden' => '-1',
31574   'external' => '0',
31575   'has_children' => '0',
31576   'expanded' => '0',
31577   'weight' => '0',
31578   'depth' => '4',
31579   'customized' => '0',
31580   'p1' => '144',
31581   'p2' => '166',
31582   'p3' => '202',
31583   'p4' => '267',
31584   'p5' => '0',
31585   'p6' => '0',
31586   'p7' => '0',
31587   'p8' => '0',
31588   'p9' => '0',
31589   'updated' => '0',
31590 ))
31591 ->values(array(
31592   'menu_name' => 'navigation',
31593   'mlid' => '269',
31594   'plid' => '0',
31595   'link_path' => 'node/%/revisions/%/delete',
31596   'router_path' => 'node/%/revisions/%/delete',
31597   'link_title' => 'Delete earlier revision',
31598   'options' => 'a:0:{}',
31599   'module' => 'system',
31600   'hidden' => '-1',
31601   'external' => '0',
31602   'has_children' => '0',
31603   'expanded' => '0',
31604   'weight' => '0',
31605   'depth' => '1',
31606   'customized' => '0',
31607   'p1' => '269',
31608   'p2' => '0',
31609   'p3' => '0',
31610   'p4' => '0',
31611   'p5' => '0',
31612   'p6' => '0',
31613   'p7' => '0',
31614   'p8' => '0',
31615   'p9' => '0',
31616   'updated' => '0',
31617 ))
31618 ->values(array(
31619   'menu_name' => 'navigation',
31620   'mlid' => '270',
31621   'plid' => '0',
31622   'link_path' => 'node/%/revisions/%/revert',
31623   'router_path' => 'node/%/revisions/%/revert',
31624   'link_title' => 'Revert to earlier revision',
31625   'options' => 'a:0:{}',
31626   'module' => 'system',
31627   'hidden' => '-1',
31628   'external' => '0',
31629   'has_children' => '0',
31630   'expanded' => '0',
31631   'weight' => '0',
31632   'depth' => '1',
31633   'customized' => '0',
31634   'p1' => '270',
31635   'p2' => '0',
31636   'p3' => '0',
31637   'p4' => '0',
31638   'p5' => '0',
31639   'p6' => '0',
31640   'p7' => '0',
31641   'p8' => '0',
31642   'p9' => '0',
31643   'updated' => '0',
31644 ))
31645 ->values(array(
31646   'menu_name' => 'navigation',
31647   'mlid' => '271',
31648   'plid' => '0',
31649   'link_path' => 'node/%/revisions/%/view',
31650   'router_path' => 'node/%/revisions/%/view',
31651   'link_title' => 'Revisions',
31652   'options' => 'a:0:{}',
31653   'module' => 'system',
31654   'hidden' => '-1',
31655   'external' => '0',
31656   'has_children' => '0',
31657   'expanded' => '0',
31658   'weight' => '0',
31659   'depth' => '1',
31660   'customized' => '0',
31661   'p1' => '271',
31662   'p2' => '0',
31663   'p3' => '0',
31664   'p4' => '0',
31665   'p5' => '0',
31666   'p6' => '0',
31667   'p7' => '0',
31668   'p8' => '0',
31669   'p9' => '0',
31670   'updated' => '0',
31671 ))
31672 ->values(array(
31673   'menu_name' => 'navigation',
31674   'mlid' => '272',
31675   'plid' => '186',
31676   'link_path' => 'admin/settings/date-time/formats/delete/%',
31677   'router_path' => 'admin/settings/date-time/formats/delete/%',
31678   'link_title' => 'Delete date format',
31679   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Allow users to delete a configured date format.";}}',
31680   'module' => 'system',
31681   'hidden' => '-1',
31682   'external' => '0',
31683   'has_children' => '0',
31684   'expanded' => '0',
31685   'weight' => '0',
31686   'depth' => '4',
31687   'customized' => '0',
31688   'p1' => '144',
31689   'p2' => '167',
31690   'p3' => '186',
31691   'p4' => '272',
31692   'p5' => '0',
31693   'p6' => '0',
31694   'p7' => '0',
31695   'p8' => '0',
31696   'p9' => '0',
31697   'updated' => '0',
31698 ))
31699 ->values(array(
31700   'menu_name' => 'navigation',
31701   'mlid' => '273',
31702   'plid' => '197',
31703   'link_path' => 'admin/build/menu/item/%/delete',
31704   'router_path' => 'admin/build/menu/item/%/delete',
31705   'link_title' => 'Delete menu item',
31706   'options' => 'a:0:{}',
31707   'module' => 'system',
31708   'hidden' => '-1',
31709   'external' => '0',
31710   'has_children' => '0',
31711   'expanded' => '0',
31712   'weight' => '0',
31713   'depth' => '4',
31714   'customized' => '0',
31715   'p1' => '144',
31716   'p2' => '166',
31717   'p3' => '197',
31718   'p4' => '273',
31719   'p5' => '0',
31720   'p6' => '0',
31721   'p7' => '0',
31722   'p8' => '0',
31723   'p9' => '0',
31724   'updated' => '0',
31725 ))
31726 ->values(array(
31727   'menu_name' => 'navigation',
31728   'mlid' => '276',
31729   'plid' => '197',
31730   'link_path' => 'admin/build/menu/item/%/edit',
31731   'router_path' => 'admin/build/menu/item/%/edit',
31732   'link_title' => 'Edit menu item',
31733   'options' => 'a:0:{}',
31734   'module' => 'system',
31735   'hidden' => '-1',
31736   'external' => '0',
31737   'has_children' => '0',
31738   'expanded' => '0',
31739   'weight' => '0',
31740   'depth' => '4',
31741   'customized' => '0',
31742   'p1' => '144',
31743   'p2' => '166',
31744   'p3' => '197',
31745   'p4' => '276',
31746   'p5' => '0',
31747   'p6' => '0',
31748   'p7' => '0',
31749   'p8' => '0',
31750   'p9' => '0',
31751   'updated' => '0',
31752 ))
31753 ->values(array(
31754   'menu_name' => 'navigation',
31755   'mlid' => '277',
31756   'plid' => '214',
31757   'link_path' => 'admin/content/taxonomy/edit/vocabulary/%',
31758   'router_path' => 'admin/content/taxonomy/edit/vocabulary/%',
31759   'link_title' => 'Edit vocabulary',
31760   'options' => 'a:0:{}',
31761   'module' => 'system',
31762   'hidden' => '-1',
31763   'external' => '0',
31764   'has_children' => '0',
31765   'expanded' => '0',
31766   'weight' => '0',
31767   'depth' => '4',
31768   'customized' => '0',
31769   'p1' => '144',
31770   'p2' => '157',
31771   'p3' => '214',
31772   'p4' => '277',
31773   'p5' => '0',
31774   'p6' => '0',
31775   'p7' => '0',
31776   'p8' => '0',
31777   'p9' => '0',
31778   'updated' => '0',
31779 ))
31780 ->values(array(
31781   'menu_name' => 'navigation',
31782   'mlid' => '278',
31783   'plid' => '197',
31784   'link_path' => 'admin/build/menu/item/%/reset',
31785   'router_path' => 'admin/build/menu/item/%/reset',
31786   'link_title' => 'Reset menu item',
31787   'options' => 'a:0:{}',
31788   'module' => 'system',
31789   'hidden' => '-1',
31790   'external' => '0',
31791   'has_children' => '0',
31792   'expanded' => '0',
31793   'weight' => '0',
31794   'depth' => '4',
31795   'customized' => '0',
31796   'p1' => '144',
31797   'p2' => '166',
31798   'p3' => '197',
31799   'p4' => '278',
31800   'p5' => '0',
31801   'p6' => '0',
31802   'p7' => '0',
31803   'p8' => '0',
31804   'p9' => '0',
31805   'updated' => '0',
31806 ))
31807 ->values(array(
31808   'menu_name' => 'navigation',
31809   'mlid' => '299',
31810   'plid' => '0',
31811   'link_path' => 'event',
31812   'router_path' => 'event',
31813   'link_title' => 'Events',
31814   'options' => 'a:0:{}',
31815   'module' => 'system',
31816   'hidden' => '1',
31817   'external' => '0',
31818   'has_children' => '0',
31819   'expanded' => '0',
31820   'weight' => '0',
31821   'depth' => '1',
31822   'customized' => '0',
31823   'p1' => '299',
31824   'p2' => '0',
31825   'p3' => '0',
31826   'p4' => '0',
31827   'p5' => '0',
31828   'p6' => '0',
31829   'p7' => '0',
31830   'p8' => '0',
31831   'p9' => '0',
31832   'updated' => '0',
31833 ))
31834 ->values(array(
31835   'menu_name' => 'navigation',
31836   'mlid' => '300',
31837   'plid' => '299',
31838   'link_path' => 'event/dst',
31839   'router_path' => 'event/dst',
31840   'link_title' => 'Event dst view',
31841   'options' => 'a:0:{}',
31842   'module' => 'system',
31843   'hidden' => '-1',
31844   'external' => '0',
31845   'has_children' => '0',
31846   'expanded' => '0',
31847   'weight' => '0',
31848   'depth' => '2',
31849   'customized' => '0',
31850   'p1' => '299',
31851   'p2' => '300',
31852   'p3' => '0',
31853   'p4' => '0',
31854   'p5' => '0',
31855   'p6' => '0',
31856   'p7' => '0',
31857   'p8' => '0',
31858   'p9' => '0',
31859   'updated' => '0',
31860 ))
31861 ->values(array(
31862   'menu_name' => 'navigation',
31863   'mlid' => '301',
31864   'plid' => '299',
31865   'link_path' => 'event/ical',
31866   'router_path' => 'event/ical',
31867   'link_title' => 'Event ical feed',
31868   'options' => 'a:0:{}',
31869   'module' => 'system',
31870   'hidden' => '-1',
31871   'external' => '0',
31872   'has_children' => '0',
31873   'expanded' => '0',
31874   'weight' => '0',
31875   'depth' => '2',
31876   'customized' => '0',
31877   'p1' => '299',
31878   'p2' => '301',
31879   'p3' => '0',
31880   'p4' => '0',
31881   'p5' => '0',
31882   'p6' => '0',
31883   'p7' => '0',
31884   'p8' => '0',
31885   'p9' => '0',
31886   'updated' => '0',
31887 ))
31888 ->values(array(
31889   'menu_name' => 'navigation',
31890   'mlid' => '302',
31891   'plid' => '299',
31892   'link_path' => 'event/feed',
31893   'router_path' => 'event/feed',
31894   'link_title' => 'Event rss feed',
31895   'options' => 'a:0:{}',
31896   'module' => 'system',
31897   'hidden' => '-1',
31898   'external' => '0',
31899   'has_children' => '0',
31900   'expanded' => '0',
31901   'weight' => '0',
31902   'depth' => '2',
31903   'customized' => '0',
31904   'p1' => '299',
31905   'p2' => '302',
31906   'p3' => '0',
31907   'p4' => '0',
31908   'p5' => '0',
31909   'p6' => '0',
31910   'p7' => '0',
31911   'p8' => '0',
31912   'p9' => '0',
31913   'updated' => '0',
31914 ))
31915 ->values(array(
31916   'menu_name' => 'navigation',
31917   'mlid' => '303',
31918   'plid' => '299',
31919   'link_path' => 'event/type',
31920   'router_path' => 'event/type',
31921   'link_title' => 'Filter by content type',
31922   'options' => 'a:0:{}',
31923   'module' => 'system',
31924   'hidden' => '-1',
31925   'external' => '0',
31926   'has_children' => '0',
31927   'expanded' => '0',
31928   'weight' => '0',
31929   'depth' => '2',
31930   'customized' => '0',
31931   'p1' => '299',
31932   'p2' => '303',
31933   'p3' => '0',
31934   'p4' => '0',
31935   'p5' => '0',
31936   'p6' => '0',
31937   'p7' => '0',
31938   'p8' => '0',
31939   'p9' => '0',
31940   'updated' => '0',
31941 ))
31942 ->values(array(
31943   'menu_name' => 'navigation',
31944   'mlid' => '304',
31945   'plid' => '299',
31946   'link_path' => 'event/term',
31947   'router_path' => 'event/term',
31948   'link_title' => 'Filter by taxonomy',
31949   'options' => 'a:0:{}',
31950   'module' => 'system',
31951   'hidden' => '-1',
31952   'external' => '0',
31953   'has_children' => '0',
31954   'expanded' => '0',
31955   'weight' => '0',
31956   'depth' => '2',
31957   'customized' => '0',
31958   'p1' => '299',
31959   'p2' => '304',
31960   'p3' => '0',
31961   'p4' => '0',
31962   'p5' => '0',
31963   'p6' => '0',
31964   'p7' => '0',
31965   'p8' => '0',
31966   'p9' => '0',
31967   'updated' => '0',
31968 ))
31969 ->values(array(
31970   'menu_name' => 'navigation',
31971   'mlid' => '305',
31972   'plid' => '0',
31973   'link_path' => 'node/%/ical',
31974   'router_path' => 'node/%/ical',
31975   'link_title' => 'Event ical',
31976   'options' => 'a:0:{}',
31977   'module' => 'system',
31978   'hidden' => '-1',
31979   'external' => '0',
31980   'has_children' => '0',
31981   'expanded' => '0',
31982   'weight' => '0',
31983   'depth' => '1',
31984   'customized' => '0',
31985   'p1' => '305',
31986   'p2' => '0',
31987   'p3' => '0',
31988   'p4' => '0',
31989   'p5' => '0',
31990   'p6' => '0',
31991   'p7' => '0',
31992   'p8' => '0',
31993   'p9' => '0',
31994   'updated' => '0',
31995 ))
31996 ->values(array(
31997   'menu_name' => 'navigation',
31998   'mlid' => '306',
31999   'plid' => '167',
32000   'link_path' => 'admin/settings/event',
32001   'router_path' => 'admin/settings/event',
32002   'link_title' => 'Events',
32003   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:36:"Set up how your site handles events.";}}',
32004   'module' => 'system',
32005   'hidden' => '0',
32006   'external' => '0',
32007   'has_children' => '1',
32008   'expanded' => '0',
32009   'weight' => '0',
32010   'depth' => '3',
32011   'customized' => '0',
32012   'p1' => '144',
32013   'p2' => '167',
32014   'p3' => '306',
32015   'p4' => '0',
32016   'p5' => '0',
32017   'p6' => '0',
32018   'p7' => '0',
32019   'p8' => '0',
32020   'p9' => '0',
32021   'updated' => '0',
32022 ))
32023 ->values(array(
32024   'menu_name' => 'navigation',
32025   'mlid' => '307',
32026   'plid' => '306',
32027   'link_path' => 'admin/settings/event/overview',
32028   'router_path' => 'admin/settings/event/overview',
32029   'link_title' => 'Event overview',
32030   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:50:"Change how event summary information is displayed.";}}',
32031   'module' => 'system',
32032   'hidden' => '0',
32033   'external' => '0',
32034   'has_children' => '0',
32035   'expanded' => '0',
32036   'weight' => '0',
32037   'depth' => '4',
32038   'customized' => '0',
32039   'p1' => '144',
32040   'p2' => '167',
32041   'p3' => '306',
32042   'p4' => '307',
32043   'p5' => '0',
32044   'p6' => '0',
32045   'p7' => '0',
32046   'p8' => '0',
32047   'p9' => '0',
32048   'updated' => '0',
32049 ))
32050 ->values(array(
32051   'menu_name' => 'navigation',
32052   'mlid' => '308',
32053   'plid' => '306',
32054   'link_path' => 'admin/settings/event/timezone',
32055   'router_path' => 'admin/settings/event/timezone',
32056   'link_title' => 'Timezone handling',
32057   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Change how timezone information is saved and displayed.";}}',
32058   'module' => 'system',
32059   'hidden' => '0',
32060   'external' => '0',
32061   'has_children' => '0',
32062   'expanded' => '0',
32063   'weight' => '0',
32064   'depth' => '4',
32065   'customized' => '0',
32066   'p1' => '144',
32067   'p2' => '167',
32068   'p3' => '306',
32069   'p4' => '308',
32070   'p5' => '0',
32071   'p6' => '0',
32072   'p7' => '0',
32073   'p8' => '0',
32074   'p9' => '0',
32075   'updated' => '0',
32076 ))
32077 ->values(array(
32078   'menu_name' => 'navigation',
32079   'mlid' => '309',
32080   'plid' => '158',
32081   'link_path' => 'node/add/story',
32082   'router_path' => 'node/add/story',
32083   'link_title' => 'Story',
32084   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:392:\"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.\";}}",
32085   'module' => 'system',
32086   'hidden' => '0',
32087   'external' => '0',
32088   'has_children' => '0',
32089   'expanded' => '0',
32090   'weight' => '0',
32091   'depth' => '2',
32092   'customized' => '0',
32093   'p1' => '158',
32094   'p2' => '309',
32095   'p3' => '0',
32096   'p4' => '0',
32097   'p5' => '0',
32098   'p6' => '0',
32099   'p7' => '0',
32100   'p8' => '0',
32101   'p9' => '0',
32102   'updated' => '0',
32103 ))
32104 ->values(array(
32105   'menu_name' => 'navigation',
32106   'mlid' => '310',
32107   'plid' => '157',
32108   'link_path' => 'admin/content/node-type/story',
32109   'router_path' => 'admin/content/node-type/story',
32110   'link_title' => 'Story',
32111   'options' => 'a:0:{}',
32112   'module' => 'system',
32113   'hidden' => '-1',
32114   'external' => '0',
32115   'has_children' => '0',
32116   'expanded' => '0',
32117   'weight' => '0',
32118   'depth' => '3',
32119   'customized' => '0',
32120   'p1' => '144',
32121   'p2' => '157',
32122   'p3' => '310',
32123   'p4' => '0',
32124   'p5' => '0',
32125   'p6' => '0',
32126   'p7' => '0',
32127   'p8' => '0',
32128   'p9' => '0',
32129   'updated' => '0',
32130 ))
32131 ->values(array(
32132   'menu_name' => 'navigation',
32133   'mlid' => '311',
32134   'plid' => '0',
32135   'link_path' => 'admin/content/node-type/story/delete',
32136   'router_path' => 'admin/content/node-type/story/delete',
32137   'link_title' => 'Delete',
32138   'options' => 'a:0:{}',
32139   'module' => 'system',
32140   'hidden' => '-1',
32141   'external' => '0',
32142   'has_children' => '0',
32143   'expanded' => '0',
32144   'weight' => '0',
32145   'depth' => '1',
32146   'customized' => '0',
32147   'p1' => '311',
32148   'p2' => '0',
32149   'p3' => '0',
32150   'p4' => '0',
32151   'p5' => '0',
32152   'p6' => '0',
32153   'p7' => '0',
32154   'p8' => '0',
32155   'p9' => '0',
32156   'updated' => '0',
32157 ))
32158 ->values(array(
32159   'menu_name' => 'navigation',
32160   'mlid' => '328',
32161   'plid' => '0',
32162   'link_path' => 'filefield/progress',
32163   'router_path' => 'filefield/progress',
32164   'link_title' => '',
32165   'options' => 'a:0:{}',
32166   'module' => 'system',
32167   'hidden' => '-1',
32168   'external' => '0',
32169   'has_children' => '0',
32170   'expanded' => '0',
32171   'weight' => '0',
32172   'depth' => '1',
32173   'customized' => '0',
32174   'p1' => '328',
32175   'p2' => '0',
32176   'p3' => '0',
32177   'p4' => '0',
32178   'p5' => '0',
32179   'p6' => '0',
32180   'p7' => '0',
32181   'p8' => '0',
32182   'p9' => '0',
32183   'updated' => '0',
32184 ))
32185 ->values(array(
32186   'menu_name' => 'navigation',
32187   'mlid' => '329',
32188   'plid' => '0',
32189   'link_path' => 'filefield/ahah/%/%/%',
32190   'router_path' => 'filefield/ahah/%/%/%',
32191   'link_title' => '',
32192   'options' => 'a:0:{}',
32193   'module' => 'system',
32194   'hidden' => '-1',
32195   'external' => '0',
32196   'has_children' => '0',
32197   'expanded' => '0',
32198   'weight' => '0',
32199   'depth' => '1',
32200   'customized' => '0',
32201   'p1' => '329',
32202   'p2' => '0',
32203   'p3' => '0',
32204   'p4' => '0',
32205   'p5' => '0',
32206   'p6' => '0',
32207   'p7' => '0',
32208   'p8' => '0',
32209   'p9' => '0',
32210   'updated' => '0',
32211 ))
32212 ->values(array(
32213   'menu_name' => 'navigation',
32214   'mlid' => '333',
32215   'plid' => '167',
32216   'link_path' => 'admin/settings/email',
32217   'router_path' => 'admin/settings/email',
32218   'link_title' => 'CCK Email Contact Form Settings',
32219   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Administer flood control settings for email contact forms";}}',
32220   'module' => 'system',
32221   'hidden' => '0',
32222   'external' => '0',
32223   'has_children' => '0',
32224   'expanded' => '0',
32225   'weight' => '0',
32226   'depth' => '3',
32227   'customized' => '0',
32228   'p1' => '144',
32229   'p2' => '167',
32230   'p3' => '333',
32231   'p4' => '0',
32232   'p5' => '0',
32233   'p6' => '0',
32234   'p7' => '0',
32235   'p8' => '0',
32236   'p9' => '0',
32237   'updated' => '0',
32238 ))
32239 ->values(array(
32240   'menu_name' => 'navigation',
32241   'mlid' => '334',
32242   'plid' => '0',
32243   'link_path' => 'email/%/%',
32244   'router_path' => 'email/%/%',
32245   'link_title' => 'Email Contact Form',
32246   'options' => 'a:0:{}',
32247   'module' => 'system',
32248   'hidden' => '-1',
32249   'external' => '0',
32250   'has_children' => '0',
32251   'expanded' => '0',
32252   'weight' => '0',
32253   'depth' => '1',
32254   'customized' => '0',
32255   'p1' => '334',
32256   'p2' => '0',
32257   'p3' => '0',
32258   'p4' => '0',
32259   'p5' => '0',
32260   'p6' => '0',
32261   'p7' => '0',
32262   'p8' => '0',
32263   'p9' => '0',
32264   'updated' => '0',
32265 ))
32266 ->values(array(
32267   'menu_name' => 'navigation',
32268   'mlid' => '350',
32269   'plid' => '0',
32270   'link_path' => 'aggregator',
32271   'router_path' => 'aggregator',
32272   'link_title' => 'Feed aggregator',
32273   'options' => 'a:0:{}',
32274   'module' => 'system',
32275   'hidden' => '0',
32276   'external' => '0',
32277   'has_children' => '1',
32278   'expanded' => '0',
32279   'weight' => '5',
32280   'depth' => '1',
32281   'customized' => '0',
32282   'p1' => '350',
32283   'p2' => '0',
32284   'p3' => '0',
32285   'p4' => '0',
32286   'p5' => '0',
32287   'p6' => '0',
32288   'p7' => '0',
32289   'p8' => '0',
32290   'p9' => '0',
32291   'updated' => '0',
32292 ))
32293 ->values(array(
32294   'menu_name' => 'navigation',
32295   'mlid' => '351',
32296   'plid' => '350',
32297   'link_path' => 'aggregator/categories',
32298   'router_path' => 'aggregator/categories',
32299   'link_title' => 'Categories',
32300   'options' => 'a:0:{}',
32301   'module' => 'system',
32302   'hidden' => '0',
32303   'external' => '0',
32304   'has_children' => '1',
32305   'expanded' => '0',
32306   'weight' => '0',
32307   'depth' => '2',
32308   'customized' => '0',
32309   'p1' => '350',
32310   'p2' => '351',
32311   'p3' => '0',
32312   'p4' => '0',
32313   'p5' => '0',
32314   'p6' => '0',
32315   'p7' => '0',
32316   'p8' => '0',
32317   'p9' => '0',
32318   'updated' => '0',
32319 ))
32320 ->values(array(
32321   'menu_name' => 'navigation',
32322   'mlid' => '352',
32323   'plid' => '350',
32324   'link_path' => 'aggregator/opml',
32325   'router_path' => 'aggregator/opml',
32326   'link_title' => 'OPML feed',
32327   'options' => 'a:0:{}',
32328   'module' => 'system',
32329   'hidden' => '-1',
32330   'external' => '0',
32331   'has_children' => '0',
32332   'expanded' => '0',
32333   'weight' => '0',
32334   'depth' => '2',
32335   'customized' => '0',
32336   'p1' => '350',
32337   'p2' => '352',
32338   'p3' => '0',
32339   'p4' => '0',
32340   'p5' => '0',
32341   'p6' => '0',
32342   'p7' => '0',
32343   'p8' => '0',
32344   'p9' => '0',
32345   'updated' => '0',
32346 ))
32347 ->values(array(
32348   'menu_name' => 'navigation',
32349   'mlid' => '353',
32350   'plid' => '350',
32351   'link_path' => 'aggregator/rss',
32352   'router_path' => 'aggregator/rss',
32353   'link_title' => 'RSS feed',
32354   'options' => 'a:0:{}',
32355   'module' => 'system',
32356   'hidden' => '-1',
32357   'external' => '0',
32358   'has_children' => '0',
32359   'expanded' => '0',
32360   'weight' => '0',
32361   'depth' => '2',
32362   'customized' => '0',
32363   'p1' => '350',
32364   'p2' => '353',
32365   'p3' => '0',
32366   'p4' => '0',
32367   'p5' => '0',
32368   'p6' => '0',
32369   'p7' => '0',
32370   'p8' => '0',
32371   'p9' => '0',
32372   'updated' => '0',
32373 ))
32374 ->values(array(
32375   'menu_name' => 'navigation',
32376   'mlid' => '354',
32377   'plid' => '350',
32378   'link_path' => 'aggregator/sources',
32379   'router_path' => 'aggregator/sources',
32380   'link_title' => 'Sources',
32381   'options' => 'a:0:{}',
32382   'module' => 'system',
32383   'hidden' => '0',
32384   'external' => '0',
32385   'has_children' => '0',
32386   'expanded' => '0',
32387   'weight' => '0',
32388   'depth' => '2',
32389   'customized' => '0',
32390   'p1' => '350',
32391   'p2' => '354',
32392   'p3' => '0',
32393   'p4' => '0',
32394   'p5' => '0',
32395   'p6' => '0',
32396   'p7' => '0',
32397   'p8' => '0',
32398   'p9' => '0',
32399   'updated' => '0',
32400 ))
32401 ->values(array(
32402   'menu_name' => 'navigation',
32403   'mlid' => '355',
32404   'plid' => '351',
32405   'link_path' => 'aggregator/categories/%',
32406   'router_path' => 'aggregator/categories/%',
32407   'link_title' => '',
32408   'options' => 'a:0:{}',
32409   'module' => 'system',
32410   'hidden' => '0',
32411   'external' => '0',
32412   'has_children' => '0',
32413   'expanded' => '0',
32414   'weight' => '0',
32415   'depth' => '3',
32416   'customized' => '0',
32417   'p1' => '350',
32418   'p2' => '351',
32419   'p3' => '355',
32420   'p4' => '0',
32421   'p5' => '0',
32422   'p6' => '0',
32423   'p7' => '0',
32424   'p8' => '0',
32425   'p9' => '0',
32426   'updated' => '0',
32427 ))
32428 ->values(array(
32429   'menu_name' => 'navigation',
32430   'mlid' => '356',
32431   'plid' => '354',
32432   'link_path' => 'aggregator/sources/%',
32433   'router_path' => 'aggregator/sources/%',
32434   'link_title' => '',
32435   'options' => 'a:0:{}',
32436   'module' => 'system',
32437   'hidden' => '-1',
32438   'external' => '0',
32439   'has_children' => '0',
32440   'expanded' => '0',
32441   'weight' => '0',
32442   'depth' => '3',
32443   'customized' => '0',
32444   'p1' => '350',
32445   'p2' => '354',
32446   'p3' => '356',
32447   'p4' => '0',
32448   'p5' => '0',
32449   'p6' => '0',
32450   'p7' => '0',
32451   'p8' => '0',
32452   'p9' => '0',
32453   'updated' => '0',
32454 ))
32455 ->values(array(
32456   'menu_name' => 'navigation',
32457   'mlid' => '357',
32458   'plid' => '157',
32459   'link_path' => 'admin/content/aggregator',
32460   'router_path' => 'admin/content/aggregator',
32461   'link_title' => 'Feed aggregator',
32462   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:116:\"Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.\";}}",
32463   'module' => 'system',
32464   'hidden' => '0',
32465   'external' => '0',
32466   'has_children' => '0',
32467   'expanded' => '0',
32468   'weight' => '0',
32469   'depth' => '3',
32470   'customized' => '0',
32471   'p1' => '144',
32472   'p2' => '157',
32473   'p3' => '357',
32474   'p4' => '0',
32475   'p5' => '0',
32476   'p6' => '0',
32477   'p7' => '0',
32478   'p8' => '0',
32479   'p9' => '0',
32480   'updated' => '0',
32481 ))
32482 ->values(array(
32483   'menu_name' => 'navigation',
32484   'mlid' => '358',
32485   'plid' => '357',
32486   'link_path' => 'admin/content/aggregator/remove/%',
32487   'router_path' => 'admin/content/aggregator/remove/%',
32488   'link_title' => 'Remove items',
32489   'options' => 'a:0:{}',
32490   'module' => 'system',
32491   'hidden' => '-1',
32492   'external' => '0',
32493   'has_children' => '0',
32494   'expanded' => '0',
32495   'weight' => '0',
32496   'depth' => '4',
32497   'customized' => '0',
32498   'p1' => '144',
32499   'p2' => '157',
32500   'p3' => '357',
32501   'p4' => '358',
32502   'p5' => '0',
32503   'p6' => '0',
32504   'p7' => '0',
32505   'p8' => '0',
32506   'p9' => '0',
32507   'updated' => '0',
32508 ))
32509 ->values(array(
32510   'menu_name' => 'navigation',
32511   'mlid' => '359',
32512   'plid' => '357',
32513   'link_path' => 'admin/content/aggregator/update/%',
32514   'router_path' => 'admin/content/aggregator/update/%',
32515   'link_title' => 'Update items',
32516   'options' => 'a:0:{}',
32517   'module' => 'system',
32518   'hidden' => '-1',
32519   'external' => '0',
32520   'has_children' => '0',
32521   'expanded' => '0',
32522   'weight' => '0',
32523   'depth' => '4',
32524   'customized' => '0',
32525   'p1' => '144',
32526   'p2' => '157',
32527   'p3' => '357',
32528   'p4' => '359',
32529   'p5' => '0',
32530   'p6' => '0',
32531   'p7' => '0',
32532   'p8' => '0',
32533   'p9' => '0',
32534   'updated' => '0',
32535 ))
32536 ->values(array(
32537   'menu_name' => 'navigation',
32538   'mlid' => '360',
32539   'plid' => '357',
32540   'link_path' => 'admin/content/aggregator/edit/category/%',
32541   'router_path' => 'admin/content/aggregator/edit/category/%',
32542   'link_title' => 'Edit category',
32543   'options' => 'a:0:{}',
32544   'module' => 'system',
32545   'hidden' => '-1',
32546   'external' => '0',
32547   'has_children' => '0',
32548   'expanded' => '0',
32549   'weight' => '0',
32550   'depth' => '4',
32551   'customized' => '0',
32552   'p1' => '144',
32553   'p2' => '157',
32554   'p3' => '357',
32555   'p4' => '360',
32556   'p5' => '0',
32557   'p6' => '0',
32558   'p7' => '0',
32559   'p8' => '0',
32560   'p9' => '0',
32561   'updated' => '0',
32562 ))
32563 ->values(array(
32564   'menu_name' => 'navigation',
32565   'mlid' => '361',
32566   'plid' => '357',
32567   'link_path' => 'admin/content/aggregator/edit/feed/%',
32568   'router_path' => 'admin/content/aggregator/edit/feed/%',
32569   'link_title' => 'Edit feed',
32570   'options' => 'a:0:{}',
32571   'module' => 'system',
32572   'hidden' => '-1',
32573   'external' => '0',
32574   'has_children' => '0',
32575   'expanded' => '0',
32576   'weight' => '0',
32577   'depth' => '4',
32578   'customized' => '0',
32579   'p1' => '144',
32580   'p2' => '157',
32581   'p3' => '357',
32582   'p4' => '361',
32583   'p5' => '0',
32584   'p6' => '0',
32585   'p7' => '0',
32586   'p8' => '0',
32587   'p9' => '0',
32588   'updated' => '0',
32589 ))
32590 ->values(array(
32591   'menu_name' => 'navigation',
32592   'mlid' => '363',
32593   'plid' => '0',
32594   'link_path' => 'book',
32595   'router_path' => 'book',
32596   'link_title' => 'Books',
32597   'options' => 'a:0:{}',
32598   'module' => 'system',
32599   'hidden' => '1',
32600   'external' => '0',
32601   'has_children' => '0',
32602   'expanded' => '0',
32603   'weight' => '0',
32604   'depth' => '1',
32605   'customized' => '0',
32606   'p1' => '363',
32607   'p2' => '0',
32608   'p3' => '0',
32609   'p4' => '0',
32610   'p5' => '0',
32611   'p6' => '0',
32612   'p7' => '0',
32613   'p8' => '0',
32614   'p9' => '0',
32615   'updated' => '0',
32616 ))
32617 ->values(array(
32618   'menu_name' => 'navigation',
32619   'mlid' => '364',
32620   'plid' => '363',
32621   'link_path' => 'book/js/form',
32622   'router_path' => 'book/js/form',
32623   'link_title' => '',
32624   'options' => 'a:0:{}',
32625   'module' => 'system',
32626   'hidden' => '-1',
32627   'external' => '0',
32628   'has_children' => '0',
32629   'expanded' => '0',
32630   'weight' => '0',
32631   'depth' => '2',
32632   'customized' => '0',
32633   'p1' => '363',
32634   'p2' => '364',
32635   'p3' => '0',
32636   'p4' => '0',
32637   'p5' => '0',
32638   'p6' => '0',
32639   'p7' => '0',
32640   'p8' => '0',
32641   'p9' => '0',
32642   'updated' => '0',
32643 ))
32644 ->values(array(
32645   'menu_name' => 'navigation',
32646   'mlid' => '366',
32647   'plid' => '157',
32648   'link_path' => 'admin/content/book',
32649   'router_path' => 'admin/content/book',
32650   'link_title' => 'Books',
32651   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Manage your site's book outlines.\";}}",
32652   'module' => 'system',
32653   'hidden' => '0',
32654   'external' => '0',
32655   'has_children' => '0',
32656   'expanded' => '0',
32657   'weight' => '0',
32658   'depth' => '3',
32659   'customized' => '0',
32660   'p1' => '144',
32661   'p2' => '157',
32662   'p3' => '366',
32663   'p4' => '0',
32664   'p5' => '0',
32665   'p6' => '0',
32666   'p7' => '0',
32667   'p8' => '0',
32668   'p9' => '0',
32669   'updated' => '0',
32670 ))
32671 ->values(array(
32672   'menu_name' => 'navigation',
32673   'mlid' => '367',
32674   'plid' => '363',
32675   'link_path' => 'book/export/%/%',
32676   'router_path' => 'book/export/%/%',
32677   'link_title' => '',
32678   'options' => 'a:0:{}',
32679   'module' => 'system',
32680   'hidden' => '-1',
32681   'external' => '0',
32682   'has_children' => '0',
32683   'expanded' => '0',
32684   'weight' => '0',
32685   'depth' => '2',
32686   'customized' => '0',
32687   'p1' => '363',
32688   'p2' => '367',
32689   'p3' => '0',
32690   'p4' => '0',
32691   'p5' => '0',
32692   'p6' => '0',
32693   'p7' => '0',
32694   'p8' => '0',
32695   'p9' => '0',
32696   'updated' => '0',
32697 ))
32698 ->values(array(
32699   'menu_name' => 'navigation',
32700   'mlid' => '369',
32701   'plid' => '366',
32702   'link_path' => 'admin/content/book/%',
32703   'router_path' => 'admin/content/book/%',
32704   'link_title' => 'Re-order book pages and change titles',
32705   'options' => 'a:0:{}',
32706   'module' => 'system',
32707   'hidden' => '-1',
32708   'external' => '0',
32709   'has_children' => '0',
32710   'expanded' => '0',
32711   'weight' => '0',
32712   'depth' => '4',
32713   'customized' => '0',
32714   'p1' => '144',
32715   'p2' => '157',
32716   'p3' => '366',
32717   'p4' => '369',
32718   'p5' => '0',
32719   'p6' => '0',
32720   'p7' => '0',
32721   'p8' => '0',
32722   'p9' => '0',
32723   'updated' => '0',
32724 ))
32725 ->values(array(
32726   'menu_name' => 'navigation',
32727   'mlid' => '370',
32728   'plid' => '0',
32729   'link_path' => 'node/%/outline/remove',
32730   'router_path' => 'node/%/outline/remove',
32731   'link_title' => 'Remove from outline',
32732   'options' => 'a:0:{}',
32733   'module' => 'system',
32734   'hidden' => '-1',
32735   'external' => '0',
32736   'has_children' => '0',
32737   'expanded' => '0',
32738   'weight' => '0',
32739   'depth' => '1',
32740   'customized' => '0',
32741   'p1' => '370',
32742   'p2' => '0',
32743   'p3' => '0',
32744   'p4' => '0',
32745   'p5' => '0',
32746   'p6' => '0',
32747   'p7' => '0',
32748   'p8' => '0',
32749   'p9' => '0',
32750   'updated' => '0',
32751 ))
32752 ->values(array(
32753   'menu_name' => 'secondary-links',
32754   'mlid' => '393',
32755   'plid' => '0',
32756   'link_path' => 'user/login',
32757   'router_path' => 'user/login',
32758   'link_title' => 'Test 3',
32759   'options' => 'a:0:{}',
32760   'module' => 'menu',
32761   'hidden' => '0',
32762   'external' => '0',
32763   'has_children' => '1',
32764   'expanded' => '0',
32765   'weight' => '-47',
32766   'depth' => '1',
32767   'customized' => '1',
32768   'p1' => '393',
32769   'p2' => '0',
32770   'p3' => '0',
32771   'p4' => '0',
32772   'p5' => '0',
32773   'p6' => '0',
32774   'p7' => '0',
32775   'p8' => '0',
32776   'p9' => '0',
32777   'updated' => '0',
32778 ))
32779 ->values(array(
32780   'menu_name' => 'navigation',
32781   'mlid' => '394',
32782   'plid' => '166',
32783   'link_path' => 'admin/build/path',
32784   'router_path' => 'admin/build/path',
32785   'link_title' => 'URL aliases',
32786   'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Change your site's URL paths by aliasing them.\";}}",
32787   'module' => 'system',
32788   'hidden' => '0',
32789   'external' => '0',
32790   'has_children' => '0',
32791   'expanded' => '0',
32792   'weight' => '0',
32793   'depth' => '3',
32794   'customized' => '0',
32795   'p1' => '144',
32796   'p2' => '166',
32797   'p3' => '394',
32798   'p4' => '0',
32799   'p5' => '0',
32800   'p6' => '0',
32801   'p7' => '0',
32802   'p8' => '0',
32803   'p9' => '0',
32804   'updated' => '0',
32805 ))
32806 ->values(array(
32807   'menu_name' => 'navigation',
32808   'mlid' => '395',
32809   'plid' => '394',
32810   'link_path' => 'admin/build/path/delete',
32811   'router_path' => 'admin/build/path/delete',
32812   'link_title' => 'Delete alias',
32813   'options' => 'a:0:{}',
32814   'module' => 'system',
32815   'hidden' => '-1',
32816   'external' => '0',
32817   'has_children' => '0',
32818   'expanded' => '0',
32819   'weight' => '0',
32820   'depth' => '4',
32821   'customized' => '0',
32822   'p1' => '144',
32823   'p2' => '166',
32824   'p3' => '394',
32825   'p4' => '395',
32826   'p5' => '0',
32827   'p6' => '0',
32828   'p7' => '0',
32829   'p8' => '0',
32830   'p9' => '0',
32831   'updated' => '0',
32832 ))
32833 ->values(array(
32834   'menu_name' => 'navigation',
32835   'mlid' => '396',
32836   'plid' => '394',
32837   'link_path' => 'admin/build/path/edit',
32838   'router_path' => 'admin/build/path/edit',
32839   'link_title' => 'Edit alias',
32840   'options' => 'a:0:{}',
32841   'module' => 'system',
32842   'hidden' => '-1',
32843   'external' => '0',
32844   'has_children' => '0',
32845   'expanded' => '0',
32846   'weight' => '0',
32847   'depth' => '4',
32848   'customized' => '0',
32849   'p1' => '144',
32850   'p2' => '166',
32851   'p3' => '394',
32852   'p4' => '396',
32853   'p5' => '0',
32854   'p6' => '0',
32855   'p7' => '0',
32856   'p8' => '0',
32857   'p9' => '0',
32858   'updated' => '0',
32859 ))
32860 ->values(array(
32861   'menu_name' => 'navigation',
32862   'mlid' => '397',
32863   'plid' => '0',
32864   'link_path' => 'system/files/imagecache',
32865   'router_path' => 'system/files/imagecache',
32866   'link_title' => '',
32867   'options' => 'a:0:{}',
32868   'module' => 'system',
32869   'hidden' => '-1',
32870   'external' => '0',
32871   'has_children' => '0',
32872   'expanded' => '0',
32873   'weight' => '0',
32874   'depth' => '1',
32875   'customized' => '0',
32876   'p1' => '397',
32877   'p2' => '0',
32878   'p3' => '0',
32879   'p4' => '0',
32880   'p5' => '0',
32881   'p6' => '0',
32882   'p7' => '0',
32883   'p8' => '0',
32884   'p9' => '0',
32885   'updated' => '0',
32886 ))
32887 ->values(array(
32888   'menu_name' => 'navigation',
32889   'mlid' => '398',
32890   'plid' => '167',
32891   'link_path' => 'admin/settings/imageapi',
32892   'router_path' => 'admin/settings/imageapi',
32893   'link_title' => 'ImageAPI',
32894   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:19:"Configure ImageAPI.";}}',
32895   'module' => 'system',
32896   'hidden' => '0',
32897   'external' => '0',
32898   'has_children' => '0',
32899   'expanded' => '0',
32900   'weight' => '0',
32901   'depth' => '3',
32902   'customized' => '0',
32903   'p1' => '144',
32904   'p2' => '167',
32905   'p3' => '398',
32906   'p4' => '0',
32907   'p5' => '0',
32908   'p6' => '0',
32909   'p7' => '0',
32910   'p8' => '0',
32911   'p9' => '0',
32912   'updated' => '0',
32913 ))
32914 ->values(array(
32915   'menu_name' => 'navigation',
32916   'mlid' => '399',
32917   'plid' => '167',
32918   'link_path' => 'admin/settings/language',
32919   'router_path' => 'admin/settings/language',
32920   'link_title' => 'Languages',
32921   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Configure languages for content and the user interface.";}}',
32922   'module' => 'system',
32923   'hidden' => '0',
32924   'external' => '0',
32925   'has_children' => '0',
32926   'expanded' => '0',
32927   'weight' => '0',
32928   'depth' => '3',
32929   'customized' => '0',
32930   'p1' => '144',
32931   'p2' => '167',
32932   'p3' => '399',
32933   'p4' => '0',
32934   'p5' => '0',
32935   'p6' => '0',
32936   'p7' => '0',
32937   'p8' => '0',
32938   'p9' => '0',
32939   'updated' => '0',
32940 ))
32941 ->values(array(
32942   'menu_name' => 'navigation',
32943   'mlid' => '400',
32944   'plid' => '166',
32945   'link_path' => 'admin/build/translate',
32946   'router_path' => 'admin/build/translate',
32947   'link_title' => 'Translate interface',
32948   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"Translate the built in interface and optionally other text.";}}',
32949   'module' => 'system',
32950   'hidden' => '0',
32951   'external' => '0',
32952   'has_children' => '0',
32953   'expanded' => '0',
32954   'weight' => '0',
32955   'depth' => '3',
32956   'customized' => '0',
32957   'p1' => '144',
32958   'p2' => '166',
32959   'p3' => '400',
32960   'p4' => '0',
32961   'p5' => '0',
32962   'p6' => '0',
32963   'p7' => '0',
32964   'p8' => '0',
32965   'p9' => '0',
32966   'updated' => '0',
32967 ))
32968 ->values(array(
32969   'menu_name' => 'navigation',
32970   'mlid' => '401',
32971   'plid' => '399',
32972   'link_path' => 'admin/settings/language/delete/%',
32973   'router_path' => 'admin/settings/language/delete/%',
32974   'link_title' => 'Confirm',
32975   'options' => 'a:0:{}',
32976   'module' => 'system',
32977   'hidden' => '-1',
32978   'external' => '0',
32979   'has_children' => '0',
32980   'expanded' => '0',
32981   'weight' => '0',
32982   'depth' => '4',
32983   'customized' => '0',
32984   'p1' => '144',
32985   'p2' => '167',
32986   'p3' => '399',
32987   'p4' => '401',
32988   'p5' => '0',
32989   'p6' => '0',
32990   'p7' => '0',
32991   'p8' => '0',
32992   'p9' => '0',
32993   'updated' => '0',
32994 ))
32995 ->values(array(
32996   'menu_name' => 'navigation',
32997   'mlid' => '403',
32998   'plid' => '400',
32999   'link_path' => 'admin/build/translate/delete/%',
33000   'router_path' => 'admin/build/translate/delete/%',
33001   'link_title' => 'Delete string',
33002   'options' => 'a:0:{}',
33003   'module' => 'system',
33004   'hidden' => '-1',
33005   'external' => '0',
33006   'has_children' => '0',
33007   'expanded' => '0',
33008   'weight' => '0',
33009   'depth' => '4',
33010   'customized' => '0',
33011   'p1' => '144',
33012   'p2' => '166',
33013   'p3' => '400',
33014   'p4' => '403',
33015   'p5' => '0',
33016   'p6' => '0',
33017   'p7' => '0',
33018   'p8' => '0',
33019   'p9' => '0',
33020   'updated' => '0',
33021 ))
33022 ->values(array(
33023   'menu_name' => 'navigation',
33024   'mlid' => '404',
33025   'plid' => '399',
33026   'link_path' => 'admin/settings/language/edit/%',
33027   'router_path' => 'admin/settings/language/edit/%',
33028   'link_title' => 'Edit language',
33029   'options' => 'a:0:{}',
33030   'module' => 'system',
33031   'hidden' => '-1',
33032   'external' => '0',
33033   'has_children' => '0',
33034   'expanded' => '0',
33035   'weight' => '0',
33036   'depth' => '4',
33037   'customized' => '0',
33038   'p1' => '144',
33039   'p2' => '167',
33040   'p3' => '399',
33041   'p4' => '404',
33042   'p5' => '0',
33043   'p6' => '0',
33044   'p7' => '0',
33045   'p8' => '0',
33046   'p9' => '0',
33047   'updated' => '0',
33048 ))
33049 ->values(array(
33050   'menu_name' => 'navigation',
33051   'mlid' => '405',
33052   'plid' => '400',
33053   'link_path' => 'admin/build/translate/edit/%',
33054   'router_path' => 'admin/build/translate/edit/%',
33055   'link_title' => 'Edit string',
33056   'options' => 'a:0:{}',
33057   'module' => 'system',
33058   'hidden' => '-1',
33059   'external' => '0',
33060   'has_children' => '0',
33061   'expanded' => '0',
33062   'weight' => '0',
33063   'depth' => '4',
33064   'customized' => '0',
33065   'p1' => '144',
33066   'p2' => '166',
33067   'p3' => '400',
33068   'p4' => '405',
33069   'p5' => '0',
33070   'p6' => '0',
33071   'p7' => '0',
33072   'p8' => '0',
33073   'p9' => '0',
33074   'updated' => '0',
33075 ))
33076 ->values(array(
33077   'menu_name' => 'navigation',
33078   'mlid' => '407',
33079   'plid' => '0',
33080   'link_path' => 'i18nstrings/save',
33081   'router_path' => 'i18nstrings/save',
33082   'link_title' => 'Save string',
33083   'options' => 'a:0:{}',
33084   'module' => 'system',
33085   'hidden' => '-1',
33086   'external' => '0',
33087   'has_children' => '0',
33088   'expanded' => '0',
33089   'weight' => '0',
33090   'depth' => '1',
33091   'customized' => '0',
33092   'p1' => '407',
33093   'p2' => '0',
33094   'p3' => '0',
33095   'p4' => '0',
33096   'p5' => '0',
33097   'p6' => '0',
33098   'p7' => '0',
33099   'p8' => '0',
33100   'p9' => '0',
33101   'updated' => '0',
33102 ))
33103 ->values(array(
33104   'menu_name' => 'navigation',
33105   'mlid' => '408',
33106   'plid' => '0',
33107   'link_path' => 'i18n/node/autocomplete',
33108   'router_path' => 'i18n/node/autocomplete',
33109   'link_title' => 'Node title autocomplete',
33110   'options' => 'a:0:{}',
33111   'module' => 'system',
33112   'hidden' => '-1',
33113   'external' => '0',
33114   'has_children' => '0',
33115   'expanded' => '0',
33116   'weight' => '0',
33117   'depth' => '1',
33118   'customized' => '0',
33119   'p1' => '408',
33120   'p2' => '0',
33121   'p3' => '0',
33122   'p4' => '0',
33123   'p5' => '0',
33124   'p6' => '0',
33125   'p7' => '0',
33126   'p8' => '0',
33127   'p9' => '0',
33128   'updated' => '0',
33129 ))
33130 ->values(array(
33131   'menu_name' => 'navigation',
33132   'mlid' => '411',
33133   'plid' => '0',
33134   'link_path' => 'core/modules/simpletest/files/imagecache',
33135   'router_path' => 'core/modules/simpletest/files/imagecache',
33136   'link_title' => '',
33137   'options' => 'a:0:{}',
33138   'module' => 'system',
33139   'hidden' => '-1',
33140   'external' => '0',
33141   'has_children' => '0',
33142   'expanded' => '0',
33143   'weight' => '0',
33144   'depth' => '1',
33145   'customized' => '0',
33146   'p1' => '411',
33147   'p2' => '0',
33148   'p3' => '0',
33149   'p4' => '0',
33150   'p5' => '0',
33151   'p6' => '0',
33152   'p7' => '0',
33153   'p8' => '0',
33154   'p9' => '0',
33155   'updated' => '0',
33156 ))
33157 ->values(array(
33158   'menu_name' => 'navigation',
33159   'mlid' => '412',
33160   'plid' => '0',
33161   'link_path' => 'admin/content/node-type/story/fields/field_test/remove',
33162   'router_path' => 'admin/content/node-type/story/fields/field_test/remove',
33163   'link_title' => 'Remove field',
33164   'options' => 'a:0:{}',
33165   'module' => 'system',
33166   'hidden' => '-1',
33167   'external' => '0',
33168   'has_children' => '0',
33169   'expanded' => '0',
33170   'weight' => '0',
33171   'depth' => '1',
33172   'customized' => '0',
33173   'p1' => '412',
33174   'p2' => '0',
33175   'p3' => '0',
33176   'p4' => '0',
33177   'p5' => '0',
33178   'p6' => '0',
33179   'p7' => '0',
33180   'p8' => '0',
33181   'p9' => '0',
33182   'updated' => '0',
33183 ))
33184 ->values(array(
33185   'menu_name' => 'navigation',
33186   'mlid' => '413',
33187   'plid' => '0',
33188   'link_path' => 'admin/content/node-type/story/fields/field_test_date/remove',
33189   'router_path' => 'admin/content/node-type/story/fields/field_test_date/remove',
33190   'link_title' => 'Remove field',
33191   'options' => 'a:0:{}',
33192   'module' => 'system',
33193   'hidden' => '-1',
33194   'external' => '0',
33195   'has_children' => '0',
33196   'expanded' => '0',
33197   'weight' => '0',
33198   'depth' => '1',
33199   'customized' => '0',
33200   'p1' => '413',
33201   'p2' => '0',
33202   'p3' => '0',
33203   'p4' => '0',
33204   'p5' => '0',
33205   'p6' => '0',
33206   'p7' => '0',
33207   'p8' => '0',
33208   'p9' => '0',
33209   'updated' => '0',
33210 ))
33211 ->values(array(
33212   'menu_name' => 'navigation',
33213   'mlid' => '414',
33214   'plid' => '0',
33215   'link_path' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
33216   'router_path' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
33217   'link_title' => 'Remove field',
33218   'options' => 'a:0:{}',
33219   'module' => 'system',
33220   'hidden' => '-1',
33221   'external' => '0',
33222   'has_children' => '0',
33223   'expanded' => '0',
33224   'weight' => '0',
33225   'depth' => '1',
33226   'customized' => '0',
33227   'p1' => '414',
33228   'p2' => '0',
33229   'p3' => '0',
33230   'p4' => '0',
33231   'p5' => '0',
33232   'p6' => '0',
33233   'p7' => '0',
33234   'p8' => '0',
33235   'p9' => '0',
33236   'updated' => '0',
33237 ))
33238 ->values(array(
33239   'menu_name' => 'navigation',
33240   'mlid' => '415',
33241   'plid' => '0',
33242   'link_path' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
33243   'router_path' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
33244   'link_title' => 'Remove field',
33245   'options' => 'a:0:{}',
33246   'module' => 'system',
33247   'hidden' => '-1',
33248   'external' => '0',
33249   'has_children' => '0',
33250   'expanded' => '0',
33251   'weight' => '0',
33252   'depth' => '1',
33253   'customized' => '0',
33254   'p1' => '415',
33255   'p2' => '0',
33256   'p3' => '0',
33257   'p4' => '0',
33258   'p5' => '0',
33259   'p6' => '0',
33260   'p7' => '0',
33261   'p8' => '0',
33262   'p9' => '0',
33263   'updated' => '0',
33264 ))
33265 ->values(array(
33266   'menu_name' => 'navigation',
33267   'mlid' => '416',
33268   'plid' => '0',
33269   'link_path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
33270   'router_path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
33271   'link_title' => 'Remove field',
33272   'options' => 'a:0:{}',
33273   'module' => 'system',
33274   'hidden' => '-1',
33275   'external' => '0',
33276   'has_children' => '0',
33277   'expanded' => '0',
33278   'weight' => '0',
33279   'depth' => '1',
33280   'customized' => '0',
33281   'p1' => '416',
33282   'p2' => '0',
33283   'p3' => '0',
33284   'p4' => '0',
33285   'p5' => '0',
33286   'p6' => '0',
33287   'p7' => '0',
33288   'p8' => '0',
33289   'p9' => '0',
33290   'updated' => '0',
33291 ))
33292 ->values(array(
33293   'menu_name' => 'navigation',
33294   'mlid' => '417',
33295   'plid' => '0',
33296   'link_path' => 'admin/content/node-type/story/fields/field_test_email/remove',
33297   'router_path' => 'admin/content/node-type/story/fields/field_test_email/remove',
33298   'link_title' => 'Remove field',
33299   'options' => 'a:0:{}',
33300   'module' => 'system',
33301   'hidden' => '-1',
33302   'external' => '0',
33303   'has_children' => '0',
33304   'expanded' => '0',
33305   'weight' => '0',
33306   'depth' => '1',
33307   'customized' => '0',
33308   'p1' => '417',
33309   'p2' => '0',
33310   'p3' => '0',
33311   'p4' => '0',
33312   'p5' => '0',
33313   'p6' => '0',
33314   'p7' => '0',
33315   'p8' => '0',
33316   'p9' => '0',
33317   'updated' => '0',
33318 ))
33319 ->values(array(
33320   'menu_name' => 'navigation',
33321   'mlid' => '418',
33322   'plid' => '0',
33323   'link_path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
33324   'router_path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
33325   'link_title' => 'Remove field',
33326   'options' => 'a:0:{}',
33327   'module' => 'system',
33328   'hidden' => '-1',
33329   'external' => '0',
33330   'has_children' => '0',
33331   'expanded' => '0',
33332   'weight' => '0',
33333   'depth' => '1',
33334   'customized' => '0',
33335   'p1' => '418',
33336   'p2' => '0',
33337   'p3' => '0',
33338   'p4' => '0',
33339   'p5' => '0',
33340   'p6' => '0',
33341   'p7' => '0',
33342   'p8' => '0',
33343   'p9' => '0',
33344   'updated' => '0',
33345 ))
33346 ->values(array(
33347   'menu_name' => 'navigation',
33348   'mlid' => '419',
33349   'plid' => '0',
33350   'link_path' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
33351   'router_path' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
33352   'link_title' => 'Remove field',
33353   'options' => 'a:0:{}',
33354   'module' => 'system',
33355   'hidden' => '-1',
33356   'external' => '0',
33357   'has_children' => '0',
33358   'expanded' => '0',
33359   'weight' => '0',
33360   'depth' => '1',
33361   'customized' => '0',
33362   'p1' => '419',
33363   'p2' => '0',
33364   'p3' => '0',
33365   'p4' => '0',
33366   'p5' => '0',
33367   'p6' => '0',
33368   'p7' => '0',
33369   'p8' => '0',
33370   'p9' => '0',
33371   'updated' => '0',
33372 ))
33373 ->values(array(
33374   'menu_name' => 'navigation',
33375   'mlid' => '420',
33376   'plid' => '0',
33377   'link_path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
33378   'router_path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
33379   'link_title' => 'Remove field',
33380   'options' => 'a:0:{}',
33381   'module' => 'system',
33382   'hidden' => '-1',
33383   'external' => '0',
33384   'has_children' => '0',
33385   'expanded' => '0',
33386   'weight' => '0',
33387   'depth' => '1',
33388   'customized' => '0',
33389   'p1' => '420',
33390   'p2' => '0',
33391   'p3' => '0',
33392   'p4' => '0',
33393   'p5' => '0',
33394   'p6' => '0',
33395   'p7' => '0',
33396   'p8' => '0',
33397   'p9' => '0',
33398   'updated' => '0',
33399 ))
33400 ->values(array(
33401   'menu_name' => 'navigation',
33402   'mlid' => '421',
33403   'plid' => '0',
33404   'link_path' => 'admin/content/node-type/story/fields/field_test_four/remove',
33405   'router_path' => 'admin/content/node-type/story/fields/field_test_four/remove',
33406   'link_title' => 'Remove field',
33407   'options' => 'a:0:{}',
33408   'module' => 'system',
33409   'hidden' => '-1',
33410   'external' => '0',
33411   'has_children' => '0',
33412   'expanded' => '0',
33413   'weight' => '0',
33414   'depth' => '1',
33415   'customized' => '0',
33416   'p1' => '421',
33417   'p2' => '0',
33418   'p3' => '0',
33419   'p4' => '0',
33420   'p5' => '0',
33421   'p6' => '0',
33422   'p7' => '0',
33423   'p8' => '0',
33424   'p9' => '0',
33425   'updated' => '0',
33426 ))
33427 ->values(array(
33428   'menu_name' => 'navigation',
33429   'mlid' => '422',
33430   'plid' => '0',
33431   'link_path' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
33432   'router_path' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
33433   'link_title' => 'Remove field',
33434   'options' => 'a:0:{}',
33435   'module' => 'system',
33436   'hidden' => '-1',
33437   'external' => '0',
33438   'has_children' => '0',
33439   'expanded' => '0',
33440   'weight' => '0',
33441   'depth' => '1',
33442   'customized' => '0',
33443   'p1' => '422',
33444   'p2' => '0',
33445   'p3' => '0',
33446   'p4' => '0',
33447   'p5' => '0',
33448   'p6' => '0',
33449   'p7' => '0',
33450   'p8' => '0',
33451   'p9' => '0',
33452   'updated' => '0',
33453 ))
33454 ->values(array(
33455   'menu_name' => 'navigation',
33456   'mlid' => '423',
33457   'plid' => '0',
33458   'link_path' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
33459   'router_path' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
33460   'link_title' => 'Remove field',
33461   'options' => 'a:0:{}',
33462   'module' => 'system',
33463   'hidden' => '-1',
33464   'external' => '0',
33465   'has_children' => '0',
33466   'expanded' => '0',
33467   'weight' => '0',
33468   'depth' => '1',
33469   'customized' => '0',
33470   'p1' => '423',
33471   'p2' => '0',
33472   'p3' => '0',
33473   'p4' => '0',
33474   'p5' => '0',
33475   'p6' => '0',
33476   'p7' => '0',
33477   'p8' => '0',
33478   'p9' => '0',
33479   'updated' => '0',
33480 ))
33481 ->values(array(
33482   'menu_name' => 'navigation',
33483   'mlid' => '424',
33484   'plid' => '0',
33485   'link_path' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
33486   'router_path' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
33487   'link_title' => 'Remove field',
33488   'options' => 'a:0:{}',
33489   'module' => 'system',
33490   'hidden' => '-1',
33491   'external' => '0',
33492   'has_children' => '0',
33493   'expanded' => '0',
33494   'weight' => '0',
33495   'depth' => '1',
33496   'customized' => '0',
33497   'p1' => '424',
33498   'p2' => '0',
33499   'p3' => '0',
33500   'p4' => '0',
33501   'p5' => '0',
33502   'p6' => '0',
33503   'p7' => '0',
33504   'p8' => '0',
33505   'p9' => '0',
33506   'updated' => '0',
33507 ))
33508 ->values(array(
33509   'menu_name' => 'navigation',
33510   'mlid' => '425',
33511   'plid' => '0',
33512   'link_path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
33513   'router_path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
33514   'link_title' => 'Remove field',
33515   'options' => 'a:0:{}',
33516   'module' => 'system',
33517   'hidden' => '-1',
33518   'external' => '0',
33519   'has_children' => '0',
33520   'expanded' => '0',
33521   'weight' => '0',
33522   'depth' => '1',
33523   'customized' => '0',
33524   'p1' => '425',
33525   'p2' => '0',
33526   'p3' => '0',
33527   'p4' => '0',
33528   'p5' => '0',
33529   'p6' => '0',
33530   'p7' => '0',
33531   'p8' => '0',
33532   'p9' => '0',
33533   'updated' => '0',
33534 ))
33535 ->values(array(
33536   'menu_name' => 'navigation',
33537   'mlid' => '426',
33538   'plid' => '0',
33539   'link_path' => 'admin/content/node-type/story/fields/field_test_link/remove',
33540   'router_path' => 'admin/content/node-type/story/fields/field_test_link/remove',
33541   'link_title' => 'Remove field',
33542   'options' => 'a:0:{}',
33543   'module' => 'system',
33544   'hidden' => '-1',
33545   'external' => '0',
33546   'has_children' => '0',
33547   'expanded' => '0',
33548   'weight' => '0',
33549   'depth' => '1',
33550   'customized' => '0',
33551   'p1' => '426',
33552   'p2' => '0',
33553   'p3' => '0',
33554   'p4' => '0',
33555   'p5' => '0',
33556   'p6' => '0',
33557   'p7' => '0',
33558   'p8' => '0',
33559   'p9' => '0',
33560   'updated' => '0',
33561 ))
33562 ->values(array(
33563   'menu_name' => 'navigation',
33564   'mlid' => '427',
33565   'plid' => '0',
33566   'link_path' => 'admin/content/node-type/story/fields/field_test_phone/remove',
33567   'router_path' => 'admin/content/node-type/story/fields/field_test_phone/remove',
33568   'link_title' => 'Remove field',
33569   'options' => 'a:0:{}',
33570   'module' => 'system',
33571   'hidden' => '-1',
33572   'external' => '0',
33573   'has_children' => '0',
33574   'expanded' => '0',
33575   'weight' => '0',
33576   'depth' => '1',
33577   'customized' => '0',
33578   'p1' => '427',
33579   'p2' => '0',
33580   'p3' => '0',
33581   'p4' => '0',
33582   'p5' => '0',
33583   'p6' => '0',
33584   'p7' => '0',
33585   'p8' => '0',
33586   'p9' => '0',
33587   'updated' => '0',
33588 ))
33589 ->values(array(
33590   'menu_name' => 'navigation',
33591   'mlid' => '428',
33592   'plid' => '0',
33593   'link_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
33594   'router_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
33595   'link_title' => 'Remove field',
33596   'options' => 'a:0:{}',
33597   'module' => 'system',
33598   'hidden' => '-1',
33599   'external' => '0',
33600   'has_children' => '0',
33601   'expanded' => '0',
33602   'weight' => '0',
33603   'depth' => '1',
33604   'customized' => '0',
33605   'p1' => '428',
33606   'p2' => '0',
33607   'p3' => '0',
33608   'p4' => '0',
33609   'p5' => '0',
33610   'p6' => '0',
33611   'p7' => '0',
33612   'p8' => '0',
33613   'p9' => '0',
33614   'updated' => '0',
33615 ))
33616 ->values(array(
33617   'menu_name' => 'navigation',
33618   'mlid' => '429',
33619   'plid' => '0',
33620   'link_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/remove',
33621   'router_path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/remove',
33622   'link_title' => 'Remove field',
33623   'options' => 'a:0:{}',
33624   'module' => 'system',
33625   'hidden' => '-1',
33626   'external' => '0',
33627   'has_children' => '0',
33628   'expanded' => '0',
33629   'weight' => '0',
33630   'depth' => '1',
33631   'customized' => '0',
33632   'p1' => '429',
33633   'p2' => '0',
33634   'p3' => '0',
33635   'p4' => '0',
33636   'p5' => '0',
33637   'p6' => '0',
33638   'p7' => '0',
33639   'p8' => '0',
33640   'p9' => '0',
33641   'updated' => '0',
33642 ))
33643 ->values(array(
33644   'menu_name' => 'navigation',
33645   'mlid' => '430',
33646   'plid' => '0',
33647   'link_path' => 'admin/content/node-type/story/fields/field_test_three/remove',
33648   'router_path' => 'admin/content/node-type/story/fields/field_test_three/remove',
33649   'link_title' => 'Remove field',
33650   'options' => 'a:0:{}',
33651   'module' => 'system',
33652   'hidden' => '-1',
33653   'external' => '0',
33654   'has_children' => '0',
33655   'expanded' => '0',
33656   'weight' => '0',
33657   'depth' => '1',
33658   'customized' => '0',
33659   'p1' => '430',
33660   'p2' => '0',
33661   'p3' => '0',
33662   'p4' => '0',
33663   'p5' => '0',
33664   'p6' => '0',
33665   'p7' => '0',
33666   'p8' => '0',
33667   'p9' => '0',
33668   'updated' => '0',
33669 ))
33670 ->values(array(
33671   'menu_name' => 'navigation',
33672   'mlid' => '431',
33673   'plid' => '0',
33674   'link_path' => 'admin/content/node-type/story/fields/field_test_two/remove',
33675   'router_path' => 'admin/content/node-type/story/fields/field_test_two/remove',
33676   'link_title' => 'Remove field',
33677   'options' => 'a:0:{}',
33678   'module' => 'system',
33679   'hidden' => '-1',
33680   'external' => '0',
33681   'has_children' => '0',
33682   'expanded' => '0',
33683   'weight' => '0',
33684   'depth' => '1',
33685   'customized' => '0',
33686   'p1' => '431',
33687   'p2' => '0',
33688   'p3' => '0',
33689   'p4' => '0',
33690   'p5' => '0',
33691   'p6' => '0',
33692   'p7' => '0',
33693   'p8' => '0',
33694   'p9' => '0',
33695   'updated' => '0',
33696 ))
33697 ->values(array(
33698   'menu_name' => 'navigation',
33699   'mlid' => '432',
33700   'plid' => '0',
33701   'link_path' => 'admin/content/node-type/test-page/fields/field_test/remove',
33702   'router_path' => 'admin/content/node-type/test-page/fields/field_test/remove',
33703   'link_title' => 'Remove field',
33704   'options' => 'a:0:{}',
33705   'module' => 'system',
33706   'hidden' => '-1',
33707   'external' => '0',
33708   'has_children' => '0',
33709   'expanded' => '0',
33710   'weight' => '0',
33711   'depth' => '1',
33712   'customized' => '0',
33713   'p1' => '432',
33714   'p2' => '0',
33715   'p3' => '0',
33716   'p4' => '0',
33717   'p5' => '0',
33718   'p6' => '0',
33719   'p7' => '0',
33720   'p8' => '0',
33721   'p9' => '0',
33722   'updated' => '0',
33723 ))
33724 ->values(array(
33725   'menu_name' => 'navigation',
33726   'mlid' => '433',
33727   'plid' => '0',
33728   'link_path' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
33729   'router_path' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
33730   'link_title' => 'Remove field',
33731   'options' => 'a:0:{}',
33732   'module' => 'system',
33733   'hidden' => '-1',
33734   'external' => '0',
33735   'has_children' => '0',
33736   'expanded' => '0',
33737   'weight' => '0',
33738   'depth' => '1',
33739   'customized' => '0',
33740   'p1' => '433',
33741   'p2' => '0',
33742   'p3' => '0',
33743   'p4' => '0',
33744   'p5' => '0',
33745   'p6' => '0',
33746   'p7' => '0',
33747   'p8' => '0',
33748   'p9' => '0',
33749   'updated' => '0',
33750 ))
33751 ->values(array(
33752   'menu_name' => 'navigation',
33753   'mlid' => '434',
33754   'plid' => '0',
33755   'link_path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/remove',
33756   'router_path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/remove',
33757   'link_title' => 'Remove field',
33758   'options' => 'a:0:{}',
33759   'module' => 'system',
33760   'hidden' => '-1',
33761   'external' => '0',
33762   'has_children' => '0',
33763   'expanded' => '0',
33764   'weight' => '0',
33765   'depth' => '1',
33766   'customized' => '0',
33767   'p1' => '434',
33768   'p2' => '0',
33769   'p3' => '0',
33770   'p4' => '0',
33771   'p5' => '0',
33772   'p6' => '0',
33773   'p7' => '0',
33774   'p8' => '0',
33775   'p9' => '0',
33776   'updated' => '0',
33777 ))
33778 ->values(array(
33779   'menu_name' => 'navigation',
33780   'mlid' => '438',
33781   'plid' => '167',
33782   'link_path' => 'admin/settings/variable',
33783   'router_path' => 'admin/settings/variable',
33784   'link_title' => 'Variables',
33785   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:31:"Edit and delete site variables.";}}',
33786   'module' => 'system',
33787   'hidden' => '0',
33788   'external' => '0',
33789   'has_children' => '1',
33790   'expanded' => '0',
33791   'weight' => '0',
33792   'depth' => '3',
33793   'customized' => '0',
33794   'p1' => '144',
33795   'p2' => '167',
33796   'p3' => '438',
33797   'p4' => '0',
33798   'p5' => '0',
33799   'p6' => '0',
33800   'p7' => '0',
33801   'p8' => '0',
33802   'p9' => '0',
33803   'updated' => '0',
33804 ))
33805 ->values(array(
33806   'menu_name' => 'navigation',
33807   'mlid' => '439',
33808   'plid' => '438',
33809   'link_path' => 'admin/settings/variable/edit/%',
33810   'router_path' => 'admin/settings/variable/edit/%',
33811   'link_title' => 'Edit variable',
33812   'options' => 'a:0:{}',
33813   'module' => 'system',
33814   'hidden' => '0',
33815   'external' => '0',
33816   'has_children' => '0',
33817   'expanded' => '0',
33818   'weight' => '0',
33819   'depth' => '4',
33820   'customized' => '0',
33821   'p1' => '144',
33822   'p2' => '167',
33823   'p3' => '438',
33824   'p4' => '439',
33825   'p5' => '0',
33826   'p6' => '0',
33827   'p7' => '0',
33828   'p8' => '0',
33829   'p9' => '0',
33830   'updated' => '0',
33831 ))
33832 ->values(array(
33833   'menu_name' => 'navigation',
33834   'mlid' => '440',
33835   'plid' => '438',
33836   'link_path' => 'admin/settings/variable/group/%',
33837   'router_path' => 'admin/settings/variable/group/%',
33838   'link_title' => 'Variables group',
33839   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:32:"Edit and delete group variables.";}}',
33840   'module' => 'system',
33841   'hidden' => '0',
33842   'external' => '0',
33843   'has_children' => '0',
33844   'expanded' => '0',
33845   'weight' => '0',
33846   'depth' => '4',
33847   'customized' => '0',
33848   'p1' => '144',
33849   'p2' => '167',
33850   'p3' => '438',
33851   'p4' => '440',
33852   'p5' => '0',
33853   'p6' => '0',
33854   'p7' => '0',
33855   'p8' => '0',
33856   'p9' => '0',
33857   'updated' => '0',
33858 ))
33859 ->values(array(
33860   'menu_name' => 'navigation',
33861   'mlid' => '441',
33862   'plid' => '0',
33863   'link_path' => 'forum',
33864   'router_path' => 'forum',
33865   'link_title' => 'Forums',
33866   'options' => 'a:0:{}',
33867   'module' => 'system',
33868   'hidden' => '1',
33869   'external' => '0',
33870   'has_children' => '0',
33871   'expanded' => '0',
33872   'weight' => '0',
33873   'depth' => '1',
33874   'customized' => '0',
33875   'p1' => '441',
33876   'p2' => '0',
33877   'p3' => '0',
33878   'p4' => '0',
33879   'p5' => '0',
33880   'p6' => '0',
33881   'p7' => '0',
33882   'p8' => '0',
33883   'p9' => '0',
33884   'updated' => '0',
33885 ))
33886 ->values(array(
33887   'menu_name' => 'navigation',
33888   'mlid' => '442',
33889   'plid' => '165',
33890   'link_path' => 'admin/reports/settings',
33891   'router_path' => 'admin/reports/settings',
33892   'link_title' => 'Access log settings',
33893   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:50:"Control details about what and how your site logs.";}}',
33894   'module' => 'system',
33895   'hidden' => '0',
33896   'external' => '0',
33897   'has_children' => '0',
33898   'expanded' => '0',
33899   'weight' => '3',
33900   'depth' => '3',
33901   'customized' => '0',
33902   'p1' => '144',
33903   'p2' => '165',
33904   'p3' => '442',
33905   'p4' => '0',
33906   'p5' => '0',
33907   'p6' => '0',
33908   'p7' => '0',
33909   'p8' => '0',
33910   'p9' => '0',
33911   'updated' => '0',
33912 ))
33913 ->values(array(
33914   'menu_name' => 'navigation',
33915   'mlid' => '443',
33916   'plid' => '158',
33917   'link_path' => 'node/add/forum',
33918   'router_path' => 'node/add/forum',
33919   'link_title' => 'Forum topic',
33920   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:85:"A <em>forum topic</em> is the initial post to a new discussion thread within a forum.";}}',
33921   'module' => 'system',
33922   'hidden' => '0',
33923   'external' => '0',
33924   'has_children' => '0',
33925   'expanded' => '0',
33926   'weight' => '0',
33927   'depth' => '2',
33928   'customized' => '0',
33929   'p1' => '158',
33930   'p2' => '443',
33931   'p3' => '0',
33932   'p4' => '0',
33933   'p5' => '0',
33934   'p6' => '0',
33935   'p7' => '0',
33936   'p8' => '0',
33937   'p9' => '0',
33938   'updated' => '0',
33939 ))
33940 ->values(array(
33941   'menu_name' => 'navigation',
33942   'mlid' => '444',
33943   'plid' => '157',
33944   'link_path' => 'admin/content/forum',
33945   'router_path' => 'admin/content/forum',
33946   'link_title' => 'Forums',
33947   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:61:"Control forums and their hierarchy and change forum settings.";}}',
33948   'module' => 'system',
33949   'hidden' => '0',
33950   'external' => '0',
33951   'has_children' => '0',
33952   'expanded' => '0',
33953   'weight' => '0',
33954   'depth' => '3',
33955   'customized' => '0',
33956   'p1' => '144',
33957   'p2' => '157',
33958   'p3' => '444',
33959   'p4' => '0',
33960   'p5' => '0',
33961   'p6' => '0',
33962   'p7' => '0',
33963   'p8' => '0',
33964   'p9' => '0',
33965   'updated' => '0',
33966 ))
33967 ->values(array(
33968   'menu_name' => 'navigation',
33969   'mlid' => '445',
33970   'plid' => '165',
33971   'link_path' => 'admin/reports/hits',
33972   'router_path' => 'admin/reports/hits',
33973   'link_title' => 'Recent hits',
33974   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View pages that have recently been visited.";}}',
33975   'module' => 'system',
33976   'hidden' => '0',
33977   'external' => '0',
33978   'has_children' => '0',
33979   'expanded' => '0',
33980   'weight' => '0',
33981   'depth' => '3',
33982   'customized' => '0',
33983   'p1' => '144',
33984   'p2' => '165',
33985   'p3' => '445',
33986   'p4' => '0',
33987   'p5' => '0',
33988   'p6' => '0',
33989   'p7' => '0',
33990   'p8' => '0',
33991   'p9' => '0',
33992   'updated' => '0',
33993 ))
33994 ->values(array(
33995   'menu_name' => 'navigation',
33996   'mlid' => '446',
33997   'plid' => '165',
33998   'link_path' => 'admin/reports/pages',
33999   'router_path' => 'admin/reports/pages',
34000   'link_title' => 'Top pages',
34001   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"View pages that have been hit frequently.";}}',
34002   'module' => 'system',
34003   'hidden' => '0',
34004   'external' => '0',
34005   'has_children' => '0',
34006   'expanded' => '0',
34007   'weight' => '1',
34008   'depth' => '3',
34009   'customized' => '0',
34010   'p1' => '144',
34011   'p2' => '165',
34012   'p3' => '446',
34013   'p4' => '0',
34014   'p5' => '0',
34015   'p6' => '0',
34016   'p7' => '0',
34017   'p8' => '0',
34018   'p9' => '0',
34019   'updated' => '0',
34020 ))
34021 ->values(array(
34022   'menu_name' => 'navigation',
34023   'mlid' => '447',
34024   'plid' => '165',
34025   'link_path' => 'admin/reports/referrers',
34026   'router_path' => 'admin/reports/referrers',
34027   'link_title' => 'Top referrers',
34028   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:19:"View top referrers.";}}',
34029   'module' => 'system',
34030   'hidden' => '0',
34031   'external' => '0',
34032   'has_children' => '0',
34033   'expanded' => '0',
34034   'weight' => '0',
34035   'depth' => '3',
34036   'customized' => '0',
34037   'p1' => '144',
34038   'p2' => '165',
34039   'p3' => '447',
34040   'p4' => '0',
34041   'p5' => '0',
34042   'p6' => '0',
34043   'p7' => '0',
34044   'p8' => '0',
34045   'p9' => '0',
34046   'updated' => '0',
34047 ))
34048 ->values(array(
34049   'menu_name' => 'navigation',
34050   'mlid' => '448',
34051   'plid' => '165',
34052   'link_path' => 'admin/reports/visitors',
34053   'router_path' => 'admin/reports/visitors',
34054   'link_title' => 'Top visitors',
34055   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"View visitors that hit many pages.";}}',
34056   'module' => 'system',
34057   'hidden' => '0',
34058   'external' => '0',
34059   'has_children' => '0',
34060   'expanded' => '0',
34061   'weight' => '2',
34062   'depth' => '3',
34063   'customized' => '0',
34064   'p1' => '144',
34065   'p2' => '165',
34066   'p3' => '448',
34067   'p4' => '0',
34068   'p5' => '0',
34069   'p6' => '0',
34070   'p7' => '0',
34071   'p8' => '0',
34072   'p9' => '0',
34073   'updated' => '0',
34074 ))
34075 ->values(array(
34076   'menu_name' => 'navigation',
34077   'mlid' => '449',
34078   'plid' => '165',
34079   'link_path' => 'admin/reports/access/%',
34080   'router_path' => 'admin/reports/access/%',
34081   'link_title' => 'Details',
34082   'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:16:"View access log.";}}',
34083   'module' => 'system',
34084   'hidden' => '-1',
34085   'external' => '0',
34086   'has_children' => '0',
34087   'expanded' => '0',
34088   'weight' => '0',
34089   'depth' => '3',
34090   'customized' => '0',
34091   'p1' => '144',
34092   'p2' => '165',
34093   'p3' => '449',
34094   'p4' => '0',
34095   'p5' => '0',
34096   'p6' => '0',
34097   'p7' => '0',
34098   'p8' => '0',
34099   'p9' => '0',
34100   'updated' => '0',
34101 ))
34102 ->values(array(
34103   'menu_name' => 'navigation',
34104   'mlid' => '450',
34105   'plid' => '157',
34106   'link_path' => 'admin/content/node-type/forum',
34107   'router_path' => 'admin/content/node-type/forum',
34108   'link_title' => 'Forum topic',
34109   'options' => 'a:0:{}',
34110   'module' => 'system',
34111   'hidden' => '-1',
34112   'external' => '0',
34113   'has_children' => '0',
34114   'expanded' => '0',
34115   'weight' => '0',
34116   'depth' => '3',
34117   'customized' => '0',
34118   'p1' => '144',
34119   'p2' => '157',
34120   'p3' => '450',
34121   'p4' => '0',
34122   'p5' => '0',
34123   'p6' => '0',
34124   'p7' => '0',
34125   'p8' => '0',
34126   'p9' => '0',
34127   'updated' => '0',
34128 ))
34129 ->values(array(
34130   'menu_name' => 'navigation',
34131   'mlid' => '451',
34132   'plid' => '444',
34133   'link_path' => 'admin/content/forum/edit/%',
34134   'router_path' => 'admin/content/forum/edit/%',
34135   'link_title' => '',
34136   'options' => 'a:0:{}',
34137   'module' => 'system',
34138   'hidden' => '-1',
34139   'external' => '0',
34140   'has_children' => '0',
34141   'expanded' => '0',
34142   'weight' => '0',
34143   'depth' => '4',
34144   'customized' => '0',
34145   'p1' => '144',
34146   'p2' => '157',
34147   'p3' => '444',
34148   'p4' => '451',
34149   'p5' => '0',
34150   'p6' => '0',
34151   'p7' => '0',
34152   'p8' => '0',
34153   'p9' => '0',
34154   'updated' => '0',
34155 ))
34156 ->values(array(
34157   'menu_name' => 'navigation',
34158   'mlid' => '452',
34159   'plid' => '0',
34160   'link_path' => 'admin/content/node-type/forum/delete',
34161   'router_path' => 'admin/content/node-type/forum/delete',
34162   'link_title' => 'Delete',
34163   'options' => 'a:0:{}',
34164   'module' => 'system',
34165   'hidden' => '-1',
34166   'external' => '0',
34167   'has_children' => '0',
34168   'expanded' => '0',
34169   'weight' => '0',
34170   'depth' => '1',
34171   'customized' => '0',
34172   'p1' => '452',
34173   'p2' => '0',
34174   'p3' => '0',
34175   'p4' => '0',
34176   'p5' => '0',
34177   'p6' => '0',
34178   'p7' => '0',
34179   'p8' => '0',
34180   'p9' => '0',
34181   'updated' => '0',
34182 ))
34183 ->values(array(
34184   'menu_name' => 'navigation',
34185   'mlid' => '453',
34186   'plid' => '444',
34187   'link_path' => 'admin/content/forum/edit/container/%',
34188   'router_path' => 'admin/content/forum/edit/container/%',
34189   'link_title' => 'Edit container',
34190   'options' => 'a:0:{}',
34191   'module' => 'system',
34192   'hidden' => '-1',
34193   'external' => '0',
34194   'has_children' => '0',
34195   'expanded' => '0',
34196   'weight' => '0',
34197   'depth' => '4',
34198   'customized' => '0',
34199   'p1' => '144',
34200   'p2' => '157',
34201   'p3' => '444',
34202   'p4' => '453',
34203   'p5' => '0',
34204   'p6' => '0',
34205   'p7' => '0',
34206   'p8' => '0',
34207   'p9' => '0',
34208   'updated' => '0',
34209 ))
34210 ->values(array(
34211   'menu_name' => 'navigation',
34212   'mlid' => '454',
34213   'plid' => '444',
34214   'link_path' => 'admin/content/forum/edit/forum/%',
34215   'router_path' => 'admin/content/forum/edit/forum/%',
34216   'link_title' => 'Edit forum',
34217   'options' => 'a:0:{}',
34218   'module' => 'system',
34219   'hidden' => '-1',
34220   'external' => '0',
34221   'has_children' => '0',
34222   'expanded' => '0',
34223   'weight' => '0',
34224   'depth' => '4',
34225   'customized' => '0',
34226   'p1' => '144',
34227   'p2' => '157',
34228   'p3' => '444',
34229   'p4' => '454',
34230   'p5' => '0',
34231   'p6' => '0',
34232   'p7' => '0',
34233   'p8' => '0',
34234   'p9' => '0',
34235   'updated' => '0',
34236 ))
34237 ->values(array(
34238   'menu_name' => 'navigation',
34239   'mlid' => '455',
34240   'plid' => '0',
34241   'link_path' => 'nodereference/autocomplete',
34242   'router_path' => 'nodereference/autocomplete',
34243   'link_title' => 'Nodereference autocomplete',
34244   'options' => 'a:0:{}',
34245   'module' => 'system',
34246   'hidden' => '-1',
34247   'external' => '0',
34248   'has_children' => '0',
34249   'expanded' => '0',
34250   'weight' => '0',
34251   'depth' => '1',
34252   'customized' => '0',
34253   'p1' => '455',
34254   'p2' => '0',
34255   'p3' => '0',
34256   'p4' => '0',
34257   'p5' => '0',
34258   'p6' => '0',
34259   'p7' => '0',
34260   'p8' => '0',
34261   'p9' => '0',
34262   'updated' => '0',
34263 ))
34264 ->values(array(
34265   'menu_name' => 'navigation',
34266   'mlid' => '456',
34267   'plid' => '0',
34268   'link_path' => 'admin/content/node-type/employee/fields/field_company/remove',
34269   'router_path' => 'admin/content/node-type/employee/fields/field_company/remove',
34270   'link_title' => 'Remove field',
34271   'options' => 'a:0:{}',
34272   'module' => 'system',
34273   'hidden' => '-1',
34274   'external' => '0',
34275   'has_children' => '0',
34276   'expanded' => '0',
34277   'weight' => '0',
34278   'depth' => '1',
34279   'customized' => '0',
34280   'p1' => '456',
34281   'p2' => '0',
34282   'p3' => '0',
34283   'p4' => '0',
34284   'p5' => '0',
34285   'p6' => '0',
34286   'p7' => '0',
34287   'p8' => '0',
34288   'p9' => '0',
34289   'updated' => '0',
34290 ))
34291 ->values(array(
34292   'menu_name' => 'navigation',
34293   'mlid' => '457',
34294   'plid' => '0',
34295   'link_path' => 'userreference/autocomplete',
34296   'router_path' => 'userreference/autocomplete',
34297   'link_title' => 'Userreference autocomplete',
34298   'options' => 'a:0:{}',
34299   'module' => 'system',
34300   'hidden' => '-1',
34301   'external' => '0',
34302   'has_children' => '0',
34303   'expanded' => '0',
34304   'weight' => '0',
34305   'depth' => '1',
34306   'customized' => '0',
34307   'p1' => '457',
34308   'p2' => '0',
34309   'p3' => '0',
34310   'p4' => '0',
34311   'p5' => '0',
34312   'p6' => '0',
34313   'p7' => '0',
34314   'p8' => '0',
34315   'p9' => '0',
34316   'updated' => '0',
34317 ))
34318 ->values(array(
34319   'menu_name' => 'navigation',
34320   'mlid' => '458',
34321   'plid' => '0',
34322   'link_path' => 'admin/content/node-type/employee/fields/field_commander/remove',
34323   'router_path' => 'admin/content/node-type/employee/fields/field_commander/remove',
34324   'link_title' => 'Remove field',
34325   'options' => 'a:0:{}',
34326   'module' => 'system',
34327   'hidden' => '-1',
34328   'external' => '0',
34329   'has_children' => '0',
34330   'expanded' => '0',
34331   'weight' => '0',
34332   'depth' => '1',
34333   'customized' => '0',
34334   'p1' => '458',
34335   'p2' => '0',
34336   'p3' => '0',
34337   'p4' => '0',
34338   'p5' => '0',
34339   'p6' => '0',
34340   'p7' => '0',
34341   'p8' => '0',
34342   'p9' => '0',
34343   'updated' => '0',
34344 ))
34345 ->values(array(
34346   'menu_name' => 'primary-links',
34347   'mlid' => '459',
34348   'plid' => '0',
34349   'link_path' => 'node/10',
34350   'router_path' => 'node/%',
34351   'link_title' => 'The Real McCoy',
34352   'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}s:5:"alter";b:1;}',
34353   'module' => 'menu',
34354   'hidden' => '0',
34355   'external' => '0',
34356   'has_children' => '0',
34357   'expanded' => '0',
34358   'weight' => '0',
34359   'depth' => '1',
34360   'customized' => '1',
34361   'p1' => '459',
34362   'p2' => '0',
34363   'p3' => '0',
34364   'p4' => '0',
34365   'p5' => '0',
34366   'p6' => '0',
34367   'p7' => '0',
34368   'p8' => '0',
34369   'p9' => '0',
34370   'updated' => '0',
34371 ))
34372 ->values(array(
34373   'menu_name' => 'primary-links',
34374   'mlid' => '460',
34375   'plid' => '0',
34376   'link_path' => 'node/11',
34377   'router_path' => 'node/%',
34378   'link_title' => 'Le Vrai McCoy',
34379   'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}s:5:"alter";b:1;}',
34380   'module' => 'menu',
34381   'hidden' => '0',
34382   'external' => '0',
34383   'has_children' => '0',
34384   'expanded' => '0',
34385   'weight' => '0',
34386   'depth' => '1',
34387   'customized' => '1',
34388   'p1' => '460',
34389   'p2' => '0',
34390   'p3' => '0',
34391   'p4' => '0',
34392   'p5' => '0',
34393   'p6' => '0',
34394   'p7' => '0',
34395   'p8' => '0',
34396   'p9' => '0',
34397   'updated' => '0',
34398 ))
34399 ->values(array(
34400   'menu_name' => 'primary-links',
34401   'mlid' => '461',
34402   'plid' => '0',
34403   'link_path' => 'node/12',
34404   'router_path' => 'node/%',
34405   'link_title' => 'Abantu zulu',
34406   'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}s:5:"alter";b:1;}',
34407   'module' => 'menu',
34408   'hidden' => '0',
34409   'external' => '0',
34410   'has_children' => '0',
34411   'expanded' => '0',
34412   'weight' => '0',
34413   'depth' => '1',
34414   'customized' => '1',
34415   'p1' => '461',
34416   'p2' => '0',
34417   'p3' => '0',
34418   'p4' => '0',
34419   'p5' => '0',
34420   'p6' => '0',
34421   'p7' => '0',
34422   'p8' => '0',
34423   'p9' => '0',
34424   'updated' => '0',
34425 ))
34426 ->values(array(
34427   'menu_name' => 'primary-links',
34428   'mlid' => '462',
34429   'plid' => '0',
34430   'link_path' => 'node/13',
34431   'router_path' => 'node/%',
34432   'link_title' => 'The Zulu People',
34433   'options' => 'a:2:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}s:5:"alter";b:1;}',
34434   'module' => 'menu',
34435   'hidden' => '0',
34436   'external' => '0',
34437   'has_children' => '0',
34438   'expanded' => '0',
34439   'weight' => '0',
34440   'depth' => '1',
34441   'customized' => '1',
34442   'p1' => '462',
34443   'p2' => '0',
34444   'p3' => '0',
34445   'p4' => '0',
34446   'p5' => '0',
34447   'p6' => '0',
34448   'p7' => '0',
34449   'p8' => '0',
34450   'p9' => '0',
34451   'updated' => '0',
34452 ))
34453 ->values(array(
34454   'menu_name' => 'secondary-links',
34455   'mlid' => '463',
34456   'plid' => '139',
34457   'link_path' => 'user/login',
34458   'router_path' => 'user/login',
34459   'link_title' => 'fr - Test 1',
34460   'options' => 'a:3:{s:10:"attributes";a:1:{s:5:"title";s:21:"fr - Test menu link 1";}s:8:"langcode";s:2:"fr";s:5:"alter";b:1;}',
34461   'module' => 'menu',
34462   'hidden' => '0',
34463   'external' => '0',
34464   'has_children' => '0',
34465   'expanded' => '0',
34466   'weight' => '-49',
34467   'depth' => '2',
34468   'customized' => '1',
34469   'p1' => '139',
34470   'p2' => '459',
34471   'p3' => '0',
34472   'p4' => '0',
34473   'p5' => '0',
34474   'p6' => '0',
34475   'p7' => '0',
34476   'p8' => '0',
34477   'p9' => '0',
34478   'updated' => '0',
34479 ))
34480 ->execute();
34481
34482 $connection->schema()->createTable('menu_router', array(
34483   'fields' => array(
34484     'path' => array(
34485       'type' => 'varchar',
34486       'not null' => TRUE,
34487       'length' => '255',
34488       'default' => '',
34489     ),
34490     'load_functions' => array(
34491       'type' => 'text',
34492       'not null' => TRUE,
34493       'size' => 'normal',
34494     ),
34495     'to_arg_functions' => array(
34496       'type' => 'text',
34497       'not null' => TRUE,
34498       'size' => 'normal',
34499     ),
34500     'access_callback' => array(
34501       'type' => 'varchar',
34502       'not null' => TRUE,
34503       'length' => '255',
34504       'default' => '',
34505     ),
34506     'access_arguments' => array(
34507       'type' => 'text',
34508       'not null' => FALSE,
34509       'size' => 'normal',
34510     ),
34511     'page_callback' => array(
34512       'type' => 'varchar',
34513       'not null' => TRUE,
34514       'length' => '255',
34515       'default' => '',
34516     ),
34517     'page_arguments' => array(
34518       'type' => 'text',
34519       'not null' => FALSE,
34520       'size' => 'normal',
34521     ),
34522     'fit' => array(
34523       'type' => 'int',
34524       'not null' => TRUE,
34525       'size' => 'normal',
34526       'default' => '0',
34527     ),
34528     'number_parts' => array(
34529       'type' => 'int',
34530       'not null' => TRUE,
34531       'size' => 'normal',
34532       'default' => '0',
34533     ),
34534     'tab_parent' => array(
34535       'type' => 'varchar',
34536       'not null' => TRUE,
34537       'length' => '255',
34538       'default' => '',
34539     ),
34540     'tab_root' => array(
34541       'type' => 'varchar',
34542       'not null' => TRUE,
34543       'length' => '255',
34544       'default' => '',
34545     ),
34546     'title' => array(
34547       'type' => 'varchar',
34548       'not null' => TRUE,
34549       'length' => '255',
34550       'default' => '',
34551     ),
34552     'title_callback' => array(
34553       'type' => 'varchar',
34554       'not null' => TRUE,
34555       'length' => '255',
34556       'default' => '',
34557     ),
34558     'title_arguments' => array(
34559       'type' => 'varchar',
34560       'not null' => TRUE,
34561       'length' => '255',
34562       'default' => '',
34563     ),
34564     'type' => array(
34565       'type' => 'int',
34566       'not null' => TRUE,
34567       'size' => 'normal',
34568       'default' => '0',
34569     ),
34570     'block_callback' => array(
34571       'type' => 'varchar',
34572       'not null' => TRUE,
34573       'length' => '255',
34574       'default' => '',
34575     ),
34576     'description' => array(
34577       'type' => 'text',
34578       'not null' => TRUE,
34579       'size' => 'normal',
34580     ),
34581     'position' => array(
34582       'type' => 'varchar',
34583       'not null' => TRUE,
34584       'length' => '255',
34585       'default' => '',
34586     ),
34587     'weight' => array(
34588       'type' => 'int',
34589       'not null' => TRUE,
34590       'size' => 'normal',
34591       'default' => '0',
34592     ),
34593     'file' => array(
34594       'type' => 'text',
34595       'not null' => FALSE,
34596       'size' => 'normal',
34597     ),
34598   ),
34599   'primary key' => array(
34600     'path',
34601   ),
34602   'mysql_character_set' => 'utf8',
34603 ));
34604
34605 $connection->insert('menu_router')
34606 ->fields(array(
34607   'path',
34608   'load_functions',
34609   'to_arg_functions',
34610   'access_callback',
34611   'access_arguments',
34612   'page_callback',
34613   'page_arguments',
34614   'fit',
34615   'number_parts',
34616   'tab_parent',
34617   'tab_root',
34618   'title',
34619   'title_callback',
34620   'title_arguments',
34621   'type',
34622   'block_callback',
34623   'description',
34624   'position',
34625   'weight',
34626   'file',
34627 ))
34628 ->values(array(
34629   'path' => 'admin',
34630   'load_functions' => '',
34631   'to_arg_functions' => '',
34632   'access_callback' => 'user_access',
34633   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
34634   'page_callback' => 'system_main_admin_page',
34635   'page_arguments' => 'a:0:{}',
34636   'fit' => '1',
34637   'number_parts' => '1',
34638   'tab_parent' => '',
34639   'tab_root' => 'admin',
34640   'title' => 'Administer',
34641   'title_callback' => 't',
34642   'title_arguments' => '',
34643   'type' => '6',
34644   'block_callback' => '',
34645   'description' => '',
34646   'position' => '',
34647   'weight' => '9',
34648   'file' => 'modules/system/system.admin.inc',
34649 ))
34650 ->values(array(
34651   'path' => 'admin/build',
34652   'load_functions' => '',
34653   'to_arg_functions' => '',
34654   'access_callback' => 'user_access',
34655   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
34656   'page_callback' => 'system_admin_menu_block_page',
34657   'page_arguments' => 'a:0:{}',
34658   'fit' => '3',
34659   'number_parts' => '2',
34660   'tab_parent' => '',
34661   'tab_root' => 'admin/build',
34662   'title' => 'Site building',
34663   'title_callback' => 't',
34664   'title_arguments' => '',
34665   'type' => '6',
34666   'block_callback' => '',
34667   'description' => 'Control how your site looks and feels.',
34668   'position' => 'right',
34669   'weight' => '-10',
34670   'file' => 'modules/system/system.admin.inc',
34671 ))
34672 ->values(array(
34673   'path' => 'admin/build/block',
34674   'load_functions' => '',
34675   'to_arg_functions' => '',
34676   'access_callback' => 'user_access',
34677   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
34678   'page_callback' => 'block_admin_display',
34679   'page_arguments' => 'a:0:{}',
34680   'fit' => '7',
34681   'number_parts' => '3',
34682   'tab_parent' => '',
34683   'tab_root' => 'admin/build/block',
34684   'title' => 'Blocks',
34685   'title_callback' => 't',
34686   'title_arguments' => '',
34687   'type' => '6',
34688   'block_callback' => '',
34689   'description' => "Configure what block content appears in your site's sidebars and other regions.",
34690   'position' => '',
34691   'weight' => '0',
34692   'file' => 'modules/block/block.admin.inc',
34693 ))
34694 ->values(array(
34695   'path' => 'admin/build/block/add',
34696   'load_functions' => '',
34697   'to_arg_functions' => '',
34698   'access_callback' => 'user_access',
34699   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
34700   'page_callback' => 'drupal_get_form',
34701   'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
34702   'fit' => '15',
34703   'number_parts' => '4',
34704   'tab_parent' => 'admin/build/block',
34705   'tab_root' => 'admin/build/block',
34706   'title' => 'Add block',
34707   'title_callback' => 't',
34708   'title_arguments' => '',
34709   'type' => '128',
34710   'block_callback' => '',
34711   'description' => '',
34712   'position' => '',
34713   'weight' => '0',
34714   'file' => 'modules/block/block.admin.inc',
34715 ))
34716 ->values(array(
34717   'path' => 'admin/build/block/configure',
34718   'load_functions' => '',
34719   'to_arg_functions' => '',
34720   'access_callback' => 'user_access',
34721   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
34722   'page_callback' => 'drupal_get_form',
34723   'page_arguments' => 'a:1:{i:0;s:21:"block_admin_configure";}',
34724   'fit' => '15',
34725   'number_parts' => '4',
34726   'tab_parent' => '',
34727   'tab_root' => 'admin/build/block/configure',
34728   'title' => 'Configure block',
34729   'title_callback' => 't',
34730   'title_arguments' => '',
34731   'type' => '4',
34732   'block_callback' => '',
34733   'description' => '',
34734   'position' => '',
34735   'weight' => '0',
34736   'file' => 'modules/block/block.admin.inc',
34737 ))
34738 ->values(array(
34739   'path' => 'admin/build/block/delete',
34740   'load_functions' => '',
34741   'to_arg_functions' => '',
34742   'access_callback' => 'user_access',
34743   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
34744   'page_callback' => 'drupal_get_form',
34745   'page_arguments' => 'a:1:{i:0;s:16:"block_box_delete";}',
34746   'fit' => '15',
34747   'number_parts' => '4',
34748   'tab_parent' => '',
34749   'tab_root' => 'admin/build/block/delete',
34750   'title' => 'Delete block',
34751   'title_callback' => 't',
34752   'title_arguments' => '',
34753   'type' => '4',
34754   'block_callback' => '',
34755   'description' => '',
34756   'position' => '',
34757   'weight' => '0',
34758   'file' => 'modules/block/block.admin.inc',
34759 ))
34760 ->values(array(
34761   'path' => 'admin/build/block/list',
34762   'load_functions' => '',
34763   'to_arg_functions' => '',
34764   'access_callback' => 'user_access',
34765   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
34766   'page_callback' => 'block_admin_display',
34767   'page_arguments' => 'a:0:{}',
34768   'fit' => '15',
34769   'number_parts' => '4',
34770   'tab_parent' => 'admin/build/block',
34771   'tab_root' => 'admin/build/block',
34772   'title' => 'List',
34773   'title_callback' => 't',
34774   'title_arguments' => '',
34775   'type' => '136',
34776   'block_callback' => '',
34777   'description' => '',
34778   'position' => '',
34779   'weight' => '-10',
34780   'file' => 'modules/block/block.admin.inc',
34781 ))
34782 ->values(array(
34783   'path' => 'admin/build/block/list/bluemarine',
34784   'load_functions' => '',
34785   'to_arg_functions' => '',
34786   'access_callback' => '_block_themes_access',
34787   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
34788   'page_callback' => 'block_admin_display',
34789   'page_arguments' => 'a:1:{i:0;s:10:"bluemarine";}',
34790   'fit' => '31',
34791   'number_parts' => '5',
34792   'tab_parent' => 'admin/build/block/list',
34793   'tab_root' => 'admin/build/block',
34794   'title' => 'Bluemarine',
34795   'title_callback' => 't',
34796   'title_arguments' => '',
34797   'type' => '128',
34798   'block_callback' => '',
34799   'description' => '',
34800   'position' => '',
34801   'weight' => '0',
34802   'file' => 'modules/block/block.admin.inc',
34803 ))
34804 ->values(array(
34805   'path' => 'admin/build/block/list/chameleon',
34806   'load_functions' => '',
34807   'to_arg_functions' => '',
34808   'access_callback' => '_block_themes_access',
34809   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}',
34810   'page_callback' => 'block_admin_display',
34811   'page_arguments' => 'a:1:{i:0;s:9:"chameleon";}',
34812   'fit' => '31',
34813   'number_parts' => '5',
34814   'tab_parent' => 'admin/build/block/list',
34815   'tab_root' => 'admin/build/block',
34816   'title' => 'Chameleon',
34817   'title_callback' => 't',
34818   'title_arguments' => '',
34819   'type' => '128',
34820   'block_callback' => '',
34821   'description' => '',
34822   'position' => '',
34823   'weight' => '0',
34824   'file' => 'modules/block/block.admin.inc',
34825 ))
34826 ->values(array(
34827   'path' => 'admin/build/block/list/garland',
34828   'load_functions' => '',
34829   'to_arg_functions' => '',
34830   'access_callback' => '_block_themes_access',
34831   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
34832   'page_callback' => 'block_admin_display',
34833   'page_arguments' => 'a:1:{i:0;s:7:"garland";}',
34834   'fit' => '31',
34835   'number_parts' => '5',
34836   'tab_parent' => 'admin/build/block/list',
34837   'tab_root' => 'admin/build/block',
34838   'title' => 'Garland',
34839   'title_callback' => 't',
34840   'title_arguments' => '',
34841   'type' => '136',
34842   'block_callback' => '',
34843   'description' => '',
34844   'position' => '',
34845   'weight' => '-10',
34846   'file' => 'modules/block/block.admin.inc',
34847 ))
34848 ->values(array(
34849   'path' => 'admin/build/block/list/js',
34850   'load_functions' => '',
34851   'to_arg_functions' => '',
34852   'access_callback' => 'user_access',
34853   'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
34854   'page_callback' => 'block_admin_display_js',
34855   'page_arguments' => 'a:0:{}',
34856   'fit' => '31',
34857   'number_parts' => '5',
34858   'tab_parent' => '',
34859   'tab_root' => 'admin/build/block/list/js',
34860   'title' => 'JavaScript List Form',
34861   'title_callback' => 't',
34862   'title_arguments' => '',
34863   'type' => '4',
34864   'block_callback' => '',
34865   'description' => '',
34866   'position' => '',
34867   'weight' => '0',
34868   'file' => 'modules/block/block.admin.inc',
34869 ))
34870 ->values(array(
34871   'path' => 'admin/build/block/list/marvin',
34872   'load_functions' => '',
34873   'to_arg_functions' => '',
34874   'access_callback' => '_block_themes_access',
34875   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}',
34876   'page_callback' => 'block_admin_display',
34877   'page_arguments' => 'a:1:{i:0;s:6:"marvin";}',
34878   'fit' => '31',
34879   'number_parts' => '5',
34880   'tab_parent' => 'admin/build/block/list',
34881   'tab_root' => 'admin/build/block',
34882   'title' => 'Marvin',
34883   'title_callback' => 't',
34884   'title_arguments' => '',
34885   'type' => '128',
34886   'block_callback' => '',
34887   'description' => '',
34888   'position' => '',
34889   'weight' => '0',
34890   'file' => 'modules/block/block.admin.inc',
34891 ))
34892 ->values(array(
34893   'path' => 'admin/build/block/list/minnelli',
34894   'load_functions' => '',
34895   'to_arg_functions' => '',
34896   'access_callback' => '_block_themes_access',
34897   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:14:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}',
34898   'page_callback' => 'block_admin_display',
34899   'page_arguments' => 'a:1:{i:0;s:8:"minnelli";}',
34900   'fit' => '31',
34901   'number_parts' => '5',
34902   'tab_parent' => 'admin/build/block/list',
34903   'tab_root' => 'admin/build/block',
34904   'title' => 'Minnelli',
34905   'title_callback' => 't',
34906   'title_arguments' => '',
34907   'type' => '128',
34908   'block_callback' => '',
34909   'description' => '',
34910   'position' => '',
34911   'weight' => '0',
34912   'file' => 'modules/block/block.admin.inc',
34913 ))
34914 ->values(array(
34915   'path' => 'admin/build/block/list/pushbutton',
34916   'load_functions' => '',
34917   'to_arg_functions' => '',
34918   'access_callback' => '_block_themes_access',
34919   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
34920   'page_callback' => 'block_admin_display',
34921   'page_arguments' => 'a:1:{i:0;s:10:"pushbutton";}',
34922   'fit' => '31',
34923   'number_parts' => '5',
34924   'tab_parent' => 'admin/build/block/list',
34925   'tab_root' => 'admin/build/block',
34926   'title' => 'Pushbutton',
34927   'title_callback' => 't',
34928   'title_arguments' => '',
34929   'type' => '128',
34930   'block_callback' => '',
34931   'description' => '',
34932   'position' => '',
34933   'weight' => '0',
34934   'file' => 'modules/block/block.admin.inc',
34935 ))
34936 ->values(array(
34937   'path' => 'admin/build/contact',
34938   'load_functions' => '',
34939   'to_arg_functions' => '',
34940   'access_callback' => 'user_access',
34941   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
34942   'page_callback' => 'contact_admin_categories',
34943   'page_arguments' => 'a:0:{}',
34944   'fit' => '7',
34945   'number_parts' => '3',
34946   'tab_parent' => '',
34947   'tab_root' => 'admin/build/contact',
34948   'title' => 'Contact form',
34949   'title_callback' => 't',
34950   'title_arguments' => '',
34951   'type' => '6',
34952   'block_callback' => '',
34953   'description' => 'Create a system contact form and set up categories for the form to use.',
34954   'position' => '',
34955   'weight' => '0',
34956   'file' => 'modules/contact/contact.admin.inc',
34957 ))
34958 ->values(array(
34959   'path' => 'admin/build/contact/add',
34960   'load_functions' => '',
34961   'to_arg_functions' => '',
34962   'access_callback' => 'user_access',
34963   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
34964   'page_callback' => 'drupal_get_form',
34965   'page_arguments' => 'a:2:{i:0;s:18:"contact_admin_edit";i:1;i:3;}',
34966   'fit' => '15',
34967   'number_parts' => '4',
34968   'tab_parent' => 'admin/build/contact',
34969   'tab_root' => 'admin/build/contact',
34970   'title' => 'Add category',
34971   'title_callback' => 't',
34972   'title_arguments' => '',
34973   'type' => '128',
34974   'block_callback' => '',
34975   'description' => '',
34976   'position' => '',
34977   'weight' => '1',
34978   'file' => 'modules/contact/contact.admin.inc',
34979 ))
34980 ->values(array(
34981   'path' => 'admin/build/contact/delete/%',
34982   'load_functions' => 'a:1:{i:4;s:12:"contact_load";}',
34983   'to_arg_functions' => '',
34984   'access_callback' => 'user_access',
34985   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
34986   'page_callback' => 'drupal_get_form',
34987   'page_arguments' => 'a:2:{i:0;s:20:"contact_admin_delete";i:1;i:4;}',
34988   'fit' => '30',
34989   'number_parts' => '5',
34990   'tab_parent' => '',
34991   'tab_root' => 'admin/build/contact/delete/%',
34992   'title' => 'Delete contact',
34993   'title_callback' => 't',
34994   'title_arguments' => '',
34995   'type' => '4',
34996   'block_callback' => '',
34997   'description' => '',
34998   'position' => '',
34999   'weight' => '0',
35000   'file' => 'modules/contact/contact.admin.inc',
35001 ))
35002 ->values(array(
35003   'path' => 'admin/build/contact/edit/%',
35004   'load_functions' => 'a:1:{i:4;s:12:"contact_load";}',
35005   'to_arg_functions' => '',
35006   'access_callback' => 'user_access',
35007   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
35008   'page_callback' => 'drupal_get_form',
35009   'page_arguments' => 'a:3:{i:0;s:18:"contact_admin_edit";i:1;i:3;i:2;i:4;}',
35010   'fit' => '30',
35011   'number_parts' => '5',
35012   'tab_parent' => '',
35013   'tab_root' => 'admin/build/contact/edit/%',
35014   'title' => 'Edit contact category',
35015   'title_callback' => 't',
35016   'title_arguments' => '',
35017   'type' => '4',
35018   'block_callback' => '',
35019   'description' => '',
35020   'position' => '',
35021   'weight' => '0',
35022   'file' => 'modules/contact/contact.admin.inc',
35023 ))
35024 ->values(array(
35025   'path' => 'admin/build/contact/list',
35026   'load_functions' => '',
35027   'to_arg_functions' => '',
35028   'access_callback' => 'user_access',
35029   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
35030   'page_callback' => 'contact_admin_categories',
35031   'page_arguments' => 'a:0:{}',
35032   'fit' => '15',
35033   'number_parts' => '4',
35034   'tab_parent' => 'admin/build/contact',
35035   'tab_root' => 'admin/build/contact',
35036   'title' => 'List',
35037   'title_callback' => 't',
35038   'title_arguments' => '',
35039   'type' => '136',
35040   'block_callback' => '',
35041   'description' => '',
35042   'position' => '',
35043   'weight' => '0',
35044   'file' => 'modules/contact/contact.admin.inc',
35045 ))
35046 ->values(array(
35047   'path' => 'admin/build/contact/settings',
35048   'load_functions' => '',
35049   'to_arg_functions' => '',
35050   'access_callback' => 'user_access',
35051   'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
35052   'page_callback' => 'drupal_get_form',
35053   'page_arguments' => 'a:1:{i:0;s:22:"contact_admin_settings";}',
35054   'fit' => '15',
35055   'number_parts' => '4',
35056   'tab_parent' => 'admin/build/contact',
35057   'tab_root' => 'admin/build/contact',
35058   'title' => 'Settings',
35059   'title_callback' => 't',
35060   'title_arguments' => '',
35061   'type' => '128',
35062   'block_callback' => '',
35063   'description' => '',
35064   'position' => '',
35065   'weight' => '2',
35066   'file' => 'modules/contact/contact.admin.inc',
35067 ))
35068 ->values(array(
35069   'path' => 'admin/build/menu',
35070   'load_functions' => '',
35071   'to_arg_functions' => '',
35072   'access_callback' => 'user_access',
35073   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35074   'page_callback' => 'menu_overview_page',
35075   'page_arguments' => 'a:0:{}',
35076   'fit' => '7',
35077   'number_parts' => '3',
35078   'tab_parent' => '',
35079   'tab_root' => 'admin/build/menu',
35080   'title' => 'Menus',
35081   'title_callback' => 't',
35082   'title_arguments' => '',
35083   'type' => '6',
35084   'block_callback' => '',
35085   'description' => "Control your site's navigation menu, primary links and secondary links, as well as rename and reorganize menu items.",
35086   'position' => '',
35087   'weight' => '0',
35088   'file' => 'modules/menu/menu.admin.inc',
35089 ))
35090 ->values(array(
35091   'path' => 'admin/build/menu-customize/%',
35092   'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
35093   'to_arg_functions' => '',
35094   'access_callback' => 'user_access',
35095   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35096   'page_callback' => 'drupal_get_form',
35097   'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:3;}',
35098   'fit' => '14',
35099   'number_parts' => '4',
35100   'tab_parent' => '',
35101   'tab_root' => 'admin/build/menu-customize/%',
35102   'title' => 'Customize menu',
35103   'title_callback' => 'menu_overview_title',
35104   'title_arguments' => 'a:1:{i:0;i:3;}',
35105   'type' => '4',
35106   'block_callback' => '',
35107   'description' => '',
35108   'position' => '',
35109   'weight' => '0',
35110   'file' => 'modules/menu/menu.admin.inc',
35111 ))
35112 ->values(array(
35113   'path' => 'admin/build/menu-customize/%/add',
35114   'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
35115   'to_arg_functions' => '',
35116   'access_callback' => 'user_access',
35117   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35118   'page_callback' => 'drupal_get_form',
35119   'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:3:"add";i:2;N;i:3;i:3;}',
35120   'fit' => '29',
35121   'number_parts' => '5',
35122   'tab_parent' => 'admin/build/menu-customize/%',
35123   'tab_root' => 'admin/build/menu-customize/%',
35124   'title' => 'Add item',
35125   'title_callback' => 't',
35126   'title_arguments' => '',
35127   'type' => '128',
35128   'block_callback' => '',
35129   'description' => '',
35130   'position' => '',
35131   'weight' => '0',
35132   'file' => 'modules/menu/menu.admin.inc',
35133 ))
35134 ->values(array(
35135   'path' => 'admin/build/menu-customize/%/delete',
35136   'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
35137   'to_arg_functions' => '',
35138   'access_callback' => 'user_access',
35139   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35140   'page_callback' => 'menu_delete_menu_page',
35141   'page_arguments' => 'a:1:{i:0;i:3;}',
35142   'fit' => '29',
35143   'number_parts' => '5',
35144   'tab_parent' => '',
35145   'tab_root' => 'admin/build/menu-customize/%/delete',
35146   'title' => 'Delete menu',
35147   'title_callback' => 't',
35148   'title_arguments' => '',
35149   'type' => '4',
35150   'block_callback' => '',
35151   'description' => '',
35152   'position' => '',
35153   'weight' => '0',
35154   'file' => 'modules/menu/menu.admin.inc',
35155 ))
35156 ->values(array(
35157   'path' => 'admin/build/menu-customize/%/edit',
35158   'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
35159   'to_arg_functions' => '',
35160   'access_callback' => 'user_access',
35161   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35162   'page_callback' => 'drupal_get_form',
35163   'page_arguments' => 'a:3:{i:0;s:14:"menu_edit_menu";i:1;s:4:"edit";i:2;i:3;}',
35164   'fit' => '29',
35165   'number_parts' => '5',
35166   'tab_parent' => 'admin/build/menu-customize/%',
35167   'tab_root' => 'admin/build/menu-customize/%',
35168   'title' => 'Edit menu',
35169   'title_callback' => 't',
35170   'title_arguments' => '',
35171   'type' => '128',
35172   'block_callback' => '',
35173   'description' => '',
35174   'position' => '',
35175   'weight' => '0',
35176   'file' => 'modules/menu/menu.admin.inc',
35177 ))
35178 ->values(array(
35179   'path' => 'admin/build/menu-customize/%/list',
35180   'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
35181   'to_arg_functions' => '',
35182   'access_callback' => 'user_access',
35183   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35184   'page_callback' => 'drupal_get_form',
35185   'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:3;}',
35186   'fit' => '29',
35187   'number_parts' => '5',
35188   'tab_parent' => 'admin/build/menu-customize/%',
35189   'tab_root' => 'admin/build/menu-customize/%',
35190   'title' => 'List items',
35191   'title_callback' => 't',
35192   'title_arguments' => '',
35193   'type' => '136',
35194   'block_callback' => '',
35195   'description' => '',
35196   'position' => '',
35197   'weight' => '-10',
35198   'file' => 'modules/menu/menu.admin.inc',
35199 ))
35200 ->values(array(
35201   'path' => 'admin/build/menu/add',
35202   'load_functions' => '',
35203   'to_arg_functions' => '',
35204   'access_callback' => 'user_access',
35205   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35206   'page_callback' => 'drupal_get_form',
35207   'page_arguments' => 'a:2:{i:0;s:14:"menu_edit_menu";i:1;s:3:"add";}',
35208   'fit' => '15',
35209   'number_parts' => '4',
35210   'tab_parent' => 'admin/build/menu',
35211   'tab_root' => 'admin/build/menu',
35212   'title' => 'Add menu',
35213   'title_callback' => 't',
35214   'title_arguments' => '',
35215   'type' => '128',
35216   'block_callback' => '',
35217   'description' => '',
35218   'position' => '',
35219   'weight' => '0',
35220   'file' => 'modules/menu/menu.admin.inc',
35221 ))
35222 ->values(array(
35223   'path' => 'admin/build/menu/item/%/delete',
35224   'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
35225   'to_arg_functions' => '',
35226   'access_callback' => 'user_access',
35227   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35228   'page_callback' => 'menu_item_delete_page',
35229   'page_arguments' => 'a:1:{i:0;i:4;}',
35230   'fit' => '61',
35231   'number_parts' => '6',
35232   'tab_parent' => '',
35233   'tab_root' => 'admin/build/menu/item/%/delete',
35234   'title' => 'Delete menu item',
35235   'title_callback' => 't',
35236   'title_arguments' => '',
35237   'type' => '4',
35238   'block_callback' => '',
35239   'description' => '',
35240   'position' => '',
35241   'weight' => '0',
35242   'file' => 'modules/menu/menu.admin.inc',
35243 ))
35244 ->values(array(
35245   'path' => 'admin/build/menu/item/%/edit',
35246   'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
35247   'to_arg_functions' => '',
35248   'access_callback' => 'user_access',
35249   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35250   'page_callback' => 'drupal_get_form',
35251   'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:4:"edit";i:2;i:4;i:3;N;}',
35252   'fit' => '61',
35253   'number_parts' => '6',
35254   'tab_parent' => '',
35255   'tab_root' => 'admin/build/menu/item/%/edit',
35256   'title' => 'Edit menu item',
35257   'title_callback' => 't',
35258   'title_arguments' => '',
35259   'type' => '4',
35260   'block_callback' => '',
35261   'description' => '',
35262   'position' => '',
35263   'weight' => '0',
35264   'file' => 'modules/menu/menu.admin.inc',
35265 ))
35266 ->values(array(
35267   'path' => 'admin/build/menu/item/%/reset',
35268   'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
35269   'to_arg_functions' => '',
35270   'access_callback' => 'user_access',
35271   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35272   'page_callback' => 'drupal_get_form',
35273   'page_arguments' => 'a:2:{i:0;s:23:"menu_reset_item_confirm";i:1;i:4;}',
35274   'fit' => '61',
35275   'number_parts' => '6',
35276   'tab_parent' => '',
35277   'tab_root' => 'admin/build/menu/item/%/reset',
35278   'title' => 'Reset menu item',
35279   'title_callback' => 't',
35280   'title_arguments' => '',
35281   'type' => '4',
35282   'block_callback' => '',
35283   'description' => '',
35284   'position' => '',
35285   'weight' => '0',
35286   'file' => 'modules/menu/menu.admin.inc',
35287 ))
35288 ->values(array(
35289   'path' => 'admin/build/menu/list',
35290   'load_functions' => '',
35291   'to_arg_functions' => '',
35292   'access_callback' => 'user_access',
35293   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35294   'page_callback' => 'menu_overview_page',
35295   'page_arguments' => 'a:0:{}',
35296   'fit' => '15',
35297   'number_parts' => '4',
35298   'tab_parent' => 'admin/build/menu',
35299   'tab_root' => 'admin/build/menu',
35300   'title' => 'List menus',
35301   'title_callback' => 't',
35302   'title_arguments' => '',
35303   'type' => '136',
35304   'block_callback' => '',
35305   'description' => '',
35306   'position' => '',
35307   'weight' => '-10',
35308   'file' => 'modules/menu/menu.admin.inc',
35309 ))
35310 ->values(array(
35311   'path' => 'admin/build/menu/settings',
35312   'load_functions' => '',
35313   'to_arg_functions' => '',
35314   'access_callback' => 'user_access',
35315   'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
35316   'page_callback' => 'drupal_get_form',
35317   'page_arguments' => 'a:1:{i:0;s:14:"menu_configure";}',
35318   'fit' => '15',
35319   'number_parts' => '4',
35320   'tab_parent' => 'admin/build/menu',
35321   'tab_root' => 'admin/build/menu',
35322   'title' => 'Settings',
35323   'title_callback' => 't',
35324   'title_arguments' => '',
35325   'type' => '128',
35326   'block_callback' => '',
35327   'description' => '',
35328   'position' => '',
35329   'weight' => '5',
35330   'file' => 'modules/menu/menu.admin.inc',
35331 ))
35332 ->values(array(
35333   'path' => 'admin/build/modules',
35334   'load_functions' => '',
35335   'to_arg_functions' => '',
35336   'access_callback' => 'user_access',
35337   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35338   'page_callback' => 'drupal_get_form',
35339   'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
35340   'fit' => '7',
35341   'number_parts' => '3',
35342   'tab_parent' => '',
35343   'tab_root' => 'admin/build/modules',
35344   'title' => 'Modules',
35345   'title_callback' => 't',
35346   'title_arguments' => '',
35347   'type' => '6',
35348   'block_callback' => '',
35349   'description' => 'Enable or disable add-on modules for your site.',
35350   'position' => '',
35351   'weight' => '0',
35352   'file' => 'modules/system/system.admin.inc',
35353 ))
35354 ->values(array(
35355   'path' => 'admin/build/modules/list',
35356   'load_functions' => '',
35357   'to_arg_functions' => '',
35358   'access_callback' => 'user_access',
35359   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35360   'page_callback' => 'drupal_get_form',
35361   'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
35362   'fit' => '15',
35363   'number_parts' => '4',
35364   'tab_parent' => 'admin/build/modules',
35365   'tab_root' => 'admin/build/modules',
35366   'title' => 'List',
35367   'title_callback' => 't',
35368   'title_arguments' => '',
35369   'type' => '136',
35370   'block_callback' => '',
35371   'description' => '',
35372   'position' => '',
35373   'weight' => '0',
35374   'file' => 'modules/system/system.admin.inc',
35375 ))
35376 ->values(array(
35377   'path' => 'admin/build/modules/list/confirm',
35378   'load_functions' => '',
35379   'to_arg_functions' => '',
35380   'access_callback' => 'user_access',
35381   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35382   'page_callback' => 'drupal_get_form',
35383   'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
35384   'fit' => '31',
35385   'number_parts' => '5',
35386   'tab_parent' => '',
35387   'tab_root' => 'admin/build/modules/list/confirm',
35388   'title' => 'List',
35389   'title_callback' => 't',
35390   'title_arguments' => '',
35391   'type' => '4',
35392   'block_callback' => '',
35393   'description' => '',
35394   'position' => '',
35395   'weight' => '0',
35396   'file' => 'modules/system/system.admin.inc',
35397 ))
35398 ->values(array(
35399   'path' => 'admin/build/modules/uninstall',
35400   'load_functions' => '',
35401   'to_arg_functions' => '',
35402   'access_callback' => 'user_access',
35403   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35404   'page_callback' => 'drupal_get_form',
35405   'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
35406   'fit' => '15',
35407   'number_parts' => '4',
35408   'tab_parent' => 'admin/build/modules',
35409   'tab_root' => 'admin/build/modules',
35410   'title' => 'Uninstall',
35411   'title_callback' => 't',
35412   'title_arguments' => '',
35413   'type' => '128',
35414   'block_callback' => '',
35415   'description' => '',
35416   'position' => '',
35417   'weight' => '0',
35418   'file' => 'modules/system/system.admin.inc',
35419 ))
35420 ->values(array(
35421   'path' => 'admin/build/modules/uninstall/confirm',
35422   'load_functions' => '',
35423   'to_arg_functions' => '',
35424   'access_callback' => 'user_access',
35425   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35426   'page_callback' => 'drupal_get_form',
35427   'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
35428   'fit' => '31',
35429   'number_parts' => '5',
35430   'tab_parent' => '',
35431   'tab_root' => 'admin/build/modules/uninstall/confirm',
35432   'title' => 'Uninstall',
35433   'title_callback' => 't',
35434   'title_arguments' => '',
35435   'type' => '4',
35436   'block_callback' => '',
35437   'description' => '',
35438   'position' => '',
35439   'weight' => '0',
35440   'file' => 'modules/system/system.admin.inc',
35441 ))
35442 ->values(array(
35443   'path' => 'admin/build/path',
35444   'load_functions' => '',
35445   'to_arg_functions' => '',
35446   'access_callback' => 'user_access',
35447   'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
35448   'page_callback' => 'path_admin_overview',
35449   'page_arguments' => 'a:0:{}',
35450   'fit' => '7',
35451   'number_parts' => '3',
35452   'tab_parent' => '',
35453   'tab_root' => 'admin/build/path',
35454   'title' => 'URL aliases',
35455   'title_callback' => 't',
35456   'title_arguments' => '',
35457   'type' => '6',
35458   'block_callback' => '',
35459   'description' => "Change your site's URL paths by aliasing them.",
35460   'position' => '',
35461   'weight' => '0',
35462   'file' => 'modules/path/path.admin.inc',
35463 ))
35464 ->values(array(
35465   'path' => 'admin/build/path/add',
35466   'load_functions' => '',
35467   'to_arg_functions' => '',
35468   'access_callback' => 'user_access',
35469   'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
35470   'page_callback' => 'path_admin_edit',
35471   'page_arguments' => 'a:0:{}',
35472   'fit' => '15',
35473   'number_parts' => '4',
35474   'tab_parent' => 'admin/build/path',
35475   'tab_root' => 'admin/build/path',
35476   'title' => 'Add alias',
35477   'title_callback' => 't',
35478   'title_arguments' => '',
35479   'type' => '128',
35480   'block_callback' => '',
35481   'description' => '',
35482   'position' => '',
35483   'weight' => '0',
35484   'file' => 'modules/path/path.admin.inc',
35485 ))
35486 ->values(array(
35487   'path' => 'admin/build/path/delete',
35488   'load_functions' => '',
35489   'to_arg_functions' => '',
35490   'access_callback' => 'user_access',
35491   'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
35492   'page_callback' => 'drupal_get_form',
35493   'page_arguments' => 'a:1:{i:0;s:25:"path_admin_delete_confirm";}',
35494   'fit' => '15',
35495   'number_parts' => '4',
35496   'tab_parent' => '',
35497   'tab_root' => 'admin/build/path/delete',
35498   'title' => 'Delete alias',
35499   'title_callback' => 't',
35500   'title_arguments' => '',
35501   'type' => '4',
35502   'block_callback' => '',
35503   'description' => '',
35504   'position' => '',
35505   'weight' => '0',
35506   'file' => 'modules/path/path.admin.inc',
35507 ))
35508 ->values(array(
35509   'path' => 'admin/build/path/edit',
35510   'load_functions' => '',
35511   'to_arg_functions' => '',
35512   'access_callback' => 'user_access',
35513   'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
35514   'page_callback' => 'path_admin_edit',
35515   'page_arguments' => 'a:0:{}',
35516   'fit' => '15',
35517   'number_parts' => '4',
35518   'tab_parent' => '',
35519   'tab_root' => 'admin/build/path/edit',
35520   'title' => 'Edit alias',
35521   'title_callback' => 't',
35522   'title_arguments' => '',
35523   'type' => '4',
35524   'block_callback' => '',
35525   'description' => '',
35526   'position' => '',
35527   'weight' => '0',
35528   'file' => 'modules/path/path.admin.inc',
35529 ))
35530 ->values(array(
35531   'path' => 'admin/build/path/list',
35532   'load_functions' => '',
35533   'to_arg_functions' => '',
35534   'access_callback' => 'user_access',
35535   'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
35536   'page_callback' => 'path_admin_overview',
35537   'page_arguments' => 'a:0:{}',
35538   'fit' => '15',
35539   'number_parts' => '4',
35540   'tab_parent' => 'admin/build/path',
35541   'tab_root' => 'admin/build/path',
35542   'title' => 'List',
35543   'title_callback' => 't',
35544   'title_arguments' => '',
35545   'type' => '136',
35546   'block_callback' => '',
35547   'description' => '',
35548   'position' => '',
35549   'weight' => '-10',
35550   'file' => 'modules/path/path.admin.inc',
35551 ))
35552 ->values(array(
35553   'path' => 'admin/build/themes',
35554   'load_functions' => '',
35555   'to_arg_functions' => '',
35556   'access_callback' => 'user_access',
35557   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35558   'page_callback' => 'drupal_get_form',
35559   'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
35560   'fit' => '7',
35561   'number_parts' => '3',
35562   'tab_parent' => '',
35563   'tab_root' => 'admin/build/themes',
35564   'title' => 'Themes',
35565   'title_callback' => 't',
35566   'title_arguments' => '',
35567   'type' => '6',
35568   'block_callback' => '',
35569   'description' => 'Change which theme your site uses or allows users to set.',
35570   'position' => '',
35571   'weight' => '0',
35572   'file' => 'modules/system/system.admin.inc',
35573 ))
35574 ->values(array(
35575   'path' => 'admin/build/themes/select',
35576   'load_functions' => '',
35577   'to_arg_functions' => '',
35578   'access_callback' => 'user_access',
35579   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35580   'page_callback' => 'drupal_get_form',
35581   'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
35582   'fit' => '15',
35583   'number_parts' => '4',
35584   'tab_parent' => 'admin/build/themes',
35585   'tab_root' => 'admin/build/themes',
35586   'title' => 'List',
35587   'title_callback' => 't',
35588   'title_arguments' => '',
35589   'type' => '136',
35590   'block_callback' => '',
35591   'description' => 'Select the default theme.',
35592   'position' => '',
35593   'weight' => '-1',
35594   'file' => 'modules/system/system.admin.inc',
35595 ))
35596 ->values(array(
35597   'path' => 'admin/build/themes/settings',
35598   'load_functions' => '',
35599   'to_arg_functions' => '',
35600   'access_callback' => 'user_access',
35601   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35602   'page_callback' => 'drupal_get_form',
35603   'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
35604   'fit' => '15',
35605   'number_parts' => '4',
35606   'tab_parent' => 'admin/build/themes',
35607   'tab_root' => 'admin/build/themes',
35608   'title' => 'Configure',
35609   'title_callback' => 't',
35610   'title_arguments' => '',
35611   'type' => '128',
35612   'block_callback' => '',
35613   'description' => '',
35614   'position' => '',
35615   'weight' => '0',
35616   'file' => 'modules/system/system.admin.inc',
35617 ))
35618 ->values(array(
35619   'path' => 'admin/build/themes/settings/bluemarine',
35620   'load_functions' => '',
35621   'to_arg_functions' => '',
35622   'access_callback' => '_system_themes_access',
35623   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
35624   'page_callback' => 'drupal_get_form',
35625   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"bluemarine";}',
35626   'fit' => '31',
35627   'number_parts' => '5',
35628   'tab_parent' => 'admin/build/themes/settings',
35629   'tab_root' => 'admin/build/themes',
35630   'title' => 'Bluemarine',
35631   'title_callback' => 't',
35632   'title_arguments' => '',
35633   'type' => '128',
35634   'block_callback' => '',
35635   'description' => '',
35636   'position' => '',
35637   'weight' => '0',
35638   'file' => 'modules/system/system.admin.inc',
35639 ))
35640 ->values(array(
35641   'path' => 'admin/build/themes/settings/chameleon',
35642   'load_functions' => '',
35643   'to_arg_functions' => '',
35644   'access_callback' => '_system_themes_access',
35645   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}',
35646   'page_callback' => 'drupal_get_form',
35647   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:9:"chameleon";}',
35648   'fit' => '31',
35649   'number_parts' => '5',
35650   'tab_parent' => 'admin/build/themes/settings',
35651   'tab_root' => 'admin/build/themes',
35652   'title' => 'Chameleon',
35653   'title_callback' => 't',
35654   'title_arguments' => '',
35655   'type' => '128',
35656   'block_callback' => '',
35657   'description' => '',
35658   'position' => '',
35659   'weight' => '0',
35660   'file' => 'modules/system/system.admin.inc',
35661 ))
35662 ->values(array(
35663   'path' => 'admin/build/themes/settings/garland',
35664   'load_functions' => '',
35665   'to_arg_functions' => '',
35666   'access_callback' => '_system_themes_access',
35667   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
35668   'page_callback' => 'drupal_get_form',
35669   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}',
35670   'fit' => '31',
35671   'number_parts' => '5',
35672   'tab_parent' => 'admin/build/themes/settings',
35673   'tab_root' => 'admin/build/themes',
35674   'title' => 'Garland',
35675   'title_callback' => 't',
35676   'title_arguments' => '',
35677   'type' => '128',
35678   'block_callback' => '',
35679   'description' => '',
35680   'position' => '',
35681   'weight' => '0',
35682   'file' => 'modules/system/system.admin.inc',
35683 ))
35684 ->values(array(
35685   'path' => 'admin/build/themes/settings/global',
35686   'load_functions' => '',
35687   'to_arg_functions' => '',
35688   'access_callback' => 'user_access',
35689   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
35690   'page_callback' => 'drupal_get_form',
35691   'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
35692   'fit' => '31',
35693   'number_parts' => '5',
35694   'tab_parent' => 'admin/build/themes/settings',
35695   'tab_root' => 'admin/build/themes',
35696   'title' => 'Global settings',
35697   'title_callback' => 't',
35698   'title_arguments' => '',
35699   'type' => '136',
35700   'block_callback' => '',
35701   'description' => '',
35702   'position' => '',
35703   'weight' => '-1',
35704   'file' => 'modules/system/system.admin.inc',
35705 ))
35706 ->values(array(
35707   'path' => 'admin/build/themes/settings/marvin',
35708   'load_functions' => '',
35709   'to_arg_functions' => '',
35710   'access_callback' => '_system_themes_access',
35711   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}',
35712   'page_callback' => 'drupal_get_form',
35713   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"marvin";}',
35714   'fit' => '31',
35715   'number_parts' => '5',
35716   'tab_parent' => 'admin/build/themes/settings',
35717   'tab_root' => 'admin/build/themes',
35718   'title' => 'Marvin',
35719   'title_callback' => 't',
35720   'title_arguments' => '',
35721   'type' => '128',
35722   'block_callback' => '',
35723   'description' => '',
35724   'position' => '',
35725   'weight' => '0',
35726   'file' => 'modules/system/system.admin.inc',
35727 ))
35728 ->values(array(
35729   'path' => 'admin/build/themes/settings/minnelli',
35730   'load_functions' => '',
35731   'to_arg_functions' => '',
35732   'access_callback' => '_system_themes_access',
35733   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:14:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}',
35734   'page_callback' => 'drupal_get_form',
35735   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:8:"minnelli";}',
35736   'fit' => '31',
35737   'number_parts' => '5',
35738   'tab_parent' => 'admin/build/themes/settings',
35739   'tab_root' => 'admin/build/themes',
35740   'title' => 'Minnelli',
35741   'title_callback' => 't',
35742   'title_arguments' => '',
35743   'type' => '128',
35744   'block_callback' => '',
35745   'description' => '',
35746   'position' => '',
35747   'weight' => '0',
35748   'file' => 'modules/system/system.admin.inc',
35749 ))
35750 ->values(array(
35751   'path' => 'admin/build/themes/settings/pushbutton',
35752   'load_functions' => '',
35753   'to_arg_functions' => '',
35754   'access_callback' => '_system_themes_access',
35755   'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
35756   'page_callback' => 'drupal_get_form',
35757   'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"pushbutton";}',
35758   'fit' => '31',
35759   'number_parts' => '5',
35760   'tab_parent' => 'admin/build/themes/settings',
35761   'tab_root' => 'admin/build/themes',
35762   'title' => 'Pushbutton',
35763   'title_callback' => 't',
35764   'title_arguments' => '',
35765   'type' => '128',
35766   'block_callback' => '',
35767   'description' => '',
35768   'position' => '',
35769   'weight' => '0',
35770   'file' => 'modules/system/system.admin.inc',
35771 ))
35772 ->values(array(
35773   'path' => 'admin/build/translate',
35774   'load_functions' => '',
35775   'to_arg_functions' => '',
35776   'access_callback' => 'user_access',
35777   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35778   'page_callback' => 'locale_inc_callback',
35779   'page_arguments' => 'a:1:{i:0;s:32:"locale_translate_overview_screen";}',
35780   'fit' => '7',
35781   'number_parts' => '3',
35782   'tab_parent' => '',
35783   'tab_root' => 'admin/build/translate',
35784   'title' => 'Translate interface',
35785   'title_callback' => 't',
35786   'title_arguments' => '',
35787   'type' => '6',
35788   'block_callback' => '',
35789   'description' => 'Translate the built in interface and optionally other text.',
35790   'position' => '',
35791   'weight' => '0',
35792   'file' => '',
35793 ))
35794 ->values(array(
35795   'path' => 'admin/build/translate/delete/%',
35796   'load_functions' => 'a:1:{i:4;N;}',
35797   'to_arg_functions' => '',
35798   'access_callback' => 'user_access',
35799   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35800   'page_callback' => 'locale_inc_callback',
35801   'page_arguments' => 'a:2:{i:0;s:28:"locale_translate_delete_page";i:1;i:4;}',
35802   'fit' => '30',
35803   'number_parts' => '5',
35804   'tab_parent' => '',
35805   'tab_root' => 'admin/build/translate/delete/%',
35806   'title' => 'Delete string',
35807   'title_callback' => 't',
35808   'title_arguments' => '',
35809   'type' => '4',
35810   'block_callback' => '',
35811   'description' => '',
35812   'position' => '',
35813   'weight' => '0',
35814   'file' => '',
35815 ))
35816 ->values(array(
35817   'path' => 'admin/build/translate/edit/%',
35818   'load_functions' => 'a:1:{i:4;N;}',
35819   'to_arg_functions' => '',
35820   'access_callback' => 'user_access',
35821   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35822   'page_callback' => 'locale_inc_callback',
35823   'page_arguments' => 'a:3:{i:0;s:15:"drupal_get_form";i:1;s:26:"locale_translate_edit_form";i:2;i:4;}',
35824   'fit' => '30',
35825   'number_parts' => '5',
35826   'tab_parent' => '',
35827   'tab_root' => 'admin/build/translate/edit/%',
35828   'title' => 'Edit string',
35829   'title_callback' => 't',
35830   'title_arguments' => '',
35831   'type' => '4',
35832   'block_callback' => '',
35833   'description' => '',
35834   'position' => '',
35835   'weight' => '0',
35836   'file' => '',
35837 ))
35838 ->values(array(
35839   'path' => 'admin/build/translate/export',
35840   'load_functions' => '',
35841   'to_arg_functions' => '',
35842   'access_callback' => 'user_access',
35843   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35844   'page_callback' => 'locale_inc_callback',
35845   'page_arguments' => 'a:1:{i:0;s:30:"locale_translate_export_screen";}',
35846   'fit' => '15',
35847   'number_parts' => '4',
35848   'tab_parent' => 'admin/build/translate',
35849   'tab_root' => 'admin/build/translate',
35850   'title' => 'Export',
35851   'title_callback' => 't',
35852   'title_arguments' => '',
35853   'type' => '128',
35854   'block_callback' => '',
35855   'description' => '',
35856   'position' => '',
35857   'weight' => '30',
35858   'file' => '',
35859 ))
35860 ->values(array(
35861   'path' => 'admin/build/translate/import',
35862   'load_functions' => '',
35863   'to_arg_functions' => '',
35864   'access_callback' => 'user_access',
35865   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35866   'page_callback' => 'locale_inc_callback',
35867   'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:28:"locale_translate_import_form";}',
35868   'fit' => '15',
35869   'number_parts' => '4',
35870   'tab_parent' => 'admin/build/translate',
35871   'tab_root' => 'admin/build/translate',
35872   'title' => 'Import',
35873   'title_callback' => 't',
35874   'title_arguments' => '',
35875   'type' => '128',
35876   'block_callback' => '',
35877   'description' => '',
35878   'position' => '',
35879   'weight' => '20',
35880   'file' => '',
35881 ))
35882 ->values(array(
35883   'path' => 'admin/build/translate/overview',
35884   'load_functions' => '',
35885   'to_arg_functions' => '',
35886   'access_callback' => 'user_access',
35887   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35888   'page_callback' => 'locale_inc_callback',
35889   'page_arguments' => 'a:1:{i:0;s:32:"locale_translate_overview_screen";}',
35890   'fit' => '15',
35891   'number_parts' => '4',
35892   'tab_parent' => 'admin/build/translate',
35893   'tab_root' => 'admin/build/translate',
35894   'title' => 'Overview',
35895   'title_callback' => 't',
35896   'title_arguments' => '',
35897   'type' => '136',
35898   'block_callback' => '',
35899   'description' => '',
35900   'position' => '',
35901   'weight' => '0',
35902   'file' => '',
35903 ))
35904 ->values(array(
35905   'path' => 'admin/build/translate/refresh',
35906   'load_functions' => '',
35907   'to_arg_functions' => '',
35908   'access_callback' => 'user_access',
35909   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35910   'page_callback' => 'i18nstrings_admin_refresh_page',
35911   'page_arguments' => 'a:0:{}',
35912   'fit' => '15',
35913   'number_parts' => '4',
35914   'tab_parent' => 'admin/build/translate',
35915   'tab_root' => 'admin/build/translate',
35916   'title' => 'Refresh',
35917   'title_callback' => 't',
35918   'title_arguments' => '',
35919   'type' => '128',
35920   'block_callback' => '',
35921   'description' => '',
35922   'position' => '',
35923   'weight' => '20',
35924   'file' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.admin.inc',
35925 ))
35926 ->values(array(
35927   'path' => 'admin/build/translate/search',
35928   'load_functions' => '',
35929   'to_arg_functions' => '',
35930   'access_callback' => 'user_access',
35931   'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}',
35932   'page_callback' => 'locale_inc_callback',
35933   'page_arguments' => 'a:1:{i:0;s:28:"locale_translate_seek_screen";}',
35934   'fit' => '15',
35935   'number_parts' => '4',
35936   'tab_parent' => 'admin/build/translate',
35937   'tab_root' => 'admin/build/translate',
35938   'title' => 'Search',
35939   'title_callback' => 't',
35940   'title_arguments' => '',
35941   'type' => '128',
35942   'block_callback' => '',
35943   'description' => '',
35944   'position' => '',
35945   'weight' => '10',
35946   'file' => '',
35947 ))
35948 ->values(array(
35949   'path' => 'admin/by-module',
35950   'load_functions' => '',
35951   'to_arg_functions' => '',
35952   'access_callback' => 'user_access',
35953   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
35954   'page_callback' => 'system_admin_by_module',
35955   'page_arguments' => 'a:0:{}',
35956   'fit' => '3',
35957   'number_parts' => '2',
35958   'tab_parent' => 'admin',
35959   'tab_root' => 'admin',
35960   'title' => 'By module',
35961   'title_callback' => 't',
35962   'title_arguments' => '',
35963   'type' => '128',
35964   'block_callback' => '',
35965   'description' => '',
35966   'position' => '',
35967   'weight' => '2',
35968   'file' => 'modules/system/system.admin.inc',
35969 ))
35970 ->values(array(
35971   'path' => 'admin/by-task',
35972   'load_functions' => '',
35973   'to_arg_functions' => '',
35974   'access_callback' => 'user_access',
35975   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
35976   'page_callback' => 'system_main_admin_page',
35977   'page_arguments' => 'a:0:{}',
35978   'fit' => '3',
35979   'number_parts' => '2',
35980   'tab_parent' => 'admin',
35981   'tab_root' => 'admin',
35982   'title' => 'By task',
35983   'title_callback' => 't',
35984   'title_arguments' => '',
35985   'type' => '136',
35986   'block_callback' => '',
35987   'description' => '',
35988   'position' => '',
35989   'weight' => '0',
35990   'file' => 'modules/system/system.admin.inc',
35991 ))
35992 ->values(array(
35993   'path' => 'admin/compact',
35994   'load_functions' => '',
35995   'to_arg_functions' => '',
35996   'access_callback' => 'user_access',
35997   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
35998   'page_callback' => 'system_admin_compact_page',
35999   'page_arguments' => 'a:0:{}',
36000   'fit' => '3',
36001   'number_parts' => '2',
36002   'tab_parent' => '',
36003   'tab_root' => 'admin/compact',
36004   'title' => 'Compact mode',
36005   'title_callback' => 't',
36006   'title_arguments' => '',
36007   'type' => '4',
36008   'block_callback' => '',
36009   'description' => '',
36010   'position' => '',
36011   'weight' => '0',
36012   'file' => 'modules/system/system.admin.inc',
36013 ))
36014 ->values(array(
36015   'path' => 'admin/content',
36016   'load_functions' => '',
36017   'to_arg_functions' => '',
36018   'access_callback' => 'user_access',
36019   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
36020   'page_callback' => 'system_admin_menu_block_page',
36021   'page_arguments' => 'a:0:{}',
36022   'fit' => '3',
36023   'number_parts' => '2',
36024   'tab_parent' => '',
36025   'tab_root' => 'admin/content',
36026   'title' => 'Content management',
36027   'title_callback' => 't',
36028   'title_arguments' => '',
36029   'type' => '6',
36030   'block_callback' => '',
36031   'description' => "Manage your site's content.",
36032   'position' => 'left',
36033   'weight' => '-10',
36034   'file' => 'modules/system/system.admin.inc',
36035 ))
36036 ->values(array(
36037   'path' => 'admin/content/aggregator',
36038   'load_functions' => '',
36039   'to_arg_functions' => '',
36040   'access_callback' => 'user_access',
36041   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
36042   'page_callback' => 'aggregator_admin_overview',
36043   'page_arguments' => 'a:0:{}',
36044   'fit' => '7',
36045   'number_parts' => '3',
36046   'tab_parent' => '',
36047   'tab_root' => 'admin/content/aggregator',
36048   'title' => 'Feed aggregator',
36049   'title_callback' => 't',
36050   'title_arguments' => '',
36051   'type' => '6',
36052   'block_callback' => '',
36053   'description' => "Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.",
36054   'position' => '',
36055   'weight' => '0',
36056   'file' => 'modules/aggregator/aggregator.admin.inc',
36057 ))
36058 ->values(array(
36059   'path' => 'admin/content/aggregator/add/category',
36060   'load_functions' => '',
36061   'to_arg_functions' => '',
36062   'access_callback' => 'user_access',
36063   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
36064   'page_callback' => 'drupal_get_form',
36065   'page_arguments' => 'a:1:{i:0;s:24:"aggregator_form_category";}',
36066   'fit' => '31',
36067   'number_parts' => '5',
36068   'tab_parent' => 'admin/content/aggregator',
36069   'tab_root' => 'admin/content/aggregator',
36070   'title' => 'Add category',
36071   'title_callback' => 't',
36072   'title_arguments' => '',
36073   'type' => '128',
36074   'block_callback' => '',
36075   'description' => '',
36076   'position' => '',
36077   'weight' => '0',
36078   'file' => 'modules/aggregator/aggregator.admin.inc',
36079 ))
36080 ->values(array(
36081   'path' => 'admin/content/aggregator/add/feed',
36082   'load_functions' => '',
36083   'to_arg_functions' => '',
36084   'access_callback' => 'user_access',
36085   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
36086   'page_callback' => 'drupal_get_form',
36087   'page_arguments' => 'a:1:{i:0;s:20:"aggregator_form_feed";}',
36088   'fit' => '31',
36089   'number_parts' => '5',
36090   'tab_parent' => 'admin/content/aggregator',
36091   'tab_root' => 'admin/content/aggregator',
36092   'title' => 'Add feed',
36093   'title_callback' => 't',
36094   'title_arguments' => '',
36095   'type' => '128',
36096   'block_callback' => '',
36097   'description' => '',
36098   'position' => '',
36099   'weight' => '0',
36100   'file' => 'modules/aggregator/aggregator.admin.inc',
36101 ))
36102 ->values(array(
36103   'path' => 'admin/content/aggregator/edit/category/%',
36104   'load_functions' => 'a:1:{i:5;s:24:"aggregator_category_load";}',
36105   'to_arg_functions' => '',
36106   'access_callback' => 'user_access',
36107   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
36108   'page_callback' => 'drupal_get_form',
36109   'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:5;}',
36110   'fit' => '62',
36111   'number_parts' => '6',
36112   'tab_parent' => '',
36113   'tab_root' => 'admin/content/aggregator/edit/category/%',
36114   'title' => 'Edit category',
36115   'title_callback' => 't',
36116   'title_arguments' => '',
36117   'type' => '4',
36118   'block_callback' => '',
36119   'description' => '',
36120   'position' => '',
36121   'weight' => '0',
36122   'file' => 'modules/aggregator/aggregator.admin.inc',
36123 ))
36124 ->values(array(
36125   'path' => 'admin/content/aggregator/edit/feed/%',
36126   'load_functions' => 'a:1:{i:5;s:20:"aggregator_feed_load";}',
36127   'to_arg_functions' => '',
36128   'access_callback' => 'user_access',
36129   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
36130   'page_callback' => 'drupal_get_form',
36131   'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:5;}',
36132   'fit' => '62',
36133   'number_parts' => '6',
36134   'tab_parent' => '',
36135   'tab_root' => 'admin/content/aggregator/edit/feed/%',
36136   'title' => 'Edit feed',
36137   'title_callback' => 't',
36138   'title_arguments' => '',
36139   'type' => '4',
36140   'block_callback' => '',
36141   'description' => '',
36142   'position' => '',
36143   'weight' => '0',
36144   'file' => 'modules/aggregator/aggregator.admin.inc',
36145 ))
36146 ->values(array(
36147   'path' => 'admin/content/aggregator/list',
36148   'load_functions' => '',
36149   'to_arg_functions' => '',
36150   'access_callback' => 'user_access',
36151   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
36152   'page_callback' => 'aggregator_admin_overview',
36153   'page_arguments' => 'a:0:{}',
36154   'fit' => '15',
36155   'number_parts' => '4',
36156   'tab_parent' => 'admin/content/aggregator',
36157   'tab_root' => 'admin/content/aggregator',
36158   'title' => 'List',
36159   'title_callback' => 't',
36160   'title_arguments' => '',
36161   'type' => '136',
36162   'block_callback' => '',
36163   'description' => '',
36164   'position' => '',
36165   'weight' => '-10',
36166   'file' => 'modules/aggregator/aggregator.admin.inc',
36167 ))
36168 ->values(array(
36169   'path' => 'admin/content/aggregator/remove/%',
36170   'load_functions' => 'a:1:{i:4;s:20:"aggregator_feed_load";}',
36171   'to_arg_functions' => '',
36172   'access_callback' => 'user_access',
36173   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
36174   'page_callback' => 'drupal_get_form',
36175   'page_arguments' => 'a:2:{i:0;s:28:"aggregator_admin_remove_feed";i:1;i:4;}',
36176   'fit' => '30',
36177   'number_parts' => '5',
36178   'tab_parent' => '',
36179   'tab_root' => 'admin/content/aggregator/remove/%',
36180   'title' => 'Remove items',
36181   'title_callback' => 't',
36182   'title_arguments' => '',
36183   'type' => '4',
36184   'block_callback' => '',
36185   'description' => '',
36186   'position' => '',
36187   'weight' => '0',
36188   'file' => 'modules/aggregator/aggregator.admin.inc',
36189 ))
36190 ->values(array(
36191   'path' => 'admin/content/aggregator/settings',
36192   'load_functions' => '',
36193   'to_arg_functions' => '',
36194   'access_callback' => 'user_access',
36195   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
36196   'page_callback' => 'drupal_get_form',
36197   'page_arguments' => 'a:1:{i:0;s:25:"aggregator_admin_settings";}',
36198   'fit' => '15',
36199   'number_parts' => '4',
36200   'tab_parent' => 'admin/content/aggregator',
36201   'tab_root' => 'admin/content/aggregator',
36202   'title' => 'Settings',
36203   'title_callback' => 't',
36204   'title_arguments' => '',
36205   'type' => '128',
36206   'block_callback' => '',
36207   'description' => '',
36208   'position' => '',
36209   'weight' => '10',
36210   'file' => 'modules/aggregator/aggregator.admin.inc',
36211 ))
36212 ->values(array(
36213   'path' => 'admin/content/aggregator/update/%',
36214   'load_functions' => 'a:1:{i:4;s:20:"aggregator_feed_load";}',
36215   'to_arg_functions' => '',
36216   'access_callback' => 'user_access',
36217   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
36218   'page_callback' => 'aggregator_admin_refresh_feed',
36219   'page_arguments' => 'a:1:{i:0;i:4;}',
36220   'fit' => '30',
36221   'number_parts' => '5',
36222   'tab_parent' => '',
36223   'tab_root' => 'admin/content/aggregator/update/%',
36224   'title' => 'Update items',
36225   'title_callback' => 't',
36226   'title_arguments' => '',
36227   'type' => '4',
36228   'block_callback' => '',
36229   'description' => '',
36230   'position' => '',
36231   'weight' => '0',
36232   'file' => 'modules/aggregator/aggregator.admin.inc',
36233 ))
36234 ->values(array(
36235   'path' => 'admin/content/book',
36236   'load_functions' => '',
36237   'to_arg_functions' => '',
36238   'access_callback' => 'user_access',
36239   'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}',
36240   'page_callback' => 'book_admin_overview',
36241   'page_arguments' => 'a:0:{}',
36242   'fit' => '7',
36243   'number_parts' => '3',
36244   'tab_parent' => '',
36245   'tab_root' => 'admin/content/book',
36246   'title' => 'Books',
36247   'title_callback' => 't',
36248   'title_arguments' => '',
36249   'type' => '6',
36250   'block_callback' => '',
36251   'description' => "Manage your site's book outlines.",
36252   'position' => '',
36253   'weight' => '0',
36254   'file' => 'modules/book/book.admin.inc',
36255 ))
36256 ->values(array(
36257   'path' => 'admin/content/book/%',
36258   'load_functions' => 'a:1:{i:3;s:9:"node_load";}',
36259   'to_arg_functions' => '',
36260   'access_callback' => '_book_outline_access',
36261   'access_arguments' => 'a:1:{i:0;i:3;}',
36262   'page_callback' => 'drupal_get_form',
36263   'page_arguments' => 'a:2:{i:0;s:15:"book_admin_edit";i:1;i:3;}',
36264   'fit' => '14',
36265   'number_parts' => '4',
36266   'tab_parent' => '',
36267   'tab_root' => 'admin/content/book/%',
36268   'title' => 'Re-order book pages and change titles',
36269   'title_callback' => 't',
36270   'title_arguments' => '',
36271   'type' => '4',
36272   'block_callback' => '',
36273   'description' => '',
36274   'position' => '',
36275   'weight' => '0',
36276   'file' => 'modules/book/book.admin.inc',
36277 ))
36278 ->values(array(
36279   'path' => 'admin/content/book/list',
36280   'load_functions' => '',
36281   'to_arg_functions' => '',
36282   'access_callback' => 'user_access',
36283   'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}',
36284   'page_callback' => 'book_admin_overview',
36285   'page_arguments' => 'a:0:{}',
36286   'fit' => '15',
36287   'number_parts' => '4',
36288   'tab_parent' => 'admin/content/book',
36289   'tab_root' => 'admin/content/book',
36290   'title' => 'List',
36291   'title_callback' => 't',
36292   'title_arguments' => '',
36293   'type' => '136',
36294   'block_callback' => '',
36295   'description' => '',
36296   'position' => '',
36297   'weight' => '0',
36298   'file' => 'modules/book/book.admin.inc',
36299 ))
36300 ->values(array(
36301   'path' => 'admin/content/book/settings',
36302   'load_functions' => '',
36303   'to_arg_functions' => '',
36304   'access_callback' => 'user_access',
36305   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
36306   'page_callback' => 'drupal_get_form',
36307   'page_arguments' => 'a:1:{i:0;s:19:"book_admin_settings";}',
36308   'fit' => '15',
36309   'number_parts' => '4',
36310   'tab_parent' => 'admin/content/book',
36311   'tab_root' => 'admin/content/book',
36312   'title' => 'Settings',
36313   'title_callback' => 't',
36314   'title_arguments' => '',
36315   'type' => '128',
36316   'block_callback' => '',
36317   'description' => '',
36318   'position' => '',
36319   'weight' => '8',
36320   'file' => 'modules/book/book.admin.inc',
36321 ))
36322 ->values(array(
36323   'path' => 'admin/content/comment',
36324   'load_functions' => '',
36325   'to_arg_functions' => '',
36326   'access_callback' => 'user_access',
36327   'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
36328   'page_callback' => 'comment_admin',
36329   'page_arguments' => 'a:0:{}',
36330   'fit' => '7',
36331   'number_parts' => '3',
36332   'tab_parent' => '',
36333   'tab_root' => 'admin/content/comment',
36334   'title' => 'Comments',
36335   'title_callback' => 't',
36336   'title_arguments' => '',
36337   'type' => '6',
36338   'block_callback' => '',
36339   'description' => 'List and edit site comments and the comment moderation queue.',
36340   'position' => '',
36341   'weight' => '0',
36342   'file' => 'modules/comment/comment.admin.inc',
36343 ))
36344 ->values(array(
36345   'path' => 'admin/content/comment/approval',
36346   'load_functions' => '',
36347   'to_arg_functions' => '',
36348   'access_callback' => 'user_access',
36349   'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
36350   'page_callback' => 'comment_admin',
36351   'page_arguments' => 'a:1:{i:0;s:8:"approval";}',
36352   'fit' => '15',
36353   'number_parts' => '4',
36354   'tab_parent' => 'admin/content/comment',
36355   'tab_root' => 'admin/content/comment',
36356   'title' => 'Approval queue',
36357   'title_callback' => 't',
36358   'title_arguments' => '',
36359   'type' => '128',
36360   'block_callback' => '',
36361   'description' => '',
36362   'position' => '',
36363   'weight' => '0',
36364   'file' => 'modules/comment/comment.admin.inc',
36365 ))
36366 ->values(array(
36367   'path' => 'admin/content/comment/new',
36368   'load_functions' => '',
36369   'to_arg_functions' => '',
36370   'access_callback' => 'user_access',
36371   'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
36372   'page_callback' => 'comment_admin',
36373   'page_arguments' => 'a:0:{}',
36374   'fit' => '15',
36375   'number_parts' => '4',
36376   'tab_parent' => 'admin/content/comment',
36377   'tab_root' => 'admin/content/comment',
36378   'title' => 'Published comments',
36379   'title_callback' => 't',
36380   'title_arguments' => '',
36381   'type' => '136',
36382   'block_callback' => '',
36383   'description' => '',
36384   'position' => '',
36385   'weight' => '-10',
36386   'file' => 'modules/comment/comment.admin.inc',
36387 ))
36388 ->values(array(
36389   'path' => 'admin/content/forum',
36390   'load_functions' => '',
36391   'to_arg_functions' => '',
36392   'access_callback' => 'user_access',
36393   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36394   'page_callback' => 'drupal_get_form',
36395   'page_arguments' => 'a:1:{i:0;s:14:"forum_overview";}',
36396   'fit' => '7',
36397   'number_parts' => '3',
36398   'tab_parent' => '',
36399   'tab_root' => 'admin/content/forum',
36400   'title' => 'Forums',
36401   'title_callback' => 't',
36402   'title_arguments' => '',
36403   'type' => '6',
36404   'block_callback' => '',
36405   'description' => 'Control forums and their hierarchy and change forum settings.',
36406   'position' => '',
36407   'weight' => '0',
36408   'file' => 'modules/forum/forum.admin.inc',
36409 ))
36410 ->values(array(
36411   'path' => 'admin/content/forum/add/container',
36412   'load_functions' => '',
36413   'to_arg_functions' => '',
36414   'access_callback' => 'user_access',
36415   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36416   'page_callback' => 'forum_form_main',
36417   'page_arguments' => 'a:1:{i:0;s:9:"container";}',
36418   'fit' => '31',
36419   'number_parts' => '5',
36420   'tab_parent' => 'admin/content/forum',
36421   'tab_root' => 'admin/content/forum',
36422   'title' => 'Add container',
36423   'title_callback' => 't',
36424   'title_arguments' => '',
36425   'type' => '128',
36426   'block_callback' => '',
36427   'description' => '',
36428   'position' => '',
36429   'weight' => '0',
36430   'file' => 'modules/forum/forum.admin.inc',
36431 ))
36432 ->values(array(
36433   'path' => 'admin/content/forum/add/forum',
36434   'load_functions' => '',
36435   'to_arg_functions' => '',
36436   'access_callback' => 'user_access',
36437   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36438   'page_callback' => 'forum_form_main',
36439   'page_arguments' => 'a:1:{i:0;s:5:"forum";}',
36440   'fit' => '31',
36441   'number_parts' => '5',
36442   'tab_parent' => 'admin/content/forum',
36443   'tab_root' => 'admin/content/forum',
36444   'title' => 'Add forum',
36445   'title_callback' => 't',
36446   'title_arguments' => '',
36447   'type' => '128',
36448   'block_callback' => '',
36449   'description' => '',
36450   'position' => '',
36451   'weight' => '0',
36452   'file' => 'modules/forum/forum.admin.inc',
36453 ))
36454 ->values(array(
36455   'path' => 'admin/content/forum/edit/%',
36456   'load_functions' => 'a:1:{i:4;s:15:"forum_term_load";}',
36457   'to_arg_functions' => '',
36458   'access_callback' => 'user_access',
36459   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36460   'page_callback' => 'forum_form_main',
36461   'page_arguments' => 'a:0:{}',
36462   'fit' => '30',
36463   'number_parts' => '5',
36464   'tab_parent' => '',
36465   'tab_root' => 'admin/content/forum/edit/%',
36466   'title' => '',
36467   'title_callback' => 't',
36468   'title_arguments' => '',
36469   'type' => '4',
36470   'block_callback' => '',
36471   'description' => '',
36472   'position' => '',
36473   'weight' => '0',
36474   'file' => 'modules/forum/forum.admin.inc',
36475 ))
36476 ->values(array(
36477   'path' => 'admin/content/forum/edit/container/%',
36478   'load_functions' => 'a:1:{i:5;s:15:"forum_term_load";}',
36479   'to_arg_functions' => '',
36480   'access_callback' => 'user_access',
36481   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36482   'page_callback' => 'forum_form_main',
36483   'page_arguments' => 'a:2:{i:0;s:9:"container";i:1;i:5;}',
36484   'fit' => '62',
36485   'number_parts' => '6',
36486   'tab_parent' => '',
36487   'tab_root' => 'admin/content/forum/edit/container/%',
36488   'title' => 'Edit container',
36489   'title_callback' => 't',
36490   'title_arguments' => '',
36491   'type' => '4',
36492   'block_callback' => '',
36493   'description' => '',
36494   'position' => '',
36495   'weight' => '0',
36496   'file' => 'modules/forum/forum.admin.inc',
36497 ))
36498 ->values(array(
36499   'path' => 'admin/content/forum/edit/forum/%',
36500   'load_functions' => 'a:1:{i:5;s:15:"forum_term_load";}',
36501   'to_arg_functions' => '',
36502   'access_callback' => 'user_access',
36503   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36504   'page_callback' => 'forum_form_main',
36505   'page_arguments' => 'a:2:{i:0;s:5:"forum";i:1;i:5;}',
36506   'fit' => '62',
36507   'number_parts' => '6',
36508   'tab_parent' => '',
36509   'tab_root' => 'admin/content/forum/edit/forum/%',
36510   'title' => 'Edit forum',
36511   'title_callback' => 't',
36512   'title_arguments' => '',
36513   'type' => '4',
36514   'block_callback' => '',
36515   'description' => '',
36516   'position' => '',
36517   'weight' => '0',
36518   'file' => 'modules/forum/forum.admin.inc',
36519 ))
36520 ->values(array(
36521   'path' => 'admin/content/forum/list',
36522   'load_functions' => '',
36523   'to_arg_functions' => '',
36524   'access_callback' => 'user_access',
36525   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36526   'page_callback' => 'drupal_get_form',
36527   'page_arguments' => 'a:1:{i:0;s:14:"forum_overview";}',
36528   'fit' => '15',
36529   'number_parts' => '4',
36530   'tab_parent' => 'admin/content/forum',
36531   'tab_root' => 'admin/content/forum',
36532   'title' => 'List',
36533   'title_callback' => 't',
36534   'title_arguments' => '',
36535   'type' => '136',
36536   'block_callback' => '',
36537   'description' => '',
36538   'position' => '',
36539   'weight' => '-10',
36540   'file' => 'modules/forum/forum.admin.inc',
36541 ))
36542 ->values(array(
36543   'path' => 'admin/content/forum/settings',
36544   'load_functions' => '',
36545   'to_arg_functions' => '',
36546   'access_callback' => 'user_access',
36547   'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}',
36548   'page_callback' => 'drupal_get_form',
36549   'page_arguments' => 'a:1:{i:0;s:20:"forum_admin_settings";}',
36550   'fit' => '15',
36551   'number_parts' => '4',
36552   'tab_parent' => 'admin/content/forum',
36553   'tab_root' => 'admin/content/forum',
36554   'title' => 'Settings',
36555   'title_callback' => 't',
36556   'title_arguments' => '',
36557   'type' => '128',
36558   'block_callback' => '',
36559   'description' => '',
36560   'position' => '',
36561   'weight' => '5',
36562   'file' => 'modules/forum/forum.admin.inc',
36563 ))
36564 ->values(array(
36565   'path' => 'admin/content/node',
36566   'load_functions' => '',
36567   'to_arg_functions' => '',
36568   'access_callback' => 'user_access',
36569   'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
36570   'page_callback' => 'drupal_get_form',
36571   'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
36572   'fit' => '7',
36573   'number_parts' => '3',
36574   'tab_parent' => '',
36575   'tab_root' => 'admin/content/node',
36576   'title' => 'Content',
36577   'title_callback' => 't',
36578   'title_arguments' => '',
36579   'type' => '6',
36580   'block_callback' => '',
36581   'description' => "View, edit, and delete your site's content.",
36582   'position' => '',
36583   'weight' => '0',
36584   'file' => 'modules/node/node.admin.inc',
36585 ))
36586 ->values(array(
36587   'path' => 'admin/content/node-settings',
36588   'load_functions' => '',
36589   'to_arg_functions' => '',
36590   'access_callback' => 'user_access',
36591   'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
36592   'page_callback' => 'drupal_get_form',
36593   'page_arguments' => 'a:1:{i:0;s:14:"node_configure";}',
36594   'fit' => '7',
36595   'number_parts' => '3',
36596   'tab_parent' => '',
36597   'tab_root' => 'admin/content/node-settings',
36598   'title' => 'Post settings',
36599   'title_callback' => 't',
36600   'title_arguments' => '',
36601   'type' => '6',
36602   'block_callback' => '',
36603   'description' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.',
36604   'position' => '',
36605   'weight' => '0',
36606   'file' => 'modules/node/node.admin.inc',
36607 ))
36608 ->values(array(
36609   'path' => 'admin/content/node-settings/rebuild',
36610   'load_functions' => '',
36611   'to_arg_functions' => '',
36612   'access_callback' => 'user_access',
36613   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
36614   'page_callback' => 'drupal_get_form',
36615   'page_arguments' => 'a:1:{i:0;s:30:"node_configure_rebuild_confirm";}',
36616   'fit' => '15',
36617   'number_parts' => '4',
36618   'tab_parent' => '',
36619   'tab_root' => 'admin/content/node-settings/rebuild',
36620   'title' => 'Rebuild permissions',
36621   'title_callback' => 't',
36622   'title_arguments' => '',
36623   'type' => '4',
36624   'block_callback' => '',
36625   'description' => '',
36626   'position' => '',
36627   'weight' => '0',
36628   'file' => 'modules/node/node.admin.inc',
36629 ))
36630 ->values(array(
36631   'path' => 'admin/content/node-type/article',
36632   'load_functions' => '',
36633   'to_arg_functions' => '',
36634   'access_callback' => 'user_access',
36635   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36636   'page_callback' => 'drupal_get_form',
36637   'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"article";s:4:"name";s:7:"Article";s:6:"module";s:4:"node";s:11:"description";s:34:"An <em>article</em>, content type.";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:5:"Title";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:5:"story";}}',
36638   'fit' => '15',
36639   'number_parts' => '4',
36640   'tab_parent' => '',
36641   'tab_root' => 'admin/content/node-type/article',
36642   'title' => 'Article',
36643   'title_callback' => 't',
36644   'title_arguments' => '',
36645   'type' => '4',
36646   'block_callback' => '',
36647   'description' => '',
36648   'position' => '',
36649   'weight' => '0',
36650   'file' => 'modules/node/content_types.inc',
36651 ))
36652 ->values(array(
36653   'path' => 'admin/content/node-type/article/delete',
36654   'load_functions' => '',
36655   'to_arg_functions' => '',
36656   'access_callback' => 'user_access',
36657   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36658   'page_callback' => 'drupal_get_form',
36659   'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"article";s:4:"name";s:7:"Article";s:6:"module";s:4:"node";s:11:"description";s:34:"An <em>article</em>, content type.";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:5:"Title";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:5:"story";}}',
36660   'fit' => '31',
36661   'number_parts' => '5',
36662   'tab_parent' => '',
36663   'tab_root' => 'admin/content/node-type/article/delete',
36664   'title' => 'Delete',
36665   'title_callback' => 't',
36666   'title_arguments' => '',
36667   'type' => '4',
36668   'block_callback' => '',
36669   'description' => '',
36670   'position' => '',
36671   'weight' => '0',
36672   'file' => 'modules/node/content_types.inc',
36673 ))
36674 ->values(array(
36675   'path' => 'admin/content/node-type/article/display',
36676   'load_functions' => '',
36677   'to_arg_functions' => '',
36678   'access_callback' => 'user_access',
36679   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36680   'page_callback' => 'drupal_get_form',
36681   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";}',
36682   'fit' => '31',
36683   'number_parts' => '5',
36684   'tab_parent' => 'admin/content/node-type/article',
36685   'tab_root' => 'admin/content/node-type/article',
36686   'title' => 'Display fields',
36687   'title_callback' => 't',
36688   'title_arguments' => '',
36689   'type' => '128',
36690   'block_callback' => '',
36691   'description' => '',
36692   'position' => '',
36693   'weight' => '2',
36694   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36695 ))
36696 ->values(array(
36697   'path' => 'admin/content/node-type/article/display/basic',
36698   'load_functions' => '',
36699   'to_arg_functions' => '',
36700   'access_callback' => 'user_access',
36701   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36702   'page_callback' => 'drupal_get_form',
36703   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";i:2;s:5:"basic";}',
36704   'fit' => '63',
36705   'number_parts' => '6',
36706   'tab_parent' => 'admin/content/node-type/article/display',
36707   'tab_root' => 'admin/content/node-type/article',
36708   'title' => 'Basic',
36709   'title_callback' => 't',
36710   'title_arguments' => '',
36711   'type' => '136',
36712   'block_callback' => '',
36713   'description' => '',
36714   'position' => '',
36715   'weight' => '0',
36716   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36717 ))
36718 ->values(array(
36719   'path' => 'admin/content/node-type/article/display/print',
36720   'load_functions' => '',
36721   'to_arg_functions' => '',
36722   'access_callback' => 'user_access',
36723   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36724   'page_callback' => 'drupal_get_form',
36725   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";i:2;s:5:"print";}',
36726   'fit' => '63',
36727   'number_parts' => '6',
36728   'tab_parent' => 'admin/content/node-type/article/display',
36729   'tab_root' => 'admin/content/node-type/article',
36730   'title' => 'Print',
36731   'title_callback' => 't',
36732   'title_arguments' => '',
36733   'type' => '128',
36734   'block_callback' => '',
36735   'description' => '',
36736   'position' => '',
36737   'weight' => '1',
36738   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36739 ))
36740 ->values(array(
36741   'path' => 'admin/content/node-type/article/display/rss',
36742   'load_functions' => '',
36743   'to_arg_functions' => '',
36744   'access_callback' => 'user_access',
36745   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36746   'page_callback' => 'drupal_get_form',
36747   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";i:2;s:3:"rss";}',
36748   'fit' => '63',
36749   'number_parts' => '6',
36750   'tab_parent' => 'admin/content/node-type/article/display',
36751   'tab_root' => 'admin/content/node-type/article',
36752   'title' => 'RSS',
36753   'title_callback' => 't',
36754   'title_arguments' => '',
36755   'type' => '128',
36756   'block_callback' => '',
36757   'description' => '',
36758   'position' => '',
36759   'weight' => '1',
36760   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36761 ))
36762 ->values(array(
36763   'path' => 'admin/content/node-type/article/edit',
36764   'load_functions' => '',
36765   'to_arg_functions' => '',
36766   'access_callback' => 'user_access',
36767   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36768   'page_callback' => 'drupal_get_form',
36769   'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"article";s:4:"name";s:7:"Article";s:6:"module";s:4:"node";s:11:"description";s:34:"An <em>article</em>, content type.";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:5:"Title";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:5:"story";}}',
36770   'fit' => '31',
36771   'number_parts' => '5',
36772   'tab_parent' => 'admin/content/node-type/article',
36773   'tab_root' => 'admin/content/node-type/article',
36774   'title' => 'Edit',
36775   'title_callback' => 't',
36776   'title_arguments' => '',
36777   'type' => '136',
36778   'block_callback' => '',
36779   'description' => '',
36780   'position' => '',
36781   'weight' => '0',
36782   'file' => 'modules/node/content_types.inc',
36783 ))
36784 ->values(array(
36785   'path' => 'admin/content/node-type/article/fields',
36786   'load_functions' => '',
36787   'to_arg_functions' => '',
36788   'access_callback' => 'user_access',
36789   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36790   'page_callback' => 'drupal_get_form',
36791   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:7:"article";}',
36792   'fit' => '31',
36793   'number_parts' => '5',
36794   'tab_parent' => 'admin/content/node-type/article',
36795   'tab_root' => 'admin/content/node-type/article',
36796   'title' => 'Manage fields',
36797   'title_callback' => 't',
36798   'title_arguments' => '',
36799   'type' => '128',
36800   'block_callback' => '',
36801   'description' => '',
36802   'position' => '',
36803   'weight' => '1',
36804   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36805 ))
36806 ->values(array(
36807   'path' => 'admin/content/node-type/company',
36808   'load_functions' => '',
36809   'to_arg_functions' => '',
36810   'access_callback' => 'user_access',
36811   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36812   'page_callback' => 'drupal_get_form',
36813   'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"company";s:4:"name";s:7:"Company";s:6:"module";s:4:"node";s:11:"description";s:17:"Company node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:11:"Description";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"0";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:7:"company";}}',
36814   'fit' => '15',
36815   'number_parts' => '4',
36816   'tab_parent' => '',
36817   'tab_root' => 'admin/content/node-type/company',
36818   'title' => 'Company',
36819   'title_callback' => 't',
36820   'title_arguments' => '',
36821   'type' => '4',
36822   'block_callback' => '',
36823   'description' => '',
36824   'position' => '',
36825   'weight' => '0',
36826   'file' => 'modules/node/content_types.inc',
36827 ))
36828 ->values(array(
36829   'path' => 'admin/content/node-type/company/delete',
36830   'load_functions' => '',
36831   'to_arg_functions' => '',
36832   'access_callback' => 'user_access',
36833   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36834   'page_callback' => 'drupal_get_form',
36835   'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"company";s:4:"name";s:7:"Company";s:6:"module";s:4:"node";s:11:"description";s:17:"Company node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:11:"Description";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"0";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:7:"company";}}',
36836   'fit' => '31',
36837   'number_parts' => '5',
36838   'tab_parent' => '',
36839   'tab_root' => 'admin/content/node-type/company/delete',
36840   'title' => 'Delete',
36841   'title_callback' => 't',
36842   'title_arguments' => '',
36843   'type' => '4',
36844   'block_callback' => '',
36845   'description' => '',
36846   'position' => '',
36847   'weight' => '0',
36848   'file' => 'modules/node/content_types.inc',
36849 ))
36850 ->values(array(
36851   'path' => 'admin/content/node-type/company/display',
36852   'load_functions' => '',
36853   'to_arg_functions' => '',
36854   'access_callback' => 'user_access',
36855   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36856   'page_callback' => 'drupal_get_form',
36857   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";}',
36858   'fit' => '31',
36859   'number_parts' => '5',
36860   'tab_parent' => 'admin/content/node-type/company',
36861   'tab_root' => 'admin/content/node-type/company',
36862   'title' => 'Display fields',
36863   'title_callback' => 't',
36864   'title_arguments' => '',
36865   'type' => '128',
36866   'block_callback' => '',
36867   'description' => '',
36868   'position' => '',
36869   'weight' => '2',
36870   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36871 ))
36872 ->values(array(
36873   'path' => 'admin/content/node-type/company/display/basic',
36874   'load_functions' => '',
36875   'to_arg_functions' => '',
36876   'access_callback' => 'user_access',
36877   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36878   'page_callback' => 'drupal_get_form',
36879   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";i:2;s:5:"basic";}',
36880   'fit' => '63',
36881   'number_parts' => '6',
36882   'tab_parent' => 'admin/content/node-type/company/display',
36883   'tab_root' => 'admin/content/node-type/company',
36884   'title' => 'Basic',
36885   'title_callback' => 't',
36886   'title_arguments' => '',
36887   'type' => '136',
36888   'block_callback' => '',
36889   'description' => '',
36890   'position' => '',
36891   'weight' => '0',
36892   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36893 ))
36894 ->values(array(
36895   'path' => 'admin/content/node-type/company/display/print',
36896   'load_functions' => '',
36897   'to_arg_functions' => '',
36898   'access_callback' => 'user_access',
36899   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36900   'page_callback' => 'drupal_get_form',
36901   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";i:2;s:5:"print";}',
36902   'fit' => '63',
36903   'number_parts' => '6',
36904   'tab_parent' => 'admin/content/node-type/company/display',
36905   'tab_root' => 'admin/content/node-type/company',
36906   'title' => 'Print',
36907   'title_callback' => 't',
36908   'title_arguments' => '',
36909   'type' => '128',
36910   'block_callback' => '',
36911   'description' => '',
36912   'position' => '',
36913   'weight' => '1',
36914   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36915 ))
36916 ->values(array(
36917   'path' => 'admin/content/node-type/company/display/rss',
36918   'load_functions' => '',
36919   'to_arg_functions' => '',
36920   'access_callback' => 'user_access',
36921   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36922   'page_callback' => 'drupal_get_form',
36923   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";i:2;s:3:"rss";}',
36924   'fit' => '63',
36925   'number_parts' => '6',
36926   'tab_parent' => 'admin/content/node-type/company/display',
36927   'tab_root' => 'admin/content/node-type/company',
36928   'title' => 'RSS',
36929   'title_callback' => 't',
36930   'title_arguments' => '',
36931   'type' => '128',
36932   'block_callback' => '',
36933   'description' => '',
36934   'position' => '',
36935   'weight' => '1',
36936   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36937 ))
36938 ->values(array(
36939   'path' => 'admin/content/node-type/company/edit',
36940   'load_functions' => '',
36941   'to_arg_functions' => '',
36942   'access_callback' => 'user_access',
36943   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36944   'page_callback' => 'drupal_get_form',
36945   'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"company";s:4:"name";s:7:"Company";s:6:"module";s:4:"node";s:11:"description";s:17:"Company node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:11:"Description";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"0";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:7:"company";}}',
36946   'fit' => '31',
36947   'number_parts' => '5',
36948   'tab_parent' => 'admin/content/node-type/company',
36949   'tab_root' => 'admin/content/node-type/company',
36950   'title' => 'Edit',
36951   'title_callback' => 't',
36952   'title_arguments' => '',
36953   'type' => '136',
36954   'block_callback' => '',
36955   'description' => '',
36956   'position' => '',
36957   'weight' => '0',
36958   'file' => 'modules/node/content_types.inc',
36959 ))
36960 ->values(array(
36961   'path' => 'admin/content/node-type/company/fields',
36962   'load_functions' => '',
36963   'to_arg_functions' => '',
36964   'access_callback' => 'user_access',
36965   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36966   'page_callback' => 'drupal_get_form',
36967   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:7:"company";}',
36968   'fit' => '31',
36969   'number_parts' => '5',
36970   'tab_parent' => 'admin/content/node-type/company',
36971   'tab_root' => 'admin/content/node-type/company',
36972   'title' => 'Manage fields',
36973   'title_callback' => 't',
36974   'title_arguments' => '',
36975   'type' => '128',
36976   'block_callback' => '',
36977   'description' => '',
36978   'position' => '',
36979   'weight' => '1',
36980   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
36981 ))
36982 ->values(array(
36983   'path' => 'admin/content/node-type/employee',
36984   'load_functions' => '',
36985   'to_arg_functions' => '',
36986   'access_callback' => 'user_access',
36987   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
36988   'page_callback' => 'drupal_get_form',
36989   'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:8:"employee";s:4:"name";s:8:"Employee";s:6:"module";s:4:"node";s:11:"description";s:18:"Employee node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:3:"Bio";s:14:"min_word_count";s:2:"20";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:8:"employee";}}',
36990   'fit' => '15',
36991   'number_parts' => '4',
36992   'tab_parent' => '',
36993   'tab_root' => 'admin/content/node-type/employee',
36994   'title' => 'Employee',
36995   'title_callback' => 't',
36996   'title_arguments' => '',
36997   'type' => '4',
36998   'block_callback' => '',
36999   'description' => '',
37000   'position' => '',
37001   'weight' => '0',
37002   'file' => 'modules/node/content_types.inc',
37003 ))
37004 ->values(array(
37005   'path' => 'admin/content/node-type/employee/delete',
37006   'load_functions' => '',
37007   'to_arg_functions' => '',
37008   'access_callback' => 'user_access',
37009   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37010   'page_callback' => 'drupal_get_form',
37011   'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:8:"employee";s:4:"name";s:8:"Employee";s:6:"module";s:4:"node";s:11:"description";s:18:"Employee node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:3:"Bio";s:14:"min_word_count";s:2:"20";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:8:"employee";}}',
37012   'fit' => '31',
37013   'number_parts' => '5',
37014   'tab_parent' => '',
37015   'tab_root' => 'admin/content/node-type/employee/delete',
37016   'title' => 'Delete',
37017   'title_callback' => 't',
37018   'title_arguments' => '',
37019   'type' => '4',
37020   'block_callback' => '',
37021   'description' => '',
37022   'position' => '',
37023   'weight' => '0',
37024   'file' => 'modules/node/content_types.inc',
37025 ))
37026 ->values(array(
37027   'path' => 'admin/content/node-type/employee/display',
37028   'load_functions' => '',
37029   'to_arg_functions' => '',
37030   'access_callback' => 'user_access',
37031   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37032   'page_callback' => 'drupal_get_form',
37033   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";}',
37034   'fit' => '31',
37035   'number_parts' => '5',
37036   'tab_parent' => 'admin/content/node-type/employee',
37037   'tab_root' => 'admin/content/node-type/employee',
37038   'title' => 'Display fields',
37039   'title_callback' => 't',
37040   'title_arguments' => '',
37041   'type' => '128',
37042   'block_callback' => '',
37043   'description' => '',
37044   'position' => '',
37045   'weight' => '2',
37046   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37047 ))
37048 ->values(array(
37049   'path' => 'admin/content/node-type/employee/display/basic',
37050   'load_functions' => '',
37051   'to_arg_functions' => '',
37052   'access_callback' => 'user_access',
37053   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37054   'page_callback' => 'drupal_get_form',
37055   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";i:2;s:5:"basic";}',
37056   'fit' => '63',
37057   'number_parts' => '6',
37058   'tab_parent' => 'admin/content/node-type/employee/display',
37059   'tab_root' => 'admin/content/node-type/employee',
37060   'title' => 'Basic',
37061   'title_callback' => 't',
37062   'title_arguments' => '',
37063   'type' => '136',
37064   'block_callback' => '',
37065   'description' => '',
37066   'position' => '',
37067   'weight' => '0',
37068   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37069 ))
37070 ->values(array(
37071   'path' => 'admin/content/node-type/employee/display/print',
37072   'load_functions' => '',
37073   'to_arg_functions' => '',
37074   'access_callback' => 'user_access',
37075   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37076   'page_callback' => 'drupal_get_form',
37077   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";i:2;s:5:"print";}',
37078   'fit' => '63',
37079   'number_parts' => '6',
37080   'tab_parent' => 'admin/content/node-type/employee/display',
37081   'tab_root' => 'admin/content/node-type/employee',
37082   'title' => 'Print',
37083   'title_callback' => 't',
37084   'title_arguments' => '',
37085   'type' => '128',
37086   'block_callback' => '',
37087   'description' => '',
37088   'position' => '',
37089   'weight' => '1',
37090   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37091 ))
37092 ->values(array(
37093   'path' => 'admin/content/node-type/employee/display/rss',
37094   'load_functions' => '',
37095   'to_arg_functions' => '',
37096   'access_callback' => 'user_access',
37097   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37098   'page_callback' => 'drupal_get_form',
37099   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";i:2;s:3:"rss";}',
37100   'fit' => '63',
37101   'number_parts' => '6',
37102   'tab_parent' => 'admin/content/node-type/employee/display',
37103   'tab_root' => 'admin/content/node-type/employee',
37104   'title' => 'RSS',
37105   'title_callback' => 't',
37106   'title_arguments' => '',
37107   'type' => '128',
37108   'block_callback' => '',
37109   'description' => '',
37110   'position' => '',
37111   'weight' => '1',
37112   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37113 ))
37114 ->values(array(
37115   'path' => 'admin/content/node-type/employee/edit',
37116   'load_functions' => '',
37117   'to_arg_functions' => '',
37118   'access_callback' => 'user_access',
37119   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37120   'page_callback' => 'drupal_get_form',
37121   'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:8:"employee";s:4:"name";s:8:"Employee";s:6:"module";s:4:"node";s:11:"description";s:18:"Employee node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:3:"Bio";s:14:"min_word_count";s:2:"20";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:8:"employee";}}',
37122   'fit' => '31',
37123   'number_parts' => '5',
37124   'tab_parent' => 'admin/content/node-type/employee',
37125   'tab_root' => 'admin/content/node-type/employee',
37126   'title' => 'Edit',
37127   'title_callback' => 't',
37128   'title_arguments' => '',
37129   'type' => '136',
37130   'block_callback' => '',
37131   'description' => '',
37132   'position' => '',
37133   'weight' => '0',
37134   'file' => 'modules/node/content_types.inc',
37135 ))
37136 ->values(array(
37137   'path' => 'admin/content/node-type/employee/fields',
37138   'load_functions' => '',
37139   'to_arg_functions' => '',
37140   'access_callback' => 'user_access',
37141   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37142   'page_callback' => 'drupal_get_form',
37143   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:8:"employee";}',
37144   'fit' => '31',
37145   'number_parts' => '5',
37146   'tab_parent' => 'admin/content/node-type/employee',
37147   'tab_root' => 'admin/content/node-type/employee',
37148   'title' => 'Manage fields',
37149   'title_callback' => 't',
37150   'title_arguments' => '',
37151   'type' => '128',
37152   'block_callback' => '',
37153   'description' => '',
37154   'position' => '',
37155   'weight' => '1',
37156   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37157 ))
37158 ->values(array(
37159   'path' => 'admin/content/node-type/employee/fields/field_commander',
37160   'load_functions' => '',
37161   'to_arg_functions' => '',
37162   'access_callback' => 'user_access',
37163   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37164   'page_callback' => 'drupal_get_form',
37165   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:8:"employee";i:2;s:15:"field_commander";}',
37166   'fit' => '63',
37167   'number_parts' => '6',
37168   'tab_parent' => 'admin/content/node-type/employee/fields',
37169   'tab_root' => 'admin/content/node-type/employee',
37170   'title' => 'Commanding Officer',
37171   'title_callback' => 't',
37172   'title_arguments' => '',
37173   'type' => '128',
37174   'block_callback' => '',
37175   'description' => '',
37176   'position' => '',
37177   'weight' => '0',
37178   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37179 ))
37180 ->values(array(
37181   'path' => 'admin/content/node-type/employee/fields/field_commander/remove',
37182   'load_functions' => '',
37183   'to_arg_functions' => '',
37184   'access_callback' => 'user_access',
37185   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37186   'page_callback' => 'drupal_get_form',
37187   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:8:"employee";i:2;s:15:"field_commander";}',
37188   'fit' => '127',
37189   'number_parts' => '7',
37190   'tab_parent' => '',
37191   'tab_root' => 'admin/content/node-type/employee/fields/field_commander/remove',
37192   'title' => 'Remove field',
37193   'title_callback' => 't',
37194   'title_arguments' => '',
37195   'type' => '4',
37196   'block_callback' => '',
37197   'description' => '',
37198   'position' => '',
37199   'weight' => '0',
37200   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37201 ))
37202 ->values(array(
37203   'path' => 'admin/content/node-type/employee/fields/field_company',
37204   'load_functions' => '',
37205   'to_arg_functions' => '',
37206   'access_callback' => 'user_access',
37207   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37208   'page_callback' => 'drupal_get_form',
37209   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:8:"employee";i:2;s:13:"field_company";}',
37210   'fit' => '63',
37211   'number_parts' => '6',
37212   'tab_parent' => 'admin/content/node-type/employee/fields',
37213   'tab_root' => 'admin/content/node-type/employee',
37214   'title' => 'Company',
37215   'title_callback' => 't',
37216   'title_arguments' => '',
37217   'type' => '128',
37218   'block_callback' => '',
37219   'description' => '',
37220   'position' => '',
37221   'weight' => '0',
37222   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37223 ))
37224 ->values(array(
37225   'path' => 'admin/content/node-type/employee/fields/field_company/remove',
37226   'load_functions' => '',
37227   'to_arg_functions' => '',
37228   'access_callback' => 'user_access',
37229   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37230   'page_callback' => 'drupal_get_form',
37231   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:8:"employee";i:2;s:13:"field_company";}',
37232   'fit' => '127',
37233   'number_parts' => '7',
37234   'tab_parent' => '',
37235   'tab_root' => 'admin/content/node-type/employee/fields/field_company/remove',
37236   'title' => 'Remove field',
37237   'title_callback' => 't',
37238   'title_arguments' => '',
37239   'type' => '4',
37240   'block_callback' => '',
37241   'description' => '',
37242   'position' => '',
37243   'weight' => '0',
37244   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37245 ))
37246 ->values(array(
37247   'path' => 'admin/content/node-type/forum',
37248   'load_functions' => '',
37249   'to_arg_functions' => '',
37250   'access_callback' => 'user_access',
37251   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37252   'page_callback' => 'drupal_get_form',
37253   'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":15:{s:4:"name";s:11:"Forum topic";s:6:"module";s:5:"forum";s:11:"description";s:85:"A <em>forum topic</em> is the initial post to a new discussion thread within a forum.";s:11:"title_label";s:7:"Subject";s:4:"type";s:5:"forum";s:9:"has_title";b:1;s:8:"has_body";b:1;s:10:"body_label";s:4:"Body";s:4:"help";s:0:"";s:14:"min_word_count";i:0;s:6:"custom";b:0;s:8:"modified";b:0;s:6:"locked";b:1;s:9:"orig_type";s:5:"forum";s:6:"is_new";b:1;}}',
37254   'fit' => '15',
37255   'number_parts' => '4',
37256   'tab_parent' => '',
37257   'tab_root' => 'admin/content/node-type/forum',
37258   'title' => 'Forum topic',
37259   'title_callback' => 't',
37260   'title_arguments' => '',
37261   'type' => '4',
37262   'block_callback' => '',
37263   'description' => '',
37264   'position' => '',
37265   'weight' => '0',
37266   'file' => 'modules/node/content_types.inc',
37267 ))
37268 ->values(array(
37269   'path' => 'admin/content/node-type/forum/delete',
37270   'load_functions' => '',
37271   'to_arg_functions' => '',
37272   'access_callback' => 'user_access',
37273   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37274   'page_callback' => 'drupal_get_form',
37275   'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":15:{s:4:"name";s:11:"Forum topic";s:6:"module";s:5:"forum";s:11:"description";s:85:"A <em>forum topic</em> is the initial post to a new discussion thread within a forum.";s:11:"title_label";s:7:"Subject";s:4:"type";s:5:"forum";s:9:"has_title";b:1;s:8:"has_body";b:1;s:10:"body_label";s:4:"Body";s:4:"help";s:0:"";s:14:"min_word_count";i:0;s:6:"custom";b:0;s:8:"modified";b:0;s:6:"locked";b:1;s:9:"orig_type";s:5:"forum";s:6:"is_new";b:1;}}',
37276   'fit' => '31',
37277   'number_parts' => '5',
37278   'tab_parent' => '',
37279   'tab_root' => 'admin/content/node-type/forum/delete',
37280   'title' => 'Delete',
37281   'title_callback' => 't',
37282   'title_arguments' => '',
37283   'type' => '4',
37284   'block_callback' => '',
37285   'description' => '',
37286   'position' => '',
37287   'weight' => '0',
37288   'file' => 'modules/node/content_types.inc',
37289 ))
37290 ->values(array(
37291   'path' => 'admin/content/node-type/forum/display',
37292   'load_functions' => '',
37293   'to_arg_functions' => '',
37294   'access_callback' => 'user_access',
37295   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37296   'page_callback' => 'drupal_get_form',
37297   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";}',
37298   'fit' => '31',
37299   'number_parts' => '5',
37300   'tab_parent' => 'admin/content/node-type/forum',
37301   'tab_root' => 'admin/content/node-type/forum',
37302   'title' => 'Display fields',
37303   'title_callback' => 't',
37304   'title_arguments' => '',
37305   'type' => '128',
37306   'block_callback' => '',
37307   'description' => '',
37308   'position' => '',
37309   'weight' => '2',
37310   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37311 ))
37312 ->values(array(
37313   'path' => 'admin/content/node-type/forum/display/basic',
37314   'load_functions' => '',
37315   'to_arg_functions' => '',
37316   'access_callback' => 'user_access',
37317   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37318   'page_callback' => 'drupal_get_form',
37319   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";i:2;s:5:"basic";}',
37320   'fit' => '63',
37321   'number_parts' => '6',
37322   'tab_parent' => 'admin/content/node-type/forum/display',
37323   'tab_root' => 'admin/content/node-type/forum',
37324   'title' => 'Basic',
37325   'title_callback' => 't',
37326   'title_arguments' => '',
37327   'type' => '136',
37328   'block_callback' => '',
37329   'description' => '',
37330   'position' => '',
37331   'weight' => '0',
37332   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37333 ))
37334 ->values(array(
37335   'path' => 'admin/content/node-type/forum/display/print',
37336   'load_functions' => '',
37337   'to_arg_functions' => '',
37338   'access_callback' => 'user_access',
37339   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37340   'page_callback' => 'drupal_get_form',
37341   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";i:2;s:5:"print";}',
37342   'fit' => '63',
37343   'number_parts' => '6',
37344   'tab_parent' => 'admin/content/node-type/forum/display',
37345   'tab_root' => 'admin/content/node-type/forum',
37346   'title' => 'Print',
37347   'title_callback' => 't',
37348   'title_arguments' => '',
37349   'type' => '128',
37350   'block_callback' => '',
37351   'description' => '',
37352   'position' => '',
37353   'weight' => '1',
37354   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37355 ))
37356 ->values(array(
37357   'path' => 'admin/content/node-type/forum/display/rss',
37358   'load_functions' => '',
37359   'to_arg_functions' => '',
37360   'access_callback' => 'user_access',
37361   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37362   'page_callback' => 'drupal_get_form',
37363   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"forum";i:2;s:3:"rss";}',
37364   'fit' => '63',
37365   'number_parts' => '6',
37366   'tab_parent' => 'admin/content/node-type/forum/display',
37367   'tab_root' => 'admin/content/node-type/forum',
37368   'title' => 'RSS',
37369   'title_callback' => 't',
37370   'title_arguments' => '',
37371   'type' => '128',
37372   'block_callback' => '',
37373   'description' => '',
37374   'position' => '',
37375   'weight' => '1',
37376   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37377 ))
37378 ->values(array(
37379   'path' => 'admin/content/node-type/forum/edit',
37380   'load_functions' => '',
37381   'to_arg_functions' => '',
37382   'access_callback' => 'user_access',
37383   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37384   'page_callback' => 'drupal_get_form',
37385   'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":15:{s:4:"name";s:11:"Forum topic";s:6:"module";s:5:"forum";s:11:"description";s:85:"A <em>forum topic</em> is the initial post to a new discussion thread within a forum.";s:11:"title_label";s:7:"Subject";s:4:"type";s:5:"forum";s:9:"has_title";b:1;s:8:"has_body";b:1;s:10:"body_label";s:4:"Body";s:4:"help";s:0:"";s:14:"min_word_count";i:0;s:6:"custom";b:0;s:8:"modified";b:0;s:6:"locked";b:1;s:9:"orig_type";s:5:"forum";s:6:"is_new";b:1;}}',
37386   'fit' => '31',
37387   'number_parts' => '5',
37388   'tab_parent' => 'admin/content/node-type/forum',
37389   'tab_root' => 'admin/content/node-type/forum',
37390   'title' => 'Edit',
37391   'title_callback' => 't',
37392   'title_arguments' => '',
37393   'type' => '136',
37394   'block_callback' => '',
37395   'description' => '',
37396   'position' => '',
37397   'weight' => '0',
37398   'file' => 'modules/node/content_types.inc',
37399 ))
37400 ->values(array(
37401   'path' => 'admin/content/node-type/forum/fields',
37402   'load_functions' => '',
37403   'to_arg_functions' => '',
37404   'access_callback' => 'user_access',
37405   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37406   'page_callback' => 'drupal_get_form',
37407   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:5:"forum";}',
37408   'fit' => '31',
37409   'number_parts' => '5',
37410   'tab_parent' => 'admin/content/node-type/forum',
37411   'tab_root' => 'admin/content/node-type/forum',
37412   'title' => 'Manage fields',
37413   'title_callback' => 't',
37414   'title_arguments' => '',
37415   'type' => '128',
37416   'block_callback' => '',
37417   'description' => '',
37418   'position' => '',
37419   'weight' => '1',
37420   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37421 ))
37422 ->values(array(
37423   'path' => 'admin/content/node-type/sponsor',
37424   'load_functions' => '',
37425   'to_arg_functions' => '',
37426   'access_callback' => 'user_access',
37427   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37428   'page_callback' => 'drupal_get_form',
37429   'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"sponsor";s:4:"name";s:7:"Sponsor";s:6:"module";s:4:"node";s:11:"description";s:17:"Sponsor node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"0";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:0:"";}}',
37430   'fit' => '15',
37431   'number_parts' => '4',
37432   'tab_parent' => '',
37433   'tab_root' => 'admin/content/node-type/sponsor',
37434   'title' => 'Sponsor',
37435   'title_callback' => 't',
37436   'title_arguments' => '',
37437   'type' => '4',
37438   'block_callback' => '',
37439   'description' => '',
37440   'position' => '',
37441   'weight' => '0',
37442   'file' => 'modules/node/content_types.inc',
37443 ))
37444 ->values(array(
37445   'path' => 'admin/content/node-type/sponsor/delete',
37446   'load_functions' => '',
37447   'to_arg_functions' => '',
37448   'access_callback' => 'user_access',
37449   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37450   'page_callback' => 'drupal_get_form',
37451   'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"sponsor";s:4:"name";s:7:"Sponsor";s:6:"module";s:4:"node";s:11:"description";s:17:"Sponsor node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"0";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:0:"";}}',
37452   'fit' => '31',
37453   'number_parts' => '5',
37454   'tab_parent' => '',
37455   'tab_root' => 'admin/content/node-type/sponsor/delete',
37456   'title' => 'Delete',
37457   'title_callback' => 't',
37458   'title_arguments' => '',
37459   'type' => '4',
37460   'block_callback' => '',
37461   'description' => '',
37462   'position' => '',
37463   'weight' => '0',
37464   'file' => 'modules/node/content_types.inc',
37465 ))
37466 ->values(array(
37467   'path' => 'admin/content/node-type/sponsor/display',
37468   'load_functions' => '',
37469   'to_arg_functions' => '',
37470   'access_callback' => 'user_access',
37471   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37472   'page_callback' => 'drupal_get_form',
37473   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";}',
37474   'fit' => '31',
37475   'number_parts' => '5',
37476   'tab_parent' => 'admin/content/node-type/sponsor',
37477   'tab_root' => 'admin/content/node-type/sponsor',
37478   'title' => 'Display fields',
37479   'title_callback' => 't',
37480   'title_arguments' => '',
37481   'type' => '128',
37482   'block_callback' => '',
37483   'description' => '',
37484   'position' => '',
37485   'weight' => '2',
37486   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37487 ))
37488 ->values(array(
37489   'path' => 'admin/content/node-type/sponsor/display/basic',
37490   'load_functions' => '',
37491   'to_arg_functions' => '',
37492   'access_callback' => 'user_access',
37493   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37494   'page_callback' => 'drupal_get_form',
37495   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";i:2;s:5:"basic";}',
37496   'fit' => '63',
37497   'number_parts' => '6',
37498   'tab_parent' => 'admin/content/node-type/sponsor/display',
37499   'tab_root' => 'admin/content/node-type/sponsor',
37500   'title' => 'Basic',
37501   'title_callback' => 't',
37502   'title_arguments' => '',
37503   'type' => '136',
37504   'block_callback' => '',
37505   'description' => '',
37506   'position' => '',
37507   'weight' => '0',
37508   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37509 ))
37510 ->values(array(
37511   'path' => 'admin/content/node-type/sponsor/display/print',
37512   'load_functions' => '',
37513   'to_arg_functions' => '',
37514   'access_callback' => 'user_access',
37515   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37516   'page_callback' => 'drupal_get_form',
37517   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";i:2;s:5:"print";}',
37518   'fit' => '63',
37519   'number_parts' => '6',
37520   'tab_parent' => 'admin/content/node-type/sponsor/display',
37521   'tab_root' => 'admin/content/node-type/sponsor',
37522   'title' => 'Print',
37523   'title_callback' => 't',
37524   'title_arguments' => '',
37525   'type' => '128',
37526   'block_callback' => '',
37527   'description' => '',
37528   'position' => '',
37529   'weight' => '1',
37530   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37531 ))
37532 ->values(array(
37533   'path' => 'admin/content/node-type/sponsor/display/rss',
37534   'load_functions' => '',
37535   'to_arg_functions' => '',
37536   'access_callback' => 'user_access',
37537   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37538   'page_callback' => 'drupal_get_form',
37539   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";i:2;s:3:"rss";}',
37540   'fit' => '63',
37541   'number_parts' => '6',
37542   'tab_parent' => 'admin/content/node-type/sponsor/display',
37543   'tab_root' => 'admin/content/node-type/sponsor',
37544   'title' => 'RSS',
37545   'title_callback' => 't',
37546   'title_arguments' => '',
37547   'type' => '128',
37548   'block_callback' => '',
37549   'description' => '',
37550   'position' => '',
37551   'weight' => '1',
37552   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37553 ))
37554 ->values(array(
37555   'path' => 'admin/content/node-type/sponsor/edit',
37556   'load_functions' => '',
37557   'to_arg_functions' => '',
37558   'access_callback' => 'user_access',
37559   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37560   'page_callback' => 'drupal_get_form',
37561   'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"sponsor";s:4:"name";s:7:"Sponsor";s:6:"module";s:4:"node";s:11:"description";s:17:"Sponsor node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"0";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:0:"";}}',
37562   'fit' => '31',
37563   'number_parts' => '5',
37564   'tab_parent' => 'admin/content/node-type/sponsor',
37565   'tab_root' => 'admin/content/node-type/sponsor',
37566   'title' => 'Edit',
37567   'title_callback' => 't',
37568   'title_arguments' => '',
37569   'type' => '136',
37570   'block_callback' => '',
37571   'description' => '',
37572   'position' => '',
37573   'weight' => '0',
37574   'file' => 'modules/node/content_types.inc',
37575 ))
37576 ->values(array(
37577   'path' => 'admin/content/node-type/sponsor/fields',
37578   'load_functions' => '',
37579   'to_arg_functions' => '',
37580   'access_callback' => 'user_access',
37581   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37582   'page_callback' => 'drupal_get_form',
37583   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:7:"sponsor";}',
37584   'fit' => '31',
37585   'number_parts' => '5',
37586   'tab_parent' => 'admin/content/node-type/sponsor',
37587   'tab_root' => 'admin/content/node-type/sponsor',
37588   'title' => 'Manage fields',
37589   'title_callback' => 't',
37590   'title_arguments' => '',
37591   'type' => '128',
37592   'block_callback' => '',
37593   'description' => '',
37594   'position' => '',
37595   'weight' => '1',
37596   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37597 ))
37598 ->values(array(
37599   'path' => 'admin/content/node-type/story',
37600   'load_functions' => '',
37601   'to_arg_functions' => '',
37602   'access_callback' => 'user_access',
37603   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37604   'page_callback' => 'drupal_get_form',
37605   'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"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.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}",
37606   'fit' => '15',
37607   'number_parts' => '4',
37608   'tab_parent' => '',
37609   'tab_root' => 'admin/content/node-type/story',
37610   'title' => 'Story',
37611   'title_callback' => 't',
37612   'title_arguments' => '',
37613   'type' => '4',
37614   'block_callback' => '',
37615   'description' => '',
37616   'position' => '',
37617   'weight' => '0',
37618   'file' => 'modules/node/content_types.inc',
37619 ))
37620 ->values(array(
37621   'path' => 'admin/content/node-type/story/delete',
37622   'load_functions' => '',
37623   'to_arg_functions' => '',
37624   'access_callback' => 'user_access',
37625   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37626   'page_callback' => 'drupal_get_form',
37627   'page_arguments' => "a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"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.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}",
37628   'fit' => '31',
37629   'number_parts' => '5',
37630   'tab_parent' => '',
37631   'tab_root' => 'admin/content/node-type/story/delete',
37632   'title' => 'Delete',
37633   'title_callback' => 't',
37634   'title_arguments' => '',
37635   'type' => '4',
37636   'block_callback' => '',
37637   'description' => '',
37638   'position' => '',
37639   'weight' => '0',
37640   'file' => 'modules/node/content_types.inc',
37641 ))
37642 ->values(array(
37643   'path' => 'admin/content/node-type/story/display',
37644   'load_functions' => '',
37645   'to_arg_functions' => '',
37646   'access_callback' => 'user_access',
37647   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37648   'page_callback' => 'drupal_get_form',
37649   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";}',
37650   'fit' => '31',
37651   'number_parts' => '5',
37652   'tab_parent' => 'admin/content/node-type/story',
37653   'tab_root' => 'admin/content/node-type/story',
37654   'title' => 'Display fields',
37655   'title_callback' => 't',
37656   'title_arguments' => '',
37657   'type' => '128',
37658   'block_callback' => '',
37659   'description' => '',
37660   'position' => '',
37661   'weight' => '2',
37662   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37663 ))
37664 ->values(array(
37665   'path' => 'admin/content/node-type/story/display/basic',
37666   'load_functions' => '',
37667   'to_arg_functions' => '',
37668   'access_callback' => 'user_access',
37669   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37670   'page_callback' => 'drupal_get_form',
37671   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";i:2;s:5:"basic";}',
37672   'fit' => '63',
37673   'number_parts' => '6',
37674   'tab_parent' => 'admin/content/node-type/story/display',
37675   'tab_root' => 'admin/content/node-type/story',
37676   'title' => 'Basic',
37677   'title_callback' => 't',
37678   'title_arguments' => '',
37679   'type' => '136',
37680   'block_callback' => '',
37681   'description' => '',
37682   'position' => '',
37683   'weight' => '0',
37684   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37685 ))
37686 ->values(array(
37687   'path' => 'admin/content/node-type/story/display/print',
37688   'load_functions' => '',
37689   'to_arg_functions' => '',
37690   'access_callback' => 'user_access',
37691   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37692   'page_callback' => 'drupal_get_form',
37693   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";i:2;s:5:"print";}',
37694   'fit' => '63',
37695   'number_parts' => '6',
37696   'tab_parent' => 'admin/content/node-type/story/display',
37697   'tab_root' => 'admin/content/node-type/story',
37698   'title' => 'Print',
37699   'title_callback' => 't',
37700   'title_arguments' => '',
37701   'type' => '128',
37702   'block_callback' => '',
37703   'description' => '',
37704   'position' => '',
37705   'weight' => '1',
37706   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37707 ))
37708 ->values(array(
37709   'path' => 'admin/content/node-type/story/display/rss',
37710   'load_functions' => '',
37711   'to_arg_functions' => '',
37712   'access_callback' => 'user_access',
37713   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37714   'page_callback' => 'drupal_get_form',
37715   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";i:2;s:3:"rss";}',
37716   'fit' => '63',
37717   'number_parts' => '6',
37718   'tab_parent' => 'admin/content/node-type/story/display',
37719   'tab_root' => 'admin/content/node-type/story',
37720   'title' => 'RSS',
37721   'title_callback' => 't',
37722   'title_arguments' => '',
37723   'type' => '128',
37724   'block_callback' => '',
37725   'description' => '',
37726   'position' => '',
37727   'weight' => '1',
37728   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37729 ))
37730 ->values(array(
37731   'path' => 'admin/content/node-type/story/edit',
37732   'load_functions' => '',
37733   'to_arg_functions' => '',
37734   'access_callback' => 'user_access',
37735   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37736   'page_callback' => 'drupal_get_form',
37737   'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"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.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}",
37738   'fit' => '31',
37739   'number_parts' => '5',
37740   'tab_parent' => 'admin/content/node-type/story',
37741   'tab_root' => 'admin/content/node-type/story',
37742   'title' => 'Edit',
37743   'title_callback' => 't',
37744   'title_arguments' => '',
37745   'type' => '136',
37746   'block_callback' => '',
37747   'description' => '',
37748   'position' => '',
37749   'weight' => '0',
37750   'file' => 'modules/node/content_types.inc',
37751 ))
37752 ->values(array(
37753   'path' => 'admin/content/node-type/story/fields',
37754   'load_functions' => '',
37755   'to_arg_functions' => '',
37756   'access_callback' => 'user_access',
37757   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37758   'page_callback' => 'drupal_get_form',
37759   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:5:"story";}',
37760   'fit' => '31',
37761   'number_parts' => '5',
37762   'tab_parent' => 'admin/content/node-type/story',
37763   'tab_root' => 'admin/content/node-type/story',
37764   'title' => 'Manage fields',
37765   'title_callback' => 't',
37766   'title_arguments' => '',
37767   'type' => '128',
37768   'block_callback' => '',
37769   'description' => '',
37770   'position' => '',
37771   'weight' => '1',
37772   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37773 ))
37774 ->values(array(
37775   'path' => 'admin/content/node-type/story/fields/field_test',
37776   'load_functions' => '',
37777   'to_arg_functions' => '',
37778   'access_callback' => 'user_access',
37779   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37780   'page_callback' => 'drupal_get_form',
37781   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:10:"field_test";}',
37782   'fit' => '63',
37783   'number_parts' => '6',
37784   'tab_parent' => 'admin/content/node-type/story/fields',
37785   'tab_root' => 'admin/content/node-type/story',
37786   'title' => 'Text Field',
37787   'title_callback' => 't',
37788   'title_arguments' => '',
37789   'type' => '128',
37790   'block_callback' => '',
37791   'description' => '',
37792   'position' => '',
37793   'weight' => '0',
37794   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37795 ))
37796 ->values(array(
37797   'path' => 'admin/content/node-type/story/fields/field_test/remove',
37798   'load_functions' => '',
37799   'to_arg_functions' => '',
37800   'access_callback' => 'user_access',
37801   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37802   'page_callback' => 'drupal_get_form',
37803   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:10:"field_test";}',
37804   'fit' => '127',
37805   'number_parts' => '7',
37806   'tab_parent' => '',
37807   'tab_root' => 'admin/content/node-type/story/fields/field_test/remove',
37808   'title' => 'Remove field',
37809   'title_callback' => 't',
37810   'title_arguments' => '',
37811   'type' => '4',
37812   'block_callback' => '',
37813   'description' => '',
37814   'position' => '',
37815   'weight' => '0',
37816   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37817 ))
37818 ->values(array(
37819   'path' => 'admin/content/node-type/story/fields/field_test_date',
37820   'load_functions' => '',
37821   'to_arg_functions' => '',
37822   'access_callback' => 'user_access',
37823   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37824   'page_callback' => 'drupal_get_form',
37825   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:15:"field_test_date";}',
37826   'fit' => '63',
37827   'number_parts' => '6',
37828   'tab_parent' => 'admin/content/node-type/story/fields',
37829   'tab_root' => 'admin/content/node-type/story',
37830   'title' => 'Date Field',
37831   'title_callback' => 't',
37832   'title_arguments' => '',
37833   'type' => '128',
37834   'block_callback' => '',
37835   'description' => '',
37836   'position' => '',
37837   'weight' => '0',
37838   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37839 ))
37840 ->values(array(
37841   'path' => 'admin/content/node-type/story/fields/field_test_date/remove',
37842   'load_functions' => '',
37843   'to_arg_functions' => '',
37844   'access_callback' => 'user_access',
37845   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37846   'page_callback' => 'drupal_get_form',
37847   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:15:"field_test_date";}',
37848   'fit' => '127',
37849   'number_parts' => '7',
37850   'tab_parent' => '',
37851   'tab_root' => 'admin/content/node-type/story/fields/field_test_date/remove',
37852   'title' => 'Remove field',
37853   'title_callback' => 't',
37854   'title_arguments' => '',
37855   'type' => '4',
37856   'block_callback' => '',
37857   'description' => '',
37858   'position' => '',
37859   'weight' => '0',
37860   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37861 ))
37862 ->values(array(
37863   'path' => 'admin/content/node-type/story/fields/field_test_datestamp',
37864   'load_functions' => '',
37865   'to_arg_functions' => '',
37866   'access_callback' => 'user_access',
37867   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37868   'page_callback' => 'drupal_get_form',
37869   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:20:"field_test_datestamp";}',
37870   'fit' => '63',
37871   'number_parts' => '6',
37872   'tab_parent' => 'admin/content/node-type/story/fields',
37873   'tab_root' => 'admin/content/node-type/story',
37874   'title' => 'Date Stamp Field',
37875   'title_callback' => 't',
37876   'title_arguments' => '',
37877   'type' => '128',
37878   'block_callback' => '',
37879   'description' => '',
37880   'position' => '',
37881   'weight' => '0',
37882   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37883 ))
37884 ->values(array(
37885   'path' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
37886   'load_functions' => '',
37887   'to_arg_functions' => '',
37888   'access_callback' => 'user_access',
37889   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37890   'page_callback' => 'drupal_get_form',
37891   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:20:"field_test_datestamp";}',
37892   'fit' => '127',
37893   'number_parts' => '7',
37894   'tab_parent' => '',
37895   'tab_root' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
37896   'title' => 'Remove field',
37897   'title_callback' => 't',
37898   'title_arguments' => '',
37899   'type' => '4',
37900   'block_callback' => '',
37901   'description' => '',
37902   'position' => '',
37903   'weight' => '0',
37904   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37905 ))
37906 ->values(array(
37907   'path' => 'admin/content/node-type/story/fields/field_test_datetime',
37908   'load_functions' => '',
37909   'to_arg_functions' => '',
37910   'access_callback' => 'user_access',
37911   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37912   'page_callback' => 'drupal_get_form',
37913   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:19:"field_test_datetime";}',
37914   'fit' => '63',
37915   'number_parts' => '6',
37916   'tab_parent' => 'admin/content/node-type/story/fields',
37917   'tab_root' => 'admin/content/node-type/story',
37918   'title' => 'Datetime Field',
37919   'title_callback' => 't',
37920   'title_arguments' => '',
37921   'type' => '128',
37922   'block_callback' => '',
37923   'description' => '',
37924   'position' => '',
37925   'weight' => '0',
37926   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37927 ))
37928 ->values(array(
37929   'path' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
37930   'load_functions' => '',
37931   'to_arg_functions' => '',
37932   'access_callback' => 'user_access',
37933   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37934   'page_callback' => 'drupal_get_form',
37935   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:19:"field_test_datetime";}',
37936   'fit' => '127',
37937   'number_parts' => '7',
37938   'tab_parent' => '',
37939   'tab_root' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
37940   'title' => 'Remove field',
37941   'title_callback' => 't',
37942   'title_arguments' => '',
37943   'type' => '4',
37944   'block_callback' => '',
37945   'description' => '',
37946   'position' => '',
37947   'weight' => '0',
37948   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37949 ))
37950 ->values(array(
37951   'path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons',
37952   'load_functions' => '',
37953   'to_arg_functions' => '',
37954   'access_callback' => 'user_access',
37955   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37956   'page_callback' => 'drupal_get_form',
37957   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:32:"field_test_decimal_radio_buttons";}',
37958   'fit' => '63',
37959   'number_parts' => '6',
37960   'tab_parent' => 'admin/content/node-type/story/fields',
37961   'tab_root' => 'admin/content/node-type/story',
37962   'title' => 'Decimal Radio Buttons Field',
37963   'title_callback' => 't',
37964   'title_arguments' => '',
37965   'type' => '128',
37966   'block_callback' => '',
37967   'description' => '',
37968   'position' => '',
37969   'weight' => '0',
37970   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37971 ))
37972 ->values(array(
37973   'path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
37974   'load_functions' => '',
37975   'to_arg_functions' => '',
37976   'access_callback' => 'user_access',
37977   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
37978   'page_callback' => 'drupal_get_form',
37979   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:32:"field_test_decimal_radio_buttons";}',
37980   'fit' => '127',
37981   'number_parts' => '7',
37982   'tab_parent' => '',
37983   'tab_root' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
37984   'title' => 'Remove field',
37985   'title_callback' => 't',
37986   'title_arguments' => '',
37987   'type' => '4',
37988   'block_callback' => '',
37989   'description' => '',
37990   'position' => '',
37991   'weight' => '0',
37992   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
37993 ))
37994 ->values(array(
37995   'path' => 'admin/content/node-type/story/fields/field_test_email',
37996   'load_functions' => '',
37997   'to_arg_functions' => '',
37998   'access_callback' => 'user_access',
37999   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38000   'page_callback' => 'drupal_get_form',
38001   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:16:"field_test_email";}',
38002   'fit' => '63',
38003   'number_parts' => '6',
38004   'tab_parent' => 'admin/content/node-type/story/fields',
38005   'tab_root' => 'admin/content/node-type/story',
38006   'title' => 'Email Field',
38007   'title_callback' => 't',
38008   'title_arguments' => '',
38009   'type' => '128',
38010   'block_callback' => '',
38011   'description' => '',
38012   'position' => '',
38013   'weight' => '0',
38014   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38015 ))
38016 ->values(array(
38017   'path' => 'admin/content/node-type/story/fields/field_test_email/remove',
38018   'load_functions' => '',
38019   'to_arg_functions' => '',
38020   'access_callback' => 'user_access',
38021   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38022   'page_callback' => 'drupal_get_form',
38023   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:16:"field_test_email";}',
38024   'fit' => '127',
38025   'number_parts' => '7',
38026   'tab_parent' => '',
38027   'tab_root' => 'admin/content/node-type/story/fields/field_test_email/remove',
38028   'title' => 'Remove field',
38029   'title_callback' => 't',
38030   'title_arguments' => '',
38031   'type' => '4',
38032   'block_callback' => '',
38033   'description' => '',
38034   'position' => '',
38035   'weight' => '0',
38036   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38037 ))
38038 ->values(array(
38039   'path' => 'admin/content/node-type/story/fields/field_test_exclude_unset',
38040   'load_functions' => '',
38041   'to_arg_functions' => '',
38042   'access_callback' => 'user_access',
38043   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38044   'page_callback' => 'drupal_get_form',
38045   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:24:"field_test_exclude_unset";}',
38046   'fit' => '63',
38047   'number_parts' => '6',
38048   'tab_parent' => 'admin/content/node-type/story/fields',
38049   'tab_root' => 'admin/content/node-type/story',
38050   'title' => 'Text Field',
38051   'title_callback' => 't',
38052   'title_arguments' => '',
38053   'type' => '128',
38054   'block_callback' => '',
38055   'description' => '',
38056   'position' => '',
38057   'weight' => '0',
38058   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38059 ))
38060 ->values(array(
38061   'path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
38062   'load_functions' => '',
38063   'to_arg_functions' => '',
38064   'access_callback' => 'user_access',
38065   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38066   'page_callback' => 'drupal_get_form',
38067   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:24:"field_test_exclude_unset";}',
38068   'fit' => '127',
38069   'number_parts' => '7',
38070   'tab_parent' => '',
38071   'tab_root' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
38072   'title' => 'Remove field',
38073   'title_callback' => 't',
38074   'title_arguments' => '',
38075   'type' => '4',
38076   'block_callback' => '',
38077   'description' => '',
38078   'position' => '',
38079   'weight' => '0',
38080   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38081 ))
38082 ->values(array(
38083   'path' => 'admin/content/node-type/story/fields/field_test_filefield',
38084   'load_functions' => '',
38085   'to_arg_functions' => '',
38086   'access_callback' => 'user_access',
38087   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38088   'page_callback' => 'drupal_get_form',
38089   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:20:"field_test_filefield";}',
38090   'fit' => '63',
38091   'number_parts' => '6',
38092   'tab_parent' => 'admin/content/node-type/story/fields',
38093   'tab_root' => 'admin/content/node-type/story',
38094   'title' => 'File Field',
38095   'title_callback' => 't',
38096   'title_arguments' => '',
38097   'type' => '128',
38098   'block_callback' => '',
38099   'description' => '',
38100   'position' => '',
38101   'weight' => '0',
38102   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38103 ))
38104 ->values(array(
38105   'path' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
38106   'load_functions' => '',
38107   'to_arg_functions' => '',
38108   'access_callback' => 'user_access',
38109   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38110   'page_callback' => 'drupal_get_form',
38111   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:20:"field_test_filefield";}',
38112   'fit' => '127',
38113   'number_parts' => '7',
38114   'tab_parent' => '',
38115   'tab_root' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
38116   'title' => 'Remove field',
38117   'title_callback' => 't',
38118   'title_arguments' => '',
38119   'type' => '4',
38120   'block_callback' => '',
38121   'description' => '',
38122   'position' => '',
38123   'weight' => '0',
38124   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38125 ))
38126 ->values(array(
38127   'path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox',
38128   'load_functions' => '',
38129   'to_arg_functions' => '',
38130   'access_callback' => 'user_access',
38131   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38132   'page_callback' => 'drupal_get_form',
38133   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:32:"field_test_float_single_checkbox";}',
38134   'fit' => '63',
38135   'number_parts' => '6',
38136   'tab_parent' => 'admin/content/node-type/story/fields',
38137   'tab_root' => 'admin/content/node-type/story',
38138   'title' => 'Float Single Checkbox Field',
38139   'title_callback' => 't',
38140   'title_arguments' => '',
38141   'type' => '128',
38142   'block_callback' => '',
38143   'description' => '',
38144   'position' => '',
38145   'weight' => '0',
38146   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38147 ))
38148 ->values(array(
38149   'path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
38150   'load_functions' => '',
38151   'to_arg_functions' => '',
38152   'access_callback' => 'user_access',
38153   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38154   'page_callback' => 'drupal_get_form',
38155   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:32:"field_test_float_single_checkbox";}',
38156   'fit' => '127',
38157   'number_parts' => '7',
38158   'tab_parent' => '',
38159   'tab_root' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
38160   'title' => 'Remove field',
38161   'title_callback' => 't',
38162   'title_arguments' => '',
38163   'type' => '4',
38164   'block_callback' => '',
38165   'description' => '',
38166   'position' => '',
38167   'weight' => '0',
38168   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38169 ))
38170 ->values(array(
38171   'path' => 'admin/content/node-type/story/fields/field_test_four',
38172   'load_functions' => '',
38173   'to_arg_functions' => '',
38174   'access_callback' => 'user_access',
38175   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38176   'page_callback' => 'drupal_get_form',
38177   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:15:"field_test_four";}',
38178   'fit' => '63',
38179   'number_parts' => '6',
38180   'tab_parent' => 'admin/content/node-type/story/fields',
38181   'tab_root' => 'admin/content/node-type/story',
38182   'title' => 'Float Field',
38183   'title_callback' => 't',
38184   'title_arguments' => '',
38185   'type' => '128',
38186   'block_callback' => '',
38187   'description' => '',
38188   'position' => '',
38189   'weight' => '0',
38190   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38191 ))
38192 ->values(array(
38193   'path' => 'admin/content/node-type/story/fields/field_test_four/remove',
38194   'load_functions' => '',
38195   'to_arg_functions' => '',
38196   'access_callback' => 'user_access',
38197   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38198   'page_callback' => 'drupal_get_form',
38199   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:15:"field_test_four";}',
38200   'fit' => '127',
38201   'number_parts' => '7',
38202   'tab_parent' => '',
38203   'tab_root' => 'admin/content/node-type/story/fields/field_test_four/remove',
38204   'title' => 'Remove field',
38205   'title_callback' => 't',
38206   'title_arguments' => '',
38207   'type' => '4',
38208   'block_callback' => '',
38209   'description' => '',
38210   'position' => '',
38211   'weight' => '0',
38212   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38213 ))
38214 ->values(array(
38215   'path' => 'admin/content/node-type/story/fields/field_test_identical1',
38216   'load_functions' => '',
38217   'to_arg_functions' => '',
38218   'access_callback' => 'user_access',
38219   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38220   'page_callback' => 'drupal_get_form',
38221   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:21:"field_test_identical1";}',
38222   'fit' => '63',
38223   'number_parts' => '6',
38224   'tab_parent' => 'admin/content/node-type/story/fields',
38225   'tab_root' => 'admin/content/node-type/story',
38226   'title' => 'Integer Field',
38227   'title_callback' => 't',
38228   'title_arguments' => '',
38229   'type' => '128',
38230   'block_callback' => '',
38231   'description' => '',
38232   'position' => '',
38233   'weight' => '0',
38234   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38235 ))
38236 ->values(array(
38237   'path' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
38238   'load_functions' => '',
38239   'to_arg_functions' => '',
38240   'access_callback' => 'user_access',
38241   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38242   'page_callback' => 'drupal_get_form',
38243   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:21:"field_test_identical1";}',
38244   'fit' => '127',
38245   'number_parts' => '7',
38246   'tab_parent' => '',
38247   'tab_root' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
38248   'title' => 'Remove field',
38249   'title_callback' => 't',
38250   'title_arguments' => '',
38251   'type' => '4',
38252   'block_callback' => '',
38253   'description' => '',
38254   'position' => '',
38255   'weight' => '0',
38256   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38257 ))
38258 ->values(array(
38259   'path' => 'admin/content/node-type/story/fields/field_test_identical2',
38260   'load_functions' => '',
38261   'to_arg_functions' => '',
38262   'access_callback' => 'user_access',
38263   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38264   'page_callback' => 'drupal_get_form',
38265   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:21:"field_test_identical2";}',
38266   'fit' => '63',
38267   'number_parts' => '6',
38268   'tab_parent' => 'admin/content/node-type/story/fields',
38269   'tab_root' => 'admin/content/node-type/story',
38270   'title' => 'Integer Field',
38271   'title_callback' => 't',
38272   'title_arguments' => '',
38273   'type' => '128',
38274   'block_callback' => '',
38275   'description' => '',
38276   'position' => '',
38277   'weight' => '0',
38278   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38279 ))
38280 ->values(array(
38281   'path' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
38282   'load_functions' => '',
38283   'to_arg_functions' => '',
38284   'access_callback' => 'user_access',
38285   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38286   'page_callback' => 'drupal_get_form',
38287   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:21:"field_test_identical2";}',
38288   'fit' => '127',
38289   'number_parts' => '7',
38290   'tab_parent' => '',
38291   'tab_root' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
38292   'title' => 'Remove field',
38293   'title_callback' => 't',
38294   'title_arguments' => '',
38295   'type' => '4',
38296   'block_callback' => '',
38297   'description' => '',
38298   'position' => '',
38299   'weight' => '0',
38300   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38301 ))
38302 ->values(array(
38303   'path' => 'admin/content/node-type/story/fields/field_test_imagefield',
38304   'load_functions' => '',
38305   'to_arg_functions' => '',
38306   'access_callback' => 'user_access',
38307   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38308   'page_callback' => 'drupal_get_form',
38309   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:21:"field_test_imagefield";}',
38310   'fit' => '63',
38311   'number_parts' => '6',
38312   'tab_parent' => 'admin/content/node-type/story/fields',
38313   'tab_root' => 'admin/content/node-type/story',
38314   'title' => 'Image Field',
38315   'title_callback' => 't',
38316   'title_arguments' => '',
38317   'type' => '128',
38318   'block_callback' => '',
38319   'description' => '',
38320   'position' => '',
38321   'weight' => '0',
38322   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38323 ))
38324 ->values(array(
38325   'path' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
38326   'load_functions' => '',
38327   'to_arg_functions' => '',
38328   'access_callback' => 'user_access',
38329   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38330   'page_callback' => 'drupal_get_form',
38331   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:21:"field_test_imagefield";}',
38332   'fit' => '127',
38333   'number_parts' => '7',
38334   'tab_parent' => '',
38335   'tab_root' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
38336   'title' => 'Remove field',
38337   'title_callback' => 't',
38338   'title_arguments' => '',
38339   'type' => '4',
38340   'block_callback' => '',
38341   'description' => '',
38342   'position' => '',
38343   'weight' => '0',
38344   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38345 ))
38346 ->values(array(
38347   'path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist',
38348   'load_functions' => '',
38349   'to_arg_functions' => '',
38350   'access_callback' => 'user_access',
38351   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38352   'page_callback' => 'drupal_get_form',
38353   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:29:"field_test_integer_selectlist";}',
38354   'fit' => '63',
38355   'number_parts' => '6',
38356   'tab_parent' => 'admin/content/node-type/story/fields',
38357   'tab_root' => 'admin/content/node-type/story',
38358   'title' => 'Integer Select List Field',
38359   'title_callback' => 't',
38360   'title_arguments' => '',
38361   'type' => '128',
38362   'block_callback' => '',
38363   'description' => '',
38364   'position' => '',
38365   'weight' => '0',
38366   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38367 ))
38368 ->values(array(
38369   'path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
38370   'load_functions' => '',
38371   'to_arg_functions' => '',
38372   'access_callback' => 'user_access',
38373   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38374   'page_callback' => 'drupal_get_form',
38375   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:29:"field_test_integer_selectlist";}',
38376   'fit' => '127',
38377   'number_parts' => '7',
38378   'tab_parent' => '',
38379   'tab_root' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
38380   'title' => 'Remove field',
38381   'title_callback' => 't',
38382   'title_arguments' => '',
38383   'type' => '4',
38384   'block_callback' => '',
38385   'description' => '',
38386   'position' => '',
38387   'weight' => '0',
38388   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38389 ))
38390 ->values(array(
38391   'path' => 'admin/content/node-type/story/fields/field_test_link',
38392   'load_functions' => '',
38393   'to_arg_functions' => '',
38394   'access_callback' => 'user_access',
38395   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38396   'page_callback' => 'drupal_get_form',
38397   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:15:"field_test_link";}',
38398   'fit' => '63',
38399   'number_parts' => '6',
38400   'tab_parent' => 'admin/content/node-type/story/fields',
38401   'tab_root' => 'admin/content/node-type/story',
38402   'title' => 'Link Field',
38403   'title_callback' => 't',
38404   'title_arguments' => '',
38405   'type' => '128',
38406   'block_callback' => '',
38407   'description' => '',
38408   'position' => '',
38409   'weight' => '0',
38410   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38411 ))
38412 ->values(array(
38413   'path' => 'admin/content/node-type/story/fields/field_test_link/remove',
38414   'load_functions' => '',
38415   'to_arg_functions' => '',
38416   'access_callback' => 'user_access',
38417   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38418   'page_callback' => 'drupal_get_form',
38419   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:15:"field_test_link";}',
38420   'fit' => '127',
38421   'number_parts' => '7',
38422   'tab_parent' => '',
38423   'tab_root' => 'admin/content/node-type/story/fields/field_test_link/remove',
38424   'title' => 'Remove field',
38425   'title_callback' => 't',
38426   'title_arguments' => '',
38427   'type' => '4',
38428   'block_callback' => '',
38429   'description' => '',
38430   'position' => '',
38431   'weight' => '0',
38432   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38433 ))
38434 ->values(array(
38435   'path' => 'admin/content/node-type/story/fields/field_test_phone',
38436   'load_functions' => '',
38437   'to_arg_functions' => '',
38438   'access_callback' => 'user_access',
38439   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38440   'page_callback' => 'drupal_get_form',
38441   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:16:"field_test_phone";}',
38442   'fit' => '63',
38443   'number_parts' => '6',
38444   'tab_parent' => 'admin/content/node-type/story/fields',
38445   'tab_root' => 'admin/content/node-type/story',
38446   'title' => 'Phone Field',
38447   'title_callback' => 't',
38448   'title_arguments' => '',
38449   'type' => '128',
38450   'block_callback' => '',
38451   'description' => '',
38452   'position' => '',
38453   'weight' => '0',
38454   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38455 ))
38456 ->values(array(
38457   'path' => 'admin/content/node-type/story/fields/field_test_phone/remove',
38458   'load_functions' => '',
38459   'to_arg_functions' => '',
38460   'access_callback' => 'user_access',
38461   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38462   'page_callback' => 'drupal_get_form',
38463   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:16:"field_test_phone";}',
38464   'fit' => '127',
38465   'number_parts' => '7',
38466   'tab_parent' => '',
38467   'tab_root' => 'admin/content/node-type/story/fields/field_test_phone/remove',
38468   'title' => 'Remove field',
38469   'title_callback' => 't',
38470   'title_arguments' => '',
38471   'type' => '4',
38472   'block_callback' => '',
38473   'description' => '',
38474   'position' => '',
38475   'weight' => '0',
38476   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38477 ))
38478 ->values(array(
38479   'path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox',
38480   'load_functions' => '',
38481   'to_arg_functions' => '',
38482   'access_callback' => 'user_access',
38483   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38484   'page_callback' => 'drupal_get_form',
38485   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:31:"field_test_text_single_checkbox";}',
38486   'fit' => '63',
38487   'number_parts' => '6',
38488   'tab_parent' => 'admin/content/node-type/story/fields',
38489   'tab_root' => 'admin/content/node-type/story',
38490   'title' => 'Text Single Checkbox Field',
38491   'title_callback' => 't',
38492   'title_arguments' => '',
38493   'type' => '128',
38494   'block_callback' => '',
38495   'description' => '',
38496   'position' => '',
38497   'weight' => '0',
38498   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38499 ))
38500 ->values(array(
38501   'path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
38502   'load_functions' => '',
38503   'to_arg_functions' => '',
38504   'access_callback' => 'user_access',
38505   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38506   'page_callback' => 'drupal_get_form',
38507   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:31:"field_test_text_single_checkbox";}',
38508   'fit' => '127',
38509   'number_parts' => '7',
38510   'tab_parent' => '',
38511   'tab_root' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
38512   'title' => 'Remove field',
38513   'title_callback' => 't',
38514   'title_arguments' => '',
38515   'type' => '4',
38516   'block_callback' => '',
38517   'description' => '',
38518   'position' => '',
38519   'weight' => '0',
38520   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38521 ))
38522 ->values(array(
38523   'path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2',
38524   'load_functions' => '',
38525   'to_arg_functions' => '',
38526   'access_callback' => 'user_access',
38527   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38528   'page_callback' => 'drupal_get_form',
38529   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:32:"field_test_text_single_checkbox2";}',
38530   'fit' => '63',
38531   'number_parts' => '6',
38532   'tab_parent' => 'admin/content/node-type/story/fields',
38533   'tab_root' => 'admin/content/node-type/story',
38534   'title' => 'Text Single Checkbox Field 2',
38535   'title_callback' => 't',
38536   'title_arguments' => '',
38537   'type' => '128',
38538   'block_callback' => '',
38539   'description' => '',
38540   'position' => '',
38541   'weight' => '0',
38542   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38543 ))
38544 ->values(array(
38545   'path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/remove',
38546   'load_functions' => '',
38547   'to_arg_functions' => '',
38548   'access_callback' => 'user_access',
38549   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38550   'page_callback' => 'drupal_get_form',
38551   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:32:"field_test_text_single_checkbox2";}',
38552   'fit' => '127',
38553   'number_parts' => '7',
38554   'tab_parent' => '',
38555   'tab_root' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox2/remove',
38556   'title' => 'Remove field',
38557   'title_callback' => 't',
38558   'title_arguments' => '',
38559   'type' => '4',
38560   'block_callback' => '',
38561   'description' => '',
38562   'position' => '',
38563   'weight' => '0',
38564   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38565 ))
38566 ->values(array(
38567   'path' => 'admin/content/node-type/story/fields/field_test_three',
38568   'load_functions' => '',
38569   'to_arg_functions' => '',
38570   'access_callback' => 'user_access',
38571   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38572   'page_callback' => 'drupal_get_form',
38573   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:16:"field_test_three";}',
38574   'fit' => '63',
38575   'number_parts' => '6',
38576   'tab_parent' => 'admin/content/node-type/story/fields',
38577   'tab_root' => 'admin/content/node-type/story',
38578   'title' => 'Decimal Field',
38579   'title_callback' => 't',
38580   'title_arguments' => '',
38581   'type' => '128',
38582   'block_callback' => '',
38583   'description' => '',
38584   'position' => '',
38585   'weight' => '0',
38586   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38587 ))
38588 ->values(array(
38589   'path' => 'admin/content/node-type/story/fields/field_test_three/remove',
38590   'load_functions' => '',
38591   'to_arg_functions' => '',
38592   'access_callback' => 'user_access',
38593   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38594   'page_callback' => 'drupal_get_form',
38595   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:16:"field_test_three";}',
38596   'fit' => '127',
38597   'number_parts' => '7',
38598   'tab_parent' => '',
38599   'tab_root' => 'admin/content/node-type/story/fields/field_test_three/remove',
38600   'title' => 'Remove field',
38601   'title_callback' => 't',
38602   'title_arguments' => '',
38603   'type' => '4',
38604   'block_callback' => '',
38605   'description' => '',
38606   'position' => '',
38607   'weight' => '0',
38608   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38609 ))
38610 ->values(array(
38611   'path' => 'admin/content/node-type/story/fields/field_test_two',
38612   'load_functions' => '',
38613   'to_arg_functions' => '',
38614   'access_callback' => 'user_access',
38615   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38616   'page_callback' => 'drupal_get_form',
38617   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:14:"field_test_two";}',
38618   'fit' => '63',
38619   'number_parts' => '6',
38620   'tab_parent' => 'admin/content/node-type/story/fields',
38621   'tab_root' => 'admin/content/node-type/story',
38622   'title' => 'Integer Field',
38623   'title_callback' => 't',
38624   'title_arguments' => '',
38625   'type' => '128',
38626   'block_callback' => '',
38627   'description' => '',
38628   'position' => '',
38629   'weight' => '0',
38630   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38631 ))
38632 ->values(array(
38633   'path' => 'admin/content/node-type/story/fields/field_test_two/remove',
38634   'load_functions' => '',
38635   'to_arg_functions' => '',
38636   'access_callback' => 'user_access',
38637   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38638   'page_callback' => 'drupal_get_form',
38639   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:14:"field_test_two";}',
38640   'fit' => '127',
38641   'number_parts' => '7',
38642   'tab_parent' => '',
38643   'tab_root' => 'admin/content/node-type/story/fields/field_test_two/remove',
38644   'title' => 'Remove field',
38645   'title_callback' => 't',
38646   'title_arguments' => '',
38647   'type' => '4',
38648   'block_callback' => '',
38649   'description' => '',
38650   'position' => '',
38651   'weight' => '0',
38652   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38653 ))
38654 ->values(array(
38655   'path' => 'admin/content/node-type/test-event',
38656   'load_functions' => '',
38657   'to_arg_functions' => '',
38658   'access_callback' => 'user_access',
38659   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38660   'page_callback' => 'drupal_get_form',
38661   'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:10:"test_event";s:4:"name";s:18:"Migrate test event";s:6:"module";s:4:"node";s:11:"description";s:27:"test event description here";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:10:"Event Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:5:"event";}}',
38662   'fit' => '15',
38663   'number_parts' => '4',
38664   'tab_parent' => '',
38665   'tab_root' => 'admin/content/node-type/test-event',
38666   'title' => 'Migrate test event',
38667   'title_callback' => 't',
38668   'title_arguments' => '',
38669   'type' => '4',
38670   'block_callback' => '',
38671   'description' => '',
38672   'position' => '',
38673   'weight' => '0',
38674   'file' => 'modules/node/content_types.inc',
38675 ))
38676 ->values(array(
38677   'path' => 'admin/content/node-type/test-event/delete',
38678   'load_functions' => '',
38679   'to_arg_functions' => '',
38680   'access_callback' => 'user_access',
38681   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38682   'page_callback' => 'drupal_get_form',
38683   'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:10:"test_event";s:4:"name";s:18:"Migrate test event";s:6:"module";s:4:"node";s:11:"description";s:27:"test event description here";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:10:"Event Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:5:"event";}}',
38684   'fit' => '31',
38685   'number_parts' => '5',
38686   'tab_parent' => '',
38687   'tab_root' => 'admin/content/node-type/test-event/delete',
38688   'title' => 'Delete',
38689   'title_callback' => 't',
38690   'title_arguments' => '',
38691   'type' => '4',
38692   'block_callback' => '',
38693   'description' => '',
38694   'position' => '',
38695   'weight' => '0',
38696   'file' => 'modules/node/content_types.inc',
38697 ))
38698 ->values(array(
38699   'path' => 'admin/content/node-type/test-event/display',
38700   'load_functions' => '',
38701   'to_arg_functions' => '',
38702   'access_callback' => 'user_access',
38703   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38704   'page_callback' => 'drupal_get_form',
38705   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_event";}',
38706   'fit' => '31',
38707   'number_parts' => '5',
38708   'tab_parent' => 'admin/content/node-type/test-event',
38709   'tab_root' => 'admin/content/node-type/test-event',
38710   'title' => 'Display fields',
38711   'title_callback' => 't',
38712   'title_arguments' => '',
38713   'type' => '128',
38714   'block_callback' => '',
38715   'description' => '',
38716   'position' => '',
38717   'weight' => '2',
38718   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38719 ))
38720 ->values(array(
38721   'path' => 'admin/content/node-type/test-event/display/basic',
38722   'load_functions' => '',
38723   'to_arg_functions' => '',
38724   'access_callback' => 'user_access',
38725   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38726   'page_callback' => 'drupal_get_form',
38727   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_event";i:2;s:5:"basic";}',
38728   'fit' => '63',
38729   'number_parts' => '6',
38730   'tab_parent' => 'admin/content/node-type/test-event/display',
38731   'tab_root' => 'admin/content/node-type/test-event',
38732   'title' => 'Basic',
38733   'title_callback' => 't',
38734   'title_arguments' => '',
38735   'type' => '136',
38736   'block_callback' => '',
38737   'description' => '',
38738   'position' => '',
38739   'weight' => '0',
38740   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38741 ))
38742 ->values(array(
38743   'path' => 'admin/content/node-type/test-event/display/print',
38744   'load_functions' => '',
38745   'to_arg_functions' => '',
38746   'access_callback' => 'user_access',
38747   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38748   'page_callback' => 'drupal_get_form',
38749   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_event";i:2;s:5:"print";}',
38750   'fit' => '63',
38751   'number_parts' => '6',
38752   'tab_parent' => 'admin/content/node-type/test-event/display',
38753   'tab_root' => 'admin/content/node-type/test-event',
38754   'title' => 'Print',
38755   'title_callback' => 't',
38756   'title_arguments' => '',
38757   'type' => '128',
38758   'block_callback' => '',
38759   'description' => '',
38760   'position' => '',
38761   'weight' => '1',
38762   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38763 ))
38764 ->values(array(
38765   'path' => 'admin/content/node-type/test-event/display/rss',
38766   'load_functions' => '',
38767   'to_arg_functions' => '',
38768   'access_callback' => 'user_access',
38769   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38770   'page_callback' => 'drupal_get_form',
38771   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_event";i:2;s:3:"rss";}',
38772   'fit' => '63',
38773   'number_parts' => '6',
38774   'tab_parent' => 'admin/content/node-type/test-event/display',
38775   'tab_root' => 'admin/content/node-type/test-event',
38776   'title' => 'RSS',
38777   'title_callback' => 't',
38778   'title_arguments' => '',
38779   'type' => '128',
38780   'block_callback' => '',
38781   'description' => '',
38782   'position' => '',
38783   'weight' => '1',
38784   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38785 ))
38786 ->values(array(
38787   'path' => 'admin/content/node-type/test-event/edit',
38788   'load_functions' => '',
38789   'to_arg_functions' => '',
38790   'access_callback' => 'user_access',
38791   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38792   'page_callback' => 'drupal_get_form',
38793   'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:10:"test_event";s:4:"name";s:18:"Migrate test event";s:6:"module";s:4:"node";s:11:"description";s:27:"test event description here";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:10:"Event Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:5:"event";}}',
38794   'fit' => '31',
38795   'number_parts' => '5',
38796   'tab_parent' => 'admin/content/node-type/test-event',
38797   'tab_root' => 'admin/content/node-type/test-event',
38798   'title' => 'Edit',
38799   'title_callback' => 't',
38800   'title_arguments' => '',
38801   'type' => '136',
38802   'block_callback' => '',
38803   'description' => '',
38804   'position' => '',
38805   'weight' => '0',
38806   'file' => 'modules/node/content_types.inc',
38807 ))
38808 ->values(array(
38809   'path' => 'admin/content/node-type/test-event/fields',
38810   'load_functions' => '',
38811   'to_arg_functions' => '',
38812   'access_callback' => 'user_access',
38813   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38814   'page_callback' => 'drupal_get_form',
38815   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:10:"test_event";}',
38816   'fit' => '31',
38817   'number_parts' => '5',
38818   'tab_parent' => 'admin/content/node-type/test-event',
38819   'tab_root' => 'admin/content/node-type/test-event',
38820   'title' => 'Manage fields',
38821   'title_callback' => 't',
38822   'title_arguments' => '',
38823   'type' => '128',
38824   'block_callback' => '',
38825   'description' => '',
38826   'position' => '',
38827   'weight' => '1',
38828   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38829 ))
38830 ->values(array(
38831   'path' => 'admin/content/node-type/test-page',
38832   'load_functions' => '',
38833   'to_arg_functions' => '',
38834   'access_callback' => 'user_access',
38835   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38836   'page_callback' => 'drupal_get_form',
38837   'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:9:\"test_page\";s:4:\"name\";s:17:\"Migrate test page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"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.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:28:\"This is the body field label\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}",
38838   'fit' => '15',
38839   'number_parts' => '4',
38840   'tab_parent' => '',
38841   'tab_root' => 'admin/content/node-type/test-page',
38842   'title' => 'Migrate test page',
38843   'title_callback' => 't',
38844   'title_arguments' => '',
38845   'type' => '4',
38846   'block_callback' => '',
38847   'description' => '',
38848   'position' => '',
38849   'weight' => '0',
38850   'file' => 'modules/node/content_types.inc',
38851 ))
38852 ->values(array(
38853   'path' => 'admin/content/node-type/test-page/delete',
38854   'load_functions' => '',
38855   'to_arg_functions' => '',
38856   'access_callback' => 'user_access',
38857   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38858   'page_callback' => 'drupal_get_form',
38859   'page_arguments' => "a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:9:\"test_page\";s:4:\"name\";s:17:\"Migrate test page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"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.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:28:\"This is the body field label\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}",
38860   'fit' => '31',
38861   'number_parts' => '5',
38862   'tab_parent' => '',
38863   'tab_root' => 'admin/content/node-type/test-page/delete',
38864   'title' => 'Delete',
38865   'title_callback' => 't',
38866   'title_arguments' => '',
38867   'type' => '4',
38868   'block_callback' => '',
38869   'description' => '',
38870   'position' => '',
38871   'weight' => '0',
38872   'file' => 'modules/node/content_types.inc',
38873 ))
38874 ->values(array(
38875   'path' => 'admin/content/node-type/test-page/display',
38876   'load_functions' => '',
38877   'to_arg_functions' => '',
38878   'access_callback' => 'user_access',
38879   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38880   'page_callback' => 'drupal_get_form',
38881   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:9:"test_page";}',
38882   'fit' => '31',
38883   'number_parts' => '5',
38884   'tab_parent' => 'admin/content/node-type/test-page',
38885   'tab_root' => 'admin/content/node-type/test-page',
38886   'title' => 'Display fields',
38887   'title_callback' => 't',
38888   'title_arguments' => '',
38889   'type' => '128',
38890   'block_callback' => '',
38891   'description' => '',
38892   'position' => '',
38893   'weight' => '2',
38894   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38895 ))
38896 ->values(array(
38897   'path' => 'admin/content/node-type/test-page/display/basic',
38898   'load_functions' => '',
38899   'to_arg_functions' => '',
38900   'access_callback' => 'user_access',
38901   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38902   'page_callback' => 'drupal_get_form',
38903   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:9:"test_page";i:2;s:5:"basic";}',
38904   'fit' => '63',
38905   'number_parts' => '6',
38906   'tab_parent' => 'admin/content/node-type/test-page/display',
38907   'tab_root' => 'admin/content/node-type/test-page',
38908   'title' => 'Basic',
38909   'title_callback' => 't',
38910   'title_arguments' => '',
38911   'type' => '136',
38912   'block_callback' => '',
38913   'description' => '',
38914   'position' => '',
38915   'weight' => '0',
38916   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38917 ))
38918 ->values(array(
38919   'path' => 'admin/content/node-type/test-page/display/print',
38920   'load_functions' => '',
38921   'to_arg_functions' => '',
38922   'access_callback' => 'user_access',
38923   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38924   'page_callback' => 'drupal_get_form',
38925   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:9:"test_page";i:2;s:5:"print";}',
38926   'fit' => '63',
38927   'number_parts' => '6',
38928   'tab_parent' => 'admin/content/node-type/test-page/display',
38929   'tab_root' => 'admin/content/node-type/test-page',
38930   'title' => 'Print',
38931   'title_callback' => 't',
38932   'title_arguments' => '',
38933   'type' => '128',
38934   'block_callback' => '',
38935   'description' => '',
38936   'position' => '',
38937   'weight' => '1',
38938   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38939 ))
38940 ->values(array(
38941   'path' => 'admin/content/node-type/test-page/display/rss',
38942   'load_functions' => '',
38943   'to_arg_functions' => '',
38944   'access_callback' => 'user_access',
38945   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38946   'page_callback' => 'drupal_get_form',
38947   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:9:"test_page";i:2;s:3:"rss";}',
38948   'fit' => '63',
38949   'number_parts' => '6',
38950   'tab_parent' => 'admin/content/node-type/test-page/display',
38951   'tab_root' => 'admin/content/node-type/test-page',
38952   'title' => 'RSS',
38953   'title_callback' => 't',
38954   'title_arguments' => '',
38955   'type' => '128',
38956   'block_callback' => '',
38957   'description' => '',
38958   'position' => '',
38959   'weight' => '1',
38960   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
38961 ))
38962 ->values(array(
38963   'path' => 'admin/content/node-type/test-page/edit',
38964   'load_functions' => '',
38965   'to_arg_functions' => '',
38966   'access_callback' => 'user_access',
38967   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38968   'page_callback' => 'drupal_get_form',
38969   'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:9:\"test_page\";s:4:\"name\";s:17:\"Migrate test page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"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.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:28:\"This is the body field label\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}",
38970   'fit' => '31',
38971   'number_parts' => '5',
38972   'tab_parent' => 'admin/content/node-type/test-page',
38973   'tab_root' => 'admin/content/node-type/test-page',
38974   'title' => 'Edit',
38975   'title_callback' => 't',
38976   'title_arguments' => '',
38977   'type' => '136',
38978   'block_callback' => '',
38979   'description' => '',
38980   'position' => '',
38981   'weight' => '0',
38982   'file' => 'modules/node/content_types.inc',
38983 ))
38984 ->values(array(
38985   'path' => 'admin/content/node-type/test-page/fields',
38986   'load_functions' => '',
38987   'to_arg_functions' => '',
38988   'access_callback' => 'user_access',
38989   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
38990   'page_callback' => 'drupal_get_form',
38991   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:9:"test_page";}',
38992   'fit' => '31',
38993   'number_parts' => '5',
38994   'tab_parent' => 'admin/content/node-type/test-page',
38995   'tab_root' => 'admin/content/node-type/test-page',
38996   'title' => 'Manage fields',
38997   'title_callback' => 't',
38998   'title_arguments' => '',
38999   'type' => '128',
39000   'block_callback' => '',
39001   'description' => '',
39002   'position' => '',
39003   'weight' => '1',
39004   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39005 ))
39006 ->values(array(
39007   'path' => 'admin/content/node-type/test-page/fields/field_test',
39008   'load_functions' => '',
39009   'to_arg_functions' => '',
39010   'access_callback' => 'user_access',
39011   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39012   'page_callback' => 'drupal_get_form',
39013   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:9:"test_page";i:2;s:10:"field_test";}',
39014   'fit' => '63',
39015   'number_parts' => '6',
39016   'tab_parent' => 'admin/content/node-type/test-page/fields',
39017   'tab_root' => 'admin/content/node-type/test-page',
39018   'title' => 'Text Field',
39019   'title_callback' => 't',
39020   'title_arguments' => '',
39021   'type' => '128',
39022   'block_callback' => '',
39023   'description' => '',
39024   'position' => '',
39025   'weight' => '0',
39026   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39027 ))
39028 ->values(array(
39029   'path' => 'admin/content/node-type/test-page/fields/field_test/remove',
39030   'load_functions' => '',
39031   'to_arg_functions' => '',
39032   'access_callback' => 'user_access',
39033   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39034   'page_callback' => 'drupal_get_form',
39035   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:9:"test_page";i:2;s:10:"field_test";}',
39036   'fit' => '127',
39037   'number_parts' => '7',
39038   'tab_parent' => '',
39039   'tab_root' => 'admin/content/node-type/test-page/fields/field_test/remove',
39040   'title' => 'Remove field',
39041   'title_callback' => 't',
39042   'title_arguments' => '',
39043   'type' => '4',
39044   'block_callback' => '',
39045   'description' => '',
39046   'position' => '',
39047   'weight' => '0',
39048   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39049 ))
39050 ->values(array(
39051   'path' => 'admin/content/node-type/test-planet',
39052   'load_functions' => '',
39053   'to_arg_functions' => '',
39054   'access_callback' => 'user_access',
39055   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39056   'page_callback' => 'drupal_get_form',
39057   'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:11:\"test_planet\";s:4:\"name\";s:19:\"Migrate test planet\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"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.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"0\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:11:\"test_planet\";}}",
39058   'fit' => '15',
39059   'number_parts' => '4',
39060   'tab_parent' => '',
39061   'tab_root' => 'admin/content/node-type/test-planet',
39062   'title' => 'Migrate test planet',
39063   'title_callback' => 't',
39064   'title_arguments' => '',
39065   'type' => '4',
39066   'block_callback' => '',
39067   'description' => '',
39068   'position' => '',
39069   'weight' => '0',
39070   'file' => 'modules/node/content_types.inc',
39071 ))
39072 ->values(array(
39073   'path' => 'admin/content/node-type/test-planet/delete',
39074   'load_functions' => '',
39075   'to_arg_functions' => '',
39076   'access_callback' => 'user_access',
39077   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39078   'page_callback' => 'drupal_get_form',
39079   'page_arguments' => "a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:11:\"test_planet\";s:4:\"name\";s:19:\"Migrate test planet\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"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.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"0\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:11:\"test_planet\";}}",
39080   'fit' => '31',
39081   'number_parts' => '5',
39082   'tab_parent' => '',
39083   'tab_root' => 'admin/content/node-type/test-planet/delete',
39084   'title' => 'Delete',
39085   'title_callback' => 't',
39086   'title_arguments' => '',
39087   'type' => '4',
39088   'block_callback' => '',
39089   'description' => '',
39090   'position' => '',
39091   'weight' => '0',
39092   'file' => 'modules/node/content_types.inc',
39093 ))
39094 ->values(array(
39095   'path' => 'admin/content/node-type/test-planet/display',
39096   'load_functions' => '',
39097   'to_arg_functions' => '',
39098   'access_callback' => 'user_access',
39099   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39100   'page_callback' => 'drupal_get_form',
39101   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:11:"test_planet";}',
39102   'fit' => '31',
39103   'number_parts' => '5',
39104   'tab_parent' => 'admin/content/node-type/test-planet',
39105   'tab_root' => 'admin/content/node-type/test-planet',
39106   'title' => 'Display fields',
39107   'title_callback' => 't',
39108   'title_arguments' => '',
39109   'type' => '128',
39110   'block_callback' => '',
39111   'description' => '',
39112   'position' => '',
39113   'weight' => '2',
39114   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39115 ))
39116 ->values(array(
39117   'path' => 'admin/content/node-type/test-planet/display/basic',
39118   'load_functions' => '',
39119   'to_arg_functions' => '',
39120   'access_callback' => 'user_access',
39121   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39122   'page_callback' => 'drupal_get_form',
39123   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:11:"test_planet";i:2;s:5:"basic";}',
39124   'fit' => '63',
39125   'number_parts' => '6',
39126   'tab_parent' => 'admin/content/node-type/test-planet/display',
39127   'tab_root' => 'admin/content/node-type/test-planet',
39128   'title' => 'Basic',
39129   'title_callback' => 't',
39130   'title_arguments' => '',
39131   'type' => '136',
39132   'block_callback' => '',
39133   'description' => '',
39134   'position' => '',
39135   'weight' => '0',
39136   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39137 ))
39138 ->values(array(
39139   'path' => 'admin/content/node-type/test-planet/display/print',
39140   'load_functions' => '',
39141   'to_arg_functions' => '',
39142   'access_callback' => 'user_access',
39143   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39144   'page_callback' => 'drupal_get_form',
39145   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:11:"test_planet";i:2;s:5:"print";}',
39146   'fit' => '63',
39147   'number_parts' => '6',
39148   'tab_parent' => 'admin/content/node-type/test-planet/display',
39149   'tab_root' => 'admin/content/node-type/test-planet',
39150   'title' => 'Print',
39151   'title_callback' => 't',
39152   'title_arguments' => '',
39153   'type' => '128',
39154   'block_callback' => '',
39155   'description' => '',
39156   'position' => '',
39157   'weight' => '1',
39158   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39159 ))
39160 ->values(array(
39161   'path' => 'admin/content/node-type/test-planet/display/rss',
39162   'load_functions' => '',
39163   'to_arg_functions' => '',
39164   'access_callback' => 'user_access',
39165   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39166   'page_callback' => 'drupal_get_form',
39167   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:11:"test_planet";i:2;s:3:"rss";}',
39168   'fit' => '63',
39169   'number_parts' => '6',
39170   'tab_parent' => 'admin/content/node-type/test-planet/display',
39171   'tab_root' => 'admin/content/node-type/test-planet',
39172   'title' => 'RSS',
39173   'title_callback' => 't',
39174   'title_arguments' => '',
39175   'type' => '128',
39176   'block_callback' => '',
39177   'description' => '',
39178   'position' => '',
39179   'weight' => '1',
39180   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39181 ))
39182 ->values(array(
39183   'path' => 'admin/content/node-type/test-planet/edit',
39184   'load_functions' => '',
39185   'to_arg_functions' => '',
39186   'access_callback' => 'user_access',
39187   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39188   'page_callback' => 'drupal_get_form',
39189   'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:11:\"test_planet\";s:4:\"name\";s:19:\"Migrate test planet\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"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.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"0\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:11:\"test_planet\";}}",
39190   'fit' => '31',
39191   'number_parts' => '5',
39192   'tab_parent' => 'admin/content/node-type/test-planet',
39193   'tab_root' => 'admin/content/node-type/test-planet',
39194   'title' => 'Edit',
39195   'title_callback' => 't',
39196   'title_arguments' => '',
39197   'type' => '136',
39198   'block_callback' => '',
39199   'description' => '',
39200   'position' => '',
39201   'weight' => '0',
39202   'file' => 'modules/node/content_types.inc',
39203 ))
39204 ->values(array(
39205   'path' => 'admin/content/node-type/test-planet/fields',
39206   'load_functions' => '',
39207   'to_arg_functions' => '',
39208   'access_callback' => 'user_access',
39209   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39210   'page_callback' => 'drupal_get_form',
39211   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:11:"test_planet";}',
39212   'fit' => '31',
39213   'number_parts' => '5',
39214   'tab_parent' => 'admin/content/node-type/test-planet',
39215   'tab_root' => 'admin/content/node-type/test-planet',
39216   'title' => 'Manage fields',
39217   'title_callback' => 't',
39218   'title_arguments' => '',
39219   'type' => '128',
39220   'block_callback' => '',
39221   'description' => '',
39222   'position' => '',
39223   'weight' => '1',
39224   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39225 ))
39226 ->values(array(
39227   'path' => 'admin/content/node-type/test-planet/fields/field_multivalue',
39228   'load_functions' => '',
39229   'to_arg_functions' => '',
39230   'access_callback' => 'user_access',
39231   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39232   'page_callback' => 'drupal_get_form',
39233   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:11:"test_planet";i:2;s:16:"field_multivalue";}',
39234   'fit' => '63',
39235   'number_parts' => '6',
39236   'tab_parent' => 'admin/content/node-type/test-planet/fields',
39237   'tab_root' => 'admin/content/node-type/test-planet',
39238   'title' => 'Decimal Field',
39239   'title_callback' => 't',
39240   'title_arguments' => '',
39241   'type' => '128',
39242   'block_callback' => '',
39243   'description' => '',
39244   'position' => '',
39245   'weight' => '0',
39246   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39247 ))
39248 ->values(array(
39249   'path' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
39250   'load_functions' => '',
39251   'to_arg_functions' => '',
39252   'access_callback' => 'user_access',
39253   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39254   'page_callback' => 'drupal_get_form',
39255   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:11:"test_planet";i:2;s:16:"field_multivalue";}',
39256   'fit' => '127',
39257   'number_parts' => '7',
39258   'tab_parent' => '',
39259   'tab_root' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
39260   'title' => 'Remove field',
39261   'title_callback' => 't',
39262   'title_arguments' => '',
39263   'type' => '4',
39264   'block_callback' => '',
39265   'description' => '',
39266   'position' => '',
39267   'weight' => '0',
39268   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39269 ))
39270 ->values(array(
39271   'path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox',
39272   'load_functions' => '',
39273   'to_arg_functions' => '',
39274   'access_callback' => 'user_access',
39275   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39276   'page_callback' => 'drupal_get_form',
39277   'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:11:"test_planet";i:2;s:31:"field_test_text_single_checkbox";}',
39278   'fit' => '63',
39279   'number_parts' => '6',
39280   'tab_parent' => 'admin/content/node-type/test-planet/fields',
39281   'tab_root' => 'admin/content/node-type/test-planet',
39282   'title' => 'Text Single Checkbox Field',
39283   'title_callback' => 't',
39284   'title_arguments' => '',
39285   'type' => '128',
39286   'block_callback' => '',
39287   'description' => '',
39288   'position' => '',
39289   'weight' => '0',
39290   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39291 ))
39292 ->values(array(
39293   'path' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/remove',
39294   'load_functions' => '',
39295   'to_arg_functions' => '',
39296   'access_callback' => 'user_access',
39297   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39298   'page_callback' => 'drupal_get_form',
39299   'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:11:"test_planet";i:2;s:31:"field_test_text_single_checkbox";}',
39300   'fit' => '127',
39301   'number_parts' => '7',
39302   'tab_parent' => '',
39303   'tab_root' => 'admin/content/node-type/test-planet/fields/field_test_text_single_checkbox/remove',
39304   'title' => 'Remove field',
39305   'title_callback' => 't',
39306   'title_arguments' => '',
39307   'type' => '4',
39308   'block_callback' => '',
39309   'description' => '',
39310   'position' => '',
39311   'weight' => '0',
39312   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39313 ))
39314 ->values(array(
39315   'path' => 'admin/content/node-type/test-story',
39316   'load_functions' => '',
39317   'to_arg_functions' => '',
39318   'access_callback' => 'user_access',
39319   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39320   'page_callback' => 'drupal_get_form',
39321   'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:10:\"test_story\";s:4:\"name\";s:18:\"Migrate test story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"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.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"0\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:10:\"test_story\";}}",
39322   'fit' => '15',
39323   'number_parts' => '4',
39324   'tab_parent' => '',
39325   'tab_root' => 'admin/content/node-type/test-story',
39326   'title' => 'Migrate test story',
39327   'title_callback' => 't',
39328   'title_arguments' => '',
39329   'type' => '4',
39330   'block_callback' => '',
39331   'description' => '',
39332   'position' => '',
39333   'weight' => '0',
39334   'file' => 'modules/node/content_types.inc',
39335 ))
39336 ->values(array(
39337   'path' => 'admin/content/node-type/test-story/delete',
39338   'load_functions' => '',
39339   'to_arg_functions' => '',
39340   'access_callback' => 'user_access',
39341   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39342   'page_callback' => 'drupal_get_form',
39343   'page_arguments' => "a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:10:\"test_story\";s:4:\"name\";s:18:\"Migrate test story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"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.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"0\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:10:\"test_story\";}}",
39344   'fit' => '31',
39345   'number_parts' => '5',
39346   'tab_parent' => '',
39347   'tab_root' => 'admin/content/node-type/test-story/delete',
39348   'title' => 'Delete',
39349   'title_callback' => 't',
39350   'title_arguments' => '',
39351   'type' => '4',
39352   'block_callback' => '',
39353   'description' => '',
39354   'position' => '',
39355   'weight' => '0',
39356   'file' => 'modules/node/content_types.inc',
39357 ))
39358 ->values(array(
39359   'path' => 'admin/content/node-type/test-story/display',
39360   'load_functions' => '',
39361   'to_arg_functions' => '',
39362   'access_callback' => 'user_access',
39363   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39364   'page_callback' => 'drupal_get_form',
39365   'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_story";}',
39366   'fit' => '31',
39367   'number_parts' => '5',
39368   'tab_parent' => 'admin/content/node-type/test-story',
39369   'tab_root' => 'admin/content/node-type/test-story',
39370   'title' => 'Display fields',
39371   'title_callback' => 't',
39372   'title_arguments' => '',
39373   'type' => '128',
39374   'block_callback' => '',
39375   'description' => '',
39376   'position' => '',
39377   'weight' => '2',
39378   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39379 ))
39380 ->values(array(
39381   'path' => 'admin/content/node-type/test-story/display/basic',
39382   'load_functions' => '',
39383   'to_arg_functions' => '',
39384   'access_callback' => 'user_access',
39385   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39386   'page_callback' => 'drupal_get_form',
39387   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_story";i:2;s:5:"basic";}',
39388   'fit' => '63',
39389   'number_parts' => '6',
39390   'tab_parent' => 'admin/content/node-type/test-story/display',
39391   'tab_root' => 'admin/content/node-type/test-story',
39392   'title' => 'Basic',
39393   'title_callback' => 't',
39394   'title_arguments' => '',
39395   'type' => '136',
39396   'block_callback' => '',
39397   'description' => '',
39398   'position' => '',
39399   'weight' => '0',
39400   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39401 ))
39402 ->values(array(
39403   'path' => 'admin/content/node-type/test-story/display/print',
39404   'load_functions' => '',
39405   'to_arg_functions' => '',
39406   'access_callback' => 'user_access',
39407   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39408   'page_callback' => 'drupal_get_form',
39409   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_story";i:2;s:5:"print";}',
39410   'fit' => '63',
39411   'number_parts' => '6',
39412   'tab_parent' => 'admin/content/node-type/test-story/display',
39413   'tab_root' => 'admin/content/node-type/test-story',
39414   'title' => 'Print',
39415   'title_callback' => 't',
39416   'title_arguments' => '',
39417   'type' => '128',
39418   'block_callback' => '',
39419   'description' => '',
39420   'position' => '',
39421   'weight' => '1',
39422   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39423 ))
39424 ->values(array(
39425   'path' => 'admin/content/node-type/test-story/display/rss',
39426   'load_functions' => '',
39427   'to_arg_functions' => '',
39428   'access_callback' => 'user_access',
39429   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39430   'page_callback' => 'drupal_get_form',
39431   'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_story";i:2;s:3:"rss";}',
39432   'fit' => '63',
39433   'number_parts' => '6',
39434   'tab_parent' => 'admin/content/node-type/test-story/display',
39435   'tab_root' => 'admin/content/node-type/test-story',
39436   'title' => 'RSS',
39437   'title_callback' => 't',
39438   'title_arguments' => '',
39439   'type' => '128',
39440   'block_callback' => '',
39441   'description' => '',
39442   'position' => '',
39443   'weight' => '1',
39444   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39445 ))
39446 ->values(array(
39447   'path' => 'admin/content/node-type/test-story/edit',
39448   'load_functions' => '',
39449   'to_arg_functions' => '',
39450   'access_callback' => 'user_access',
39451   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39452   'page_callback' => 'drupal_get_form',
39453   'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:10:\"test_story\";s:4:\"name\";s:18:\"Migrate test story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"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.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"0\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:10:\"test_story\";}}",
39454   'fit' => '31',
39455   'number_parts' => '5',
39456   'tab_parent' => 'admin/content/node-type/test-story',
39457   'tab_root' => 'admin/content/node-type/test-story',
39458   'title' => 'Edit',
39459   'title_callback' => 't',
39460   'title_arguments' => '',
39461   'type' => '136',
39462   'block_callback' => '',
39463   'description' => '',
39464   'position' => '',
39465   'weight' => '0',
39466   'file' => 'modules/node/content_types.inc',
39467 ))
39468 ->values(array(
39469   'path' => 'admin/content/node-type/test-story/fields',
39470   'load_functions' => '',
39471   'to_arg_functions' => '',
39472   'access_callback' => 'user_access',
39473   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39474   'page_callback' => 'drupal_get_form',
39475   'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:10:"test_story";}',
39476   'fit' => '31',
39477   'number_parts' => '5',
39478   'tab_parent' => 'admin/content/node-type/test-story',
39479   'tab_root' => 'admin/content/node-type/test-story',
39480   'title' => 'Manage fields',
39481   'title_callback' => 't',
39482   'title_arguments' => '',
39483   'type' => '128',
39484   'block_callback' => '',
39485   'description' => '',
39486   'position' => '',
39487   'weight' => '1',
39488   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39489 ))
39490 ->values(array(
39491   'path' => 'admin/content/node/overview',
39492   'load_functions' => '',
39493   'to_arg_functions' => '',
39494   'access_callback' => 'user_access',
39495   'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
39496   'page_callback' => 'drupal_get_form',
39497   'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
39498   'fit' => '15',
39499   'number_parts' => '4',
39500   'tab_parent' => 'admin/content/node',
39501   'tab_root' => 'admin/content/node',
39502   'title' => 'List',
39503   'title_callback' => 't',
39504   'title_arguments' => '',
39505   'type' => '136',
39506   'block_callback' => '',
39507   'description' => '',
39508   'position' => '',
39509   'weight' => '-10',
39510   'file' => 'modules/node/node.admin.inc',
39511 ))
39512 ->values(array(
39513   'path' => 'admin/content/rss-publishing',
39514   'load_functions' => '',
39515   'to_arg_functions' => '',
39516   'access_callback' => 'user_access',
39517   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39518   'page_callback' => 'drupal_get_form',
39519   'page_arguments' => 'a:1:{i:0;s:25:"system_rss_feeds_settings";}',
39520   'fit' => '7',
39521   'number_parts' => '3',
39522   'tab_parent' => '',
39523   'tab_root' => 'admin/content/rss-publishing',
39524   'title' => 'RSS publishing',
39525   'title_callback' => 't',
39526   'title_arguments' => '',
39527   'type' => '6',
39528   'block_callback' => '',
39529   'description' => 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.',
39530   'position' => '',
39531   'weight' => '0',
39532   'file' => 'modules/system/system.admin.inc',
39533 ))
39534 ->values(array(
39535   'path' => 'admin/content/taxonomy',
39536   'load_functions' => '',
39537   'to_arg_functions' => '',
39538   'access_callback' => 'user_access',
39539   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39540   'page_callback' => 'drupal_get_form',
39541   'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
39542   'fit' => '7',
39543   'number_parts' => '3',
39544   'tab_parent' => '',
39545   'tab_root' => 'admin/content/taxonomy',
39546   'title' => 'Taxonomy',
39547   'title_callback' => 't',
39548   'title_arguments' => '',
39549   'type' => '6',
39550   'block_callback' => '',
39551   'description' => 'Manage tagging, categorization, and classification of your content.',
39552   'position' => '',
39553   'weight' => '0',
39554   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39555 ))
39556 ->values(array(
39557   'path' => 'admin/content/taxonomy/%',
39558   'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
39559   'to_arg_functions' => '',
39560   'access_callback' => 'user_access',
39561   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39562   'page_callback' => 'drupal_get_form',
39563   'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
39564   'fit' => '14',
39565   'number_parts' => '4',
39566   'tab_parent' => '',
39567   'tab_root' => 'admin/content/taxonomy/%',
39568   'title' => 'List terms',
39569   'title_callback' => 't',
39570   'title_arguments' => '',
39571   'type' => '4',
39572   'block_callback' => '',
39573   'description' => '',
39574   'position' => '',
39575   'weight' => '0',
39576   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39577 ))
39578 ->values(array(
39579   'path' => 'admin/content/taxonomy/%/add/term',
39580   'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
39581   'to_arg_functions' => '',
39582   'access_callback' => 'user_access',
39583   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39584   'page_callback' => 'taxonomy_add_term_page',
39585   'page_arguments' => 'a:1:{i:0;i:3;}',
39586   'fit' => '59',
39587   'number_parts' => '6',
39588   'tab_parent' => 'admin/content/taxonomy/%',
39589   'tab_root' => 'admin/content/taxonomy/%',
39590   'title' => 'Add term',
39591   'title_callback' => 't',
39592   'title_arguments' => '',
39593   'type' => '128',
39594   'block_callback' => '',
39595   'description' => '',
39596   'position' => '',
39597   'weight' => '0',
39598   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39599 ))
39600 ->values(array(
39601   'path' => 'admin/content/taxonomy/%/list',
39602   'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
39603   'to_arg_functions' => '',
39604   'access_callback' => 'user_access',
39605   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39606   'page_callback' => 'drupal_get_form',
39607   'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
39608   'fit' => '29',
39609   'number_parts' => '5',
39610   'tab_parent' => 'admin/content/taxonomy/%',
39611   'tab_root' => 'admin/content/taxonomy/%',
39612   'title' => 'List',
39613   'title_callback' => 't',
39614   'title_arguments' => '',
39615   'type' => '136',
39616   'block_callback' => '',
39617   'description' => '',
39618   'position' => '',
39619   'weight' => '-10',
39620   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39621 ))
39622 ->values(array(
39623   'path' => 'admin/content/taxonomy/%/translation',
39624   'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
39625   'to_arg_functions' => '',
39626   'access_callback' => '_i18ntaxonomy_translation_tab',
39627   'access_arguments' => 'a:1:{i:0;i:3;}',
39628   'page_callback' => 'i18ntaxonomy_page_vocabulary',
39629   'page_arguments' => 'a:3:{i:0;i:3;i:1;i:5;i:2;i:6;}',
39630   'fit' => '29',
39631   'number_parts' => '5',
39632   'tab_parent' => 'admin/content/taxonomy/%',
39633   'tab_root' => 'admin/content/taxonomy/%',
39634   'title' => 'Translation',
39635   'title_callback' => 't',
39636   'title_arguments' => '',
39637   'type' => '128',
39638   'block_callback' => '',
39639   'description' => '',
39640   'position' => '',
39641   'weight' => '0',
39642   'file' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.admin.inc',
39643 ))
39644 ->values(array(
39645   'path' => 'admin/content/taxonomy/add/vocabulary',
39646   'load_functions' => '',
39647   'to_arg_functions' => '',
39648   'access_callback' => 'user_access',
39649   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39650   'page_callback' => 'drupal_get_form',
39651   'page_arguments' => 'a:1:{i:0;s:24:"taxonomy_form_vocabulary";}',
39652   'fit' => '31',
39653   'number_parts' => '5',
39654   'tab_parent' => 'admin/content/taxonomy',
39655   'tab_root' => 'admin/content/taxonomy',
39656   'title' => 'Add vocabulary',
39657   'title_callback' => 't',
39658   'title_arguments' => '',
39659   'type' => '128',
39660   'block_callback' => '',
39661   'description' => '',
39662   'position' => '',
39663   'weight' => '0',
39664   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39665 ))
39666 ->values(array(
39667   'path' => 'admin/content/taxonomy/edit/term',
39668   'load_functions' => '',
39669   'to_arg_functions' => '',
39670   'access_callback' => 'user_access',
39671   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39672   'page_callback' => 'taxonomy_admin_term_edit',
39673   'page_arguments' => 'a:0:{}',
39674   'fit' => '31',
39675   'number_parts' => '5',
39676   'tab_parent' => '',
39677   'tab_root' => 'admin/content/taxonomy/edit/term',
39678   'title' => 'Edit term',
39679   'title_callback' => 't',
39680   'title_arguments' => '',
39681   'type' => '4',
39682   'block_callback' => '',
39683   'description' => '',
39684   'position' => '',
39685   'weight' => '0',
39686   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39687 ))
39688 ->values(array(
39689   'path' => 'admin/content/taxonomy/edit/vocabulary/%',
39690   'load_functions' => 'a:1:{i:5;s:24:"taxonomy_vocabulary_load";}',
39691   'to_arg_functions' => '',
39692   'access_callback' => 'user_access',
39693   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39694   'page_callback' => 'taxonomy_admin_vocabulary_edit',
39695   'page_arguments' => 'a:1:{i:0;i:5;}',
39696   'fit' => '62',
39697   'number_parts' => '6',
39698   'tab_parent' => '',
39699   'tab_root' => 'admin/content/taxonomy/edit/vocabulary/%',
39700   'title' => 'Edit vocabulary',
39701   'title_callback' => 't',
39702   'title_arguments' => '',
39703   'type' => '4',
39704   'block_callback' => '',
39705   'description' => '',
39706   'position' => '',
39707   'weight' => '0',
39708   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39709 ))
39710 ->values(array(
39711   'path' => 'admin/content/taxonomy/list',
39712   'load_functions' => '',
39713   'to_arg_functions' => '',
39714   'access_callback' => 'user_access',
39715   'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
39716   'page_callback' => 'drupal_get_form',
39717   'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
39718   'fit' => '15',
39719   'number_parts' => '4',
39720   'tab_parent' => 'admin/content/taxonomy',
39721   'tab_root' => 'admin/content/taxonomy',
39722   'title' => 'List',
39723   'title_callback' => 't',
39724   'title_arguments' => '',
39725   'type' => '136',
39726   'block_callback' => '',
39727   'description' => '',
39728   'position' => '',
39729   'weight' => '-10',
39730   'file' => 'modules/taxonomy/taxonomy.admin.inc',
39731 ))
39732 ->values(array(
39733   'path' => 'admin/content/types',
39734   'load_functions' => '',
39735   'to_arg_functions' => '',
39736   'access_callback' => 'user_access',
39737   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39738   'page_callback' => 'content_types_overview',
39739   'page_arguments' => 'a:0:{}',
39740   'fit' => '7',
39741   'number_parts' => '3',
39742   'tab_parent' => '',
39743   'tab_root' => 'admin/content/types',
39744   'title' => 'Content types',
39745   'title_callback' => 't',
39746   'title_arguments' => '',
39747   'type' => '6',
39748   'block_callback' => '',
39749   'description' => 'Manage posts by content type, including default status, front page promotion, etc.',
39750   'position' => '',
39751   'weight' => '0',
39752   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39753 ))
39754 ->values(array(
39755   'path' => 'admin/content/types/add',
39756   'load_functions' => '',
39757   'to_arg_functions' => '',
39758   'access_callback' => 'user_access',
39759   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39760   'page_callback' => 'drupal_get_form',
39761   'page_arguments' => 'a:1:{i:0;s:14:"node_type_form";}',
39762   'fit' => '15',
39763   'number_parts' => '4',
39764   'tab_parent' => 'admin/content/types',
39765   'tab_root' => 'admin/content/types',
39766   'title' => 'Add content type',
39767   'title_callback' => 't',
39768   'title_arguments' => '',
39769   'type' => '128',
39770   'block_callback' => '',
39771   'description' => '',
39772   'position' => '',
39773   'weight' => '0',
39774   'file' => 'modules/node/content_types.inc',
39775 ))
39776 ->values(array(
39777   'path' => 'admin/content/types/fields',
39778   'load_functions' => '',
39779   'to_arg_functions' => '',
39780   'access_callback' => 'user_access',
39781   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39782   'page_callback' => 'content_fields_list',
39783   'page_arguments' => 'a:0:{}',
39784   'fit' => '15',
39785   'number_parts' => '4',
39786   'tab_parent' => 'admin/content/types',
39787   'tab_root' => 'admin/content/types',
39788   'title' => 'Fields',
39789   'title_callback' => 't',
39790   'title_arguments' => '',
39791   'type' => '128',
39792   'block_callback' => '',
39793   'description' => '',
39794   'position' => '',
39795   'weight' => '0',
39796   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39797 ))
39798 ->values(array(
39799   'path' => 'admin/content/types/list',
39800   'load_functions' => '',
39801   'to_arg_functions' => '',
39802   'access_callback' => 'user_access',
39803   'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
39804   'page_callback' => 'content_types_overview',
39805   'page_arguments' => 'a:0:{}',
39806   'fit' => '15',
39807   'number_parts' => '4',
39808   'tab_parent' => 'admin/content/types',
39809   'tab_root' => 'admin/content/types',
39810   'title' => 'List',
39811   'title_callback' => 't',
39812   'title_arguments' => '',
39813   'type' => '136',
39814   'block_callback' => '',
39815   'description' => '',
39816   'position' => '',
39817   'weight' => '-10',
39818   'file' => 'sites/all/modules/cck/includes/content.admin.inc',
39819 ))
39820 ->values(array(
39821   'path' => 'admin/reports',
39822   'load_functions' => '',
39823   'to_arg_functions' => '',
39824   'access_callback' => 'user_access',
39825   'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
39826   'page_callback' => 'system_admin_menu_block_page',
39827   'page_arguments' => 'a:0:{}',
39828   'fit' => '3',
39829   'number_parts' => '2',
39830   'tab_parent' => '',
39831   'tab_root' => 'admin/reports',
39832   'title' => 'Reports',
39833   'title_callback' => 't',
39834   'title_arguments' => '',
39835   'type' => '6',
39836   'block_callback' => '',
39837   'description' => 'View reports from system logs and other status information.',
39838   'position' => 'left',
39839   'weight' => '5',
39840   'file' => 'modules/system/system.admin.inc',
39841 ))
39842 ->values(array(
39843   'path' => 'admin/reports/access/%',
39844   'load_functions' => 'a:1:{i:3;N;}',
39845   'to_arg_functions' => '',
39846   'access_callback' => 'user_access',
39847   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
39848   'page_callback' => 'statistics_access_log',
39849   'page_arguments' => 'a:1:{i:0;i:3;}',
39850   'fit' => '14',
39851   'number_parts' => '4',
39852   'tab_parent' => '',
39853   'tab_root' => 'admin/reports/access/%',
39854   'title' => 'Details',
39855   'title_callback' => 't',
39856   'title_arguments' => '',
39857   'type' => '4',
39858   'block_callback' => '',
39859   'description' => 'View access log.',
39860   'position' => '',
39861   'weight' => '0',
39862   'file' => 'modules/statistics/statistics.admin.inc',
39863 ))
39864 ->values(array(
39865   'path' => 'admin/reports/hits',
39866   'load_functions' => '',
39867   'to_arg_functions' => '',
39868   'access_callback' => 'user_access',
39869   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
39870   'page_callback' => 'statistics_recent_hits',
39871   'page_arguments' => 'a:0:{}',
39872   'fit' => '7',
39873   'number_parts' => '3',
39874   'tab_parent' => '',
39875   'tab_root' => 'admin/reports/hits',
39876   'title' => 'Recent hits',
39877   'title_callback' => 't',
39878   'title_arguments' => '',
39879   'type' => '6',
39880   'block_callback' => '',
39881   'description' => 'View pages that have recently been visited.',
39882   'position' => '',
39883   'weight' => '0',
39884   'file' => 'modules/statistics/statistics.admin.inc',
39885 ))
39886 ->values(array(
39887   'path' => 'admin/reports/pages',
39888   'load_functions' => '',
39889   'to_arg_functions' => '',
39890   'access_callback' => 'user_access',
39891   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
39892   'page_callback' => 'statistics_top_pages',
39893   'page_arguments' => 'a:0:{}',
39894   'fit' => '7',
39895   'number_parts' => '3',
39896   'tab_parent' => '',
39897   'tab_root' => 'admin/reports/pages',
39898   'title' => 'Top pages',
39899   'title_callback' => 't',
39900   'title_arguments' => '',
39901   'type' => '6',
39902   'block_callback' => '',
39903   'description' => 'View pages that have been hit frequently.',
39904   'position' => '',
39905   'weight' => '1',
39906   'file' => 'modules/statistics/statistics.admin.inc',
39907 ))
39908 ->values(array(
39909   'path' => 'admin/reports/referrers',
39910   'load_functions' => '',
39911   'to_arg_functions' => '',
39912   'access_callback' => 'user_access',
39913   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
39914   'page_callback' => 'statistics_top_referrers',
39915   'page_arguments' => 'a:0:{}',
39916   'fit' => '7',
39917   'number_parts' => '3',
39918   'tab_parent' => '',
39919   'tab_root' => 'admin/reports/referrers',
39920   'title' => 'Top referrers',
39921   'title_callback' => 't',
39922   'title_arguments' => '',
39923   'type' => '6',
39924   'block_callback' => '',
39925   'description' => 'View top referrers.',
39926   'position' => '',
39927   'weight' => '0',
39928   'file' => 'modules/statistics/statistics.admin.inc',
39929 ))
39930 ->values(array(
39931   'path' => 'admin/reports/settings',
39932   'load_functions' => '',
39933   'to_arg_functions' => '',
39934   'access_callback' => 'user_access',
39935   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39936   'page_callback' => 'drupal_get_form',
39937   'page_arguments' => 'a:1:{i:0;s:34:"statistics_access_logging_settings";}',
39938   'fit' => '7',
39939   'number_parts' => '3',
39940   'tab_parent' => '',
39941   'tab_root' => 'admin/reports/settings',
39942   'title' => 'Access log settings',
39943   'title_callback' => 't',
39944   'title_arguments' => '',
39945   'type' => '6',
39946   'block_callback' => '',
39947   'description' => 'Control details about what and how your site logs.',
39948   'position' => '',
39949   'weight' => '3',
39950   'file' => 'modules/statistics/statistics.admin.inc',
39951 ))
39952 ->values(array(
39953   'path' => 'admin/reports/status',
39954   'load_functions' => '',
39955   'to_arg_functions' => '',
39956   'access_callback' => 'user_access',
39957   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39958   'page_callback' => 'system_status',
39959   'page_arguments' => 'a:0:{}',
39960   'fit' => '7',
39961   'number_parts' => '3',
39962   'tab_parent' => '',
39963   'tab_root' => 'admin/reports/status',
39964   'title' => 'Status report',
39965   'title_callback' => 't',
39966   'title_arguments' => '',
39967   'type' => '6',
39968   'block_callback' => '',
39969   'description' => "Get a status report about your site's operation and any detected problems.",
39970   'position' => '',
39971   'weight' => '10',
39972   'file' => 'modules/system/system.admin.inc',
39973 ))
39974 ->values(array(
39975   'path' => 'admin/reports/status/php',
39976   'load_functions' => '',
39977   'to_arg_functions' => '',
39978   'access_callback' => 'user_access',
39979   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
39980   'page_callback' => 'system_php',
39981   'page_arguments' => 'a:0:{}',
39982   'fit' => '15',
39983   'number_parts' => '4',
39984   'tab_parent' => '',
39985   'tab_root' => 'admin/reports/status/php',
39986   'title' => 'PHP',
39987   'title_callback' => 't',
39988   'title_arguments' => '',
39989   'type' => '4',
39990   'block_callback' => '',
39991   'description' => '',
39992   'position' => '',
39993   'weight' => '0',
39994   'file' => 'modules/system/system.admin.inc',
39995 ))
39996 ->values(array(
39997   'path' => 'admin/reports/status/run-cron',
39998   'load_functions' => '',
39999   'to_arg_functions' => '',
40000   'access_callback' => 'user_access',
40001   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40002   'page_callback' => 'system_run_cron',
40003   'page_arguments' => 'a:0:{}',
40004   'fit' => '15',
40005   'number_parts' => '4',
40006   'tab_parent' => '',
40007   'tab_root' => 'admin/reports/status/run-cron',
40008   'title' => 'Run cron',
40009   'title_callback' => 't',
40010   'title_arguments' => '',
40011   'type' => '4',
40012   'block_callback' => '',
40013   'description' => '',
40014   'position' => '',
40015   'weight' => '0',
40016   'file' => 'modules/system/system.admin.inc',
40017 ))
40018 ->values(array(
40019   'path' => 'admin/reports/status/sql',
40020   'load_functions' => '',
40021   'to_arg_functions' => '',
40022   'access_callback' => 'user_access',
40023   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40024   'page_callback' => 'system_sql',
40025   'page_arguments' => 'a:0:{}',
40026   'fit' => '15',
40027   'number_parts' => '4',
40028   'tab_parent' => '',
40029   'tab_root' => 'admin/reports/status/sql',
40030   'title' => 'SQL',
40031   'title_callback' => 't',
40032   'title_arguments' => '',
40033   'type' => '4',
40034   'block_callback' => '',
40035   'description' => '',
40036   'position' => '',
40037   'weight' => '0',
40038   'file' => 'modules/system/system.admin.inc',
40039 ))
40040 ->values(array(
40041   'path' => 'admin/reports/visitors',
40042   'load_functions' => '',
40043   'to_arg_functions' => '',
40044   'access_callback' => 'user_access',
40045   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
40046   'page_callback' => 'statistics_top_visitors',
40047   'page_arguments' => 'a:0:{}',
40048   'fit' => '7',
40049   'number_parts' => '3',
40050   'tab_parent' => '',
40051   'tab_root' => 'admin/reports/visitors',
40052   'title' => 'Top visitors',
40053   'title_callback' => 't',
40054   'title_arguments' => '',
40055   'type' => '6',
40056   'block_callback' => '',
40057   'description' => 'View visitors that hit many pages.',
40058   'position' => '',
40059   'weight' => '2',
40060   'file' => 'modules/statistics/statistics.admin.inc',
40061 ))
40062 ->values(array(
40063   'path' => 'admin/settings',
40064   'load_functions' => '',
40065   'to_arg_functions' => '',
40066   'access_callback' => 'user_access',
40067   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
40068   'page_callback' => 'system_settings_overview',
40069   'page_arguments' => 'a:0:{}',
40070   'fit' => '3',
40071   'number_parts' => '2',
40072   'tab_parent' => '',
40073   'tab_root' => 'admin/settings',
40074   'title' => 'Site configuration',
40075   'title_callback' => 't',
40076   'title_arguments' => '',
40077   'type' => '6',
40078   'block_callback' => '',
40079   'description' => 'Adjust basic site configuration options.',
40080   'position' => 'right',
40081   'weight' => '-5',
40082   'file' => 'modules/system/system.admin.inc',
40083 ))
40084 ->values(array(
40085   'path' => 'admin/settings/actions',
40086   'load_functions' => '',
40087   'to_arg_functions' => '',
40088   'access_callback' => 'user_access',
40089   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
40090   'page_callback' => 'system_actions_manage',
40091   'page_arguments' => 'a:0:{}',
40092   'fit' => '7',
40093   'number_parts' => '3',
40094   'tab_parent' => '',
40095   'tab_root' => 'admin/settings/actions',
40096   'title' => 'Actions',
40097   'title_callback' => 't',
40098   'title_arguments' => '',
40099   'type' => '6',
40100   'block_callback' => '',
40101   'description' => 'Manage the actions defined for your site.',
40102   'position' => '',
40103   'weight' => '0',
40104   'file' => '',
40105 ))
40106 ->values(array(
40107   'path' => 'admin/settings/actions/configure',
40108   'load_functions' => '',
40109   'to_arg_functions' => '',
40110   'access_callback' => 'user_access',
40111   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
40112   'page_callback' => 'drupal_get_form',
40113   'page_arguments' => 'a:1:{i:0;s:24:"system_actions_configure";}',
40114   'fit' => '15',
40115   'number_parts' => '4',
40116   'tab_parent' => '',
40117   'tab_root' => 'admin/settings/actions/configure',
40118   'title' => 'Configure an advanced action',
40119   'title_callback' => 't',
40120   'title_arguments' => '',
40121   'type' => '4',
40122   'block_callback' => '',
40123   'description' => '',
40124   'position' => '',
40125   'weight' => '0',
40126   'file' => '',
40127 ))
40128 ->values(array(
40129   'path' => 'admin/settings/actions/delete/%',
40130   'load_functions' => 'a:1:{i:4;s:12:"actions_load";}',
40131   'to_arg_functions' => '',
40132   'access_callback' => 'user_access',
40133   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
40134   'page_callback' => 'drupal_get_form',
40135   'page_arguments' => 'a:2:{i:0;s:26:"system_actions_delete_form";i:1;i:4;}',
40136   'fit' => '30',
40137   'number_parts' => '5',
40138   'tab_parent' => '',
40139   'tab_root' => 'admin/settings/actions/delete/%',
40140   'title' => 'Delete action',
40141   'title_callback' => 't',
40142   'title_arguments' => '',
40143   'type' => '4',
40144   'block_callback' => '',
40145   'description' => 'Delete an action.',
40146   'position' => '',
40147   'weight' => '0',
40148   'file' => '',
40149 ))
40150 ->values(array(
40151   'path' => 'admin/settings/actions/manage',
40152   'load_functions' => '',
40153   'to_arg_functions' => '',
40154   'access_callback' => 'user_access',
40155   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
40156   'page_callback' => 'system_actions_manage',
40157   'page_arguments' => 'a:0:{}',
40158   'fit' => '15',
40159   'number_parts' => '4',
40160   'tab_parent' => 'admin/settings/actions',
40161   'tab_root' => 'admin/settings/actions',
40162   'title' => 'Manage actions',
40163   'title_callback' => 't',
40164   'title_arguments' => '',
40165   'type' => '136',
40166   'block_callback' => '',
40167   'description' => 'Manage the actions defined for your site.',
40168   'position' => '',
40169   'weight' => '-2',
40170   'file' => '',
40171 ))
40172 ->values(array(
40173   'path' => 'admin/settings/actions/orphan',
40174   'load_functions' => '',
40175   'to_arg_functions' => '',
40176   'access_callback' => 'user_access',
40177   'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
40178   'page_callback' => 'system_actions_remove_orphans',
40179   'page_arguments' => 'a:0:{}',
40180   'fit' => '15',
40181   'number_parts' => '4',
40182   'tab_parent' => '',
40183   'tab_root' => 'admin/settings/actions/orphan',
40184   'title' => 'Remove orphans',
40185   'title_callback' => 't',
40186   'title_arguments' => '',
40187   'type' => '4',
40188   'block_callback' => '',
40189   'description' => '',
40190   'position' => '',
40191   'weight' => '0',
40192   'file' => '',
40193 ))
40194 ->values(array(
40195   'path' => 'admin/settings/admin',
40196   'load_functions' => '',
40197   'to_arg_functions' => '',
40198   'access_callback' => 'user_access',
40199   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40200   'page_callback' => 'drupal_get_form',
40201   'page_arguments' => 'a:1:{i:0;s:27:"system_admin_theme_settings";}',
40202   'fit' => '7',
40203   'number_parts' => '3',
40204   'tab_parent' => '',
40205   'tab_root' => 'admin/settings/admin',
40206   'title' => 'Administration theme',
40207   'title_callback' => 't',
40208   'title_arguments' => '',
40209   'type' => '6',
40210   'block_callback' => 'system_admin_theme_settings',
40211   'description' => 'Settings for how your administrative pages should look.',
40212   'position' => 'left',
40213   'weight' => '0',
40214   'file' => 'modules/system/system.admin.inc',
40215 ))
40216 ->values(array(
40217   'path' => 'admin/settings/clean-urls',
40218   'load_functions' => '',
40219   'to_arg_functions' => '',
40220   'access_callback' => 'user_access',
40221   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40222   'page_callback' => 'drupal_get_form',
40223   'page_arguments' => 'a:1:{i:0;s:25:"system_clean_url_settings";}',
40224   'fit' => '7',
40225   'number_parts' => '3',
40226   'tab_parent' => '',
40227   'tab_root' => 'admin/settings/clean-urls',
40228   'title' => 'Clean URLs',
40229   'title_callback' => 't',
40230   'title_arguments' => '',
40231   'type' => '6',
40232   'block_callback' => '',
40233   'description' => 'Enable or disable clean URLs for your site.',
40234   'position' => '',
40235   'weight' => '0',
40236   'file' => 'modules/system/system.admin.inc',
40237 ))
40238 ->values(array(
40239   'path' => 'admin/settings/clean-urls/check',
40240   'load_functions' => '',
40241   'to_arg_functions' => '',
40242   'access_callback' => '1',
40243   'access_arguments' => 'a:0:{}',
40244   'page_callback' => 'drupal_json',
40245   'page_arguments' => 'a:1:{i:0;a:1:{s:6:"status";b:1;}}',
40246   'fit' => '15',
40247   'number_parts' => '4',
40248   'tab_parent' => '',
40249   'tab_root' => 'admin/settings/clean-urls/check',
40250   'title' => 'Clean URL check',
40251   'title_callback' => 't',
40252   'title_arguments' => '',
40253   'type' => '4',
40254   'block_callback' => '',
40255   'description' => '',
40256   'position' => '',
40257   'weight' => '0',
40258   'file' => '',
40259 ))
40260 ->values(array(
40261   'path' => 'admin/settings/date-time',
40262   'load_functions' => '',
40263   'to_arg_functions' => '',
40264   'access_callback' => 'user_access',
40265   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40266   'page_callback' => 'drupal_get_form',
40267   'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
40268   'fit' => '7',
40269   'number_parts' => '3',
40270   'tab_parent' => '',
40271   'tab_root' => 'admin/settings/date-time',
40272   'title' => 'Date and time',
40273   'title_callback' => 't',
40274   'title_arguments' => '',
40275   'type' => '6',
40276   'block_callback' => '',
40277   'description' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
40278   'position' => '',
40279   'weight' => '0',
40280   'file' => 'modules/system/system.admin.inc',
40281 ))
40282 ->values(array(
40283   'path' => 'admin/settings/date-time/configure',
40284   'load_functions' => '',
40285   'to_arg_functions' => '',
40286   'access_callback' => 'user_access',
40287   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40288   'page_callback' => 'drupal_get_form',
40289   'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
40290   'fit' => '15',
40291   'number_parts' => '4',
40292   'tab_parent' => 'admin/settings/date-time',
40293   'tab_root' => 'admin/settings/date-time',
40294   'title' => 'Date and time',
40295   'title_callback' => 't',
40296   'title_arguments' => '',
40297   'type' => '136',
40298   'block_callback' => '',
40299   'description' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
40300   'position' => '',
40301   'weight' => '0',
40302   'file' => 'modules/system/system.admin.inc',
40303 ))
40304 ->values(array(
40305   'path' => 'admin/settings/date-time/delete/%',
40306   'load_functions' => 'a:1:{i:4;N;}',
40307   'to_arg_functions' => '',
40308   'access_callback' => 'user_access',
40309   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40310   'page_callback' => 'drupal_get_form',
40311   'page_arguments' => 'a:2:{i:0;s:32:"date_api_delete_format_type_form";i:1;i:4;}',
40312   'fit' => '30',
40313   'number_parts' => '5',
40314   'tab_parent' => '',
40315   'tab_root' => 'admin/settings/date-time/delete/%',
40316   'title' => 'Delete date format type',
40317   'title_callback' => 't',
40318   'title_arguments' => '',
40319   'type' => '4',
40320   'block_callback' => '',
40321   'description' => 'Allow users to delete a configured date format type.',
40322   'position' => '',
40323   'weight' => '0',
40324   'file' => 'sites/all/modules/date/date_api.admin.inc',
40325 ))
40326 ->values(array(
40327   'path' => 'admin/settings/date-time/formats',
40328   'load_functions' => '',
40329   'to_arg_functions' => '',
40330   'access_callback' => 'user_access',
40331   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40332   'page_callback' => 'drupal_get_form',
40333   'page_arguments' => 'a:1:{i:0;s:26:"date_api_date_formats_form";}',
40334   'fit' => '15',
40335   'number_parts' => '4',
40336   'tab_parent' => 'admin/settings/date-time',
40337   'tab_root' => 'admin/settings/date-time',
40338   'title' => 'Formats',
40339   'title_callback' => 't',
40340   'title_arguments' => '',
40341   'type' => '128',
40342   'block_callback' => '',
40343   'description' => 'Allow users to configure date formats',
40344   'position' => '',
40345   'weight' => '1',
40346   'file' => 'sites/all/modules/date/date_api.admin.inc',
40347 ))
40348 ->values(array(
40349   'path' => 'admin/settings/date-time/formats/add',
40350   'load_functions' => '',
40351   'to_arg_functions' => '',
40352   'access_callback' => 'user_access',
40353   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40354   'page_callback' => 'drupal_get_form',
40355   'page_arguments' => 'a:1:{i:0;s:30:"date_api_add_date_formats_form";}',
40356   'fit' => '31',
40357   'number_parts' => '5',
40358   'tab_parent' => 'admin/settings/date-time/formats',
40359   'tab_root' => 'admin/settings/date-time',
40360   'title' => 'Add format',
40361   'title_callback' => 't',
40362   'title_arguments' => '',
40363   'type' => '128',
40364   'block_callback' => '',
40365   'description' => 'Allow users to add additional date formats.',
40366   'position' => '',
40367   'weight' => '3',
40368   'file' => 'sites/all/modules/date/date_api.admin.inc',
40369 ))
40370 ->values(array(
40371   'path' => 'admin/settings/date-time/formats/configure',
40372   'load_functions' => '',
40373   'to_arg_functions' => '',
40374   'access_callback' => 'user_access',
40375   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40376   'page_callback' => 'drupal_get_form',
40377   'page_arguments' => 'a:1:{i:0;s:26:"date_api_date_formats_form";}',
40378   'fit' => '31',
40379   'number_parts' => '5',
40380   'tab_parent' => 'admin/settings/date-time/formats',
40381   'tab_root' => 'admin/settings/date-time',
40382   'title' => 'Configure',
40383   'title_callback' => 't',
40384   'title_arguments' => '',
40385   'type' => '136',
40386   'block_callback' => '',
40387   'description' => 'Allow users to configure date formats',
40388   'position' => '',
40389   'weight' => '1',
40390   'file' => 'sites/all/modules/date/date_api.admin.inc',
40391 ))
40392 ->values(array(
40393   'path' => 'admin/settings/date-time/formats/custom',
40394   'load_functions' => '',
40395   'to_arg_functions' => '',
40396   'access_callback' => 'user_access',
40397   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40398   'page_callback' => 'date_api_configure_custom_date_formats',
40399   'page_arguments' => 'a:0:{}',
40400   'fit' => '31',
40401   'number_parts' => '5',
40402   'tab_parent' => 'admin/settings/date-time/formats',
40403   'tab_root' => 'admin/settings/date-time',
40404   'title' => 'Custom formats',
40405   'title_callback' => 't',
40406   'title_arguments' => '',
40407   'type' => '128',
40408   'block_callback' => '',
40409   'description' => 'Allow users to configure custom date formats.',
40410   'position' => '',
40411   'weight' => '2',
40412   'file' => 'sites/all/modules/date/date_api.admin.inc',
40413 ))
40414 ->values(array(
40415   'path' => 'admin/settings/date-time/formats/delete/%',
40416   'load_functions' => 'a:1:{i:5;N;}',
40417   'to_arg_functions' => '',
40418   'access_callback' => 'user_access',
40419   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40420   'page_callback' => 'drupal_get_form',
40421   'page_arguments' => 'a:2:{i:0;s:27:"date_api_delete_format_form";i:1;i:5;}',
40422   'fit' => '62',
40423   'number_parts' => '6',
40424   'tab_parent' => '',
40425   'tab_root' => 'admin/settings/date-time/formats/delete/%',
40426   'title' => 'Delete date format',
40427   'title_callback' => 't',
40428   'title_arguments' => '',
40429   'type' => '4',
40430   'block_callback' => '',
40431   'description' => 'Allow users to delete a configured date format.',
40432   'position' => '',
40433   'weight' => '0',
40434   'file' => 'sites/all/modules/date/date_api.admin.inc',
40435 ))
40436 ->values(array(
40437   'path' => 'admin/settings/date-time/formats/lookup',
40438   'load_functions' => '',
40439   'to_arg_functions' => '',
40440   'access_callback' => 'user_access',
40441   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40442   'page_callback' => 'date_api_date_time_lookup',
40443   'page_arguments' => 'a:0:{}',
40444   'fit' => '31',
40445   'number_parts' => '5',
40446   'tab_parent' => '',
40447   'tab_root' => 'admin/settings/date-time/formats/lookup',
40448   'title' => 'Date and time lookup',
40449   'title_callback' => 't',
40450   'title_arguments' => '',
40451   'type' => '4',
40452   'block_callback' => '',
40453   'description' => '',
40454   'position' => '',
40455   'weight' => '0',
40456   'file' => '',
40457 ))
40458 ->values(array(
40459   'path' => 'admin/settings/date-time/lookup',
40460   'load_functions' => '',
40461   'to_arg_functions' => '',
40462   'access_callback' => 'user_access',
40463   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40464   'page_callback' => 'system_date_time_lookup',
40465   'page_arguments' => 'a:0:{}',
40466   'fit' => '15',
40467   'number_parts' => '4',
40468   'tab_parent' => '',
40469   'tab_root' => 'admin/settings/date-time/lookup',
40470   'title' => 'Date and time lookup',
40471   'title_callback' => 't',
40472   'title_arguments' => '',
40473   'type' => '4',
40474   'block_callback' => '',
40475   'description' => '',
40476   'position' => '',
40477   'weight' => '0',
40478   'file' => 'modules/system/system.admin.inc',
40479 ))
40480 ->values(array(
40481   'path' => 'admin/settings/email',
40482   'load_functions' => '',
40483   'to_arg_functions' => '',
40484   'access_callback' => 'user_access',
40485   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40486   'page_callback' => 'drupal_get_form',
40487   'page_arguments' => 'a:1:{i:0;s:20:"email_admin_settings";}',
40488   'fit' => '7',
40489   'number_parts' => '3',
40490   'tab_parent' => '',
40491   'tab_root' => 'admin/settings/email',
40492   'title' => 'CCK Email Contact Form Settings',
40493   'title_callback' => 't',
40494   'title_arguments' => '',
40495   'type' => '6',
40496   'block_callback' => '',
40497   'description' => 'Administer flood control settings for email contact forms',
40498   'position' => '',
40499   'weight' => '0',
40500   'file' => '',
40501 ))
40502 ->values(array(
40503   'path' => 'admin/settings/error-reporting',
40504   'load_functions' => '',
40505   'to_arg_functions' => '',
40506   'access_callback' => 'user_access',
40507   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40508   'page_callback' => 'drupal_get_form',
40509   'page_arguments' => 'a:1:{i:0;s:31:"system_error_reporting_settings";}',
40510   'fit' => '7',
40511   'number_parts' => '3',
40512   'tab_parent' => '',
40513   'tab_root' => 'admin/settings/error-reporting',
40514   'title' => 'Error reporting',
40515   'title_callback' => 't',
40516   'title_arguments' => '',
40517   'type' => '6',
40518   'block_callback' => '',
40519   'description' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.',
40520   'position' => '',
40521   'weight' => '0',
40522   'file' => 'modules/system/system.admin.inc',
40523 ))
40524 ->values(array(
40525   'path' => 'admin/settings/event',
40526   'load_functions' => '',
40527   'to_arg_functions' => '',
40528   'access_callback' => 'user_access',
40529   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40530   'page_callback' => 'system_admin_menu_block_page',
40531   'page_arguments' => 'a:0:{}',
40532   'fit' => '7',
40533   'number_parts' => '3',
40534   'tab_parent' => '',
40535   'tab_root' => 'admin/settings/event',
40536   'title' => 'Events',
40537   'title_callback' => 't',
40538   'title_arguments' => '',
40539   'type' => '6',
40540   'block_callback' => '',
40541   'description' => 'Set up how your site handles events.',
40542   'position' => '',
40543   'weight' => '0',
40544   'file' => 'modules/system/system.admin.inc',
40545 ))
40546 ->values(array(
40547   'path' => 'admin/settings/event/overview',
40548   'load_functions' => '',
40549   'to_arg_functions' => '',
40550   'access_callback' => 'user_access',
40551   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40552   'page_callback' => 'drupal_get_form',
40553   'page_arguments' => 'a:1:{i:0;s:29:"event_admin_overview_settings";}',
40554   'fit' => '15',
40555   'number_parts' => '4',
40556   'tab_parent' => '',
40557   'tab_root' => 'admin/settings/event/overview',
40558   'title' => 'Event overview',
40559   'title_callback' => 't',
40560   'title_arguments' => '',
40561   'type' => '6',
40562   'block_callback' => '',
40563   'description' => 'Change how event summary information is displayed.',
40564   'position' => '',
40565   'weight' => '0',
40566   'file' => '',
40567 ))
40568 ->values(array(
40569   'path' => 'admin/settings/event/timezone',
40570   'load_functions' => '',
40571   'to_arg_functions' => '',
40572   'access_callback' => 'user_access',
40573   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40574   'page_callback' => 'drupal_get_form',
40575   'page_arguments' => 'a:1:{i:0;s:29:"event_admin_timezone_settings";}',
40576   'fit' => '15',
40577   'number_parts' => '4',
40578   'tab_parent' => '',
40579   'tab_root' => 'admin/settings/event/timezone',
40580   'title' => 'Timezone handling',
40581   'title_callback' => 't',
40582   'title_arguments' => '',
40583   'type' => '6',
40584   'block_callback' => '',
40585   'description' => 'Change how timezone information is saved and displayed.',
40586   'position' => '',
40587   'weight' => '0',
40588   'file' => '',
40589 ))
40590 ->values(array(
40591   'path' => 'admin/settings/file-system',
40592   'load_functions' => '',
40593   'to_arg_functions' => '',
40594   'access_callback' => 'user_access',
40595   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40596   'page_callback' => 'drupal_get_form',
40597   'page_arguments' => 'a:1:{i:0;s:27:"system_file_system_settings";}',
40598   'fit' => '7',
40599   'number_parts' => '3',
40600   'tab_parent' => '',
40601   'tab_root' => 'admin/settings/file-system',
40602   'title' => 'File system',
40603   'title_callback' => 't',
40604   'title_arguments' => '',
40605   'type' => '6',
40606   'block_callback' => '',
40607   'description' => 'Tell Drupal where to store uploaded files and how they are accessed.',
40608   'position' => '',
40609   'weight' => '0',
40610   'file' => 'modules/system/system.admin.inc',
40611 ))
40612 ->values(array(
40613   'path' => 'admin/settings/filters',
40614   'load_functions' => '',
40615   'to_arg_functions' => '',
40616   'access_callback' => 'user_access',
40617   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40618   'page_callback' => 'drupal_get_form',
40619   'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
40620   'fit' => '7',
40621   'number_parts' => '3',
40622   'tab_parent' => '',
40623   'tab_root' => 'admin/settings/filters',
40624   'title' => 'Input formats',
40625   'title_callback' => 't',
40626   'title_arguments' => '',
40627   'type' => '6',
40628   'block_callback' => '',
40629   'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
40630   'position' => '',
40631   'weight' => '0',
40632   'file' => 'modules/filter/filter.admin.inc',
40633 ))
40634 ->values(array(
40635   'path' => 'admin/settings/filters/%',
40636   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
40637   'to_arg_functions' => '',
40638   'access_callback' => 'user_access',
40639   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40640   'page_callback' => 'filter_admin_format_page',
40641   'page_arguments' => 'a:1:{i:0;i:3;}',
40642   'fit' => '14',
40643   'number_parts' => '4',
40644   'tab_parent' => '',
40645   'tab_root' => 'admin/settings/filters/%',
40646   'title' => '',
40647   'title_callback' => 'filter_admin_format_title',
40648   'title_arguments' => 'a:1:{i:0;i:3;}',
40649   'type' => '4',
40650   'block_callback' => '',
40651   'description' => '',
40652   'position' => '',
40653   'weight' => '0',
40654   'file' => 'modules/filter/filter.admin.inc',
40655 ))
40656 ->values(array(
40657   'path' => 'admin/settings/filters/%/configure',
40658   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
40659   'to_arg_functions' => '',
40660   'access_callback' => 'user_access',
40661   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40662   'page_callback' => 'filter_admin_configure_page',
40663   'page_arguments' => 'a:1:{i:0;i:3;}',
40664   'fit' => '29',
40665   'number_parts' => '5',
40666   'tab_parent' => 'admin/settings/filters/%',
40667   'tab_root' => 'admin/settings/filters/%',
40668   'title' => 'Configure',
40669   'title_callback' => 't',
40670   'title_arguments' => '',
40671   'type' => '128',
40672   'block_callback' => '',
40673   'description' => '',
40674   'position' => '',
40675   'weight' => '1',
40676   'file' => 'modules/filter/filter.admin.inc',
40677 ))
40678 ->values(array(
40679   'path' => 'admin/settings/filters/%/edit',
40680   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
40681   'to_arg_functions' => '',
40682   'access_callback' => 'user_access',
40683   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40684   'page_callback' => 'filter_admin_format_page',
40685   'page_arguments' => 'a:1:{i:0;i:3;}',
40686   'fit' => '29',
40687   'number_parts' => '5',
40688   'tab_parent' => 'admin/settings/filters/%',
40689   'tab_root' => 'admin/settings/filters/%',
40690   'title' => 'Edit',
40691   'title_callback' => 't',
40692   'title_arguments' => '',
40693   'type' => '136',
40694   'block_callback' => '',
40695   'description' => '',
40696   'position' => '',
40697   'weight' => '0',
40698   'file' => 'modules/filter/filter.admin.inc',
40699 ))
40700 ->values(array(
40701   'path' => 'admin/settings/filters/%/order',
40702   'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
40703   'to_arg_functions' => '',
40704   'access_callback' => 'user_access',
40705   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40706   'page_callback' => 'filter_admin_order_page',
40707   'page_arguments' => 'a:1:{i:0;i:3;}',
40708   'fit' => '29',
40709   'number_parts' => '5',
40710   'tab_parent' => 'admin/settings/filters/%',
40711   'tab_root' => 'admin/settings/filters/%',
40712   'title' => 'Rearrange',
40713   'title_callback' => 't',
40714   'title_arguments' => '',
40715   'type' => '128',
40716   'block_callback' => '',
40717   'description' => '',
40718   'position' => '',
40719   'weight' => '2',
40720   'file' => 'modules/filter/filter.admin.inc',
40721 ))
40722 ->values(array(
40723   'path' => 'admin/settings/filters/add',
40724   'load_functions' => '',
40725   'to_arg_functions' => '',
40726   'access_callback' => 'user_access',
40727   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40728   'page_callback' => 'filter_admin_format_page',
40729   'page_arguments' => 'a:0:{}',
40730   'fit' => '15',
40731   'number_parts' => '4',
40732   'tab_parent' => 'admin/settings/filters',
40733   'tab_root' => 'admin/settings/filters',
40734   'title' => 'Add input format',
40735   'title_callback' => 't',
40736   'title_arguments' => '',
40737   'type' => '128',
40738   'block_callback' => '',
40739   'description' => '',
40740   'position' => '',
40741   'weight' => '1',
40742   'file' => 'modules/filter/filter.admin.inc',
40743 ))
40744 ->values(array(
40745   'path' => 'admin/settings/filters/delete',
40746   'load_functions' => '',
40747   'to_arg_functions' => '',
40748   'access_callback' => 'user_access',
40749   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40750   'page_callback' => 'drupal_get_form',
40751   'page_arguments' => 'a:1:{i:0;s:19:"filter_admin_delete";}',
40752   'fit' => '15',
40753   'number_parts' => '4',
40754   'tab_parent' => '',
40755   'tab_root' => 'admin/settings/filters/delete',
40756   'title' => 'Delete input format',
40757   'title_callback' => 't',
40758   'title_arguments' => '',
40759   'type' => '4',
40760   'block_callback' => '',
40761   'description' => '',
40762   'position' => '',
40763   'weight' => '0',
40764   'file' => 'modules/filter/filter.admin.inc',
40765 ))
40766 ->values(array(
40767   'path' => 'admin/settings/filters/list',
40768   'load_functions' => '',
40769   'to_arg_functions' => '',
40770   'access_callback' => 'user_access',
40771   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40772   'page_callback' => 'drupal_get_form',
40773   'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
40774   'fit' => '15',
40775   'number_parts' => '4',
40776   'tab_parent' => 'admin/settings/filters',
40777   'tab_root' => 'admin/settings/filters',
40778   'title' => 'List',
40779   'title_callback' => 't',
40780   'title_arguments' => '',
40781   'type' => '136',
40782   'block_callback' => '',
40783   'description' => '',
40784   'position' => '',
40785   'weight' => '0',
40786   'file' => 'modules/filter/filter.admin.inc',
40787 ))
40788 ->values(array(
40789   'path' => 'admin/settings/image-toolkit',
40790   'load_functions' => '',
40791   'to_arg_functions' => '',
40792   'access_callback' => 'user_access',
40793   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40794   'page_callback' => 'drupal_get_form',
40795   'page_arguments' => 'a:1:{i:0;s:29:"system_image_toolkit_settings";}',
40796   'fit' => '7',
40797   'number_parts' => '3',
40798   'tab_parent' => '',
40799   'tab_root' => 'admin/settings/image-toolkit',
40800   'title' => 'Image toolkit',
40801   'title_callback' => 't',
40802   'title_arguments' => '',
40803   'type' => '6',
40804   'block_callback' => '',
40805   'description' => 'Choose which image toolkit to use if you have installed optional toolkits.',
40806   'position' => '',
40807   'weight' => '0',
40808   'file' => 'modules/system/system.admin.inc',
40809 ))
40810 ->values(array(
40811   'path' => 'admin/settings/imageapi',
40812   'load_functions' => '',
40813   'to_arg_functions' => '',
40814   'access_callback' => 'user_access',
40815   'access_arguments' => 'a:1:{i:0;s:19:"administer imageapi";}',
40816   'page_callback' => 'drupal_get_form',
40817   'page_arguments' => 'a:1:{i:0;s:17:"imageapi_settings";}',
40818   'fit' => '7',
40819   'number_parts' => '3',
40820   'tab_parent' => '',
40821   'tab_root' => 'admin/settings/imageapi',
40822   'title' => 'ImageAPI',
40823   'title_callback' => 't',
40824   'title_arguments' => '',
40825   'type' => '6',
40826   'block_callback' => '',
40827   'description' => 'Configure ImageAPI.',
40828   'position' => '',
40829   'weight' => '0',
40830   'file' => '',
40831 ))
40832 ->values(array(
40833   'path' => 'admin/settings/language',
40834   'load_functions' => '',
40835   'to_arg_functions' => '',
40836   'access_callback' => 'user_access',
40837   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40838   'page_callback' => 'locale_inc_callback',
40839   'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:30:"locale_languages_overview_form";}',
40840   'fit' => '7',
40841   'number_parts' => '3',
40842   'tab_parent' => '',
40843   'tab_root' => 'admin/settings/language',
40844   'title' => 'Languages',
40845   'title_callback' => 't',
40846   'title_arguments' => '',
40847   'type' => '6',
40848   'block_callback' => '',
40849   'description' => 'Configure languages for content and the user interface.',
40850   'position' => '',
40851   'weight' => '0',
40852   'file' => '',
40853 ))
40854 ->values(array(
40855   'path' => 'admin/settings/language/add',
40856   'load_functions' => '',
40857   'to_arg_functions' => '',
40858   'access_callback' => 'user_access',
40859   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40860   'page_callback' => 'locale_inc_callback',
40861   'page_arguments' => 'a:1:{i:0;s:27:"locale_languages_add_screen";}',
40862   'fit' => '15',
40863   'number_parts' => '4',
40864   'tab_parent' => 'admin/settings/language',
40865   'tab_root' => 'admin/settings/language',
40866   'title' => 'Add language',
40867   'title_callback' => 't',
40868   'title_arguments' => '',
40869   'type' => '128',
40870   'block_callback' => '',
40871   'description' => '',
40872   'position' => '',
40873   'weight' => '5',
40874   'file' => '',
40875 ))
40876 ->values(array(
40877   'path' => 'admin/settings/language/configure',
40878   'load_functions' => '',
40879   'to_arg_functions' => '',
40880   'access_callback' => 'user_access',
40881   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40882   'page_callback' => 'locale_inc_callback',
40883   'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:31:"locale_languages_configure_form";}',
40884   'fit' => '15',
40885   'number_parts' => '4',
40886   'tab_parent' => 'admin/settings/language',
40887   'tab_root' => 'admin/settings/language',
40888   'title' => 'Configure',
40889   'title_callback' => 't',
40890   'title_arguments' => '',
40891   'type' => '128',
40892   'block_callback' => '',
40893   'description' => '',
40894   'position' => '',
40895   'weight' => '10',
40896   'file' => '',
40897 ))
40898 ->values(array(
40899   'path' => 'admin/settings/language/configure/language',
40900   'load_functions' => '',
40901   'to_arg_functions' => '',
40902   'access_callback' => 'user_access',
40903   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40904   'page_callback' => 'locale_inc_callback',
40905   'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:31:"locale_languages_configure_form";}',
40906   'fit' => '31',
40907   'number_parts' => '5',
40908   'tab_parent' => 'admin/settings/language/configure',
40909   'tab_root' => 'admin/settings/language',
40910   'title' => 'Language negotiation',
40911   'title_callback' => 't',
40912   'title_arguments' => '',
40913   'type' => '136',
40914   'block_callback' => '',
40915   'description' => '',
40916   'position' => '',
40917   'weight' => '-10',
40918   'file' => '',
40919 ))
40920 ->values(array(
40921   'path' => 'admin/settings/language/configure/strings',
40922   'load_functions' => '',
40923   'to_arg_functions' => '',
40924   'access_callback' => 'user_access',
40925   'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
40926   'page_callback' => 'drupal_get_form',
40927   'page_arguments' => 'a:1:{i:0;s:26:"i18nstrings_admin_settings";}',
40928   'fit' => '31',
40929   'number_parts' => '5',
40930   'tab_parent' => 'admin/settings/language/configure',
40931   'tab_root' => 'admin/settings/language',
40932   'title' => 'String translation',
40933   'title_callback' => 't',
40934   'title_arguments' => '',
40935   'type' => '128',
40936   'block_callback' => '',
40937   'description' => '',
40938   'position' => '',
40939   'weight' => '20',
40940   'file' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.admin.inc',
40941 ))
40942 ->values(array(
40943   'path' => 'admin/settings/language/delete/%',
40944   'load_functions' => 'a:1:{i:4;N;}',
40945   'to_arg_functions' => '',
40946   'access_callback' => 'user_access',
40947   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40948   'page_callback' => 'locale_inc_callback',
40949   'page_arguments' => 'a:3:{i:0;s:15:"drupal_get_form";i:1;s:28:"locale_languages_delete_form";i:2;i:4;}',
40950   'fit' => '30',
40951   'number_parts' => '5',
40952   'tab_parent' => '',
40953   'tab_root' => 'admin/settings/language/delete/%',
40954   'title' => 'Confirm',
40955   'title_callback' => 't',
40956   'title_arguments' => '',
40957   'type' => '4',
40958   'block_callback' => '',
40959   'description' => '',
40960   'position' => '',
40961   'weight' => '0',
40962   'file' => '',
40963 ))
40964 ->values(array(
40965   'path' => 'admin/settings/language/edit/%',
40966   'load_functions' => 'a:1:{i:4;N;}',
40967   'to_arg_functions' => '',
40968   'access_callback' => 'user_access',
40969   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
40970   'page_callback' => 'locale_inc_callback',
40971   'page_arguments' => 'a:3:{i:0;s:15:"drupal_get_form";i:1;s:26:"locale_languages_edit_form";i:2;i:4;}',
40972   'fit' => '30',
40973   'number_parts' => '5',
40974   'tab_parent' => '',
40975   'tab_root' => 'admin/settings/language/edit/%',
40976   'title' => 'Edit language',
40977   'title_callback' => 't',
40978   'title_arguments' => '',
40979   'type' => '4',
40980   'block_callback' => '',
40981   'description' => '',
40982   'position' => '',
40983   'weight' => '0',
40984   'file' => '',
40985 ))
40986 ->values(array(
40987   'path' => 'admin/settings/language/i18n',
40988   'load_functions' => '',
40989   'to_arg_functions' => '',
40990   'access_callback' => 'user_access',
40991   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
40992   'page_callback' => 'drupal_get_form',
40993   'page_arguments' => 'a:1:{i:0;s:19:"i18n_admin_settings";}',
40994   'fit' => '15',
40995   'number_parts' => '4',
40996   'tab_parent' => 'admin/settings/language',
40997   'tab_root' => 'admin/settings/language',
40998   'title' => 'Multilingual system',
40999   'title_callback' => 't',
41000   'title_arguments' => '',
41001   'type' => '128',
41002   'block_callback' => '',
41003   'description' => 'Configure extended options for multilingual content and translations.',
41004   'position' => '',
41005   'weight' => '10',
41006   'file' => 'sites/all/modules/i18n/i18n.admin.inc',
41007 ))
41008 ->values(array(
41009   'path' => 'admin/settings/language/i18n/configure',
41010   'load_functions' => '',
41011   'to_arg_functions' => '',
41012   'access_callback' => 'user_access',
41013   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41014   'page_callback' => 'drupal_get_form',
41015   'page_arguments' => 'a:1:{i:0;s:19:"i18n_admin_settings";}',
41016   'fit' => '31',
41017   'number_parts' => '5',
41018   'tab_parent' => 'admin/settings/language/i18n',
41019   'tab_root' => 'admin/settings/language',
41020   'title' => 'Multilingual system',
41021   'title_callback' => 't',
41022   'title_arguments' => '',
41023   'type' => '136',
41024   'block_callback' => '',
41025   'description' => 'Configure extended options for multilingual content and translations.',
41026   'position' => '',
41027   'weight' => '0',
41028   'file' => 'sites/all/modules/i18n/i18n.admin.inc',
41029 ))
41030 ->values(array(
41031   'path' => 'admin/settings/language/i18n/variables',
41032   'load_functions' => '',
41033   'to_arg_functions' => '',
41034   'access_callback' => 'user_access',
41035   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41036   'page_callback' => 'drupal_get_form',
41037   'page_arguments' => 'a:1:{i:0;s:25:"i18n_admin_variables_form";}',
41038   'fit' => '31',
41039   'number_parts' => '5',
41040   'tab_parent' => 'admin/settings/language/i18n',
41041   'tab_root' => 'admin/settings/language',
41042   'title' => 'Variables',
41043   'title_callback' => 't',
41044   'title_arguments' => '',
41045   'type' => '128',
41046   'block_callback' => '',
41047   'description' => 'Multilingual variables.',
41048   'position' => '',
41049   'weight' => '0',
41050   'file' => 'sites/all/modules/i18n/i18n.admin.inc',
41051 ))
41052 ->values(array(
41053   'path' => 'admin/settings/language/overview',
41054   'load_functions' => '',
41055   'to_arg_functions' => '',
41056   'access_callback' => 'user_access',
41057   'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}',
41058   'page_callback' => 'locale_inc_callback',
41059   'page_arguments' => 'a:2:{i:0;s:15:"drupal_get_form";i:1;s:30:"locale_languages_overview_form";}',
41060   'fit' => '15',
41061   'number_parts' => '4',
41062   'tab_parent' => 'admin/settings/language',
41063   'tab_root' => 'admin/settings/language',
41064   'title' => 'List',
41065   'title_callback' => 't',
41066   'title_arguments' => '',
41067   'type' => '136',
41068   'block_callback' => '',
41069   'description' => '',
41070   'position' => '',
41071   'weight' => '0',
41072   'file' => '',
41073 ))
41074 ->values(array(
41075   'path' => 'admin/settings/logging',
41076   'load_functions' => '',
41077   'to_arg_functions' => '',
41078   'access_callback' => 'user_access',
41079   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41080   'page_callback' => 'system_logging_overview',
41081   'page_arguments' => 'a:0:{}',
41082   'fit' => '7',
41083   'number_parts' => '3',
41084   'tab_parent' => '',
41085   'tab_root' => 'admin/settings/logging',
41086   'title' => 'Logging and alerts',
41087   'title_callback' => 't',
41088   'title_arguments' => '',
41089   'type' => '6',
41090   'block_callback' => '',
41091   'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.",
41092   'position' => '',
41093   'weight' => '0',
41094   'file' => 'modules/system/system.admin.inc',
41095 ))
41096 ->values(array(
41097   'path' => 'admin/settings/performance',
41098   'load_functions' => '',
41099   'to_arg_functions' => '',
41100   'access_callback' => 'user_access',
41101   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41102   'page_callback' => 'drupal_get_form',
41103   'page_arguments' => 'a:1:{i:0;s:27:"system_performance_settings";}',
41104   'fit' => '7',
41105   'number_parts' => '3',
41106   'tab_parent' => '',
41107   'tab_root' => 'admin/settings/performance',
41108   'title' => 'Performance',
41109   'title_callback' => 't',
41110   'title_arguments' => '',
41111   'type' => '6',
41112   'block_callback' => '',
41113   'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
41114   'position' => '',
41115   'weight' => '0',
41116   'file' => 'modules/system/system.admin.inc',
41117 ))
41118 ->values(array(
41119   'path' => 'admin/settings/site-information',
41120   'load_functions' => '',
41121   'to_arg_functions' => '',
41122   'access_callback' => 'user_access',
41123   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41124   'page_callback' => 'drupal_get_form',
41125   'page_arguments' => 'a:1:{i:0;s:32:"system_site_information_settings";}',
41126   'fit' => '7',
41127   'number_parts' => '3',
41128   'tab_parent' => '',
41129   'tab_root' => 'admin/settings/site-information',
41130   'title' => 'Site information',
41131   'title_callback' => 't',
41132   'title_arguments' => '',
41133   'type' => '6',
41134   'block_callback' => '',
41135   'description' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
41136   'position' => '',
41137   'weight' => '0',
41138   'file' => 'modules/system/system.admin.inc',
41139 ))
41140 ->values(array(
41141   'path' => 'admin/settings/site-maintenance',
41142   'load_functions' => '',
41143   'to_arg_functions' => '',
41144   'access_callback' => 'user_access',
41145   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41146   'page_callback' => 'drupal_get_form',
41147   'page_arguments' => 'a:1:{i:0;s:32:"system_site_maintenance_settings";}',
41148   'fit' => '7',
41149   'number_parts' => '3',
41150   'tab_parent' => '',
41151   'tab_root' => 'admin/settings/site-maintenance',
41152   'title' => 'Site maintenance',
41153   'title_callback' => 't',
41154   'title_arguments' => '',
41155   'type' => '6',
41156   'block_callback' => '',
41157   'description' => 'Take the site off-line for maintenance or bring it back online.',
41158   'position' => '',
41159   'weight' => '0',
41160   'file' => 'modules/system/system.admin.inc',
41161 ))
41162 ->values(array(
41163   'path' => 'admin/settings/uploads',
41164   'load_functions' => '',
41165   'to_arg_functions' => '',
41166   'access_callback' => 'user_access',
41167   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41168   'page_callback' => 'drupal_get_form',
41169   'page_arguments' => 'a:1:{i:0;s:21:"upload_admin_settings";}',
41170   'fit' => '7',
41171   'number_parts' => '3',
41172   'tab_parent' => '',
41173   'tab_root' => 'admin/settings/uploads',
41174   'title' => 'File uploads',
41175   'title_callback' => 't',
41176   'title_arguments' => '',
41177   'type' => '6',
41178   'block_callback' => '',
41179   'description' => 'Control how files may be attached to content.',
41180   'position' => '',
41181   'weight' => '0',
41182   'file' => 'modules/upload/upload.admin.inc',
41183 ))
41184 ->values(array(
41185   'path' => 'admin/settings/variable',
41186   'load_functions' => '',
41187   'to_arg_functions' => '',
41188   'access_callback' => 'user_access',
41189   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41190   'page_callback' => 'variable_admin_page_overview',
41191   'page_arguments' => 'a:0:{}',
41192   'fit' => '7',
41193   'number_parts' => '3',
41194   'tab_parent' => '',
41195   'tab_root' => 'admin/settings/variable',
41196   'title' => 'Variables',
41197   'title_callback' => 't',
41198   'title_arguments' => '',
41199   'type' => '6',
41200   'block_callback' => '',
41201   'description' => 'Edit and delete site variables.',
41202   'position' => '',
41203   'weight' => '0',
41204   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
41205 ))
41206 ->values(array(
41207   'path' => 'admin/settings/variable/edit/%',
41208   'load_functions' => 'a:1:{i:4;N;}',
41209   'to_arg_functions' => '',
41210   'access_callback' => 'variable_access',
41211   'access_arguments' => 'a:1:{i:0;i:4;}',
41212   'page_callback' => 'variable_admin_page_edit',
41213   'page_arguments' => 'a:1:{i:0;i:4;}',
41214   'fit' => '30',
41215   'number_parts' => '5',
41216   'tab_parent' => '',
41217   'tab_root' => 'admin/settings/variable/edit/%',
41218   'title' => 'Edit variable',
41219   'title_callback' => 't',
41220   'title_arguments' => '',
41221   'type' => '6',
41222   'block_callback' => '',
41223   'description' => '',
41224   'position' => '',
41225   'weight' => '0',
41226   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
41227 ))
41228 ->values(array(
41229   'path' => 'admin/settings/variable/group',
41230   'load_functions' => '',
41231   'to_arg_functions' => '',
41232   'access_callback' => 'user_access',
41233   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41234   'page_callback' => 'variable_admin_page_overview',
41235   'page_arguments' => 'a:0:{}',
41236   'fit' => '15',
41237   'number_parts' => '4',
41238   'tab_parent' => 'admin/settings/variable',
41239   'tab_root' => 'admin/settings/variable',
41240   'title' => 'By group',
41241   'title_callback' => 't',
41242   'title_arguments' => '',
41243   'type' => '136',
41244   'block_callback' => '',
41245   'description' => 'Variables by group.',
41246   'position' => '',
41247   'weight' => '0',
41248   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
41249 ))
41250 ->values(array(
41251   'path' => 'admin/settings/variable/group/%',
41252   'load_functions' => 'a:1:{i:4;N;}',
41253   'to_arg_functions' => '',
41254   'access_callback' => 'user_access',
41255   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41256   'page_callback' => 'variable_admin_page_group',
41257   'page_arguments' => 'a:1:{i:0;i:4;}',
41258   'fit' => '30',
41259   'number_parts' => '5',
41260   'tab_parent' => '',
41261   'tab_root' => 'admin/settings/variable/group/%',
41262   'title' => 'Variables group',
41263   'title_callback' => 't',
41264   'title_arguments' => '',
41265   'type' => '6',
41266   'block_callback' => '',
41267   'description' => 'Edit and delete group variables.',
41268   'position' => '',
41269   'weight' => '0',
41270   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
41271 ))
41272 ->values(array(
41273   'path' => 'admin/settings/variable/modules',
41274   'load_functions' => '',
41275   'to_arg_functions' => '',
41276   'access_callback' => 'user_access',
41277   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41278   'page_callback' => 'variable_admin_page_modules',
41279   'page_arguments' => 'a:0:{}',
41280   'fit' => '15',
41281   'number_parts' => '4',
41282   'tab_parent' => 'admin/settings/variable',
41283   'tab_root' => 'admin/settings/variable',
41284   'title' => 'By module',
41285   'title_callback' => 't',
41286   'title_arguments' => '',
41287   'type' => '128',
41288   'block_callback' => '',
41289   'description' => 'Variables by module.',
41290   'position' => '',
41291   'weight' => '0',
41292   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
41293 ))
41294 ->values(array(
41295   'path' => 'admin/settings/variable/undefined',
41296   'load_functions' => '',
41297   'to_arg_functions' => '',
41298   'access_callback' => 'user_access',
41299   'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
41300   'page_callback' => 'variable_admin_page_undefined',
41301   'page_arguments' => 'a:0:{}',
41302   'fit' => '15',
41303   'number_parts' => '4',
41304   'tab_parent' => 'admin/settings/variable',
41305   'tab_root' => 'admin/settings/variable',
41306   'title' => 'Undefined',
41307   'title_callback' => 't',
41308   'title_arguments' => '',
41309   'type' => '128',
41310   'block_callback' => '',
41311   'description' => 'Unknown variables.',
41312   'position' => '',
41313   'weight' => '0',
41314   'file' => 'sites/all/modules/variable/variable_admin/variable_admin.pages.inc',
41315 ))
41316 ->values(array(
41317   'path' => 'admin/user',
41318   'load_functions' => '',
41319   'to_arg_functions' => '',
41320   'access_callback' => 'user_access',
41321   'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
41322   'page_callback' => 'system_admin_menu_block_page',
41323   'page_arguments' => 'a:0:{}',
41324   'fit' => '3',
41325   'number_parts' => '2',
41326   'tab_parent' => '',
41327   'tab_root' => 'admin/user',
41328   'title' => 'User management',
41329   'title_callback' => 't',
41330   'title_arguments' => '',
41331   'type' => '6',
41332   'block_callback' => '',
41333   'description' => "Manage your site's users, groups and access to site features.",
41334   'position' => 'left',
41335   'weight' => '0',
41336   'file' => 'modules/system/system.admin.inc',
41337 ))
41338 ->values(array(
41339   'path' => 'admin/user/permissions',
41340   'load_functions' => '',
41341   'to_arg_functions' => '',
41342   'access_callback' => 'user_access',
41343   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41344   'page_callback' => 'drupal_get_form',
41345   'page_arguments' => 'a:1:{i:0;s:15:"user_admin_perm";}',
41346   'fit' => '7',
41347   'number_parts' => '3',
41348   'tab_parent' => '',
41349   'tab_root' => 'admin/user/permissions',
41350   'title' => 'Permissions',
41351   'title_callback' => 't',
41352   'title_arguments' => '',
41353   'type' => '6',
41354   'block_callback' => '',
41355   'description' => 'Determine access to features by selecting permissions for roles.',
41356   'position' => '',
41357   'weight' => '0',
41358   'file' => 'modules/user/user.admin.inc',
41359 ))
41360 ->values(array(
41361   'path' => 'admin/user/profile',
41362   'load_functions' => '',
41363   'to_arg_functions' => '',
41364   'access_callback' => 'user_access',
41365   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41366   'page_callback' => 'drupal_get_form',
41367   'page_arguments' => 'a:1:{i:0;s:22:"profile_admin_overview";}',
41368   'fit' => '7',
41369   'number_parts' => '3',
41370   'tab_parent' => '',
41371   'tab_root' => 'admin/user/profile',
41372   'title' => 'Profiles',
41373   'title_callback' => 't',
41374   'title_arguments' => '',
41375   'type' => '6',
41376   'block_callback' => '',
41377   'description' => 'Create customizable fields for your users.',
41378   'position' => '',
41379   'weight' => '0',
41380   'file' => 'modules/profile/profile.admin.inc',
41381 ))
41382 ->values(array(
41383   'path' => 'admin/user/profile/add',
41384   'load_functions' => '',
41385   'to_arg_functions' => '',
41386   'access_callback' => 'user_access',
41387   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41388   'page_callback' => 'drupal_get_form',
41389   'page_arguments' => 'a:1:{i:0;s:18:"profile_field_form";}',
41390   'fit' => '15',
41391   'number_parts' => '4',
41392   'tab_parent' => '',
41393   'tab_root' => 'admin/user/profile/add',
41394   'title' => 'Add field',
41395   'title_callback' => 't',
41396   'title_arguments' => '',
41397   'type' => '4',
41398   'block_callback' => '',
41399   'description' => '',
41400   'position' => '',
41401   'weight' => '0',
41402   'file' => 'modules/profile/profile.admin.inc',
41403 ))
41404 ->values(array(
41405   'path' => 'admin/user/profile/autocomplete',
41406   'load_functions' => '',
41407   'to_arg_functions' => '',
41408   'access_callback' => 'user_access',
41409   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41410   'page_callback' => 'profile_admin_settings_autocomplete',
41411   'page_arguments' => 'a:0:{}',
41412   'fit' => '15',
41413   'number_parts' => '4',
41414   'tab_parent' => '',
41415   'tab_root' => 'admin/user/profile/autocomplete',
41416   'title' => 'Profile category autocomplete',
41417   'title_callback' => 't',
41418   'title_arguments' => '',
41419   'type' => '4',
41420   'block_callback' => '',
41421   'description' => '',
41422   'position' => '',
41423   'weight' => '0',
41424   'file' => 'modules/profile/profile.admin.inc',
41425 ))
41426 ->values(array(
41427   'path' => 'admin/user/profile/delete',
41428   'load_functions' => '',
41429   'to_arg_functions' => '',
41430   'access_callback' => 'user_access',
41431   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41432   'page_callback' => 'drupal_get_form',
41433   'page_arguments' => 'a:1:{i:0;s:20:"profile_field_delete";}',
41434   'fit' => '15',
41435   'number_parts' => '4',
41436   'tab_parent' => '',
41437   'tab_root' => 'admin/user/profile/delete',
41438   'title' => 'Delete field',
41439   'title_callback' => 't',
41440   'title_arguments' => '',
41441   'type' => '4',
41442   'block_callback' => '',
41443   'description' => '',
41444   'position' => '',
41445   'weight' => '0',
41446   'file' => 'modules/profile/profile.admin.inc',
41447 ))
41448 ->values(array(
41449   'path' => 'admin/user/profile/edit',
41450   'load_functions' => '',
41451   'to_arg_functions' => '',
41452   'access_callback' => 'user_access',
41453   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41454   'page_callback' => 'drupal_get_form',
41455   'page_arguments' => 'a:1:{i:0;s:18:"profile_field_form";}',
41456   'fit' => '15',
41457   'number_parts' => '4',
41458   'tab_parent' => '',
41459   'tab_root' => 'admin/user/profile/edit',
41460   'title' => 'Edit field',
41461   'title_callback' => 't',
41462   'title_arguments' => '',
41463   'type' => '4',
41464   'block_callback' => '',
41465   'description' => '',
41466   'position' => '',
41467   'weight' => '0',
41468   'file' => 'modules/profile/profile.admin.inc',
41469 ))
41470 ->values(array(
41471   'path' => 'admin/user/roles',
41472   'load_functions' => '',
41473   'to_arg_functions' => '',
41474   'access_callback' => 'user_access',
41475   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41476   'page_callback' => 'drupal_get_form',
41477   'page_arguments' => 'a:1:{i:0;s:19:"user_admin_new_role";}',
41478   'fit' => '7',
41479   'number_parts' => '3',
41480   'tab_parent' => '',
41481   'tab_root' => 'admin/user/roles',
41482   'title' => 'Roles',
41483   'title_callback' => 't',
41484   'title_arguments' => '',
41485   'type' => '6',
41486   'block_callback' => '',
41487   'description' => 'List, edit, or add user roles.',
41488   'position' => '',
41489   'weight' => '0',
41490   'file' => 'modules/user/user.admin.inc',
41491 ))
41492 ->values(array(
41493   'path' => 'admin/user/roles/edit',
41494   'load_functions' => '',
41495   'to_arg_functions' => '',
41496   'access_callback' => 'user_access',
41497   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41498   'page_callback' => 'drupal_get_form',
41499   'page_arguments' => 'a:1:{i:0;s:15:"user_admin_role";}',
41500   'fit' => '15',
41501   'number_parts' => '4',
41502   'tab_parent' => '',
41503   'tab_root' => 'admin/user/roles/edit',
41504   'title' => 'Edit role',
41505   'title_callback' => 't',
41506   'title_arguments' => '',
41507   'type' => '4',
41508   'block_callback' => '',
41509   'description' => '',
41510   'position' => '',
41511   'weight' => '0',
41512   'file' => 'modules/user/user.admin.inc',
41513 ))
41514 ->values(array(
41515   'path' => 'admin/user/rules',
41516   'load_functions' => '',
41517   'to_arg_functions' => '',
41518   'access_callback' => 'user_access',
41519   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41520   'page_callback' => 'user_admin_access',
41521   'page_arguments' => 'a:0:{}',
41522   'fit' => '7',
41523   'number_parts' => '3',
41524   'tab_parent' => '',
41525   'tab_root' => 'admin/user/rules',
41526   'title' => 'Access rules',
41527   'title_callback' => 't',
41528   'title_arguments' => '',
41529   'type' => '6',
41530   'block_callback' => '',
41531   'description' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.',
41532   'position' => '',
41533   'weight' => '0',
41534   'file' => 'modules/user/user.admin.inc',
41535 ))
41536 ->values(array(
41537   'path' => 'admin/user/rules/add',
41538   'load_functions' => '',
41539   'to_arg_functions' => '',
41540   'access_callback' => 'user_access',
41541   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41542   'page_callback' => 'user_admin_access_add',
41543   'page_arguments' => 'a:0:{}',
41544   'fit' => '15',
41545   'number_parts' => '4',
41546   'tab_parent' => 'admin/user/rules',
41547   'tab_root' => 'admin/user/rules',
41548   'title' => 'Add rule',
41549   'title_callback' => 't',
41550   'title_arguments' => '',
41551   'type' => '128',
41552   'block_callback' => '',
41553   'description' => '',
41554   'position' => '',
41555   'weight' => '0',
41556   'file' => 'modules/user/user.admin.inc',
41557 ))
41558 ->values(array(
41559   'path' => 'admin/user/rules/check',
41560   'load_functions' => '',
41561   'to_arg_functions' => '',
41562   'access_callback' => 'user_access',
41563   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41564   'page_callback' => 'user_admin_access_check',
41565   'page_arguments' => 'a:0:{}',
41566   'fit' => '15',
41567   'number_parts' => '4',
41568   'tab_parent' => 'admin/user/rules',
41569   'tab_root' => 'admin/user/rules',
41570   'title' => 'Check rules',
41571   'title_callback' => 't',
41572   'title_arguments' => '',
41573   'type' => '128',
41574   'block_callback' => '',
41575   'description' => '',
41576   'position' => '',
41577   'weight' => '0',
41578   'file' => 'modules/user/user.admin.inc',
41579 ))
41580 ->values(array(
41581   'path' => 'admin/user/rules/delete',
41582   'load_functions' => '',
41583   'to_arg_functions' => '',
41584   'access_callback' => 'user_access',
41585   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41586   'page_callback' => 'drupal_get_form',
41587   'page_arguments' => 'a:1:{i:0;s:32:"user_admin_access_delete_confirm";}',
41588   'fit' => '15',
41589   'number_parts' => '4',
41590   'tab_parent' => '',
41591   'tab_root' => 'admin/user/rules/delete',
41592   'title' => 'Delete rule',
41593   'title_callback' => 't',
41594   'title_arguments' => '',
41595   'type' => '4',
41596   'block_callback' => '',
41597   'description' => '',
41598   'position' => '',
41599   'weight' => '0',
41600   'file' => 'modules/user/user.admin.inc',
41601 ))
41602 ->values(array(
41603   'path' => 'admin/user/rules/edit',
41604   'load_functions' => '',
41605   'to_arg_functions' => '',
41606   'access_callback' => 'user_access',
41607   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41608   'page_callback' => 'user_admin_access_edit',
41609   'page_arguments' => 'a:0:{}',
41610   'fit' => '15',
41611   'number_parts' => '4',
41612   'tab_parent' => '',
41613   'tab_root' => 'admin/user/rules/edit',
41614   'title' => 'Edit rule',
41615   'title_callback' => 't',
41616   'title_arguments' => '',
41617   'type' => '4',
41618   'block_callback' => '',
41619   'description' => '',
41620   'position' => '',
41621   'weight' => '0',
41622   'file' => 'modules/user/user.admin.inc',
41623 ))
41624 ->values(array(
41625   'path' => 'admin/user/rules/list',
41626   'load_functions' => '',
41627   'to_arg_functions' => '',
41628   'access_callback' => 'user_access',
41629   'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
41630   'page_callback' => 'user_admin_access',
41631   'page_arguments' => 'a:0:{}',
41632   'fit' => '15',
41633   'number_parts' => '4',
41634   'tab_parent' => 'admin/user/rules',
41635   'tab_root' => 'admin/user/rules',
41636   'title' => 'List',
41637   'title_callback' => 't',
41638   'title_arguments' => '',
41639   'type' => '136',
41640   'block_callback' => '',
41641   'description' => '',
41642   'position' => '',
41643   'weight' => '-10',
41644   'file' => 'modules/user/user.admin.inc',
41645 ))
41646 ->values(array(
41647   'path' => 'admin/user/settings',
41648   'load_functions' => '',
41649   'to_arg_functions' => '',
41650   'access_callback' => 'user_access',
41651   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41652   'page_callback' => 'drupal_get_form',
41653   'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}',
41654   'fit' => '7',
41655   'number_parts' => '3',
41656   'tab_parent' => '',
41657   'tab_root' => 'admin/user/settings',
41658   'title' => 'User settings',
41659   'title_callback' => 't',
41660   'title_arguments' => '',
41661   'type' => '6',
41662   'block_callback' => '',
41663   'description' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.',
41664   'position' => '',
41665   'weight' => '0',
41666   'file' => 'modules/user/user.admin.inc',
41667 ))
41668 ->values(array(
41669   'path' => 'admin/user/user',
41670   'load_functions' => '',
41671   'to_arg_functions' => '',
41672   'access_callback' => 'user_access',
41673   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41674   'page_callback' => 'user_admin',
41675   'page_arguments' => 'a:1:{i:0;s:4:"list";}',
41676   'fit' => '7',
41677   'number_parts' => '3',
41678   'tab_parent' => '',
41679   'tab_root' => 'admin/user/user',
41680   'title' => 'Users',
41681   'title_callback' => 't',
41682   'title_arguments' => '',
41683   'type' => '6',
41684   'block_callback' => '',
41685   'description' => 'List, add, and edit users.',
41686   'position' => '',
41687   'weight' => '0',
41688   'file' => 'modules/user/user.admin.inc',
41689 ))
41690 ->values(array(
41691   'path' => 'admin/user/user/create',
41692   'load_functions' => '',
41693   'to_arg_functions' => '',
41694   'access_callback' => 'user_access',
41695   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41696   'page_callback' => 'user_admin',
41697   'page_arguments' => 'a:1:{i:0;s:6:"create";}',
41698   'fit' => '15',
41699   'number_parts' => '4',
41700   'tab_parent' => 'admin/user/user',
41701   'tab_root' => 'admin/user/user',
41702   'title' => 'Add user',
41703   'title_callback' => 't',
41704   'title_arguments' => '',
41705   'type' => '128',
41706   'block_callback' => '',
41707   'description' => '',
41708   'position' => '',
41709   'weight' => '0',
41710   'file' => 'modules/user/user.admin.inc',
41711 ))
41712 ->values(array(
41713   'path' => 'admin/user/user/list',
41714   'load_functions' => '',
41715   'to_arg_functions' => '',
41716   'access_callback' => 'user_access',
41717   'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
41718   'page_callback' => 'user_admin',
41719   'page_arguments' => 'a:1:{i:0;s:4:"list";}',
41720   'fit' => '15',
41721   'number_parts' => '4',
41722   'tab_parent' => 'admin/user/user',
41723   'tab_root' => 'admin/user/user',
41724   'title' => 'List',
41725   'title_callback' => 't',
41726   'title_arguments' => '',
41727   'type' => '136',
41728   'block_callback' => '',
41729   'description' => '',
41730   'position' => '',
41731   'weight' => '-10',
41732   'file' => 'modules/user/user.admin.inc',
41733 ))
41734 ->values(array(
41735   'path' => 'aggregator',
41736   'load_functions' => '',
41737   'to_arg_functions' => '',
41738   'access_callback' => 'user_access',
41739   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41740   'page_callback' => 'aggregator_page_last',
41741   'page_arguments' => 'a:0:{}',
41742   'fit' => '1',
41743   'number_parts' => '1',
41744   'tab_parent' => '',
41745   'tab_root' => 'aggregator',
41746   'title' => 'Feed aggregator',
41747   'title_callback' => 't',
41748   'title_arguments' => '',
41749   'type' => '6',
41750   'block_callback' => '',
41751   'description' => '',
41752   'position' => '',
41753   'weight' => '5',
41754   'file' => 'modules/aggregator/aggregator.pages.inc',
41755 ))
41756 ->values(array(
41757   'path' => 'aggregator/categories',
41758   'load_functions' => '',
41759   'to_arg_functions' => '',
41760   'access_callback' => '_aggregator_has_categories',
41761   'access_arguments' => 'a:0:{}',
41762   'page_callback' => 'aggregator_page_categories',
41763   'page_arguments' => 'a:0:{}',
41764   'fit' => '3',
41765   'number_parts' => '2',
41766   'tab_parent' => '',
41767   'tab_root' => 'aggregator/categories',
41768   'title' => 'Categories',
41769   'title_callback' => 't',
41770   'title_arguments' => '',
41771   'type' => '6',
41772   'block_callback' => '',
41773   'description' => '',
41774   'position' => '',
41775   'weight' => '0',
41776   'file' => 'modules/aggregator/aggregator.pages.inc',
41777 ))
41778 ->values(array(
41779   'path' => 'aggregator/categories/%',
41780   'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
41781   'to_arg_functions' => '',
41782   'access_callback' => 'user_access',
41783   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41784   'page_callback' => 'aggregator_page_category',
41785   'page_arguments' => 'a:1:{i:0;i:2;}',
41786   'fit' => '6',
41787   'number_parts' => '3',
41788   'tab_parent' => '',
41789   'tab_root' => 'aggregator/categories/%',
41790   'title' => '',
41791   'title_callback' => '_aggregator_category_title',
41792   'title_arguments' => 'a:1:{i:0;i:2;}',
41793   'type' => '6',
41794   'block_callback' => '',
41795   'description' => '',
41796   'position' => '',
41797   'weight' => '0',
41798   'file' => 'modules/aggregator/aggregator.pages.inc',
41799 ))
41800 ->values(array(
41801   'path' => 'aggregator/categories/%/categorize',
41802   'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
41803   'to_arg_functions' => '',
41804   'access_callback' => 'user_access',
41805   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
41806   'page_callback' => 'drupal_get_form',
41807   'page_arguments' => 'a:2:{i:0;s:24:"aggregator_page_category";i:1;i:2;}',
41808   'fit' => '13',
41809   'number_parts' => '4',
41810   'tab_parent' => 'aggregator/categories/%',
41811   'tab_root' => 'aggregator/categories/%',
41812   'title' => 'Categorize',
41813   'title_callback' => 't',
41814   'title_arguments' => '',
41815   'type' => '128',
41816   'block_callback' => '',
41817   'description' => '',
41818   'position' => '',
41819   'weight' => '0',
41820   'file' => 'modules/aggregator/aggregator.pages.inc',
41821 ))
41822 ->values(array(
41823   'path' => 'aggregator/categories/%/configure',
41824   'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
41825   'to_arg_functions' => '',
41826   'access_callback' => 'user_access',
41827   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
41828   'page_callback' => 'drupal_get_form',
41829   'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:2;}',
41830   'fit' => '13',
41831   'number_parts' => '4',
41832   'tab_parent' => 'aggregator/categories/%',
41833   'tab_root' => 'aggregator/categories/%',
41834   'title' => 'Configure',
41835   'title_callback' => 't',
41836   'title_arguments' => '',
41837   'type' => '128',
41838   'block_callback' => '',
41839   'description' => '',
41840   'position' => '',
41841   'weight' => '1',
41842   'file' => 'modules/aggregator/aggregator.admin.inc',
41843 ))
41844 ->values(array(
41845   'path' => 'aggregator/categories/%/view',
41846   'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
41847   'to_arg_functions' => '',
41848   'access_callback' => 'user_access',
41849   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41850   'page_callback' => 'aggregator_page_category',
41851   'page_arguments' => 'a:1:{i:0;i:2;}',
41852   'fit' => '13',
41853   'number_parts' => '4',
41854   'tab_parent' => 'aggregator/categories/%',
41855   'tab_root' => 'aggregator/categories/%',
41856   'title' => 'View',
41857   'title_callback' => 't',
41858   'title_arguments' => '',
41859   'type' => '136',
41860   'block_callback' => '',
41861   'description' => '',
41862   'position' => '',
41863   'weight' => '-10',
41864   'file' => 'modules/aggregator/aggregator.pages.inc',
41865 ))
41866 ->values(array(
41867   'path' => 'aggregator/opml',
41868   'load_functions' => '',
41869   'to_arg_functions' => '',
41870   'access_callback' => 'user_access',
41871   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41872   'page_callback' => 'aggregator_page_opml',
41873   'page_arguments' => 'a:0:{}',
41874   'fit' => '3',
41875   'number_parts' => '2',
41876   'tab_parent' => '',
41877   'tab_root' => 'aggregator/opml',
41878   'title' => 'OPML feed',
41879   'title_callback' => 't',
41880   'title_arguments' => '',
41881   'type' => '4',
41882   'block_callback' => '',
41883   'description' => '',
41884   'position' => '',
41885   'weight' => '0',
41886   'file' => 'modules/aggregator/aggregator.pages.inc',
41887 ))
41888 ->values(array(
41889   'path' => 'aggregator/rss',
41890   'load_functions' => '',
41891   'to_arg_functions' => '',
41892   'access_callback' => 'user_access',
41893   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41894   'page_callback' => 'aggregator_page_rss',
41895   'page_arguments' => 'a:0:{}',
41896   'fit' => '3',
41897   'number_parts' => '2',
41898   'tab_parent' => '',
41899   'tab_root' => 'aggregator/rss',
41900   'title' => 'RSS feed',
41901   'title_callback' => 't',
41902   'title_arguments' => '',
41903   'type' => '4',
41904   'block_callback' => '',
41905   'description' => '',
41906   'position' => '',
41907   'weight' => '0',
41908   'file' => 'modules/aggregator/aggregator.pages.inc',
41909 ))
41910 ->values(array(
41911   'path' => 'aggregator/sources',
41912   'load_functions' => '',
41913   'to_arg_functions' => '',
41914   'access_callback' => 'user_access',
41915   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41916   'page_callback' => 'aggregator_page_sources',
41917   'page_arguments' => 'a:0:{}',
41918   'fit' => '3',
41919   'number_parts' => '2',
41920   'tab_parent' => '',
41921   'tab_root' => 'aggregator/sources',
41922   'title' => 'Sources',
41923   'title_callback' => 't',
41924   'title_arguments' => '',
41925   'type' => '6',
41926   'block_callback' => '',
41927   'description' => '',
41928   'position' => '',
41929   'weight' => '0',
41930   'file' => 'modules/aggregator/aggregator.pages.inc',
41931 ))
41932 ->values(array(
41933   'path' => 'aggregator/sources/%',
41934   'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
41935   'to_arg_functions' => '',
41936   'access_callback' => 'user_access',
41937   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
41938   'page_callback' => 'aggregator_page_source',
41939   'page_arguments' => 'a:1:{i:0;i:2;}',
41940   'fit' => '6',
41941   'number_parts' => '3',
41942   'tab_parent' => '',
41943   'tab_root' => 'aggregator/sources/%',
41944   'title' => '',
41945   'title_callback' => 't',
41946   'title_arguments' => '',
41947   'type' => '4',
41948   'block_callback' => '',
41949   'description' => '',
41950   'position' => '',
41951   'weight' => '0',
41952   'file' => 'modules/aggregator/aggregator.pages.inc',
41953 ))
41954 ->values(array(
41955   'path' => 'aggregator/sources/%/categorize',
41956   'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
41957   'to_arg_functions' => '',
41958   'access_callback' => 'user_access',
41959   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
41960   'page_callback' => 'drupal_get_form',
41961   'page_arguments' => 'a:2:{i:0;s:22:"aggregator_page_source";i:1;i:2;}',
41962   'fit' => '13',
41963   'number_parts' => '4',
41964   'tab_parent' => 'aggregator/sources/%',
41965   'tab_root' => 'aggregator/sources/%',
41966   'title' => 'Categorize',
41967   'title_callback' => 't',
41968   'title_arguments' => '',
41969   'type' => '128',
41970   'block_callback' => '',
41971   'description' => '',
41972   'position' => '',
41973   'weight' => '0',
41974   'file' => 'modules/aggregator/aggregator.pages.inc',
41975 ))
41976 ->values(array(
41977   'path' => 'aggregator/sources/%/configure',
41978   'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
41979   'to_arg_functions' => '',
41980   'access_callback' => 'user_access',
41981   'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
41982   'page_callback' => 'drupal_get_form',
41983   'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:2;}',
41984   'fit' => '13',
41985   'number_parts' => '4',
41986   'tab_parent' => 'aggregator/sources/%',
41987   'tab_root' => 'aggregator/sources/%',
41988   'title' => 'Configure',
41989   'title_callback' => 't',
41990   'title_arguments' => '',
41991   'type' => '128',
41992   'block_callback' => '',
41993   'description' => '',
41994   'position' => '',
41995   'weight' => '1',
41996   'file' => 'modules/aggregator/aggregator.admin.inc',
41997 ))
41998 ->values(array(
41999   'path' => 'aggregator/sources/%/view',
42000   'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
42001   'to_arg_functions' => '',
42002   'access_callback' => 'user_access',
42003   'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
42004   'page_callback' => 'aggregator_page_source',
42005   'page_arguments' => 'a:1:{i:0;i:2;}',
42006   'fit' => '13',
42007   'number_parts' => '4',
42008   'tab_parent' => 'aggregator/sources/%',
42009   'tab_root' => 'aggregator/sources/%',
42010   'title' => 'View',
42011   'title_callback' => 't',
42012   'title_arguments' => '',
42013   'type' => '136',
42014   'block_callback' => '',
42015   'description' => '',
42016   'position' => '',
42017   'weight' => '-10',
42018   'file' => 'modules/aggregator/aggregator.pages.inc',
42019 ))
42020 ->values(array(
42021   'path' => 'batch',
42022   'load_functions' => '',
42023   'to_arg_functions' => '',
42024   'access_callback' => '1',
42025   'access_arguments' => 'a:0:{}',
42026   'page_callback' => 'system_batch_page',
42027   'page_arguments' => 'a:0:{}',
42028   'fit' => '1',
42029   'number_parts' => '1',
42030   'tab_parent' => '',
42031   'tab_root' => 'batch',
42032   'title' => '',
42033   'title_callback' => 't',
42034   'title_arguments' => '',
42035   'type' => '4',
42036   'block_callback' => '',
42037   'description' => '',
42038   'position' => '',
42039   'weight' => '0',
42040   'file' => 'modules/system/system.admin.inc',
42041 ))
42042 ->values(array(
42043   'path' => 'book',
42044   'load_functions' => '',
42045   'to_arg_functions' => '',
42046   'access_callback' => 'user_access',
42047   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42048   'page_callback' => 'book_render',
42049   'page_arguments' => 'a:0:{}',
42050   'fit' => '1',
42051   'number_parts' => '1',
42052   'tab_parent' => '',
42053   'tab_root' => 'book',
42054   'title' => 'Books',
42055   'title_callback' => 't',
42056   'title_arguments' => '',
42057   'type' => '20',
42058   'block_callback' => '',
42059   'description' => '',
42060   'position' => '',
42061   'weight' => '0',
42062   'file' => 'modules/book/book.pages.inc',
42063 ))
42064 ->values(array(
42065   'path' => 'book/export/%/%',
42066   'load_functions' => 'a:2:{i:2;N;i:3;N;}',
42067   'to_arg_functions' => '',
42068   'access_callback' => 'user_access',
42069   'access_arguments' => 'a:1:{i:0;s:31:"access printer-friendly version";}',
42070   'page_callback' => 'book_export',
42071   'page_arguments' => 'a:2:{i:0;i:2;i:1;i:3;}',
42072   'fit' => '12',
42073   'number_parts' => '4',
42074   'tab_parent' => '',
42075   'tab_root' => 'book/export/%/%',
42076   'title' => '',
42077   'title_callback' => 't',
42078   'title_arguments' => '',
42079   'type' => '4',
42080   'block_callback' => '',
42081   'description' => '',
42082   'position' => '',
42083   'weight' => '0',
42084   'file' => 'modules/book/book.pages.inc',
42085 ))
42086 ->values(array(
42087   'path' => 'book/js/form',
42088   'load_functions' => '',
42089   'to_arg_functions' => '',
42090   'access_callback' => 'user_access',
42091   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42092   'page_callback' => 'book_form_update',
42093   'page_arguments' => 'a:0:{}',
42094   'fit' => '7',
42095   'number_parts' => '3',
42096   'tab_parent' => '',
42097   'tab_root' => 'book/js/form',
42098   'title' => '',
42099   'title_callback' => 't',
42100   'title_arguments' => '',
42101   'type' => '4',
42102   'block_callback' => '',
42103   'description' => '',
42104   'position' => '',
42105   'weight' => '0',
42106   'file' => 'modules/book/book.pages.inc',
42107 ))
42108 ->values(array(
42109   'path' => 'comment/delete',
42110   'load_functions' => '',
42111   'to_arg_functions' => '',
42112   'access_callback' => 'user_access',
42113   'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
42114   'page_callback' => 'comment_delete',
42115   'page_arguments' => 'a:0:{}',
42116   'fit' => '3',
42117   'number_parts' => '2',
42118   'tab_parent' => '',
42119   'tab_root' => 'comment/delete',
42120   'title' => 'Delete comment',
42121   'title_callback' => 't',
42122   'title_arguments' => '',
42123   'type' => '4',
42124   'block_callback' => '',
42125   'description' => '',
42126   'position' => '',
42127   'weight' => '0',
42128   'file' => 'modules/comment/comment.admin.inc',
42129 ))
42130 ->values(array(
42131   'path' => 'comment/edit',
42132   'load_functions' => '',
42133   'to_arg_functions' => '',
42134   'access_callback' => 'user_access',
42135   'access_arguments' => 'a:1:{i:0;s:13:"post comments";}',
42136   'page_callback' => 'comment_edit',
42137   'page_arguments' => 'a:0:{}',
42138   'fit' => '3',
42139   'number_parts' => '2',
42140   'tab_parent' => '',
42141   'tab_root' => 'comment/edit',
42142   'title' => 'Edit comment',
42143   'title_callback' => 't',
42144   'title_arguments' => '',
42145   'type' => '4',
42146   'block_callback' => '',
42147   'description' => '',
42148   'position' => '',
42149   'weight' => '0',
42150   'file' => 'modules/comment/comment.pages.inc',
42151 ))
42152 ->values(array(
42153   'path' => 'comment/reply/%',
42154   'load_functions' => 'a:1:{i:2;s:9:"node_load";}',
42155   'to_arg_functions' => '',
42156   'access_callback' => 'node_access',
42157   'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:2;}',
42158   'page_callback' => 'comment_reply',
42159   'page_arguments' => 'a:1:{i:0;i:2;}',
42160   'fit' => '6',
42161   'number_parts' => '3',
42162   'tab_parent' => '',
42163   'tab_root' => 'comment/reply/%',
42164   'title' => 'Reply to comment',
42165   'title_callback' => 't',
42166   'title_arguments' => '',
42167   'type' => '4',
42168   'block_callback' => '',
42169   'description' => '',
42170   'position' => '',
42171   'weight' => '0',
42172   'file' => 'modules/comment/comment.pages.inc',
42173 ))
42174 ->values(array(
42175   'path' => 'contact',
42176   'load_functions' => '',
42177   'to_arg_functions' => '',
42178   'access_callback' => 'user_access',
42179   'access_arguments' => 'a:1:{i:0;s:29:"access site-wide contact form";}',
42180   'page_callback' => 'contact_site_page',
42181   'page_arguments' => 'a:0:{}',
42182   'fit' => '1',
42183   'number_parts' => '1',
42184   'tab_parent' => '',
42185   'tab_root' => 'contact',
42186   'title' => 'Contact',
42187   'title_callback' => 't',
42188   'title_arguments' => '',
42189   'type' => '20',
42190   'block_callback' => '',
42191   'description' => '',
42192   'position' => '',
42193   'weight' => '0',
42194   'file' => 'modules/contact/contact.pages.inc',
42195 ))
42196 ->values(array(
42197   'path' => 'content/js_add_more',
42198   'load_functions' => '',
42199   'to_arg_functions' => '',
42200   'access_callback' => 'user_access',
42201   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42202   'page_callback' => 'content_add_more_js',
42203   'page_arguments' => 'a:0:{}',
42204   'fit' => '3',
42205   'number_parts' => '2',
42206   'tab_parent' => '',
42207   'tab_root' => 'content/js_add_more',
42208   'title' => '',
42209   'title_callback' => 't',
42210   'title_arguments' => '',
42211   'type' => '4',
42212   'block_callback' => '',
42213   'description' => '',
42214   'position' => '',
42215   'weight' => '0',
42216   'file' => 'sites/all/modules/cck/includes/content.node_form.inc',
42217 ))
42218 ->values(array(
42219   'path' => 'core/modules/simpletest/files/imagecache',
42220   'load_functions' => '',
42221   'to_arg_functions' => '',
42222   'access_callback' => '_imagecache_menu_access_public_files',
42223   'access_arguments' => 'a:0:{}',
42224   'page_callback' => 'imagecache_cache',
42225   'page_arguments' => 'a:0:{}',
42226   'fit' => '31',
42227   'number_parts' => '5',
42228   'tab_parent' => '',
42229   'tab_root' => 'core/modules/simpletest/files/imagecache',
42230   'title' => '',
42231   'title_callback' => 't',
42232   'title_arguments' => '',
42233   'type' => '4',
42234   'block_callback' => '',
42235   'description' => '',
42236   'position' => '',
42237   'weight' => '0',
42238   'file' => '',
42239 ))
42240 ->values(array(
42241   'path' => 'email/%/%',
42242   'load_functions' => 'a:2:{i:1;s:9:"node_load";i:2;N;}',
42243   'to_arg_functions' => '',
42244   'access_callback' => 'node_access',
42245   'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
42246   'page_callback' => 'email_mail_page',
42247   'page_arguments' => 'a:2:{i:0;i:1;i:1;i:2;}',
42248   'fit' => '4',
42249   'number_parts' => '3',
42250   'tab_parent' => '',
42251   'tab_root' => 'email/%/%',
42252   'title' => 'Email Contact Form',
42253   'title_callback' => 't',
42254   'title_arguments' => '',
42255   'type' => '4',
42256   'block_callback' => '',
42257   'description' => '',
42258   'position' => '',
42259   'weight' => '0',
42260   'file' => '',
42261 ))
42262 ->values(array(
42263   'path' => 'event',
42264   'load_functions' => '',
42265   'to_arg_functions' => '',
42266   'access_callback' => 'user_access',
42267   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42268   'page_callback' => 'event_page',
42269   'page_arguments' => 'a:0:{}',
42270   'fit' => '1',
42271   'number_parts' => '1',
42272   'tab_parent' => '',
42273   'tab_root' => 'event',
42274   'title' => 'Events',
42275   'title_callback' => 't',
42276   'title_arguments' => '',
42277   'type' => '20',
42278   'block_callback' => '',
42279   'description' => '',
42280   'position' => '',
42281   'weight' => '0',
42282   'file' => 'sites/all/modules/event/ical.inc',
42283 ))
42284 ->values(array(
42285   'path' => 'event/dst',
42286   'load_functions' => '',
42287   'to_arg_functions' => '',
42288   'access_callback' => 'user_access',
42289   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42290   'page_callback' => 'event_dst',
42291   'page_arguments' => 'a:0:{}',
42292   'fit' => '3',
42293   'number_parts' => '2',
42294   'tab_parent' => '',
42295   'tab_root' => 'event/dst',
42296   'title' => 'Event dst view',
42297   'title_callback' => 't',
42298   'title_arguments' => '',
42299   'type' => '4',
42300   'block_callback' => '',
42301   'description' => '',
42302   'position' => '',
42303   'weight' => '0',
42304   'file' => '',
42305 ))
42306 ->values(array(
42307   'path' => 'event/feed',
42308   'load_functions' => '',
42309   'to_arg_functions' => '',
42310   'access_callback' => 'user_access',
42311   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42312   'page_callback' => 'event_feed',
42313   'page_arguments' => 'a:0:{}',
42314   'fit' => '3',
42315   'number_parts' => '2',
42316   'tab_parent' => '',
42317   'tab_root' => 'event/feed',
42318   'title' => 'Event rss feed',
42319   'title_callback' => 't',
42320   'title_arguments' => '',
42321   'type' => '4',
42322   'block_callback' => '',
42323   'description' => '',
42324   'position' => '',
42325   'weight' => '0',
42326   'file' => '',
42327 ))
42328 ->values(array(
42329   'path' => 'event/ical',
42330   'load_functions' => '',
42331   'to_arg_functions' => '',
42332   'access_callback' => 'user_access',
42333   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42334   'page_callback' => 'event_ical',
42335   'page_arguments' => 'a:0:{}',
42336   'fit' => '3',
42337   'number_parts' => '2',
42338   'tab_parent' => '',
42339   'tab_root' => 'event/ical',
42340   'title' => 'Event ical feed',
42341   'title_callback' => 't',
42342   'title_arguments' => '',
42343   'type' => '4',
42344   'block_callback' => '',
42345   'description' => '',
42346   'position' => '',
42347   'weight' => '0',
42348   'file' => 'sites/all/modules/event/ical.inc',
42349 ))
42350 ->values(array(
42351   'path' => 'event/term',
42352   'load_functions' => '',
42353   'to_arg_functions' => '',
42354   'access_callback' => 'user_access',
42355   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42356   'page_callback' => 'event_term',
42357   'page_arguments' => 'a:0:{}',
42358   'fit' => '3',
42359   'number_parts' => '2',
42360   'tab_parent' => '',
42361   'tab_root' => 'event/term',
42362   'title' => 'Filter by taxonomy',
42363   'title_callback' => 't',
42364   'title_arguments' => '',
42365   'type' => '4',
42366   'block_callback' => '',
42367   'description' => '',
42368   'position' => '',
42369   'weight' => '0',
42370   'file' => '',
42371 ))
42372 ->values(array(
42373   'path' => 'event/type',
42374   'load_functions' => '',
42375   'to_arg_functions' => '',
42376   'access_callback' => 'user_access',
42377   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42378   'page_callback' => 'event_type',
42379   'page_arguments' => 'a:0:{}',
42380   'fit' => '3',
42381   'number_parts' => '2',
42382   'tab_parent' => '',
42383   'tab_root' => 'event/type',
42384   'title' => 'Filter by content type',
42385   'title_callback' => 't',
42386   'title_arguments' => '',
42387   'type' => '4',
42388   'block_callback' => '',
42389   'description' => '',
42390   'position' => '',
42391   'weight' => '0',
42392   'file' => '',
42393 ))
42394 ->values(array(
42395   'path' => 'filefield/ahah/%/%/%',
42396   'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
42397   'to_arg_functions' => '',
42398   'access_callback' => 'filefield_edit_access',
42399   'access_arguments' => 'a:2:{i:0;i:2;i:1;i:3;}',
42400   'page_callback' => 'filefield_js',
42401   'page_arguments' => 'a:3:{i:0;i:2;i:1;i:3;i:2;i:4;}',
42402   'fit' => '24',
42403   'number_parts' => '5',
42404   'tab_parent' => '',
42405   'tab_root' => 'filefield/ahah/%/%/%',
42406   'title' => '',
42407   'title_callback' => 't',
42408   'title_arguments' => '',
42409   'type' => '4',
42410   'block_callback' => '',
42411   'description' => '',
42412   'position' => '',
42413   'weight' => '0',
42414   'file' => '',
42415 ))
42416 ->values(array(
42417   'path' => 'filefield/progress',
42418   'load_functions' => '',
42419   'to_arg_functions' => '',
42420   'access_callback' => 'user_access',
42421   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42422   'page_callback' => 'filefield_progress',
42423   'page_arguments' => 'a:0:{}',
42424   'fit' => '3',
42425   'number_parts' => '2',
42426   'tab_parent' => '',
42427   'tab_root' => 'filefield/progress',
42428   'title' => '',
42429   'title_callback' => 't',
42430   'title_arguments' => '',
42431   'type' => '4',
42432   'block_callback' => '',
42433   'description' => '',
42434   'position' => '',
42435   'weight' => '0',
42436   'file' => '',
42437 ))
42438 ->values(array(
42439   'path' => 'filter/tips',
42440   'load_functions' => '',
42441   'to_arg_functions' => '',
42442   'access_callback' => '1',
42443   'access_arguments' => 'a:0:{}',
42444   'page_callback' => 'filter_tips_long',
42445   'page_arguments' => 'a:0:{}',
42446   'fit' => '3',
42447   'number_parts' => '2',
42448   'tab_parent' => '',
42449   'tab_root' => 'filter/tips',
42450   'title' => 'Compose tips',
42451   'title_callback' => 't',
42452   'title_arguments' => '',
42453   'type' => '20',
42454   'block_callback' => '',
42455   'description' => '',
42456   'position' => '',
42457   'weight' => '0',
42458   'file' => 'modules/filter/filter.pages.inc',
42459 ))
42460 ->values(array(
42461   'path' => 'forum',
42462   'load_functions' => '',
42463   'to_arg_functions' => '',
42464   'access_callback' => 'user_access',
42465   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42466   'page_callback' => 'forum_page',
42467   'page_arguments' => 'a:0:{}',
42468   'fit' => '1',
42469   'number_parts' => '1',
42470   'tab_parent' => '',
42471   'tab_root' => 'forum',
42472   'title' => 'Forums',
42473   'title_callback' => 't',
42474   'title_arguments' => '',
42475   'type' => '20',
42476   'block_callback' => '',
42477   'description' => '',
42478   'position' => '',
42479   'weight' => '0',
42480   'file' => 'modules/forum/forum.pages.inc',
42481 ))
42482 ->values(array(
42483   'path' => 'i18n/node/autocomplete',
42484   'load_functions' => '',
42485   'to_arg_functions' => '',
42486   'access_callback' => 'user_access',
42487   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42488   'page_callback' => 'i18n_node_autocomplete',
42489   'page_arguments' => 'a:0:{}',
42490   'fit' => '7',
42491   'number_parts' => '3',
42492   'tab_parent' => '',
42493   'tab_root' => 'i18n/node/autocomplete',
42494   'title' => 'Node title autocomplete',
42495   'title_callback' => 't',
42496   'title_arguments' => '',
42497   'type' => '4',
42498   'block_callback' => '',
42499   'description' => '',
42500   'position' => '',
42501   'weight' => '0',
42502   'file' => 'sites/all/modules/i18n/i18n.pages.inc',
42503 ))
42504 ->values(array(
42505   'path' => 'i18nstrings/save',
42506   'load_functions' => '',
42507   'to_arg_functions' => '',
42508   'access_callback' => 'user_access',
42509   'access_arguments' => 'a:1:{i:0;s:23:"use on-page translation";}',
42510   'page_callback' => 'i18nstrings_save_string',
42511   'page_arguments' => 'a:0:{}',
42512   'fit' => '3',
42513   'number_parts' => '2',
42514   'tab_parent' => '',
42515   'tab_root' => 'i18nstrings/save',
42516   'title' => 'Save string',
42517   'title_callback' => 't',
42518   'title_arguments' => '',
42519   'type' => '4',
42520   'block_callback' => '',
42521   'description' => '',
42522   'position' => '',
42523   'weight' => '0',
42524   'file' => '',
42525 ))
42526 ->values(array(
42527   'path' => 'logout',
42528   'load_functions' => '',
42529   'to_arg_functions' => '',
42530   'access_callback' => 'user_is_logged_in',
42531   'access_arguments' => 'a:0:{}',
42532   'page_callback' => 'user_logout',
42533   'page_arguments' => 'a:0:{}',
42534   'fit' => '1',
42535   'number_parts' => '1',
42536   'tab_parent' => '',
42537   'tab_root' => 'logout',
42538   'title' => 'Log out',
42539   'title_callback' => 't',
42540   'title_arguments' => '',
42541   'type' => '6',
42542   'block_callback' => '',
42543   'description' => '',
42544   'position' => '',
42545   'weight' => '10',
42546   'file' => 'modules/user/user.pages.inc',
42547 ))
42548 ->values(array(
42549   'path' => 'node',
42550   'load_functions' => '',
42551   'to_arg_functions' => '',
42552   'access_callback' => 'user_access',
42553   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
42554   'page_callback' => 'node_page_default',
42555   'page_arguments' => 'a:0:{}',
42556   'fit' => '1',
42557   'number_parts' => '1',
42558   'tab_parent' => '',
42559   'tab_root' => 'node',
42560   'title' => 'Content',
42561   'title_callback' => 't',
42562   'title_arguments' => '',
42563   'type' => '4',
42564   'block_callback' => '',
42565   'description' => '',
42566   'position' => '',
42567   'weight' => '0',
42568   'file' => '',
42569 ))
42570 ->values(array(
42571   'path' => 'node/%',
42572   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42573   'to_arg_functions' => '',
42574   'access_callback' => 'node_access',
42575   'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
42576   'page_callback' => 'node_page_view',
42577   'page_arguments' => 'a:1:{i:0;i:1;}',
42578   'fit' => '2',
42579   'number_parts' => '2',
42580   'tab_parent' => '',
42581   'tab_root' => 'node/%',
42582   'title' => '',
42583   'title_callback' => 'node_page_title',
42584   'title_arguments' => 'a:1:{i:0;i:1;}',
42585   'type' => '4',
42586   'block_callback' => '',
42587   'description' => '',
42588   'position' => '',
42589   'weight' => '0',
42590   'file' => '',
42591 ))
42592 ->values(array(
42593   'path' => 'node/%/delete',
42594   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42595   'to_arg_functions' => '',
42596   'access_callback' => 'node_access',
42597   'access_arguments' => 'a:2:{i:0;s:6:"delete";i:1;i:1;}',
42598   'page_callback' => 'drupal_get_form',
42599   'page_arguments' => 'a:2:{i:0;s:19:"node_delete_confirm";i:1;i:1;}',
42600   'fit' => '5',
42601   'number_parts' => '3',
42602   'tab_parent' => '',
42603   'tab_root' => 'node/%/delete',
42604   'title' => 'Delete',
42605   'title_callback' => 't',
42606   'title_arguments' => '',
42607   'type' => '4',
42608   'block_callback' => '',
42609   'description' => '',
42610   'position' => '',
42611   'weight' => '1',
42612   'file' => 'modules/node/node.pages.inc',
42613 ))
42614 ->values(array(
42615   'path' => 'node/%/edit',
42616   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42617   'to_arg_functions' => '',
42618   'access_callback' => 'node_access',
42619   'access_arguments' => 'a:2:{i:0;s:6:"update";i:1;i:1;}',
42620   'page_callback' => 'node_page_edit',
42621   'page_arguments' => 'a:1:{i:0;i:1;}',
42622   'fit' => '5',
42623   'number_parts' => '3',
42624   'tab_parent' => 'node/%',
42625   'tab_root' => 'node/%',
42626   'title' => 'Edit',
42627   'title_callback' => 't',
42628   'title_arguments' => '',
42629   'type' => '128',
42630   'block_callback' => '',
42631   'description' => '',
42632   'position' => '',
42633   'weight' => '1',
42634   'file' => 'modules/node/node.pages.inc',
42635 ))
42636 ->values(array(
42637   'path' => 'node/%/ical',
42638   'load_functions' => 'a:1:{i:1;N;}',
42639   'to_arg_functions' => '',
42640   'access_callback' => 'event_ical_access',
42641   'access_arguments' => 'a:1:{i:0;i:1;}',
42642   'page_callback' => 'event_node_ical',
42643   'page_arguments' => 'a:0:{}',
42644   'fit' => '5',
42645   'number_parts' => '3',
42646   'tab_parent' => '',
42647   'tab_root' => 'node/%/ical',
42648   'title' => 'Event ical',
42649   'title_callback' => 't',
42650   'title_arguments' => '',
42651   'type' => '4',
42652   'block_callback' => '',
42653   'description' => '',
42654   'position' => '',
42655   'weight' => '0',
42656   'file' => 'sites/all/modules/event/ical.inc',
42657 ))
42658 ->values(array(
42659   'path' => 'node/%/outline',
42660   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42661   'to_arg_functions' => '',
42662   'access_callback' => '_book_outline_access',
42663   'access_arguments' => 'a:1:{i:0;i:1;}',
42664   'page_callback' => 'book_outline',
42665   'page_arguments' => 'a:1:{i:0;i:1;}',
42666   'fit' => '5',
42667   'number_parts' => '3',
42668   'tab_parent' => 'node/%',
42669   'tab_root' => 'node/%',
42670   'title' => 'Outline',
42671   'title_callback' => 't',
42672   'title_arguments' => '',
42673   'type' => '128',
42674   'block_callback' => '',
42675   'description' => '',
42676   'position' => '',
42677   'weight' => '2',
42678   'file' => 'modules/book/book.pages.inc',
42679 ))
42680 ->values(array(
42681   'path' => 'node/%/outline/remove',
42682   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42683   'to_arg_functions' => '',
42684   'access_callback' => '_book_outline_remove_access',
42685   'access_arguments' => 'a:1:{i:0;i:1;}',
42686   'page_callback' => 'drupal_get_form',
42687   'page_arguments' => 'a:2:{i:0;s:16:"book_remove_form";i:1;i:1;}',
42688   'fit' => '11',
42689   'number_parts' => '4',
42690   'tab_parent' => '',
42691   'tab_root' => 'node/%/outline/remove',
42692   'title' => 'Remove from outline',
42693   'title_callback' => 't',
42694   'title_arguments' => '',
42695   'type' => '4',
42696   'block_callback' => '',
42697   'description' => '',
42698   'position' => '',
42699   'weight' => '0',
42700   'file' => 'modules/book/book.pages.inc',
42701 ))
42702 ->values(array(
42703   'path' => 'node/%/revisions',
42704   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42705   'to_arg_functions' => '',
42706   'access_callback' => '_node_revision_access',
42707   'access_arguments' => 'a:1:{i:0;i:1;}',
42708   'page_callback' => 'node_revision_overview',
42709   'page_arguments' => 'a:1:{i:0;i:1;}',
42710   'fit' => '5',
42711   'number_parts' => '3',
42712   'tab_parent' => 'node/%',
42713   'tab_root' => 'node/%',
42714   'title' => 'Revisions',
42715   'title_callback' => 't',
42716   'title_arguments' => '',
42717   'type' => '128',
42718   'block_callback' => '',
42719   'description' => '',
42720   'position' => '',
42721   'weight' => '2',
42722   'file' => 'modules/node/node.pages.inc',
42723 ))
42724 ->values(array(
42725   'path' => 'node/%/revisions/%/delete',
42726   'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
42727   'to_arg_functions' => '',
42728   'access_callback' => '_node_revision_access',
42729   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"delete";}',
42730   'page_callback' => 'drupal_get_form',
42731   'page_arguments' => 'a:2:{i:0;s:28:"node_revision_delete_confirm";i:1;i:1;}',
42732   'fit' => '21',
42733   'number_parts' => '5',
42734   'tab_parent' => '',
42735   'tab_root' => 'node/%/revisions/%/delete',
42736   'title' => 'Delete earlier revision',
42737   'title_callback' => 't',
42738   'title_arguments' => '',
42739   'type' => '4',
42740   'block_callback' => '',
42741   'description' => '',
42742   'position' => '',
42743   'weight' => '0',
42744   'file' => 'modules/node/node.pages.inc',
42745 ))
42746 ->values(array(
42747   'path' => 'node/%/revisions/%/revert',
42748   'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
42749   'to_arg_functions' => '',
42750   'access_callback' => '_node_revision_access',
42751   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"update";}',
42752   'page_callback' => 'drupal_get_form',
42753   'page_arguments' => 'a:2:{i:0;s:28:"node_revision_revert_confirm";i:1;i:1;}',
42754   'fit' => '21',
42755   'number_parts' => '5',
42756   'tab_parent' => '',
42757   'tab_root' => 'node/%/revisions/%/revert',
42758   'title' => 'Revert to earlier revision',
42759   'title_callback' => 't',
42760   'title_arguments' => '',
42761   'type' => '4',
42762   'block_callback' => '',
42763   'description' => '',
42764   'position' => '',
42765   'weight' => '0',
42766   'file' => 'modules/node/node.pages.inc',
42767 ))
42768 ->values(array(
42769   'path' => 'node/%/revisions/%/view',
42770   'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
42771   'to_arg_functions' => '',
42772   'access_callback' => '_node_revision_access',
42773   'access_arguments' => 'a:1:{i:0;i:1;}',
42774   'page_callback' => 'node_show',
42775   'page_arguments' => 'a:3:{i:0;i:1;i:1;N;i:2;b:1;}',
42776   'fit' => '21',
42777   'number_parts' => '5',
42778   'tab_parent' => '',
42779   'tab_root' => 'node/%/revisions/%/view',
42780   'title' => 'Revisions',
42781   'title_callback' => 't',
42782   'title_arguments' => '',
42783   'type' => '4',
42784   'block_callback' => '',
42785   'description' => '',
42786   'position' => '',
42787   'weight' => '0',
42788   'file' => '',
42789 ))
42790 ->values(array(
42791   'path' => 'node/%/track',
42792   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42793   'to_arg_functions' => '',
42794   'access_callback' => 'user_access',
42795   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
42796   'page_callback' => 'statistics_node_tracker',
42797   'page_arguments' => 'a:0:{}',
42798   'fit' => '5',
42799   'number_parts' => '3',
42800   'tab_parent' => 'node/%',
42801   'tab_root' => 'node/%',
42802   'title' => 'Track',
42803   'title_callback' => 't',
42804   'title_arguments' => '',
42805   'type' => '128',
42806   'block_callback' => '',
42807   'description' => '',
42808   'position' => '',
42809   'weight' => '2',
42810   'file' => 'modules/statistics/statistics.pages.inc',
42811 ))
42812 ->values(array(
42813   'path' => 'node/%/translate',
42814   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42815   'to_arg_functions' => '',
42816   'access_callback' => '_translation_tab_access',
42817   'access_arguments' => 'a:1:{i:0;i:1;}',
42818   'page_callback' => 'i18n_translation_node_overview',
42819   'page_arguments' => 'a:1:{i:0;i:1;}',
42820   'fit' => '5',
42821   'number_parts' => '3',
42822   'tab_parent' => 'node/%',
42823   'tab_root' => 'node/%',
42824   'title' => 'Translate',
42825   'title_callback' => 't',
42826   'title_arguments' => '',
42827   'type' => '128',
42828   'block_callback' => '',
42829   'description' => '',
42830   'position' => '',
42831   'weight' => '2',
42832   'file' => 'sites/all/modules/i18n/i18n.pages.inc',
42833 ))
42834 ->values(array(
42835   'path' => 'node/%/view',
42836   'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
42837   'to_arg_functions' => '',
42838   'access_callback' => 'node_access',
42839   'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
42840   'page_callback' => 'node_page_view',
42841   'page_arguments' => 'a:1:{i:0;i:1;}',
42842   'fit' => '5',
42843   'number_parts' => '3',
42844   'tab_parent' => 'node/%',
42845   'tab_root' => 'node/%',
42846   'title' => 'View',
42847   'title_callback' => 't',
42848   'title_arguments' => '',
42849   'type' => '136',
42850   'block_callback' => '',
42851   'description' => '',
42852   'position' => '',
42853   'weight' => '-10',
42854   'file' => '',
42855 ))
42856 ->values(array(
42857   'path' => 'node/add',
42858   'load_functions' => '',
42859   'to_arg_functions' => '',
42860   'access_callback' => '_node_add_access',
42861   'access_arguments' => 'a:0:{}',
42862   'page_callback' => 'i18ncontent_node_add_page',
42863   'page_arguments' => 'a:0:{}',
42864   'fit' => '3',
42865   'number_parts' => '2',
42866   'tab_parent' => '',
42867   'tab_root' => 'node/add',
42868   'title' => 'Create content',
42869   'title_callback' => 't',
42870   'title_arguments' => '',
42871   'type' => '6',
42872   'block_callback' => '',
42873   'description' => '',
42874   'position' => '',
42875   'weight' => '1',
42876   'file' => 'modules/node/node.pages.inc',
42877 ))
42878 ->values(array(
42879   'path' => 'node/add/article',
42880   'load_functions' => '',
42881   'to_arg_functions' => '',
42882   'access_callback' => 'node_access',
42883   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"article";}',
42884   'page_callback' => 'i18ncontent_node_add',
42885   'page_arguments' => 'a:1:{i:0;i:2;}',
42886   'fit' => '7',
42887   'number_parts' => '3',
42888   'tab_parent' => '',
42889   'tab_root' => 'node/add/article',
42890   'title' => 'Article',
42891   'title_callback' => 'i18nstrings_title_callback',
42892   'title_arguments' => 'a:2:{i:0;s:26:"nodetype:type:article:name";i:1;s:7:"Article";}',
42893   'type' => '6',
42894   'block_callback' => '',
42895   'description' => 'An <em>article</em>, content type.',
42896   'position' => '',
42897   'weight' => '0',
42898   'file' => 'modules/node/node.pages.inc',
42899 ))
42900 ->values(array(
42901   'path' => 'node/add/company',
42902   'load_functions' => '',
42903   'to_arg_functions' => '',
42904   'access_callback' => 'node_access',
42905   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"company";}',
42906   'page_callback' => 'i18ncontent_node_add',
42907   'page_arguments' => 'a:1:{i:0;i:2;}',
42908   'fit' => '7',
42909   'number_parts' => '3',
42910   'tab_parent' => '',
42911   'tab_root' => 'node/add/company',
42912   'title' => 'Company',
42913   'title_callback' => 'i18nstrings_title_callback',
42914   'title_arguments' => 'a:2:{i:0;s:26:"nodetype:type:company:name";i:1;s:7:"Company";}',
42915   'type' => '6',
42916   'block_callback' => '',
42917   'description' => 'Company node type',
42918   'position' => '',
42919   'weight' => '0',
42920   'file' => 'modules/node/node.pages.inc',
42921 ))
42922 ->values(array(
42923   'path' => 'node/add/employee',
42924   'load_functions' => '',
42925   'to_arg_functions' => '',
42926   'access_callback' => 'node_access',
42927   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:8:"employee";}',
42928   'page_callback' => 'i18ncontent_node_add',
42929   'page_arguments' => 'a:1:{i:0;i:2;}',
42930   'fit' => '7',
42931   'number_parts' => '3',
42932   'tab_parent' => '',
42933   'tab_root' => 'node/add/employee',
42934   'title' => 'Employee',
42935   'title_callback' => 'i18nstrings_title_callback',
42936   'title_arguments' => 'a:2:{i:0;s:27:"nodetype:type:employee:name";i:1;s:8:"Employee";}',
42937   'type' => '6',
42938   'block_callback' => '',
42939   'description' => 'Employee node type',
42940   'position' => '',
42941   'weight' => '0',
42942   'file' => 'modules/node/node.pages.inc',
42943 ))
42944 ->values(array(
42945   'path' => 'node/add/forum',
42946   'load_functions' => '',
42947   'to_arg_functions' => '',
42948   'access_callback' => 'node_access',
42949   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"forum";}',
42950   'page_callback' => 'i18ncontent_node_add',
42951   'page_arguments' => 'a:1:{i:0;i:2;}',
42952   'fit' => '7',
42953   'number_parts' => '3',
42954   'tab_parent' => '',
42955   'tab_root' => 'node/add/forum',
42956   'title' => 'Forum topic',
42957   'title_callback' => 'i18nstrings_title_callback',
42958   'title_arguments' => 'a:2:{i:0;s:24:"nodetype:type:forum:name";i:1;s:11:"Forum topic";}',
42959   'type' => '6',
42960   'block_callback' => '',
42961   'description' => 'A <em>forum topic</em> is the initial post to a new discussion thread within a forum.',
42962   'position' => '',
42963   'weight' => '0',
42964   'file' => 'modules/node/node.pages.inc',
42965 ))
42966 ->values(array(
42967   'path' => 'node/add/sponsor',
42968   'load_functions' => '',
42969   'to_arg_functions' => '',
42970   'access_callback' => 'node_access',
42971   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"sponsor";}',
42972   'page_callback' => 'i18ncontent_node_add',
42973   'page_arguments' => 'a:1:{i:0;i:2;}',
42974   'fit' => '7',
42975   'number_parts' => '3',
42976   'tab_parent' => '',
42977   'tab_root' => 'node/add/sponsor',
42978   'title' => 'Sponsor',
42979   'title_callback' => 'i18nstrings_title_callback',
42980   'title_arguments' => 'a:2:{i:0;s:26:"nodetype:type:sponsor:name";i:1;s:7:"Sponsor";}',
42981   'type' => '6',
42982   'block_callback' => '',
42983   'description' => 'Sponsor node type',
42984   'position' => '',
42985   'weight' => '0',
42986   'file' => 'modules/node/node.pages.inc',
42987 ))
42988 ->values(array(
42989   'path' => 'node/add/story',
42990   'load_functions' => '',
42991   'to_arg_functions' => '',
42992   'access_callback' => 'node_access',
42993   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"story";}',
42994   'page_callback' => 'i18ncontent_node_add',
42995   'page_arguments' => 'a:1:{i:0;i:2;}',
42996   'fit' => '7',
42997   'number_parts' => '3',
42998   'tab_parent' => '',
42999   'tab_root' => 'node/add/story',
43000   'title' => 'Story',
43001   'title_callback' => 'i18nstrings_title_callback',
43002   'title_arguments' => 'a:2:{i:0;s:24:"nodetype:type:story:name";i:1;s:5:"Story";}',
43003   'type' => '6',
43004   'block_callback' => '',
43005   'description' => "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.",
43006   'position' => '',
43007   'weight' => '0',
43008   'file' => 'modules/node/node.pages.inc',
43009 ))
43010 ->values(array(
43011   'path' => 'node/add/test-event',
43012   'load_functions' => '',
43013   'to_arg_functions' => '',
43014   'access_callback' => 'node_access',
43015   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:10:"test_event";}',
43016   'page_callback' => 'i18ncontent_node_add',
43017   'page_arguments' => 'a:1:{i:0;i:2;}',
43018   'fit' => '7',
43019   'number_parts' => '3',
43020   'tab_parent' => '',
43021   'tab_root' => 'node/add/test-event',
43022   'title' => 'Migrate test event',
43023   'title_callback' => 'i18nstrings_title_callback',
43024   'title_arguments' => 'a:2:{i:0;s:29:"nodetype:type:test-event:name";i:1;s:18:"Migrate test event";}',
43025   'type' => '6',
43026   'block_callback' => '',
43027   'description' => 'test event description here',
43028   'position' => '',
43029   'weight' => '0',
43030   'file' => 'modules/node/node.pages.inc',
43031 ))
43032 ->values(array(
43033   'path' => 'node/add/test-page',
43034   'load_functions' => '',
43035   'to_arg_functions' => '',
43036   'access_callback' => 'node_access',
43037   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:9:"test_page";}',
43038   'page_callback' => 'i18ncontent_node_add',
43039   'page_arguments' => 'a:1:{i:0;i:2;}',
43040   'fit' => '7',
43041   'number_parts' => '3',
43042   'tab_parent' => '',
43043   'tab_root' => 'node/add/test-page',
43044   'title' => 'Migrate test page',
43045   'title_callback' => 'i18nstrings_title_callback',
43046   'title_arguments' => 'a:2:{i:0;s:28:"nodetype:type:test-page:name";i:1;s:17:"Migrate test page";}',
43047   'type' => '6',
43048   'block_callback' => '',
43049   'description' => "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.",
43050   'position' => '',
43051   'weight' => '0',
43052   'file' => 'modules/node/node.pages.inc',
43053 ))
43054 ->values(array(
43055   'path' => 'node/add/test-planet',
43056   'load_functions' => '',
43057   'to_arg_functions' => '',
43058   'access_callback' => 'node_access',
43059   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:11:"test_planet";}',
43060   'page_callback' => 'i18ncontent_node_add',
43061   'page_arguments' => 'a:1:{i:0;i:2;}',
43062   'fit' => '7',
43063   'number_parts' => '3',
43064   'tab_parent' => '',
43065   'tab_root' => 'node/add/test-planet',
43066   'title' => 'Migrate test planet',
43067   'title_callback' => 'i18nstrings_title_callback',
43068   'title_arguments' => 'a:2:{i:0;s:30:"nodetype:type:test-planet:name";i:1;s:19:"Migrate test planet";}',
43069   'type' => '6',
43070   'block_callback' => '',
43071   'description' => "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.",
43072   'position' => '',
43073   'weight' => '0',
43074   'file' => 'modules/node/node.pages.inc',
43075 ))
43076 ->values(array(
43077   'path' => 'node/add/test-story',
43078   'load_functions' => '',
43079   'to_arg_functions' => '',
43080   'access_callback' => 'node_access',
43081   'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:10:"test_story";}',
43082   'page_callback' => 'i18ncontent_node_add',
43083   'page_arguments' => 'a:1:{i:0;i:2;}',
43084   'fit' => '7',
43085   'number_parts' => '3',
43086   'tab_parent' => '',
43087   'tab_root' => 'node/add/test-story',
43088   'title' => 'Migrate test story',
43089   'title_callback' => 'i18nstrings_title_callback',
43090   'title_arguments' => 'a:2:{i:0;s:29:"nodetype:type:test-story:name";i:1;s:18:"Migrate test story";}',
43091   'type' => '6',
43092   'block_callback' => '',
43093   'description' => "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.",
43094   'position' => '',
43095   'weight' => '0',
43096   'file' => 'modules/node/node.pages.inc',
43097 ))
43098 ->values(array(
43099   'path' => 'nodereference/autocomplete',
43100   'load_functions' => '',
43101   'to_arg_functions' => '',
43102   'access_callback' => 'nodereference_autocomplete_access',
43103   'access_arguments' => 'a:1:{i:0;i:2;}',
43104   'page_callback' => 'nodereference_autocomplete',
43105   'page_arguments' => 'a:0:{}',
43106   'fit' => '3',
43107   'number_parts' => '2',
43108   'tab_parent' => '',
43109   'tab_root' => 'nodereference/autocomplete',
43110   'title' => 'Nodereference autocomplete',
43111   'title_callback' => 't',
43112   'title_arguments' => '',
43113   'type' => '4',
43114   'block_callback' => '',
43115   'description' => '',
43116   'position' => '',
43117   'weight' => '0',
43118   'file' => '',
43119 ))
43120 ->values(array(
43121   'path' => 'profile',
43122   'load_functions' => '',
43123   'to_arg_functions' => '',
43124   'access_callback' => 'user_access',
43125   'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
43126   'page_callback' => 'profile_browse',
43127   'page_arguments' => 'a:0:{}',
43128   'fit' => '1',
43129   'number_parts' => '1',
43130   'tab_parent' => '',
43131   'tab_root' => 'profile',
43132   'title' => 'User list',
43133   'title_callback' => 't',
43134   'title_arguments' => '',
43135   'type' => '20',
43136   'block_callback' => '',
43137   'description' => '',
43138   'position' => '',
43139   'weight' => '0',
43140   'file' => 'modules/profile/profile.pages.inc',
43141 ))
43142 ->values(array(
43143   'path' => 'profile/autocomplete',
43144   'load_functions' => '',
43145   'to_arg_functions' => '',
43146   'access_callback' => 'user_access',
43147   'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
43148   'page_callback' => 'profile_autocomplete',
43149   'page_arguments' => 'a:0:{}',
43150   'fit' => '3',
43151   'number_parts' => '2',
43152   'tab_parent' => '',
43153   'tab_root' => 'profile/autocomplete',
43154   'title' => 'Profile autocomplete',
43155   'title_callback' => 't',
43156   'title_arguments' => '',
43157   'type' => '4',
43158   'block_callback' => '',
43159   'description' => '',
43160   'position' => '',
43161   'weight' => '0',
43162   'file' => 'modules/profile/profile.pages.inc',
43163 ))
43164 ->values(array(
43165   'path' => 'rss.xml',
43166   'load_functions' => '',
43167   'to_arg_functions' => '',
43168   'access_callback' => 'user_access',
43169   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
43170   'page_callback' => 'node_feed',
43171   'page_arguments' => 'a:0:{}',
43172   'fit' => '1',
43173   'number_parts' => '1',
43174   'tab_parent' => '',
43175   'tab_root' => 'rss.xml',
43176   'title' => 'RSS feed',
43177   'title_callback' => 't',
43178   'title_arguments' => '',
43179   'type' => '4',
43180   'block_callback' => '',
43181   'description' => '',
43182   'position' => '',
43183   'weight' => '0',
43184   'file' => '',
43185 ))
43186 ->values(array(
43187   'path' => 'system/files',
43188   'load_functions' => '',
43189   'to_arg_functions' => '',
43190   'access_callback' => '1',
43191   'access_arguments' => 'a:1:{i:0;s:19:"view uploaded files";}',
43192   'page_callback' => 'file_download',
43193   'page_arguments' => 'a:0:{}',
43194   'fit' => '3',
43195   'number_parts' => '2',
43196   'tab_parent' => '',
43197   'tab_root' => 'system/files',
43198   'title' => 'File download',
43199   'title_callback' => 't',
43200   'title_arguments' => '',
43201   'type' => '4',
43202   'block_callback' => '',
43203   'description' => '',
43204   'position' => '',
43205   'weight' => '0',
43206   'file' => '',
43207 ))
43208 ->values(array(
43209   'path' => 'system/files/imagecache',
43210   'load_functions' => '',
43211   'to_arg_functions' => '',
43212   'access_callback' => '1',
43213   'access_arguments' => 'a:0:{}',
43214   'page_callback' => 'imagecache_cache_private',
43215   'page_arguments' => 'a:0:{}',
43216   'fit' => '7',
43217   'number_parts' => '3',
43218   'tab_parent' => '',
43219   'tab_root' => 'system/files/imagecache',
43220   'title' => '',
43221   'title_callback' => 't',
43222   'title_arguments' => '',
43223   'type' => '4',
43224   'block_callback' => '',
43225   'description' => '',
43226   'position' => '',
43227   'weight' => '0',
43228   'file' => '',
43229 ))
43230 ->values(array(
43231   'path' => 'taxonomy/autocomplete',
43232   'load_functions' => '',
43233   'to_arg_functions' => '',
43234   'access_callback' => 'user_access',
43235   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
43236   'page_callback' => 'i18ntaxonomy_autocomplete',
43237   'page_arguments' => 'a:0:{}',
43238   'fit' => '3',
43239   'number_parts' => '2',
43240   'tab_parent' => '',
43241   'tab_root' => 'taxonomy/autocomplete',
43242   'title' => 'Autocomplete taxonomy',
43243   'title_callback' => 't',
43244   'title_arguments' => '',
43245   'type' => '4',
43246   'block_callback' => '',
43247   'description' => '',
43248   'position' => '',
43249   'weight' => '0',
43250   'file' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.pages.inc',
43251 ))
43252 ->values(array(
43253   'path' => 'taxonomy/term/%',
43254   'load_functions' => 'a:1:{i:2;N;}',
43255   'to_arg_functions' => '',
43256   'access_callback' => 'user_access',
43257   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
43258   'page_callback' => 'i18ntaxonomy_term_page',
43259   'page_arguments' => 'a:1:{i:0;i:2;}',
43260   'fit' => '6',
43261   'number_parts' => '3',
43262   'tab_parent' => '',
43263   'tab_root' => 'taxonomy/term/%',
43264   'title' => 'Taxonomy term',
43265   'title_callback' => 't',
43266   'title_arguments' => '',
43267   'type' => '4',
43268   'block_callback' => '',
43269   'description' => '',
43270   'position' => '',
43271   'weight' => '0',
43272   'file' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.pages.inc',
43273 ))
43274 ->values(array(
43275   'path' => 'upload/js',
43276   'load_functions' => '',
43277   'to_arg_functions' => '',
43278   'access_callback' => 'user_access',
43279   'access_arguments' => 'a:1:{i:0;s:12:"upload files";}',
43280   'page_callback' => 'upload_js',
43281   'page_arguments' => 'a:0:{}',
43282   'fit' => '3',
43283   'number_parts' => '2',
43284   'tab_parent' => '',
43285   'tab_root' => 'upload/js',
43286   'title' => '',
43287   'title_callback' => 't',
43288   'title_arguments' => '',
43289   'type' => '4',
43290   'block_callback' => '',
43291   'description' => '',
43292   'position' => '',
43293   'weight' => '0',
43294   'file' => '',
43295 ))
43296 ->values(array(
43297   'path' => 'user',
43298   'load_functions' => '',
43299   'to_arg_functions' => '',
43300   'access_callback' => '1',
43301   'access_arguments' => 'a:0:{}',
43302   'page_callback' => 'user_page',
43303   'page_arguments' => 'a:0:{}',
43304   'fit' => '1',
43305   'number_parts' => '1',
43306   'tab_parent' => '',
43307   'tab_root' => 'user',
43308   'title' => 'User account',
43309   'title_callback' => 't',
43310   'title_arguments' => '',
43311   'type' => '4',
43312   'block_callback' => '',
43313   'description' => '',
43314   'position' => '',
43315   'weight' => '0',
43316   'file' => 'modules/user/user.pages.inc',
43317 ))
43318 ->values(array(
43319   'path' => 'user/%',
43320   'load_functions' => 'a:1:{i:1;s:22:"user_uid_optional_load";}',
43321   'to_arg_functions' => 'a:1:{i:1;s:24:"user_uid_optional_to_arg";}',
43322   'access_callback' => 'user_view_access',
43323   'access_arguments' => 'a:1:{i:0;i:1;}',
43324   'page_callback' => 'user_view',
43325   'page_arguments' => 'a:1:{i:0;i:1;}',
43326   'fit' => '2',
43327   'number_parts' => '2',
43328   'tab_parent' => '',
43329   'tab_root' => 'user/%',
43330   'title' => 'My account',
43331   'title_callback' => 'user_page_title',
43332   'title_arguments' => 'a:1:{i:0;i:1;}',
43333   'type' => '6',
43334   'block_callback' => '',
43335   'description' => '',
43336   'position' => '',
43337   'weight' => '0',
43338   'file' => 'modules/user/user.pages.inc',
43339 ))
43340 ->values(array(
43341   'path' => 'user/%/contact',
43342   'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
43343   'to_arg_functions' => '',
43344   'access_callback' => '_contact_user_tab_access',
43345   'access_arguments' => 'a:1:{i:0;i:1;}',
43346   'page_callback' => 'contact_user_page',
43347   'page_arguments' => 'a:1:{i:0;i:1;}',
43348   'fit' => '5',
43349   'number_parts' => '3',
43350   'tab_parent' => 'user/%',
43351   'tab_root' => 'user/%',
43352   'title' => 'Contact',
43353   'title_callback' => 't',
43354   'title_arguments' => '',
43355   'type' => '128',
43356   'block_callback' => '',
43357   'description' => '',
43358   'position' => '',
43359   'weight' => '2',
43360   'file' => 'modules/contact/contact.pages.inc',
43361 ))
43362 ->values(array(
43363   'path' => 'user/%/delete',
43364   'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
43365   'to_arg_functions' => '',
43366   'access_callback' => 'user_delete_access',
43367   'access_arguments' => 'a:1:{i:0;i:1;}',
43368   'page_callback' => 'drupal_get_form',
43369   'page_arguments' => 'a:2:{i:0;s:19:"user_confirm_delete";i:1;i:1;}',
43370   'fit' => '5',
43371   'number_parts' => '3',
43372   'tab_parent' => '',
43373   'tab_root' => 'user/%/delete',
43374   'title' => 'Delete',
43375   'title_callback' => 't',
43376   'title_arguments' => '',
43377   'type' => '4',
43378   'block_callback' => '',
43379   'description' => '',
43380   'position' => '',
43381   'weight' => '0',
43382   'file' => 'modules/user/user.pages.inc',
43383 ))
43384 ->values(array(
43385   'path' => 'user/%/edit',
43386   'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
43387   'to_arg_functions' => '',
43388   'access_callback' => 'user_edit_access',
43389   'access_arguments' => 'a:1:{i:0;i:1;}',
43390   'page_callback' => 'user_edit',
43391   'page_arguments' => 'a:1:{i:0;i:1;}',
43392   'fit' => '5',
43393   'number_parts' => '3',
43394   'tab_parent' => 'user/%',
43395   'tab_root' => 'user/%',
43396   'title' => 'Edit',
43397   'title_callback' => 't',
43398   'title_arguments' => '',
43399   'type' => '128',
43400   'block_callback' => '',
43401   'description' => '',
43402   'position' => '',
43403   'weight' => '0',
43404   'file' => 'modules/user/user.pages.inc',
43405 ))
43406 ->values(array(
43407   'path' => 'user/%/edit/account',
43408   'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
43409   'to_arg_functions' => '',
43410   'access_callback' => 'user_edit_access',
43411   'access_arguments' => 'a:1:{i:0;i:1;}',
43412   'page_callback' => 'user_edit',
43413   'page_arguments' => 'a:1:{i:0;i:1;}',
43414   'fit' => '11',
43415   'number_parts' => '4',
43416   'tab_parent' => 'user/%/edit',
43417   'tab_root' => 'user/%',
43418   'title' => 'Account',
43419   'title_callback' => 't',
43420   'title_arguments' => '',
43421   'type' => '136',
43422   'block_callback' => '',
43423   'description' => '',
43424   'position' => '',
43425   'weight' => '0',
43426   'file' => 'modules/user/user.pages.inc',
43427 ))
43428 ->values(array(
43429   'path' => 'user/%/edit/Administrative data',
43430   'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
43431   'to_arg_functions' => '',
43432   'access_callback' => 'profile_category_access',
43433   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:19:"Administrative data";}',
43434   'page_callback' => 'user_edit',
43435   'page_arguments' => 'a:2:{i:0;i:1;i:1;i:3;}',
43436   'fit' => '11',
43437   'number_parts' => '4',
43438   'tab_parent' => 'user/%/edit',
43439   'tab_root' => 'user/%',
43440   'title' => '',
43441   'title_callback' => 'i18nprofile_translate_category',
43442   'title_arguments' => 'a:1:{i:0;s:19:"Administrative data";}',
43443   'type' => '128',
43444   'block_callback' => '',
43445   'description' => '',
43446   'position' => '',
43447   'weight' => '3',
43448   'file' => 'modules/user/user.pages.inc',
43449 ))
43450 ->values(array(
43451   'path' => 'user/%/edit/Communication preferences',
43452   'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
43453   'to_arg_functions' => '',
43454   'access_callback' => 'profile_category_access',
43455   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:25:"Communication preferences";}',
43456   'page_callback' => 'user_edit',
43457   'page_arguments' => 'a:2:{i:0;i:1;i:1;i:3;}',
43458   'fit' => '11',
43459   'number_parts' => '4',
43460   'tab_parent' => 'user/%/edit',
43461   'tab_root' => 'user/%',
43462   'title' => '',
43463   'title_callback' => 'i18nprofile_translate_category',
43464   'title_arguments' => 'a:1:{i:0;s:25:"Communication preferences";}',
43465   'type' => '128',
43466   'block_callback' => '',
43467   'description' => '',
43468   'position' => '',
43469   'weight' => '3',
43470   'file' => 'modules/user/user.pages.inc',
43471 ))
43472 ->values(array(
43473   'path' => 'user/%/edit/Personal information',
43474   'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
43475   'to_arg_functions' => '',
43476   'access_callback' => 'profile_category_access',
43477   'access_arguments' => 'a:2:{i:0;i:1;i:1;s:20:"Personal information";}',
43478   'page_callback' => 'user_edit',
43479   'page_arguments' => 'a:2:{i:0;i:1;i:1;i:3;}',
43480   'fit' => '11',
43481   'number_parts' => '4',
43482   'tab_parent' => 'user/%/edit',
43483   'tab_root' => 'user/%',
43484   'title' => '',
43485   'title_callback' => 'i18nprofile_translate_category',
43486   'title_arguments' => 'a:1:{i:0;s:20:"Personal information";}',
43487   'type' => '128',
43488   'block_callback' => '',
43489   'description' => '',
43490   'position' => '',
43491   'weight' => '3',
43492   'file' => 'modules/user/user.pages.inc',
43493 ))
43494 ->values(array(
43495   'path' => 'user/%/track/navigation',
43496   'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
43497   'to_arg_functions' => '',
43498   'access_callback' => 'user_access',
43499   'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}',
43500   'page_callback' => 'statistics_user_tracker',
43501   'page_arguments' => 'a:0:{}',
43502   'fit' => '11',
43503   'number_parts' => '4',
43504   'tab_parent' => 'user/%',
43505   'tab_root' => 'user/%',
43506   'title' => 'Track page visits',
43507   'title_callback' => 't',
43508   'title_arguments' => '',
43509   'type' => '128',
43510   'block_callback' => '',
43511   'description' => '',
43512   'position' => '',
43513   'weight' => '2',
43514   'file' => 'modules/statistics/statistics.pages.inc',
43515 ))
43516 ->values(array(
43517   'path' => 'user/%/view',
43518   'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
43519   'to_arg_functions' => '',
43520   'access_callback' => 'user_view_access',
43521   'access_arguments' => 'a:1:{i:0;i:1;}',
43522   'page_callback' => 'user_view',
43523   'page_arguments' => 'a:1:{i:0;i:1;}',
43524   'fit' => '5',
43525   'number_parts' => '3',
43526   'tab_parent' => 'user/%',
43527   'tab_root' => 'user/%',
43528   'title' => 'View',
43529   'title_callback' => 't',
43530   'title_arguments' => '',
43531   'type' => '136',
43532   'block_callback' => '',
43533   'description' => '',
43534   'position' => '',
43535   'weight' => '-10',
43536   'file' => 'modules/user/user.pages.inc',
43537 ))
43538 ->values(array(
43539   'path' => 'user/autocomplete',
43540   'load_functions' => '',
43541   'to_arg_functions' => '',
43542   'access_callback' => 'user_access',
43543   'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
43544   'page_callback' => 'user_autocomplete',
43545   'page_arguments' => 'a:0:{}',
43546   'fit' => '3',
43547   'number_parts' => '2',
43548   'tab_parent' => '',
43549   'tab_root' => 'user/autocomplete',
43550   'title' => 'User autocomplete',
43551   'title_callback' => 't',
43552   'title_arguments' => '',
43553   'type' => '4',
43554   'block_callback' => '',
43555   'description' => '',
43556   'position' => '',
43557   'weight' => '0',
43558   'file' => 'modules/user/user.pages.inc',
43559 ))
43560 ->values(array(
43561   'path' => 'user/login',
43562   'load_functions' => '',
43563   'to_arg_functions' => '',
43564   'access_callback' => 'user_is_anonymous',
43565   'access_arguments' => 'a:0:{}',
43566   'page_callback' => 'user_page',
43567   'page_arguments' => 'a:0:{}',
43568   'fit' => '3',
43569   'number_parts' => '2',
43570   'tab_parent' => 'user',
43571   'tab_root' => 'user',
43572   'title' => 'Log in',
43573   'title_callback' => 't',
43574   'title_arguments' => '',
43575   'type' => '136',
43576   'block_callback' => '',
43577   'description' => '',
43578   'position' => '',
43579   'weight' => '0',
43580   'file' => 'modules/user/user.pages.inc',
43581 ))
43582 ->values(array(
43583   'path' => 'user/password',
43584   'load_functions' => '',
43585   'to_arg_functions' => '',
43586   'access_callback' => 'user_is_anonymous',
43587   'access_arguments' => 'a:0:{}',
43588   'page_callback' => 'drupal_get_form',
43589   'page_arguments' => 'a:1:{i:0;s:9:"user_pass";}',
43590   'fit' => '3',
43591   'number_parts' => '2',
43592   'tab_parent' => 'user',
43593   'tab_root' => 'user',
43594   'title' => 'Request new password',
43595   'title_callback' => 't',
43596   'title_arguments' => '',
43597   'type' => '128',
43598   'block_callback' => '',
43599   'description' => '',
43600   'position' => '',
43601   'weight' => '0',
43602   'file' => 'modules/user/user.pages.inc',
43603 ))
43604 ->values(array(
43605   'path' => 'user/register',
43606   'load_functions' => '',
43607   'to_arg_functions' => '',
43608   'access_callback' => 'user_register_access',
43609   'access_arguments' => 'a:0:{}',
43610   'page_callback' => 'drupal_get_form',
43611   'page_arguments' => 'a:1:{i:0;s:13:"user_register";}',
43612   'fit' => '3',
43613   'number_parts' => '2',
43614   'tab_parent' => 'user',
43615   'tab_root' => 'user',
43616   'title' => 'Create new account',
43617   'title_callback' => 't',
43618   'title_arguments' => '',
43619   'type' => '128',
43620   'block_callback' => '',
43621   'description' => '',
43622   'position' => '',
43623   'weight' => '0',
43624   'file' => 'modules/user/user.pages.inc',
43625 ))
43626 ->values(array(
43627   'path' => 'user/reset/%/%/%',
43628   'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
43629   'to_arg_functions' => '',
43630   'access_callback' => '1',
43631   'access_arguments' => 'a:0:{}',
43632   'page_callback' => 'drupal_get_form',
43633   'page_arguments' => 'a:4:{i:0;s:15:"user_pass_reset";i:1;i:2;i:2;i:3;i:3;i:4;}',
43634   'fit' => '24',
43635   'number_parts' => '5',
43636   'tab_parent' => '',
43637   'tab_root' => 'user/reset/%/%/%',
43638   'title' => 'Reset password',
43639   'title_callback' => 't',
43640   'title_arguments' => '',
43641   'type' => '4',
43642   'block_callback' => '',
43643   'description' => '',
43644   'position' => '',
43645   'weight' => '0',
43646   'file' => 'modules/user/user.pages.inc',
43647 ))
43648 ->values(array(
43649   'path' => 'user/timezone',
43650   'load_functions' => '',
43651   'to_arg_functions' => '',
43652   'access_callback' => '1',
43653   'access_arguments' => 'a:0:{}',
43654   'page_callback' => 'user_timezone',
43655   'page_arguments' => 'a:0:{}',
43656   'fit' => '3',
43657   'number_parts' => '2',
43658   'tab_parent' => '',
43659   'tab_root' => 'user/timezone',
43660   'title' => 'User timezone',
43661   'title_callback' => 't',
43662   'title_arguments' => '',
43663   'type' => '4',
43664   'block_callback' => '',
43665   'description' => '',
43666   'position' => '',
43667   'weight' => '0',
43668   'file' => '',
43669 ))
43670 ->values(array(
43671   'path' => 'userreference/autocomplete',
43672   'load_functions' => '',
43673   'to_arg_functions' => '',
43674   'access_callback' => 'user_access',
43675   'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
43676   'page_callback' => 'userreference_autocomplete',
43677   'page_arguments' => 'a:0:{}',
43678   'fit' => '3',
43679   'number_parts' => '2',
43680   'tab_parent' => '',
43681   'tab_root' => 'userreference/autocomplete',
43682   'title' => 'Userreference autocomplete',
43683   'title_callback' => 't',
43684   'title_arguments' => '',
43685   'type' => '4',
43686   'block_callback' => '',
43687   'description' => '',
43688   'position' => '',
43689   'weight' => '0',
43690   'file' => '',
43691 ))
43692 ->execute();
43693
43694 $connection->schema()->createTable('node', array(
43695   'fields' => array(
43696     'nid' => array(
43697       'type' => 'serial',
43698       'not null' => TRUE,
43699       'size' => 'normal',
43700       'unsigned' => TRUE,
43701     ),
43702     'vid' => array(
43703       'type' => 'int',
43704       'not null' => TRUE,
43705       'size' => 'normal',
43706       'default' => '0',
43707       'unsigned' => TRUE,
43708     ),
43709     'type' => array(
43710       'type' => 'varchar',
43711       'not null' => TRUE,
43712       'length' => '32',
43713       'default' => '',
43714     ),
43715     'language' => array(
43716       'type' => 'varchar',
43717       'not null' => TRUE,
43718       'length' => '12',
43719       'default' => '',
43720     ),
43721     'title' => array(
43722       'type' => 'varchar',
43723       'not null' => TRUE,
43724       'length' => '255',
43725       'default' => '',
43726     ),
43727     'uid' => array(
43728       'type' => 'int',
43729       'not null' => TRUE,
43730       'size' => 'normal',
43731       'default' => '0',
43732     ),
43733     'status' => array(
43734       'type' => 'int',
43735       'not null' => TRUE,
43736       'size' => 'normal',
43737       'default' => '1',
43738     ),
43739     'created' => array(
43740       'type' => 'int',
43741       'not null' => TRUE,
43742       'size' => 'normal',
43743       'default' => '0',
43744     ),
43745     'changed' => array(
43746       'type' => 'int',
43747       'not null' => TRUE,
43748       'size' => 'normal',
43749       'default' => '0',
43750     ),
43751     'comment' => array(
43752       'type' => 'int',
43753       'not null' => TRUE,
43754       'size' => 'normal',
43755       'default' => '0',
43756     ),
43757     'promote' => array(
43758       'type' => 'int',
43759       'not null' => TRUE,
43760       'size' => 'normal',
43761       'default' => '0',
43762     ),
43763     'moderate' => array(
43764       'type' => 'int',
43765       'not null' => TRUE,
43766       'size' => 'normal',
43767       'default' => '0',
43768     ),
43769     'sticky' => array(
43770       'type' => 'int',
43771       'not null' => TRUE,
43772       'size' => 'normal',
43773       'default' => '0',
43774     ),
43775     'tnid' => array(
43776       'type' => 'int',
43777       'not null' => TRUE,
43778       'size' => 'normal',
43779       'default' => '0',
43780       'unsigned' => TRUE,
43781     ),
43782     'translate' => array(
43783       'type' => 'int',
43784       'not null' => TRUE,
43785       'size' => 'normal',
43786       'default' => '0',
43787     ),
43788   ),
43789   'primary key' => array(
43790     'nid',
43791   ),
43792   'mysql_character_set' => 'utf8',
43793 ));
43794
43795 $connection->insert('node')
43796 ->fields(array(
43797   'nid',
43798   'vid',
43799   'type',
43800   'language',
43801   'title',
43802   'uid',
43803   'status',
43804   'created',
43805   'changed',
43806   'comment',
43807   'promote',
43808   'moderate',
43809   'sticky',
43810   'tnid',
43811   'translate',
43812 ))
43813 ->values(array(
43814   'nid' => '1',
43815   'vid' => '1',
43816   'type' => 'story',
43817   'language' => '',
43818   'title' => 'Test title',
43819   'uid' => '1',
43820   'status' => '1',
43821   'created' => '1388271197',
43822   'changed' => '1420861423',
43823   'comment' => '0',
43824   'promote' => '0',
43825   'moderate' => '0',
43826   'sticky' => '0',
43827   'tnid' => '0',
43828   'translate' => '0',
43829 ))
43830 ->values(array(
43831   'nid' => '2',
43832   'vid' => '3',
43833   'type' => 'story',
43834   'language' => '',
43835   'title' => 'Test title rev 3',
43836   'uid' => '1',
43837   'status' => '1',
43838   'created' => '1388271197',
43839   'changed' => '1420718386',
43840   'comment' => '0',
43841   'promote' => '0',
43842   'moderate' => '0',
43843   'sticky' => '0',
43844   'tnid' => '0',
43845   'translate' => '0',
43846 ))
43847 ->values(array(
43848   'nid' => '3',
43849   'vid' => '4',
43850   'type' => 'test_planet',
43851   'language' => '',
43852   'title' => 'Test planet title 3',
43853   'uid' => '1',
43854   'status' => '1',
43855   'created' => '1388271527',
43856   'changed' => '1390096401',
43857   'comment' => '0',
43858   'promote' => '0',
43859   'moderate' => '0',
43860   'sticky' => '0',
43861   'tnid' => '0',
43862   'translate' => '0',
43863 ))
43864 ->values(array(
43865   'nid' => '4',
43866   'vid' => '6',
43867   'type' => 'test_planet',
43868   'language' => '',
43869   'title' => '',
43870   'uid' => '1',
43871   'status' => '1',
43872   'created' => '1388271527',
43873   'changed' => '1390096401',
43874   'comment' => '0',
43875   'promote' => '0',
43876   'moderate' => '0',
43877   'sticky' => '0',
43878   'tnid' => '0',
43879   'translate' => '0',
43880 ))
43881 ->values(array(
43882   'nid' => '5',
43883   'vid' => '7',
43884   'type' => 'test_planet',
43885   'language' => '',
43886   'title' => '',
43887   'uid' => '1',
43888   'status' => '1',
43889   'created' => '1388271527',
43890   'changed' => '1390096401',
43891   'comment' => '0',
43892   'promote' => '0',
43893   'moderate' => '0',
43894   'sticky' => '0',
43895   'tnid' => '0',
43896   'translate' => '0',
43897 ))
43898 ->values(array(
43899   'nid' => '6',
43900   'vid' => '8',
43901   'type' => 'test_planet',
43902   'language' => '',
43903   'title' => '',
43904   'uid' => '1',
43905   'status' => '1',
43906   'created' => '1388271527',
43907   'changed' => '1390096401',
43908   'comment' => '0',
43909   'promote' => '0',
43910   'moderate' => '0',
43911   'sticky' => '0',
43912   'tnid' => '0',
43913   'translate' => '0',
43914 ))
43915 ->values(array(
43916   'nid' => '7',
43917   'vid' => '9',
43918   'type' => 'test_planet',
43919   'language' => '',
43920   'title' => '',
43921   'uid' => '1',
43922   'status' => '1',
43923   'created' => '1388271527',
43924   'changed' => '1390096401',
43925   'comment' => '0',
43926   'promote' => '0',
43927   'moderate' => '0',
43928   'sticky' => '0',
43929   'tnid' => '0',
43930   'translate' => '0',
43931 ))
43932 ->values(array(
43933   'nid' => '8',
43934   'vid' => '10',
43935   'type' => 'test_planet',
43936   'language' => '',
43937   'title' => '',
43938   'uid' => '1',
43939   'status' => '1',
43940   'created' => '1388271527',
43941   'changed' => '1390096401',
43942   'comment' => '0',
43943   'promote' => '0',
43944   'moderate' => '0',
43945   'sticky' => '0',
43946   'tnid' => '0',
43947   'translate' => '0',
43948 ))
43949 ->values(array(
43950   'nid' => '9',
43951   'vid' => '12',
43952   'type' => 'story',
43953   'language' => '',
43954   'title' => 'Once upon a time',
43955   'uid' => '1',
43956   'status' => '1',
43957   'created' => '1444671588',
43958   'changed' => '1444671588',
43959   'comment' => '2',
43960   'promote' => '1',
43961   'moderate' => '0',
43962   'sticky' => '0',
43963   'tnid' => '0',
43964   'translate' => '0',
43965 ))
43966 ->values(array(
43967   'nid' => '10',
43968   'vid' => '13',
43969   'type' => 'page',
43970   'language' => 'en',
43971   'title' => 'The Real McCoy',
43972   'uid' => '1',
43973   'status' => '1',
43974   'created' => '1444238800',
43975   'changed' => '1444238808',
43976   'comment' => '2',
43977   'promote' => '1',
43978   'moderate' => '0',
43979   'sticky' => '0',
43980   'tnid' => '10',
43981   'translate' => '0',
43982 ))
43983 ->values(array(
43984   'nid' => '11',
43985   'vid' => '14',
43986   'type' => 'page',
43987   'language' => 'fr',
43988   'title' => 'Le Vrai McCoy',
43989   'uid' => '1',
43990   'status' => '1',
43991   'created' => '1444239050',
43992   'changed' => '1444239050',
43993   'comment' => '2',
43994   'promote' => '1',
43995   'moderate' => '0',
43996   'sticky' => '0',
43997   'tnid' => '10',
43998   'translate' => '0',
43999 ))
44000 ->values(array(
44001   'nid' => '12',
44002   'vid' => '15',
44003   'type' => 'page',
44004   'language' => 'zu',
44005   'title' => 'Abantu zulu',
44006   'uid' => '1',
44007   'status' => '1',
44008   'created' => '1444238800',
44009   'changed' => '1444238808',
44010   'comment' => '0',
44011   'promote' => '0',
44012   'moderate' => '0',
44013   'sticky' => '0',
44014   'tnid' => '12',
44015   'translate' => '0',
44016 ))
44017 ->values(array(
44018   'nid' => '13',
44019   'vid' => '16',
44020   'type' => 'page',
44021   'language' => 'en',
44022   'title' => 'The Zulu People',
44023   'uid' => '1',
44024   'status' => '1',
44025   'created' => '1444239050',
44026   'changed' => '1444239050',
44027   'comment' => '0',
44028   'promote' => '0',
44029   'moderate' => '0',
44030   'sticky' => '0',
44031   'tnid' => '12',
44032   'translate' => '0',
44033 ))
44034 ->values(array(
44035   'nid' => '14',
44036   'vid' => '17',
44037   'type' => 'company',
44038   'language' => '',
44039   'title' => 'United Federation of Planets',
44040   'uid' => '1',
44041   'status' => '1',
44042   'created' => '1493066668',
44043   'changed' => '1493066668',
44044   'comment' => '2',
44045   'promote' => '1',
44046   'moderate' => '0',
44047   'sticky' => '0',
44048   'tnid' => '0',
44049   'translate' => '0',
44050 ))
44051 ->values(array(
44052   'nid' => '15',
44053   'vid' => '18',
44054   'type' => 'company',
44055   'language' => '',
44056   'title' => 'Klingon Empire',
44057   'uid' => '1',
44058   'status' => '1',
44059   'created' => '1493066677',
44060   'changed' => '1493066677',
44061   'comment' => '2',
44062   'promote' => '1',
44063   'moderate' => '0',
44064   'sticky' => '0',
44065   'tnid' => '0',
44066   'translate' => '0',
44067 ))
44068 ->values(array(
44069   'nid' => '16',
44070   'vid' => '19',
44071   'type' => 'company',
44072   'language' => '',
44073   'title' => 'Romulan Empire',
44074   'uid' => '1',
44075   'status' => '1',
44076   'created' => '1493066684',
44077   'changed' => '1493066684',
44078   'comment' => '2',
44079   'promote' => '1',
44080   'moderate' => '0',
44081   'sticky' => '0',
44082   'tnid' => '0',
44083   'translate' => '0',
44084 ))
44085 ->values(array(
44086   'nid' => '17',
44087   'vid' => '20',
44088   'type' => 'company',
44089   'language' => '',
44090   'title' => 'Ferengi Commerce Authority',
44091   'uid' => '1',
44092   'status' => '1',
44093   'created' => '1493066693',
44094   'changed' => '1493066693',
44095   'comment' => '2',
44096   'promote' => '1',
44097   'moderate' => '0',
44098   'sticky' => '0',
44099   'tnid' => '0',
44100   'translate' => '0',
44101 ))
44102 ->values(array(
44103   'nid' => '18',
44104   'vid' => '21',
44105   'type' => 'employee',
44106   'language' => '',
44107   'title' => 'Ambassador Sarek',
44108   'uid' => '1',
44109   'status' => '1',
44110   'created' => '1493066711',
44111   'changed' => '1494966544',
44112   'comment' => '2',
44113   'promote' => '1',
44114   'moderate' => '0',
44115   'sticky' => '0',
44116   'tnid' => '0',
44117   'translate' => '0',
44118 ))
44119 ->values(array(
44120   'nid' => '19',
44121   'vid' => '22',
44122   'type' => 'forum',
44123   'language' => '',
44124   'title' => 'New Forum Topic',
44125   'uid' => '1',
44126   'status' => '1',
44127   'created' => '1501955771',
44128   'changed' => '1501955771',
44129   'comment' => '2',
44130   'promote' => '0',
44131   'moderate' => '0',
44132   'sticky' => '0',
44133   'tnid' => '0',
44134   'translate' => '0',
44135 ))
44136 ->values(array(
44137   'nid' => '20',
44138   'vid' => '23',
44139   'type' => 'page',
44140   'language' => 'fr',
44141   'title' => 'Le peuple zoulou',
44142   'uid' => '1',
44143   'status' => '1',
44144   'created' => '1520613038',
44145   'changed' => '1520613305',
44146   'comment' => '0',
44147   'promote' => '1',
44148   'moderate' => '0',
44149   'sticky' => '0',
44150   'tnid' => '12',
44151   'translate' => '0',
44152 ))
44153 ->values(array(
44154   'nid' => '21',
44155   'vid' => '2002',
44156   'type' => 'employee',
44157   'language' => 'en',
44158   'title' => 'John Smith - EN',
44159   'uid' => '1',
44160   'status' => '1',
44161   'created' => '1534014650',
44162   'changed' => '1534014650',
44163   'comment' => '2',
44164   'promote' => '1',
44165   'moderate' => '0',
44166   'sticky' => '0',
44167   'tnid' => '21',
44168   'translate' => '0',
44169 ))
44170 ->values(array(
44171   'nid' => '22',
44172   'vid' => '2003',
44173   'type' => 'employee',
44174   'language' => 'fr',
44175   'title' => 'John Smith - FR',
44176   'uid' => '1',
44177   'status' => '1',
44178   'created' => '1534014687',
44179   'changed' => '1534014687',
44180   'comment' => '2',
44181   'promote' => '1',
44182   'moderate' => '0',
44183   'sticky' => '0',
44184   'tnid' => '21',
44185   'translate' => '0',
44186 ))
44187 ->execute();
44188
44189 $connection->schema()->createTable('node_access', array(
44190   'fields' => array(
44191     'nid' => array(
44192       'type' => 'int',
44193       'not null' => TRUE,
44194       'size' => 'normal',
44195       'default' => '0',
44196       'unsigned' => TRUE,
44197     ),
44198     'gid' => array(
44199       'type' => 'int',
44200       'not null' => TRUE,
44201       'size' => 'normal',
44202       'default' => '0',
44203       'unsigned' => TRUE,
44204     ),
44205     'realm' => array(
44206       'type' => 'varchar',
44207       'not null' => TRUE,
44208       'length' => '255',
44209       'default' => '',
44210     ),
44211     'grant_view' => array(
44212       'type' => 'int',
44213       'not null' => TRUE,
44214       'size' => 'normal',
44215       'default' => '0',
44216       'unsigned' => TRUE,
44217     ),
44218     'grant_update' => array(
44219       'type' => 'int',
44220       'not null' => TRUE,
44221       'size' => 'normal',
44222       'default' => '0',
44223       'unsigned' => TRUE,
44224     ),
44225     'grant_delete' => array(
44226       'type' => 'int',
44227       'not null' => TRUE,
44228       'size' => 'normal',
44229       'default' => '0',
44230       'unsigned' => TRUE,
44231     ),
44232   ),
44233   'primary key' => array(
44234     'nid',
44235     'gid',
44236     'realm',
44237   ),
44238   'mysql_character_set' => 'utf8',
44239 ));
44240
44241 $connection->insert('node_access')
44242 ->fields(array(
44243   'nid',
44244   'gid',
44245   'realm',
44246   'grant_view',
44247   'grant_update',
44248   'grant_delete',
44249 ))
44250 ->values(array(
44251   'nid' => '0',
44252   'gid' => '0',
44253   'realm' => 'all',
44254   'grant_view' => '1',
44255   'grant_update' => '0',
44256   'grant_delete' => '0',
44257 ))
44258 ->execute();
44259
44260 $connection->schema()->createTable('node_comment_statistics', array(
44261   'fields' => array(
44262     'nid' => array(
44263       'type' => 'int',
44264       'not null' => TRUE,
44265       'size' => 'normal',
44266       'default' => '0',
44267       'unsigned' => TRUE,
44268     ),
44269     'last_comment_timestamp' => array(
44270       'type' => 'int',
44271       'not null' => TRUE,
44272       'size' => 'normal',
44273       'default' => '0',
44274     ),
44275     'last_comment_name' => array(
44276       'type' => 'varchar',
44277       'not null' => FALSE,
44278       'length' => '60',
44279     ),
44280     'last_comment_uid' => array(
44281       'type' => 'int',
44282       'not null' => TRUE,
44283       'size' => 'normal',
44284       'default' => '0',
44285     ),
44286     'comment_count' => array(
44287       'type' => 'int',
44288       'not null' => TRUE,
44289       'size' => 'normal',
44290       'default' => '0',
44291       'unsigned' => TRUE,
44292     ),
44293   ),
44294   'primary key' => array(
44295     'nid',
44296   ),
44297   'indexes' => array(
44298     'comment_count' => array(
44299       'comment_count',
44300     ),
44301     'last_comment_uid' => array(
44302       'last_comment_uid',
44303     ),
44304   ),
44305   'mysql_character_set' => 'utf8',
44306 ));
44307
44308 $connection->insert('node_comment_statistics')
44309 ->fields(array(
44310   'nid',
44311   'last_comment_timestamp',
44312   'last_comment_name',
44313   'last_comment_uid',
44314   'comment_count',
44315 ))
44316 ->values(array(
44317   'nid' => '0',
44318   'last_comment_timestamp' => '1468384735',
44319   'last_comment_name' => NULL,
44320   'last_comment_uid' => '1',
44321   'comment_count' => '0',
44322 ))
44323 ->values(array(
44324   'nid' => '1',
44325   'last_comment_timestamp' => '1388271197',
44326   'last_comment_name' => NULL,
44327   'last_comment_uid' => '1',
44328   'comment_count' => '0',
44329 ))
44330 ->values(array(
44331   'nid' => '2',
44332   'last_comment_timestamp' => '1389002813',
44333   'last_comment_name' => NULL,
44334   'last_comment_uid' => '1',
44335   'comment_count' => '0',
44336 ))
44337 ->values(array(
44338   'nid' => '9',
44339   'last_comment_timestamp' => '1444238800',
44340   'last_comment_name' => NULL,
44341   'last_comment_uid' => '1',
44342   'comment_count' => '0',
44343 ))
44344 ->values(array(
44345   'nid' => '10',
44346   'last_comment_timestamp' => '1444239050',
44347   'last_comment_name' => NULL,
44348   'last_comment_uid' => '1',
44349   'comment_count' => '0',
44350 ))
44351 ->values(array(
44352   'nid' => '14',
44353   'last_comment_timestamp' => '1493066668',
44354   'last_comment_name' => NULL,
44355   'last_comment_uid' => '1',
44356   'comment_count' => '0',
44357 ))
44358 ->values(array(
44359   'nid' => '15',
44360   'last_comment_timestamp' => '1493066677',
44361   'last_comment_name' => NULL,
44362   'last_comment_uid' => '1',
44363   'comment_count' => '0',
44364 ))
44365 ->values(array(
44366   'nid' => '16',
44367   'last_comment_timestamp' => '1493066684',
44368   'last_comment_name' => NULL,
44369   'last_comment_uid' => '1',
44370   'comment_count' => '0',
44371 ))
44372 ->values(array(
44373   'nid' => '17',
44374   'last_comment_timestamp' => '1493066693',
44375   'last_comment_name' => NULL,
44376   'last_comment_uid' => '1',
44377   'comment_count' => '0',
44378 ))
44379 ->values(array(
44380   'nid' => '18',
44381   'last_comment_timestamp' => '1493066711',
44382   'last_comment_name' => NULL,
44383   'last_comment_uid' => '1',
44384   'comment_count' => '0',
44385 ))
44386 ->values(array(
44387   'nid' => '19',
44388   'last_comment_timestamp' => '1501955803',
44389   'last_comment_name' => '',
44390   'last_comment_uid' => '1',
44391   'comment_count' => '3',
44392 ))
44393 ->values(array(
44394   'nid' => '21',
44395   'last_comment_timestamp' => '1534014729',
44396   'last_comment_name' => '',
44397   'last_comment_uid' => '1',
44398   'comment_count' => '1',
44399 ))
44400 ->values(array(
44401   'nid' => '22',
44402   'last_comment_timestamp' => '1534014763',
44403   'last_comment_name' => '',
44404   'last_comment_uid' => '1',
44405   'comment_count' => '1',
44406 ))
44407 ->execute();
44408
44409 $connection->schema()->createTable('node_counter', array(
44410   'fields' => array(
44411     'nid' => array(
44412       'type' => 'int',
44413       'not null' => TRUE,
44414       'size' => 'normal',
44415       'default' => '0',
44416     ),
44417     'totalcount' => array(
44418       'type' => 'int',
44419       'not null' => TRUE,
44420       'size' => 'normal',
44421       'default' => '0',
44422       'unsigned' => TRUE,
44423     ),
44424     'daycount' => array(
44425       'type' => 'int',
44426       'not null' => TRUE,
44427       'size' => 'normal',
44428       'default' => '0',
44429       'unsigned' => TRUE,
44430     ),
44431     'timestamp' => array(
44432       'type' => 'int',
44433       'not null' => TRUE,
44434       'size' => 'normal',
44435       'default' => '0',
44436       'unsigned' => TRUE,
44437     ),
44438   ),
44439   'primary key' => array(
44440     'nid',
44441   ),
44442   'mysql_character_set' => 'utf8',
44443 ));
44444
44445 $connection->insert('node_counter')
44446 ->fields(array(
44447   'nid',
44448   'totalcount',
44449   'daycount',
44450   'timestamp',
44451 ))
44452 ->values(array(
44453   'nid' => '1',
44454   'totalcount' => '2',
44455   'daycount' => '0',
44456   'timestamp' => '1421727536',
44457 ))
44458 ->values(array(
44459   'nid' => '2',
44460   'totalcount' => '1',
44461   'daycount' => '0',
44462   'timestamp' => '1471428059',
44463 ))
44464 ->values(array(
44465   'nid' => '3',
44466   'totalcount' => '1',
44467   'daycount' => '0',
44468   'timestamp' => '1471428153',
44469 ))
44470 ->values(array(
44471   'nid' => '4',
44472   'totalcount' => '1',
44473   'daycount' => '1',
44474   'timestamp' => '1478755275',
44475 ))
44476 ->values(array(
44477   'nid' => '5',
44478   'totalcount' => '1',
44479   'daycount' => '1',
44480   'timestamp' => '1478755314',
44481 ))
44482 ->values(array(
44483   'nid' => '10',
44484   'totalcount' => '5',
44485   'daycount' => '1',
44486   'timestamp' => '1521137459',
44487 ))
44488 ->values(array(
44489   'nid' => '11',
44490   'totalcount' => '3',
44491   'daycount' => '1',
44492   'timestamp' => '1521137463',
44493 ))
44494 ->values(array(
44495   'nid' => '12',
44496   'totalcount' => '3',
44497   'daycount' => '0',
44498   'timestamp' => '1521137469',
44499 ))
44500 ->values(array(
44501   'nid' => '13',
44502   'totalcount' => '2',
44503   'daycount' => '1',
44504   'timestamp' => '1521137470',
44505 ))
44506 ->values(array(
44507   'nid' => '14',
44508   'totalcount' => '1',
44509   'daycount' => '1',
44510   'timestamp' => '1493066668',
44511 ))
44512 ->values(array(
44513   'nid' => '15',
44514   'totalcount' => '1',
44515   'daycount' => '1',
44516   'timestamp' => '1493066677',
44517 ))
44518 ->values(array(
44519   'nid' => '16',
44520   'totalcount' => '1',
44521   'daycount' => '1',
44522   'timestamp' => '1493066685',
44523 ))
44524 ->values(array(
44525   'nid' => '17',
44526   'totalcount' => '1',
44527   'daycount' => '1',
44528   'timestamp' => '1493066693',
44529 ))
44530 ->values(array(
44531   'nid' => '18',
44532   'totalcount' => '1',
44533   'daycount' => '1',
44534   'timestamp' => '1493066711',
44535 ))
44536 ->values(array(
44537   'nid' => '19',
44538   'totalcount' => '4',
44539   'daycount' => '4',
44540   'timestamp' => '1501955803',
44541 ))
44542 ->values(array(
44543   'nid' => '21',
44544   'totalcount' => '3',
44545   'daycount' => '3',
44546   'timestamp' => '1534014729',
44547 ))
44548 ->values(array(
44549   'nid' => '22',
44550   'totalcount' => '3',
44551   'daycount' => '3',
44552   'timestamp' => '1534014763',
44553 ))
44554 ->execute();
44555
44556 $connection->schema()->createTable('node_revisions', array(
44557   'fields' => array(
44558     'nid' => array(
44559       'type' => 'int',
44560       'not null' => TRUE,
44561       'size' => 'normal',
44562       'default' => '0',
44563       'unsigned' => TRUE,
44564     ),
44565     'vid' => array(
44566       'type' => 'serial',
44567       'not null' => TRUE,
44568       'size' => 'normal',
44569       'unsigned' => TRUE,
44570     ),
44571     'uid' => array(
44572       'type' => 'int',
44573       'not null' => TRUE,
44574       'size' => 'normal',
44575       'default' => '0',
44576     ),
44577     'title' => array(
44578       'type' => 'varchar',
44579       'not null' => TRUE,
44580       'length' => '255',
44581       'default' => '',
44582     ),
44583     'body' => array(
44584       'type' => 'text',
44585       'not null' => TRUE,
44586       'size' => 'normal',
44587     ),
44588     'teaser' => array(
44589       'type' => 'text',
44590       'not null' => TRUE,
44591       'size' => 'normal',
44592     ),
44593     'log' => array(
44594       'type' => 'text',
44595       'not null' => TRUE,
44596       'size' => 'normal',
44597     ),
44598     'timestamp' => array(
44599       'type' => 'int',
44600       'not null' => TRUE,
44601       'size' => 'normal',
44602       'default' => '0',
44603     ),
44604     'format' => array(
44605       'type' => 'int',
44606       'not null' => TRUE,
44607       'size' => 'normal',
44608       'default' => '0',
44609     ),
44610   ),
44611   'primary key' => array(
44612     'vid',
44613   ),
44614   'mysql_character_set' => 'utf8',
44615 ));
44616
44617 $connection->insert('node_revisions')
44618 ->fields(array(
44619   'nid',
44620   'vid',
44621   'uid',
44622   'title',
44623   'body',
44624   'teaser',
44625   'log',
44626   'timestamp',
44627   'format',
44628 ))
44629 ->values(array(
44630   'nid' => '1',
44631   'vid' => '1',
44632   'uid' => '1',
44633   'title' => 'Test title',
44634   'body' => 'test',
44635   'teaser' => 'test',
44636   'log' => '',
44637   'timestamp' => '1420861423',
44638   'format' => '1',
44639 ))
44640 ->values(array(
44641   'nid' => '2',
44642   'vid' => '3',
44643   'uid' => '1',
44644   'title' => 'Test title rev 3',
44645   'body' => 'test rev 3',
44646   'teaser' => 'test rev 3',
44647   'log' => '',
44648   'timestamp' => '1420718386',
44649   'format' => '1',
44650 ))
44651 ->values(array(
44652   'nid' => '3',
44653   'vid' => '4',
44654   'uid' => '1',
44655   'title' => 'Test page title rev 4',
44656   'body' => 'test page body rev 4',
44657   'teaser' => 'test page teaser rev 4',
44658   'log' => '',
44659   'timestamp' => '1390095701',
44660   'format' => '0',
44661 ))
44662 ->values(array(
44663   'nid' => '1',
44664   'vid' => '5',
44665   'uid' => '1',
44666   'title' => 'Test title rev 3',
44667   'body' => 'body test rev 3',
44668   'teaser' => 'teaser test rev 3',
44669   'log' => 'modified rev 3',
44670   'timestamp' => '1390095703',
44671   'format' => '1',
44672 ))
44673 ->values(array(
44674   'nid' => '4',
44675   'vid' => '6',
44676   'uid' => '1',
44677   'title' => 'Node 4',
44678   'body' => 'Node 4 body',
44679   'teaser' => 'test for node 4',
44680   'log' => '',
44681   'timestamp' => '1390095701',
44682   'format' => '1',
44683 ))
44684 ->values(array(
44685   'nid' => '5',
44686   'vid' => '7',
44687   'uid' => '1',
44688   'title' => 'Node 5',
44689   'body' => 'Node 5 body',
44690   'teaser' => 'test for node 5',
44691   'log' => '',
44692   'timestamp' => '1390095701',
44693   'format' => '1',
44694 ))
44695 ->values(array(
44696   'nid' => '6',
44697   'vid' => '8',
44698   'uid' => '1',
44699   'title' => 'Node 6',
44700   'body' => 'Node 6 body',
44701   'teaser' => 'test for node 6',
44702   'log' => '',
44703   'timestamp' => '1390095701',
44704   'format' => '1',
44705 ))
44706 ->values(array(
44707   'nid' => '7',
44708   'vid' => '9',
44709   'uid' => '1',
44710   'title' => 'Node 7',
44711   'body' => 'Node 7 body',
44712   'teaser' => 'test for node 7',
44713   'log' => '',
44714   'timestamp' => '1390095701',
44715   'format' => '1',
44716 ))
44717 ->values(array(
44718   'nid' => '8',
44719   'vid' => '10',
44720   'uid' => '1',
44721   'title' => 'Node 8',
44722   'body' => 'Node 8 body',
44723   'teaser' => 'test for node 8',
44724   'log' => '',
44725   'timestamp' => '1390095701',
44726   'format' => '1',
44727 ))
44728 ->values(array(
44729   'nid' => '9',
44730   'vid' => '11',
44731   'uid' => '1',
44732   'title' => 'Node 9',
44733   'body' => 'Node 9 body',
44734   'teaser' => 'test for node 9',
44735   'log' => '',
44736   'timestamp' => '1390095701',
44737   'format' => '1',
44738 ))
44739 ->values(array(
44740   'nid' => '9',
44741   'vid' => '12',
44742   'uid' => '1',
44743   'title' => 'Once upon a time',
44744   'body' => 'Come on kid, go to sleep.',
44745   'teaser' => 'Come on kid, go to sleep.',
44746   'log' => '',
44747   'timestamp' => '1444671588',
44748   'format' => '1',
44749 ))
44750 ->values(array(
44751   'nid' => '10',
44752   'vid' => '13',
44753   'uid' => '1',
44754   'title' => 'The Real McCoy',
44755   'body' => "In the original, Queen's English.",
44756   'teaser' => "In the original, Queen's English.",
44757   'log' => '',
44758   'timestamp' => '1444238808',
44759   'format' => '1',
44760 ))
44761 ->values(array(
44762   'nid' => '11',
44763   'vid' => '14',
44764   'uid' => '1',
44765   'title' => 'Le Vrai McCoy',
44766   'body' => 'Ooh là là!',
44767   'teaser' => 'Ooh là là!',
44768   'log' => '',
44769   'timestamp' => '1444239050',
44770   'format' => '1',
44771 ))
44772 ->values(array(
44773   'nid' => '12',
44774   'vid' => '15',
44775   'uid' => '1',
44776   'title' => 'Abantu zulu',
44777   'body' => 'Mr. Crusher, ready a collision course with the Borg ship.',
44778   'teaser' => 'Mr. Crusher, ready a collision course with the Borg ship.',
44779   'log' => '',
44780   'timestamp' => '1444238808',
44781   'format' => '1',
44782 ))
44783 ->values(array(
44784   'nid' => '13',
44785   'vid' => '16',
44786   'uid' => '1',
44787   'title' => 'The Zulu People',
44788   'body' => 'Mr. Crusher, ready a collision course with the Borg ship.',
44789   'teaser' => 'Mr. Crusher, ready a collision course with the Borg ship.',
44790   'log' => '',
44791   'timestamp' => '1444239050',
44792   'format' => '1',
44793 ))
44794 ->values(array(
44795   'nid' => '14',
44796   'vid' => '17',
44797   'uid' => '1',
44798   'title' => 'United Federation of Planets',
44799   'body' => '',
44800   'teaser' => '',
44801   'log' => '',
44802   'timestamp' => '1493066668',
44803   'format' => '1',
44804 ))
44805 ->values(array(
44806   'nid' => '15',
44807   'vid' => '18',
44808   'uid' => '1',
44809   'title' => 'Klingon Empire',
44810   'body' => '',
44811   'teaser' => '',
44812   'log' => '',
44813   'timestamp' => '1493066677',
44814   'format' => '1',
44815 ))
44816 ->values(array(
44817   'nid' => '16',
44818   'vid' => '19',
44819   'uid' => '1',
44820   'title' => 'Romulan Empire',
44821   'body' => '',
44822   'teaser' => '',
44823   'log' => '',
44824   'timestamp' => '1493066684',
44825   'format' => '1',
44826 ))
44827 ->values(array(
44828   'nid' => '17',
44829   'vid' => '20',
44830   'uid' => '1',
44831   'title' => 'Ferengi Commerce Authority',
44832   'body' => '',
44833   'teaser' => '',
44834   'log' => '',
44835   'timestamp' => '1493066693',
44836   'format' => '1',
44837 ))
44838 ->values(array(
44839   'nid' => '18',
44840   'vid' => '21',
44841   'uid' => '1',
44842   'title' => 'Ambassador Sarek',
44843   'body' => "Yeah, I like animals better than people sometimes... Especially dogs. Dogs are the best. Every time you come home, they act like they haven't seen you in a year. And the good thing about dogs... is they got different dogs for different people. Like pit bulls. The dog of dogs. Pit bull can be the right man's best friend... or the wrong man's worst enemy. You going to give me a dog for a pet, give me a pit bull. Give me... Raoul. Right, Omar? Give me Raoul.",
44844   'teaser' => "Yeah, I like animals better than people sometimes... Especially dogs. Dogs are the best. Every time you come home, they act like they haven't seen you in a year. And the good thing about dogs... is they got different dogs for different people. Like pit bulls. The dog of dogs. Pit bull can be the right man's best friend... or the wrong man's worst enemy. You going to give me a dog for a pet, give me a pit bull. Give me... Raoul. Right, Omar?",
44845   'log' => '',
44846   'timestamp' => '1494966544',
44847   'format' => '1',
44848 ))
44849 ->values(array(
44850   'nid' => '19',
44851   'vid' => '22',
44852   'uid' => '1',
44853   'title' => 'New Forum Topic',
44854   'body' => 'New Forum Body',
44855   'teaser' => 'New Forum Body',
44856   'log' => '',
44857   'timestamp' => '1501955771',
44858   'format' => '1',
44859 ))
44860 ->values(array(
44861   'nid' => '20',
44862   'vid' => '23',
44863   'uid' => '1',
44864   'title' => 'Le peuple zoulou',
44865   'body' => 'Le peuple zoulou.',
44866   'teaser' => 'Le peuple zoulou.',
44867   'log' => '',
44868   'timestamp' => '1520613305',
44869   'format' => '1',
44870 ))
44871 ->values(array(
44872   'nid' => '1',
44873   'vid' => '2001',
44874   'uid' => '2',
44875   'title' => 'Test title rev 2',
44876   'body' => 'body test rev 2',
44877   'teaser' => 'teaser test rev 2',
44878   'log' => 'modified rev 2',
44879   'timestamp' => '1390095702',
44880   'format' => '1',
44881 ))
44882 ->values(array(
44883   'nid' => '21',
44884   'vid' => '2002',
44885   'uid' => '1',
44886   'title' => 'John Smith - EN',
44887   'body' => 'This is an English Bio text for employee John Smith. There is also a French translation to this node. Both language versions have comments.',
44888   'teaser' => 'This is an English Bio text for employee John Smith. There is also a French translation to this node. Both language versions have comments.',
44889   'log' => '',
44890   'timestamp' => '1534014650',
44891   'format' => '1',
44892 ))
44893 ->values(array(
44894   'nid' => '22',
44895   'vid' => '2003',
44896   'uid' => '1',
44897   'title' => 'John Smith - FR',
44898   'body' => 'This is a French Bio text for employee John Smith. The original node is in English. Both language versions have comments.',
44899   'teaser' => 'This is a French Bio text for employee John Smith. The original node is in English. Both language versions have comments.',
44900   'log' => '',
44901   'timestamp' => '1534014687',
44902   'format' => '1',
44903 ))
44904 ->execute();
44905
44906 $connection->schema()->createTable('node_type', array(
44907   'fields' => array(
44908     'type' => array(
44909       'type' => 'varchar',
44910       'not null' => TRUE,
44911       'length' => '32',
44912     ),
44913     'name' => array(
44914       'type' => 'varchar',
44915       'not null' => TRUE,
44916       'length' => '255',
44917       'default' => '',
44918     ),
44919     'module' => array(
44920       'type' => 'varchar',
44921       'not null' => TRUE,
44922       'length' => '255',
44923     ),
44924     'description' => array(
44925       'type' => 'text',
44926       'not null' => TRUE,
44927       'size' => 'normal',
44928     ),
44929     'help' => array(
44930       'type' => 'text',
44931       'not null' => TRUE,
44932       'size' => 'normal',
44933     ),
44934     'has_title' => array(
44935       'type' => 'int',
44936       'not null' => TRUE,
44937       'size' => 'normal',
44938       'unsigned' => TRUE,
44939     ),
44940     'title_label' => array(
44941       'type' => 'varchar',
44942       'not null' => TRUE,
44943       'length' => '255',
44944       'default' => '',
44945     ),
44946     'has_body' => array(
44947       'type' => 'int',
44948       'not null' => TRUE,
44949       'size' => 'normal',
44950       'unsigned' => TRUE,
44951     ),
44952     'body_label' => array(
44953       'type' => 'varchar',
44954       'not null' => TRUE,
44955       'length' => '255',
44956       'default' => '',
44957     ),
44958     'min_word_count' => array(
44959       'type' => 'int',
44960       'not null' => TRUE,
44961       'size' => 'normal',
44962       'unsigned' => TRUE,
44963     ),
44964     'custom' => array(
44965       'type' => 'int',
44966       'not null' => TRUE,
44967       'size' => 'normal',
44968       'default' => '0',
44969     ),
44970     'modified' => array(
44971       'type' => 'int',
44972       'not null' => TRUE,
44973       'size' => 'normal',
44974       'default' => '0',
44975     ),
44976     'locked' => array(
44977       'type' => 'int',
44978       'not null' => TRUE,
44979       'size' => 'normal',
44980       'default' => '0',
44981     ),
44982     'orig_type' => array(
44983       'type' => 'varchar',
44984       'not null' => TRUE,
44985       'length' => '255',
44986       'default' => '',
44987     ),
44988   ),
44989   'primary key' => array(
44990     'type',
44991   ),
44992   'mysql_character_set' => 'utf8',
44993 ));
44994
44995 $connection->insert('node_type')
44996 ->fields(array(
44997   'type',
44998   'name',
44999   'module',
45000   'description',
45001   'help',
45002   'has_title',
45003   'title_label',
45004   'has_body',
45005   'body_label',
45006   'min_word_count',
45007   'custom',
45008   'modified',
45009   'locked',
45010   'orig_type',
45011 ))
45012 ->values(array(
45013   'type' => 'article',
45014   'name' => 'Article',
45015   'module' => 'node',
45016   'description' => 'An <em>article</em>, content type.',
45017   'help' => '',
45018   'has_title' => '1',
45019   'title_label' => 'Title',
45020   'has_body' => '1',
45021   'body_label' => 'Body',
45022   'min_word_count' => '0',
45023   'custom' => '1',
45024   'modified' => '1',
45025   'locked' => '0',
45026   'orig_type' => 'story',
45027 ))
45028 ->values(array(
45029   'type' => 'company',
45030   'name' => 'Company',
45031   'module' => 'node',
45032   'description' => 'Company node type',
45033   'help' => '',
45034   'has_title' => '1',
45035   'title_label' => 'Name',
45036   'has_body' => '1',
45037   'body_label' => 'Description',
45038   'min_word_count' => '0',
45039   'custom' => '0',
45040   'modified' => '1',
45041   'locked' => '0',
45042   'orig_type' => 'company',
45043 ))
45044 ->values(array(
45045   'type' => 'employee',
45046   'name' => 'Employee',
45047   'module' => 'node',
45048   'description' => 'Employee node type',
45049   'help' => '',
45050   'has_title' => '1',
45051   'title_label' => 'Name',
45052   'has_body' => '1',
45053   'body_label' => 'Bio',
45054   'min_word_count' => '20',
45055   'custom' => '0',
45056   'modified' => '0',
45057   'locked' => '0',
45058   'orig_type' => 'employee',
45059 ))
45060 ->values(array(
45061   'type' => 'event',
45062   'name' => 'Event',
45063   'module' => 'node',
45064   'description' => 'Events have a start date and an optional end date as well as a teaser and a body. They can be extended by other modules, too.',
45065   'help' => '',
45066   'has_title' => '1',
45067   'title_label' => 'Title',
45068   'has_body' => '1',
45069   'body_label' => 'Body',
45070   'min_word_count' => '0',
45071   'custom' => '1',
45072   'modified' => '1',
45073   'locked' => '0',
45074   'orig_type' => 'event',
45075 ))
45076 ->values(array(
45077   'type' => 'forum',
45078   'name' => 'Forum topic',
45079   'module' => 'forum',
45080   'description' => 'A <em>forum topic</em> is the initial post to a new discussion thread within a forum.',
45081   'help' => '',
45082   'has_title' => '1',
45083   'title_label' => 'Subject',
45084   'has_body' => '1',
45085   'body_label' => 'Body',
45086   'min_word_count' => '0',
45087   'custom' => '0',
45088   'modified' => '0',
45089   'locked' => '1',
45090   'orig_type' => 'forum',
45091 ))
45092 ->values(array(
45093   'type' => 'page',
45094   'name' => 'Page',
45095   'module' => 'node',
45096   'description' => "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.",
45097   'help' => '',
45098   'has_title' => '1',
45099   'title_label' => 'Title',
45100   'has_body' => '1',
45101   'body_label' => 'Body',
45102   'min_word_count' => '0',
45103   'custom' => '1',
45104   'modified' => '1',
45105   'locked' => '0',
45106   'orig_type' => 'page',
45107 ))
45108 ->values(array(
45109   'type' => 'sponsor',
45110   'name' => 'Sponsor',
45111   'module' => 'node',
45112   'description' => 'Sponsor node type',
45113   'help' => '',
45114   'has_title' => '1',
45115   'title_label' => 'Name',
45116   'has_body' => '0',
45117   'body_label' => 'Body',
45118   'min_word_count' => '0',
45119   'custom' => '0',
45120   'modified' => '0',
45121   'locked' => '0',
45122   'orig_type' => '',
45123 ))
45124 ->values(array(
45125   'type' => 'story',
45126   'name' => 'Story',
45127   'module' => 'node',
45128   'description' => "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.",
45129   'help' => '',
45130   'has_title' => '1',
45131   'title_label' => 'Title',
45132   'has_body' => '1',
45133   'body_label' => 'Body',
45134   'min_word_count' => '0',
45135   'custom' => '1',
45136   'modified' => '1',
45137   'locked' => '0',
45138   'orig_type' => 'story',
45139 ))
45140 ->values(array(
45141   'type' => 'test_event',
45142   'name' => 'Migrate test event',
45143   'module' => 'node',
45144   'description' => 'test event description here',
45145   'help' => '',
45146   'has_title' => '1',
45147   'title_label' => 'Event Name',
45148   'has_body' => '1',
45149   'body_label' => 'Body',
45150   'min_word_count' => '0',
45151   'custom' => '1',
45152   'modified' => '1',
45153   'locked' => '0',
45154   'orig_type' => 'event',
45155 ))
45156 ->values(array(
45157   'type' => 'test_page',
45158   'name' => 'Migrate test page',
45159   'module' => 'node',
45160   'description' => "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.",
45161   'help' => '',
45162   'has_title' => '1',
45163   'title_label' => 'Title',
45164   'has_body' => '1',
45165   'body_label' => 'This is the body field label',
45166   'min_word_count' => '0',
45167   'custom' => '1',
45168   'modified' => '1',
45169   'locked' => '0',
45170   'orig_type' => 'test_page',
45171 ))
45172 ->values(array(
45173   'type' => 'test_planet',
45174   'name' => 'Migrate test planet',
45175   'module' => 'node',
45176   'description' => "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.",
45177   'help' => '',
45178   'has_title' => '1',
45179   'title_label' => 'Title',
45180   'has_body' => '0',
45181   'body_label' => 'Body',
45182   'min_word_count' => '0',
45183   'custom' => '1',
45184   'modified' => '1',
45185   'locked' => '0',
45186   'orig_type' => 'test_planet',
45187 ))
45188 ->values(array(
45189   'type' => 'test_story',
45190   'name' => 'Migrate test story',
45191   'module' => 'node',
45192   'description' => "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.",
45193   'help' => '',
45194   'has_title' => '1',
45195   'title_label' => 'Title',
45196   'has_body' => '0',
45197   'body_label' => 'Body',
45198   'min_word_count' => '0',
45199   'custom' => '1',
45200   'modified' => '1',
45201   'locked' => '0',
45202   'orig_type' => 'test_story',
45203 ))
45204 ->execute();
45205
45206 $connection->schema()->createTable('permission', array(
45207   'fields' => array(
45208     'pid' => array(
45209       'type' => 'serial',
45210       'not null' => TRUE,
45211       'size' => 'normal',
45212     ),
45213     'rid' => array(
45214       'type' => 'int',
45215       'not null' => TRUE,
45216       'size' => 'normal',
45217       'default' => '0',
45218       'unsigned' => TRUE,
45219     ),
45220     'perm' => array(
45221       'type' => 'text',
45222       'not null' => FALSE,
45223       'size' => 'normal',
45224     ),
45225     'tid' => array(
45226       'type' => 'int',
45227       'not null' => TRUE,
45228       'size' => 'normal',
45229       'default' => '0',
45230       'unsigned' => TRUE,
45231     ),
45232   ),
45233   'primary key' => array(
45234     'pid',
45235   ),
45236   'mysql_character_set' => 'utf8',
45237 ));
45238
45239 $connection->insert('permission')
45240 ->fields(array(
45241   'pid',
45242   'rid',
45243   'perm',
45244   'tid',
45245 ))
45246 ->values(array(
45247   'pid' => '1',
45248   'rid' => '1',
45249   'perm' => 'access content, migrate test anonymous permission',
45250   'tid' => '0',
45251 ))
45252 ->values(array(
45253   'pid' => '2',
45254   'rid' => '2',
45255   'perm' => 'access comments, access content, post comments, post comments without approval, migrate test authenticated permission',
45256   'tid' => '0',
45257 ))
45258 ->values(array(
45259   'pid' => '3',
45260   'rid' => '3',
45261   'perm' => 'migrate test role 1 test permission',
45262   'tid' => '0',
45263 ))
45264 ->values(array(
45265   'pid' => '4',
45266   'rid' => '4',
45267   'perm' => 'migrate test role 2 test permission, use PHP for settings, administer contact forms, skip comment approval, edit own blog content, edit any blog content, delete own blog content, delete any blog content, create forum content, delete any forum content, delete own forum content, edit any forum content, edit own forum content, administer nodes',
45268   'tid' => '0',
45269 ))
45270 ->execute();
45271
45272 $connection->schema()->createTable('profile_fields', array(
45273   'fields' => array(
45274     'fid' => array(
45275       'type' => 'serial',
45276       'not null' => TRUE,
45277       'size' => 'normal',
45278     ),
45279     'title' => array(
45280       'type' => 'varchar',
45281       'not null' => FALSE,
45282       'length' => '255',
45283     ),
45284     'name' => array(
45285       'type' => 'varchar',
45286       'not null' => TRUE,
45287       'length' => '128',
45288       'default' => '',
45289     ),
45290     'explanation' => array(
45291       'type' => 'text',
45292       'not null' => FALSE,
45293       'size' => 'normal',
45294     ),
45295     'category' => array(
45296       'type' => 'varchar',
45297       'not null' => FALSE,
45298       'length' => '255',
45299     ),
45300     'page' => array(
45301       'type' => 'varchar',
45302       'not null' => FALSE,
45303       'length' => '255',
45304     ),
45305     'type' => array(
45306       'type' => 'varchar',
45307       'not null' => FALSE,
45308       'length' => '128',
45309     ),
45310     'weight' => array(
45311       'type' => 'int',
45312       'not null' => TRUE,
45313       'size' => 'normal',
45314       'default' => '0',
45315     ),
45316     'required' => array(
45317       'type' => 'int',
45318       'not null' => TRUE,
45319       'size' => 'normal',
45320       'default' => '0',
45321     ),
45322     'register' => array(
45323       'type' => 'int',
45324       'not null' => TRUE,
45325       'size' => 'normal',
45326       'default' => '0',
45327     ),
45328     'visibility' => array(
45329       'type' => 'int',
45330       'not null' => TRUE,
45331       'size' => 'normal',
45332       'default' => '0',
45333     ),
45334     'autocomplete' => array(
45335       'type' => 'int',
45336       'not null' => TRUE,
45337       'size' => 'normal',
45338       'default' => '0',
45339     ),
45340     'options' => array(
45341       'type' => 'text',
45342       'not null' => FALSE,
45343       'size' => 'normal',
45344     ),
45345   ),
45346   'primary key' => array(
45347     'fid',
45348   ),
45349   'mysql_character_set' => 'utf8',
45350 ));
45351
45352 $connection->insert('profile_fields')
45353 ->fields(array(
45354   'fid',
45355   'title',
45356   'name',
45357   'explanation',
45358   'category',
45359   'page',
45360   'type',
45361   'weight',
45362   'required',
45363   'register',
45364   'visibility',
45365   'autocomplete',
45366   'options',
45367 ))
45368 ->values(array(
45369   'fid' => '8',
45370   'title' => 'Favorite color',
45371   'name' => 'profile_color',
45372   'explanation' => 'List your favorite color',
45373   'category' => 'Personal information',
45374   'page' => 'Peole whose favorite color is %value',
45375   'type' => 'textfield',
45376   'weight' => '-10',
45377   'required' => '0',
45378   'register' => '1',
45379   'visibility' => '2',
45380   'autocomplete' => '1',
45381   'options' => '',
45382 ))
45383 ->values(array(
45384   'fid' => '9',
45385   'title' => 'Biography',
45386   'name' => 'profile_biography',
45387   'explanation' => 'Tell people a little bit about yourself',
45388   'category' => 'Personal information',
45389   'page' => '',
45390   'type' => 'textarea',
45391   'weight' => '-8',
45392   'required' => '0',
45393   'register' => '0',
45394   'visibility' => '2',
45395   'autocomplete' => '0',
45396   'options' => '',
45397 ))
45398 ->values(array(
45399   'fid' => '10',
45400   'title' => 'Sell your email address?',
45401   'name' => 'profile_sell_Address',
45402   'explanation' => "If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
45403   'category' => 'Communication preferences',
45404   'page' => 'People who want us to sell their address',
45405   'type' => 'checkbox',
45406   'weight' => '-10',
45407   'required' => '0',
45408   'register' => '1',
45409   'visibility' => '1',
45410   'autocomplete' => '0',
45411   'options' => '',
45412 ))
45413 ->values(array(
45414   'fid' => '11',
45415   'title' => 'Sales Category',
45416   'name' => 'profile_sold_to',
45417   'explanation' => "Select the sales categories to which this user's address was sold.",
45418   'category' => 'Administrative data',
45419   'page' => 'People whose address was sold to %value',
45420   'type' => 'selection',
45421   'weight' => '-10',
45422   'required' => '0',
45423   'register' => '0',
45424   'visibility' => '4',
45425   'autocomplete' => '0',
45426   'options' => "Pill spammers\r\nFitness spammers\r\nBack\\slash\r\nForward/slash\r\nDot.in.the.middle",
45427 ))
45428 ->values(array(
45429   'fid' => '12',
45430   'title' => 'Favorite bands',
45431   'name' => 'profile_bands',
45432   'explanation' => "Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
45433   'category' => 'Personal information',
45434   'page' => '',
45435   'type' => 'list',
45436   'weight' => '-6',
45437   'required' => '0',
45438   'register' => '1',
45439   'visibility' => '3',
45440   'autocomplete' => '1',
45441   'options' => '',
45442 ))
45443 ->values(array(
45444   'fid' => '13',
45445   'title' => 'Blog',
45446   'name' => 'profile_blog',
45447   'explanation' => 'Paste the full URL, including http://, of your personal blog.',
45448   'category' => 'Personal information',
45449   'page' => '',
45450   'type' => 'url',
45451   'weight' => '3',
45452   'required' => '0',
45453   'register' => '0',
45454   'visibility' => '3',
45455   'autocomplete' => '0',
45456   'options' => '',
45457 ))
45458 ->values(array(
45459   'fid' => '14',
45460   'title' => 'Birthdate',
45461   'name' => 'profile_birthdate',
45462   'explanation' => "Enter your birth date and we'll send you a coupon.",
45463   'category' => 'Personal information',
45464   'page' => '',
45465   'type' => 'date',
45466   'weight' => '4',
45467   'required' => '0',
45468   'register' => '0',
45469   'visibility' => '2',
45470   'autocomplete' => '0',
45471   'options' => '',
45472 ))
45473 ->values(array(
45474   'fid' => '15',
45475   'title' => 'I really, really, really love migrations',
45476   'name' => 'profile_really_really_love_migrations',
45477   'explanation' => 'If you check this box, you love migrations.',
45478   'category' => 'Personal information',
45479   'page' => 'People who love migrations',
45480   'type' => 'checkbox',
45481   'weight' => '-15',
45482   'required' => '0',
45483   'register' => '0',
45484   'visibility' => '2',
45485   'autocomplete' => '0',
45486   'options' => '',
45487 ))
45488 ->values(array(
45489   'fid' => '16',
45490   'title' => 'I really, really, really love migrating',
45491   'name' => 'profile_really_really_love_migrating',
45492   'explanation' => '',
45493   'category' => 'Personal information',
45494   'page' => '',
45495   'type' => 'checkbox',
45496   'weight' => '0',
45497   'required' => '0',
45498   'register' => '0',
45499   'visibility' => '2',
45500   'autocomplete' => '0',
45501   'options' => '',
45502 ))
45503 ->execute();
45504
45505 $connection->schema()->createTable('profile_values', array(
45506   'fields' => array(
45507     'fid' => array(
45508       'type' => 'int',
45509       'not null' => TRUE,
45510       'size' => 'normal',
45511       'default' => '0',
45512       'unsigned' => TRUE,
45513     ),
45514     'uid' => array(
45515       'type' => 'int',
45516       'not null' => TRUE,
45517       'size' => 'normal',
45518       'default' => '0',
45519       'unsigned' => TRUE,
45520     ),
45521     'value' => array(
45522       'type' => 'text',
45523       'not null' => FALSE,
45524       'size' => 'normal',
45525     ),
45526   ),
45527   'primary key' => array(
45528     'fid',
45529     'uid',
45530   ),
45531   'mysql_character_set' => 'utf8',
45532 ));
45533
45534 $connection->insert('profile_values')
45535 ->fields(array(
45536   'fid',
45537   'uid',
45538   'value',
45539 ))
45540 ->values(array(
45541   'fid' => '8',
45542   'uid' => '2',
45543   'value' => 'red',
45544 ))
45545 ->values(array(
45546   'fid' => '8',
45547   'uid' => '8',
45548   'value' => 'brown',
45549 ))
45550 ->values(array(
45551   'fid' => '8',
45552   'uid' => '15',
45553   'value' => 'orange',
45554 ))
45555 ->values(array(
45556   'fid' => '8',
45557   'uid' => '16',
45558   'value' => 'blue',
45559 ))
45560 ->values(array(
45561   'fid' => '8',
45562   'uid' => '17',
45563   'value' => 'yellow',
45564 ))
45565 ->values(array(
45566   'fid' => '9',
45567   'uid' => '2',
45568   'value' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nulla sapien, congue nec risus ut, adipiscing aliquet felis. Maecenas quis justo vel nulla varius euismod. Quisque metus metus, cursus sit amet sem non, bibendum vehicula elit. Cras dui nisl, eleifend at iaculis vitae, lacinia ut felis. Nullam aliquam ligula volutpat nulla consectetur accumsan. Maecenas tincidunt molestie diam, a accumsan enim fringilla sit amet. Morbi a tincidunt tellus. Donec imperdiet scelerisque porta. Sed quis sem bibendum eros congue sodales. Vivamus vel fermentum est, at rutrum orci. Nunc consectetur purus ut dolor pulvinar, ut volutpat felis congue. Cras tincidunt odio sed neque sollicitudin, vehicula tempor metus scelerisque.',
45569 ))
45570 ->values(array(
45571   'fid' => '9',
45572   'uid' => '8',
45573   'value' => 'Nunc condimentum ligula felis, eget lacinia purus accumsan at. Pellentesque eu lobortis felis. Duis at accumsan nisl, vel pulvinar risus. Nullam venenatis, tellus non eleifend hendrerit, augue nulla rhoncus leo, eget convallis enim sem ut velit. Mauris tincidunt enim ut eros volutpat dapibus. Curabitur augue libero, imperdiet eget orci sed, malesuada dapibus tellus. Nam lacus sapien, convallis vitae quam vel, bibendum commodo odio.',
45574 ))
45575 ->values(array(
45576   'fid' => '9',
45577   'uid' => '15',
45578   'value' => 'Donec a diam volutpat augue fringilla fringilla. Mauris ultricies turpis ut lacus tempus, vitae pharetra lacus mattis. Nulla semper dui euismod sem bibendum, in eleifend nisi malesuada. Vivamus orci mauris, volutpat vitae enim ac, aliquam tempus lectus.',
45579 ))
45580 ->values(array(
45581   'fid' => '9',
45582   'uid' => '16',
45583   'value' => 'Pellentesque sit amet sem et purus pretium consectetuer.',
45584 ))
45585 ->values(array(
45586   'fid' => '9',
45587   'uid' => '17',
45588   'value' => 'The quick brown fox jumped over the lazy dog.',
45589 ))
45590 ->values(array(
45591   'fid' => '10',
45592   'uid' => '2',
45593   'value' => '1',
45594 ))
45595 ->values(array(
45596   'fid' => '10',
45597   'uid' => '8',
45598   'value' => '0',
45599 ))
45600 ->values(array(
45601   'fid' => '10',
45602   'uid' => '15',
45603   'value' => '1',
45604 ))
45605 ->values(array(
45606   'fid' => '10',
45607   'uid' => '16',
45608   'value' => '0',
45609 ))
45610 ->values(array(
45611   'fid' => '10',
45612   'uid' => '17',
45613   'value' => '0',
45614 ))
45615 ->values(array(
45616   'fid' => '11',
45617   'uid' => '2',
45618   'value' => 'Back\slash',
45619 ))
45620 ->values(array(
45621   'fid' => '11',
45622   'uid' => '8',
45623   'value' => 'Forward/slash',
45624 ))
45625 ->values(array(
45626   'fid' => '11',
45627   'uid' => '15',
45628   'value' => 'Dot.in.the.middle',
45629 ))
45630 ->values(array(
45631   'fid' => '11',
45632   'uid' => '16',
45633   'value' => 'Faithful servant',
45634 ))
45635 ->values(array(
45636   'fid' => '11',
45637   'uid' => '17',
45638   'value' => 'Anonymous donor',
45639 ))
45640 ->values(array(
45641   'fid' => '12',
45642   'uid' => '2',
45643   'value' => "AC/DC\n,,Eagles\r\nElton John,Lemonheads\r\n\r\nRolling Stones\rQueen\nThe White Stripes",
45644 ))
45645 ->values(array(
45646   'fid' => '12',
45647   'uid' => '8',
45648   'value' => "Deep Purple\nWho\nThe Beatles",
45649 ))
45650 ->values(array(
45651   'fid' => '12',
45652   'uid' => '15',
45653   'value' => "ABBA\nBoney M",
45654 ))
45655 ->values(array(
45656   'fid' => '12',
45657   'uid' => '16',
45658   'value' => "Van Halen\nDave M",
45659 ))
45660 ->values(array(
45661   'fid' => '12',
45662   'uid' => '17',
45663   'value' => "Toto\nJohn Denver",
45664 ))
45665 ->values(array(
45666   'fid' => '13',
45667   'uid' => '2',
45668   'value' => 'http://example.com/blog',
45669 ))
45670 ->values(array(
45671   'fid' => '13',
45672   'uid' => '8',
45673   'value' => 'http://blog.example.com',
45674 ))
45675 ->values(array(
45676   'fid' => '13',
45677   'uid' => '15',
45678   'value' => 'http://example.com/journal',
45679 ))
45680 ->values(array(
45681   'fid' => '13',
45682   'uid' => '16',
45683   'value' => 'http://example.com/monkeys',
45684 ))
45685 ->values(array(
45686   'fid' => '13',
45687   'uid' => '17',
45688   'value' => 'http://example.com/penguins',
45689 ))
45690 ->values(array(
45691   'fid' => '14',
45692   'uid' => '2',
45693   'value' => 'a:3:{s:5:"month";s:1:"6";s:3:"day";s:1:"2";s:4:"year";s:4:"1974";}',
45694 ))
45695 ->values(array(
45696   'fid' => '14',
45697   'uid' => '8',
45698   'value' => 'a:3:{s:5:"month";s:1:"9";s:3:"day";s:1:"9";s:4:"year";s:4:"1980";}',
45699 ))
45700 ->values(array(
45701   'fid' => '14',
45702   'uid' => '15',
45703   'value' => 'a:3:{s:5:"month";s:2:"11";s:3:"day";s:2:"25";s:4:"year";s:4:"1982";}',
45704 ))
45705 ->values(array(
45706   'fid' => '14',
45707   'uid' => '16',
45708   'value' => 'a:3:{s:5:"month";s:1:"9";s:3:"day";s:2:"23";s:4:"year";s:4:"1939";}',
45709 ))
45710 ->values(array(
45711   'fid' => '14',
45712   'uid' => '17',
45713   'value' => 'a:3:{s:5:"month";s:2:"12";s:3:"day";s:2:"18";s:4:"year";s:4:"1942";}',
45714 ))
45715 ->values(array(
45716   'fid' => '15',
45717   'uid' => '2',
45718   'value' => '1',
45719 ))
45720 ->execute();
45721
45722 $connection->schema()->createTable('role', array(
45723   'fields' => array(
45724     'rid' => array(
45725       'type' => 'serial',
45726       'not null' => TRUE,
45727       'size' => 'normal',
45728       'unsigned' => TRUE,
45729     ),
45730     'name' => array(
45731       'type' => 'varchar',
45732       'not null' => TRUE,
45733       'length' => '64',
45734       'default' => '',
45735     ),
45736   ),
45737   'primary key' => array(
45738     'rid',
45739   ),
45740   'mysql_character_set' => 'utf8',
45741 ));
45742
45743 $connection->insert('role')
45744 ->fields(array(
45745   'rid',
45746   'name',
45747 ))
45748 ->values(array(
45749   'rid' => '1',
45750   'name' => 'anonymous user',
45751 ))
45752 ->values(array(
45753   'rid' => '2',
45754   'name' => 'authenticated user',
45755 ))
45756 ->values(array(
45757   'rid' => '3',
45758   'name' => 'migrate test role 1',
45759 ))
45760 ->values(array(
45761   'rid' => '4',
45762   'name' => 'migrate test role 2',
45763 ))
45764 ->values(array(
45765   'rid' => '5',
45766   'name' => 'migrate test role 3 that is longer than thirty two characters',
45767 ))
45768 ->execute();
45769
45770 $connection->schema()->createTable('semaphore', array(
45771   'fields' => array(
45772     'name' => array(
45773       'type' => 'varchar',
45774       'not null' => TRUE,
45775       'length' => '255',
45776       'default' => '',
45777     ),
45778     'value' => array(
45779       'type' => 'varchar',
45780       'not null' => TRUE,
45781       'length' => '255',
45782       'default' => '',
45783     ),
45784     'expire' => array(
45785       'type' => 'numeric',
45786       'not null' => TRUE,
45787       'precision' => '10',
45788       'scale' => '0',
45789     ),
45790   ),
45791   'primary key' => array(
45792     'name',
45793   ),
45794   'mysql_character_set' => 'utf8',
45795 ));
45796
45797 $connection->schema()->createTable('sessions', array(
45798   'fields' => array(
45799     'uid' => array(
45800       'type' => 'int',
45801       'not null' => TRUE,
45802       'size' => 'normal',
45803       'unsigned' => TRUE,
45804     ),
45805     'sid' => array(
45806       'type' => 'varchar',
45807       'not null' => TRUE,
45808       'length' => '64',
45809       'default' => '',
45810     ),
45811     'hostname' => array(
45812       'type' => 'varchar',
45813       'not null' => TRUE,
45814       'length' => '128',
45815       'default' => '',
45816     ),
45817     'timestamp' => array(
45818       'type' => 'int',
45819       'not null' => TRUE,
45820       'size' => 'normal',
45821       'default' => '0',
45822     ),
45823     'cache' => array(
45824       'type' => 'int',
45825       'not null' => TRUE,
45826       'size' => 'normal',
45827       'default' => '0',
45828     ),
45829     'session' => array(
45830       'type' => 'blob',
45831       'not null' => FALSE,
45832       'size' => 'big',
45833     ),
45834   ),
45835   'primary key' => array(
45836     'sid',
45837   ),
45838   'mysql_character_set' => 'utf8',
45839 ));
45840
45841 $connection->schema()->createTable('system', array(
45842   'fields' => array(
45843     'filename' => array(
45844       'type' => 'varchar',
45845       'not null' => TRUE,
45846       'length' => '255',
45847       'default' => '',
45848     ),
45849     'name' => array(
45850       'type' => 'varchar',
45851       'not null' => TRUE,
45852       'length' => '255',
45853       'default' => '',
45854     ),
45855     'type' => array(
45856       'type' => 'varchar',
45857       'not null' => TRUE,
45858       'length' => '255',
45859       'default' => '',
45860     ),
45861     'owner' => array(
45862       'type' => 'varchar',
45863       'not null' => TRUE,
45864       'length' => '255',
45865       'default' => '',
45866     ),
45867     'status' => array(
45868       'type' => 'int',
45869       'not null' => TRUE,
45870       'size' => 'normal',
45871       'default' => '0',
45872     ),
45873     'throttle' => array(
45874       'type' => 'int',
45875       'not null' => TRUE,
45876       'size' => 'normal',
45877       'default' => '0',
45878     ),
45879     'bootstrap' => array(
45880       'type' => 'int',
45881       'not null' => TRUE,
45882       'size' => 'normal',
45883       'default' => '0',
45884     ),
45885     'schema_version' => array(
45886       'type' => 'int',
45887       'not null' => TRUE,
45888       'size' => 'normal',
45889       'default' => '-1',
45890     ),
45891     'weight' => array(
45892       'type' => 'int',
45893       'not null' => TRUE,
45894       'size' => 'normal',
45895       'default' => '0',
45896     ),
45897     'info' => array(
45898       'type' => 'text',
45899       'not null' => FALSE,
45900       'size' => 'normal',
45901     ),
45902   ),
45903   'primary key' => array(
45904     'filename',
45905   ),
45906   'mysql_character_set' => 'utf8',
45907 ));
45908
45909 $connection->insert('system')
45910 ->fields(array(
45911   'filename',
45912   'name',
45913   'type',
45914   'owner',
45915   'status',
45916   'throttle',
45917   'bootstrap',
45918   'schema_version',
45919   'weight',
45920   'info',
45921 ))
45922 ->values(array(
45923   'filename' => 'modules/aggregator/aggregator.module',
45924   'name' => 'aggregator',
45925   'type' => 'module',
45926   'owner' => '',
45927   'status' => '1',
45928   'throttle' => '0',
45929   'bootstrap' => '0',
45930   'schema_version' => '6001',
45931   'weight' => '0',
45932   'info' => 'a:10:{s:4:"name";s:10:"Aggregator";s:11:"description";s:57:"Aggregates syndicated content (RSS, RDF, and Atom feeds).";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
45933 ))
45934 ->values(array(
45935   'filename' => 'modules/block/block.module',
45936   'name' => 'block',
45937   'type' => 'module',
45938   'owner' => '',
45939   'status' => '1',
45940   'throttle' => '0',
45941   'bootstrap' => '0',
45942   'schema_version' => '0',
45943   'weight' => '0',
45944   'info' => 'a:10:{s:4:"name";s:5:"Block";s:11:"description";s:62:"Controls the boxes that are displayed around the main content.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
45945 ))
45946 ->values(array(
45947   'filename' => 'modules/blog/blog.module',
45948   'name' => 'blog',
45949   'type' => 'module',
45950   'owner' => '',
45951   'status' => '0',
45952   'throttle' => '0',
45953   'bootstrap' => '0',
45954   'schema_version' => '-1',
45955   'weight' => '0',
45956   'info' => 'a:10:{s:4:"name";s:4:"Blog";s:11:"description";s:69:"Enables keeping easily and regularly updated user web pages or blogs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
45957 ))
45958 ->values(array(
45959   'filename' => 'modules/blogapi/blogapi.module',
45960   'name' => 'blogapi',
45961   'type' => 'module',
45962   'owner' => '',
45963   'status' => '0',
45964   'throttle' => '0',
45965   'bootstrap' => '0',
45966   'schema_version' => '-1',
45967   'weight' => '0',
45968   'info' => 'a:10:{s:4:"name";s:8:"Blog API";s:11:"description";s:79:"Allows users to post content using applications that support XML-RPC blog APIs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
45969 ))
45970 ->values(array(
45971   'filename' => 'modules/book/book.module',
45972   'name' => 'book',
45973   'type' => 'module',
45974   'owner' => '',
45975   'status' => '1',
45976   'throttle' => '0',
45977   'bootstrap' => '0',
45978   'schema_version' => '6000',
45979   'weight' => '0',
45980   'info' => 'a:10:{s:4:"name";s:4:"Book";s:11:"description";s:63:"Allows users to structure site pages in a hierarchy or outline.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
45981 ))
45982 ->values(array(
45983   'filename' => 'modules/color/color.module',
45984   'name' => 'color',
45985   'type' => 'module',
45986   'owner' => '',
45987   'status' => '0',
45988   'throttle' => '0',
45989   'bootstrap' => '0',
45990   'schema_version' => '-1',
45991   'weight' => '0',
45992   'info' => 'a:10:{s:4:"name";s:5:"Color";s:11:"description";s:61:"Allows the user to change the color scheme of certain themes.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
45993 ))
45994 ->values(array(
45995   'filename' => 'modules/comment/comment.module',
45996   'name' => 'comment',
45997   'type' => 'module',
45998   'owner' => '',
45999   'status' => '1',
46000   'throttle' => '0',
46001   'bootstrap' => '0',
46002   'schema_version' => '6005',
46003   'weight' => '0',
46004   'info' => 'a:10:{s:4:"name";s:7:"Comment";s:11:"description";s:57:"Allows users to comment on and discuss published content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46005 ))
46006 ->values(array(
46007   'filename' => 'modules/contact/contact.module',
46008   'name' => 'contact',
46009   'type' => 'module',
46010   'owner' => '',
46011   'status' => '1',
46012   'throttle' => '0',
46013   'bootstrap' => '0',
46014   'schema_version' => '6001',
46015   'weight' => '0',
46016   'info' => 'a:10:{s:4:"name";s:7:"Contact";s:11:"description";s:61:"Enables the use of both personal and site-wide contact forms.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46017 ))
46018 ->values(array(
46019   'filename' => 'modules/dblog/dblog.module',
46020   'name' => 'dblog',
46021   'type' => 'module',
46022   'owner' => '',
46023   'status' => '0',
46024   'throttle' => '0',
46025   'bootstrap' => '0',
46026   'schema_version' => '-1',
46027   'weight' => '0',
46028   'info' => 'a:10:{s:4:"name";s:16:"Database logging";s:11:"description";s:47:"Logs and records system events to the database.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46029 ))
46030 ->values(array(
46031   'filename' => 'modules/filter/filter.module',
46032   'name' => 'filter',
46033   'type' => 'module',
46034   'owner' => '',
46035   'status' => '1',
46036   'throttle' => '0',
46037   'bootstrap' => '0',
46038   'schema_version' => '0',
46039   'weight' => '0',
46040   'info' => 'a:10:{s:4:"name";s:6:"Filter";s:11:"description";s:60:"Handles the filtering of content in preparation for display.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46041 ))
46042 ->values(array(
46043   'filename' => 'modules/forum/forum.module',
46044   'name' => 'forum',
46045   'type' => 'module',
46046   'owner' => '',
46047   'status' => '1',
46048   'throttle' => '0',
46049   'bootstrap' => '0',
46050   'schema_version' => '6000',
46051   'weight' => '1',
46052   'info' => 'a:10:{s:4:"name";s:5:"Forum";s:11:"description";s:50:"Enables threaded discussions about general topics.";s:12:"dependencies";a:2:{i:0;s:8:"taxonomy";i:1;s:7:"comment";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46053 ))
46054 ->values(array(
46055   'filename' => 'modules/help/help.module',
46056   'name' => 'help',
46057   'type' => 'module',
46058   'owner' => '',
46059   'status' => '0',
46060   'throttle' => '0',
46061   'bootstrap' => '0',
46062   'schema_version' => '-1',
46063   'weight' => '0',
46064   'info' => 'a:10:{s:4:"name";s:4:"Help";s:11:"description";s:35:"Manages the display of online help.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46065 ))
46066 ->values(array(
46067   'filename' => 'modules/locale/locale.module',
46068   'name' => 'locale',
46069   'type' => 'module',
46070   'owner' => '',
46071   'status' => '1',
46072   'throttle' => '0',
46073   'bootstrap' => '0',
46074   'schema_version' => '6007',
46075   'weight' => '0',
46076   'info' => 'a:10:{s:4:"name";s:6:"Locale";s:11:"description";s:119:"Adds language handling functionality and enables the translation of the user interface to languages other than English.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46077 ))
46078 ->values(array(
46079   'filename' => 'modules/menu/menu.module',
46080   'name' => 'menu',
46081   'type' => 'module',
46082   'owner' => '',
46083   'status' => '1',
46084   'throttle' => '0',
46085   'bootstrap' => '0',
46086   'schema_version' => '6000',
46087   'weight' => '0',
46088   'info' => 'a:10:{s:4:"name";s:4:"Menu";s:11:"description";s:60:"Allows administrators to customize the site navigation menu.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46089 ))
46090 ->values(array(
46091   'filename' => 'modules/node/node.module',
46092   'name' => 'node',
46093   'type' => 'module',
46094   'owner' => '',
46095   'status' => '1',
46096   'throttle' => '0',
46097   'bootstrap' => '0',
46098   'schema_version' => '0',
46099   'weight' => '0',
46100   'info' => 'a:10:{s:4:"name";s:4:"Node";s:11:"description";s:66:"Allows content to be submitted to the site and displayed on pages.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46101 ))
46102 ->values(array(
46103   'filename' => 'modules/openid/openid.module',
46104   'name' => 'openid',
46105   'type' => 'module',
46106   'owner' => '',
46107   'status' => '0',
46108   'throttle' => '0',
46109   'bootstrap' => '0',
46110   'schema_version' => '-1',
46111   'weight' => '0',
46112   'info' => 'a:10:{s:4:"name";s:6:"OpenID";s:11:"description";s:48:"Allows users to log into your site using OpenID.";s:7:"version";s:4:"6.38";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46113 ))
46114 ->values(array(
46115   'filename' => 'modules/path/path.module',
46116   'name' => 'path',
46117   'type' => 'module',
46118   'owner' => '',
46119   'status' => '1',
46120   'throttle' => '0',
46121   'bootstrap' => '0',
46122   'schema_version' => '0',
46123   'weight' => '0',
46124   'info' => 'a:10:{s:4:"name";s:4:"Path";s:11:"description";s:28:"Allows users to rename URLs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46125 ))
46126 ->values(array(
46127   'filename' => 'modules/php/php.module',
46128   'name' => 'php',
46129   'type' => 'module',
46130   'owner' => '',
46131   'status' => '1',
46132   'throttle' => '0',
46133   'bootstrap' => '0',
46134   'schema_version' => '0',
46135   'weight' => '0',
46136   'info' => 'a:10:{s:4:"name";s:10:"PHP filter";s:11:"description";s:50:"Allows embedded PHP code/snippets to be evaluated.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46137 ))
46138 ->values(array(
46139   'filename' => 'modules/ping/ping.module',
46140   'name' => 'ping',
46141   'type' => 'module',
46142   'owner' => '',
46143   'status' => '0',
46144   'throttle' => '0',
46145   'bootstrap' => '0',
46146   'schema_version' => '-1',
46147   'weight' => '0',
46148   'info' => 'a:10:{s:4:"name";s:4:"Ping";s:11:"description";s:51:"Alerts other sites when your site has been updated.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46149 ))
46150 ->values(array(
46151   'filename' => 'modules/poll/poll.module',
46152   'name' => 'poll',
46153   'type' => 'module',
46154   'owner' => '',
46155   'status' => '0',
46156   'throttle' => '0',
46157   'bootstrap' => '0',
46158   'schema_version' => '-1',
46159   'weight' => '0',
46160   'info' => 'a:10:{s:4:"name";s:4:"Poll";s:11:"description";s:95:"Allows your site to capture votes on different topics in the form of multiple choice questions.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46161 ))
46162 ->values(array(
46163   'filename' => 'modules/profile/profile.module',
46164   'name' => 'profile',
46165   'type' => 'module',
46166   'owner' => '',
46167   'status' => '1',
46168   'throttle' => '0',
46169   'bootstrap' => '0',
46170   'schema_version' => '6001',
46171   'weight' => '0',
46172   'info' => 'a:10:{s:4:"name";s:7:"Profile";s:11:"description";s:36:"Supports configurable user profiles.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46173 ))
46174 ->values(array(
46175   'filename' => 'modules/search/search.module',
46176   'name' => 'search',
46177   'type' => 'module',
46178   'owner' => '',
46179   'status' => '0',
46180   'throttle' => '0',
46181   'bootstrap' => '0',
46182   'schema_version' => '-1',
46183   'weight' => '0',
46184   'info' => 'a:10:{s:4:"name";s:6:"Search";s:11:"description";s:36:"Enables site-wide keyword searching.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46185 ))
46186 ->values(array(
46187   'filename' => 'modules/statistics/statistics.module',
46188   'name' => 'statistics',
46189   'type' => 'module',
46190   'owner' => '',
46191   'status' => '1',
46192   'throttle' => '0',
46193   'bootstrap' => '1',
46194   'schema_version' => '6000',
46195   'weight' => '0',
46196   'info' => 'a:10:{s:4:"name";s:10:"Statistics";s:11:"description";s:37:"Logs access statistics for your site.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46197 ))
46198 ->values(array(
46199   'filename' => 'modules/syslog/syslog.module',
46200   'name' => 'syslog',
46201   'type' => 'module',
46202   'owner' => '',
46203   'status' => '0',
46204   'throttle' => '0',
46205   'bootstrap' => '0',
46206   'schema_version' => '-1',
46207   'weight' => '0',
46208   'info' => 'a:10:{s:4:"name";s:6:"Syslog";s:11:"description";s:41:"Logs and records system events to syslog.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46209 ))
46210 ->values(array(
46211   'filename' => 'modules/system/system.module',
46212   'name' => 'system',
46213   'type' => 'module',
46214   'owner' => '',
46215   'status' => '1',
46216   'throttle' => '0',
46217   'bootstrap' => '0',
46218   'schema_version' => '6056',
46219   'weight' => '0',
46220   'info' => 'a:10:{s:4:"name";s:6:"System";s:11:"description";s:54:"Handles general site configuration for administrators.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46221 ))
46222 ->values(array(
46223   'filename' => 'modules/taxonomy/taxonomy.module',
46224   'name' => 'taxonomy',
46225   'type' => 'module',
46226   'owner' => '',
46227   'status' => '1',
46228   'throttle' => '0',
46229   'bootstrap' => '0',
46230   'schema_version' => '6001',
46231   'weight' => '0',
46232   'info' => 'a:10:{s:4:"name";s:8:"Taxonomy";s:11:"description";s:38:"Enables the categorization of content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46233 ))
46234 ->values(array(
46235   'filename' => 'modules/throttle/throttle.module',
46236   'name' => 'throttle',
46237   'type' => 'module',
46238   'owner' => '',
46239   'status' => '0',
46240   'throttle' => '0',
46241   'bootstrap' => '0',
46242   'schema_version' => '-1',
46243   'weight' => '0',
46244   'info' => 'a:10:{s:4:"name";s:8:"Throttle";s:11:"description";s:66:"Handles the auto-throttling mechanism, to control site congestion.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46245 ))
46246 ->values(array(
46247   'filename' => 'modules/tracker/tracker.module',
46248   'name' => 'tracker',
46249   'type' => 'module',
46250   'owner' => '',
46251   'status' => '0',
46252   'throttle' => '0',
46253   'bootstrap' => '0',
46254   'schema_version' => '-1',
46255   'weight' => '0',
46256   'info' => 'a:10:{s:4:"name";s:7:"Tracker";s:11:"description";s:43:"Enables tracking of recent posts for users.";s:12:"dependencies";a:1:{i:0;s:7:"comment";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46257 ))
46258 ->values(array(
46259   'filename' => 'modules/translation/translation.module',
46260   'name' => 'translation',
46261   'type' => 'module',
46262   'owner' => '',
46263   'status' => '1',
46264   'throttle' => '0',
46265   'bootstrap' => '0',
46266   'schema_version' => '0',
46267   'weight' => '0',
46268   'info' => 'a:10:{s:4:"name";s:19:"Content translation";s:11:"description";s:57:"Allows content to be translated into different languages.";s:12:"dependencies";a:1:{i:0;s:6:"locale";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46269 ))
46270 ->values(array(
46271   'filename' => 'modules/trigger/trigger.module',
46272   'name' => 'trigger',
46273   'type' => 'module',
46274   'owner' => '',
46275   'status' => '0',
46276   'throttle' => '0',
46277   'bootstrap' => '0',
46278   'schema_version' => '-1',
46279   'weight' => '0',
46280   'info' => 'a:10:{s:4:"name";s:7:"Trigger";s:11:"description";s:90:"Enables actions to be fired on certain system events, such as when new content is created.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46281 ))
46282 ->values(array(
46283   'filename' => 'modules/update/update.module',
46284   'name' => 'update',
46285   'type' => 'module',
46286   'owner' => '',
46287   'status' => '0',
46288   'throttle' => '0',
46289   'bootstrap' => '0',
46290   'schema_version' => '-1',
46291   'weight' => '0',
46292   'info' => 'a:10:{s:4:"name";s:13:"Update status";s:11:"description";s:88:"Checks the status of available updates for Drupal and your installed modules and themes.";s:7:"version";s:4:"6.38";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46293 ))
46294 ->values(array(
46295   'filename' => 'modules/upload/upload.module',
46296   'name' => 'upload',
46297   'type' => 'module',
46298   'owner' => '',
46299   'status' => '1',
46300   'throttle' => '0',
46301   'bootstrap' => '0',
46302   'schema_version' => '6000',
46303   'weight' => '0',
46304   'info' => 'a:10:{s:4:"name";s:6:"Upload";s:11:"description";s:51:"Allows users to upload and attach files to content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46305 ))
46306 ->values(array(
46307   'filename' => 'modules/user/user.module',
46308   'name' => 'user',
46309   'type' => 'module',
46310   'owner' => '',
46311   'status' => '1',
46312   'throttle' => '0',
46313   'bootstrap' => '0',
46314   'schema_version' => '0',
46315   'weight' => '0',
46316   'info' => 'a:10:{s:4:"name";s:4:"User";s:11:"description";s:47:"Manages the user registration and login system.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46317 ))
46318 ->values(array(
46319   'filename' => 'sites/all/modules/cck/content.module',
46320   'name' => 'content',
46321   'type' => 'module',
46322   'owner' => '',
46323   'status' => '1',
46324   'throttle' => '0',
46325   'bootstrap' => '0',
46326   'schema_version' => '6010',
46327   'weight' => '0',
46328   'info' => 'a:10:{s:4:"name";s:7:"Content";s:11:"description";s:50:"Allows administrators to define new content types.";s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46329 ))
46330 ->values(array(
46331   'filename' => 'sites/all/modules/cck/modules/content_copy/content_copy.module',
46332   'name' => 'content_copy',
46333   'type' => 'module',
46334   'owner' => '',
46335   'status' => '0',
46336   'throttle' => '0',
46337   'bootstrap' => '0',
46338   'schema_version' => '-1',
46339   'weight' => '0',
46340   'info' => 'a:10:{s:4:"name";s:12:"Content Copy";s:11:"description";s:51:"Enables ability to import/export field definitions.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46341 ))
46342 ->values(array(
46343   'filename' => 'sites/all/modules/cck/modules/content_multigroup/content_multigroup.module',
46344   'name' => 'content_multigroup',
46345   'type' => 'module',
46346   'owner' => '',
46347   'status' => '0',
46348   'throttle' => '0',
46349   'bootstrap' => '0',
46350   'schema_version' => '-1',
46351   'weight' => '0',
46352   'info' => 'a:10:{s:4:"name";s:18:"Content Multigroup";s:11:"description";s:81:"Combine multiple CCK fields into repeating field collections that work in unison.";s:12:"dependencies";a:2:{i:0;s:7:"content";i:1;s:10:"fieldgroup";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:7:"version";s:20:"6.x-3.0-alpha4+0-dev";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1435195093";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46353 ))
46354 ->values(array(
46355   'filename' => 'sites/all/modules/cck/modules/content_permissions/content_permissions.module',
46356   'name' => 'content_permissions',
46357   'type' => 'module',
46358   'owner' => '',
46359   'status' => '0',
46360   'throttle' => '0',
46361   'bootstrap' => '0',
46362   'schema_version' => '-1',
46363   'weight' => '0',
46364   'info' => 'a:10:{s:4:"name";s:19:"Content Permissions";s:11:"description";s:43:"Set field-level permissions for CCK fields.";s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46365 ))
46366 ->values(array(
46367   'filename' => 'sites/all/modules/cck/modules/fieldgroup/fieldgroup.module',
46368   'name' => 'fieldgroup',
46369   'type' => 'module',
46370   'owner' => '',
46371   'status' => '0',
46372   'throttle' => '0',
46373   'bootstrap' => '0',
46374   'schema_version' => '-1',
46375   'weight' => '0',
46376   'info' => 'a:10:{s:4:"name";s:10:"Fieldgroup";s:11:"description";s:37:"Create display groups for CCK fields.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46377 ))
46378 ->values(array(
46379   'filename' => 'sites/all/modules/cck/modules/nodereference/nodereference.module',
46380   'name' => 'nodereference',
46381   'type' => 'module',
46382   'owner' => '',
46383   'status' => '1',
46384   'throttle' => '0',
46385   'bootstrap' => '0',
46386   'schema_version' => '6001',
46387   'weight' => '0',
46388   'info' => 'a:10:{s:4:"name";s:14:"Node Reference";s:11:"description";s:59:"Defines a field type for referencing one node from another.";s:12:"dependencies";a:3:{i:0;s:7:"content";i:1;s:4:"text";i:2;s:13:"optionwidgets";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46389 ))
46390 ->values(array(
46391   'filename' => 'sites/all/modules/cck/modules/number/number.module',
46392   'name' => 'number',
46393   'type' => 'module',
46394   'owner' => '',
46395   'status' => '1',
46396   'throttle' => '0',
46397   'bootstrap' => '0',
46398   'schema_version' => '6000',
46399   'weight' => '0',
46400   'info' => 'a:10:{s:4:"name";s:6:"Number";s:11:"description";s:28:"Defines numeric field types.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46401 ))
46402 ->values(array(
46403   'filename' => 'sites/all/modules/cck/modules/optionwidgets/optionwidgets.module',
46404   'name' => 'optionwidgets',
46405   'type' => 'module',
46406   'owner' => '',
46407   'status' => '1',
46408   'throttle' => '0',
46409   'bootstrap' => '0',
46410   'schema_version' => '6001',
46411   'weight' => '0',
46412   'info' => 'a:10:{s:4:"name";s:14:"Option Widgets";s:11:"description";s:82:"Defines selection, check box and radio button widgets for text and numeric fields.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46413 ))
46414 ->values(array(
46415   'filename' => 'sites/all/modules/cck/modules/text/text.module',
46416   'name' => 'text',
46417   'type' => 'module',
46418   'owner' => '',
46419   'status' => '1',
46420   'throttle' => '0',
46421   'bootstrap' => '0',
46422   'schema_version' => '6003',
46423   'weight' => '0',
46424   'info' => 'a:10:{s:4:"name";s:4:"Text";s:11:"description";s:32:"Defines simple text field types.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46425 ))
46426 ->values(array(
46427   'filename' => 'sites/all/modules/cck/modules/userreference/userreference.module',
46428   'name' => 'userreference',
46429   'type' => 'module',
46430   'owner' => '',
46431   'status' => '1',
46432   'throttle' => '0',
46433   'bootstrap' => '0',
46434   'schema_version' => '6002',
46435   'weight' => '0',
46436   'info' => 'a:10:{s:4:"name";s:14:"User Reference";s:11:"description";s:56:"Defines a field type for referencing a user from a node.";s:12:"dependencies";a:3:{i:0;s:7:"content";i:1;s:4:"text";i:2;s:13:"optionwidgets";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-2.10";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1434568159";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46437 ))
46438 ->values(array(
46439   'filename' => 'sites/all/modules/cck/tests/content_test.module',
46440   'name' => 'content_test',
46441   'type' => 'module',
46442   'owner' => '',
46443   'status' => '0',
46444   'throttle' => '0',
46445   'bootstrap' => '0',
46446   'schema_version' => '-1',
46447   'weight' => '0',
46448   'info' => 'a:12:{s:4:"name";s:12:"Content Test";s:11:"description";s:20:"Test module for CCK.";s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:12:"dependencies";a:1:{i:0;s:6:"schema";}s:6:"hidden";b:1;s:5:"files";a:1:{i:0;s:19:"content_test.module";}s:7:"version";s:20:"6.x-3.0-alpha4+0-dev";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1435195093";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46449 ))
46450 ->values(array(
46451   'filename' => 'sites/all/modules/date/date/date.module',
46452   'name' => 'date',
46453   'type' => 'module',
46454   'owner' => '',
46455   'status' => '1',
46456   'throttle' => '0',
46457   'bootstrap' => '0',
46458   'schema_version' => '6005',
46459   'weight' => '0',
46460   'info' => 'a:10:{s:4:"name";s:4:"Date";s:11:"description";s:41:"Defines CCK date/time fields and widgets.";s:12:"dependencies";a:3:{i:0;s:7:"content";i:1;s:8:"date_api";i:2;s:13:"date_timezone";}s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.8";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1326285938";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46461 ))
46462 ->values(array(
46463   'filename' => 'sites/all/modules/date/date_api.module',
46464   'name' => 'date_api',
46465   'type' => 'module',
46466   'owner' => '',
46467   'status' => '1',
46468   'throttle' => '0',
46469   'bootstrap' => '0',
46470   'schema_version' => '6006',
46471   'weight' => '0',
46472   'info' => 'a:10:{s:4:"name";s:8:"Date API";s:11:"description";s:45:"A Date API that can be used by other modules.";s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.8";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1326285938";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46473 ))
46474 ->values(array(
46475   'filename' => 'sites/all/modules/date/date_locale/date_locale.module',
46476   'name' => 'date_locale',
46477   'type' => 'module',
46478   'owner' => '',
46479   'status' => '0',
46480   'throttle' => '0',
46481   'bootstrap' => '0',
46482   'schema_version' => '-1',
46483   'weight' => '0',
46484   'info' => 'a:10:{s:4:"name";s:11:"Date Locale";s:11:"description";s:124:"Allows the site admin to configure multiple formats for date/time display to tailor dates for a specific locale or audience.";s:7:"package";s:9:"Date/Time";s:12:"dependencies";a:2:{i:0;s:8:"date_api";i:1;s:6:"locale";}s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.8";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1326285938";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46485 ))
46486 ->values(array(
46487   'filename' => 'sites/all/modules/date/date_php4/date_php4.module',
46488   'name' => 'date_php4',
46489   'type' => 'module',
46490   'owner' => '',
46491   'status' => '0',
46492   'throttle' => '0',
46493   'bootstrap' => '0',
46494   'schema_version' => '-1',
46495   'weight' => '0',
46496   'info' => 'a:10:{s:4:"name";s:9:"Date PHP4";s:11:"description";s:134:"Emulate PHP 5.2 date functions in PHP 4.x, PHP 5.0, and PHP 5.1. Required when using the Date API with PHP versions less than PHP 5.2.";s:7:"package";s:9:"Date/Time";s:12:"dependencies";a:1:{i:0;s:8:"date_api";}s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.8";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1326285938";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46497 ))
46498 ->values(array(
46499   'filename' => 'sites/all/modules/date/date_popup/date_popup.module',
46500   'name' => 'date_popup',
46501   'type' => 'module',
46502   'owner' => '',
46503   'status' => '0',
46504   'throttle' => '0',
46505   'bootstrap' => '0',
46506   'schema_version' => '-1',
46507   'weight' => '0',
46508   'info' => 'a:10:{s:4:"name";s:10:"Date Popup";s:11:"description";s:84:"Enables jquery popup calendars and time entry widgets for selecting dates and times.";s:12:"dependencies";a:2:{i:0;s:8:"date_api";i:1;s:13:"date_timezone";}s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.8";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1326285938";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46509 ))
46510 ->values(array(
46511   'filename' => 'sites/all/modules/date/date_repeat/date_repeat.module',
46512   'name' => 'date_repeat',
46513   'type' => 'module',
46514   'owner' => '',
46515   'status' => '0',
46516   'throttle' => '0',
46517   'bootstrap' => '0',
46518   'schema_version' => '-1',
46519   'weight' => '0',
46520   'info' => 'a:10:{s:4:"name";s:15:"Date Repeat API";s:11:"description";s:73:"A Date Repeat API to calculate repeating dates and times from iCal rules.";s:12:"dependencies";a:1:{i:0;s:8:"date_api";}s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.8";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1326285938";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46521 ))
46522 ->values(array(
46523   'filename' => 'sites/all/modules/date/date_timezone/date_timezone.module',
46524   'name' => 'date_timezone',
46525   'type' => 'module',
46526   'owner' => '',
46527   'status' => '1',
46528   'throttle' => '0',
46529   'bootstrap' => '0',
46530   'schema_version' => '5200',
46531   'weight' => '0',
46532   'info' => 'a:10:{s:4:"name";s:13:"Date Timezone";s:11:"description";s:111:"Needed when using Date API. Overrides site and user timezone handling to set timezone names instead of offsets.";s:7:"package";s:9:"Date/Time";s:12:"dependencies";a:1:{i:0;s:8:"date_api";}s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.8";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1326285938";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46533 ))
46534 ->values(array(
46535   'filename' => 'sites/all/modules/date/date_tools/date_tools.module',
46536   'name' => 'date_tools',
46537   'type' => 'module',
46538   'owner' => '',
46539   'status' => '0',
46540   'throttle' => '0',
46541   'bootstrap' => '0',
46542   'schema_version' => '-1',
46543   'weight' => '0',
46544   'info' => 'a:10:{s:4:"name";s:10:"Date Tools";s:11:"description";s:52:"Tools to import and auto-create dates and calendars.";s:12:"dependencies";a:2:{i:0;s:7:"content";i:1;s:4:"date";}s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.8";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1326285938";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46545 ))
46546 ->values(array(
46547   'filename' => 'sites/all/modules/ddblock/ddblock.module',
46548   'name' => 'ddblock',
46549   'type' => 'module',
46550   'owner' => '',
46551   'status' => '0',
46552   'throttle' => '0',
46553   'bootstrap' => '0',
46554   'schema_version' => '-1',
46555   'weight' => '0',
46556   'info' => 'a:7:{s:4:"name";s:21:"Dynamic display block";s:11:"description";s:36:"Displays dynamic content in a block.";s:4:"core";s:3:"6.x";s:12:"dependencies";a:1:{i:0;s:13:"jquery_update";}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
46557 ))
46558 ->values(array(
46559   'filename' => 'sites/all/modules/devel/devel.module',
46560   'name' => 'devel',
46561   'type' => 'module',
46562   'owner' => '',
46563   'status' => '0',
46564   'throttle' => '0',
46565   'bootstrap' => '0',
46566   'schema_version' => '-1',
46567   'weight' => '0',
46568   'info' => 'a:10:{s:4:"name";s:5:"Devel";s:11:"description";s:52:"Various blocks, pages, and functions for developers.";s:7:"package";s:11:"Development";s:12:"dependencies";a:1:{i:0;s:4:"menu";}s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-1.28";s:7:"project";s:5:"devel";s:9:"datestamp";s:10:"1391635706";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46569 ))
46570 ->values(array(
46571   'filename' => 'sites/all/modules/devel/devel_generate.module',
46572   'name' => 'devel_generate',
46573   'type' => 'module',
46574   'owner' => '',
46575   'status' => '0',
46576   'throttle' => '0',
46577   'bootstrap' => '0',
46578   'schema_version' => '-1',
46579   'weight' => '0',
46580   'info' => 'a:10:{s:4:"name";s:14:"Devel generate";s:11:"description";s:48:"Generate dummy users, nodes, and taxonomy terms.";s:7:"package";s:11:"Development";s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-1.28";s:7:"project";s:5:"devel";s:9:"datestamp";s:10:"1391635706";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46581 ))
46582 ->values(array(
46583   'filename' => 'sites/all/modules/devel/devel_node_access.module',
46584   'name' => 'devel_node_access',
46585   'type' => 'module',
46586   'owner' => '',
46587   'status' => '0',
46588   'throttle' => '0',
46589   'bootstrap' => '0',
46590   'schema_version' => '-1',
46591   'weight' => '0',
46592   'info' => 'a:10:{s:4:"name";s:17:"Devel node access";s:11:"description";s:67:"Developer block and page illustrating relevant node_access records.";s:7:"package";s:11:"Development";s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-1.28";s:7:"project";s:5:"devel";s:9:"datestamp";s:10:"1391635706";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46593 ))
46594 ->values(array(
46595   'filename' => 'sites/all/modules/email/email.module',
46596   'name' => 'email',
46597   'type' => 'module',
46598   'owner' => '',
46599   'status' => '1',
46600   'throttle' => '0',
46601   'bootstrap' => '0',
46602   'schema_version' => '6001',
46603   'weight' => '0',
46604   'info' => 'a:10:{s:4:"name";s:5:"Email";s:11:"description";s:35:"Defines an email field type for cck";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:5:"email";s:9:"datestamp";s:10:"1354093658";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46605 ))
46606 ->values(array(
46607   'filename' => 'sites/all/modules/event/contrib/calendarsignup/calendarsignup.module',
46608   'name' => 'calendarsignup',
46609   'type' => 'module',
46610   'owner' => '',
46611   'status' => '0',
46612   'throttle' => '0',
46613   'bootstrap' => '0',
46614   'schema_version' => '-1',
46615   'weight' => '0',
46616   'info' => 'a:10:{s:4:"name";s:15:"Calendar Signup";s:11:"description";s:44:"Add signup forms in an event.module calendar";s:7:"package";s:5:"Event";s:12:"dependencies";a:2:{i:0;s:5:"event";i:1;s:6:"signup";}s:4:"core";s:3:"6.x";s:7:"version";s:11:"6.x-2.x-dev";s:7:"project";s:5:"event";s:9:"datestamp";s:10:"1425082685";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46617 ))
46618 ->values(array(
46619   'filename' => 'sites/all/modules/event/contrib/datepicker/datepicker.module',
46620   'name' => 'datepicker',
46621   'type' => 'module',
46622   'owner' => '',
46623   'status' => '0',
46624   'throttle' => '0',
46625   'bootstrap' => '0',
46626   'schema_version' => '-1',
46627   'weight' => '0',
46628   'info' => 'a:10:{s:4:"name";s:11:"Date Picker";s:11:"description";s:40:"Add a date picker to event module forms.";s:7:"package";s:5:"Event";s:12:"dependencies";a:1:{i:0;s:5:"event";}s:4:"core";s:3:"6.x";s:7:"version";s:11:"6.x-2.x-dev";s:7:"project";s:5:"event";s:9:"datestamp";s:10:"1425082685";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46629 ))
46630 ->values(array(
46631   'filename' => 'sites/all/modules/event/event.module',
46632   'name' => 'event',
46633   'type' => 'module',
46634   'owner' => '',
46635   'status' => '1',
46636   'throttle' => '0',
46637   'bootstrap' => '0',
46638   'schema_version' => '6005',
46639   'weight' => '0',
46640   'info' => 'a:10:{s:4:"name";s:5:"Event";s:11:"description";s:44:"Calendaring API, calendar display and export";s:7:"package";s:5:"Event";s:4:"core";s:3:"6.x";s:7:"version";s:11:"6.x-2.x-dev";s:7:"project";s:5:"event";s:9:"datestamp";s:10:"1425082685";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46641 ))
46642 ->values(array(
46643   'filename' => 'sites/all/modules/filefield/filefield.module',
46644   'name' => 'filefield',
46645   'type' => 'module',
46646   'owner' => '',
46647   'status' => '1',
46648   'throttle' => '0',
46649   'bootstrap' => '0',
46650   'schema_version' => '6104',
46651   'weight' => '0',
46652   'info' => 'a:10:{s:4:"name";s:9:"FileField";s:11:"description";s:26:"Defines a file field type.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:3:"php";s:3:"5.0";s:7:"version";s:8:"6.x-3.14";s:7:"project";s:9:"filefield";s:9:"datestamp";s:10:"1456327142";s:10:"dependents";a:0:{}}',
46653 ))
46654 ->values(array(
46655   'filename' => 'sites/all/modules/filefield/filefield_meta/filefield_meta.module',
46656   'name' => 'filefield_meta',
46657   'type' => 'module',
46658   'owner' => '',
46659   'status' => '0',
46660   'throttle' => '0',
46661   'bootstrap' => '0',
46662   'schema_version' => '-1',
46663   'weight' => '0',
46664   'info' => 'a:10:{s:4:"name";s:14:"FileField Meta";s:11:"description";s:48:"Add metadata gathering and storage to FileField.";s:12:"dependencies";a:2:{i:0;s:9:"filefield";i:1;s:6:"getid3";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:3:"php";s:3:"5.0";s:7:"version";s:8:"6.x-3.14";s:7:"project";s:9:"filefield";s:9:"datestamp";s:10:"1456327142";s:10:"dependents";a:0:{}}',
46665 ))
46666 ->values(array(
46667   'filename' => 'sites/all/modules/i18n/i18n.module',
46668   'name' => 'i18n',
46669   'type' => 'module',
46670   'owner' => '',
46671   'status' => '1',
46672   'throttle' => '0',
46673   'bootstrap' => '1',
46674   'schema_version' => '9',
46675   'weight' => '10',
46676   'info' => 'a:10:{s:4:"name";s:20:"Internationalization";s:11:"description";s:49:"Extends Drupal support for multilingual features.";s:12:"dependencies";a:2:{i:0;s:6:"locale";i:1;s:11:"translation";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46677 ))
46678 ->values(array(
46679   'filename' => 'sites/all/modules/i18n/i18nblocks/i18nblocks.module',
46680   'name' => 'i18nblocks',
46681   'type' => 'module',
46682   'owner' => '',
46683   'status' => '1',
46684   'throttle' => '0',
46685   'bootstrap' => '0',
46686   'schema_version' => '6001',
46687   'weight' => '0',
46688   'info' => 'a:10:{s:4:"name";s:17:"Block translation";s:11:"description";s:50:"Enables multilingual blocks and block translation.";s:12:"dependencies";a:2:{i:0;s:4:"i18n";i:1;s:11:"i18nstrings";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46689 ))
46690 ->values(array(
46691   'filename' => 'sites/all/modules/i18n/i18ncck/i18ncck.module',
46692   'name' => 'i18ncck',
46693   'type' => 'module',
46694   'owner' => '',
46695   'status' => '1',
46696   'throttle' => '0',
46697   'bootstrap' => '0',
46698   'schema_version' => '0',
46699   'weight' => '0',
46700   'info' => 'a:10:{s:4:"name";s:15:"CCK translation";s:11:"description";s:56:"Supports translatable custom CCK fields and fieldgroups.";s:12:"dependencies";a:3:{i:0;s:4:"i18n";i:1;s:7:"content";i:2;s:11:"i18nstrings";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46701 ))
46702 ->values(array(
46703   'filename' => 'sites/all/modules/i18n/i18ncontent/i18ncontent.module',
46704   'name' => 'i18ncontent',
46705   'type' => 'module',
46706   'owner' => '',
46707   'status' => '1',
46708   'throttle' => '0',
46709   'bootstrap' => '0',
46710   'schema_version' => '6002',
46711   'weight' => '0',
46712   'info' => 'a:10:{s:4:"name";s:24:"Content type translation";s:11:"description";s:99:"Add multilingual options for content and translate related strings: name, description, help text...";s:12:"dependencies";a:1:{i:0;s:11:"i18nstrings";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46713 ))
46714 ->values(array(
46715   'filename' => 'sites/all/modules/i18n/i18nmenu/i18nmenu.module',
46716   'name' => 'i18nmenu',
46717   'type' => 'module',
46718   'owner' => '',
46719   'status' => '1',
46720   'throttle' => '0',
46721   'bootstrap' => '0',
46722   'schema_version' => '0',
46723   'weight' => '0',
46724   'info' => 'a:10:{s:4:"name";s:16:"Menu translation";s:11:"description";s:40:"Supports translatable custom menu items.";s:12:"dependencies";a:4:{i:0;s:4:"i18n";i:1;s:4:"menu";i:2;s:10:"i18nblocks";i:3;s:11:"i18nstrings";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46725 ))
46726 ->values(array(
46727   'filename' => 'sites/all/modules/i18n/i18npoll/i18npoll.module',
46728   'name' => 'i18npoll',
46729   'type' => 'module',
46730   'owner' => '',
46731   'status' => '0',
46732   'throttle' => '0',
46733   'bootstrap' => '0',
46734   'schema_version' => '-1',
46735   'weight' => '0',
46736   'info' => 'a:10:{s:4:"name";s:14:"Poll aggregate";s:11:"description";s:45:"Aggregates poll results for all translations.";s:12:"dependencies";a:2:{i:0;s:11:"translation";i:1;s:4:"poll";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46737 ))
46738 ->values(array(
46739   'filename' => 'sites/all/modules/i18n/i18nprofile/i18nprofile.module',
46740   'name' => 'i18nprofile',
46741   'type' => 'module',
46742   'owner' => '',
46743   'status' => '1',
46744   'throttle' => '0',
46745   'bootstrap' => '0',
46746   'schema_version' => '2',
46747   'weight' => '0',
46748   'info' => 'a:10:{s:4:"name";s:19:"Profile translation";s:11:"description";s:36:"Enables multilingual profile fields.";s:12:"dependencies";a:2:{i:0;s:7:"profile";i:1;s:11:"i18nstrings";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46749 ))
46750 ->values(array(
46751   'filename' => 'sites/all/modules/i18n/i18nstrings/i18nstrings.module',
46752   'name' => 'i18nstrings',
46753   'type' => 'module',
46754   'owner' => '',
46755   'status' => '1',
46756   'throttle' => '0',
46757   'bootstrap' => '0',
46758   'schema_version' => '6006',
46759   'weight' => '10',
46760   'info' => 'a:10:{s:4:"name";s:18:"String translation";s:11:"description";s:57:"Provides support for translation of user defined strings.";s:12:"dependencies";a:1:{i:0;s:6:"locale";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46761 ))
46762 ->values(array(
46763   'filename' => 'sites/all/modules/i18n/i18nsync/i18nsync.module',
46764   'name' => 'i18nsync',
46765   'type' => 'module',
46766   'owner' => '',
46767   'status' => '0',
46768   'throttle' => '0',
46769   'bootstrap' => '0',
46770   'schema_version' => '-1',
46771   'weight' => '0',
46772   'info' => 'a:10:{s:4:"name";s:24:"Synchronize translations";s:11:"description";s:74:"Synchronizes taxonomy and fields accross translations of the same content.";s:12:"dependencies";a:1:{i:0;s:4:"i18n";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46773 ))
46774 ->values(array(
46775   'filename' => 'sites/all/modules/i18n/i18ntaxonomy/i18ntaxonomy.module',
46776   'name' => 'i18ntaxonomy',
46777   'type' => 'module',
46778   'owner' => '',
46779   'status' => '1',
46780   'throttle' => '0',
46781   'bootstrap' => '0',
46782   'schema_version' => '6002',
46783   'weight' => '5',
46784   'info' => 'a:10:{s:4:"name";s:20:"Taxonomy translation";s:11:"description";s:30:"Enables multilingual taxonomy.";s:12:"dependencies";a:3:{i:0;s:4:"i18n";i:1;s:8:"taxonomy";i:2;s:11:"i18nstrings";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46785 ))
46786 ->values(array(
46787   'filename' => 'sites/all/modules/i18n/i18nviews/i18nviews.module',
46788   'name' => 'i18nviews',
46789   'type' => 'module',
46790   'owner' => '',
46791   'status' => '0',
46792   'throttle' => '0',
46793   'bootstrap' => '0',
46794   'schema_version' => '-1',
46795   'weight' => '0',
46796   'info' => 'a:10:{s:4:"name";s:17:"Views translation";s:11:"description";s:80:"Translation of views strings and content selection for views. Requires Views 3.x";s:12:"dependencies";a:3:{i:0;s:5:"views";i:1;s:11:"i18nstrings";i:2;s:12:"i18ntaxonomy";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46797 ))
46798 ->values(array(
46799   'filename' => 'sites/all/modules/i18n/tests/i18n_test.module',
46800   'name' => 'i18n_test',
46801   'type' => 'module',
46802   'owner' => '',
46803   'status' => '0',
46804   'throttle' => '0',
46805   'bootstrap' => '0',
46806   'schema_version' => '-1',
46807   'weight' => '0',
46808   'info' => 'a:10:{s:4:"name";s:26:"Internationalization tests";s:11:"description";s:55:"Helper module for testing i18n (do not enable manually)";s:12:"dependencies";a:3:{i:0;s:6:"locale";i:1;s:11:"translation";i:2;s:4:"i18n";}s:7:"package";s:5:"Devel";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1270669810";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46809 ))
46810 ->values(array(
46811   'filename' => 'sites/all/modules/imageapi/imageapi.module',
46812   'name' => 'imageapi',
46813   'type' => 'module',
46814   'owner' => '',
46815   'status' => '1',
46816   'throttle' => '0',
46817   'bootstrap' => '0',
46818   'schema_version' => '0',
46819   'weight' => '0',
46820   'info' => 'a:10:{s:4:"name";s:8:"ImageAPI";s:11:"description";s:38:"ImageAPI supporting multiple toolkits.";s:7:"package";s:10:"ImageCache";s:4:"core";s:3:"6.x";s:3:"php";s:3:"5.1";s:7:"version";s:13:"6.x-1.9+4-dev";s:7:"project";s:8:"imageapi";s:9:"datestamp";s:10:"1380582658";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}}',
46821 ))
46822 ->values(array(
46823   'filename' => 'sites/all/modules/imageapi/imageapi_gd.module',
46824   'name' => 'imageapi_gd',
46825   'type' => 'module',
46826   'owner' => '',
46827   'status' => '0',
46828   'throttle' => '0',
46829   'bootstrap' => '0',
46830   'schema_version' => '-1',
46831   'weight' => '0',
46832   'info' => "a:10:{s:4:\"name\";s:12:\"ImageAPI GD2\";s:11:\"description\";s:49:\"Uses PHP's built-in GD2 image processing support.\";s:7:\"package\";s:10:\"ImageCache\";s:4:\"core\";s:3:\"6.x\";s:7:\"version\";s:13:\"6.x-1.9+4-dev\";s:7:\"project\";s:8:\"imageapi\";s:9:\"datestamp\";s:10:\"1380582658\";s:12:\"dependencies\";a:0:{}s:10:\"dependents\";a:0:{}s:3:\"php\";s:5:\"4.3.5\";}",
46833 ))
46834 ->values(array(
46835   'filename' => 'sites/all/modules/imageapi/imageapi_imagemagick.module',
46836   'name' => 'imageapi_imagemagick',
46837   'type' => 'module',
46838   'owner' => '',
46839   'status' => '0',
46840   'throttle' => '0',
46841   'bootstrap' => '0',
46842   'schema_version' => '-1',
46843   'weight' => '0',
46844   'info' => 'a:10:{s:4:"name";s:20:"ImageAPI ImageMagick";s:11:"description";s:33:"Command Line ImageMagick support.";s:7:"package";s:10:"ImageCache";s:4:"core";s:3:"6.x";s:7:"version";s:13:"6.x-1.9+4-dev";s:7:"project";s:8:"imageapi";s:9:"datestamp";s:10:"1380582658";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46845 ))
46846 ->values(array(
46847   'filename' => 'sites/all/modules/imagecache/imagecache.module',
46848   'name' => 'imagecache',
46849   'type' => 'module',
46850   'owner' => '',
46851   'status' => '1',
46852   'throttle' => '0',
46853   'bootstrap' => '0',
46854   'schema_version' => '6001',
46855   'weight' => '0',
46856   'info' => 'a:10:{s:4:"name";s:10:"ImageCache";s:11:"description";s:36:"Dynamic image manipulator and cache.";s:7:"package";s:10:"ImageCache";s:12:"dependencies";a:1:{i:0;s:8:"imageapi";}s:4:"core";s:3:"6.x";s:7:"version";s:18:"6.x-2.0-rc1+16-dev";s:7:"project";s:10:"imagecache";s:9:"datestamp";s:10:"1380582680";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46857 ))
46858 ->values(array(
46859   'filename' => 'sites/all/modules/imagecache/imagecache_ui.module',
46860   'name' => 'imagecache_ui',
46861   'type' => 'module',
46862   'owner' => '',
46863   'status' => '0',
46864   'throttle' => '0',
46865   'bootstrap' => '0',
46866   'schema_version' => '-1',
46867   'weight' => '0',
46868   'info' => 'a:10:{s:4:"name";s:13:"ImageCache UI";s:11:"description";s:26:"ImageCache User Interface.";s:12:"dependencies";a:2:{i:0;s:10:"imagecache";i:1;s:8:"imageapi";}s:7:"package";s:10:"ImageCache";s:4:"core";s:3:"6.x";s:7:"version";s:18:"6.x-2.0-rc1+16-dev";s:7:"project";s:10:"imagecache";s:9:"datestamp";s:10:"1380582680";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46869 ))
46870 ->values(array(
46871   'filename' => 'sites/all/modules/imagefield/imagefield.module',
46872   'name' => 'imagefield',
46873   'type' => 'module',
46874   'owner' => '',
46875   'status' => '1',
46876   'throttle' => '0',
46877   'bootstrap' => '0',
46878   'schema_version' => '6006',
46879   'weight' => '0',
46880   'info' => 'a:10:{s:4:"name";s:10:"ImageField";s:11:"description";s:28:"Defines an image field type.";s:4:"core";s:3:"6.x";s:12:"dependencies";a:2:{i:0;s:7:"content";i:1;s:9:"filefield";}s:7:"package";s:3:"CCK";s:7:"version";s:7:"6.x-3.3";s:7:"project";s:10:"imagefield";s:9:"datestamp";s:10:"1273102211";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46881 ))
46882 ->values(array(
46883   'filename' => 'sites/all/modules/jquery_ui/jquery_ui.module',
46884   'name' => 'jquery_ui',
46885   'type' => 'module',
46886   'owner' => '',
46887   'status' => '0',
46888   'throttle' => '0',
46889   'bootstrap' => '0',
46890   'schema_version' => '-1',
46891   'weight' => '0',
46892   'info' => 'a:8:{s:4:"name";s:9:"jQuery UI";s:11:"description";s:55:"Provides the jQuery UI plug-in to other Drupal modules.";s:7:"package";s:14:"User interface";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}',
46893 ))
46894 ->values(array(
46895   'filename' => 'sites/all/modules/link/link.module',
46896   'name' => 'link',
46897   'type' => 'module',
46898   'owner' => '',
46899   'status' => '0',
46900   'throttle' => '0',
46901   'bootstrap' => '0',
46902   'schema_version' => '6002',
46903   'weight' => '0',
46904   'info' => 'a:11:{s:4:"name";s:4:"Link";s:11:"description";s:32:"Defines simple link field types.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:5:"files";a:1:{i:0;s:16:"link.migrate.inc";}s:7:"version";s:8:"6.x-2.11";s:7:"project";s:4:"link";s:9:"datestamp";s:10:"1393559923";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46905 ))
46906 ->values(array(
46907   'filename' => 'sites/all/modules/nodeaccess/nodeaccess.module',
46908   'name' => 'nodeaccess',
46909   'type' => 'module',
46910   'owner' => '',
46911   'status' => '0',
46912   'throttle' => '0',
46913   'bootstrap' => '0',
46914   'schema_version' => '-1',
46915   'weight' => '0',
46916   'info' => 'a:9:{s:4:"name";s:10:"Nodeaccess";s:11:"description";s:32:"Provides per node access control";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.5";s:7:"project";s:10:"nodeaccess";s:9:"datestamp";s:10:"1412640229";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46917 ))
46918 ->values(array(
46919   'filename' => 'sites/all/modules/phone/phone.module',
46920   'name' => 'phone',
46921   'type' => 'module',
46922   'owner' => '',
46923   'status' => '0',
46924   'throttle' => '0',
46925   'bootstrap' => '0',
46926   'schema_version' => '6200',
46927   'weight' => '0',
46928   'info' => 'a:10:{s:4:"name";s:11:"Phone - CCK";s:11:"description";s:84:"The phone module allows administrators to define a CCK field type for phone numbers.";s:7:"package";s:3:"CCK";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-2.18";s:7:"project";s:5:"phone";s:9:"datestamp";s:10:"1294067495";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46929 ))
46930 ->values(array(
46931   'filename' => 'sites/all/modules/variable/variable.module',
46932   'name' => 'variable',
46933   'type' => 'module',
46934   'owner' => '',
46935   'status' => '0',
46936   'throttle' => '0',
46937   'bootstrap' => '0',
46938   'schema_version' => '-1',
46939   'weight' => '0',
46940   'info' => 'a:9:{s:4:"name";s:12:"Variable API";s:11:"description";s:12:"Variable API";s:4:"core";s:3:"6.x";s:7:"version";s:11:"6.x-1.x-dev";s:7:"project";s:8:"variable";s:9:"datestamp";s:10:"1406295528";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46941 ))
46942 ->values(array(
46943   'filename' => 'sites/all/modules/variable/variable_admin/variable_admin.module',
46944   'name' => 'variable_admin',
46945   'type' => 'module',
46946   'owner' => '',
46947   'status' => '1',
46948   'throttle' => '0',
46949   'bootstrap' => '0',
46950   'schema_version' => '0',
46951   'weight' => '0',
46952   'info' => 'a:9:{s:4:"name";s:14:"Variable admin";s:11:"description";s:23:"Variable API - Admin UI";s:4:"core";s:3:"6.x";s:7:"version";s:11:"6.x-1.x-dev";s:7:"project";s:8:"variable";s:9:"datestamp";s:10:"1406295528";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46953 ))
46954 ->values(array(
46955   'filename' => 'sites/all/modules/views/tests/views_test.module',
46956   'name' => 'views_test',
46957   'type' => 'module',
46958   'owner' => '',
46959   'status' => '0',
46960   'throttle' => '0',
46961   'bootstrap' => '0',
46962   'schema_version' => '-1',
46963   'weight' => '0',
46964   'info' => 'a:12:{s:4:"name";s:10:"Views Test";s:11:"description";s:22:"Test module for Views.";s:7:"package";s:5:"Views";s:4:"core";s:3:"6.x";s:12:"dependencies";a:1:{i:0;s:5:"views";}s:6:"hidden";b:1;s:5:"files";a:2:{i:0;s:17:"views_test.module";i:1;s:18:"views_test.install";}s:7:"version";s:7:"6.x-3.0";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1325638545";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46965 ))
46966 ->values(array(
46967   'filename' => 'sites/all/modules/views/views.module',
46968   'name' => 'views',
46969   'type' => 'module',
46970   'owner' => '',
46971   'status' => '0',
46972   'throttle' => '0',
46973   'bootstrap' => '0',
46974   'schema_version' => '-1',
46975   'weight' => '0',
46976   'info' => 'a:10:{s:4:"name";s:5:"Views";s:11:"description";s:55:"Create customized lists and queries from your database.";s:7:"package";s:5:"Views";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-3.2";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1423647787";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46977 ))
46978 ->values(array(
46979   'filename' => 'sites/all/modules/views/views_export/views_export.module',
46980   'name' => 'views_export',
46981   'type' => 'module',
46982   'owner' => '',
46983   'status' => '0',
46984   'throttle' => '0',
46985   'bootstrap' => '0',
46986   'schema_version' => '-1',
46987   'weight' => '0',
46988   'info' => 'a:10:{s:4:"name";s:14:"Views exporter";s:11:"description";s:40:"Allows exporting multiple views at once.";s:7:"package";s:5:"Views";s:12:"dependencies";a:1:{i:0;s:5:"views";}s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-3.2";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1423647787";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
46989 ))
46990 ->values(array(
46991   'filename' => 'sites/all/modules/views/views_ui.module',
46992   'name' => 'views_ui',
46993   'type' => 'module',
46994   'owner' => '',
46995   'status' => '0',
46996   'throttle' => '0',
46997   'bootstrap' => '0',
46998   'schema_version' => '-1',
46999   'weight' => '0',
47000   'info' => 'a:10:{s:4:"name";s:8:"Views UI";s:11:"description";s:93:"Administrative interface to views. Without this module, you cannot create or edit your views.";s:7:"package";s:5:"Views";s:4:"core";s:3:"6.x";s:12:"dependencies";a:1:{i:0;s:5:"views";}s:7:"version";s:7:"6.x-3.2";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1423647787";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
47001 ))
47002 ->values(array(
47003   'filename' => 'themes/bluemarine/bluemarine.info',
47004   'name' => 'bluemarine',
47005   'type' => 'theme',
47006   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
47007   'status' => '0',
47008   'throttle' => '0',
47009   'bootstrap' => '0',
47010   'schema_version' => '-1',
47011   'weight' => '0',
47012   'info' => 'a:13:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}',
47013 ))
47014 ->values(array(
47015   'filename' => 'themes/chameleon/chameleon.info',
47016   'name' => 'chameleon',
47017   'type' => 'theme',
47018   'owner' => 'themes/chameleon/chameleon.theme',
47019   'status' => '0',
47020   'throttle' => '0',
47021   'bootstrap' => '0',
47022   'schema_version' => '-1',
47023   'weight' => '0',
47024   'info' => 'a:12:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}',
47025 ))
47026 ->values(array(
47027   'filename' => 'themes/chameleon/marvin/marvin.info',
47028   'name' => 'marvin',
47029   'type' => 'theme',
47030   'owner' => '',
47031   'status' => '0',
47032   'throttle' => '0',
47033   'bootstrap' => '0',
47034   'schema_version' => '-1',
47035   'weight' => '0',
47036   'info' => 'a:13:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}',
47037 ))
47038 ->values(array(
47039   'filename' => 'themes/garland/garland.info',
47040   'name' => 'garland',
47041   'type' => 'theme',
47042   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
47043   'status' => '1',
47044   'throttle' => '0',
47045   'bootstrap' => '0',
47046   'schema_version' => '-1',
47047   'weight' => '0',
47048   'info' => 'a:13:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}',
47049 ))
47050 ->values(array(
47051   'filename' => 'themes/garland/minnelli/minnelli.info',
47052   'name' => 'minnelli',
47053   'type' => 'theme',
47054   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
47055   'status' => '0',
47056   'throttle' => '0',
47057   'bootstrap' => '0',
47058   'schema_version' => '-1',
47059   'weight' => '0',
47060   'info' => 'a:14:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}',
47061 ))
47062 ->values(array(
47063   'filename' => 'themes/pushbutton/pushbutton.info',
47064   'name' => 'pushbutton',
47065   'type' => 'theme',
47066   'owner' => 'themes/engines/phptemplate/phptemplate.engine',
47067   'status' => '0',
47068   'throttle' => '0',
47069   'bootstrap' => '0',
47070   'schema_version' => '-1',
47071   'weight' => '0',
47072   'info' => 'a:13:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.38";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1456343372";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}',
47073 ))
47074 ->execute();
47075
47076 $connection->schema()->createTable('term_data', array(
47077   'fields' => array(
47078     'tid' => array(
47079       'type' => 'serial',
47080       'not null' => TRUE,
47081       'size' => 'normal',
47082       'unsigned' => TRUE,
47083     ),
47084     'vid' => array(
47085       'type' => 'int',
47086       'not null' => TRUE,
47087       'size' => 'normal',
47088       'default' => '0',
47089       'unsigned' => TRUE,
47090     ),
47091     'name' => array(
47092       'type' => 'varchar',
47093       'not null' => TRUE,
47094       'length' => '255',
47095       'default' => '',
47096     ),
47097     'description' => array(
47098       'type' => 'text',
47099       'not null' => FALSE,
47100       'size' => 'normal',
47101     ),
47102     'weight' => array(
47103       'type' => 'int',
47104       'not null' => TRUE,
47105       'size' => 'normal',
47106       'default' => '0',
47107     ),
47108     'language' => array(
47109       'type' => 'varchar',
47110       'not null' => TRUE,
47111       'length' => '12',
47112       'default' => '',
47113     ),
47114     'trid' => array(
47115       'type' => 'int',
47116       'not null' => TRUE,
47117       'size' => 'normal',
47118       'default' => '0',
47119     ),
47120   ),
47121   'primary key' => array(
47122     'tid',
47123   ),
47124   'mysql_character_set' => 'utf8',
47125 ));
47126
47127 $connection->insert('term_data')
47128 ->fields(array(
47129   'tid',
47130   'vid',
47131   'name',
47132   'description',
47133   'weight',
47134   'language',
47135   'trid',
47136 ))
47137 ->values(array(
47138   'tid' => '1',
47139   'vid' => '1',
47140   'name' => 'zu - term 1 of vocabulary 1',
47141   'description' => 'zu - description of term 1 of vocabulary 1',
47142   'weight' => '0',
47143   'language' => 'zu',
47144   'trid' => '0',
47145 ))
47146 ->values(array(
47147   'tid' => '2',
47148   'vid' => '2',
47149   'name' => 'fr - term 2 of vocabulary 2',
47150   'description' => 'fr - description of term 2 of vocabulary 2',
47151   'weight' => '3',
47152   'language' => 'fr',
47153   'trid' => '0',
47154 ))
47155 ->values(array(
47156   'tid' => '3',
47157   'vid' => '2',
47158   'name' => 'fr - term 3 of vocabulary 2',
47159   'description' => 'fr - description of term 3 of vocabulary 2',
47160   'weight' => '4',
47161   'language' => 'fr',
47162   'trid' => '0',
47163 ))
47164 ->values(array(
47165   'tid' => '4',
47166   'vid' => '3',
47167   'name' => 'term 4 of vocabulary 3',
47168   'description' => 'description of term 4 of vocabulary 3',
47169   'weight' => '6',
47170   'language' => '',
47171   'trid' => '0',
47172 ))
47173 ->values(array(
47174   'tid' => '5',
47175   'vid' => '3',
47176   'name' => 'term 5 of vocabulary 3',
47177   'description' => 'description of term 5 of vocabulary 3',
47178   'weight' => '7',
47179   'language' => '',
47180   'trid' => '0',
47181 ))
47182 ->values(array(
47183   'tid' => '6',
47184   'vid' => '3',
47185   'name' => 'term 6 of vocabulary 3',
47186   'description' => 'description of term 6 of vocabulary 3',
47187   'weight' => '8',
47188   'language' => '',
47189   'trid' => '0',
47190 ))
47191 ->values(array(
47192   'tid' => '7',
47193   'vid' => '1',
47194   'name' => 'fr - term 2 of vocabulary 1',
47195   'description' => 'fr - desc of term 2 vocab 1',
47196   'weight' => '0',
47197   'language' => 'fr',
47198   'trid' => '0',
47199 ))
47200 ->values(array(
47201   'tid' => '8',
47202   'vid' => '7',
47203   'name' => 'General discussion',
47204   'description' => '',
47205   'weight' => '0',
47206   'language' => '',
47207   'trid' => '0',
47208 ))
47209 ->values(array(
47210   'tid' => '9',
47211   'vid' => '3',
47212   'name' => 'fr - term 4 of vocabulary 3',
47213   'description' => '',
47214   'weight' => '0',
47215   'language' => 'fr',
47216   'trid' => '1',
47217 ))
47218 ->values(array(
47219   'tid' => '10',
47220   'vid' => '3',
47221   'name' => 'zu - term 4 of vocabulary 3',
47222   'description' => '',
47223   'weight' => '0',
47224   'language' => 'zu',
47225   'trid' => '1',
47226 ))
47227 ->values(array(
47228   'tid' => '11',
47229   'vid' => '3',
47230   'name' => 'term 7 of vocabulary 3',
47231   'description' => '',
47232   'weight' => '0',
47233   'language' => 'en',
47234   'trid' => '2',
47235 ))
47236 ->values(array(
47237   'tid' => '12',
47238   'vid' => '3',
47239   'name' => 'fr - term 7 of vocabulary 3',
47240   'description' => '',
47241   'weight' => '0',
47242   'language' => 'fr',
47243   'trid' => '2',
47244 ))
47245 ->values(array(
47246   'tid' => '13',
47247   'vid' => '3',
47248   'name' => 'zu - term 7 of vocabulary 3',
47249   'description' => '',
47250   'weight' => '0',
47251   'language' => 'zu',
47252   'trid' => '2',
47253 ))
47254 ->values(array(
47255   'tid' => '14',
47256   'vid' => '5',
47257   'name' => 'Talos IV',
47258   'description' => 'The home of Captain Christopher Pike.',
47259   'weight' => '0',
47260   'language' => '',
47261   'trid' => '0',
47262 ))
47263 ->values(array(
47264   'tid' => '15',
47265   'vid' => '5',
47266   'name' => 'Vulcan',
47267   'description' => '',
47268   'weight' => '0',
47269   'language' => '',
47270   'trid' => '0',
47271 ))
47272 ->execute();
47273
47274 $connection->schema()->createTable('term_hierarchy', array(
47275   'fields' => array(
47276     'tid' => array(
47277       'type' => 'int',
47278       'not null' => TRUE,
47279       'size' => 'normal',
47280       'default' => '0',
47281       'unsigned' => TRUE,
47282     ),
47283     'parent' => array(
47284       'type' => 'int',
47285       'not null' => TRUE,
47286       'size' => 'normal',
47287       'default' => '0',
47288       'unsigned' => TRUE,
47289     ),
47290   ),
47291   'primary key' => array(
47292     'tid',
47293     'parent',
47294   ),
47295   'mysql_character_set' => 'utf8',
47296 ));
47297
47298 $connection->insert('term_hierarchy')
47299 ->fields(array(
47300   'tid',
47301   'parent',
47302 ))
47303 ->values(array(
47304   'tid' => '1',
47305   'parent' => '0',
47306 ))
47307 ->values(array(
47308   'tid' => '2',
47309   'parent' => '0',
47310 ))
47311 ->values(array(
47312   'tid' => '4',
47313   'parent' => '0',
47314 ))
47315 ->values(array(
47316   'tid' => '7',
47317   'parent' => '0',
47318 ))
47319 ->values(array(
47320   'tid' => '8',
47321   'parent' => '0',
47322 ))
47323 ->values(array(
47324   'tid' => '9',
47325   'parent' => '0',
47326 ))
47327 ->values(array(
47328   'tid' => '10',
47329   'parent' => '0',
47330 ))
47331 ->values(array(
47332   'tid' => '11',
47333   'parent' => '0',
47334 ))
47335 ->values(array(
47336   'tid' => '12',
47337   'parent' => '0',
47338 ))
47339 ->values(array(
47340   'tid' => '13',
47341   'parent' => '0',
47342 ))
47343 ->values(array(
47344   'tid' => '14',
47345   'parent' => '0',
47346 ))
47347 ->values(array(
47348   'tid' => '15',
47349   'parent' => '0',
47350 ))
47351 ->values(array(
47352   'tid' => '3',
47353   'parent' => '2',
47354 ))
47355 ->values(array(
47356   'tid' => '5',
47357   'parent' => '4',
47358 ))
47359 ->values(array(
47360   'tid' => '6',
47361   'parent' => '4',
47362 ))
47363 ->values(array(
47364   'tid' => '6',
47365   'parent' => '5',
47366 ))
47367 ->execute();
47368
47369 $connection->schema()->createTable('term_node', array(
47370   'fields' => array(
47371     'nid' => array(
47372       'type' => 'int',
47373       'not null' => TRUE,
47374       'size' => 'normal',
47375       'default' => '0',
47376       'unsigned' => TRUE,
47377     ),
47378     'vid' => array(
47379       'type' => 'int',
47380       'not null' => TRUE,
47381       'size' => 'normal',
47382       'default' => '0',
47383       'unsigned' => TRUE,
47384     ),
47385     'tid' => array(
47386       'type' => 'int',
47387       'not null' => TRUE,
47388       'size' => 'normal',
47389       'default' => '0',
47390       'unsigned' => TRUE,
47391     ),
47392   ),
47393   'primary key' => array(
47394     'vid',
47395     'tid',
47396   ),
47397   'mysql_character_set' => 'utf8',
47398 ));
47399
47400 $connection->insert('term_node')
47401 ->fields(array(
47402   'nid',
47403   'vid',
47404   'tid',
47405 ))
47406 ->values(array(
47407   'nid' => '1',
47408   'vid' => '1',
47409   'tid' => '1',
47410 ))
47411 ->values(array(
47412   'nid' => '1',
47413   'vid' => '1',
47414   'tid' => '2',
47415 ))
47416 ->values(array(
47417   'nid' => '2',
47418   'vid' => '3',
47419   'tid' => '2',
47420 ))
47421 ->values(array(
47422   'nid' => '2',
47423   'vid' => '3',
47424   'tid' => '3',
47425 ))
47426 ->values(array(
47427   'nid' => '1',
47428   'vid' => '2001',
47429   'tid' => '4',
47430 ))
47431 ->values(array(
47432   'nid' => '1',
47433   'vid' => '2001',
47434   'tid' => '5',
47435 ))
47436 ->values(array(
47437   'nid' => '19',
47438   'vid' => '22',
47439   'tid' => '8',
47440 ))
47441 ->execute();
47442
47443 $connection->schema()->createTable('term_relation', array(
47444   'fields' => array(
47445     'trid' => array(
47446       'type' => 'serial',
47447       'not null' => TRUE,
47448       'size' => 'normal',
47449     ),
47450     'tid1' => array(
47451       'type' => 'int',
47452       'not null' => TRUE,
47453       'size' => 'normal',
47454       'default' => '0',
47455       'unsigned' => TRUE,
47456     ),
47457     'tid2' => array(
47458       'type' => 'int',
47459       'not null' => TRUE,
47460       'size' => 'normal',
47461       'default' => '0',
47462       'unsigned' => TRUE,
47463     ),
47464   ),
47465   'primary key' => array(
47466     'trid',
47467   ),
47468   'mysql_character_set' => 'utf8',
47469 ));
47470
47471 $connection->schema()->createTable('term_synonym', array(
47472   'fields' => array(
47473     'tsid' => array(
47474       'type' => 'serial',
47475       'not null' => TRUE,
47476       'size' => 'normal',
47477     ),
47478     'tid' => array(
47479       'type' => 'int',
47480       'not null' => TRUE,
47481       'size' => 'normal',
47482       'default' => '0',
47483       'unsigned' => TRUE,
47484     ),
47485     'name' => array(
47486       'type' => 'varchar',
47487       'not null' => TRUE,
47488       'length' => '255',
47489       'default' => '',
47490     ),
47491   ),
47492   'primary key' => array(
47493     'tsid',
47494   ),
47495   'mysql_character_set' => 'utf8',
47496 ));
47497
47498 $connection->schema()->createTable('upload', array(
47499   'fields' => array(
47500     'fid' => array(
47501       'type' => 'int',
47502       'not null' => TRUE,
47503       'size' => 'normal',
47504       'default' => '0',
47505       'unsigned' => TRUE,
47506     ),
47507     'nid' => array(
47508       'type' => 'int',
47509       'not null' => TRUE,
47510       'size' => 'normal',
47511       'default' => '0',
47512       'unsigned' => TRUE,
47513     ),
47514     'vid' => array(
47515       'type' => 'int',
47516       'not null' => TRUE,
47517       'size' => 'normal',
47518       'default' => '0',
47519       'unsigned' => TRUE,
47520     ),
47521     'description' => array(
47522       'type' => 'varchar',
47523       'not null' => TRUE,
47524       'length' => '255',
47525       'default' => '',
47526     ),
47527     'list' => array(
47528       'type' => 'int',
47529       'not null' => TRUE,
47530       'size' => 'normal',
47531       'default' => '0',
47532       'unsigned' => TRUE,
47533     ),
47534     'weight' => array(
47535       'type' => 'int',
47536       'not null' => TRUE,
47537       'size' => 'normal',
47538       'default' => '0',
47539     ),
47540   ),
47541   'primary key' => array(
47542     'fid',
47543     'vid',
47544   ),
47545   'mysql_character_set' => 'utf8',
47546 ));
47547
47548 $connection->insert('upload')
47549 ->fields(array(
47550   'fid',
47551   'nid',
47552   'vid',
47553   'description',
47554   'list',
47555   'weight',
47556 ))
47557 ->values(array(
47558   'fid' => '1',
47559   'nid' => '1',
47560   'vid' => '1',
47561   'description' => 'file 1-1-1',
47562   'list' => '0',
47563   'weight' => '-1',
47564 ))
47565 ->values(array(
47566   'fid' => '2',
47567   'nid' => '1',
47568   'vid' => '2',
47569   'description' => 'file 1-2-2',
47570   'list' => '1',
47571   'weight' => '4',
47572 ))
47573 ->values(array(
47574   'fid' => '2',
47575   'nid' => '2',
47576   'vid' => '3',
47577   'description' => 'file 2-3-2',
47578   'list' => '1',
47579   'weight' => '2',
47580 ))
47581 ->values(array(
47582   'fid' => '3',
47583   'nid' => '1',
47584   'vid' => '2',
47585   'description' => 'file 1-2-3',
47586   'list' => '0',
47587   'weight' => '3',
47588 ))
47589 ->values(array(
47590   'fid' => '3',
47591   'nid' => '2',
47592   'vid' => '3',
47593   'description' => 'file 2-3-3',
47594   'list' => '0',
47595   'weight' => '1',
47596 ))
47597 ->values(array(
47598   'fid' => '3',
47599   'nid' => '12',
47600   'vid' => '15',
47601   'description' => 'file 12-15-3',
47602   'list' => '0',
47603   'weight' => '0',
47604 ))
47605 ->execute();
47606
47607 $connection->schema()->createTable('url_alias', array(
47608   'fields' => array(
47609     'pid' => array(
47610       'type' => 'serial',
47611       'not null' => TRUE,
47612       'size' => 'normal',
47613       'unsigned' => TRUE,
47614     ),
47615     'src' => array(
47616       'type' => 'varchar',
47617       'not null' => TRUE,
47618       'length' => '128',
47619       'default' => '',
47620     ),
47621     'dst' => array(
47622       'type' => 'varchar',
47623       'not null' => TRUE,
47624       'length' => '128',
47625       'default' => '',
47626     ),
47627     'language' => array(
47628       'type' => 'varchar',
47629       'not null' => TRUE,
47630       'length' => '12',
47631       'default' => '',
47632     ),
47633   ),
47634   'primary key' => array(
47635     'pid',
47636   ),
47637   'mysql_character_set' => 'utf8',
47638 ));
47639
47640 $connection->insert('url_alias')
47641 ->fields(array(
47642   'pid',
47643   'src',
47644   'dst',
47645   'language',
47646 ))
47647 ->values(array(
47648   'pid' => '1',
47649   'src' => 'node/1',
47650   'dst' => 'alias-one',
47651   'language' => 'af',
47652 ))
47653 ->values(array(
47654   'pid' => '2',
47655   'src' => 'node/2',
47656   'dst' => 'alias-two',
47657   'language' => 'en',
47658 ))
47659 ->values(array(
47660   'pid' => '3',
47661   'src' => 'node/3',
47662   'dst' => 'alias-three',
47663   'language' => '',
47664 ))
47665 ->values(array(
47666   'pid' => '4',
47667   'src' => 'node/10',
47668   'dst' => 'the-real-mccoy',
47669   'language' => 'en',
47670 ))
47671 ->values(array(
47672   'pid' => '5',
47673   'src' => 'node/11',
47674   'dst' => 'le-vrai-mccoy',
47675   'language' => 'fr',
47676 ))
47677 ->values(array(
47678   'pid' => '6',
47679   'src' => 'node/12',
47680   'dst' => 'abantu-zulu',
47681   'language' => 'zu',
47682 ))
47683 ->values(array(
47684   'pid' => '7',
47685   'src' => 'node/13',
47686   'dst' => 'the-zulu-people',
47687   'language' => 'en',
47688 ))
47689 ->values(array(
47690   'pid' => '8',
47691   'src' => 'admin',
47692   'dst' => 'source-noslash',
47693   'language' => '',
47694 ))
47695 ->execute();
47696
47697 $connection->schema()->createTable('users', array(
47698   'fields' => array(
47699     'uid' => array(
47700       'type' => 'serial',
47701       'not null' => TRUE,
47702       'size' => 'normal',
47703       'unsigned' => TRUE,
47704     ),
47705     'name' => array(
47706       'type' => 'varchar',
47707       'not null' => TRUE,
47708       'length' => '60',
47709       'default' => '',
47710     ),
47711     'pass' => array(
47712       'type' => 'varchar',
47713       'not null' => TRUE,
47714       'length' => '32',
47715       'default' => '',
47716     ),
47717     'mail' => array(
47718       'type' => 'varchar',
47719       'not null' => FALSE,
47720       'length' => '64',
47721       'default' => '',
47722     ),
47723     'mode' => array(
47724       'type' => 'int',
47725       'not null' => TRUE,
47726       'size' => 'normal',
47727       'default' => '0',
47728     ),
47729     'sort' => array(
47730       'type' => 'int',
47731       'not null' => FALSE,
47732       'size' => 'normal',
47733       'default' => '0',
47734     ),
47735     'threshold' => array(
47736       'type' => 'int',
47737       'not null' => FALSE,
47738       'size' => 'normal',
47739       'default' => '0',
47740     ),
47741     'theme' => array(
47742       'type' => 'varchar',
47743       'not null' => TRUE,
47744       'length' => '255',
47745       'default' => '',
47746     ),
47747     'signature' => array(
47748       'type' => 'varchar',
47749       'not null' => TRUE,
47750       'length' => '255',
47751       'default' => '',
47752     ),
47753     'signature_format' => array(
47754       'type' => 'int',
47755       'not null' => TRUE,
47756       'size' => 'normal',
47757       'default' => '0',
47758     ),
47759     'created' => array(
47760       'type' => 'int',
47761       'not null' => TRUE,
47762       'size' => 'normal',
47763       'default' => '0',
47764     ),
47765     'access' => array(
47766       'type' => 'int',
47767       'not null' => TRUE,
47768       'size' => 'normal',
47769       'default' => '0',
47770     ),
47771     'login' => array(
47772       'type' => 'int',
47773       'not null' => TRUE,
47774       'size' => 'normal',
47775       'default' => '0',
47776     ),
47777     'status' => array(
47778       'type' => 'int',
47779       'not null' => TRUE,
47780       'size' => 'normal',
47781       'default' => '0',
47782     ),
47783     'timezone' => array(
47784       'type' => 'varchar',
47785       'not null' => FALSE,
47786       'length' => '8',
47787     ),
47788     'language' => array(
47789       'type' => 'varchar',
47790       'not null' => TRUE,
47791       'length' => '12',
47792       'default' => '',
47793     ),
47794     'picture' => array(
47795       'type' => 'varchar',
47796       'not null' => TRUE,
47797       'length' => '255',
47798       'default' => '',
47799     ),
47800     'init' => array(
47801       'type' => 'varchar',
47802       'not null' => FALSE,
47803       'length' => '64',
47804       'default' => '',
47805     ),
47806     'data' => array(
47807       'type' => 'text',
47808       'not null' => FALSE,
47809       'size' => 'normal',
47810     ),
47811     'timezone_name' => array(
47812       'type' => 'varchar',
47813       'not null' => FALSE,
47814       'length' => '50',
47815       'default' => '',
47816     ),
47817     'pass_plain' => array(
47818       'type' => 'varchar',
47819       'not null' => TRUE,
47820       'length' => '255',
47821       'default' => '',
47822     ),
47823     'expected_timezone' => array(
47824       'type' => 'varchar',
47825       'not null' => FALSE,
47826       'length' => '50',
47827     ),
47828     'timezone_id' => array(
47829       'type' => 'int',
47830       'not null' => TRUE,
47831       'size' => 'normal',
47832       'default' => '0',
47833     ),
47834   ),
47835   'primary key' => array(
47836     'uid',
47837   ),
47838   'mysql_character_set' => 'utf8',
47839 ));
47840
47841 $connection->insert('users')
47842 ->fields(array(
47843   'uid',
47844   'name',
47845   'pass',
47846   'mail',
47847   'mode',
47848   'sort',
47849   'threshold',
47850   'theme',
47851   'signature',
47852   'signature_format',
47853   'created',
47854   'access',
47855   'login',
47856   'status',
47857   'timezone',
47858   'language',
47859   'picture',
47860   'init',
47861   'data',
47862   'timezone_name',
47863   'pass_plain',
47864   'expected_timezone',
47865   'timezone_id',
47866 ))
47867 ->values(array(
47868   'uid' => '1',
47869   'name' => 'root',
47870   'pass' => '63a9f0ea7bb98050796b649e85481845',
47871   'mail' => 'root@localhost',
47872   'mode' => '0',
47873   'sort' => '0',
47874   'threshold' => '0',
47875   'theme' => '',
47876   'signature' => '',
47877   'signature_format' => '0',
47878   'created' => '0',
47879   'access' => '1494966478',
47880   'login' => '1494966280',
47881   'status' => '1',
47882   'timezone' => NULL,
47883   'language' => '',
47884   'picture' => '',
47885   'init' => 'root@localhost',
47886   'data' => 'b:0;',
47887   'timezone_name' => '',
47888   'pass_plain' => 'root',
47889   'expected_timezone' => NULL,
47890   'timezone_id' => '0',
47891 ))
47892 ->values(array(
47893   'uid' => '2',
47894   'name' => 'john.doe',
47895   'pass' => '671cc45b3e2c6eb751d6a554dc5a5fe7',
47896   'mail' => 'john.doe@example.com',
47897   'mode' => '0',
47898   'sort' => '0',
47899   'threshold' => '0',
47900   'theme' => '',
47901   'signature' => 'John Doe | john.doe@example.com',
47902   'signature_format' => '1',
47903   'created' => '1391150052',
47904   'access' => '1391259672',
47905   'login' => '1391152253',
47906   'status' => '1',
47907   'timezone' => '3600',
47908   'language' => 'fr',
47909   'picture' => 'core/modules/simpletest/files/image-test.jpg',
47910   'init' => 'doe@example.com',
47911   'data' => 'a:2:{s:7:"contact";i:1;s:13:"form_build_id";s:48:"form-qu_DMjE-Vfg01arT5J4VbuBCkOgx_LeySJx4qrPOSuA";}',
47912   'timezone_name' => 'Europe/Berlin',
47913   'pass_plain' => 'john.doe_pass',
47914   'expected_timezone' => 'Europe/Berlin',
47915   'timezone_id' => '1',
47916 ))
47917 ->values(array(
47918   'uid' => '8',
47919   'name' => 'joe.roe',
47920   'pass' => '93a70546e6c032c135499fed70cfe438',
47921   'mail' => 'joe.roe@example.com',
47922   'mode' => '0',
47923   'sort' => '0',
47924   'threshold' => '0',
47925   'theme' => '',
47926   'signature' => 'JR',
47927   'signature_format' => '2',
47928   'created' => '1391150053',
47929   'access' => '1391259673',
47930   'login' => '1391152254',
47931   'status' => '1',
47932   'timezone' => '7200',
47933   'language' => 'ro',
47934   'picture' => 'core/modules/simpletest/files/image-test.png',
47935   'init' => 'roe@example.com',
47936   'data' => 'a:2:{s:7:"contact";i:0;s:13:"form_build_id";s:48:"form-1TxjbL2_1dEHIxEu2Db6OvEsSN1x9ILH1VCgnvsO6LE";}',
47937   'timezone_name' => 'Europe/Helsinki',
47938   'pass_plain' => 'joe.roe_pass',
47939   'expected_timezone' => 'Europe/Helsinki',
47940   'timezone_id' => '0',
47941 ))
47942 ->values(array(
47943   'uid' => '15',
47944   'name' => 'joe.bloggs',
47945   'pass' => '2ff23139aeb404274dc67cbee8c64fb0',
47946   'mail' => 'joe.bloggs@example.com',
47947   'mode' => '0',
47948   'sort' => '0',
47949   'threshold' => '0',
47950   'theme' => '',
47951   'signature' => 'bloggs',
47952   'signature_format' => '1',
47953   'created' => '1391150054',
47954   'access' => '1391259674',
47955   'login' => '1391152255',
47956   'status' => '1',
47957   'timezone' => '-28800',
47958   'language' => 'en',
47959   'picture' => '',
47960   'init' => 'bloggs@example.com',
47961   'data' => 'a:0:{}',
47962   'timezone_name' => 'America/Anchorage',
47963   'pass_plain' => 'joe.bloggs_pass',
47964   'expected_timezone' => NULL,
47965   'timezone_id' => '0',
47966 ))
47967 ->values(array(
47968   'uid' => '16',
47969   'name' => 'sal.saraniti',
47970   'pass' => '77404657c8bcd8e9aa8f3147856efb4f',
47971   'mail' => 'sal.saraniti@example.com',
47972   'mode' => '0',
47973   'sort' => '0',
47974   'threshold' => '0',
47975   'theme' => '',
47976   'signature' => '',
47977   'signature_format' => '0',
47978   'created' => '1391151054',
47979   'access' => '1391259574',
47980   'login' => '1391162255',
47981   'status' => '1',
47982   'timezone' => '0',
47983   'language' => 'en',
47984   'picture' => '',
47985   'init' => 'sal.saraniti@example.com',
47986   'data' => 'a:0:{}',
47987   'timezone_name' => 'UTC',
47988   'pass_plain' => 'sal.saraniti',
47989   'expected_timezone' => NULL,
47990   'timezone_id' => '0',
47991 ))
47992 ->values(array(
47993   'uid' => '17',
47994   'name' => 'terry.saraniti',
47995   'pass' => '8fb310d3ec746d720e0e8efefd0cce5c',
47996   'mail' => 'terry.saraniti@example.com',
47997   'mode' => '0',
47998   'sort' => '0',
47999   'threshold' => '0',
48000   'theme' => '',
48001   'signature' => '',
48002   'signature_format' => '0',
48003   'created' => '1390151054',
48004   'access' => '1390259574',
48005   'login' => '1390162255',
48006   'status' => '1',
48007   'timezone' => NULL,
48008   'language' => 'en',
48009   'picture' => '',
48010   'init' => 'terry.saraniti@example.com',
48011   'data' => 'a:0:{}',
48012   'timezone_name' => NULL,
48013   'pass_plain' => 'terry.saraniti',
48014   'expected_timezone' => NULL,
48015   'timezone_id' => '0',
48016 ))
48017 ->execute();
48018
48019 $connection->schema()->createTable('users_roles', array(
48020   'fields' => array(
48021     'uid' => array(
48022       'type' => 'int',
48023       'not null' => TRUE,
48024       'size' => 'normal',
48025       'default' => '0',
48026       'unsigned' => TRUE,
48027     ),
48028     'rid' => array(
48029       'type' => 'int',
48030       'not null' => TRUE,
48031       'size' => 'normal',
48032       'default' => '0',
48033       'unsigned' => TRUE,
48034     ),
48035   ),
48036   'primary key' => array(
48037     'uid',
48038     'rid',
48039   ),
48040   'mysql_character_set' => 'utf8',
48041 ));
48042
48043 $connection->insert('users_roles')
48044 ->fields(array(
48045   'uid',
48046   'rid',
48047 ))
48048 ->values(array(
48049   'uid' => '2',
48050   'rid' => '3',
48051 ))
48052 ->values(array(
48053   'uid' => '15',
48054   'rid' => '3',
48055 ))
48056 ->values(array(
48057   'uid' => '16',
48058   'rid' => '3',
48059 ))
48060 ->values(array(
48061   'uid' => '8',
48062   'rid' => '4',
48063 ))
48064 ->values(array(
48065   'uid' => '15',
48066   'rid' => '4',
48067 ))
48068 ->values(array(
48069   'uid' => '17',
48070   'rid' => '4',
48071 ))
48072 ->values(array(
48073   'uid' => '8',
48074   'rid' => '5',
48075 ))
48076 ->values(array(
48077   'uid' => '15',
48078   'rid' => '5',
48079 ))
48080 ->values(array(
48081   'uid' => '16',
48082   'rid' => '5',
48083 ))
48084 ->execute();
48085
48086 $connection->schema()->createTable('variable', array(
48087   'fields' => array(
48088     'name' => array(
48089       'type' => 'varchar',
48090       'not null' => TRUE,
48091       'length' => '128',
48092       'default' => '',
48093     ),
48094     'value' => array(
48095       'type' => 'text',
48096       'not null' => TRUE,
48097       'size' => 'normal',
48098     ),
48099   ),
48100   'primary key' => array(
48101     'name',
48102   ),
48103   'mysql_character_set' => 'utf8',
48104 ));
48105
48106 $connection->insert('variable')
48107 ->fields(array(
48108   'name',
48109   'value',
48110 ))
48111 ->values(array(
48112   'name' => 'actions_max_stack',
48113   'value' => 'i:35;',
48114 ))
48115 ->values(array(
48116   'name' => 'admin_compact_mode',
48117   'value' => 'b:0;',
48118 ))
48119 ->values(array(
48120   'name' => 'aggregator_allowed_html_tags',
48121   'value' => 's:70:"<a> <b> <br /> <dd> <dl> <dt> <em> <i> <li> <ol> <p> <strong> <u> <ul>";',
48122 ))
48123 ->values(array(
48124   'name' => 'aggregator_clear',
48125   'value' => 's:7:"9676800";',
48126 ))
48127 ->values(array(
48128   'name' => 'aggregator_fetcher',
48129   'value' => 's:10:"aggregator";',
48130 ))
48131 ->values(array(
48132   'name' => 'aggregator_parser',
48133   'value' => 's:10:"aggregator";',
48134 ))
48135 ->values(array(
48136   'name' => 'aggregator_processors',
48137   'value' => 'a:1:{i:0;s:10:"aggregator";}',
48138 ))
48139 ->values(array(
48140   'name' => 'aggregator_summary_items',
48141   'value' => 's:1:"3";',
48142 ))
48143 ->values(array(
48144   'name' => 'aggregator_teaser_length',
48145   'value' => 's:3:"600";',
48146 ))
48147 ->values(array(
48148   'name' => 'allowed_html_1',
48149   'value' => 's:61:"<a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>";',
48150 ))
48151 ->values(array(
48152   'name' => 'allow_insecure_uploads',
48153   'value' => 'i:1;',
48154 ))
48155 ->values(array(
48156   'name' => 'anonymous',
48157   'value' => 's:5:"Guest";',
48158 ))
48159 ->values(array(
48160   'name' => 'array_filter',
48161   'value' => 'b:1;',
48162 ))
48163 ->values(array(
48164   'name' => 'book_allowed_types',
48165   'value' => 'a:1:{i:0;s:4:"book";}',
48166 ))
48167 ->values(array(
48168   'name' => 'book_block_mode',
48169   'value' => 's:10:"book pages";',
48170 ))
48171 ->values(array(
48172   'name' => 'book_child_type',
48173   'value' => 's:4:"book";',
48174 ))
48175 ->values(array(
48176   'name' => 'cache_lifetime',
48177   'value' => 'i:0;',
48178 ))
48179 ->values(array(
48180   'name' => 'comment_anonymous_article',
48181   'value' => 'i:0;',
48182 ))
48183 ->values(array(
48184   'name' => 'comment_anonymous_company',
48185   'value' => 'i:0;',
48186 ))
48187 ->values(array(
48188   'name' => 'comment_anonymous_employee',
48189   'value' => 'i:0;',
48190 ))
48191 ->values(array(
48192   'name' => 'comment_anonymous_page',
48193   'value' => 'i:0;',
48194 ))
48195 ->values(array(
48196   'name' => 'comment_anonymous_sponsor',
48197   'value' => 'i:0;',
48198 ))
48199 ->values(array(
48200   'name' => 'comment_anonymous_story',
48201   'value' => 'i:1;',
48202 ))
48203 ->values(array(
48204   'name' => 'comment_anonymous_test_event',
48205   'value' => 'i:0;',
48206 ))
48207 ->values(array(
48208   'name' => 'comment_anonymous_test_page',
48209   'value' => 'i:0;',
48210 ))
48211 ->values(array(
48212   'name' => 'comment_anonymous_test_planet',
48213   'value' => 'i:0;',
48214 ))
48215 ->values(array(
48216   'name' => 'comment_anonymous_test_story',
48217   'value' => 'i:0;',
48218 ))
48219 ->values(array(
48220   'name' => 'comment_article',
48221   'value' => 's:1:"2";',
48222 ))
48223 ->values(array(
48224   'name' => 'comment_company',
48225   'value' => 's:1:"2";',
48226 ))
48227 ->values(array(
48228   'name' => 'comment_controls_article',
48229   'value' => 'i:3;',
48230 ))
48231 ->values(array(
48232   'name' => 'comment_controls_company',
48233   'value' => 's:1:"3";',
48234 ))
48235 ->values(array(
48236   'name' => 'comment_controls_employee',
48237   'value' => 'i:3;',
48238 ))
48239 ->values(array(
48240   'name' => 'comment_controls_page',
48241   'value' => 's:1:"3";',
48242 ))
48243 ->values(array(
48244   'name' => 'comment_controls_sponsor',
48245   'value' => 'i:3;',
48246 ))
48247 ->values(array(
48248   'name' => 'comment_controls_story',
48249   'value' => 'i:3;',
48250 ))
48251 ->values(array(
48252   'name' => 'comment_controls_test_event',
48253   'value' => 'i:3;',
48254 ))
48255 ->values(array(
48256   'name' => 'comment_controls_test_page',
48257   'value' => 'i:3;',
48258 ))
48259 ->values(array(
48260   'name' => 'comment_controls_test_planet',
48261   'value' => 'i:3;',
48262 ))
48263 ->values(array(
48264   'name' => 'comment_controls_test_story',
48265   'value' => 'i:3;',
48266 ))
48267 ->values(array(
48268   'name' => 'comment_default_mode_article',
48269   'value' => 'i:4;',
48270 ))
48271 ->values(array(
48272   'name' => 'comment_default_mode_company',
48273   'value' => 's:1:"4";',
48274 ))
48275 ->values(array(
48276   'name' => 'comment_default_mode_employee',
48277   'value' => 'i:4;',
48278 ))
48279 ->values(array(
48280   'name' => 'comment_default_mode_page',
48281   'value' => 's:1:"4";',
48282 ))
48283 ->values(array(
48284   'name' => 'comment_default_mode_sponsor',
48285   'value' => 'i:4;',
48286 ))
48287 ->values(array(
48288   'name' => 'comment_default_mode_story',
48289   'value' => 's:1:"2";',
48290 ))
48291 ->values(array(
48292   'name' => 'comment_default_mode_test_event',
48293   'value' => 'i:4;',
48294 ))
48295 ->values(array(
48296   'name' => 'comment_default_mode_test_page',
48297   'value' => 'i:4;',
48298 ))
48299 ->values(array(
48300   'name' => 'comment_default_mode_test_planet',
48301   'value' => 'i:4;',
48302 ))
48303 ->values(array(
48304   'name' => 'comment_default_mode_test_story',
48305   'value' => 'i:4;',
48306 ))
48307 ->values(array(
48308   'name' => 'comment_default_order_article',
48309   'value' => 'i:1;',
48310 ))
48311 ->values(array(
48312   'name' => 'comment_default_order_company',
48313   'value' => 's:1:"1";',
48314 ))
48315 ->values(array(
48316   'name' => 'comment_default_order_employee',
48317   'value' => 'i:1;',
48318 ))
48319 ->values(array(
48320   'name' => 'comment_default_order_page',
48321   'value' => 's:1:"1";',
48322 ))
48323 ->values(array(
48324   'name' => 'comment_default_order_sponsor',
48325   'value' => 'i:1;',
48326 ))
48327 ->values(array(
48328   'name' => 'comment_default_order_story',
48329   'value' => 'i:1;',
48330 ))
48331 ->values(array(
48332   'name' => 'comment_default_order_test_event',
48333   'value' => 'i:1;',
48334 ))
48335 ->values(array(
48336   'name' => 'comment_default_order_test_page',
48337   'value' => 'i:1;',
48338 ))
48339 ->values(array(
48340   'name' => 'comment_default_order_test_planet',
48341   'value' => 'i:1;',
48342 ))
48343 ->values(array(
48344   'name' => 'comment_default_order_test_story',
48345   'value' => 'i:1;',
48346 ))
48347 ->values(array(
48348   'name' => 'comment_default_per_page_article',
48349   'value' => 'i:50;',
48350 ))
48351 ->values(array(
48352   'name' => 'comment_default_per_page_company',
48353   'value' => 's:2:"50";',
48354 ))
48355 ->values(array(
48356   'name' => 'comment_default_per_page_employee',
48357   'value' => 'i:50;',
48358 ))
48359 ->values(array(
48360   'name' => 'comment_default_per_page_page',
48361   'value' => 's:2:"50";',
48362 ))
48363 ->values(array(
48364   'name' => 'comment_default_per_page_sponsor',
48365   'value' => 'i:50;',
48366 ))
48367 ->values(array(
48368   'name' => 'comment_default_per_page_story',
48369   'value' => 'i:70;',
48370 ))
48371 ->values(array(
48372   'name' => 'comment_default_per_page_test_event',
48373   'value' => 'i:50;',
48374 ))
48375 ->values(array(
48376   'name' => 'comment_default_per_page_test_page',
48377   'value' => 'i:50;',
48378 ))
48379 ->values(array(
48380   'name' => 'comment_default_per_page_test_planet',
48381   'value' => 'i:50;',
48382 ))
48383 ->values(array(
48384   'name' => 'comment_default_per_page_test_story',
48385   'value' => 'i:50;',
48386 ))
48387 ->values(array(
48388   'name' => 'comment_form_location_article',
48389   'value' => 'i:0;',
48390 ))
48391 ->values(array(
48392   'name' => 'comment_form_location_company',
48393   'value' => 's:1:"0";',
48394 ))
48395 ->values(array(
48396   'name' => 'comment_form_location_employee',
48397   'value' => 'i:0;',
48398 ))
48399 ->values(array(
48400   'name' => 'comment_form_location_page',
48401   'value' => 's:1:"0";',
48402 ))
48403 ->values(array(
48404   'name' => 'comment_form_location_sponsor',
48405   'value' => 'i:0;',
48406 ))
48407 ->values(array(
48408   'name' => 'comment_form_location_story',
48409   'value' => 'i:0;',
48410 ))
48411 ->values(array(
48412   'name' => 'comment_form_location_test_event',
48413   'value' => 'i:0;',
48414 ))
48415 ->values(array(
48416   'name' => 'comment_form_location_test_page',
48417   'value' => 'i:0;',
48418 ))
48419 ->values(array(
48420   'name' => 'comment_form_location_test_planet',
48421   'value' => 'i:0;',
48422 ))
48423 ->values(array(
48424   'name' => 'comment_form_location_test_story',
48425   'value' => 'i:0;',
48426 ))
48427 ->values(array(
48428   'name' => 'comment_page',
48429   'value' => 's:1:"0";',
48430 ))
48431 ->values(array(
48432   'name' => 'comment_preview_article',
48433   'value' => 'i:1;',
48434 ))
48435 ->values(array(
48436   'name' => 'comment_preview_company',
48437   'value' => 's:1:"1";',
48438 ))
48439 ->values(array(
48440   'name' => 'comment_preview_employee',
48441   'value' => 'i:1;',
48442 ))
48443 ->values(array(
48444   'name' => 'comment_preview_page',
48445   'value' => 's:1:"1";',
48446 ))
48447 ->values(array(
48448   'name' => 'comment_preview_sponsor',
48449   'value' => 'i:1;',
48450 ))
48451 ->values(array(
48452   'name' => 'comment_preview_story',
48453   'value' => 'i:0;',
48454 ))
48455 ->values(array(
48456   'name' => 'comment_preview_test_event',
48457   'value' => 'i:1;',
48458 ))
48459 ->values(array(
48460   'name' => 'comment_preview_test_page',
48461   'value' => 'i:1;',
48462 ))
48463 ->values(array(
48464   'name' => 'comment_preview_test_planet',
48465   'value' => 'i:1;',
48466 ))
48467 ->values(array(
48468   'name' => 'comment_preview_test_story',
48469   'value' => 'i:1;',
48470 ))
48471 ->values(array(
48472   'name' => 'comment_story',
48473   'value' => 's:1:"2";',
48474 ))
48475 ->values(array(
48476   'name' => 'comment_subject_field_article',
48477   'value' => 'i:1;',
48478 ))
48479 ->values(array(
48480   'name' => 'comment_subject_field_company',
48481   'value' => 's:1:"1";',
48482 ))
48483 ->values(array(
48484   'name' => 'comment_subject_field_employee',
48485   'value' => 'i:1;',
48486 ))
48487 ->values(array(
48488   'name' => 'comment_subject_field_page',
48489   'value' => 'i:1;',
48490 ))
48491 ->values(array(
48492   'name' => 'comment_subject_field_sponsor',
48493   'value' => 'i:1;',
48494 ))
48495 ->values(array(
48496   'name' => 'comment_subject_field_story',
48497   'value' => 'i:0;',
48498 ))
48499 ->values(array(
48500   'name' => 'comment_subject_field_test_event',
48501   'value' => 'i:1;',
48502 ))
48503 ->values(array(
48504   'name' => 'comment_subject_field_test_page',
48505   'value' => 'i:1;',
48506 ))
48507 ->values(array(
48508   'name' => 'comment_subject_field_test_planet',
48509   'value' => 'i:1;',
48510 ))
48511 ->values(array(
48512   'name' => 'comment_subject_field_test_story',
48513   'value' => 'i:1;',
48514 ))
48515 ->values(array(
48516   'name' => 'configurable_timezones',
48517   'value' => 's:1:"0";',
48518 ))
48519 ->values(array(
48520   'name' => 'contact_default_status',
48521   'value' => 'i:1;',
48522 ))
48523 ->values(array(
48524   'name' => 'contact_hourly_threshold',
48525   'value' => 'i:3;',
48526 ))
48527 ->values(array(
48528   'name' => 'content_extra_weights_employee',
48529   'value' => 'a:11:{s:5:"title";s:2:"-5";s:10:"body_field";s:1:"0";s:20:"revision_information";s:2:"20";s:6:"author";s:2:"20";s:7:"options";s:2:"25";s:16:"comment_settings";s:2:"30";s:8:"language";s:1:"0";s:11:"translation";s:2:"30";s:4:"menu";s:2:"-2";s:4:"book";s:2:"10";s:4:"path";s:2:"30";}',
48530 ))
48531 ->values(array(
48532   'name' => 'content_extra_weights_story',
48533   'value' => 'a:9:{s:5:"title";s:2:"-5";s:10:"body_field";s:2:"-2";s:20:"revision_information";s:2:"19";s:6:"author";s:2:"18";s:7:"options";s:2:"20";s:16:"comment_settings";s:2:"22";s:4:"menu";s:2:"-3";s:8:"taxonomy";s:2:"-4";s:11:"attachments";s:2:"21";}',
48534 ))
48535 ->values(array(
48536   'name' => 'content_extra_weights_test_page',
48537   'value' => 'a:8:{s:5:"title";s:2:"37";s:10:"body_field";s:2:"38";s:20:"revision_information";s:2:"40";s:6:"author";s:2:"39";s:7:"options";s:2:"41";s:16:"comment_settings";s:2:"42";s:4:"menu";s:2:"36";s:11:"attachments";s:2:"43";}',
48538 ))
48539 ->values(array(
48540   'name' => 'content_schema_version',
48541   'value' => 'i:6009;',
48542 ))
48543 ->values(array(
48544   'name' => 'cron_threshold_error',
48545   'value' => 'i:1209600;',
48546 ))
48547 ->values(array(
48548   'name' => 'cron_threshold_warning',
48549   'value' => 'i:172800;',
48550 ))
48551 ->values(array(
48552   'name' => 'css_js_query_string',
48553   'value' => 's:20:"y8SAkMTxRZndiw700000";',
48554 ))
48555 ->values(array(
48556   'name' => 'date:story:4:field_test_datestamp_fromto',
48557   'value' => 's:4:"both";',
48558 ))
48559 ->values(array(
48560   'name' => 'date:story:4:field_test_datestamp_multiple_from',
48561   'value' => 's:0:"";',
48562 ))
48563 ->values(array(
48564   'name' => 'date:story:4:field_test_datestamp_multiple_number',
48565   'value' => 's:0:"";',
48566 ))
48567 ->values(array(
48568   'name' => 'date:story:4:field_test_datestamp_multiple_to',
48569   'value' => 's:0:"";',
48570 ))
48571 ->values(array(
48572   'name' => 'date:story:4:field_test_datestamp_show_repeat_rule',
48573   'value' => 's:4:"show";',
48574 ))
48575 ->values(array(
48576   'name' => 'date:story:4:field_test_datetime_fromto',
48577   'value' => 's:4:"both";',
48578 ))
48579 ->values(array(
48580   'name' => 'date:story:4:field_test_datetime_multiple_from',
48581   'value' => 's:0:"";',
48582 ))
48583 ->values(array(
48584   'name' => 'date:story:4:field_test_datetime_multiple_number',
48585   'value' => 's:0:"";',
48586 ))
48587 ->values(array(
48588   'name' => 'date:story:4:field_test_datetime_multiple_to',
48589   'value' => 's:0:"";',
48590 ))
48591 ->values(array(
48592   'name' => 'date:story:4:field_test_datetime_show_repeat_rule',
48593   'value' => 's:4:"show";',
48594 ))
48595 ->values(array(
48596   'name' => 'date:story:4:field_test_date_fromto',
48597   'value' => 's:4:"both";',
48598 ))
48599 ->values(array(
48600   'name' => 'date:story:4:field_test_date_multiple_from',
48601   'value' => 's:0:"";',
48602 ))
48603 ->values(array(
48604   'name' => 'date:story:4:field_test_date_multiple_number',
48605   'value' => 's:0:"";',
48606 ))
48607 ->values(array(
48608   'name' => 'date:story:4:field_test_date_multiple_to',
48609   'value' => 's:0:"";',
48610 ))
48611 ->values(array(
48612   'name' => 'date:story:4:field_test_date_show_repeat_rule',
48613   'value' => 's:4:"show";',
48614 ))
48615 ->values(array(
48616   'name' => 'date:story:5:field_test_datestamp_fromto',
48617   'value' => 's:4:"both";',
48618 ))
48619 ->values(array(
48620   'name' => 'date:story:5:field_test_datestamp_multiple_from',
48621   'value' => 's:0:"";',
48622 ))
48623 ->values(array(
48624   'name' => 'date:story:5:field_test_datestamp_multiple_number',
48625   'value' => 's:0:"";',
48626 ))
48627 ->values(array(
48628   'name' => 'date:story:5:field_test_datestamp_multiple_to',
48629   'value' => 's:0:"";',
48630 ))
48631 ->values(array(
48632   'name' => 'date:story:5:field_test_datestamp_show_repeat_rule',
48633   'value' => 's:4:"show";',
48634 ))
48635 ->values(array(
48636   'name' => 'date:story:5:field_test_datetime_fromto',
48637   'value' => 's:4:"both";',
48638 ))
48639 ->values(array(
48640   'name' => 'date:story:5:field_test_datetime_multiple_from',
48641   'value' => 's:0:"";',
48642 ))
48643 ->values(array(
48644   'name' => 'date:story:5:field_test_datetime_multiple_number',
48645   'value' => 's:0:"";',
48646 ))
48647 ->values(array(
48648   'name' => 'date:story:5:field_test_datetime_multiple_to',
48649   'value' => 's:0:"";',
48650 ))
48651 ->values(array(
48652   'name' => 'date:story:5:field_test_datetime_show_repeat_rule',
48653   'value' => 's:4:"show";',
48654 ))
48655 ->values(array(
48656   'name' => 'date:story:5:field_test_date_fromto',
48657   'value' => 's:4:"both";',
48658 ))
48659 ->values(array(
48660   'name' => 'date:story:5:field_test_date_multiple_from',
48661   'value' => 's:0:"";',
48662 ))
48663 ->values(array(
48664   'name' => 'date:story:5:field_test_date_multiple_number',
48665   'value' => 's:0:"";',
48666 ))
48667 ->values(array(
48668   'name' => 'date:story:5:field_test_date_multiple_to',
48669   'value' => 's:0:"";',
48670 ))
48671 ->values(array(
48672   'name' => 'date:story:5:field_test_date_show_repeat_rule',
48673   'value' => 's:4:"show";',
48674 ))
48675 ->values(array(
48676   'name' => 'date:story:full:field_test_datestamp_fromto',
48677   'value' => 's:4:"both";',
48678 ))
48679 ->values(array(
48680   'name' => 'date:story:full:field_test_datestamp_multiple_from',
48681   'value' => 's:0:"";',
48682 ))
48683 ->values(array(
48684   'name' => 'date:story:full:field_test_datestamp_multiple_number',
48685   'value' => 's:0:"";',
48686 ))
48687 ->values(array(
48688   'name' => 'date:story:full:field_test_datestamp_multiple_to',
48689   'value' => 's:0:"";',
48690 ))
48691 ->values(array(
48692   'name' => 'date:story:full:field_test_datestamp_show_repeat_rule',
48693   'value' => 's:4:"show";',
48694 ))
48695 ->values(array(
48696   'name' => 'date:story:full:field_test_datetime_fromto',
48697   'value' => 's:4:"both";',
48698 ))
48699 ->values(array(
48700   'name' => 'date:story:full:field_test_datetime_multiple_from',
48701   'value' => 's:0:"";',
48702 ))
48703 ->values(array(
48704   'name' => 'date:story:full:field_test_datetime_multiple_number',
48705   'value' => 's:0:"";',
48706 ))
48707 ->values(array(
48708   'name' => 'date:story:full:field_test_datetime_multiple_to',
48709   'value' => 's:0:"";',
48710 ))
48711 ->values(array(
48712   'name' => 'date:story:full:field_test_datetime_show_repeat_rule',
48713   'value' => 's:4:"show";',
48714 ))
48715 ->values(array(
48716   'name' => 'date:story:full:field_test_date_fromto',
48717   'value' => 's:4:"both";',
48718 ))
48719 ->values(array(
48720   'name' => 'date:story:full:field_test_date_multiple_from',
48721   'value' => 's:0:"";',
48722 ))
48723 ->values(array(
48724   'name' => 'date:story:full:field_test_date_multiple_number',
48725   'value' => 's:0:"";',
48726 ))
48727 ->values(array(
48728   'name' => 'date:story:full:field_test_date_multiple_to',
48729   'value' => 's:0:"";',
48730 ))
48731 ->values(array(
48732   'name' => 'date:story:full:field_test_date_show_repeat_rule',
48733   'value' => 's:4:"show";',
48734 ))
48735 ->values(array(
48736   'name' => 'date:story:teaser:field_test_datestamp_fromto',
48737   'value' => 's:4:"both";',
48738 ))
48739 ->values(array(
48740   'name' => 'date:story:teaser:field_test_datestamp_multiple_from',
48741   'value' => 's:0:"";',
48742 ))
48743 ->values(array(
48744   'name' => 'date:story:teaser:field_test_datestamp_multiple_number',
48745   'value' => 's:0:"";',
48746 ))
48747 ->values(array(
48748   'name' => 'date:story:teaser:field_test_datestamp_multiple_to',
48749   'value' => 's:0:"";',
48750 ))
48751 ->values(array(
48752   'name' => 'date:story:teaser:field_test_datestamp_show_repeat_rule',
48753   'value' => 's:4:"show";',
48754 ))
48755 ->values(array(
48756   'name' => 'date:story:teaser:field_test_datetime_fromto',
48757   'value' => 's:4:"both";',
48758 ))
48759 ->values(array(
48760   'name' => 'date:story:teaser:field_test_datetime_multiple_from',
48761   'value' => 's:0:"";',
48762 ))
48763 ->values(array(
48764   'name' => 'date:story:teaser:field_test_datetime_multiple_number',
48765   'value' => 's:0:"";',
48766 ))
48767 ->values(array(
48768   'name' => 'date:story:teaser:field_test_datetime_multiple_to',
48769   'value' => 's:0:"";',
48770 ))
48771 ->values(array(
48772   'name' => 'date:story:teaser:field_test_datetime_show_repeat_rule',
48773   'value' => 's:4:"show";',
48774 ))
48775 ->values(array(
48776   'name' => 'date:story:teaser:field_test_date_fromto',
48777   'value' => 's:4:"both";',
48778 ))
48779 ->values(array(
48780   'name' => 'date:story:teaser:field_test_date_multiple_from',
48781   'value' => 's:0:"";',
48782 ))
48783 ->values(array(
48784   'name' => 'date:story:teaser:field_test_date_multiple_number',
48785   'value' => 's:0:"";',
48786 ))
48787 ->values(array(
48788   'name' => 'date:story:teaser:field_test_date_multiple_to',
48789   'value' => 's:0:"";',
48790 ))
48791 ->values(array(
48792   'name' => 'date:story:teaser:field_test_date_show_repeat_rule',
48793   'value' => 's:4:"show";',
48794 ))
48795 ->values(array(
48796   'name' => 'date_api_version',
48797   'value' => 's:3:"5.2";',
48798 ))
48799 ->values(array(
48800   'name' => 'date_default_timezone',
48801   'value' => 's:4:"3600";',
48802 ))
48803 ->values(array(
48804   'name' => 'date_first_day',
48805   'value' => 's:1:"4";',
48806 ))
48807 ->values(array(
48808   'name' => 'date_format_long',
48809   'value' => 's:24:"\L\O\N\G l, F j, Y - H:i";',
48810 ))
48811 ->values(array(
48812   'name' => 'date_format_medium',
48813   'value' => 's:27:"\M\E\D\I\U\M D, m/d/Y - H:i";',
48814 ))
48815 ->values(array(
48816   'name' => 'date_format_short',
48817   'value' => 's:22:"\S\H\O\R\T m/d/Y - H:i";',
48818 ))
48819 ->values(array(
48820   'name' => 'dblog_row_limit',
48821   'value' => 'i:10000;',
48822 ))
48823 ->values(array(
48824   'name' => 'drupal_badge_color',
48825   'value' => 's:12:"powered-blue";',
48826 ))
48827 ->values(array(
48828   'name' => 'drupal_badge_size',
48829   'value' => 's:5:"80x15";',
48830 ))
48831 ->values(array(
48832   'name' => 'drupal_http_request_fails',
48833   'value' => 'b:0;',
48834 ))
48835 ->values(array(
48836   'name' => 'drupal_private_key',
48837   'value' => 's:43:"6bTz0JLHTM1R1c7VtbZtbio47JygBoNuGuzS5G0JYWs";',
48838 ))
48839 ->values(array(
48840   'name' => 'error_level',
48841   'value' => 'i:1;',
48842 ))
48843 ->values(array(
48844   'name' => 'event_nodeapi_article',
48845   'value' => 's:5:"never";',
48846 ))
48847 ->values(array(
48848   'name' => 'event_nodeapi_company',
48849   'value' => 's:5:"never";',
48850 ))
48851 ->values(array(
48852   'name' => 'event_nodeapi_event',
48853   'value' => 's:3:"all";',
48854 ))
48855 ->values(array(
48856   'name' => 'event_timezone_display',
48857   'value' => 's:5:"event";',
48858 ))
48859 ->values(array(
48860   'name' => 'feed_default_items',
48861   'value' => 'i:10;',
48862 ))
48863 ->values(array(
48864   'name' => 'feed_item_length',
48865   'value' => 's:5:"title";',
48866 ))
48867 ->values(array(
48868   'name' => 'file_description_length',
48869   'value' => 'i:128;',
48870 ))
48871 ->values(array(
48872   'name' => 'file_description_type',
48873   'value' => 's:9:"textfield";',
48874 ))
48875 ->values(array(
48876   'name' => 'file_directory_path',
48877   'value' => 's:29:"core/modules/simpletest/files";',
48878 ))
48879 ->values(array(
48880   'name' => 'file_directory_temp',
48881   'value' => 's:10:"files/temp";',
48882 ))
48883 ->values(array(
48884   'name' => 'file_downloads',
48885   'value' => 's:1:"1";',
48886 ))
48887 ->values(array(
48888   'name' => 'file_icon_directory',
48889   'value' => 's:25:"sites/default/files/icons";',
48890 ))
48891 ->values(array(
48892   'name' => 'filter_allowed_protocols',
48893   'value' => 'a:13:{i:0;s:4:"http";i:1;s:5:"https";i:2;s:3:"ftp";i:3;s:4:"news";i:4;s:4:"nntp";i:5;s:3:"tel";i:6;s:6:"telnet";i:7;s:6:"mailto";i:8;s:3:"irc";i:9;s:3:"ssh";i:10;s:4:"sftp";i:11;s:6:"webcal";i:12;s:4:"rtsp";}',
48894 ))
48895 ->values(array(
48896   'name' => 'filter_html_1',
48897   'value' => 'i:1;',
48898 ))
48899 ->values(array(
48900   'name' => 'filter_html_help_1',
48901   'value' => 'i:1;',
48902 ))
48903 ->values(array(
48904   'name' => 'filter_html_nofollow_1',
48905   'value' => 'i:0;',
48906 ))
48907 ->values(array(
48908   'name' => 'filter_url_length_1',
48909   'value' => 's:2:"72";',
48910 ))
48911 ->values(array(
48912   'name' => 'form_build_id_article',
48913   'value' => 's:48:"form-t2zKJflpBD4rpYoGQH33ckjjWAYdo5lF3Hl1O_YnWyE";',
48914 ))
48915 ->values(array(
48916   'name' => 'form_build_id_company',
48917   'value' => 's:48:"form-jFw2agRukPxjG5dG-N6joZLyoxXmCoxTzua0HUciqK0";',
48918 ))
48919 ->values(array(
48920   'name' => 'forum_block_num_0',
48921   'value' => 's:1:"3";',
48922 ))
48923 ->values(array(
48924   'name' => 'forum_block_num_1',
48925   'value' => 's:1:"4";',
48926 ))
48927 ->values(array(
48928   'name' => 'forum_hot_topic',
48929   'value' => 's:2:"15";',
48930 ))
48931 ->values(array(
48932   'name' => 'forum_nav_vocabulary',
48933   'value' => 's:1:"7";',
48934 ))
48935 ->values(array(
48936   'name' => 'forum_order',
48937   'value' => 's:1:"1";',
48938 ))
48939 ->values(array(
48940   'name' => 'forum_per_page',
48941   'value' => 's:2:"25";',
48942 ))
48943 ->values(array(
48944   'name' => 'i18nstrings_allowed_formats',
48945   'value' => 'a:2:{i:0;i:1;i:1;i:2;}',
48946 ))
48947 ->values(array(
48948   'name' => 'i18ntaxonomy_vocabulary',
48949   'value' => 'a:4:{i:1;s:1:"3";i:2;s:1:"2";i:3;s:1:"3";i:5;s:1:"1";}',
48950 ))
48951 ->values(array(
48952   'name' => 'i18n_lock_node_article',
48953   'value' => 'i:1;',
48954 ))
48955 ->values(array(
48956   'name' => 'image_jpeg_quality',
48957   'value' => 'i:75;',
48958 ))
48959 ->values(array(
48960   'name' => 'image_toolkit',
48961   'value' => 's:2:"gd";',
48962 ))
48963 ->values(array(
48964   'name' => 'javascript_parsed',
48965   'value' => 'a:16:{i:0;s:14:"misc/jquery.js";i:1;s:14:"misc/drupal.js";i:2;s:19:"misc/tableheader.js";s:10:"refresh:fr";s:7:"waiting";s:10:"refresh:zu";s:7:"waiting";i:3;s:17:"misc/tabledrag.js";i:4;s:32:"sites/all/modules/cck/content.js";i:5;s:16:"misc/textarea.js";i:6;s:16:"misc/collapse.js";i:7;s:12:"misc/form.js";i:8;s:19:"misc/tableselect.js";i:9;s:20:"modules/user/user.js";i:10;s:20:"misc/autocomplete.js";i:11;s:19:"misc/jquery.form.js";i:12;s:12:"misc/ahah.js";i:13;s:14:"misc/teaser.js";}',
48966 ))
48967 ->values(array(
48968   'name' => 'language_content_type_article',
48969   'value' => 's:1:"2";',
48970 ))
48971 ->values(array(
48972   'name' => 'language_content_type_employee',
48973   'value' => 's:1:"2";',
48974 ))
48975 ->values(array(
48976   'name' => 'language_count',
48977   'value' => 'i:11;',
48978 ))
48979 ->values(array(
48980   'name' => 'language_default',
48981   'value' => 'O:8:"stdClass":11:{s:8:"language";s:2:"en";s:4:"name";s:7:"English";s:6:"native";s:7:"English";s:9:"direction";s:1:"0";s:7:"enabled";i:1;s:7:"plurals";s:1:"0";s:7:"formula";s:0:"";s:6:"domain";s:0:"";s:6:"prefix";s:0:"";s:6:"weight";s:1:"0";s:10:"javascript";s:0:"";}',
48982 ))
48983 ->values(array(
48984   'name' => 'language_negotiation',
48985   'value' => 's:1:"1";',
48986 ))
48987 ->values(array(
48988   'name' => 'locale_cache_strings',
48989   'value' => 'i:1;',
48990 ))
48991 ->values(array(
48992   'name' => 'locale_js_directory',
48993   'value' => 's:9:"languages";',
48994 ))
48995 ->values(array(
48996   'name' => 'menu_default_node_menu',
48997   'value' => 's:10:"navigation";',
48998 ))
48999 ->values(array(
49000   'name' => 'menu_expanded',
49001   'value' => 'a:1:{i:0;s:15:"secondary-links";}',
49002 ))
49003 ->values(array(
49004   'name' => 'menu_masks',
49005   'value' => 'a:22:{i:0;i:127;i:1;i:63;i:2;i:62;i:3;i:61;i:4;i:59;i:5;i:31;i:6;i:30;i:7;i:29;i:8;i:24;i:9;i:21;i:10;i:15;i:11;i:14;i:12;i:13;i:13;i:12;i:14;i:11;i:15;i:7;i:16;i:6;i:17;i:5;i:18;i:4;i:19;i:3;i:20;i:2;i:21;i:1;}',
49006 ))
49007 ->values(array(
49008   'name' => 'menu_override_parent_selector',
49009   'value' => 'b:0;',
49010 ))
49011 ->values(array(
49012   'name' => 'minimum_word_size',
49013   'value' => 's:1:"3";',
49014 ))
49015 ->values(array(
49016   'name' => 'node_admin_theme',
49017   'value' => 'i:0;',
49018 ))
49019 ->values(array(
49020   'name' => 'node_options_article',
49021   'value' => 'a:1:{i:0;s:7:"promote";}',
49022 ))
49023 ->values(array(
49024   'name' => 'node_options_book',
49025   'value' => 'a:1:{i:0;s:6:"status";}',
49026 ))
49027 ->values(array(
49028   'name' => 'node_options_company',
49029   'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}',
49030 ))
49031 ->values(array(
49032   'name' => 'node_options_forum',
49033   'value' => 'a:1:{i:0;s:6:"status";}',
49034 ))
49035 ->values(array(
49036   'name' => 'node_options_test_event',
49037   'value' => 'a:2:{i:0;s:6:"sticky";i:1;s:8:"revision";}',
49038 ))
49039 ->values(array(
49040   'name' => 'node_options_test_page',
49041   'value' => 'a:3:{i:0;s:6:"status";i:1;s:7:"promote";i:2;s:6:"sticky";}',
49042 ))
49043 ->values(array(
49044   'name' => 'node_options_test_planet',
49045   'value' => 'a:2:{i:0;s:6:"sticky";i:1;s:8:"revision";}',
49046 ))
49047 ->values(array(
49048   'name' => 'node_options_test_story',
49049   'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}',
49050 ))
49051 ->values(array(
49052   'name' => 'node_preview',
49053   'value' => 'i:0;',
49054 ))
49055 ->values(array(
49056   'name' => 'node_rank_comments',
49057   'value' => 's:1:"5";',
49058 ))
49059 ->values(array(
49060   'name' => 'node_rank_promote',
49061   'value' => 's:1:"0";',
49062 ))
49063 ->values(array(
49064   'name' => 'node_rank_recent',
49065   'value' => 's:1:"0";',
49066 ))
49067 ->values(array(
49068   'name' => 'node_rank_relevance',
49069   'value' => 's:1:"2";',
49070 ))
49071 ->values(array(
49072   'name' => 'node_rank_sticky',
49073   'value' => 's:1:"8";',
49074 ))
49075 ->values(array(
49076   'name' => 'node_rank_views',
49077   'value' => 's:1:"1";',
49078 ))
49079 ->values(array(
49080   'name' => 'overlap_cjk',
49081   'value' => 'i:1;',
49082 ))
49083 ->values(array(
49084   'name' => 'page_compression',
49085   'value' => 's:1:"1";',
49086 ))
49087 ->values(array(
49088   'name' => 'preprocess_css',
49089   'value' => 'i:0;',
49090 ))
49091 ->values(array(
49092   'name' => 'preprocess_js',
49093   'value' => 'i:0;',
49094 ))
49095 ->values(array(
49096   'name' => 'search_cron_limit',
49097   'value' => 's:3:"100";',
49098 ))
49099 ->values(array(
49100   'name' => 'simpletest_clear_results',
49101   'value' => 'b:1;',
49102 ))
49103 ->values(array(
49104   'name' => 'simpletest_httpauth_method',
49105   'value' => 'i:1;',
49106 ))
49107 ->values(array(
49108   'name' => 'simpletest_httpauth_password',
49109   'value' => 'N;',
49110 ))
49111 ->values(array(
49112   'name' => 'simpletest_httpauth_username',
49113   'value' => 'N;',
49114 ))
49115 ->values(array(
49116   'name' => 'simpletest_verbose',
49117   'value' => 'b:1;',
49118 ))
49119 ->values(array(
49120   'name' => 'site_403',
49121   'value' => 's:4:"user";',
49122 ))
49123 ->values(array(
49124   'name' => 'site_404',
49125   'value' => 's:14:"page-not-found";',
49126 ))
49127 ->values(array(
49128   'name' => 'site_frontpage',
49129   'value' => 's:4:"node";',
49130 ))
49131 ->values(array(
49132   'name' => 'site_mail',
49133   'value' => 's:21:"site_mail@example.com";',
49134 ))
49135 ->values(array(
49136   'name' => 'site_name',
49137   'value' => 's:9:"site_name";',
49138 ))
49139 ->values(array(
49140   'name' => 'site_offline',
49141   'value' => 'i:0;',
49142 ))
49143 ->values(array(
49144   'name' => 'site_offline_message',
49145   'value' => 's:94:"Drupal is currently under maintenance. We should be back shortly. Thank you for your patience.";',
49146 ))
49147 ->values(array(
49148   'name' => 'site_slogan',
49149   'value' => 's:13:"Migrate rocks";',
49150 ))
49151 ->values(array(
49152   'name' => 'statistics_block_top_all_num',
49153   'value' => 's:1:"8";',
49154 ))
49155 ->values(array(
49156   'name' => 'statistics_block_top_day_num',
49157   'value' => 's:1:"7";',
49158 ))
49159 ->values(array(
49160   'name' => 'statistics_block_top_last_num',
49161   'value' => 's:1:"9";',
49162 ))
49163 ->values(array(
49164   'name' => 'statistics_count_content_views',
49165   'value' => 's:1:"1";',
49166 ))
49167 ->values(array(
49168   'name' => 'statistics_enable_access_log',
49169   'value' => 's:1:"0";',
49170 ))
49171 ->values(array(
49172   'name' => 'statistics_flush_accesslog_timer',
49173   'value' => 's:6:"259200";',
49174 ))
49175 ->values(array(
49176   'name' => 'syslog_facility',
49177   'value' => 'i:128;',
49178 ))
49179 ->values(array(
49180   'name' => 'syslog_identity',
49181   'value' => 's:6:"drupal";',
49182 ))
49183 ->values(array(
49184   'name' => 'taxonomy_override_selector',
49185   'value' => 'b:0;',
49186 ))
49187 ->values(array(
49188   'name' => 'taxonomy_terms_per_page_admin',
49189   'value' => 'i:100;',
49190 ))
49191 ->values(array(
49192   'name' => 'teaser_length',
49193   'value' => 'i:456;',
49194 ))
49195 ->values(array(
49196   'name' => 'theme_default',
49197   'value' => 's:7:"garland";',
49198 ))
49199 ->values(array(
49200   'name' => 'theme_settings',
49201   'value' => 'a:22:{s:11:"toggle_logo";i:1;s:11:"toggle_name";i:1;s:13:"toggle_slogan";i:0;s:14:"toggle_mission";i:1;s:24:"toggle_node_user_picture";i:0;s:27:"toggle_comment_user_picture";i:0;s:13:"toggle_search";i:0;s:14:"toggle_favicon";i:1;s:20:"toggle_primary_links";i:1;s:22:"toggle_secondary_links";i:1;s:21:"toggle_node_info_test";i:1;s:26:"toggle_node_info_something";i:1;s:12:"default_logo";i:1;s:9:"logo_path";s:0:"";s:11:"logo_upload";s:0:"";s:15:"default_favicon";i:1;s:12:"favicon_path";s:0:"";s:14:"favicon_upload";s:0:"";s:26:"toggle_node_info_test_page";i:1;s:27:"toggle_node_info_test_story";i:1;s:27:"toggle_node_info_test_event";i:1;s:28:"toggle_node_info_test_planet";i:1;}',
49202 ))
49203 ->values(array(
49204   'name' => 'update_check_frequency',
49205   'value' => 's:1:"7";',
49206 ))
49207 ->values(array(
49208   'name' => 'update_fetch_url',
49209   'value' => 's:41:"http://updates.drupal.org/release-history";',
49210 ))
49211 ->values(array(
49212   'name' => 'update_max_fetch_attempts',
49213   'value' => 'i:2;',
49214 ))
49215 ->values(array(
49216   'name' => 'update_notification_threshold',
49217   'value' => 's:3:"all";',
49218 ))
49219 ->values(array(
49220   'name' => 'update_notify_emails',
49221   'value' => 'a:0:{}',
49222 ))
49223 ->values(array(
49224   'name' => 'upload_article',
49225   'value' => 'b:0;',
49226 ))
49227 ->values(array(
49228   'name' => 'upload_company',
49229   'value' => 's:1:"1";',
49230 ))
49231 ->values(array(
49232   'name' => 'upload_employee',
49233   'value' => 'b:0;',
49234 ))
49235 ->values(array(
49236   'name' => 'upload_event',
49237   'value' => 'b:0;',
49238 ))
49239 ->values(array(
49240   'name' => 'upload_sponsor',
49241   'value' => 'b:0;',
49242 ))
49243 ->values(array(
49244   'name' => 'upload_story',
49245   'value' => 'b:1;',
49246 ))
49247 ->values(array(
49248   'name' => 'upload_test_event',
49249   'value' => 'b:0;',
49250 ))
49251 ->values(array(
49252   'name' => 'upload_test_page',
49253   'value' => 'b:0;',
49254 ))
49255 ->values(array(
49256   'name' => 'upload_test_planet',
49257   'value' => 'b:0;',
49258 ))
49259 ->values(array(
49260   'name' => 'upload_test_story',
49261   'value' => 'b:0;',
49262 ))
49263 ->values(array(
49264   'name' => 'user_block_max_list_count',
49265   'value' => 's:2:"10";',
49266 ))
49267 ->values(array(
49268   'name' => 'user_block_seconds_online',
49269   'value' => 's:3:"900";',
49270 ))
49271 ->values(array(
49272   'name' => 'user_block_whois_new_count',
49273   'value' => 's:1:"5";',
49274 ))
49275 ->values(array(
49276   'name' => 'user_email_verification',
49277   'value' => 'i:0;',
49278 ))
49279 ->values(array(
49280   'name' => 'user_mail_password_reset_body',
49281   'value' => "s:409:\"!username,\n\nA request to reset the password for your account has been made at !site.\n\nYou may now log in to !uri_brief by clicking on this link or copying and pasting it in your browser:\n\n!login_url\n\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.\n\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\";",
49282 ))
49283 ->values(array(
49284   'name' => 'user_mail_password_reset_subject',
49285   'value' => 's:52:"Replacement login information for !username at !site";',
49286 ))
49287 ->values(array(
49288   'name' => 'user_mail_register_admin_created_body',
49289   'value' => "s:452:\"!username,\n\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:\n\nusername: !username\npassword: !password\n\nYou may also log in by clicking on this link or copying and pasting it in your browser:\n\n!login_url\n\nThis is a one-time login, so it can be used only once.\n\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\n\n\n--  !site team\";",
49290 ))
49291 ->values(array(
49292   'name' => 'user_mail_register_admin_created_subject',
49293   'value' => 's:52:"An administrator created an account for you at !site";',
49294 ))
49295 ->values(array(
49296   'name' => 'user_mail_register_no_approval_required_body',
49297   'value' => "s:426:\"!username,\n\nThank you for registering at !site. You may now log in to !login_uri using the following username and password:\n\nusername: !username\npassword: !password\n\nYou may also log in by clicking on this link or copying and pasting it in your browser:\n\n!login_url\n\nThis is a one-time login, so it can be used only once.\n\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\n\n\n--  !site team\";",
49298 ))
49299 ->values(array(
49300   'name' => 'user_mail_register_no_approval_required_subject',
49301   'value' => 's:38:"Account details for !username at !site";',
49302 ))
49303 ->values(array(
49304   'name' => 'user_mail_register_pending_approval_body',
49305   'value' => "s:267:\"!username,\n\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.\n\n\n--  !site team\";",
49306 ))
49307 ->values(array(
49308   'name' => 'user_mail_register_pending_approval_subject',
49309   'value' => 's:63:"Account details for !username at !site (pending admin approval)";',
49310 ))
49311 ->values(array(
49312   'name' => 'user_mail_status_activated_body',
49313   'value' => "s:419:\"!username,\n\nYour account at !site has been activated.\n\nYou may now log in by clicking on this link or copying and pasting it in your browser:\n\n!login_url\n\nThis is a one-time login, so it can be used only once.\n\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\n\nOnce you have set your own password, you will be able to log in to !login_uri in the future using:\n\nusername: !username\n\";",
49314 ))
49315 ->values(array(
49316   'name' => 'user_mail_status_activated_notify',
49317   'value' => 'i:0;',
49318 ))
49319 ->values(array(
49320   'name' => 'user_mail_status_activated_subject',
49321   'value' => 's:49:"Account details for !username at !site (approved)";',
49322 ))
49323 ->values(array(
49324   'name' => 'user_mail_status_blocked_body',
49325   'value' => "s:51:\"!username,\n\nYour account on !site has been blocked.\";",
49326 ))
49327 ->values(array(
49328   'name' => 'user_mail_status_blocked_notify',
49329   'value' => 'i:1;',
49330 ))
49331 ->values(array(
49332   'name' => 'user_mail_status_blocked_subject',
49333   'value' => 's:48:"Account details for !username at !site (blocked)";',
49334 ))
49335 ->values(array(
49336   'name' => 'user_mail_status_deleted_body',
49337   'value' => "s:51:\"!username,\n\nYour account on !site has been deleted.\";",
49338 ))
49339 ->values(array(
49340   'name' => 'user_mail_status_deleted_subject',
49341   'value' => 's:48:"Account details for !username at !site (deleted)";',
49342 ))
49343 ->values(array(
49344   'name' => 'user_register',
49345   'value' => 'i:0;',
49346 ))
49347 ->values(array(
49348   'name' => 'user_signatures',
49349   'value' => 's:1:"1";',
49350 ))
49351 ->execute();
49352
49353 $connection->schema()->createTable('vocabulary', array(
49354   'fields' => array(
49355     'vid' => array(
49356       'type' => 'serial',
49357       'not null' => TRUE,
49358       'size' => 'normal',
49359       'unsigned' => TRUE,
49360     ),
49361     'name' => array(
49362       'type' => 'varchar',
49363       'not null' => TRUE,
49364       'length' => '255',
49365       'default' => '',
49366     ),
49367     'description' => array(
49368       'type' => 'text',
49369       'not null' => FALSE,
49370       'size' => 'normal',
49371     ),
49372     'help' => array(
49373       'type' => 'varchar',
49374       'not null' => TRUE,
49375       'length' => '255',
49376       'default' => '',
49377     ),
49378     'relations' => array(
49379       'type' => 'int',
49380       'not null' => TRUE,
49381       'size' => 'normal',
49382       'default' => '0',
49383       'unsigned' => TRUE,
49384     ),
49385     'hierarchy' => array(
49386       'type' => 'int',
49387       'not null' => TRUE,
49388       'size' => 'normal',
49389       'default' => '0',
49390       'unsigned' => TRUE,
49391     ),
49392     'multiple' => array(
49393       'type' => 'int',
49394       'not null' => TRUE,
49395       'size' => 'normal',
49396       'default' => '0',
49397       'unsigned' => TRUE,
49398     ),
49399     'required' => array(
49400       'type' => 'int',
49401       'not null' => TRUE,
49402       'size' => 'normal',
49403       'default' => '0',
49404       'unsigned' => TRUE,
49405     ),
49406     'tags' => array(
49407       'type' => 'int',
49408       'not null' => TRUE,
49409       'size' => 'normal',
49410       'default' => '0',
49411       'unsigned' => TRUE,
49412     ),
49413     'module' => array(
49414       'type' => 'varchar',
49415       'not null' => TRUE,
49416       'length' => '255',
49417       'default' => '',
49418     ),
49419     'weight' => array(
49420       'type' => 'int',
49421       'not null' => TRUE,
49422       'size' => 'normal',
49423       'default' => '0',
49424     ),
49425     'language' => array(
49426       'type' => 'varchar',
49427       'not null' => TRUE,
49428       'length' => '12',
49429       'default' => '',
49430     ),
49431   ),
49432   'primary key' => array(
49433     'vid',
49434   ),
49435   'mysql_character_set' => 'utf8',
49436 ));
49437
49438 $connection->insert('vocabulary')
49439 ->fields(array(
49440   'vid',
49441   'name',
49442   'description',
49443   'help',
49444   'relations',
49445   'hierarchy',
49446   'multiple',
49447   'required',
49448   'tags',
49449   'module',
49450   'weight',
49451   'language',
49452 ))
49453 ->values(array(
49454   'vid' => '1',
49455   'name' => 'vocabulary 1 (i=0)',
49456   'description' => 'description of vocabulary 1 (i=0)',
49457   'help' => '',
49458   'relations' => '1',
49459   'hierarchy' => '0',
49460   'multiple' => '0',
49461   'required' => '0',
49462   'tags' => '0',
49463   'module' => 'taxonomy',
49464   'weight' => '4',
49465   'language' => '',
49466 ))
49467 ->values(array(
49468   'vid' => '2',
49469   'name' => 'vocabulary 2 (i=1)',
49470   'description' => 'description of vocabulary 2 (i=1)',
49471   'help' => '',
49472   'relations' => '1',
49473   'hierarchy' => '1',
49474   'multiple' => '1',
49475   'required' => '0',
49476   'tags' => '1',
49477   'module' => 'taxonomy',
49478   'weight' => '5',
49479   'language' => 'fr',
49480 ))
49481 ->values(array(
49482   'vid' => '3',
49483   'name' => 'vocabulary 3 (i=2)',
49484   'description' => 'description of vocabulary 3 (i=2)',
49485   'help' => '',
49486   'relations' => '1',
49487   'hierarchy' => '2',
49488   'multiple' => '1',
49489   'required' => '0',
49490   'tags' => '0',
49491   'module' => 'taxonomy',
49492   'weight' => '6',
49493   'language' => '',
49494 ))
49495 ->values(array(
49496   'vid' => '4',
49497   'name' => 'Tags',
49498   'description' => 'Tags Vocabulary',
49499   'help' => '',
49500   'relations' => '1',
49501   'hierarchy' => '0',
49502   'multiple' => '0',
49503   'required' => '1',
49504   'tags' => '0',
49505   'module' => 'taxonomy',
49506   'weight' => '0',
49507   'language' => '',
49508 ))
49509 ->values(array(
49510   'vid' => '5',
49511   'name' => 'vocabulary name much longer than thirty two characters',
49512   'description' => 'description of vocabulary name much longer than thirty two characters',
49513   'help' => '',
49514   'relations' => '1',
49515   'hierarchy' => '3',
49516   'multiple' => '1',
49517   'required' => '0',
49518   'tags' => '0',
49519   'module' => 'taxonomy',
49520   'weight' => '7',
49521   'language' => '',
49522 ))
49523 ->values(array(
49524   'vid' => '6',
49525   'name' => 'Type',
49526   'description' => '',
49527   'help' => '',
49528   'relations' => '1',
49529   'hierarchy' => '0',
49530   'multiple' => '0',
49531   'required' => '0',
49532   'tags' => '0',
49533   'module' => 'taxonomy',
49534   'weight' => '0',
49535   'language' => '',
49536 ))
49537 ->values(array(
49538   'vid' => '7',
49539   'name' => 'Forums',
49540   'description' => '',
49541   'help' => '',
49542   'relations' => '1',
49543   'hierarchy' => '0',
49544   'multiple' => '0',
49545   'required' => '0',
49546   'tags' => '0',
49547   'module' => 'taxonomy',
49548   'weight' => '0',
49549   'language' => '',
49550 ))
49551 ->execute();
49552
49553 $connection->schema()->createTable('vocabulary_node_types', array(
49554   'fields' => array(
49555     'vid' => array(
49556       'type' => 'int',
49557       'not null' => TRUE,
49558       'size' => 'normal',
49559       'default' => '0',
49560       'unsigned' => TRUE,
49561     ),
49562     'type' => array(
49563       'type' => 'varchar',
49564       'not null' => TRUE,
49565       'length' => '32',
49566       'default' => '',
49567     ),
49568   ),
49569   'primary key' => array(
49570     'vid',
49571     'type',
49572   ),
49573   'mysql_character_set' => 'utf8',
49574 ));
49575
49576 $connection->insert('vocabulary_node_types')
49577 ->fields(array(
49578   'vid',
49579   'type',
49580 ))
49581 ->values(array(
49582   'vid' => '4',
49583   'type' => 'article',
49584 ))
49585 ->values(array(
49586   'vid' => '7',
49587   'type' => 'forum',
49588 ))
49589 ->values(array(
49590   'vid' => '4',
49591   'type' => 'page',
49592 ))
49593 ->values(array(
49594   'vid' => '6',
49595   'type' => 'sponsor',
49596 ))
49597 ->values(array(
49598   'vid' => '1',
49599   'type' => 'story',
49600 ))
49601 ->values(array(
49602   'vid' => '2',
49603   'type' => 'story',
49604 ))
49605 ->values(array(
49606   'vid' => '3',
49607   'type' => 'story',
49608 ))
49609 ->execute();
49610
49611 $connection->schema()->createTable('watchdog', array(
49612   'fields' => array(
49613     'wid' => array(
49614       'type' => 'serial',
49615       'not null' => TRUE,
49616       'size' => 'normal',
49617     ),
49618     'uid' => array(
49619       'type' => 'int',
49620       'not null' => TRUE,
49621       'size' => 'normal',
49622       'default' => '0',
49623     ),
49624     'type' => array(
49625       'type' => 'varchar',
49626       'not null' => TRUE,
49627       'length' => '16',
49628       'default' => '',
49629     ),
49630     'message' => array(
49631       'type' => 'text',
49632       'not null' => TRUE,
49633       'size' => 'normal',
49634     ),
49635     'variables' => array(
49636       'type' => 'text',
49637       'not null' => TRUE,
49638       'size' => 'normal',
49639     ),
49640     'severity' => array(
49641       'type' => 'int',
49642       'not null' => TRUE,
49643       'size' => 'normal',
49644       'default' => '0',
49645       'unsigned' => TRUE,
49646     ),
49647     'link' => array(
49648       'type' => 'varchar',
49649       'not null' => TRUE,
49650       'length' => '255',
49651       'default' => '',
49652     ),
49653     'location' => array(
49654       'type' => 'text',
49655       'not null' => TRUE,
49656       'size' => 'normal',
49657     ),
49658     'referer' => array(
49659       'type' => 'text',
49660       'not null' => FALSE,
49661       'size' => 'normal',
49662     ),
49663     'hostname' => array(
49664       'type' => 'varchar',
49665       'not null' => TRUE,
49666       'length' => '128',
49667       'default' => '',
49668     ),
49669     'timestamp' => array(
49670       'type' => 'int',
49671       'not null' => TRUE,
49672       'size' => 'normal',
49673       'default' => '0',
49674     ),
49675   ),
49676   'primary key' => array(
49677     'wid',
49678   ),
49679   'mysql_character_set' => 'utf8',
49680 ));